blob: a96ec235c853c07ff026e0dc1304e245221c8e5f [file] [log] [blame]
wdenk012771d2002-03-08 21:31:05 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk012771d2002-03-08 21:31:05 +00006 * 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>
Ilya Yanokc60795f2012-11-06 13:48:20 +000013#include <linux/usb/ch9.h>
wdenk012771d2002-03-08 21:31:05 +000014
Tom Rini71c5de42012-07-15 22:14:24 +000015/*
16 * The EHCI spec says that we must align to at least 32 bytes. However,
17 * some platforms require larger alignment.
18 */
19#if ARCH_DMA_MINALIGN > 32
20#define USB_DMA_MINALIGN ARCH_DMA_MINALIGN
21#else
22#define USB_DMA_MINALIGN 32
23#endif
24
wdenk012771d2002-03-08 21:31:05 +000025/* Everything is aribtrary */
wdenk5cf91d62004-04-23 20:32:05 +000026#define USB_ALTSETTINGALLOC 4
27#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000028
wdenk5cf91d62004-04-23 20:32:05 +000029#define USB_MAX_DEVICE 32
30#define USB_MAXCONFIG 8
31#define USB_MAXINTERFACES 8
32#define USB_MAXENDPOINTS 16
33#define USB_MAXCHILDREN 8 /* This is arbitrary */
34#define USB_MAX_HUB 16
wdenk012771d2002-03-08 21:31:05 +000035
36#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
37
Simon Glass96820a32011-02-07 14:42:16 -080038/*
39 * This is the timeout to allow for submitting an urb in ms. We allow more
40 * time for a BULK device to react - some are slow.
41 */
Jason Cooper80b350a2011-07-31 20:09:58 +000042#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
Simon Glass96820a32011-02-07 14:42:16 -080043
wdenk012771d2002-03-08 21:31:05 +000044/* device request (setup) */
45struct devrequest {
Michael Trimarchide39f8c2008-11-26 17:41:34 +010046 unsigned char requesttype;
47 unsigned char request;
48 unsigned short value;
49 unsigned short index;
50 unsigned short length;
wdenk012771d2002-03-08 21:31:05 +000051} __attribute__ ((packed));
52
Tom Rix8f8bd562009-10-31 12:37:38 -050053/* Interface */
54struct usb_interface {
55 struct usb_interface_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000056
Michael Trimarchide39f8c2008-11-26 17:41:34 +010057 unsigned char no_of_ep;
58 unsigned char num_altsetting;
59 unsigned char act_altsetting;
60
wdenk012771d2002-03-08 21:31:05 +000061 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
Vivek Gautam6497c662013-04-12 16:34:38 +053062 /*
63 * Super Speed Device will have Super Speed Endpoint
64 * Companion Descriptor (section 9.6.7 of usb 3.0 spec)
65 * Revision 1.0 June 6th 2011
66 */
67 struct usb_ss_ep_comp_descriptor ss_ep_comp_desc[USB_MAXENDPOINTS];
wdenk012771d2002-03-08 21:31:05 +000068} __attribute__ ((packed));
69
Tom Rix8f8bd562009-10-31 12:37:38 -050070/* Configuration information.. */
71struct usb_config {
Ilya Yanokc60795f2012-11-06 13:48:20 +000072 struct usb_config_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000073
Michael Trimarchide39f8c2008-11-26 17:41:34 +010074 unsigned char no_of_if; /* number of interfaces */
Tom Rix8f8bd562009-10-31 12:37:38 -050075 struct usb_interface if_desc[USB_MAXINTERFACES];
wdenk012771d2002-03-08 21:31:05 +000076} __attribute__ ((packed));
77
Remy Bohmer48867202008-10-10 10:23:21 +020078enum {
79 /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
80 PACKET_SIZE_8 = 0,
81 PACKET_SIZE_16 = 1,
82 PACKET_SIZE_32 = 2,
83 PACKET_SIZE_64 = 3,
84};
wdenk012771d2002-03-08 21:31:05 +000085
86struct usb_device {
Michael Trimarchide39f8c2008-11-26 17:41:34 +010087 int devnum; /* Device number on USB bus */
Michael Trimarchi3e126482008-11-28 13:19:19 +010088 int speed; /* full/low/high */
Michael Trimarchide39f8c2008-11-26 17:41:34 +010089 char mf[32]; /* manufacturer */
90 char prod[32]; /* product */
91 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +000092
Remy Bohmer48867202008-10-10 10:23:21 +020093 /* Maximum packet size; one of: PACKET_SIZE_* */
94 int maxpacketsize;
95 /* one bit for each endpoint ([0] = IN, [1] = OUT) */
96 unsigned int toggle[2];
Michael Trimarchide39f8c2008-11-26 17:41:34 +010097 /* endpoint halts; one bit per endpoint # & direction;
98 * [0] = IN, [1] = OUT
99 */
Remy Bohmer48867202008-10-10 10:23:21 +0200100 unsigned int halted[2];
wdenk012771d2002-03-08 21:31:05 +0000101 int epmaxpacketin[16]; /* INput endpoint specific maximums */
102 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
103
104 int configno; /* selected config number */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530105 /* Device Descriptor */
106 struct usb_device_descriptor descriptor
107 __attribute__((aligned(ARCH_DMA_MINALIGN)));
Tom Rix8f8bd562009-10-31 12:37:38 -0500108 struct usb_config config; /* config descriptor */
wdenk012771d2002-03-08 21:31:05 +0000109
110 int have_langid; /* whether string_langid is valid yet */
111 int string_langid; /* language ID for strings */
112 int (*irq_handle)(struct usb_device *dev);
113 unsigned long irq_status;
wdenk5cf91d62004-04-23 20:32:05 +0000114 int irq_act_len; /* transfered bytes */
wdenk012771d2002-03-08 21:31:05 +0000115 void *privptr;
116 /*
117 * Child devices - if this is a hub device
118 * Each instance needs its own set of data structures.
119 */
120 unsigned long status;
121 int act_len; /* transfered bytes */
122 int maxchild; /* Number of ports if hub */
Michael Trimarchi3e126482008-11-28 13:19:19 +0100123 int portnr;
wdenk012771d2002-03-08 21:31:05 +0000124 struct usb_device *parent;
125 struct usb_device *children[USB_MAXCHILDREN];
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200126
127 void *controller; /* hardware controller private data */
Vivek Gautam5853e132013-09-14 14:02:45 +0530128 /* slot_id - for xHCI enabled devices */
129 unsigned int slot_id;
wdenk012771d2002-03-08 21:31:05 +0000130};
131
132/**********************************************************************
133 * this is how the lowlevel part communicate with the outer world
134 */
135
Rodolfo Giometti822af352007-04-03 14:27:18 +0200136#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \
michael51ab1422008-12-11 13:43:55 +0100137 defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \
Michael Trimarchi3e126482008-11-28 13:19:19 +0100138 defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \
Tom Rixf298e4b2009-10-31 12:37:41 -0500139 defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \
Bryan Wue608f222009-12-16 22:04:02 -0500140 defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \
Ilya Yanok37931f02012-11-06 13:48:22 +0000141 defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X) || \
Ilya Yanok673a5242012-11-06 13:48:29 +0000142 defined(CONFIG_USB_MUSB_DSPS) || defined(CONFIG_USB_MUSB_AM35X) || \
Vivek Gautam5853e132013-09-14 14:02:45 +0530143 defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined(CONFIG_USB_XHCI)
Rodolfo Giometti822af352007-04-03 14:27:18 +0200144
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200145int usb_lowlevel_init(int index, void **controller);
146int usb_lowlevel_stop(int index);
147
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100148int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
149 void *buffer, int transfer_len);
wdenk012771d2002-03-08 21:31:05 +0000150int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100151 int transfer_len, struct devrequest *setup);
wdenk012771d2002-03-08 21:31:05 +0000152int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
153 int transfer_len, int interval);
154
155/* Defines */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100156#define USB_UHCI_VEND_ID 0x8086
157#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000158
Lukasz Daleke5f24752012-10-02 17:04:33 +0200159/*
160 * PXA25x can only act as USB device. There are drivers
161 * which works with USB CDC gadgets implementations.
162 * Some of them have common routines which can be used
163 * in boards init functions e.g. udc_disconnect() used for
164 * forced device disconnection from host.
165 */
166#elif defined(CONFIG_USB_GADGET_PXA2XX)
167
168extern void udc_disconnect(void);
169
wdenk012771d2002-03-08 21:31:05 +0000170#else
171#error USB Lowlevel not defined
172#endif
173
174#ifdef CONFIG_USB_STORAGE
175
176#define USB_MAX_STOR_DEV 5
177block_dev_desc_t *usb_stor_get_dev(int index);
178int usb_stor_scan(int mode);
Anatolij Gustschine813eae2008-03-26 17:47:44 +0100179int usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000180
181#endif
182
Simon Glass89d48362011-02-16 11:14:33 -0800183#ifdef CONFIG_USB_HOST_ETHER
184
185#define USB_MAX_ETH_DEV 5
186int usb_host_eth_scan(int mode);
187
188#endif
189
wdenk012771d2002-03-08 21:31:05 +0000190#ifdef CONFIG_USB_KEYBOARD
191
192int drv_usb_kbd_init(void);
193int usb_kbd_deregister(void);
194
195#endif
196/* routines */
197int usb_init(void); /* initialize the USB Controller */
198int usb_stop(void); /* stop the USB Controller */
199
200
201int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100202int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
203 int report_id);
204struct usb_device *usb_get_dev_index(int index);
wdenk012771d2002-03-08 21:31:05 +0000205int usb_control_msg(struct usb_device *dev, unsigned int pipe,
206 unsigned char request, unsigned char requesttype,
207 unsigned short value, unsigned short index,
208 void *data, unsigned short size, int timeout);
209int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
210 void *data, int len, int *actual_length, int timeout);
211int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100212 void *buffer, int transfer_len, int interval);
Simon Glass89d48362011-02-16 11:14:33 -0800213int usb_disable_asynch(int disable);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100214int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100215int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer,
216 int cfgno);
217int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
218 unsigned char id, void *buf, int size);
wdenk012771d2002-03-08 21:31:05 +0000219int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100220 unsigned char type, unsigned char id, void *buf,
221 int size);
wdenk012771d2002-03-08 21:31:05 +0000222int usb_clear_halt(struct usb_device *dev, int pipe);
223int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
224int usb_set_interface(struct usb_device *dev, int interface, int alternate);
225
226/* big endian -> little endian conversion */
wdenk149dded2003-09-10 18:20:28 +0000227/* some CPUs are already little endian e.g. the ARM920T */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100228#define __swap_16(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000229 ({ unsigned short x_ = (unsigned short)x; \
230 (unsigned short)( \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100231 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
wdenk3f85ce22004-02-23 16:11:30 +0000232 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100233#define __swap_32(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000234 ({ unsigned long x_ = (unsigned long)x; \
235 (unsigned long)( \
236 ((x_ & 0x000000FFUL) << 24) | \
wdenk5cf91d62004-04-23 20:32:05 +0000237 ((x_ & 0x0000FF00UL) << 8) | \
238 ((x_ & 0x00FF0000UL) >> 8) | \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100239 ((x_ & 0xFF000000UL) >> 24)); \
wdenk3f85ce22004-02-23 16:11:30 +0000240 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100241
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500242#ifdef __LITTLE_ENDIAN
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100243# define swap_16(x) (x)
244# define swap_32(x) (x)
245#else
246# define swap_16(x) __swap_16(x)
247# define swap_32(x) __swap_32(x)
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500248#endif
wdenk012771d2002-03-08 21:31:05 +0000249
250/*
251 * Calling this entity a "pipe" is glorifying it. A USB pipe
252 * is something embarrassingly simple: it basically consists
253 * of the following information:
254 * - device number (7 bits)
255 * - endpoint number (4 bits)
256 * - current Data0/1 state (1 bit)
257 * - direction (1 bit)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100258 * - speed (2 bits)
wdenk012771d2002-03-08 21:31:05 +0000259 * - max packet size (2 bits: 8, 16, 32 or 64)
260 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
261 *
262 * That's 18 bits. Really. Nothing more. And the USB people have
263 * documented these eighteen bits as some kind of glorious
264 * virtual data structure.
265 *
266 * Let's not fall in that trap. We'll just encode it as a simple
267 * unsigned int. The encoding is:
268 *
269 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100270 * - direction: bit 7 (0 = Host-to-Device [Out],
271 * (1 = Device-to-Host [In])
wdenk012771d2002-03-08 21:31:05 +0000272 * - device: bits 8-14
273 * - endpoint: bits 15-18
274 * - Data0/1: bit 19
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100275 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt,
276 * 10 = control, 11 = bulk)
wdenk012771d2002-03-08 21:31:05 +0000277 *
278 * Why? Because it's arbitrary, and whatever encoding we select is really
279 * up to us. This one happens to share a lot of bit positions with the UHCI
280 * specification, so that much of the uhci driver can just mask the bits
281 * appropriately.
282 */
283/* Create various pipes... */
284#define create_pipe(dev,endpoint) \
Sergei Shtylyovd0fe1122010-05-26 21:26:43 +0400285 (((dev)->devnum << 8) | ((endpoint) << 15) | \
Ilya Yanokc60795f2012-11-06 13:48:20 +0000286 (dev)->maxpacketsize)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100287#define default_pipe(dev) ((dev)->speed << 26)
wdenk012771d2002-03-08 21:31:05 +0000288
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100289#define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
290 create_pipe(dev, endpoint))
291#define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
292 create_pipe(dev, endpoint) | \
293 USB_DIR_IN)
294#define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
295 create_pipe(dev, endpoint))
296#define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
297 create_pipe(dev, endpoint) | \
298 USB_DIR_IN)
299#define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
300 create_pipe(dev, endpoint))
301#define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
302 create_pipe(dev, endpoint) | \
303 USB_DIR_IN)
304#define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
305 create_pipe(dev, endpoint))
306#define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
307 create_pipe(dev, endpoint) | \
308 USB_DIR_IN)
309#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \
310 default_pipe(dev))
311#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \
312 default_pipe(dev) | \
313 USB_DIR_IN)
wdenk012771d2002-03-08 21:31:05 +0000314
315/* The D0/D1 toggle bits */
316#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
wdenk5cf91d62004-04-23 20:32:05 +0000317#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100318#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \
319 ((dev)->toggle[out] & \
320 ~(1 << ep)) | ((bit) << ep))
wdenk012771d2002-03-08 21:31:05 +0000321
322/* Endpoint halt control/status */
323#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
324#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
325#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
326#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
327
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100328#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \
329 USB_PID_OUT)
wdenk012771d2002-03-08 21:31:05 +0000330
331#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
332#define usb_pipein(pipe) (((pipe) >> 7) & 1)
333#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
334#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
335#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
336#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
wdenk012771d2002-03-08 21:31:05 +0000337#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
338#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
339#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
340#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
341#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
342
Vivek Gautam5853e132013-09-14 14:02:45 +0530343#define usb_pipe_ep_index(pipe) \
344 usb_pipecontrol(pipe) ? (usb_pipeendpoint(pipe) * 2) : \
345 ((usb_pipeendpoint(pipe) * 2) - \
346 (usb_pipein(pipe) ? 0 : 1))
wdenk012771d2002-03-08 21:31:05 +0000347
348/*************************************************************************
349 * Hub Stuff
350 */
351struct usb_port_status {
352 unsigned short wPortStatus;
353 unsigned short wPortChange;
354} __attribute__ ((packed));
355
356struct usb_hub_status {
357 unsigned short wHubStatus;
358 unsigned short wHubChange;
359} __attribute__ ((packed));
360
361
362/* Hub descriptor */
363struct usb_hub_descriptor {
364 unsigned char bLength;
365 unsigned char bDescriptorType;
366 unsigned char bNbrPorts;
367 unsigned short wHubCharacteristics;
368 unsigned char bPwrOn2PwrGood;
369 unsigned char bHubContrCurrent;
370 unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8];
371 unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100372 /* DeviceRemovable and PortPwrCtrlMask want to be variable-length
wdenk012771d2002-03-08 21:31:05 +0000373 bitmaps that hold max 255 entries. (bit0 is ignored) */
374} __attribute__ ((packed));
375
376
377struct usb_hub_device {
378 struct usb_device *pusb_dev;
379 struct usb_hub_descriptor desc;
380};
381
Marek Vasut23faf2b2012-02-13 18:58:17 +0000382int usb_hub_probe(struct usb_device *dev, int ifnum);
383void usb_hub_reset(void);
384int hub_port_reset(struct usb_device *dev, int port,
385 unsigned short *portstat);
386
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200387struct usb_device *usb_alloc_new_device(void *controller);
388
Marek Vasut23faf2b2012-02-13 18:58:17 +0000389int usb_new_device(struct usb_device *dev);
Milind Choudhary359439d2012-12-12 17:55:28 -0800390void usb_free_device(void);
Vivek Gautam5853e132013-09-14 14:02:45 +0530391int usb_alloc_device(struct usb_device *dev);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000392
wdenk012771d2002-03-08 21:31:05 +0000393#endif /*_USB_H_ */