blob: bf7155404170337c8b7e1701c1aca5582c761262 [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>
30
31/* Everything is aribtrary */
wdenk5cf91d62004-04-23 20:32:05 +000032#define USB_ALTSETTINGALLOC 4
33#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000034
wdenk5cf91d62004-04-23 20:32:05 +000035#define USB_MAX_DEVICE 32
36#define USB_MAXCONFIG 8
37#define USB_MAXINTERFACES 8
38#define USB_MAXENDPOINTS 16
39#define USB_MAXCHILDREN 8 /* This is arbitrary */
40#define USB_MAX_HUB 16
wdenk012771d2002-03-08 21:31:05 +000041
42#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
43
wdenk012771d2002-03-08 21:31:05 +000044/* String descriptor */
45struct usb_string_descriptor {
46 unsigned char bLength;
47 unsigned char bDescriptorType;
48 unsigned short wData[1];
49} __attribute__ ((packed));
50
51/* device request (setup) */
52struct devrequest {
53 unsigned char requesttype;
54 unsigned char request;
55 unsigned short value;
56 unsigned short index;
57 unsigned short length;
58} __attribute__ ((packed));
59
60
wdenk012771d2002-03-08 21:31:05 +000061/* All standard descriptors have these 2 fields in common */
62struct usb_descriptor_header {
63 unsigned char bLength;
64 unsigned char bDescriptorType;
65} __attribute__ ((packed));
66
67/* Device descriptor */
68struct usb_device_descriptor {
69 unsigned char bLength;
70 unsigned char bDescriptorType;
71 unsigned short bcdUSB;
72 unsigned char bDeviceClass;
73 unsigned char bDeviceSubClass;
74 unsigned char bDeviceProtocol;
75 unsigned char bMaxPacketSize0;
76 unsigned short idVendor;
77 unsigned short idProduct;
78 unsigned short bcdDevice;
79 unsigned char iManufacturer;
80 unsigned char iProduct;
81 unsigned char iSerialNumber;
82 unsigned char bNumConfigurations;
83} __attribute__ ((packed));
84
85
86/* Endpoint descriptor */
87struct usb_endpoint_descriptor {
88 unsigned char bLength;
89 unsigned char bDescriptorType;
90 unsigned char bEndpointAddress;
91 unsigned char bmAttributes;
92 unsigned short wMaxPacketSize;
93 unsigned char bInterval;
94 unsigned char bRefresh;
95 unsigned char bSynchAddress;
96
97} __attribute__ ((packed));
98/* Interface descriptor */
99struct usb_interface_descriptor {
100 unsigned char bLength;
101 unsigned char bDescriptorType;
102 unsigned char bInterfaceNumber;
103 unsigned char bAlternateSetting;
104 unsigned char bNumEndpoints;
105 unsigned char bInterfaceClass;
106 unsigned char bInterfaceSubClass;
107 unsigned char bInterfaceProtocol;
108 unsigned char iInterface;
109
110 unsigned char no_of_ep;
Bartlomiej Sieka7455af42006-08-02 00:54:18 +0200111 unsigned char num_altsetting;
wdenk012771d2002-03-08 21:31:05 +0000112 unsigned char act_altsetting;
113 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
114} __attribute__ ((packed));
115
116
117/* Configuration descriptor information.. */
118struct usb_config_descriptor {
119 unsigned char bLength;
120 unsigned char bDescriptorType;
121 unsigned short wTotalLength;
122 unsigned char bNumInterfaces;
123 unsigned char bConfigurationValue;
124 unsigned char iConfiguration;
125 unsigned char bmAttributes;
126 unsigned char MaxPower;
127
wdenk5cf91d62004-04-23 20:32:05 +0000128 unsigned char no_of_if; /* number of interfaces */
wdenk012771d2002-03-08 21:31:05 +0000129 struct usb_interface_descriptor if_desc[USB_MAXINTERFACES];
130} __attribute__ ((packed));
131
132
133struct usb_device {
wdenk5cf91d62004-04-23 20:32:05 +0000134 int devnum; /* Device number on USB bus */
135 int slow; /* Slow device? */
136 char mf[32]; /* manufacturer */
137 char prod[32]; /* product */
138 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +0000139
wdenk5cf91d62004-04-23 20:32:05 +0000140 int maxpacketsize; /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
wdenk012771d2002-03-08 21:31:05 +0000141 unsigned int toggle[2]; /* one bit for each endpoint ([0] = IN, [1] = OUT) */
142 unsigned int halted[2]; /* endpoint halts; one bit per endpoint # & direction; */
wdenk8bde7f72003-06-27 21:31:46 +0000143 /* [0] = IN, [1] = OUT */
wdenk012771d2002-03-08 21:31:05 +0000144 int epmaxpacketin[16]; /* INput endpoint specific maximums */
145 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
146
147 int configno; /* selected config number */
148 struct usb_device_descriptor descriptor; /* Device Descriptor */
149 struct usb_config_descriptor config; /* config descriptor */
150
151 int have_langid; /* whether string_langid is valid yet */
152 int string_langid; /* language ID for strings */
153 int (*irq_handle)(struct usb_device *dev);
154 unsigned long irq_status;
wdenk5cf91d62004-04-23 20:32:05 +0000155 int irq_act_len; /* transfered bytes */
wdenk012771d2002-03-08 21:31:05 +0000156 void *privptr;
157 /*
158 * Child devices - if this is a hub device
159 * Each instance needs its own set of data structures.
160 */
161 unsigned long status;
162 int act_len; /* transfered bytes */
163 int maxchild; /* Number of ports if hub */
164 struct usb_device *parent;
165 struct usb_device *children[USB_MAXCHILDREN];
166};
167
168/**********************************************************************
169 * this is how the lowlevel part communicate with the outer world
170 */
171
wdenk5cf91d62004-04-23 20:32:05 +0000172#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || defined (CONFIG_USB_SL811HS)
wdenk012771d2002-03-08 21:31:05 +0000173int usb_lowlevel_init(void);
174int usb_lowlevel_stop(void);
175int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,int transfer_len);
176int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
177 int transfer_len,struct devrequest *setup);
178int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
179 int transfer_len, int interval);
180
181/* Defines */
182#define USB_UHCI_VEND_ID 0x8086
wdenk5cf91d62004-04-23 20:32:05 +0000183#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000184
185#else
186#error USB Lowlevel not defined
187#endif
188
189#ifdef CONFIG_USB_STORAGE
190
191#define USB_MAX_STOR_DEV 5
192block_dev_desc_t *usb_stor_get_dev(int index);
193int usb_stor_scan(int mode);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200194void usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000195
196#endif
197
198#ifdef CONFIG_USB_KEYBOARD
199
200int drv_usb_kbd_init(void);
201int usb_kbd_deregister(void);
202
203#endif
204/* routines */
205int usb_init(void); /* initialize the USB Controller */
206int usb_stop(void); /* stop the USB Controller */
207
208
209int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
210int usb_set_idle(struct usb_device *dev, int ifnum, int duration, int report_id);
211struct usb_device * usb_get_dev_index(int index);
212int 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,
219 void *buffer,int transfer_len, int interval);
220void usb_disable_asynch(int disable);
221int usb_maxpacket(struct usb_device *dev,unsigned long pipe);
222void __inline__ wait_ms(unsigned long ms);
223int usb_get_configuration_no(struct usb_device *dev,unsigned char *buffer,int cfgno);
224int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, unsigned char id, void *buf, int size);
225int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
226 unsigned char type, unsigned char id, void *buf, int size);
227int usb_clear_halt(struct usb_device *dev, int pipe);
228int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
229int usb_set_interface(struct usb_device *dev, int interface, int alternate);
230
231/* big endian -> little endian conversion */
wdenk149dded2003-09-10 18:20:28 +0000232/* some CPUs are already little endian e.g. the ARM920T */
233#ifdef LITTLEENDIAN
234#define swap_16(x) ((unsigned short)(x))
235#define swap_32(x) ((unsigned long)(x))
236#else
wdenk012771d2002-03-08 21:31:05 +0000237#define swap_16(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000238 ({ unsigned short x_ = (unsigned short)x; \
239 (unsigned short)( \
240 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8) ); \
241 })
wdenk012771d2002-03-08 21:31:05 +0000242#define swap_32(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000243 ({ unsigned long x_ = (unsigned long)x; \
244 (unsigned long)( \
245 ((x_ & 0x000000FFUL) << 24) | \
wdenk5cf91d62004-04-23 20:32:05 +0000246 ((x_ & 0x0000FF00UL) << 8) | \
247 ((x_ & 0x00FF0000UL) >> 8) | \
wdenk3f85ce22004-02-23 16:11:30 +0000248 ((x_ & 0xFF000000UL) >> 24) ); \
249 })
wdenk149dded2003-09-10 18:20:28 +0000250#endif /* LITTLEENDIAN */
wdenk012771d2002-03-08 21:31:05 +0000251
252/*
253 * Calling this entity a "pipe" is glorifying it. A USB pipe
254 * is something embarrassingly simple: it basically consists
255 * of the following information:
256 * - device number (7 bits)
257 * - endpoint number (4 bits)
258 * - current Data0/1 state (1 bit)
259 * - direction (1 bit)
260 * - speed (1 bit)
261 * - max packet size (2 bits: 8, 16, 32 or 64)
262 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
263 *
264 * That's 18 bits. Really. Nothing more. And the USB people have
265 * documented these eighteen bits as some kind of glorious
266 * virtual data structure.
267 *
268 * Let's not fall in that trap. We'll just encode it as a simple
269 * unsigned int. The encoding is:
270 *
271 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
272 * - direction: bit 7 (0 = Host-to-Device [Out], 1 = Device-to-Host [In])
273 * - device: bits 8-14
274 * - endpoint: bits 15-18
275 * - Data0/1: bit 19
276 * - speed: bit 26 (0 = Full, 1 = Low Speed)
277 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt, 10 = control, 11 = bulk)
278 *
279 * Why? Because it's arbitrary, and whatever encoding we select is really
280 * up to us. This one happens to share a lot of bit positions with the UHCI
281 * specification, so that much of the uhci driver can just mask the bits
282 * appropriately.
283 */
284/* Create various pipes... */
285#define create_pipe(dev,endpoint) \
286 (((dev)->devnum << 8) | (endpoint << 15) | ((dev)->slow << 26) | (dev)->maxpacketsize)
287#define default_pipe(dev) ((dev)->slow <<26)
288
289#define usb_sndctrlpipe(dev,endpoint) ((PIPE_CONTROL << 30) | create_pipe(dev,endpoint))
290#define usb_rcvctrlpipe(dev,endpoint) ((PIPE_CONTROL << 30) | create_pipe(dev,endpoint) | USB_DIR_IN)
291#define usb_sndisocpipe(dev,endpoint) ((PIPE_ISOCHRONOUS << 30) | create_pipe(dev,endpoint))
292#define usb_rcvisocpipe(dev,endpoint) ((PIPE_ISOCHRONOUS << 30) | create_pipe(dev,endpoint) | USB_DIR_IN)
293#define usb_sndbulkpipe(dev,endpoint) ((PIPE_BULK << 30) | create_pipe(dev,endpoint))
294#define usb_rcvbulkpipe(dev,endpoint) ((PIPE_BULK << 30) | create_pipe(dev,endpoint) | USB_DIR_IN)
295#define usb_sndintpipe(dev,endpoint) ((PIPE_INTERRUPT << 30) | create_pipe(dev,endpoint))
296#define usb_rcvintpipe(dev,endpoint) ((PIPE_INTERRUPT << 30) | create_pipe(dev,endpoint) | USB_DIR_IN)
297#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | default_pipe(dev))
298#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | default_pipe(dev) | USB_DIR_IN)
299
300/* The D0/D1 toggle bits */
301#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
wdenk5cf91d62004-04-23 20:32:05 +0000302#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
wdenk012771d2002-03-08 21:31:05 +0000303#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = ((dev)->toggle[out] & ~(1 << ep)) | ((bit) << ep))
304
305/* Endpoint halt control/status */
306#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
307#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
308#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
309#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
310
311#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : USB_PID_OUT)
312
313#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
314#define usb_pipein(pipe) (((pipe) >> 7) & 1)
315#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
316#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
317#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
318#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
319#define usb_pipeslow(pipe) (((pipe) >> 26) & 1)
320#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
321#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
322#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
323#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
324#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
325
326
327/*************************************************************************
328 * Hub Stuff
329 */
330struct usb_port_status {
331 unsigned short wPortStatus;
332 unsigned short wPortChange;
333} __attribute__ ((packed));
334
335struct usb_hub_status {
336 unsigned short wHubStatus;
337 unsigned short wHubChange;
338} __attribute__ ((packed));
339
340
341/* Hub descriptor */
342struct usb_hub_descriptor {
343 unsigned char bLength;
344 unsigned char bDescriptorType;
345 unsigned char bNbrPorts;
346 unsigned short wHubCharacteristics;
347 unsigned char bPwrOn2PwrGood;
348 unsigned char bHubContrCurrent;
349 unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8];
350 unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8];
351 /* DeviceRemovable and PortPwrCtrlMask want to be variable-length
352 bitmaps that hold max 255 entries. (bit0 is ignored) */
353} __attribute__ ((packed));
354
355
356struct usb_hub_device {
357 struct usb_device *pusb_dev;
358 struct usb_hub_descriptor desc;
359};
360
361#endif /*_USB_H_ */