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> |
| 30 | |
| 31 | /* Everything is aribtrary */ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 32 | #define USB_ALTSETTINGALLOC 4 |
| 33 | #define USB_MAXALTSETTING 128 /* Hard limit */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 34 | |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 35 | #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 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 41 | |
| 42 | #define USB_CNTL_TIMEOUT 100 /* 100ms timeout */ |
| 43 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 44 | /* String descriptor */ |
| 45 | struct usb_string_descriptor { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 46 | unsigned char bLength; |
| 47 | unsigned char bDescriptorType; |
| 48 | unsigned short wData[1]; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 49 | } __attribute__ ((packed)); |
| 50 | |
| 51 | /* device request (setup) */ |
| 52 | struct devrequest { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 53 | unsigned char requesttype; |
| 54 | unsigned char request; |
| 55 | unsigned short value; |
| 56 | unsigned short index; |
| 57 | unsigned short length; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 58 | } __attribute__ ((packed)); |
| 59 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 60 | /* All standard descriptors have these 2 fields in common */ |
| 61 | struct usb_descriptor_header { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 62 | unsigned char bLength; |
| 63 | unsigned char bDescriptorType; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 64 | } __attribute__ ((packed)); |
| 65 | |
| 66 | /* Device descriptor */ |
| 67 | struct usb_device_descriptor { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 68 | unsigned char bLength; |
| 69 | unsigned char bDescriptorType; |
| 70 | unsigned short bcdUSB; |
| 71 | unsigned char bDeviceClass; |
| 72 | unsigned char bDeviceSubClass; |
| 73 | unsigned char bDeviceProtocol; |
| 74 | unsigned char bMaxPacketSize0; |
| 75 | unsigned short idVendor; |
| 76 | unsigned short idProduct; |
| 77 | unsigned short bcdDevice; |
| 78 | unsigned char iManufacturer; |
| 79 | unsigned char iProduct; |
| 80 | unsigned char iSerialNumber; |
| 81 | unsigned char bNumConfigurations; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 82 | } __attribute__ ((packed)); |
| 83 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 84 | /* Endpoint descriptor */ |
| 85 | struct usb_endpoint_descriptor { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 86 | unsigned char bLength; |
| 87 | unsigned char bDescriptorType; |
| 88 | unsigned char bEndpointAddress; |
| 89 | unsigned char bmAttributes; |
| 90 | unsigned short wMaxPacketSize; |
| 91 | unsigned char bInterval; |
| 92 | unsigned char bRefresh; |
| 93 | unsigned char bSynchAddress; |
Stefan Althoefer | d277682 | 2008-12-07 19:39:11 +0100 | [diff] [blame] | 94 | } __attribute__ ((packed)) __attribute__ ((aligned(2))); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 95 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 96 | /* Interface descriptor */ |
| 97 | struct usb_interface_descriptor { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 98 | unsigned char bLength; |
| 99 | unsigned char bDescriptorType; |
| 100 | unsigned char bInterfaceNumber; |
| 101 | unsigned char bAlternateSetting; |
| 102 | unsigned char bNumEndpoints; |
| 103 | unsigned char bInterfaceClass; |
| 104 | unsigned char bInterfaceSubClass; |
| 105 | unsigned char bInterfaceProtocol; |
| 106 | unsigned char iInterface; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 107 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 108 | unsigned char no_of_ep; |
| 109 | unsigned char num_altsetting; |
| 110 | unsigned char act_altsetting; |
| 111 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 112 | struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS]; |
| 113 | } __attribute__ ((packed)); |
| 114 | |
| 115 | |
| 116 | /* Configuration descriptor information.. */ |
| 117 | struct usb_config_descriptor { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 118 | unsigned char bLength; |
| 119 | unsigned char bDescriptorType; |
| 120 | unsigned short wTotalLength; |
| 121 | unsigned char bNumInterfaces; |
| 122 | unsigned char bConfigurationValue; |
| 123 | unsigned char iConfiguration; |
| 124 | unsigned char bmAttributes; |
| 125 | unsigned char MaxPower; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 126 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 127 | unsigned char no_of_if; /* number of interfaces */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 128 | struct usb_interface_descriptor if_desc[USB_MAXINTERFACES]; |
| 129 | } __attribute__ ((packed)); |
| 130 | |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 131 | enum { |
| 132 | /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */ |
| 133 | PACKET_SIZE_8 = 0, |
| 134 | PACKET_SIZE_16 = 1, |
| 135 | PACKET_SIZE_32 = 2, |
| 136 | PACKET_SIZE_64 = 3, |
| 137 | }; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 138 | |
| 139 | struct usb_device { |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 140 | int devnum; /* Device number on USB bus */ |
| 141 | int slow; /* Slow device? */ |
| 142 | char mf[32]; /* manufacturer */ |
| 143 | char prod[32]; /* product */ |
| 144 | char serial[32]; /* serial number */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 145 | |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 146 | /* Maximum packet size; one of: PACKET_SIZE_* */ |
| 147 | int maxpacketsize; |
| 148 | /* one bit for each endpoint ([0] = IN, [1] = OUT) */ |
| 149 | unsigned int toggle[2]; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 150 | /* endpoint halts; one bit per endpoint # & direction; |
| 151 | * [0] = IN, [1] = OUT |
| 152 | */ |
Remy Bohmer | 4886720 | 2008-10-10 10:23:21 +0200 | [diff] [blame] | 153 | unsigned int halted[2]; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 154 | int epmaxpacketin[16]; /* INput endpoint specific maximums */ |
| 155 | int epmaxpacketout[16]; /* OUTput endpoint specific maximums */ |
| 156 | |
| 157 | int configno; /* selected config number */ |
| 158 | struct usb_device_descriptor descriptor; /* Device Descriptor */ |
| 159 | struct usb_config_descriptor config; /* config descriptor */ |
| 160 | |
| 161 | int have_langid; /* whether string_langid is valid yet */ |
| 162 | int string_langid; /* language ID for strings */ |
| 163 | int (*irq_handle)(struct usb_device *dev); |
| 164 | unsigned long irq_status; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 165 | int irq_act_len; /* transfered bytes */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 166 | void *privptr; |
| 167 | /* |
| 168 | * Child devices - if this is a hub device |
| 169 | * Each instance needs its own set of data structures. |
| 170 | */ |
| 171 | unsigned long status; |
| 172 | int act_len; /* transfered bytes */ |
| 173 | int maxchild; /* Number of ports if hub */ |
| 174 | struct usb_device *parent; |
| 175 | struct usb_device *children[USB_MAXCHILDREN]; |
| 176 | }; |
| 177 | |
| 178 | /********************************************************************** |
| 179 | * this is how the lowlevel part communicate with the outer world |
| 180 | */ |
| 181 | |
Rodolfo Giometti | 822af35 | 2007-04-03 14:27:18 +0200 | [diff] [blame] | 182 | #if defined(CONFIG_USB_UHCI) || defined(CONFIG_USB_OHCI) || \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 183 | defined(CONFIG_USB_OHCI_NEW) || defined(CONFIG_USB_SL811HS) || \ |
Yoshihiro Shimoda | fd0f2f3 | 2008-07-09 21:07:38 +0900 | [diff] [blame] | 184 | defined(CONFIG_USB_ISP116X_HCD) || defined(CONFIG_USB_R8A66597_HCD) |
Rodolfo Giometti | 822af35 | 2007-04-03 14:27:18 +0200 | [diff] [blame] | 185 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 186 | int usb_lowlevel_init(void); |
| 187 | int usb_lowlevel_stop(void); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 188 | int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, |
| 189 | void *buffer, int transfer_len); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 190 | 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] | 191 | int transfer_len, struct devrequest *setup); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 192 | int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer, |
| 193 | int transfer_len, int interval); |
Zhang Wei | fdcfaa1 | 2007-06-06 10:08:13 +0200 | [diff] [blame] | 194 | void usb_event_poll(void); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 195 | |
| 196 | /* Defines */ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 197 | #define USB_UHCI_VEND_ID 0x8086 |
| 198 | #define USB_UHCI_DEV_ID 0x7112 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 199 | |
| 200 | #else |
| 201 | #error USB Lowlevel not defined |
| 202 | #endif |
| 203 | |
| 204 | #ifdef CONFIG_USB_STORAGE |
| 205 | |
| 206 | #define USB_MAX_STOR_DEV 5 |
| 207 | block_dev_desc_t *usb_stor_get_dev(int index); |
| 208 | int usb_stor_scan(int mode); |
Anatolij Gustschin | e813eae | 2008-03-26 17:47:44 +0100 | [diff] [blame] | 209 | int usb_stor_info(void); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 210 | |
| 211 | #endif |
| 212 | |
| 213 | #ifdef CONFIG_USB_KEYBOARD |
| 214 | |
| 215 | int drv_usb_kbd_init(void); |
| 216 | int usb_kbd_deregister(void); |
| 217 | |
| 218 | #endif |
| 219 | /* routines */ |
| 220 | int usb_init(void); /* initialize the USB Controller */ |
| 221 | int usb_stop(void); /* stop the USB Controller */ |
| 222 | |
| 223 | |
| 224 | int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 225 | int usb_set_idle(struct usb_device *dev, int ifnum, int duration, |
| 226 | int report_id); |
| 227 | struct usb_device *usb_get_dev_index(int index); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 228 | int usb_control_msg(struct usb_device *dev, unsigned int pipe, |
| 229 | unsigned char request, unsigned char requesttype, |
| 230 | unsigned short value, unsigned short index, |
| 231 | void *data, unsigned short size, int timeout); |
| 232 | int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, |
| 233 | void *data, int len, int *actual_length, int timeout); |
| 234 | int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 235 | void *buffer, int transfer_len, int interval); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 236 | void usb_disable_asynch(int disable); |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 237 | int usb_maxpacket(struct usb_device *dev, unsigned long pipe); |
| 238 | inline void wait_ms(unsigned long ms); |
| 239 | int usb_get_configuration_no(struct usb_device *dev, unsigned char *buffer, |
| 240 | int cfgno); |
| 241 | int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type, |
| 242 | unsigned char id, void *buf, int size); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 243 | int usb_get_class_descriptor(struct usb_device *dev, int ifnum, |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 244 | unsigned char type, unsigned char id, void *buf, |
| 245 | int size); |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 246 | int usb_clear_halt(struct usb_device *dev, int pipe); |
| 247 | int usb_string(struct usb_device *dev, int index, char *buf, size_t size); |
| 248 | int usb_set_interface(struct usb_device *dev, int interface, int alternate); |
| 249 | |
| 250 | /* big endian -> little endian conversion */ |
wdenk | 149dded | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 251 | /* some CPUs are already little endian e.g. the ARM920T */ |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 252 | #define __swap_16(x) \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 253 | ({ unsigned short x_ = (unsigned short)x; \ |
| 254 | (unsigned short)( \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 255 | ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 256 | }) |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 257 | #define __swap_32(x) \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 258 | ({ unsigned long x_ = (unsigned long)x; \ |
| 259 | (unsigned long)( \ |
| 260 | ((x_ & 0x000000FFUL) << 24) | \ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 261 | ((x_ & 0x0000FF00UL) << 8) | \ |
| 262 | ((x_ & 0x00FF0000UL) >> 8) | \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 263 | ((x_ & 0xFF000000UL) >> 24)); \ |
wdenk | 3f85ce2 | 2004-02-23 16:11:30 +0000 | [diff] [blame] | 264 | }) |
Markus Klotzbuecher | ae3b770 | 2006-11-27 11:46:46 +0100 | [diff] [blame] | 265 | |
| 266 | #ifdef LITTLEENDIAN |
| 267 | # define swap_16(x) (x) |
| 268 | # define swap_32(x) (x) |
| 269 | #else |
| 270 | # define swap_16(x) __swap_16(x) |
| 271 | # define swap_32(x) __swap_32(x) |
wdenk | 149dded | 2003-09-10 18:20:28 +0000 | [diff] [blame] | 272 | #endif /* LITTLEENDIAN */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 273 | |
| 274 | /* |
| 275 | * Calling this entity a "pipe" is glorifying it. A USB pipe |
| 276 | * is something embarrassingly simple: it basically consists |
| 277 | * of the following information: |
| 278 | * - device number (7 bits) |
| 279 | * - endpoint number (4 bits) |
| 280 | * - current Data0/1 state (1 bit) |
| 281 | * - direction (1 bit) |
| 282 | * - speed (1 bit) |
| 283 | * - max packet size (2 bits: 8, 16, 32 or 64) |
| 284 | * - pipe type (2 bits: control, interrupt, bulk, isochronous) |
| 285 | * |
| 286 | * That's 18 bits. Really. Nothing more. And the USB people have |
| 287 | * documented these eighteen bits as some kind of glorious |
| 288 | * virtual data structure. |
| 289 | * |
| 290 | * Let's not fall in that trap. We'll just encode it as a simple |
| 291 | * unsigned int. The encoding is: |
| 292 | * |
| 293 | * - 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] | 294 | * - direction: bit 7 (0 = Host-to-Device [Out], |
| 295 | * (1 = Device-to-Host [In]) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 296 | * - device: bits 8-14 |
| 297 | * - endpoint: bits 15-18 |
| 298 | * - Data0/1: bit 19 |
| 299 | * - speed: bit 26 (0 = Full, 1 = Low Speed) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 300 | * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt, |
| 301 | * 10 = control, 11 = bulk) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 302 | * |
| 303 | * Why? Because it's arbitrary, and whatever encoding we select is really |
| 304 | * up to us. This one happens to share a lot of bit positions with the UHCI |
| 305 | * specification, so that much of the uhci driver can just mask the bits |
| 306 | * appropriately. |
| 307 | */ |
| 308 | /* Create various pipes... */ |
| 309 | #define create_pipe(dev,endpoint) \ |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 310 | (((dev)->devnum << 8) | (endpoint << 15) | \ |
| 311 | ((dev)->slow << 26) | (dev)->maxpacketsize) |
| 312 | #define default_pipe(dev) ((dev)->slow << 26) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 313 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 314 | #define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ |
| 315 | create_pipe(dev, endpoint)) |
| 316 | #define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \ |
| 317 | create_pipe(dev, endpoint) | \ |
| 318 | USB_DIR_IN) |
| 319 | #define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ |
| 320 | create_pipe(dev, endpoint)) |
| 321 | #define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \ |
| 322 | create_pipe(dev, endpoint) | \ |
| 323 | USB_DIR_IN) |
| 324 | #define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ |
| 325 | create_pipe(dev, endpoint)) |
| 326 | #define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \ |
| 327 | create_pipe(dev, endpoint) | \ |
| 328 | USB_DIR_IN) |
| 329 | #define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ |
| 330 | create_pipe(dev, endpoint)) |
| 331 | #define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \ |
| 332 | create_pipe(dev, endpoint) | \ |
| 333 | USB_DIR_IN) |
| 334 | #define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \ |
| 335 | default_pipe(dev)) |
| 336 | #define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \ |
| 337 | default_pipe(dev) | \ |
| 338 | USB_DIR_IN) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 339 | |
| 340 | /* The D0/D1 toggle bits */ |
| 341 | #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1) |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 342 | #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep)) |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 343 | #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \ |
| 344 | ((dev)->toggle[out] & \ |
| 345 | ~(1 << ep)) | ((bit) << ep)) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 346 | |
| 347 | /* Endpoint halt control/status */ |
| 348 | #define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1) |
| 349 | #define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep))) |
| 350 | #define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep))) |
| 351 | #define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep))) |
| 352 | |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 353 | #define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \ |
| 354 | USB_PID_OUT) |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 355 | |
| 356 | #define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1) |
| 357 | #define usb_pipein(pipe) (((pipe) >> 7) & 1) |
| 358 | #define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f) |
| 359 | #define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff) |
| 360 | #define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf) |
| 361 | #define usb_pipedata(pipe) (((pipe) >> 19) & 1) |
| 362 | #define usb_pipeslow(pipe) (((pipe) >> 26) & 1) |
| 363 | #define usb_pipetype(pipe) (((pipe) >> 30) & 3) |
| 364 | #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS) |
| 365 | #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT) |
| 366 | #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL) |
| 367 | #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK) |
| 368 | |
| 369 | |
| 370 | /************************************************************************* |
| 371 | * Hub Stuff |
| 372 | */ |
| 373 | struct usb_port_status { |
| 374 | unsigned short wPortStatus; |
| 375 | unsigned short wPortChange; |
| 376 | } __attribute__ ((packed)); |
| 377 | |
| 378 | struct usb_hub_status { |
| 379 | unsigned short wHubStatus; |
| 380 | unsigned short wHubChange; |
| 381 | } __attribute__ ((packed)); |
| 382 | |
| 383 | |
| 384 | /* Hub descriptor */ |
| 385 | struct usb_hub_descriptor { |
| 386 | unsigned char bLength; |
| 387 | unsigned char bDescriptorType; |
| 388 | unsigned char bNbrPorts; |
| 389 | unsigned short wHubCharacteristics; |
| 390 | unsigned char bPwrOn2PwrGood; |
| 391 | unsigned char bHubContrCurrent; |
| 392 | unsigned char DeviceRemovable[(USB_MAXCHILDREN+1+7)/8]; |
| 393 | unsigned char PortPowerCtrlMask[(USB_MAXCHILDREN+1+7)/8]; |
Michael Trimarchi | de39f8c | 2008-11-26 17:41:34 +0100 | [diff] [blame] | 394 | /* DeviceRemovable and PortPwrCtrlMask want to be variable-length |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 395 | bitmaps that hold max 255 entries. (bit0 is ignored) */ |
| 396 | } __attribute__ ((packed)); |
| 397 | |
| 398 | |
| 399 | struct usb_hub_device { |
| 400 | struct usb_device *pusb_dev; |
| 401 | struct usb_hub_descriptor desc; |
| 402 | }; |
| 403 | |
| 404 | #endif /*_USB_H_ */ |