]>
Commit | Line | Data |
---|---|---|
012771d8 WD |
1 | /* |
2 | * (C) Copyright 2001 | |
3 | * Denis Peter, MPL AG Switzerland | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
012771d8 WD |
6 | * Note: Part of this code has been derived from linux |
7 | * | |
8 | */ | |
9 | #ifndef _USB_H_ | |
10 | #define _USB_H_ | |
11 | ||
12 | #include <usb_defs.h> | |
c60795f4 | 13 | #include <linux/usb/ch9.h> |
a8c2ebcf MY |
14 | #include <asm/cache.h> |
15 | #include <part.h> | |
012771d8 | 16 | |
71c5de4f TR |
17 | /* |
18 | * The EHCI spec says that we must align to at least 32 bytes. However, | |
19 | * some platforms require larger alignment. | |
20 | */ | |
21 | #if ARCH_DMA_MINALIGN > 32 | |
22 | #define USB_DMA_MINALIGN ARCH_DMA_MINALIGN | |
23 | #else | |
24 | #define USB_DMA_MINALIGN 32 | |
25 | #endif | |
26 | ||
012771d8 | 27 | /* Everything is aribtrary */ |
5cf91d6b WD |
28 | #define USB_ALTSETTINGALLOC 4 |
29 | #define USB_MAXALTSETTING 128 /* Hard limit */ | |
012771d8 | 30 | |
5cf91d6b WD |
31 | #define USB_MAX_DEVICE 32 |
32 | #define USB_MAXCONFIG 8 | |
33 | #define USB_MAXINTERFACES 8 | |
34 | #define USB_MAXENDPOINTS 16 | |
35 | #define USB_MAXCHILDREN 8 /* This is arbitrary */ | |
36 | #define USB_MAX_HUB 16 | |
012771d8 WD |
37 | |
38 | #define USB_CNTL_TIMEOUT 100 /* 100ms timeout */ | |
39 | ||
96820a35 SG |
40 | /* |
41 | * This is the timeout to allow for submitting an urb in ms. We allow more | |
42 | * time for a BULK device to react - some are slow. | |
43 | */ | |
80b350a7 | 44 | #define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000) |
96820a35 | 45 | |
012771d8 WD |
46 | /* device request (setup) */ |
47 | struct devrequest { | |
de39f8c1 MT |
48 | unsigned char requesttype; |
49 | unsigned char request; | |
50 | unsigned short value; | |
51 | unsigned short index; | |
52 | unsigned short length; | |
012771d8 WD |
53 | } __attribute__ ((packed)); |
54 | ||
8f8bd565 TR |
55 | /* Interface */ |
56 | struct usb_interface { | |
57 | struct usb_interface_descriptor desc; | |
de39f8c1 MT |
58 | |
59 | unsigned char no_of_ep; | |
60 | unsigned char num_altsetting; | |
61 | unsigned char act_altsetting; | |
62 | ||
012771d8 | 63 | struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS]; |
6497c667 VG |
64 | /* |
65 | * Super Speed Device will have Super Speed Endpoint | |
66 | * Companion Descriptor (section 9.6.7 of usb 3.0 spec) | |
67 | * Revision 1.0 June 6th 2011 | |
68 | */ | |
69 | struct usb_ss_ep_comp_descriptor ss_ep_comp_desc[USB_MAXENDPOINTS]; | |
012771d8 WD |
70 | } __attribute__ ((packed)); |
71 | ||
8f8bd565 TR |
72 | /* Configuration information.. */ |
73 | struct usb_config { | |
c60795f4 | 74 | struct usb_config_descriptor desc; |
de39f8c1 MT |
75 | |
76 | unsigned char no_of_if; /* number of interfaces */ | |
8f8bd565 | 77 | struct usb_interface if_desc[USB_MAXINTERFACES]; |
012771d8 WD |
78 | } __attribute__ ((packed)); |
79 | ||
48867208 RB |
80 | enum { |
81 | /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */ | |
82 | PACKET_SIZE_8 = 0, | |
83 | PACKET_SIZE_16 = 1, | |
84 | PACKET_SIZE_32 = 2, | |
85 | PACKET_SIZE_64 = 3, | |
86 | }; | |
012771d8 WD |
87 | |
88 | struct usb_device { | |
de39f8c1 | 89 | int devnum; /* Device number on USB bus */ |
3e126484 | 90 | int speed; /* full/low/high */ |
de39f8c1 MT |
91 | char mf[32]; /* manufacturer */ |
92 | char prod[32]; /* product */ | |
93 | char serial[32]; /* serial number */ | |
012771d8 | 94 | |
48867208 RB |
95 | /* Maximum packet size; one of: PACKET_SIZE_* */ |
96 | int maxpacketsize; | |
97 | /* one bit for each endpoint ([0] = IN, [1] = OUT) */ | |
98 | unsigned int toggle[2]; | |
de39f8c1 MT |
99 | /* endpoint halts; one bit per endpoint # & direction; |
100 | * [0] = IN, [1] = OUT | |
101 | */ | |
48867208 | 102 | unsigned int halted[2]; |
012771d8 WD |
103 | int epmaxpacketin[16]; /* INput endpoint specific maximums */ |
104 | int epmaxpacketout[16]; /* OUTput endpoint specific maximums */ | |
105 | ||
106 | int configno; /* selected config number */ | |
f5766139 PS |
107 | /* Device Descriptor */ |
108 | struct usb_device_descriptor descriptor | |
109 | __attribute__((aligned(ARCH_DMA_MINALIGN))); | |
8f8bd565 | 110 | struct usb_config config; /* config descriptor */ |
012771d8 WD |
111 | |
112 | int have_langid; /* whether string_langid is valid yet */ | |
113 | int string_langid; /* language ID for strings */ | |
114 | int (*irq_handle)(struct usb_device *dev); | |
115 | unsigned long irq_status; | |
5cf91d6b | 116 | int irq_act_len; /* transfered bytes */ |
012771d8 WD |
117 | void *privptr; |
118 | /* | |
119 | * Child devices - if this is a hub device | |
120 | * Each instance needs its own set of data structures. | |
121 | */ | |
122 | unsigned long status; | |
123 | int act_len; /* transfered bytes */ | |
124 | int maxchild; /* Number of ports if hub */ | |
3e126484 | 125 | int portnr; |
012771d8 WD |
126 | struct usb_device *parent; |
127 | struct usb_device *children[USB_MAXCHILDREN]; | |
c7e3b2b5 LS |
128 | |
129 | void *controller; /* hardware controller private data */ | |
5853e133 VG |
130 | /* slot_id - for xHCI enabled devices */ |
131 | unsigned int slot_id; | |
012771d8 WD |
132 | }; |
133 | ||
8460b89a HG |
134 | struct int_queue; |
135 | ||
bba67914 TK |
136 | /* |
137 | * You can initialize platform's USB host or device | |
138 | * ports by passing this enum as an argument to | |
139 | * board_usb_init(). | |
140 | */ | |
141 | enum usb_init_type { | |
142 | USB_INIT_HOST, | |
143 | USB_INIT_DEVICE | |
144 | }; | |
145 | ||
012771d8 WD |
146 | /********************************************************************** |
147 | * this is how the lowlevel part communicate with the outer world | |
148 | */ | |
149 | ||
822af351 | 150 | #if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \ |
51ab142b | 151 | defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \ |
3e126484 | 152 | defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \ |
f298e4b6 | 153 | defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \ |
e608f221 | 154 | defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \ |
37931f02 | 155 | defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X) || \ |
673a524b | 156 | defined(CONFIG_USB_MUSB_DSPS) || defined(CONFIG_USB_MUSB_AM35X) || \ |
6e9e0626 OT |
157 | defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined(CONFIG_USB_XHCI) || \ |
158 | defined(CONFIG_USB_DWC2) | |
822af351 | 159 | |
06d513ec | 160 | int usb_lowlevel_init(int index, enum usb_init_type init, void **controller); |
c7e3b2b5 LS |
161 | int usb_lowlevel_stop(int index); |
162 | ||
de39f8c1 MT |
163 | int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
164 | void *buffer, int transfer_len); | |
012771d8 | 165 | int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
de39f8c1 | 166 | int transfer_len, struct devrequest *setup); |
012771d8 WD |
167 | int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
168 | int transfer_len, int interval); | |
169 | ||
8460b89a HG |
170 | #ifdef CONFIG_USB_EHCI /* Only the ehci code has pollable int support */ |
171 | struct int_queue *create_int_queue(struct usb_device *dev, unsigned long pipe, | |
172 | int queuesize, int elementsize, void *buffer); | |
173 | int destroy_int_queue(struct usb_device *dev, struct int_queue *queue); | |
174 | void *poll_int_queue(struct usb_device *dev, struct int_queue *queue); | |
175 | #endif | |
176 | ||
012771d8 | 177 | /* Defines */ |
de39f8c1 MT |
178 | #define USB_UHCI_VEND_ID 0x8086 |
179 | #define USB_UHCI_DEV_ID 0x7112 | |
012771d8 | 180 | |
e5f24753 LD |
181 | /* |
182 | * PXA25x can only act as USB device. There are drivers | |
183 | * which works with USB CDC gadgets implementations. | |
184 | * Some of them have common routines which can be used | |
185 | * in boards init functions e.g. udc_disconnect() used for | |
186 | * forced device disconnection from host. | |
187 | */ | |
188 | #elif defined(CONFIG_USB_GADGET_PXA2XX) | |
189 | ||
190 | extern void udc_disconnect(void); | |
191 | ||
012771d8 WD |
192 | #endif |
193 | ||
16297cfb MZ |
194 | /* |
195 | * board-specific hardware initialization, called by | |
196 | * usb drivers and u-boot commands | |
197 | * | |
198 | * @param index USB controller number | |
199 | * @param init initializes controller as USB host or device | |
200 | */ | |
bba67914 | 201 | int board_usb_init(int index, enum usb_init_type init); |
16297cfb MZ |
202 | |
203 | /* | |
204 | * can be used to clean up after failed USB initialization attempt | |
205 | * vide: board_usb_init() | |
206 | * | |
207 | * @param index USB controller number for selective cleanup | |
bba67914 | 208 | * @param init usb_init_type passed to board_usb_init() |
16297cfb | 209 | */ |
bba67914 | 210 | int board_usb_cleanup(int index, enum usb_init_type init); |
16297cfb | 211 | |
012771d8 WD |
212 | #ifdef CONFIG_USB_STORAGE |
213 | ||
214 | #define USB_MAX_STOR_DEV 5 | |
215 | block_dev_desc_t *usb_stor_get_dev(int index); | |
216 | int usb_stor_scan(int mode); | |
e813eae3 | 217 | int usb_stor_info(void); |
012771d8 WD |
218 | |
219 | #endif | |
220 | ||
89d48367 SG |
221 | #ifdef CONFIG_USB_HOST_ETHER |
222 | ||
223 | #define USB_MAX_ETH_DEV 5 | |
224 | int usb_host_eth_scan(int mode); | |
225 | ||
226 | #endif | |
227 | ||
012771d8 WD |
228 | #ifdef CONFIG_USB_KEYBOARD |
229 | ||
230 | int drv_usb_kbd_init(void); | |
8a8a2257 | 231 | int usb_kbd_deregister(int force); |
012771d8 WD |
232 | |
233 | #endif | |
234 | /* routines */ | |
235 | int usb_init(void); /* initialize the USB Controller */ | |
236 | int usb_stop(void); /* stop the USB Controller */ | |
237 | ||
238 | ||
239 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol); | |
de39f8c1 MT |
240 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, |
241 | int report_id); | |
242 | struct usb_device *usb_get_dev_index(int index); | |
012771d8 WD |
243 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, |
244 | unsigned char request, unsigned char requesttype, | |
245 | unsigned short value, unsigned short index, | |
246 | void *data, unsigned short size, int timeout); | |
247 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, | |
248 | void *data, int len, int *actual_length, int timeout); | |
249 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, | |
de39f8c1 | 250 | void *buffer, int transfer_len, int interval); |
89d48367 | 251 | int usb_disable_asynch(int disable); |
de39f8c1 | 252 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe); |
de39f8c1 MT |
253 | int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer, |
254 | int cfgno); | |
255 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, | |
256 | unsigned char id, void *buf, int size); | |
012771d8 | 257 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, |
de39f8c1 MT |
258 | unsigned char type, unsigned char id, void *buf, |
259 | int size); | |
012771d8 WD |
260 | int usb_clear_halt(struct usb_device *dev, int pipe); |
261 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size); | |
262 | int usb_set_interface(struct usb_device *dev, int interface, int alternate); | |
263 | ||
264 | /* big endian -> little endian conversion */ | |
149dded2 | 265 | /* some CPUs are already little endian e.g. the ARM920T */ |
ae3b770e | 266 | #define __swap_16(x) \ |
3f85ce27 WD |
267 | ({ unsigned short x_ = (unsigned short)x; \ |
268 | (unsigned short)( \ | |
de39f8c1 | 269 | ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \ |
3f85ce27 | 270 | }) |
ae3b770e | 271 | #define __swap_32(x) \ |
3f85ce27 WD |
272 | ({ unsigned long x_ = (unsigned long)x; \ |
273 | (unsigned long)( \ | |
274 | ((x_ & 0x000000FFUL) << 24) | \ | |
5cf91d6b WD |
275 | ((x_ & 0x0000FF00UL) << 8) | \ |
276 | ((x_ & 0x00FF0000UL) >> 8) | \ | |
de39f8c1 | 277 | ((x_ & 0xFF000000UL) >> 24)); \ |
3f85ce27 | 278 | }) |
ae3b770e | 279 | |
c7d703f3 | 280 | #ifdef __LITTLE_ENDIAN |
ae3b770e MK |
281 | # define swap_16(x) (x) |
282 | # define swap_32(x) (x) | |
283 | #else | |
284 | # define swap_16(x) __swap_16(x) | |
285 | # define swap_32(x) __swap_32(x) | |
c7d703f3 | 286 | #endif |
012771d8 WD |
287 | |
288 | /* | |
289 | * Calling this entity a "pipe" is glorifying it. A USB pipe | |
290 | * is something embarrassingly simple: it basically consists | |
291 | * of the following information: | |
292 | * - device number (7 bits) | |
293 | * - endpoint number (4 bits) | |
294 | * - current Data0/1 state (1 bit) | |
295 | * - direction (1 bit) | |
3e126484 | 296 | * - speed (2 bits) |
012771d8 WD |
297 | * - max packet size (2 bits: 8, 16, 32 or 64) |
298 | * - pipe type (2 bits: control, interrupt, bulk, isochronous) | |
299 | * | |
300 | * That's 18 bits. Really. Nothing more. And the USB people have | |
301 | * documented these eighteen bits as some kind of glorious | |
302 | * virtual data structure. | |
303 | * | |
304 | * Let's not fall in that trap. We'll just encode it as a simple | |
305 | * unsigned int. The encoding is: | |
306 | * | |
307 | * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64) | |
de39f8c1 MT |
308 | * - direction: bit 7 (0 = Host-to-Device [Out], |
309 | * (1 = Device-to-Host [In]) | |
012771d8 WD |
310 | * - device: bits 8-14 |
311 | * - endpoint: bits 15-18 | |
312 | * - Data0/1: bit 19 | |
de39f8c1 MT |
313 | * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt, |
314 | * 10 = control, 11 = bulk) | |
012771d8 WD |
315 | * |
316 | * Why? Because it's arbitrary, and whatever encoding we select is really | |
317 | * up to us. This one happens to share a lot of bit positions with the UHCI | |
318 | * specification, so that much of the uhci driver can just mask the bits | |
319 | * appropriately. | |
320 | */ | |
321 | /* Create various pipes... */ | |
322 | #define create_pipe(dev,endpoint) \ | |
d0fe1128 | 323 | (((dev)->devnum << 8) | ((endpoint) << 15) | \ |
c60795f4 | 324 | (dev)->maxpacketsize) |
3e126484 | 325 | #define default_pipe(dev) ((dev)->speed << 26) |
de39f8c1 MT |
326 | |
327 | #define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ | |
328 | create_pipe(dev, endpoint)) | |
329 | #define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ | |
330 | create_pipe(dev, endpoint) | \ | |
331 | USB_DIR_IN) | |
332 | #define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ | |
333 | create_pipe(dev, endpoint)) | |
334 | #define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ | |
335 | create_pipe(dev, endpoint) | \ | |
336 | USB_DIR_IN) | |
337 | #define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ | |
338 | create_pipe(dev, endpoint)) | |
339 | #define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ | |
340 | create_pipe(dev, endpoint) | \ | |
341 | USB_DIR_IN) | |
342 | #define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ | |
343 | create_pipe(dev, endpoint)) | |
344 | #define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ | |
345 | create_pipe(dev, endpoint) | \ | |
346 | USB_DIR_IN) | |
347 | #define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \ | |
348 | default_pipe(dev)) | |
349 | #define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \ | |
350 | default_pipe(dev) | \ | |
351 | USB_DIR_IN) | |
012771d8 WD |
352 | |
353 | /* The D0/D1 toggle bits */ | |
354 | #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1) | |
5cf91d6b | 355 | #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep)) |
de39f8c1 MT |
356 | #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \ |
357 | ((dev)->toggle[out] & \ | |
358 | ~(1 << ep)) | ((bit) << ep)) | |
012771d8 WD |
359 | |
360 | /* Endpoint halt control/status */ | |
361 | #define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1) | |
362 | #define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep))) | |
363 | #define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep))) | |
364 | #define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep))) | |
365 | ||
de39f8c1 MT |
366 | #define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \ |
367 | USB_PID_OUT) | |
012771d8 WD |
368 | |
369 | #define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1) | |
370 | #define usb_pipein(pipe) (((pipe) >> 7) & 1) | |
371 | #define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f) | |
372 | #define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff) | |
373 | #define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf) | |
374 | #define usb_pipedata(pipe) (((pipe) >> 19) & 1) | |
012771d8 WD |
375 | #define usb_pipetype(pipe) (((pipe) >> 30) & 3) |
376 | #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS) | |
377 | #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT) | |
378 | #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL) | |
379 | #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK) | |
380 | ||
5853e133 VG |
381 | #define usb_pipe_ep_index(pipe) \ |
382 | usb_pipecontrol(pipe) ? (usb_pipeendpoint(pipe) * 2) : \ | |
383 | ((usb_pipeendpoint(pipe) * 2) - \ | |
384 | (usb_pipein(pipe) ? 0 : 1)) | |
012771d8 WD |
385 | |
386 | /************************************************************************* | |
387 | * Hub Stuff | |
388 | */ | |
389 | struct usb_port_status { | |
390 | unsigned short wPortStatus; | |
391 | unsigned short wPortChange; | |
392 | } __attribute__ ((packed)); | |
393 | ||
394 | struct usb_hub_status { | |
395 | unsigned short wHubStatus; | |
396 | unsigned short wHubChange; | |
397 | } __attribute__ ((packed)); | |
398 | ||
399 | ||
400 | /* Hub descriptor */ | |
401 | struct usb_hub_descriptor { | |
402 | unsigned char bLength; | |
403 | unsigned char bDescriptorType; | |
404 | unsigned char bNbrPorts; | |
405 | unsigned short wHubCharacteristics; | |
406 | unsigned char bPwrOn2PwrGood; | |
407 | unsigned char bHubContrCurrent; | |
408 | unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8]; | |
409 | unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8]; | |
de39f8c1 | 410 | /* DeviceRemovable and PortPwrCtrlMask want to be variable-length |
012771d8 WD |
411 | bitmaps that hold max 255 entries. (bit0 is ignored) */ |
412 | } __attribute__ ((packed)); | |
413 | ||
414 | ||
415 | struct usb_hub_device { | |
416 | struct usb_device *pusb_dev; | |
417 | struct usb_hub_descriptor desc; | |
418 | }; | |
419 | ||
23faf2bc MV |
420 | int usb_hub_probe(struct usb_device *dev, int ifnum); |
421 | void usb_hub_reset(void); | |
422 | int hub_port_reset(struct usb_device *dev, int port, | |
423 | unsigned short *portstat); | |
424 | ||
c7e3b2b5 LS |
425 | struct usb_device *usb_alloc_new_device(void *controller); |
426 | ||
23faf2bc | 427 | int usb_new_device(struct usb_device *dev); |
359439d2 | 428 | void usb_free_device(void); |
5853e133 | 429 | int usb_alloc_device(struct usb_device *dev); |
23faf2bc | 430 | |
012771d8 | 431 | #endif /*_USB_H_ */ |