hcd.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. /*
  2. * (C) Copyright Linus Torvalds 1999
  3. * (C) Copyright Johannes Erdfelt 1999-2001
  4. * (C) Copyright Andreas Gal 1999
  5. * (C) Copyright Gregory P. Smith 1999
  6. * (C) Copyright Deti Fliegl 1999
  7. * (C) Copyright Randy Dunlap 2000
  8. * (C) Copyright David Brownell 2000-2002
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  17. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  18. * for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software Foundation,
  22. * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. */
  24. #include <linux/config.h>
  25. #ifdef CONFIG_USB_DEBUG
  26. #define DEBUG
  27. #endif
  28. #include <linux/module.h>
  29. #include <linux/version.h>
  30. #include <linux/kernel.h>
  31. #include <linux/slab.h>
  32. #include <linux/completion.h>
  33. #include <linux/utsname.h>
  34. #include <linux/mm.h>
  35. #include <asm/io.h>
  36. #include <asm/scatterlist.h>
  37. #include <linux/device.h>
  38. #include <linux/dma-mapping.h>
  39. #include <asm/irq.h>
  40. #include <asm/byteorder.h>
  41. #include <linux/usb.h>
  42. #include "usb.h"
  43. #include "hcd.h"
  44. #include "hub.h"
  45. // #define USB_BANDWIDTH_MESSAGES
  46. /*-------------------------------------------------------------------------*/
  47. /*
  48. * USB Host Controller Driver framework
  49. *
  50. * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
  51. * HCD-specific behaviors/bugs.
  52. *
  53. * This does error checks, tracks devices and urbs, and delegates to a
  54. * "hc_driver" only for code (and data) that really needs to know about
  55. * hardware differences. That includes root hub registers, i/o queues,
  56. * and so on ... but as little else as possible.
  57. *
  58. * Shared code includes most of the "root hub" code (these are emulated,
  59. * though each HC's hardware works differently) and PCI glue, plus request
  60. * tracking overhead. The HCD code should only block on spinlocks or on
  61. * hardware handshaking; blocking on software events (such as other kernel
  62. * threads releasing resources, or completing actions) is all generic.
  63. *
  64. * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
  65. * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
  66. * only by the hub driver ... and that neither should be seen or used by
  67. * usb client device drivers.
  68. *
  69. * Contributors of ideas or unattributed patches include: David Brownell,
  70. * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
  71. *
  72. * HISTORY:
  73. * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
  74. * associated cleanup. "usb_hcd" still != "usb_bus".
  75. * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
  76. */
  77. /*-------------------------------------------------------------------------*/
  78. /* host controllers we manage */
  79. LIST_HEAD (usb_bus_list);
  80. EXPORT_SYMBOL_GPL (usb_bus_list);
  81. /* used when allocating bus numbers */
  82. #define USB_MAXBUS 64
  83. struct usb_busmap {
  84. unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
  85. };
  86. static struct usb_busmap busmap;
  87. /* used when updating list of hcds */
  88. DECLARE_MUTEX (usb_bus_list_lock); /* exported only for usbfs */
  89. EXPORT_SYMBOL_GPL (usb_bus_list_lock);
  90. /* used for controlling access to virtual root hubs */
  91. static DEFINE_SPINLOCK(hcd_root_hub_lock);
  92. /* used when updating hcd data */
  93. static DEFINE_SPINLOCK(hcd_data_lock);
  94. /* wait queue for synchronous unlinks */
  95. DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
  96. /*-------------------------------------------------------------------------*/
  97. /*
  98. * Sharable chunks of root hub code.
  99. */
  100. /*-------------------------------------------------------------------------*/
  101. #define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
  102. #define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
  103. /* usb 2.0 root hub device descriptor */
  104. static const u8 usb2_rh_dev_descriptor [18] = {
  105. 0x12, /* __u8 bLength; */
  106. 0x01, /* __u8 bDescriptorType; Device */
  107. 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
  108. 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
  109. 0x00, /* __u8 bDeviceSubClass; */
  110. 0x01, /* __u8 bDeviceProtocol; [ usb 2.0 single TT ]*/
  111. 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
  112. 0x00, 0x00, /* __le16 idVendor; */
  113. 0x00, 0x00, /* __le16 idProduct; */
  114. KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
  115. 0x03, /* __u8 iManufacturer; */
  116. 0x02, /* __u8 iProduct; */
  117. 0x01, /* __u8 iSerialNumber; */
  118. 0x01 /* __u8 bNumConfigurations; */
  119. };
  120. /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
  121. /* usb 1.1 root hub device descriptor */
  122. static const u8 usb11_rh_dev_descriptor [18] = {
  123. 0x12, /* __u8 bLength; */
  124. 0x01, /* __u8 bDescriptorType; Device */
  125. 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
  126. 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
  127. 0x00, /* __u8 bDeviceSubClass; */
  128. 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
  129. 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
  130. 0x00, 0x00, /* __le16 idVendor; */
  131. 0x00, 0x00, /* __le16 idProduct; */
  132. KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
  133. 0x03, /* __u8 iManufacturer; */
  134. 0x02, /* __u8 iProduct; */
  135. 0x01, /* __u8 iSerialNumber; */
  136. 0x01 /* __u8 bNumConfigurations; */
  137. };
  138. /*-------------------------------------------------------------------------*/
  139. /* Configuration descriptors for our root hubs */
  140. static const u8 fs_rh_config_descriptor [] = {
  141. /* one configuration */
  142. 0x09, /* __u8 bLength; */
  143. 0x02, /* __u8 bDescriptorType; Configuration */
  144. 0x19, 0x00, /* __le16 wTotalLength; */
  145. 0x01, /* __u8 bNumInterfaces; (1) */
  146. 0x01, /* __u8 bConfigurationValue; */
  147. 0x00, /* __u8 iConfiguration; */
  148. 0xc0, /* __u8 bmAttributes;
  149. Bit 7: must be set,
  150. 6: Self-powered,
  151. 5: Remote wakeup,
  152. 4..0: resvd */
  153. 0x00, /* __u8 MaxPower; */
  154. /* USB 1.1:
  155. * USB 2.0, single TT organization (mandatory):
  156. * one interface, protocol 0
  157. *
  158. * USB 2.0, multiple TT organization (optional):
  159. * two interfaces, protocols 1 (like single TT)
  160. * and 2 (multiple TT mode) ... config is
  161. * sometimes settable
  162. * NOT IMPLEMENTED
  163. */
  164. /* one interface */
  165. 0x09, /* __u8 if_bLength; */
  166. 0x04, /* __u8 if_bDescriptorType; Interface */
  167. 0x00, /* __u8 if_bInterfaceNumber; */
  168. 0x00, /* __u8 if_bAlternateSetting; */
  169. 0x01, /* __u8 if_bNumEndpoints; */
  170. 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
  171. 0x00, /* __u8 if_bInterfaceSubClass; */
  172. 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
  173. 0x00, /* __u8 if_iInterface; */
  174. /* one endpoint (status change endpoint) */
  175. 0x07, /* __u8 ep_bLength; */
  176. 0x05, /* __u8 ep_bDescriptorType; Endpoint */
  177. 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
  178. 0x03, /* __u8 ep_bmAttributes; Interrupt */
  179. 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
  180. 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
  181. };
  182. static const u8 hs_rh_config_descriptor [] = {
  183. /* one configuration */
  184. 0x09, /* __u8 bLength; */
  185. 0x02, /* __u8 bDescriptorType; Configuration */
  186. 0x19, 0x00, /* __le16 wTotalLength; */
  187. 0x01, /* __u8 bNumInterfaces; (1) */
  188. 0x01, /* __u8 bConfigurationValue; */
  189. 0x00, /* __u8 iConfiguration; */
  190. 0xc0, /* __u8 bmAttributes;
  191. Bit 7: must be set,
  192. 6: Self-powered,
  193. 5: Remote wakeup,
  194. 4..0: resvd */
  195. 0x00, /* __u8 MaxPower; */
  196. /* USB 1.1:
  197. * USB 2.0, single TT organization (mandatory):
  198. * one interface, protocol 0
  199. *
  200. * USB 2.0, multiple TT organization (optional):
  201. * two interfaces, protocols 1 (like single TT)
  202. * and 2 (multiple TT mode) ... config is
  203. * sometimes settable
  204. * NOT IMPLEMENTED
  205. */
  206. /* one interface */
  207. 0x09, /* __u8 if_bLength; */
  208. 0x04, /* __u8 if_bDescriptorType; Interface */
  209. 0x00, /* __u8 if_bInterfaceNumber; */
  210. 0x00, /* __u8 if_bAlternateSetting; */
  211. 0x01, /* __u8 if_bNumEndpoints; */
  212. 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
  213. 0x00, /* __u8 if_bInterfaceSubClass; */
  214. 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
  215. 0x00, /* __u8 if_iInterface; */
  216. /* one endpoint (status change endpoint) */
  217. 0x07, /* __u8 ep_bLength; */
  218. 0x05, /* __u8 ep_bDescriptorType; Endpoint */
  219. 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
  220. 0x03, /* __u8 ep_bmAttributes; Interrupt */
  221. 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
  222. 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
  223. };
  224. /*-------------------------------------------------------------------------*/
  225. /*
  226. * helper routine for returning string descriptors in UTF-16LE
  227. * input can actually be ISO-8859-1; ASCII is its 7-bit subset
  228. */
  229. static int ascii2utf (char *s, u8 *utf, int utfmax)
  230. {
  231. int retval;
  232. for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
  233. *utf++ = *s++;
  234. *utf++ = 0;
  235. }
  236. if (utfmax > 0) {
  237. *utf = *s;
  238. ++retval;
  239. }
  240. return retval;
  241. }
  242. /*
  243. * rh_string - provides manufacturer, product and serial strings for root hub
  244. * @id: the string ID number (1: serial number, 2: product, 3: vendor)
  245. * @hcd: the host controller for this root hub
  246. * @type: string describing our driver
  247. * @data: return packet in UTF-16 LE
  248. * @len: length of the return packet
  249. *
  250. * Produces either a manufacturer, product or serial number string for the
  251. * virtual root hub device.
  252. */
  253. static int rh_string (
  254. int id,
  255. struct usb_hcd *hcd,
  256. u8 *data,
  257. int len
  258. ) {
  259. char buf [100];
  260. // language ids
  261. if (id == 0) {
  262. buf[0] = 4; buf[1] = 3; /* 4 bytes string data */
  263. buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */
  264. len = min (len, 4);
  265. memcpy (data, buf, len);
  266. return len;
  267. // serial number
  268. } else if (id == 1) {
  269. strlcpy (buf, hcd->self.bus_name, sizeof buf);
  270. // product description
  271. } else if (id == 2) {
  272. strlcpy (buf, hcd->product_desc, sizeof buf);
  273. // id 3 == vendor description
  274. } else if (id == 3) {
  275. snprintf (buf, sizeof buf, "%s %s %s", system_utsname.sysname,
  276. system_utsname.release, hcd->driver->description);
  277. // unsupported IDs --> "protocol stall"
  278. } else
  279. return -EPIPE;
  280. switch (len) { /* All cases fall through */
  281. default:
  282. len = 2 + ascii2utf (buf, data + 2, len - 2);
  283. case 2:
  284. data [1] = 3; /* type == string */
  285. case 1:
  286. data [0] = 2 * (strlen (buf) + 1);
  287. case 0:
  288. ; /* Compiler wants a statement here */
  289. }
  290. return len;
  291. }
  292. /* Root hub control transfers execute synchronously */
  293. static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
  294. {
  295. struct usb_ctrlrequest *cmd;
  296. u16 typeReq, wValue, wIndex, wLength;
  297. u8 *ubuf = urb->transfer_buffer;
  298. u8 tbuf [sizeof (struct usb_hub_descriptor)];
  299. const u8 *bufp = tbuf;
  300. int len = 0;
  301. int patch_wakeup = 0;
  302. unsigned long flags;
  303. int status = 0;
  304. int n;
  305. cmd = (struct usb_ctrlrequest *) urb->setup_packet;
  306. typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
  307. wValue = le16_to_cpu (cmd->wValue);
  308. wIndex = le16_to_cpu (cmd->wIndex);
  309. wLength = le16_to_cpu (cmd->wLength);
  310. if (wLength > urb->transfer_buffer_length)
  311. goto error;
  312. urb->actual_length = 0;
  313. switch (typeReq) {
  314. /* DEVICE REQUESTS */
  315. case DeviceRequest | USB_REQ_GET_STATUS:
  316. tbuf [0] = (hcd->remote_wakeup << USB_DEVICE_REMOTE_WAKEUP)
  317. | (1 << USB_DEVICE_SELF_POWERED);
  318. tbuf [1] = 0;
  319. len = 2;
  320. break;
  321. case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
  322. if (wValue == USB_DEVICE_REMOTE_WAKEUP)
  323. hcd->remote_wakeup = 0;
  324. else
  325. goto error;
  326. break;
  327. case DeviceOutRequest | USB_REQ_SET_FEATURE:
  328. if (hcd->can_wakeup && wValue == USB_DEVICE_REMOTE_WAKEUP)
  329. hcd->remote_wakeup = 1;
  330. else
  331. goto error;
  332. break;
  333. case DeviceRequest | USB_REQ_GET_CONFIGURATION:
  334. tbuf [0] = 1;
  335. len = 1;
  336. /* FALLTHROUGH */
  337. case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
  338. break;
  339. case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
  340. switch (wValue & 0xff00) {
  341. case USB_DT_DEVICE << 8:
  342. if (hcd->driver->flags & HCD_USB2)
  343. bufp = usb2_rh_dev_descriptor;
  344. else if (hcd->driver->flags & HCD_USB11)
  345. bufp = usb11_rh_dev_descriptor;
  346. else
  347. goto error;
  348. len = 18;
  349. break;
  350. case USB_DT_CONFIG << 8:
  351. if (hcd->driver->flags & HCD_USB2) {
  352. bufp = hs_rh_config_descriptor;
  353. len = sizeof hs_rh_config_descriptor;
  354. } else {
  355. bufp = fs_rh_config_descriptor;
  356. len = sizeof fs_rh_config_descriptor;
  357. }
  358. if (hcd->can_wakeup)
  359. patch_wakeup = 1;
  360. break;
  361. case USB_DT_STRING << 8:
  362. n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
  363. if (n < 0)
  364. goto error;
  365. urb->actual_length = n;
  366. break;
  367. default:
  368. goto error;
  369. }
  370. break;
  371. case DeviceRequest | USB_REQ_GET_INTERFACE:
  372. tbuf [0] = 0;
  373. len = 1;
  374. /* FALLTHROUGH */
  375. case DeviceOutRequest | USB_REQ_SET_INTERFACE:
  376. break;
  377. case DeviceOutRequest | USB_REQ_SET_ADDRESS:
  378. // wValue == urb->dev->devaddr
  379. dev_dbg (hcd->self.controller, "root hub device address %d\n",
  380. wValue);
  381. break;
  382. /* INTERFACE REQUESTS (no defined feature/status flags) */
  383. /* ENDPOINT REQUESTS */
  384. case EndpointRequest | USB_REQ_GET_STATUS:
  385. // ENDPOINT_HALT flag
  386. tbuf [0] = 0;
  387. tbuf [1] = 0;
  388. len = 2;
  389. /* FALLTHROUGH */
  390. case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
  391. case EndpointOutRequest | USB_REQ_SET_FEATURE:
  392. dev_dbg (hcd->self.controller, "no endpoint features yet\n");
  393. break;
  394. /* CLASS REQUESTS (and errors) */
  395. default:
  396. /* non-generic request */
  397. if (HC_IS_SUSPENDED (hcd->state))
  398. status = -EAGAIN;
  399. else {
  400. switch (typeReq) {
  401. case GetHubStatus:
  402. case GetPortStatus:
  403. len = 4;
  404. break;
  405. case GetHubDescriptor:
  406. len = sizeof (struct usb_hub_descriptor);
  407. break;
  408. }
  409. status = hcd->driver->hub_control (hcd,
  410. typeReq, wValue, wIndex,
  411. tbuf, wLength);
  412. }
  413. break;
  414. error:
  415. /* "protocol stall" on error */
  416. status = -EPIPE;
  417. }
  418. if (status) {
  419. len = 0;
  420. if (status != -EPIPE) {
  421. dev_dbg (hcd->self.controller,
  422. "CTRL: TypeReq=0x%x val=0x%x "
  423. "idx=0x%x len=%d ==> %d\n",
  424. typeReq, wValue, wIndex,
  425. wLength, urb->status);
  426. }
  427. }
  428. if (len) {
  429. if (urb->transfer_buffer_length < len)
  430. len = urb->transfer_buffer_length;
  431. urb->actual_length = len;
  432. // always USB_DIR_IN, toward host
  433. memcpy (ubuf, bufp, len);
  434. /* report whether RH hardware supports remote wakeup */
  435. if (patch_wakeup &&
  436. len > offsetof (struct usb_config_descriptor,
  437. bmAttributes))
  438. ((struct usb_config_descriptor *)ubuf)->bmAttributes
  439. |= USB_CONFIG_ATT_WAKEUP;
  440. }
  441. /* any errors get returned through the urb completion */
  442. local_irq_save (flags);
  443. spin_lock (&urb->lock);
  444. if (urb->status == -EINPROGRESS)
  445. urb->status = status;
  446. spin_unlock (&urb->lock);
  447. usb_hcd_giveback_urb (hcd, urb, NULL);
  448. local_irq_restore (flags);
  449. return 0;
  450. }
  451. /*-------------------------------------------------------------------------*/
  452. /*
  453. * Root Hub interrupt transfers are polled using a timer if the
  454. * driver requests it; otherwise the driver is responsible for
  455. * calling usb_hcd_poll_rh_status() when an event occurs.
  456. *
  457. * Completions are called in_interrupt(), but they may or may not
  458. * be in_irq().
  459. */
  460. void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
  461. {
  462. struct urb *urb;
  463. int length;
  464. unsigned long flags;
  465. char buffer[4]; /* Any root hubs with > 31 ports? */
  466. if (!hcd->uses_new_polling && !hcd->status_urb)
  467. return;
  468. length = hcd->driver->hub_status_data(hcd, buffer);
  469. if (length > 0) {
  470. /* try to complete the status urb */
  471. local_irq_save (flags);
  472. spin_lock(&hcd_root_hub_lock);
  473. urb = hcd->status_urb;
  474. if (urb) {
  475. spin_lock(&urb->lock);
  476. if (urb->status == -EINPROGRESS) {
  477. hcd->poll_pending = 0;
  478. hcd->status_urb = NULL;
  479. urb->status = 0;
  480. urb->hcpriv = NULL;
  481. urb->actual_length = length;
  482. memcpy(urb->transfer_buffer, buffer, length);
  483. } else /* urb has been unlinked */
  484. length = 0;
  485. spin_unlock(&urb->lock);
  486. } else
  487. length = 0;
  488. spin_unlock(&hcd_root_hub_lock);
  489. /* local irqs are always blocked in completions */
  490. if (length > 0)
  491. usb_hcd_giveback_urb (hcd, urb, NULL);
  492. else
  493. hcd->poll_pending = 1;
  494. local_irq_restore (flags);
  495. }
  496. /* The USB 2.0 spec says 256 ms. This is close enough and won't
  497. * exceed that limit if HZ is 100. */
  498. if (hcd->uses_new_polling ? hcd->poll_rh :
  499. (length == 0 && hcd->status_urb != NULL))
  500. mod_timer (&hcd->rh_timer, jiffies + msecs_to_jiffies(250));
  501. }
  502. EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
  503. /* timer callback */
  504. static void rh_timer_func (unsigned long _hcd)
  505. {
  506. usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
  507. }
  508. /*-------------------------------------------------------------------------*/
  509. static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
  510. {
  511. int retval;
  512. unsigned long flags;
  513. int len = 1 + (urb->dev->maxchild / 8);
  514. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  515. if (urb->status != -EINPROGRESS) /* already unlinked */
  516. retval = urb->status;
  517. else if (hcd->status_urb || urb->transfer_buffer_length < len) {
  518. dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
  519. retval = -EINVAL;
  520. } else {
  521. hcd->status_urb = urb;
  522. urb->hcpriv = hcd; /* indicate it's queued */
  523. if (!hcd->uses_new_polling)
  524. mod_timer (&hcd->rh_timer, jiffies +
  525. msecs_to_jiffies(250));
  526. /* If a status change has already occurred, report it ASAP */
  527. else if (hcd->poll_pending)
  528. mod_timer (&hcd->rh_timer, jiffies);
  529. retval = 0;
  530. }
  531. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  532. return retval;
  533. }
  534. static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
  535. {
  536. if (usb_pipeint (urb->pipe))
  537. return rh_queue_status (hcd, urb);
  538. if (usb_pipecontrol (urb->pipe))
  539. return rh_call_control (hcd, urb);
  540. return -EINVAL;
  541. }
  542. /*-------------------------------------------------------------------------*/
  543. /* Asynchronous unlinks of root-hub control URBs are legal, but they
  544. * don't do anything. Status URB unlinks must be made in process context
  545. * with interrupts enabled.
  546. */
  547. static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
  548. {
  549. if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */
  550. if (in_interrupt())
  551. return 0; /* nothing to do */
  552. spin_lock_irq(&urb->lock); /* from usb_kill_urb */
  553. ++urb->reject;
  554. spin_unlock_irq(&urb->lock);
  555. wait_event(usb_kill_urb_queue,
  556. atomic_read(&urb->use_count) == 0);
  557. spin_lock_irq(&urb->lock);
  558. --urb->reject;
  559. spin_unlock_irq(&urb->lock);
  560. } else { /* Status URB */
  561. if (!hcd->uses_new_polling)
  562. del_timer_sync (&hcd->rh_timer);
  563. local_irq_disable ();
  564. spin_lock (&hcd_root_hub_lock);
  565. if (urb == hcd->status_urb) {
  566. hcd->status_urb = NULL;
  567. urb->hcpriv = NULL;
  568. } else
  569. urb = NULL; /* wasn't fully queued */
  570. spin_unlock (&hcd_root_hub_lock);
  571. if (urb)
  572. usb_hcd_giveback_urb (hcd, urb, NULL);
  573. local_irq_enable ();
  574. }
  575. return 0;
  576. }
  577. /*-------------------------------------------------------------------------*/
  578. /* exported only within usbcore */
  579. struct usb_bus *usb_bus_get(struct usb_bus *bus)
  580. {
  581. if (bus)
  582. kref_get(&bus->kref);
  583. return bus;
  584. }
  585. static void usb_host_release(struct kref *kref)
  586. {
  587. struct usb_bus *bus = container_of(kref, struct usb_bus, kref);
  588. if (bus->release)
  589. bus->release(bus);
  590. }
  591. /* exported only within usbcore */
  592. void usb_bus_put(struct usb_bus *bus)
  593. {
  594. if (bus)
  595. kref_put(&bus->kref, usb_host_release);
  596. }
  597. /*-------------------------------------------------------------------------*/
  598. static struct class *usb_host_class;
  599. int usb_host_init(void)
  600. {
  601. int retval = 0;
  602. usb_host_class = class_create(THIS_MODULE, "usb_host");
  603. if (IS_ERR(usb_host_class))
  604. retval = PTR_ERR(usb_host_class);
  605. return retval;
  606. }
  607. void usb_host_cleanup(void)
  608. {
  609. class_destroy(usb_host_class);
  610. }
  611. /**
  612. * usb_bus_init - shared initialization code
  613. * @bus: the bus structure being initialized
  614. *
  615. * This code is used to initialize a usb_bus structure, memory for which is
  616. * separately managed.
  617. */
  618. static void usb_bus_init (struct usb_bus *bus)
  619. {
  620. memset (&bus->devmap, 0, sizeof(struct usb_devmap));
  621. bus->devnum_next = 1;
  622. bus->root_hub = NULL;
  623. bus->hcpriv = NULL;
  624. bus->busnum = -1;
  625. bus->bandwidth_allocated = 0;
  626. bus->bandwidth_int_reqs = 0;
  627. bus->bandwidth_isoc_reqs = 0;
  628. INIT_LIST_HEAD (&bus->bus_list);
  629. kref_init(&bus->kref);
  630. }
  631. /**
  632. * usb_alloc_bus - creates a new USB host controller structure
  633. * @op: pointer to a struct usb_operations that this bus structure should use
  634. * Context: !in_interrupt()
  635. *
  636. * Creates a USB host controller bus structure with the specified
  637. * usb_operations and initializes all the necessary internal objects.
  638. *
  639. * If no memory is available, NULL is returned.
  640. *
  641. * The caller should call usb_put_bus() when it is finished with the structure.
  642. */
  643. struct usb_bus *usb_alloc_bus (struct usb_operations *op)
  644. {
  645. struct usb_bus *bus;
  646. bus = kmalloc (sizeof *bus, GFP_KERNEL);
  647. if (!bus)
  648. return NULL;
  649. memset(bus, 0, sizeof(struct usb_bus));
  650. usb_bus_init (bus);
  651. bus->op = op;
  652. return bus;
  653. }
  654. /*-------------------------------------------------------------------------*/
  655. /**
  656. * usb_register_bus - registers the USB host controller with the usb core
  657. * @bus: pointer to the bus to register
  658. * Context: !in_interrupt()
  659. *
  660. * Assigns a bus number, and links the controller into usbcore data
  661. * structures so that it can be seen by scanning the bus list.
  662. */
  663. static int usb_register_bus(struct usb_bus *bus)
  664. {
  665. int busnum;
  666. down (&usb_bus_list_lock);
  667. busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
  668. if (busnum < USB_MAXBUS) {
  669. set_bit (busnum, busmap.busmap);
  670. bus->busnum = busnum;
  671. } else {
  672. printk (KERN_ERR "%s: too many buses\n", usbcore_name);
  673. up(&usb_bus_list_lock);
  674. return -E2BIG;
  675. }
  676. bus->class_dev = class_device_create(usb_host_class, MKDEV(0,0), bus->controller, "usb_host%d", busnum);
  677. if (IS_ERR(bus->class_dev)) {
  678. clear_bit(busnum, busmap.busmap);
  679. up(&usb_bus_list_lock);
  680. return PTR_ERR(bus->class_dev);
  681. }
  682. class_set_devdata(bus->class_dev, bus);
  683. /* Add it to the local list of buses */
  684. list_add (&bus->bus_list, &usb_bus_list);
  685. up (&usb_bus_list_lock);
  686. usbfs_add_bus (bus);
  687. usbmon_notify_bus_add (bus);
  688. dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
  689. return 0;
  690. }
  691. /**
  692. * usb_deregister_bus - deregisters the USB host controller
  693. * @bus: pointer to the bus to deregister
  694. * Context: !in_interrupt()
  695. *
  696. * Recycles the bus number, and unlinks the controller from usbcore data
  697. * structures so that it won't be seen by scanning the bus list.
  698. */
  699. static void usb_deregister_bus (struct usb_bus *bus)
  700. {
  701. dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
  702. /*
  703. * NOTE: make sure that all the devices are removed by the
  704. * controller code, as well as having it call this when cleaning
  705. * itself up
  706. */
  707. down (&usb_bus_list_lock);
  708. list_del (&bus->bus_list);
  709. up (&usb_bus_list_lock);
  710. usbmon_notify_bus_remove (bus);
  711. usbfs_remove_bus (bus);
  712. clear_bit (bus->busnum, busmap.busmap);
  713. class_device_unregister(bus->class_dev);
  714. }
  715. /**
  716. * register_root_hub - called by usb_add_hcd() to register a root hub
  717. * @usb_dev: the usb root hub device to be registered.
  718. * @hcd: host controller for this root hub
  719. *
  720. * This function registers the root hub with the USB subsystem. It sets up
  721. * the device properly in the device tree and stores the root_hub pointer
  722. * in the bus structure, then calls usb_new_device() to register the usb
  723. * device. It also assigns the root hub's USB address (always 1).
  724. */
  725. static int register_root_hub (struct usb_device *usb_dev,
  726. struct usb_hcd *hcd)
  727. {
  728. struct device *parent_dev = hcd->self.controller;
  729. const int devnum = 1;
  730. int retval;
  731. usb_dev->devnum = devnum;
  732. usb_dev->bus->devnum_next = devnum + 1;
  733. memset (&usb_dev->bus->devmap.devicemap, 0,
  734. sizeof usb_dev->bus->devmap.devicemap);
  735. set_bit (devnum, usb_dev->bus->devmap.devicemap);
  736. usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
  737. down (&usb_bus_list_lock);
  738. usb_dev->bus->root_hub = usb_dev;
  739. usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
  740. retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
  741. if (retval != sizeof usb_dev->descriptor) {
  742. usb_dev->bus->root_hub = NULL;
  743. up (&usb_bus_list_lock);
  744. dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
  745. usb_dev->dev.bus_id, retval);
  746. return (retval < 0) ? retval : -EMSGSIZE;
  747. }
  748. usb_lock_device (usb_dev);
  749. retval = usb_new_device (usb_dev);
  750. usb_unlock_device (usb_dev);
  751. if (retval) {
  752. usb_dev->bus->root_hub = NULL;
  753. dev_err (parent_dev, "can't register root hub for %s, %d\n",
  754. usb_dev->dev.bus_id, retval);
  755. }
  756. up (&usb_bus_list_lock);
  757. if (retval == 0) {
  758. spin_lock_irq (&hcd_root_hub_lock);
  759. hcd->rh_registered = 1;
  760. spin_unlock_irq (&hcd_root_hub_lock);
  761. /* Did the HC die before the root hub was registered? */
  762. if (hcd->state == HC_STATE_HALT)
  763. usb_hc_died (hcd); /* This time clean up */
  764. }
  765. return retval;
  766. }
  767. void usb_enable_root_hub_irq (struct usb_bus *bus)
  768. {
  769. struct usb_hcd *hcd;
  770. hcd = container_of (bus, struct usb_hcd, self);
  771. if (hcd->driver->hub_irq_enable && !hcd->poll_rh &&
  772. hcd->state != HC_STATE_HALT)
  773. hcd->driver->hub_irq_enable (hcd);
  774. }
  775. /*-------------------------------------------------------------------------*/
  776. /**
  777. * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
  778. * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
  779. * @is_input: true iff the transaction sends data to the host
  780. * @isoc: true for isochronous transactions, false for interrupt ones
  781. * @bytecount: how many bytes in the transaction.
  782. *
  783. * Returns approximate bus time in nanoseconds for a periodic transaction.
  784. * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
  785. * scheduled in software, this function is only used for such scheduling.
  786. */
  787. long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
  788. {
  789. unsigned long tmp;
  790. switch (speed) {
  791. case USB_SPEED_LOW: /* INTR only */
  792. if (is_input) {
  793. tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
  794. return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  795. } else {
  796. tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
  797. return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  798. }
  799. case USB_SPEED_FULL: /* ISOC or INTR */
  800. if (isoc) {
  801. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  802. return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
  803. } else {
  804. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  805. return (9107L + BW_HOST_DELAY + tmp);
  806. }
  807. case USB_SPEED_HIGH: /* ISOC or INTR */
  808. // FIXME adjust for input vs output
  809. if (isoc)
  810. tmp = HS_NSECS_ISO (bytecount);
  811. else
  812. tmp = HS_NSECS (bytecount);
  813. return tmp;
  814. default:
  815. pr_debug ("%s: bogus device speed!\n", usbcore_name);
  816. return -1;
  817. }
  818. }
  819. EXPORT_SYMBOL (usb_calc_bus_time);
  820. /*
  821. * usb_check_bandwidth():
  822. *
  823. * old_alloc is from host_controller->bandwidth_allocated in microseconds;
  824. * bustime is from calc_bus_time(), but converted to microseconds.
  825. *
  826. * returns <bustime in us> if successful,
  827. * or -ENOSPC if bandwidth request fails.
  828. *
  829. * FIXME:
  830. * This initial implementation does not use Endpoint.bInterval
  831. * in managing bandwidth allocation.
  832. * It probably needs to be expanded to use Endpoint.bInterval.
  833. * This can be done as a later enhancement (correction).
  834. *
  835. * This will also probably require some kind of
  836. * frame allocation tracking...meaning, for example,
  837. * that if multiple drivers request interrupts every 10 USB frames,
  838. * they don't all have to be allocated at
  839. * frame numbers N, N+10, N+20, etc. Some of them could be at
  840. * N+11, N+21, N+31, etc., and others at
  841. * N+12, N+22, N+32, etc.
  842. *
  843. * Similarly for isochronous transfers...
  844. *
  845. * Individual HCDs can schedule more directly ... this logic
  846. * is not correct for high speed transfers.
  847. */
  848. int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
  849. {
  850. unsigned int pipe = urb->pipe;
  851. long bustime;
  852. int is_in = usb_pipein (pipe);
  853. int is_iso = usb_pipeisoc (pipe);
  854. int old_alloc = dev->bus->bandwidth_allocated;
  855. int new_alloc;
  856. bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
  857. usb_maxpacket (dev, pipe, !is_in)));
  858. if (is_iso)
  859. bustime /= urb->number_of_packets;
  860. new_alloc = old_alloc + (int) bustime;
  861. if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
  862. #ifdef DEBUG
  863. char *mode =
  864. #ifdef CONFIG_USB_BANDWIDTH
  865. "";
  866. #else
  867. "would have ";
  868. #endif
  869. dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
  870. mode, old_alloc, bustime, new_alloc);
  871. #endif
  872. #ifdef CONFIG_USB_BANDWIDTH
  873. bustime = -ENOSPC; /* report error */
  874. #endif
  875. }
  876. return bustime;
  877. }
  878. EXPORT_SYMBOL (usb_check_bandwidth);
  879. /**
  880. * usb_claim_bandwidth - records bandwidth for a periodic transfer
  881. * @dev: source/target of request
  882. * @urb: request (urb->dev == dev)
  883. * @bustime: bandwidth consumed, in (average) microseconds per frame
  884. * @isoc: true iff the request is isochronous
  885. *
  886. * Bus bandwidth reservations are recorded purely for diagnostic purposes.
  887. * HCDs are expected not to overcommit periodic bandwidth, and to record such
  888. * reservations whenever endpoints are added to the periodic schedule.
  889. *
  890. * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's
  891. * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
  892. * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
  893. * large its periodic schedule is.
  894. */
  895. void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
  896. {
  897. dev->bus->bandwidth_allocated += bustime;
  898. if (isoc)
  899. dev->bus->bandwidth_isoc_reqs++;
  900. else
  901. dev->bus->bandwidth_int_reqs++;
  902. urb->bandwidth = bustime;
  903. #ifdef USB_BANDWIDTH_MESSAGES
  904. dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
  905. bustime,
  906. isoc ? "ISOC" : "INTR",
  907. dev->bus->bandwidth_allocated,
  908. dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
  909. #endif
  910. }
  911. EXPORT_SYMBOL (usb_claim_bandwidth);
  912. /**
  913. * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
  914. * @dev: source/target of request
  915. * @urb: request (urb->dev == dev)
  916. * @isoc: true iff the request is isochronous
  917. *
  918. * This records that previously allocated bandwidth has been released.
  919. * Bandwidth is released when endpoints are removed from the host controller's
  920. * periodic schedule.
  921. */
  922. void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
  923. {
  924. dev->bus->bandwidth_allocated -= urb->bandwidth;
  925. if (isoc)
  926. dev->bus->bandwidth_isoc_reqs--;
  927. else
  928. dev->bus->bandwidth_int_reqs--;
  929. #ifdef USB_BANDWIDTH_MESSAGES
  930. dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
  931. urb->bandwidth,
  932. isoc ? "ISOC" : "INTR",
  933. dev->bus->bandwidth_allocated,
  934. dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
  935. #endif
  936. urb->bandwidth = 0;
  937. }
  938. EXPORT_SYMBOL (usb_release_bandwidth);
  939. /*-------------------------------------------------------------------------*/
  940. /*
  941. * Generic HC operations.
  942. */
  943. /*-------------------------------------------------------------------------*/
  944. static void urb_unlink (struct urb *urb)
  945. {
  946. unsigned long flags;
  947. /* Release any periodic transfer bandwidth */
  948. if (urb->bandwidth)
  949. usb_release_bandwidth (urb->dev, urb,
  950. usb_pipeisoc (urb->pipe));
  951. /* clear all state linking urb to this dev (and hcd) */
  952. spin_lock_irqsave (&hcd_data_lock, flags);
  953. list_del_init (&urb->urb_list);
  954. spin_unlock_irqrestore (&hcd_data_lock, flags);
  955. usb_put_dev (urb->dev);
  956. }
  957. /* may be called in any context with a valid urb->dev usecount
  958. * caller surrenders "ownership" of urb
  959. * expects usb_submit_urb() to have sanity checked and conditioned all
  960. * inputs in the urb
  961. */
  962. static int hcd_submit_urb (struct urb *urb, unsigned mem_flags)
  963. {
  964. int status;
  965. struct usb_hcd *hcd = urb->dev->bus->hcpriv;
  966. struct usb_host_endpoint *ep;
  967. unsigned long flags;
  968. if (!hcd)
  969. return -ENODEV;
  970. usbmon_urb_submit(&hcd->self, urb);
  971. /*
  972. * Atomically queue the urb, first to our records, then to the HCD.
  973. * Access to urb->status is controlled by urb->lock ... changes on
  974. * i/o completion (normal or fault) or unlinking.
  975. */
  976. // FIXME: verify that quiescing hc works right (RH cleans up)
  977. spin_lock_irqsave (&hcd_data_lock, flags);
  978. ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
  979. [usb_pipeendpoint(urb->pipe)];
  980. if (unlikely (!ep))
  981. status = -ENOENT;
  982. else if (unlikely (urb->reject))
  983. status = -EPERM;
  984. else switch (hcd->state) {
  985. case HC_STATE_RUNNING:
  986. case HC_STATE_RESUMING:
  987. usb_get_dev (urb->dev);
  988. list_add_tail (&urb->urb_list, &ep->urb_list);
  989. status = 0;
  990. break;
  991. default:
  992. status = -ESHUTDOWN;
  993. break;
  994. }
  995. spin_unlock_irqrestore (&hcd_data_lock, flags);
  996. if (status) {
  997. INIT_LIST_HEAD (&urb->urb_list);
  998. usbmon_urb_submit_error(&hcd->self, urb, status);
  999. return status;
  1000. }
  1001. /* increment urb's reference count as part of giving it to the HCD
  1002. * (which now controls it). HCD guarantees that it either returns
  1003. * an error or calls giveback(), but not both.
  1004. */
  1005. urb = usb_get_urb (urb);
  1006. atomic_inc (&urb->use_count);
  1007. if (urb->dev == hcd->self.root_hub) {
  1008. /* NOTE: requirement on hub callers (usbfs and the hub
  1009. * driver, for now) that URBs' urb->transfer_buffer be
  1010. * valid and usb_buffer_{sync,unmap}() not be needed, since
  1011. * they could clobber root hub response data.
  1012. */
  1013. status = rh_urb_enqueue (hcd, urb);
  1014. goto done;
  1015. }
  1016. /* lower level hcd code should use *_dma exclusively,
  1017. * unless it uses pio or talks to another transport.
  1018. */
  1019. if (hcd->self.controller->dma_mask) {
  1020. if (usb_pipecontrol (urb->pipe)
  1021. && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
  1022. urb->setup_dma = dma_map_single (
  1023. hcd->self.controller,
  1024. urb->setup_packet,
  1025. sizeof (struct usb_ctrlrequest),
  1026. DMA_TO_DEVICE);
  1027. if (urb->transfer_buffer_length != 0
  1028. && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
  1029. urb->transfer_dma = dma_map_single (
  1030. hcd->self.controller,
  1031. urb->transfer_buffer,
  1032. urb->transfer_buffer_length,
  1033. usb_pipein (urb->pipe)
  1034. ? DMA_FROM_DEVICE
  1035. : DMA_TO_DEVICE);
  1036. }
  1037. status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
  1038. done:
  1039. if (unlikely (status)) {
  1040. urb_unlink (urb);
  1041. atomic_dec (&urb->use_count);
  1042. if (urb->reject)
  1043. wake_up (&usb_kill_urb_queue);
  1044. usb_put_urb (urb);
  1045. usbmon_urb_submit_error(&hcd->self, urb, status);
  1046. }
  1047. return status;
  1048. }
  1049. /*-------------------------------------------------------------------------*/
  1050. /* called in any context */
  1051. static int hcd_get_frame_number (struct usb_device *udev)
  1052. {
  1053. struct usb_hcd *hcd = (struct usb_hcd *)udev->bus->hcpriv;
  1054. if (!HC_IS_RUNNING (hcd->state))
  1055. return -ESHUTDOWN;
  1056. return hcd->driver->get_frame_number (hcd);
  1057. }
  1058. /*-------------------------------------------------------------------------*/
  1059. /* this makes the hcd giveback() the urb more quickly, by kicking it
  1060. * off hardware queues (which may take a while) and returning it as
  1061. * soon as practical. we've already set up the urb's return status,
  1062. * but we can't know if the callback completed already.
  1063. */
  1064. static int
  1065. unlink1 (struct usb_hcd *hcd, struct urb *urb)
  1066. {
  1067. int value;
  1068. if (urb->dev == hcd->self.root_hub)
  1069. value = usb_rh_urb_dequeue (hcd, urb);
  1070. else {
  1071. /* The only reason an HCD might fail this call is if
  1072. * it has not yet fully queued the urb to begin with.
  1073. * Such failures should be harmless. */
  1074. value = hcd->driver->urb_dequeue (hcd, urb);
  1075. }
  1076. if (value != 0)
  1077. dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
  1078. urb, value);
  1079. return value;
  1080. }
  1081. /*
  1082. * called in any context
  1083. *
  1084. * caller guarantees urb won't be recycled till both unlink()
  1085. * and the urb's completion function return
  1086. */
  1087. static int hcd_unlink_urb (struct urb *urb, int status)
  1088. {
  1089. struct usb_host_endpoint *ep;
  1090. struct usb_hcd *hcd = NULL;
  1091. struct device *sys = NULL;
  1092. unsigned long flags;
  1093. struct list_head *tmp;
  1094. int retval;
  1095. if (!urb)
  1096. return -EINVAL;
  1097. if (!urb->dev || !urb->dev->bus)
  1098. return -ENODEV;
  1099. ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
  1100. [usb_pipeendpoint(urb->pipe)];
  1101. if (!ep)
  1102. return -ENODEV;
  1103. /*
  1104. * we contend for urb->status with the hcd core,
  1105. * which changes it while returning the urb.
  1106. *
  1107. * Caller guaranteed that the urb pointer hasn't been freed, and
  1108. * that it was submitted. But as a rule it can't know whether or
  1109. * not it's already been unlinked ... so we respect the reversed
  1110. * lock sequence needed for the usb_hcd_giveback_urb() code paths
  1111. * (urb lock, then hcd_data_lock) in case some other CPU is now
  1112. * unlinking it.
  1113. */
  1114. spin_lock_irqsave (&urb->lock, flags);
  1115. spin_lock (&hcd_data_lock);
  1116. sys = &urb->dev->dev;
  1117. hcd = urb->dev->bus->hcpriv;
  1118. if (hcd == NULL) {
  1119. retval = -ENODEV;
  1120. goto done;
  1121. }
  1122. /* running ~= hc unlink handshake works (irq, timer, etc)
  1123. * halted ~= no unlink handshake is needed
  1124. * suspended, resuming == should never happen
  1125. */
  1126. WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT);
  1127. /* insist the urb is still queued */
  1128. list_for_each(tmp, &ep->urb_list) {
  1129. if (tmp == &urb->urb_list)
  1130. break;
  1131. }
  1132. if (tmp != &urb->urb_list) {
  1133. retval = -EIDRM;
  1134. goto done;
  1135. }
  1136. /* Any status except -EINPROGRESS means something already started to
  1137. * unlink this URB from the hardware. So there's no more work to do.
  1138. */
  1139. if (urb->status != -EINPROGRESS) {
  1140. retval = -EBUSY;
  1141. goto done;
  1142. }
  1143. /* IRQ setup can easily be broken so that USB controllers
  1144. * never get completion IRQs ... maybe even the ones we need to
  1145. * finish unlinking the initial failed usb_set_address()
  1146. * or device descriptor fetch.
  1147. */
  1148. if (!hcd->saw_irq && hcd->self.root_hub != urb->dev) {
  1149. dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
  1150. "Controller is probably using the wrong IRQ."
  1151. "\n");
  1152. hcd->saw_irq = 1;
  1153. }
  1154. urb->status = status;
  1155. spin_unlock (&hcd_data_lock);
  1156. spin_unlock_irqrestore (&urb->lock, flags);
  1157. retval = unlink1 (hcd, urb);
  1158. if (retval == 0)
  1159. retval = -EINPROGRESS;
  1160. return retval;
  1161. done:
  1162. spin_unlock (&hcd_data_lock);
  1163. spin_unlock_irqrestore (&urb->lock, flags);
  1164. if (retval != -EIDRM && sys && sys->driver)
  1165. dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
  1166. return retval;
  1167. }
  1168. /*-------------------------------------------------------------------------*/
  1169. /* disables the endpoint: cancels any pending urbs, then synchronizes with
  1170. * the hcd to make sure all endpoint state is gone from hardware. use for
  1171. * set_configuration, set_interface, driver removal, physical disconnect.
  1172. *
  1173. * example: a qh stored in ep->hcpriv, holding state related to endpoint
  1174. * type, maxpacket size, toggle, halt status, and scheduling.
  1175. */
  1176. static void
  1177. hcd_endpoint_disable (struct usb_device *udev, struct usb_host_endpoint *ep)
  1178. {
  1179. struct usb_hcd *hcd;
  1180. struct urb *urb;
  1181. hcd = udev->bus->hcpriv;
  1182. WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT &&
  1183. udev->state != USB_STATE_NOTATTACHED);
  1184. local_irq_disable ();
  1185. /* FIXME move most of this into message.c as part of its
  1186. * endpoint disable logic
  1187. */
  1188. /* ep is already gone from udev->ep_{in,out}[]; no more submits */
  1189. rescan:
  1190. spin_lock (&hcd_data_lock);
  1191. list_for_each_entry (urb, &ep->urb_list, urb_list) {
  1192. int tmp;
  1193. /* another cpu may be in hcd, spinning on hcd_data_lock
  1194. * to giveback() this urb. the races here should be
  1195. * small, but a full fix needs a new "can't submit"
  1196. * urb state.
  1197. * FIXME urb->reject should allow that...
  1198. */
  1199. if (urb->status != -EINPROGRESS)
  1200. continue;
  1201. usb_get_urb (urb);
  1202. spin_unlock (&hcd_data_lock);
  1203. spin_lock (&urb->lock);
  1204. tmp = urb->status;
  1205. if (tmp == -EINPROGRESS)
  1206. urb->status = -ESHUTDOWN;
  1207. spin_unlock (&urb->lock);
  1208. /* kick hcd unless it's already returning this */
  1209. if (tmp == -EINPROGRESS) {
  1210. tmp = urb->pipe;
  1211. unlink1 (hcd, urb);
  1212. dev_dbg (hcd->self.controller,
  1213. "shutdown urb %p pipe %08x ep%d%s%s\n",
  1214. urb, tmp, usb_pipeendpoint (tmp),
  1215. (tmp & USB_DIR_IN) ? "in" : "out",
  1216. ({ char *s; \
  1217. switch (usb_pipetype (tmp)) { \
  1218. case PIPE_CONTROL: s = ""; break; \
  1219. case PIPE_BULK: s = "-bulk"; break; \
  1220. case PIPE_INTERRUPT: s = "-intr"; break; \
  1221. default: s = "-iso"; break; \
  1222. }; s;}));
  1223. }
  1224. usb_put_urb (urb);
  1225. /* list contents may have changed */
  1226. goto rescan;
  1227. }
  1228. spin_unlock (&hcd_data_lock);
  1229. local_irq_enable ();
  1230. /* synchronize with the hardware, so old configuration state
  1231. * clears out immediately (and will be freed).
  1232. */
  1233. might_sleep ();
  1234. if (hcd->driver->endpoint_disable)
  1235. hcd->driver->endpoint_disable (hcd, ep);
  1236. }
  1237. /*-------------------------------------------------------------------------*/
  1238. #ifdef CONFIG_USB_SUSPEND
  1239. static int hcd_hub_suspend (struct usb_bus *bus)
  1240. {
  1241. struct usb_hcd *hcd;
  1242. hcd = container_of (bus, struct usb_hcd, self);
  1243. if (hcd->driver->hub_suspend)
  1244. return hcd->driver->hub_suspend (hcd);
  1245. return 0;
  1246. }
  1247. static int hcd_hub_resume (struct usb_bus *bus)
  1248. {
  1249. struct usb_hcd *hcd;
  1250. hcd = container_of (bus, struct usb_hcd, self);
  1251. if (hcd->driver->hub_resume)
  1252. return hcd->driver->hub_resume (hcd);
  1253. return 0;
  1254. }
  1255. /**
  1256. * usb_hcd_resume_root_hub - called by HCD to resume its root hub
  1257. * @hcd: host controller for this root hub
  1258. *
  1259. * The USB host controller calls this function when its root hub is
  1260. * suspended (with the remote wakeup feature enabled) and a remote
  1261. * wakeup request is received. It queues a request for khubd to
  1262. * resume the root hub.
  1263. */
  1264. void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
  1265. {
  1266. unsigned long flags;
  1267. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1268. if (hcd->rh_registered)
  1269. usb_resume_root_hub (hcd->self.root_hub);
  1270. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1271. }
  1272. #else
  1273. void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
  1274. {
  1275. }
  1276. #endif
  1277. EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
  1278. /*-------------------------------------------------------------------------*/
  1279. #ifdef CONFIG_USB_OTG
  1280. /**
  1281. * usb_bus_start_enum - start immediate enumeration (for OTG)
  1282. * @bus: the bus (must use hcd framework)
  1283. * @port_num: 1-based number of port; usually bus->otg_port
  1284. * Context: in_interrupt()
  1285. *
  1286. * Starts enumeration, with an immediate reset followed later by
  1287. * khubd identifying and possibly configuring the device.
  1288. * This is needed by OTG controller drivers, where it helps meet
  1289. * HNP protocol timing requirements for starting a port reset.
  1290. */
  1291. int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
  1292. {
  1293. struct usb_hcd *hcd;
  1294. int status = -EOPNOTSUPP;
  1295. /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
  1296. * boards with root hubs hooked up to internal devices (instead of
  1297. * just the OTG port) may need more attention to resetting...
  1298. */
  1299. hcd = container_of (bus, struct usb_hcd, self);
  1300. if (port_num && hcd->driver->start_port_reset)
  1301. status = hcd->driver->start_port_reset(hcd, port_num);
  1302. /* run khubd shortly after (first) root port reset finishes;
  1303. * it may issue others, until at least 50 msecs have passed.
  1304. */
  1305. if (status == 0)
  1306. mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
  1307. return status;
  1308. }
  1309. EXPORT_SYMBOL (usb_bus_start_enum);
  1310. #endif
  1311. /*-------------------------------------------------------------------------*/
  1312. /*
  1313. * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue)
  1314. */
  1315. static struct usb_operations usb_hcd_operations = {
  1316. .get_frame_number = hcd_get_frame_number,
  1317. .submit_urb = hcd_submit_urb,
  1318. .unlink_urb = hcd_unlink_urb,
  1319. .buffer_alloc = hcd_buffer_alloc,
  1320. .buffer_free = hcd_buffer_free,
  1321. .disable = hcd_endpoint_disable,
  1322. #ifdef CONFIG_USB_SUSPEND
  1323. .hub_suspend = hcd_hub_suspend,
  1324. .hub_resume = hcd_hub_resume,
  1325. #endif
  1326. };
  1327. /*-------------------------------------------------------------------------*/
  1328. /**
  1329. * usb_hcd_giveback_urb - return URB from HCD to device driver
  1330. * @hcd: host controller returning the URB
  1331. * @urb: urb being returned to the USB device driver.
  1332. * @regs: pt_regs, passed down to the URB completion handler
  1333. * Context: in_interrupt()
  1334. *
  1335. * This hands the URB from HCD to its USB device driver, using its
  1336. * completion function. The HCD has freed all per-urb resources
  1337. * (and is done using urb->hcpriv). It also released all HCD locks;
  1338. * the device driver won't cause problems if it frees, modifies,
  1339. * or resubmits this URB.
  1340. */
  1341. void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
  1342. {
  1343. int at_root_hub;
  1344. at_root_hub = (urb->dev == hcd->self.root_hub);
  1345. urb_unlink (urb);
  1346. /* lower level hcd code should use *_dma exclusively */
  1347. if (hcd->self.controller->dma_mask && !at_root_hub) {
  1348. if (usb_pipecontrol (urb->pipe)
  1349. && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
  1350. dma_unmap_single (hcd->self.controller, urb->setup_dma,
  1351. sizeof (struct usb_ctrlrequest),
  1352. DMA_TO_DEVICE);
  1353. if (urb->transfer_buffer_length != 0
  1354. && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
  1355. dma_unmap_single (hcd->self.controller,
  1356. urb->transfer_dma,
  1357. urb->transfer_buffer_length,
  1358. usb_pipein (urb->pipe)
  1359. ? DMA_FROM_DEVICE
  1360. : DMA_TO_DEVICE);
  1361. }
  1362. usbmon_urb_complete (&hcd->self, urb);
  1363. /* pass ownership to the completion handler */
  1364. urb->complete (urb, regs);
  1365. atomic_dec (&urb->use_count);
  1366. if (unlikely (urb->reject))
  1367. wake_up (&usb_kill_urb_queue);
  1368. usb_put_urb (urb);
  1369. }
  1370. EXPORT_SYMBOL (usb_hcd_giveback_urb);
  1371. /*-------------------------------------------------------------------------*/
  1372. /**
  1373. * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
  1374. * @irq: the IRQ being raised
  1375. * @__hcd: pointer to the HCD whose IRQ is being signaled
  1376. * @r: saved hardware registers
  1377. *
  1378. * If the controller isn't HALTed, calls the driver's irq handler.
  1379. * Checks whether the controller is now dead.
  1380. */
  1381. irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
  1382. {
  1383. struct usb_hcd *hcd = __hcd;
  1384. int start = hcd->state;
  1385. if (start == HC_STATE_HALT)
  1386. return IRQ_NONE;
  1387. if (hcd->driver->irq (hcd, r) == IRQ_NONE)
  1388. return IRQ_NONE;
  1389. hcd->saw_irq = 1;
  1390. if (hcd->state == HC_STATE_HALT)
  1391. usb_hc_died (hcd);
  1392. return IRQ_HANDLED;
  1393. }
  1394. /*-------------------------------------------------------------------------*/
  1395. /**
  1396. * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
  1397. * @hcd: pointer to the HCD representing the controller
  1398. *
  1399. * This is called by bus glue to report a USB host controller that died
  1400. * while operations may still have been pending. It's called automatically
  1401. * by the PCI glue, so only glue for non-PCI busses should need to call it.
  1402. */
  1403. void usb_hc_died (struct usb_hcd *hcd)
  1404. {
  1405. unsigned long flags;
  1406. dev_err (hcd->self.controller, "HC died; cleaning up\n");
  1407. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1408. if (hcd->rh_registered) {
  1409. hcd->poll_rh = 0;
  1410. /* make khubd clean up old urbs and devices */
  1411. usb_set_device_state (hcd->self.root_hub,
  1412. USB_STATE_NOTATTACHED);
  1413. usb_kick_khubd (hcd->self.root_hub);
  1414. }
  1415. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1416. }
  1417. EXPORT_SYMBOL_GPL (usb_hc_died);
  1418. /*-------------------------------------------------------------------------*/
  1419. static void hcd_release (struct usb_bus *bus)
  1420. {
  1421. struct usb_hcd *hcd;
  1422. hcd = container_of(bus, struct usb_hcd, self);
  1423. kfree(hcd);
  1424. }
  1425. /**
  1426. * usb_create_hcd - create and initialize an HCD structure
  1427. * @driver: HC driver that will use this hcd
  1428. * @dev: device for this HC, stored in hcd->self.controller
  1429. * @bus_name: value to store in hcd->self.bus_name
  1430. * Context: !in_interrupt()
  1431. *
  1432. * Allocate a struct usb_hcd, with extra space at the end for the
  1433. * HC driver's private data. Initialize the generic members of the
  1434. * hcd structure.
  1435. *
  1436. * If memory is unavailable, returns NULL.
  1437. */
  1438. struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
  1439. struct device *dev, char *bus_name)
  1440. {
  1441. struct usb_hcd *hcd;
  1442. hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
  1443. if (!hcd) {
  1444. dev_dbg (dev, "hcd alloc failed\n");
  1445. return NULL;
  1446. }
  1447. dev_set_drvdata(dev, hcd);
  1448. usb_bus_init(&hcd->self);
  1449. hcd->self.op = &usb_hcd_operations;
  1450. hcd->self.hcpriv = hcd;
  1451. hcd->self.release = &hcd_release;
  1452. hcd->self.controller = dev;
  1453. hcd->self.bus_name = bus_name;
  1454. init_timer(&hcd->rh_timer);
  1455. hcd->rh_timer.function = rh_timer_func;
  1456. hcd->rh_timer.data = (unsigned long) hcd;
  1457. hcd->driver = driver;
  1458. hcd->product_desc = (driver->product_desc) ? driver->product_desc :
  1459. "USB Host Controller";
  1460. return hcd;
  1461. }
  1462. EXPORT_SYMBOL (usb_create_hcd);
  1463. void usb_put_hcd (struct usb_hcd *hcd)
  1464. {
  1465. dev_set_drvdata(hcd->self.controller, NULL);
  1466. usb_bus_put(&hcd->self);
  1467. }
  1468. EXPORT_SYMBOL (usb_put_hcd);
  1469. /**
  1470. * usb_add_hcd - finish generic HCD structure initialization and register
  1471. * @hcd: the usb_hcd structure to initialize
  1472. * @irqnum: Interrupt line to allocate
  1473. * @irqflags: Interrupt type flags
  1474. *
  1475. * Finish the remaining parts of generic HCD initialization: allocate the
  1476. * buffers of consistent memory, register the bus, request the IRQ line,
  1477. * and call the driver's reset() and start() routines.
  1478. */
  1479. int usb_add_hcd(struct usb_hcd *hcd,
  1480. unsigned int irqnum, unsigned long irqflags)
  1481. {
  1482. int retval;
  1483. struct usb_device *rhdev;
  1484. dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
  1485. /* till now HC has been in an indeterminate state ... */
  1486. if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
  1487. dev_err(hcd->self.controller, "can't reset\n");
  1488. return retval;
  1489. }
  1490. if ((retval = hcd_buffer_create(hcd)) != 0) {
  1491. dev_dbg(hcd->self.controller, "pool alloc failed\n");
  1492. return retval;
  1493. }
  1494. if ((retval = usb_register_bus(&hcd->self)) < 0)
  1495. goto err_register_bus;
  1496. if (hcd->driver->irq) {
  1497. char buf[8], *bufp = buf;
  1498. #ifdef __sparc__
  1499. bufp = __irq_itoa(irqnum);
  1500. #else
  1501. sprintf(buf, "%d", irqnum);
  1502. #endif
  1503. snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
  1504. hcd->driver->description, hcd->self.busnum);
  1505. if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
  1506. hcd->irq_descr, hcd)) != 0) {
  1507. dev_err(hcd->self.controller,
  1508. "request interrupt %s failed\n", bufp);
  1509. goto err_request_irq;
  1510. }
  1511. hcd->irq = irqnum;
  1512. dev_info(hcd->self.controller, "irq %s, %s 0x%08llx\n", bufp,
  1513. (hcd->driver->flags & HCD_MEMORY) ?
  1514. "io mem" : "io base",
  1515. (unsigned long long)hcd->rsrc_start);
  1516. } else {
  1517. hcd->irq = -1;
  1518. if (hcd->rsrc_start)
  1519. dev_info(hcd->self.controller, "%s 0x%08llx\n",
  1520. (hcd->driver->flags & HCD_MEMORY) ?
  1521. "io mem" : "io base",
  1522. (unsigned long long)hcd->rsrc_start);
  1523. }
  1524. /* Allocate the root hub before calling hcd->driver->start(),
  1525. * but don't register it until afterward so that the hardware
  1526. * is running.
  1527. */
  1528. if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
  1529. dev_err(hcd->self.controller, "unable to allocate root hub\n");
  1530. retval = -ENOMEM;
  1531. goto err_allocate_root_hub;
  1532. }
  1533. rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
  1534. USB_SPEED_FULL;
  1535. /* Although in principle hcd->driver->start() might need to use rhdev,
  1536. * none of the current drivers do.
  1537. */
  1538. if ((retval = hcd->driver->start(hcd)) < 0) {
  1539. dev_err(hcd->self.controller, "startup error %d\n", retval);
  1540. goto err_hcd_driver_start;
  1541. }
  1542. /* hcd->driver->start() reported can_wakeup, probably with
  1543. * assistance from board's boot firmware.
  1544. * NOTE: normal devices won't enable wakeup by default.
  1545. */
  1546. if (hcd->can_wakeup)
  1547. dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
  1548. hcd->remote_wakeup = hcd->can_wakeup;
  1549. if ((retval = register_root_hub(rhdev, hcd)) != 0)
  1550. goto err_register_root_hub;
  1551. if (hcd->uses_new_polling && hcd->poll_rh)
  1552. usb_hcd_poll_rh_status(hcd);
  1553. return retval;
  1554. err_register_root_hub:
  1555. hcd->driver->stop(hcd);
  1556. err_hcd_driver_start:
  1557. usb_put_dev(rhdev);
  1558. err_allocate_root_hub:
  1559. if (hcd->irq >= 0)
  1560. free_irq(irqnum, hcd);
  1561. err_request_irq:
  1562. usb_deregister_bus(&hcd->self);
  1563. err_register_bus:
  1564. hcd_buffer_destroy(hcd);
  1565. return retval;
  1566. }
  1567. EXPORT_SYMBOL (usb_add_hcd);
  1568. /**
  1569. * usb_remove_hcd - shutdown processing for generic HCDs
  1570. * @hcd: the usb_hcd structure to remove
  1571. * Context: !in_interrupt()
  1572. *
  1573. * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
  1574. * invoking the HCD's stop() method.
  1575. */
  1576. void usb_remove_hcd(struct usb_hcd *hcd)
  1577. {
  1578. dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
  1579. if (HC_IS_RUNNING (hcd->state))
  1580. hcd->state = HC_STATE_QUIESCING;
  1581. dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
  1582. spin_lock_irq (&hcd_root_hub_lock);
  1583. hcd->rh_registered = 0;
  1584. spin_unlock_irq (&hcd_root_hub_lock);
  1585. usb_disconnect(&hcd->self.root_hub);
  1586. hcd->poll_rh = 0;
  1587. del_timer_sync(&hcd->rh_timer);
  1588. hcd->driver->stop(hcd);
  1589. hcd->state = HC_STATE_HALT;
  1590. if (hcd->irq >= 0)
  1591. free_irq(hcd->irq, hcd);
  1592. usb_deregister_bus(&hcd->self);
  1593. hcd_buffer_destroy(hcd);
  1594. }
  1595. EXPORT_SYMBOL (usb_remove_hcd);
  1596. /*-------------------------------------------------------------------------*/
  1597. #if defined(CONFIG_USB_MON)
  1598. struct usb_mon_operations *mon_ops;
  1599. /*
  1600. * The registration is unlocked.
  1601. * We do it this way because we do not want to lock in hot paths.
  1602. *
  1603. * Notice that the code is minimally error-proof. Because usbmon needs
  1604. * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
  1605. */
  1606. int usb_mon_register (struct usb_mon_operations *ops)
  1607. {
  1608. if (mon_ops)
  1609. return -EBUSY;
  1610. mon_ops = ops;
  1611. mb();
  1612. return 0;
  1613. }
  1614. EXPORT_SYMBOL_GPL (usb_mon_register);
  1615. void usb_mon_deregister (void)
  1616. {
  1617. if (mon_ops == NULL) {
  1618. printk(KERN_ERR "USB: monitor was not registered\n");
  1619. return;
  1620. }
  1621. mon_ops = NULL;
  1622. mb();
  1623. }
  1624. EXPORT_SYMBOL_GPL (usb_mon_deregister);
  1625. #endif /* CONFIG_USB_MON */