blob: ba3d169ea8cbf977aaaeb8f95e9cf331537d1d58 [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
wdenk5cf91d62004-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>
Tom Rix8f8bd562009-10-31 12:37:38 -050030#include <usbdescriptors.h>
wdenk012771d2002-03-08 21:31:05 +000031
Tom Rini71c5de42012-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 */
wdenk5cf91d62004-04-23 20:32:05 +000043#define USB_ALTSETTINGALLOC 4
44#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000045
wdenk5cf91d62004-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 Glass96820a32011-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 Cooper80b350a2011-07-31 20:09:58 +000059#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
Simon Glass96820a32011-02-07 14:42:16 -080060
wdenk012771d2002-03-08 21:31:05 +000061/* device request (setup) */
62struct devrequest {
Michael Trimarchide39f8c2008-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
wdenk012771d2002-03-08 21:31:05 +000070/* All standard descriptors have these 2 fields in common */
71struct usb_descriptor_header {
Michael Trimarchide39f8c2008-11-26 17:41:34 +010072 unsigned char bLength;
73 unsigned char bDescriptorType;
wdenk012771d2002-03-08 21:31:05 +000074} __attribute__ ((packed));
75
Tom Rix8f8bd562009-10-31 12:37:38 -050076/* Interface */
77struct usb_interface {
78 struct usb_interface_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000079
Michael Trimarchide39f8c2008-11-26 17:41:34 +010080 unsigned char no_of_ep;
81 unsigned char num_altsetting;
82 unsigned char act_altsetting;
83
wdenk012771d2002-03-08 21:31:05 +000084 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
85} __attribute__ ((packed));
86
Tom Rix8f8bd562009-10-31 12:37:38 -050087/* Configuration information.. */
88struct usb_config {
89 struct usb_configuration_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000090
Michael Trimarchide39f8c2008-11-26 17:41:34 +010091 unsigned char no_of_if; /* number of interfaces */
Tom Rix8f8bd562009-10-31 12:37:38 -050092 struct usb_interface if_desc[USB_MAXINTERFACES];
wdenk012771d2002-03-08 21:31:05 +000093} __attribute__ ((packed));
94
Remy Bohmer48867202008-10-10 10:23:21 +020095enum {
96 /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
97 PACKET_SIZE_8 = 0,
98 PACKET_SIZE_16 = 1,
99 PACKET_SIZE_32 = 2,
100 PACKET_SIZE_64 = 3,
101};
wdenk012771d2002-03-08 21:31:05 +0000102
103struct usb_device {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100104 int devnum; /* Device number on USB bus */
Michael Trimarchi3e126482008-11-28 13:19:19 +0100105 int speed; /* full/low/high */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100106 char mf[32]; /* manufacturer */
107 char prod[32]; /* product */
108 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +0000109
Remy Bohmer48867202008-10-10 10:23:21 +0200110 /* Maximum packet size; one of: PACKET_SIZE_* */
111 int maxpacketsize;
112 /* one bit for each endpoint ([0] = IN, [1] = OUT) */
113 unsigned int toggle[2];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100114 /* endpoint halts; one bit per endpoint # & direction;
115 * [0] = IN, [1] = OUT
116 */
Remy Bohmer48867202008-10-10 10:23:21 +0200117 unsigned int halted[2];
wdenk012771d2002-03-08 21:31:05 +0000118 int epmaxpacketin[16]; /* INput endpoint specific maximums */
119 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
120
121 int configno; /* selected config number */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530122 /* Device Descriptor */
123 struct usb_device_descriptor descriptor
124 __attribute__((aligned(ARCH_DMA_MINALIGN)));
Tom Rix8f8bd562009-10-31 12:37:38 -0500125 struct usb_config config; /* config descriptor */
wdenk012771d2002-03-08 21:31:05 +0000126
127 int have_langid; /* whether string_langid is valid yet */
128 int string_langid; /* language ID for strings */
129 int (*irq_handle)(struct usb_device *dev);
130 unsigned long irq_status;
wdenk5cf91d62004-04-23 20:32:05 +0000131 int irq_act_len; /* transfered bytes */
wdenk012771d2002-03-08 21:31:05 +0000132 void *privptr;
133 /*
134 * Child devices - if this is a hub device
135 * Each instance needs its own set of data structures.
136 */
137 unsigned long status;
138 int act_len; /* transfered bytes */
139 int maxchild; /* Number of ports if hub */
Michael Trimarchi3e126482008-11-28 13:19:19 +0100140 int portnr;
wdenk012771d2002-03-08 21:31:05 +0000141 struct usb_device *parent;
142 struct usb_device *children[USB_MAXCHILDREN];
143};
144
145/**********************************************************************
146 * this is how the lowlevel part communicate with the outer world
147 */
148
Rodolfo Giometti822af352007-04-03 14:27:18 +0200149#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \
michael51ab1422008-12-11 13:43:55 +0100150 defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \
Michael Trimarchi3e126482008-11-28 13:19:19 +0100151 defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \
Tom Rixf298e4b2009-10-31 12:37:41 -0500152 defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \
Bryan Wue608f222009-12-16 22:04:02 -0500153 defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \
Ajay Kumar Guptadbea3242010-07-09 11:43:48 +0530154 defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X)
Rodolfo Giometti822af352007-04-03 14:27:18 +0200155
wdenk012771d2002-03-08 21:31:05 +0000156int usb_lowlevel_init(void);
157int usb_lowlevel_stop(void);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100158int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
159 void *buffer, int transfer_len);
wdenk012771d2002-03-08 21:31:05 +0000160int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100161 int transfer_len, struct devrequest *setup);
wdenk012771d2002-03-08 21:31:05 +0000162int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
163 int transfer_len, int interval);
164
165/* Defines */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100166#define USB_UHCI_VEND_ID 0x8086
167#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000168
169#else
170#error USB Lowlevel not defined
171#endif
172
173#ifdef CONFIG_USB_STORAGE
174
175#define USB_MAX_STOR_DEV 5
176block_dev_desc_t *usb_stor_get_dev(int index);
177int usb_stor_scan(int mode);
Anatolij Gustschine813eae2008-03-26 17:47:44 +0100178int usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000179
180#endif
181
Simon Glass89d48362011-02-16 11:14:33 -0800182#ifdef CONFIG_USB_HOST_ETHER
183
184#define USB_MAX_ETH_DEV 5
185int usb_host_eth_scan(int mode);
186
187#endif
188
wdenk012771d2002-03-08 21:31:05 +0000189#ifdef CONFIG_USB_KEYBOARD
190
191int drv_usb_kbd_init(void);
192int usb_kbd_deregister(void);
193
194#endif
195/* routines */
196int usb_init(void); /* initialize the USB Controller */
197int usb_stop(void); /* stop the USB Controller */
198
199
200int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100201int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
202 int report_id);
203struct usb_device *usb_get_dev_index(int index);
wdenk012771d2002-03-08 21:31:05 +0000204int usb_control_msg(struct usb_device *dev, unsigned int pipe,
205 unsigned char request, unsigned char requesttype,
206 unsigned short value, unsigned short index,
207 void *data, unsigned short size, int timeout);
208int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
209 void *data, int len, int *actual_length, int timeout);
210int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100211 void *buffer, int transfer_len, int interval);
Simon Glass89d48362011-02-16 11:14:33 -0800212int usb_disable_asynch(int disable);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100213int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100214int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer,
215 int cfgno);
216int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
217 unsigned char id, void *buf, int size);
wdenk012771d2002-03-08 21:31:05 +0000218int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100219 unsigned char type, unsigned char id, void *buf,
220 int size);
wdenk012771d2002-03-08 21:31:05 +0000221int usb_clear_halt(struct usb_device *dev, int pipe);
222int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
223int usb_set_interface(struct usb_device *dev, int interface, int alternate);
224
225/* big endian -> little endian conversion */
wdenk149dded2003-09-10 18:20:28 +0000226/* some CPUs are already little endian e.g. the ARM920T */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100227#define __swap_16(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000228 ({ unsigned short x_ = (unsigned short)x; \
229 (unsigned short)( \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100230 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
wdenk3f85ce22004-02-23 16:11:30 +0000231 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100232#define __swap_32(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000233 ({ unsigned long x_ = (unsigned long)x; \
234 (unsigned long)( \
235 ((x_ & 0x000000FFUL) << 24) | \
wdenk5cf91d62004-04-23 20:32:05 +0000236 ((x_ & 0x0000FF00UL) << 8) | \
237 ((x_ & 0x00FF0000UL) >> 8) | \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100238 ((x_ & 0xFF000000UL) >> 24)); \
wdenk3f85ce22004-02-23 16:11:30 +0000239 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100240
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500241#ifdef __LITTLE_ENDIAN
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100242# define swap_16(x) (x)
243# define swap_32(x) (x)
244#else
245# define swap_16(x) __swap_16(x)
246# define swap_32(x) __swap_32(x)
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500247#endif
wdenk012771d2002-03-08 21:31:05 +0000248
249/*
250 * Calling this entity a "pipe" is glorifying it. A USB pipe
251 * is something embarrassingly simple: it basically consists
252 * of the following information:
253 * - device number (7 bits)
254 * - endpoint number (4 bits)
255 * - current Data0/1 state (1 bit)
256 * - direction (1 bit)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100257 * - speed (2 bits)
wdenk012771d2002-03-08 21:31:05 +0000258 * - max packet size (2 bits: 8, 16, 32 or 64)
259 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
260 *
261 * That's 18 bits. Really. Nothing more. And the USB people have
262 * documented these eighteen bits as some kind of glorious
263 * virtual data structure.
264 *
265 * Let's not fall in that trap. We'll just encode it as a simple
266 * unsigned int. The encoding is:
267 *
268 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100269 * - direction: bit 7 (0 = Host-to-Device [Out],
270 * (1 = Device-to-Host [In])
wdenk012771d2002-03-08 21:31:05 +0000271 * - device: bits 8-14
272 * - endpoint: bits 15-18
273 * - Data0/1: bit 19
Michael Trimarchi3e126482008-11-28 13:19:19 +0100274 * - speed: bit 26 (0 = Full, 1 = Low Speed, 2 = High)
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) | \
Michael Trimarchi3e126482008-11-28 13:19:19 +0100286 ((dev)->speed << 26) | (dev)->maxpacketsize)
287#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)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100337#define usb_pipespeed(pipe) (((pipe) >> 26) & 3)
338#define usb_pipeslow(pipe) (usb_pipespeed(pipe) == USB_SPEED_LOW)
wdenk012771d2002-03-08 21:31:05 +0000339#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
340#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
341#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
342#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
343#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
344
345
346/*************************************************************************
347 * Hub Stuff
348 */
349struct usb_port_status {
350 unsigned short wPortStatus;
351 unsigned short wPortChange;
352} __attribute__ ((packed));
353
354struct usb_hub_status {
355 unsigned short wHubStatus;
356 unsigned short wHubChange;
357} __attribute__ ((packed));
358
359
360/* Hub descriptor */
361struct usb_hub_descriptor {
362 unsigned char bLength;
363 unsigned char bDescriptorType;
364 unsigned char bNbrPorts;
365 unsigned short wHubCharacteristics;
366 unsigned char bPwrOn2PwrGood;
367 unsigned char bHubContrCurrent;
368 unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8];
369 unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100370 /* DeviceRemovable and PortPwrCtrlMask want to be variable-length
wdenk012771d2002-03-08 21:31:05 +0000371 bitmaps that hold max 255 entries. (bit0 is ignored) */
372} __attribute__ ((packed));
373
374
375struct usb_hub_device {
376 struct usb_device *pusb_dev;
377 struct usb_hub_descriptor desc;
378};
379
Marek Vasut23faf2b2012-02-13 18:58:17 +0000380int usb_hub_probe(struct usb_device *dev, int ifnum);
381void usb_hub_reset(void);
382int hub_port_reset(struct usb_device *dev, int port,
383 unsigned short *portstat);
384
385struct usb_device *usb_alloc_new_device(void);
386int usb_new_device(struct usb_device *dev);
387
wdenk012771d2002-03-08 21:31:05 +0000388#endif /*_USB_H_ */