blob: a8fee0bdb76f59a30e478286d06abb1d8201ce8a [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>
Masahiro Yamadaa8c2ebc2014-11-07 18:34:55 +090014#include <asm/cache.h>
15#include <part.h>
wdenk012771d2002-03-08 21:31:05 +000016
Tom Rini71c5de42012-07-15 22:14:24 +000017/*
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
wdenk012771d2002-03-08 21:31:05 +000027/* Everything is aribtrary */
wdenk5cf91d62004-04-23 20:32:05 +000028#define USB_ALTSETTINGALLOC 4
29#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000030
wdenk5cf91d62004-04-23 20:32:05 +000031#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
wdenk012771d2002-03-08 21:31:05 +000037
38#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
39
Simon Glass96820a32011-02-07 14:42:16 -080040/*
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 */
Jason Cooper80b350a2011-07-31 20:09:58 +000044#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
Simon Glass96820a32011-02-07 14:42:16 -080045
wdenk012771d2002-03-08 21:31:05 +000046/* device request (setup) */
47struct devrequest {
Michael Trimarchide39f8c2008-11-26 17:41:34 +010048 unsigned char requesttype;
49 unsigned char request;
50 unsigned short value;
51 unsigned short index;
52 unsigned short length;
wdenk012771d2002-03-08 21:31:05 +000053} __attribute__ ((packed));
54
Tom Rix8f8bd562009-10-31 12:37:38 -050055/* Interface */
56struct usb_interface {
57 struct usb_interface_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000058
Michael Trimarchide39f8c2008-11-26 17:41:34 +010059 unsigned char no_of_ep;
60 unsigned char num_altsetting;
61 unsigned char act_altsetting;
62
wdenk012771d2002-03-08 21:31:05 +000063 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
Vivek Gautam6497c662013-04-12 16:34:38 +053064 /*
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];
wdenk012771d2002-03-08 21:31:05 +000070} __attribute__ ((packed));
71
Tom Rix8f8bd562009-10-31 12:37:38 -050072/* Configuration information.. */
73struct usb_config {
Ilya Yanokc60795f2012-11-06 13:48:20 +000074 struct usb_config_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000075
Michael Trimarchide39f8c2008-11-26 17:41:34 +010076 unsigned char no_of_if; /* number of interfaces */
Tom Rix8f8bd562009-10-31 12:37:38 -050077 struct usb_interface if_desc[USB_MAXINTERFACES];
wdenk012771d2002-03-08 21:31:05 +000078} __attribute__ ((packed));
79
Remy Bohmer48867202008-10-10 10:23:21 +020080enum {
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};
wdenk012771d2002-03-08 21:31:05 +000087
88struct usb_device {
Michael Trimarchide39f8c2008-11-26 17:41:34 +010089 int devnum; /* Device number on USB bus */
Michael Trimarchi3e126482008-11-28 13:19:19 +010090 int speed; /* full/low/high */
Michael Trimarchide39f8c2008-11-26 17:41:34 +010091 char mf[32]; /* manufacturer */
92 char prod[32]; /* product */
93 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +000094
Remy Bohmer48867202008-10-10 10:23:21 +020095 /* 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];
Michael Trimarchide39f8c2008-11-26 17:41:34 +010099 /* endpoint halts; one bit per endpoint # & direction;
100 * [0] = IN, [1] = OUT
101 */
Remy Bohmer48867202008-10-10 10:23:21 +0200102 unsigned int halted[2];
wdenk012771d2002-03-08 21:31:05 +0000103 int epmaxpacketin[16]; /* INput endpoint specific maximums */
104 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
105
106 int configno; /* selected config number */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530107 /* Device Descriptor */
108 struct usb_device_descriptor descriptor
109 __attribute__((aligned(ARCH_DMA_MINALIGN)));
Tom Rix8f8bd562009-10-31 12:37:38 -0500110 struct usb_config config; /* config descriptor */
wdenk012771d2002-03-08 21:31:05 +0000111
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;
wdenk5cf91d62004-04-23 20:32:05 +0000116 int irq_act_len; /* transfered bytes */
wdenk012771d2002-03-08 21:31:05 +0000117 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;
Hans de Goede904f2a82015-01-11 20:34:54 +0100123 unsigned long int_pending; /* 1 bit per ep, used by int_queue */
wdenk012771d2002-03-08 21:31:05 +0000124 int act_len; /* transfered bytes */
125 int maxchild; /* Number of ports if hub */
Michael Trimarchi3e126482008-11-28 13:19:19 +0100126 int portnr;
wdenk012771d2002-03-08 21:31:05 +0000127 struct usb_device *parent;
128 struct usb_device *children[USB_MAXCHILDREN];
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200129
130 void *controller; /* hardware controller private data */
Vivek Gautam5853e132013-09-14 14:02:45 +0530131 /* slot_id - for xHCI enabled devices */
132 unsigned int slot_id;
wdenk012771d2002-03-08 21:31:05 +0000133};
134
Hans de Goede8460b892014-09-24 14:06:06 +0200135struct int_queue;
136
Troy Kiskybba67912013-10-10 15:27:55 -0700137/*
138 * You can initialize platform's USB host or device
139 * ports by passing this enum as an argument to
140 * board_usb_init().
141 */
142enum usb_init_type {
143 USB_INIT_HOST,
144 USB_INIT_DEVICE
145};
146
wdenk012771d2002-03-08 21:31:05 +0000147/**********************************************************************
148 * this is how the lowlevel part communicate with the outer world
149 */
150
Rodolfo Giometti822af352007-04-03 14:27:18 +0200151#if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \
michael51ab1422008-12-11 13:43:55 +0100152 defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \
Michael Trimarchi3e126482008-11-28 13:19:19 +0100153 defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \
Tom Rixf298e4b2009-10-31 12:37:41 -0500154 defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \
Bryan Wue608f222009-12-16 22:04:02 -0500155 defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \
Ilya Yanok37931f02012-11-06 13:48:22 +0000156 defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X) || \
Ilya Yanok673a5242012-11-06 13:48:29 +0000157 defined(CONFIG_USB_MUSB_DSPS) || defined(CONFIG_USB_MUSB_AM35X) || \
Hans de Goede28a15ef2015-01-11 20:34:48 +0100158 defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined(CONFIG_USB_MUSB_SUNXI) || \
159 defined(CONFIG_USB_XHCI) || defined(CONFIG_USB_DWC2)
Rodolfo Giometti822af352007-04-03 14:27:18 +0200160
Troy Kisky06d513e2013-10-10 15:27:56 -0700161int usb_lowlevel_init(int index, enum usb_init_type init, void **controller);
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200162int usb_lowlevel_stop(int index);
Hans de Goede90cdc102015-01-11 20:34:51 +0100163#ifdef CONFIG_MUSB_HOST
164void usb_reset_root_port(void);
165#else
166#define usb_reset_root_port()
167#endif
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200168
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100169int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
170 void *buffer, int transfer_len);
wdenk012771d2002-03-08 21:31:05 +0000171int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100172 int transfer_len, struct devrequest *setup);
wdenk012771d2002-03-08 21:31:05 +0000173int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
174 int transfer_len, int interval);
175
Hans de Goede904f2a82015-01-11 20:34:54 +0100176#if defined CONFIG_USB_EHCI || defined CONFIG_MUSB_HOST
Hans de Goede8460b892014-09-24 14:06:06 +0200177struct int_queue *create_int_queue(struct usb_device *dev, unsigned long pipe,
Hans de Goede8bb6c1d2015-01-11 20:38:28 +0100178 int queuesize, int elementsize, void *buffer, int interval);
Hans de Goede8460b892014-09-24 14:06:06 +0200179int destroy_int_queue(struct usb_device *dev, struct int_queue *queue);
180void *poll_int_queue(struct usb_device *dev, struct int_queue *queue);
181#endif
182
wdenk012771d2002-03-08 21:31:05 +0000183/* Defines */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100184#define USB_UHCI_VEND_ID 0x8086
185#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000186
Lukasz Daleke5f24752012-10-02 17:04:33 +0200187/*
188 * PXA25x can only act as USB device. There are drivers
189 * which works with USB CDC gadgets implementations.
190 * Some of them have common routines which can be used
191 * in boards init functions e.g. udc_disconnect() used for
192 * forced device disconnection from host.
193 */
194#elif defined(CONFIG_USB_GADGET_PXA2XX)
195
196extern void udc_disconnect(void);
197
wdenk012771d2002-03-08 21:31:05 +0000198#endif
199
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200200/*
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200201 * board-specific hardware initialization, called by
202 * usb drivers and u-boot commands
203 *
204 * @param index USB controller number
205 * @param init initializes controller as USB host or device
206 */
Troy Kiskybba67912013-10-10 15:27:55 -0700207int board_usb_init(int index, enum usb_init_type init);
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200208
209/*
210 * can be used to clean up after failed USB initialization attempt
211 * vide: board_usb_init()
212 *
213 * @param index USB controller number for selective cleanup
Troy Kiskybba67912013-10-10 15:27:55 -0700214 * @param init usb_init_type passed to board_usb_init()
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200215 */
Troy Kiskybba67912013-10-10 15:27:55 -0700216int board_usb_cleanup(int index, enum usb_init_type init);
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200217
wdenk012771d2002-03-08 21:31:05 +0000218#ifdef CONFIG_USB_STORAGE
219
220#define USB_MAX_STOR_DEV 5
221block_dev_desc_t *usb_stor_get_dev(int index);
222int usb_stor_scan(int mode);
Anatolij Gustschine813eae2008-03-26 17:47:44 +0100223int usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000224
225#endif
226
Simon Glass89d48362011-02-16 11:14:33 -0800227#ifdef CONFIG_USB_HOST_ETHER
228
229#define USB_MAX_ETH_DEV 5
230int usb_host_eth_scan(int mode);
231
232#endif
233
wdenk012771d2002-03-08 21:31:05 +0000234#ifdef CONFIG_USB_KEYBOARD
235
236int drv_usb_kbd_init(void);
Hans de Goede8a8a2252014-09-20 16:54:38 +0200237int usb_kbd_deregister(int force);
wdenk012771d2002-03-08 21:31:05 +0000238
239#endif
240/* routines */
241int usb_init(void); /* initialize the USB Controller */
242int usb_stop(void); /* stop the USB Controller */
243
244
245int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100246int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
247 int report_id);
248struct usb_device *usb_get_dev_index(int index);
wdenk012771d2002-03-08 21:31:05 +0000249int usb_control_msg(struct usb_device *dev, unsigned int pipe,
250 unsigned char request, unsigned char requesttype,
251 unsigned short value, unsigned short index,
252 void *data, unsigned short size, int timeout);
253int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
254 void *data, int len, int *actual_length, int timeout);
255int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100256 void *buffer, int transfer_len, int interval);
Simon Glass89d48362011-02-16 11:14:33 -0800257int usb_disable_asynch(int disable);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100258int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100259int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer,
260 int cfgno);
261int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
262 unsigned char id, void *buf, int size);
wdenk012771d2002-03-08 21:31:05 +0000263int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100264 unsigned char type, unsigned char id, void *buf,
265 int size);
wdenk012771d2002-03-08 21:31:05 +0000266int usb_clear_halt(struct usb_device *dev, int pipe);
267int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
268int usb_set_interface(struct usb_device *dev, int interface, int alternate);
269
270/* big endian -> little endian conversion */
wdenk149dded2003-09-10 18:20:28 +0000271/* some CPUs are already little endian e.g. the ARM920T */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100272#define __swap_16(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000273 ({ unsigned short x_ = (unsigned short)x; \
274 (unsigned short)( \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100275 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
wdenk3f85ce22004-02-23 16:11:30 +0000276 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100277#define __swap_32(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000278 ({ unsigned long x_ = (unsigned long)x; \
279 (unsigned long)( \
280 ((x_ & 0x000000FFUL) << 24) | \
wdenk5cf91d62004-04-23 20:32:05 +0000281 ((x_ & 0x0000FF00UL) << 8) | \
282 ((x_ & 0x00FF0000UL) >> 8) | \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100283 ((x_ & 0xFF000000UL) >> 24)); \
wdenk3f85ce22004-02-23 16:11:30 +0000284 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100285
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500286#ifdef __LITTLE_ENDIAN
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100287# define swap_16(x) (x)
288# define swap_32(x) (x)
289#else
290# define swap_16(x) __swap_16(x)
291# define swap_32(x) __swap_32(x)
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500292#endif
wdenk012771d2002-03-08 21:31:05 +0000293
294/*
295 * Calling this entity a "pipe" is glorifying it. A USB pipe
296 * is something embarrassingly simple: it basically consists
297 * of the following information:
298 * - device number (7 bits)
299 * - endpoint number (4 bits)
300 * - current Data0/1 state (1 bit)
301 * - direction (1 bit)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100302 * - speed (2 bits)
wdenk012771d2002-03-08 21:31:05 +0000303 * - max packet size (2 bits: 8, 16, 32 or 64)
304 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
305 *
306 * That's 18 bits. Really. Nothing more. And the USB people have
307 * documented these eighteen bits as some kind of glorious
308 * virtual data structure.
309 *
310 * Let's not fall in that trap. We'll just encode it as a simple
311 * unsigned int. The encoding is:
312 *
313 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100314 * - direction: bit 7 (0 = Host-to-Device [Out],
315 * (1 = Device-to-Host [In])
wdenk012771d2002-03-08 21:31:05 +0000316 * - device: bits 8-14
317 * - endpoint: bits 15-18
318 * - Data0/1: bit 19
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100319 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt,
320 * 10 = control, 11 = bulk)
wdenk012771d2002-03-08 21:31:05 +0000321 *
322 * Why? Because it's arbitrary, and whatever encoding we select is really
323 * up to us. This one happens to share a lot of bit positions with the UHCI
324 * specification, so that much of the uhci driver can just mask the bits
325 * appropriately.
326 */
327/* Create various pipes... */
328#define create_pipe(dev,endpoint) \
Sergei Shtylyovd0fe1122010-05-26 21:26:43 +0400329 (((dev)->devnum << 8) | ((endpoint) << 15) | \
Ilya Yanokc60795f2012-11-06 13:48:20 +0000330 (dev)->maxpacketsize)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100331#define default_pipe(dev) ((dev)->speed << 26)
wdenk012771d2002-03-08 21:31:05 +0000332
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100333#define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
334 create_pipe(dev, endpoint))
335#define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
336 create_pipe(dev, endpoint) | \
337 USB_DIR_IN)
338#define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
339 create_pipe(dev, endpoint))
340#define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
341 create_pipe(dev, endpoint) | \
342 USB_DIR_IN)
343#define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
344 create_pipe(dev, endpoint))
345#define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
346 create_pipe(dev, endpoint) | \
347 USB_DIR_IN)
348#define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
349 create_pipe(dev, endpoint))
350#define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
351 create_pipe(dev, endpoint) | \
352 USB_DIR_IN)
353#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \
354 default_pipe(dev))
355#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \
356 default_pipe(dev) | \
357 USB_DIR_IN)
wdenk012771d2002-03-08 21:31:05 +0000358
359/* The D0/D1 toggle bits */
360#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
wdenk5cf91d62004-04-23 20:32:05 +0000361#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100362#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \
363 ((dev)->toggle[out] & \
364 ~(1 << ep)) | ((bit) << ep))
wdenk012771d2002-03-08 21:31:05 +0000365
366/* Endpoint halt control/status */
367#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
368#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
369#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
370#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
371
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100372#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \
373 USB_PID_OUT)
wdenk012771d2002-03-08 21:31:05 +0000374
375#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
376#define usb_pipein(pipe) (((pipe) >> 7) & 1)
377#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
378#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
379#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
380#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
wdenk012771d2002-03-08 21:31:05 +0000381#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
382#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
383#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
384#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
385#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
386
Vivek Gautam5853e132013-09-14 14:02:45 +0530387#define usb_pipe_ep_index(pipe) \
388 usb_pipecontrol(pipe) ? (usb_pipeendpoint(pipe) * 2) : \
389 ((usb_pipeendpoint(pipe) * 2) - \
390 (usb_pipein(pipe) ? 0 : 1))
wdenk012771d2002-03-08 21:31:05 +0000391
392/*************************************************************************
393 * Hub Stuff
394 */
395struct usb_port_status {
396 unsigned short wPortStatus;
397 unsigned short wPortChange;
398} __attribute__ ((packed));
399
400struct usb_hub_status {
401 unsigned short wHubStatus;
402 unsigned short wHubChange;
403} __attribute__ ((packed));
404
405
406/* Hub descriptor */
407struct usb_hub_descriptor {
408 unsigned char bLength;
409 unsigned char bDescriptorType;
410 unsigned char bNbrPorts;
411 unsigned short wHubCharacteristics;
412 unsigned char bPwrOn2PwrGood;
413 unsigned char bHubContrCurrent;
414 unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8];
415 unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100416 /* DeviceRemovable and PortPwrCtrlMask want to be variable-length
wdenk012771d2002-03-08 21:31:05 +0000417 bitmaps that hold max 255 entries. (bit0 is ignored) */
418} __attribute__ ((packed));
419
420
421struct usb_hub_device {
422 struct usb_device *pusb_dev;
423 struct usb_hub_descriptor desc;
424};
425
Marek Vasut23faf2b2012-02-13 18:58:17 +0000426int usb_hub_probe(struct usb_device *dev, int ifnum);
427void usb_hub_reset(void);
428int hub_port_reset(struct usb_device *dev, int port,
429 unsigned short *portstat);
430
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200431struct usb_device *usb_alloc_new_device(void *controller);
432
Marek Vasut23faf2b2012-02-13 18:58:17 +0000433int usb_new_device(struct usb_device *dev);
Milind Choudhary359439d2012-12-12 17:55:28 -0800434void usb_free_device(void);
Vivek Gautam5853e132013-09-14 14:02:45 +0530435int usb_alloc_device(struct usb_device *dev);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000436
wdenk012771d2002-03-08 21:31:05 +0000437#endif /*_USB_H_ */