wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 1 | /* |
| 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 |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 16 | * 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 Yanok | c60795f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 30 | #include <linux/usb/ch9.h> |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 31 | |
Tom Rini | 71c5de4 | 2012-07-15 22:14:24 +0000 | [diff] [blame] | 32 | /* |
| 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 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 42 | /* Everything is aribtrary */ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 43 | #define USB_ALTSETTINGALLOC 4 |
| 44 | #define USB_MAXALTSETTING 128 /* Hard limit */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 45 | |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 46 | #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 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 52 | |
| 53 | #define USB_CNTL_TIMEOUT 100 /* 100ms timeout */ |
| 54 | |
Simon Glass | 96820a3 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 55 | /* |
| 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 Cooper | 80b350a | 2011-07-31 20:09:58 +0000 | [diff] [blame] | 59 | #define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000) |
Simon Glass | 96820a3 | 2011-02-07 14:42:16 -0800 | [diff] [blame] | 60 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 61 | /* device request (setup) */ |
| 62 | struct devrequest { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 63 | unsigned char requesttype; |
| 64 | unsigned char request; |
| 65 | unsigned short value; |
| 66 | unsigned short index; |
| 67 | unsigned short length; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 68 | } __attribute__ ((packed)); |
| 69 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 70 | /* Interface */ |
| 71 | struct usb_interface { |
| 72 | struct usb_interface_descriptor desc; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 73 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 74 | unsigned char no_of_ep; |
| 75 | unsigned char num_altsetting; |
| 76 | unsigned char act_altsetting; |
| 77 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 78 | struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS]; |
Vivek Gautam | 6497c66 | 2013-04-12 16:34:38 +0530 | [diff] [blame] | 79 | /* |
| 80 | * Super Speed Device will have Super Speed Endpoint |
| 81 | * Companion Descriptor (section 9.6.7 of usb 3.0 spec) |
| 82 | * Revision 1.0 June 6th 2011 |
| 83 | */ |
| 84 | struct usb_ss_ep_comp_descriptor ss_ep_comp_desc[USB_MAXENDPOINTS]; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 85 | } __attribute__ ((packed)); |
| 86 | |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 87 | /* Configuration information.. */ |
| 88 | struct usb_config { |
Ilya Yanok | c60795f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 89 | struct usb_config_descriptor desc; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 90 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 91 | unsigned char no_of_if; /* number of interfaces */ |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 92 | struct usb_interface if_desc[USB_MAXINTERFACES]; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 93 | } __attribute__ ((packed)); |
| 94 | |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 95 | enum { |
| 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 | }; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 102 | |
| 103 | struct usb_device { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 104 | int devnum; /* Device number on USB bus */ |
Michael Trimarchi | 3e12648 | 2008-11-28 13:19:19 +0100 | [diff] [blame] | 105 | int speed; /* full/low/high */ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 106 | char mf[32]; /* manufacturer */ |
| 107 | char prod[32]; /* product */ |
| 108 | char serial[32]; /* serial number */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 109 | |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 110 | /* 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 Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 114 | /* endpoint halts; one bit per endpoint # & direction; |
| 115 | * [0] = IN, [1] = OUT |
| 116 | */ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 117 | unsigned int halted[2]; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 118 | int epmaxpacketin[16]; /* INput endpoint specific maximums */ |
| 119 | int epmaxpacketout[16]; /* OUTput endpoint specific maximums */ |
| 120 | |
| 121 | int configno; /* selected config number */ |
Puneet Saxena | f576613 | 2012-04-03 14:56:06 +0530 | [diff] [blame] | 122 | /* Device Descriptor */ |
| 123 | struct usb_device_descriptor descriptor |
| 124 | __attribute__((aligned(ARCH_DMA_MINALIGN))); |
Tom Rix | 8f8bd56 | 2009-10-31 12:37:38 -0500 | [diff] [blame] | 125 | struct usb_config config; /* config descriptor */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 126 | |
| 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; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 131 | int irq_act_len; /* transfered bytes */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 132 | 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 Trimarchi | 3e12648 | 2008-11-28 13:19:19 +0100 | [diff] [blame] | 140 | int portnr; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 141 | struct usb_device *parent; |
| 142 | struct usb_device *children[USB_MAXCHILDREN]; |
Lucas Stach | c7e3b2b | 2012-09-26 00:14:34 +0200 | [diff] [blame] | 143 | |
| 144 | void *controller; /* hardware controller private data */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | /********************************************************************** |
| 148 | * this is how the lowlevel part communicate with the outer world |
| 149 | */ |
| 150 | |
Rodolfo Giometti | 822af35 | 2007-04-03 14:27:18 +0200 | [diff] [blame] | 151 | #if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \ |
michael | 51ab142 | 2008-12-11 13:43:55 +0100 | [diff] [blame] | 152 | defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_OHCI_NEW) || \ |
Michael Trimarchi | 3e12648 | 2008-11-28 13:19:19 +0100 | [diff] [blame] | 153 | defined(CONFIG_USB_SL811HS) || defined(CONFIG_USB_ISP116X_HCD) || \ |
Tom Rix | f298e4b | 2009-10-31 12:37:41 -0500 | [diff] [blame] | 154 | defined(CONFIG_USB_R8A66597_HCD) || defined(CONFIG_USB_DAVINCI) || \ |
Bryan Wu | e608f22 | 2009-12-16 22:04:02 -0500 | [diff] [blame] | 155 | defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \ |
Ilya Yanok | 37931f0 | 2012-11-06 13:48:22 +0000 | [diff] [blame] | 156 | defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X) || \ |
Ilya Yanok | 673a524 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 157 | defined(CONFIG_USB_MUSB_DSPS) || defined(CONFIG_USB_MUSB_AM35X) || \ |
| 158 | defined(CONFIG_USB_MUSB_OMAP2PLUS) |
Rodolfo Giometti | 822af35 | 2007-04-03 14:27:18 +0200 | [diff] [blame] | 159 | |
Lucas Stach | c7e3b2b | 2012-09-26 00:14:34 +0200 | [diff] [blame] | 160 | int usb_lowlevel_init(int index, void **controller); |
| 161 | int usb_lowlevel_stop(int index); |
| 162 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 163 | int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 164 | void *buffer, int transfer_len); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 165 | int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 166 | int transfer_len, struct devrequest *setup); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 167 | int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
| 168 | int transfer_len, int interval); |
| 169 | |
| 170 | /* Defines */ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 171 | #define USB_UHCI_VEND_ID 0x8086 |
| 172 | #define USB_UHCI_DEV_ID 0x7112 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 173 | |
Lukasz Dalek | e5f2475 | 2012-10-02 17:04:33 +0200 | [diff] [blame] | 174 | /* |
| 175 | * PXA25x can only act as USB device. There are drivers |
| 176 | * which works with USB CDC gadgets implementations. |
| 177 | * Some of them have common routines which can be used |
| 178 | * in boards init functions e.g. udc_disconnect() used for |
| 179 | * forced device disconnection from host. |
| 180 | */ |
| 181 | #elif defined(CONFIG_USB_GADGET_PXA2XX) |
| 182 | |
| 183 | extern void udc_disconnect(void); |
| 184 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 185 | #else |
| 186 | #error USB Lowlevel not defined |
| 187 | #endif |
| 188 | |
| 189 | #ifdef CONFIG_USB_STORAGE |
| 190 | |
| 191 | #define USB_MAX_STOR_DEV 5 |
| 192 | block_dev_desc_t *usb_stor_get_dev(int index); |
| 193 | int usb_stor_scan(int mode); |
Anatolij Gustschin | e813eae | 2008-03-26 17:47:44 +0100 | [diff] [blame] | 194 | int usb_stor_info(void); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 195 | |
| 196 | #endif |
| 197 | |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 198 | #ifdef CONFIG_USB_HOST_ETHER |
| 199 | |
| 200 | #define USB_MAX_ETH_DEV 5 |
| 201 | int usb_host_eth_scan(int mode); |
| 202 | |
| 203 | #endif |
| 204 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 205 | #ifdef CONFIG_USB_KEYBOARD |
| 206 | |
| 207 | int drv_usb_kbd_init(void); |
| 208 | int usb_kbd_deregister(void); |
| 209 | |
| 210 | #endif |
| 211 | /* routines */ |
| 212 | int usb_init(void); /* initialize the USB Controller */ |
| 213 | int usb_stop(void); /* stop the USB Controller */ |
| 214 | |
| 215 | |
| 216 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 217 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, |
| 218 | int report_id); |
| 219 | struct usb_device *usb_get_dev_index(int index); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 220 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, |
| 221 | unsigned char request, unsigned char requesttype, |
| 222 | unsigned short value, unsigned short index, |
| 223 | void *data, unsigned short size, int timeout); |
| 224 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, |
| 225 | void *data, int len, int *actual_length, int timeout); |
| 226 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 227 | void *buffer, int transfer_len, int interval); |
Simon Glass | 89d4836 | 2011-02-16 11:14:33 -0800 | [diff] [blame] | 228 | int usb_disable_asynch(int disable); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 229 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 230 | int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer, |
| 231 | int cfgno); |
| 232 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, |
| 233 | unsigned char id, void *buf, int size); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 234 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 235 | unsigned char type, unsigned char id, void *buf, |
| 236 | int size); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 237 | int usb_clear_halt(struct usb_device *dev, int pipe); |
| 238 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size); |
| 239 | int usb_set_interface(struct usb_device *dev, int interface, int alternate); |
| 240 | |
| 241 | /* big endian -> little endian conversion */ |
wdenk | 149dded | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 242 | /* some CPUs are already little endian e.g. the ARM920T */ |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 243 | #define __swap_16(x) \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 244 | ({ unsigned short x_ = (unsigned short)x; \ |
| 245 | (unsigned short)( \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 246 | ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 247 | }) |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 248 | #define __swap_32(x) \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 249 | ({ unsigned long x_ = (unsigned long)x; \ |
| 250 | (unsigned long)( \ |
| 251 | ((x_ & 0x000000FFUL) << 24) | \ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 252 | ((x_ & 0x0000FF00UL) << 8) | \ |
| 253 | ((x_ & 0x00FF0000UL) >> 8) | \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 254 | ((x_ & 0xFF000000UL) >> 24)); \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 255 | }) |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 256 | |
Mike Frysinger | c7d703f | 2009-01-01 18:27:27 -0500 | [diff] [blame] | 257 | #ifdef __LITTLE_ENDIAN |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 258 | # define swap_16(x) (x) |
| 259 | # define swap_32(x) (x) |
| 260 | #else |
| 261 | # define swap_16(x) __swap_16(x) |
| 262 | # define swap_32(x) __swap_32(x) |
Mike Frysinger | c7d703f | 2009-01-01 18:27:27 -0500 | [diff] [blame] | 263 | #endif |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 264 | |
| 265 | /* |
| 266 | * Calling this entity a "pipe" is glorifying it. A USB pipe |
| 267 | * is something embarrassingly simple: it basically consists |
| 268 | * of the following information: |
| 269 | * - device number (7 bits) |
| 270 | * - endpoint number (4 bits) |
| 271 | * - current Data0/1 state (1 bit) |
| 272 | * - direction (1 bit) |
Michael Trimarchi | 3e12648 | 2008-11-28 13:19:19 +0100 | [diff] [blame] | 273 | * - speed (2 bits) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 274 | * - max packet size (2 bits: 8, 16, 32 or 64) |
| 275 | * - pipe type (2 bits: control, interrupt, bulk, isochronous) |
| 276 | * |
| 277 | * That's 18 bits. Really. Nothing more. And the USB people have |
| 278 | * documented these eighteen bits as some kind of glorious |
| 279 | * virtual data structure. |
| 280 | * |
| 281 | * Let's not fall in that trap. We'll just encode it as a simple |
| 282 | * unsigned int. The encoding is: |
| 283 | * |
| 284 | * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 285 | * - direction: bit 7 (0 = Host-to-Device [Out], |
| 286 | * (1 = Device-to-Host [In]) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 287 | * - device: bits 8-14 |
| 288 | * - endpoint: bits 15-18 |
| 289 | * - Data0/1: bit 19 |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 290 | * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt, |
| 291 | * 10 = control, 11 = bulk) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 292 | * |
| 293 | * Why? Because it's arbitrary, and whatever encoding we select is really |
| 294 | * up to us. This one happens to share a lot of bit positions with the UHCI |
| 295 | * specification, so that much of the uhci driver can just mask the bits |
| 296 | * appropriately. |
| 297 | */ |
| 298 | /* Create various pipes... */ |
| 299 | #define create_pipe(dev,endpoint) \ |
Sergei Shtylyov | d0fe112 | 2010-05-26 21:26:43 +0400 | [diff] [blame] | 300 | (((dev)->devnum << 8) | ((endpoint) << 15) | \ |
Ilya Yanok | c60795f | 2012-11-06 13:48:20 +0000 | [diff] [blame] | 301 | (dev)->maxpacketsize) |
Michael Trimarchi | 3e12648 | 2008-11-28 13:19:19 +0100 | [diff] [blame] | 302 | #define default_pipe(dev) ((dev)->speed << 26) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 303 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 304 | #define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ |
| 305 | create_pipe(dev, endpoint)) |
| 306 | #define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ |
| 307 | create_pipe(dev, endpoint) | \ |
| 308 | USB_DIR_IN) |
| 309 | #define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ |
| 310 | create_pipe(dev, endpoint)) |
| 311 | #define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ |
| 312 | create_pipe(dev, endpoint) | \ |
| 313 | USB_DIR_IN) |
| 314 | #define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ |
| 315 | create_pipe(dev, endpoint)) |
| 316 | #define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ |
| 317 | create_pipe(dev, endpoint) | \ |
| 318 | USB_DIR_IN) |
| 319 | #define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ |
| 320 | create_pipe(dev, endpoint)) |
| 321 | #define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ |
| 322 | create_pipe(dev, endpoint) | \ |
| 323 | USB_DIR_IN) |
| 324 | #define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \ |
| 325 | default_pipe(dev)) |
| 326 | #define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \ |
| 327 | default_pipe(dev) | \ |
| 328 | USB_DIR_IN) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 329 | |
| 330 | /* The D0/D1 toggle bits */ |
| 331 | #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1) |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 332 | #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep)) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 333 | #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \ |
| 334 | ((dev)->toggle[out] & \ |
| 335 | ~(1 << ep)) | ((bit) << ep)) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 336 | |
| 337 | /* Endpoint halt control/status */ |
| 338 | #define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1) |
| 339 | #define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep))) |
| 340 | #define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep))) |
| 341 | #define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep))) |
| 342 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 343 | #define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \ |
| 344 | USB_PID_OUT) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 345 | |
| 346 | #define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1) |
| 347 | #define usb_pipein(pipe) (((pipe) >> 7) & 1) |
| 348 | #define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f) |
| 349 | #define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff) |
| 350 | #define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf) |
| 351 | #define usb_pipedata(pipe) (((pipe) >> 19) & 1) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 352 | #define usb_pipetype(pipe) (((pipe) >> 30) & 3) |
| 353 | #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS) |
| 354 | #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT) |
| 355 | #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL) |
| 356 | #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK) |
| 357 | |
| 358 | |
| 359 | /************************************************************************* |
| 360 | * Hub Stuff |
| 361 | */ |
| 362 | struct usb_port_status { |
| 363 | unsigned short wPortStatus; |
| 364 | unsigned short wPortChange; |
| 365 | } __attribute__ ((packed)); |
| 366 | |
| 367 | struct usb_hub_status { |
| 368 | unsigned short wHubStatus; |
| 369 | unsigned short wHubChange; |
| 370 | } __attribute__ ((packed)); |
| 371 | |
| 372 | |
| 373 | /* Hub descriptor */ |
| 374 | struct usb_hub_descriptor { |
| 375 | unsigned char bLength; |
| 376 | unsigned char bDescriptorType; |
| 377 | unsigned char bNbrPorts; |
| 378 | unsigned short wHubCharacteristics; |
| 379 | unsigned char bPwrOn2PwrGood; |
| 380 | unsigned char bHubContrCurrent; |
| 381 | unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8]; |
| 382 | unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8]; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 383 | /* DeviceRemovable and PortPwrCtrlMask want to be variable-length |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 384 | bitmaps that hold max 255 entries. (bit0 is ignored) */ |
| 385 | } __attribute__ ((packed)); |
| 386 | |
| 387 | |
| 388 | struct usb_hub_device { |
| 389 | struct usb_device *pusb_dev; |
| 390 | struct usb_hub_descriptor desc; |
| 391 | }; |
| 392 | |
Marek Vasut | 23faf2b | 2012-02-13 18:58:17 +0000 | [diff] [blame] | 393 | int usb_hub_probe(struct usb_device *dev, int ifnum); |
| 394 | void usb_hub_reset(void); |
| 395 | int hub_port_reset(struct usb_device *dev, int port, |
| 396 | unsigned short *portstat); |
| 397 | |
Lucas Stach | c7e3b2b | 2012-09-26 00:14:34 +0200 | [diff] [blame] | 398 | struct usb_device *usb_alloc_new_device(void *controller); |
| 399 | |
Marek Vasut | 23faf2b | 2012-02-13 18:58:17 +0000 | [diff] [blame] | 400 | int usb_new_device(struct usb_device *dev); |
Milind Choudhary | 359439d | 2012-12-12 17:55:28 -0800 | [diff] [blame] | 401 | void usb_free_device(void); |
Marek Vasut | 23faf2b | 2012-02-13 18:58:17 +0000 | [diff] [blame] | 402 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 403 | #endif /*_USB_H_ */ |