blob: 4689db624db291d51cc0a6ad0fee3676ff8c1f98 [file] [log] [blame]
wdenk012771d2002-03-08 21:31:05 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk20c98a62004-04-23 20:32:05 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk012771d2002-03-08 21:31:05 +000016 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 * Note: Part of this code has been derived from linux
24 *
25 */
26#ifndef _USB_H_
27#define _USB_H_
28
29#include <usb_defs.h>
Ilya Yanoka1cf10f2012-11-06 13:48:20 +000030#include <linux/usb/ch9.h>
wdenk012771d2002-03-08 21:31:05 +000031
Tom Rini2cabcf72012-07-15 22:14:24 +000032/*
33 * The EHCI spec says that we must align to at least 32 bytes. However,
34 * some platforms require larger alignment.
35 */
36#if ARCH_DMA_MINALIGN > 32
37#define USB_DMA_MINALIGN ARCH_DMA_MINALIGN
38#else
39#define USB_DMA_MINALIGN 32
40#endif
41
wdenk012771d2002-03-08 21:31:05 +000042/* Everything is aribtrary */
wdenk20c98a62004-04-23 20:32:05 +000043#define USB_ALTSETTINGALLOC 4
44#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000045
wdenk20c98a62004-04-23 20:32:05 +000046#define USB_MAX_DEVICE 32
47#define USB_MAXCONFIG 8
48#define USB_MAXINTERFACES 8
49#define USB_MAXENDPOINTS 16
50#define USB_MAXCHILDREN 8 /* This is arbitrary */
51#define USB_MAX_HUB 16
wdenk012771d2002-03-08 21:31:05 +000052
53#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
54
Simon Glassfd7f5132011-02-07 14:42:16 -080055/*
56 * This is the timeout to allow for submitting an urb in ms. We allow more
57 * time for a BULK device to react - some are slow.
58 */
Jason Cooper0efc2812011-07-31 20:09:58 +000059#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
Simon Glassfd7f5132011-02-07 14:42:16 -080060
wdenk012771d2002-03-08 21:31:05 +000061/* device request (setup) */
62struct devrequest {
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010063 unsigned char requesttype;
64 unsigned char request;
65 unsigned short value;
66 unsigned short index;
67 unsigned short length;
wdenk012771d2002-03-08 21:31:05 +000068} __attribute__ ((packed));
69
Tom Rix83b9e1d2009-10-31 12:37:38 -050070/* Interface */
71struct usb_interface {
72 struct usb_interface_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000073
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010074 unsigned char no_of_ep;
75 unsigned char num_altsetting;
76 unsigned char act_altsetting;
77
wdenk012771d2002-03-08 21:31:05 +000078 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
79} __attribute__ ((packed));
80
Tom Rix83b9e1d2009-10-31 12:37:38 -050081/* Configuration information.. */
82struct usb_config {
Ilya Yanoka1cf10f2012-11-06 13:48:20 +000083 struct usb_config_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000084
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010085 unsigned char no_of_if; /* number of interfaces */
Tom Rix83b9e1d2009-10-31 12:37:38 -050086 struct usb_interface if_desc[USB_MAXINTERFACES];
wdenk012771d2002-03-08 21:31:05 +000087} __attribute__ ((packed));
88
Remy Bohmer47e72082008-10-10 10:23:21 +020089enum {
90 /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
91 PACKET_SIZE_8 = 0,
92 PACKET_SIZE_16 = 1,
93 PACKET_SIZE_32 = 2,
94 PACKET_SIZE_64 = 3,
95};
wdenk012771d2002-03-08 21:31:05 +000096
97struct usb_device {
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010098 int devnum; /* Device number on USB bus */
Michael Trimarchi3d189962008-11-28 13:19:19 +010099 int speed; /* full/low/high */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100100 char mf[32]; /* manufacturer */
101 char prod[32]; /* product */
102 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +0000103
Remy Bohmer47e72082008-10-10 10:23:21 +0200104 /* Maximum packet size; one of: PACKET_SIZE_* */
105 int maxpacketsize;
106 /* one bit for each endpoint ([0] = IN, [1] = OUT) */
107 unsigned int toggle[2];
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100108 /* endpoint halts; one bit per endpoint # & direction;
109 * [0] = IN, [1] = OUT
110 */
Remy Bohmer47e72082008-10-10 10:23:21 +0200111 unsigned int halted[2];
wdenk012771d2002-03-08 21:31:05 +0000112 int epmaxpacketin[16]; /* INput endpoint specific maximums */
113 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
114
115 int configno; /* selected config number */
Puneet Saxena6c9bb602012-04-03 14:56:06 +0530116 /* Device Descriptor */
117 struct usb_device_descriptor descriptor
118 __attribute__((aligned(ARCH_DMA_MINALIGN)));
Tom Rix83b9e1d2009-10-31 12:37:38 -0500119 struct usb_config config; /* config descriptor */
wdenk012771d2002-03-08 21:31:05 +0000120
121 int have_langid; /* whether string_langid is valid yet */
122 int string_langid; /* language ID for strings */
123 int (*irq_handle)(struct usb_device *dev);
124 unsigned long irq_status;
wdenk20c98a62004-04-23 20:32:05 +0000125 int irq_act_len; /* transfered bytes */
wdenk012771d2002-03-08 21:31:05 +0000126 void *privptr;
127 /*
128 * Child devices - if this is a hub device
129 * Each instance needs its own set of data structures.
130 */
131 unsigned long status;
132 int act_len; /* transfered bytes */
133 int maxchild; /* Number of ports if hub */
Michael Trimarchi3d189962008-11-28 13:19:19 +0100134 int portnr;
wdenk012771d2002-03-08 21:31:05 +0000135 struct usb_device *parent;
136 struct usb_device *children[USB_MAXCHILDREN];
Lucas Stacha3231282012-09-26 00:14:34 +0200137
138 void *controller; /* hardware controller private data */
wdenk012771d2002-03-08 21:31:05 +0000139};
140
141/**********************************************************************
142 * this is how the lowlevel part communicate with the outer world
143 */
144
Rodolfo Giometti2404a2b2007-04-03 14:27:18 +0200145#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \
michael0bf2a032008-12-11 13:43:55 +0100146 defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \
Michael Trimarchi3d189962008-11-28 13:19:19 +0100147 defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \
Tom Rix09c82bc2009-10-31 12:37:41 -0500148 defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \
Bryan Wue956f342009-12-16 22:04:02 -0500149 defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \
Ajay Kumar Gupta4e1d4852010-07-09 11:43:48 +0530150 defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X)
Rodolfo Giometti2404a2b2007-04-03 14:27:18 +0200151
Lucas Stacha3231282012-09-26 00:14:34 +0200152int usb_lowlevel_init(int index, void **controller);
153int usb_lowlevel_stop(int index);
154
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100155int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
156 void *buffer, int transfer_len);
wdenk012771d2002-03-08 21:31:05 +0000157int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100158 int transfer_len, struct devrequest *setup);
wdenk012771d2002-03-08 21:31:05 +0000159int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
160 int transfer_len, int interval);
161
162/* Defines */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100163#define USB_UHCI_VEND_ID 0x8086
164#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000165
Lukasz Dalekdd94a8e2012-10-02 17:04:33 +0200166/*
167 * PXA25x can only act as USB device. There are drivers
168 * which works with USB CDC gadgets implementations.
169 * Some of them have common routines which can be used
170 * in boards init functions e.g. udc_disconnect() used for
171 * forced device disconnection from host.
172 */
173#elif defined(CONFIG_USB_GADGET_PXA2XX)
174
175extern void udc_disconnect(void);
176
wdenk012771d2002-03-08 21:31:05 +0000177#else
178#error USB Lowlevel not defined
179#endif
180
181#ifdef CONFIG_USB_STORAGE
182
183#define USB_MAX_STOR_DEV 5
184block_dev_desc_t *usb_stor_get_dev(int index);
185int usb_stor_scan(int mode);
Anatolij Gustschin18fa7002008-03-26 17:47:44 +0100186int usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000187
188#endif
189
Simon Glass1e9961d2011-02-16 11:14:33 -0800190#ifdef CONFIG_USB_HOST_ETHER
191
192#define USB_MAX_ETH_DEV 5
193int usb_host_eth_scan(int mode);
194
195#endif
196
wdenk012771d2002-03-08 21:31:05 +0000197#ifdef CONFIG_USB_KEYBOARD
198
199int drv_usb_kbd_init(void);
200int usb_kbd_deregister(void);
201
202#endif
203/* routines */
204int usb_init(void); /* initialize the USB Controller */
205int usb_stop(void); /* stop the USB Controller */
206
207
208int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100209int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
210 int report_id);
211struct usb_device *usb_get_dev_index(int index);
wdenk012771d2002-03-08 21:31:05 +0000212int usb_control_msg(struct usb_device *dev, unsigned int pipe,
213 unsigned char request, unsigned char requesttype,
214 unsigned short value, unsigned short index,
215 void *data, unsigned short size, int timeout);
216int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
217 void *data, int len, int *actual_length, int timeout);
218int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100219 void *buffer, int transfer_len, int interval);
Simon Glass1e9961d2011-02-16 11:14:33 -0800220int usb_disable_asynch(int disable);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100221int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100222int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer,
223 int cfgno);
224int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
225 unsigned char id, void *buf, int size);
wdenk012771d2002-03-08 21:31:05 +0000226int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100227 unsigned char type, unsigned char id, void *buf,
228 int size);
wdenk012771d2002-03-08 21:31:05 +0000229int usb_clear_halt(struct usb_device *dev, int pipe);
230int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
231int usb_set_interface(struct usb_device *dev, int interface, int alternate);
232
233/* big endian -> little endian conversion */
wdenkde887eb2003-09-10 18:20:28 +0000234/* some CPUs are already little endian e.g. the ARM920T */
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100235#define __swap_16(x) \
wdenkef893942004-02-23 16:11:30 +0000236 ({ unsigned short x_ = (unsigned short)x; \
237 (unsigned short)( \
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100238 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
wdenkef893942004-02-23 16:11:30 +0000239 })
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100240#define __swap_32(x) \
wdenkef893942004-02-23 16:11:30 +0000241 ({ unsigned long x_ = (unsigned long)x; \
242 (unsigned long)( \
243 ((x_ & 0x000000FFUL) << 24) | \
wdenk20c98a62004-04-23 20:32:05 +0000244 ((x_ & 0x0000FF00UL) << 8) | \
245 ((x_ & 0x00FF0000UL) >> 8) | \
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100246 ((x_ & 0xFF000000UL) >> 24)); \
wdenkef893942004-02-23 16:11:30 +0000247 })
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100248
Mike Frysingercc93fc02009-01-01 18:27:27 -0500249#ifdef __LITTLE_ENDIAN
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100250# define swap_16(x) (x)
251# define swap_32(x) (x)
252#else
253# define swap_16(x) __swap_16(x)
254# define swap_32(x) __swap_32(x)
Mike Frysingercc93fc02009-01-01 18:27:27 -0500255#endif
wdenk012771d2002-03-08 21:31:05 +0000256
257/*
258 * Calling this entity a "pipe" is glorifying it. A USB pipe
259 * is something embarrassingly simple: it basically consists
260 * of the following information:
261 * - device number (7 bits)
262 * - endpoint number (4 bits)
263 * - current Data0/1 state (1 bit)
264 * - direction (1 bit)
Michael Trimarchi3d189962008-11-28 13:19:19 +0100265 * - speed (2 bits)
wdenk012771d2002-03-08 21:31:05 +0000266 * - max packet size (2 bits: 8, 16, 32 or 64)
267 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
268 *
269 * That's 18 bits. Really. Nothing more. And the USB people have
270 * documented these eighteen bits as some kind of glorious
271 * virtual data structure.
272 *
273 * Let's not fall in that trap. We'll just encode it as a simple
274 * unsigned int. The encoding is:
275 *
276 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100277 * - direction: bit 7 (0 = Host-to-Device [Out],
278 * (1 = Device-to-Host [In])
wdenk012771d2002-03-08 21:31:05 +0000279 * - device: bits 8-14
280 * - endpoint: bits 15-18
281 * - Data0/1: bit 19
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100282 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt,
283 * 10 = control, 11 = bulk)
wdenk012771d2002-03-08 21:31:05 +0000284 *
285 * Why? Because it's arbitrary, and whatever encoding we select is really
286 * up to us. This one happens to share a lot of bit positions with the UHCI
287 * specification, so that much of the uhci driver can just mask the bits
288 * appropriately.
289 */
290/* Create various pipes... */
291#define create_pipe(dev,endpoint) \
Sergei Shtylyovca790852010-05-26 21:26:43 +0400292 (((dev)->devnum << 8) | ((endpoint) << 15) | \
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000293 (dev)->maxpacketsize)
Michael Trimarchi3d189962008-11-28 13:19:19 +0100294#define default_pipe(dev) ((dev)->speed << 26)
wdenk012771d2002-03-08 21:31:05 +0000295
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100296#define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
297 create_pipe(dev, endpoint))
298#define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
299 create_pipe(dev, endpoint) | \
300 USB_DIR_IN)
301#define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
302 create_pipe(dev, endpoint))
303#define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
304 create_pipe(dev, endpoint) | \
305 USB_DIR_IN)
306#define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
307 create_pipe(dev, endpoint))
308#define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
309 create_pipe(dev, endpoint) | \
310 USB_DIR_IN)
311#define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
312 create_pipe(dev, endpoint))
313#define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
314 create_pipe(dev, endpoint) | \
315 USB_DIR_IN)
316#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \
317 default_pipe(dev))
318#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \
319 default_pipe(dev) | \
320 USB_DIR_IN)
wdenk012771d2002-03-08 21:31:05 +0000321
322/* The D0/D1 toggle bits */
323#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
wdenk20c98a62004-04-23 20:32:05 +0000324#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100325#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \
326 ((dev)->toggle[out] & \
327 ~(1 << ep)) | ((bit) << ep))
wdenk012771d2002-03-08 21:31:05 +0000328
329/* Endpoint halt control/status */
330#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
331#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
332#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
333#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
334
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100335#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \
336 USB_PID_OUT)
wdenk012771d2002-03-08 21:31:05 +0000337
338#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
339#define usb_pipein(pipe) (((pipe) >> 7) & 1)
340#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
341#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
342#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
343#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
wdenk012771d2002-03-08 21:31:05 +0000344#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
345#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
346#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
347#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
348#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
349
350
351/*************************************************************************
352 * Hub Stuff
353 */
354struct usb_port_status {
355 unsigned short wPortStatus;
356 unsigned short wPortChange;
357} __attribute__ ((packed));
358
359struct usb_hub_status {
360 unsigned short wHubStatus;
361 unsigned short wHubChange;
362} __attribute__ ((packed));
363
364
365/* Hub descriptor */
366struct usb_hub_descriptor {
367 unsigned char bLength;
368 unsigned char bDescriptorType;
369 unsigned char bNbrPorts;
370 unsigned short wHubCharacteristics;
371 unsigned char bPwrOn2PwrGood;
372 unsigned char bHubContrCurrent;
373 unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8];
374 unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8];
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100375 /* DeviceRemovable and PortPwrCtrlMask want to be variable-length
wdenk012771d2002-03-08 21:31:05 +0000376 bitmaps that hold max 255 entries. (bit0 is ignored) */
377} __attribute__ ((packed));
378
379
380struct usb_hub_device {
381 struct usb_device *pusb_dev;
382 struct usb_hub_descriptor desc;
383};
384
Marek Vasut6da5af32012-02-13 18:58:17 +0000385int usb_hub_probe(struct usb_device *dev, int ifnum);
386void usb_hub_reset(void);
387int hub_port_reset(struct usb_device *dev, int port,
388 unsigned short *portstat);
389
Lucas Stacha3231282012-09-26 00:14:34 +0200390struct usb_device *usb_alloc_new_device(void *controller);
391
Marek Vasut6da5af32012-02-13 18:58:17 +0000392int usb_new_device(struct usb_device *dev);
393
wdenk012771d2002-03-08 21:31:05 +0000394#endif /*_USB_H_ */