hcd.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  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 synthesized with a timer.
  454. * Completions are called in_interrupt() but not in_irq().
  455. *
  456. * Note: some root hubs (including common UHCI based designs) can't
  457. * correctly issue port change IRQs. They're the ones that _need_ a
  458. * timer; most other root hubs don't. Some systems could save a
  459. * lot of battery power by eliminating these root hub timer IRQs.
  460. */
  461. static void rh_report_status (unsigned long ptr);
  462. static int rh_status_urb (struct usb_hcd *hcd, struct urb *urb)
  463. {
  464. int len = 1 + (urb->dev->maxchild / 8);
  465. /* rh_timer protected by hcd_data_lock */
  466. if (hcd->rh_timer.data || urb->transfer_buffer_length < len) {
  467. dev_dbg (hcd->self.controller,
  468. "not queuing rh status urb, stat %d\n",
  469. urb->status);
  470. return -EINVAL;
  471. }
  472. init_timer (&hcd->rh_timer);
  473. hcd->rh_timer.function = rh_report_status;
  474. hcd->rh_timer.data = (unsigned long) urb;
  475. /* USB 2.0 spec says 256msec; this is close enough */
  476. hcd->rh_timer.expires = jiffies + HZ/4;
  477. add_timer (&hcd->rh_timer);
  478. urb->hcpriv = hcd; /* nonzero to indicate it's queued */
  479. return 0;
  480. }
  481. /* timer callback */
  482. static void rh_report_status (unsigned long ptr)
  483. {
  484. struct urb *urb;
  485. struct usb_hcd *hcd;
  486. int length = 0;
  487. unsigned long flags;
  488. urb = (struct urb *) ptr;
  489. local_irq_save (flags);
  490. spin_lock (&urb->lock);
  491. /* do nothing if the urb's been unlinked */
  492. if (!urb->dev
  493. || urb->status != -EINPROGRESS
  494. || (hcd = urb->dev->bus->hcpriv) == NULL) {
  495. spin_unlock (&urb->lock);
  496. local_irq_restore (flags);
  497. return;
  498. }
  499. /* complete the status urb, or retrigger the timer */
  500. spin_lock (&hcd_data_lock);
  501. if (urb->dev->state == USB_STATE_CONFIGURED) {
  502. length = hcd->driver->hub_status_data (
  503. hcd, urb->transfer_buffer);
  504. if (length > 0) {
  505. hcd->rh_timer.data = 0;
  506. urb->actual_length = length;
  507. urb->status = 0;
  508. urb->hcpriv = NULL;
  509. } else
  510. mod_timer (&hcd->rh_timer, jiffies + HZ/4);
  511. }
  512. spin_unlock (&hcd_data_lock);
  513. spin_unlock (&urb->lock);
  514. /* local irqs are always blocked in completions */
  515. if (length > 0)
  516. usb_hcd_giveback_urb (hcd, urb, NULL);
  517. local_irq_restore (flags);
  518. }
  519. /*-------------------------------------------------------------------------*/
  520. static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
  521. {
  522. if (usb_pipeint (urb->pipe)) {
  523. int retval;
  524. unsigned long flags;
  525. spin_lock_irqsave (&hcd_data_lock, flags);
  526. retval = rh_status_urb (hcd, urb);
  527. spin_unlock_irqrestore (&hcd_data_lock, flags);
  528. return retval;
  529. }
  530. if (usb_pipecontrol (urb->pipe))
  531. return rh_call_control (hcd, urb);
  532. else
  533. return -EINVAL;
  534. }
  535. /*-------------------------------------------------------------------------*/
  536. static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
  537. {
  538. unsigned long flags;
  539. /* note: always a synchronous unlink */
  540. if ((unsigned long) urb == hcd->rh_timer.data) {
  541. del_timer_sync (&hcd->rh_timer);
  542. hcd->rh_timer.data = 0;
  543. local_irq_save (flags);
  544. urb->hcpriv = NULL;
  545. usb_hcd_giveback_urb (hcd, urb, NULL);
  546. local_irq_restore (flags);
  547. } else if (usb_pipeendpoint(urb->pipe) == 0) {
  548. spin_lock_irq(&urb->lock); /* from usb_kill_urb */
  549. ++urb->reject;
  550. spin_unlock_irq(&urb->lock);
  551. wait_event(usb_kill_urb_queue,
  552. atomic_read(&urb->use_count) == 0);
  553. spin_lock_irq(&urb->lock);
  554. --urb->reject;
  555. spin_unlock_irq(&urb->lock);
  556. } else
  557. return -EINVAL;
  558. return 0;
  559. }
  560. /*-------------------------------------------------------------------------*/
  561. /* exported only within usbcore */
  562. struct usb_bus *usb_bus_get(struct usb_bus *bus)
  563. {
  564. if (bus)
  565. kref_get(&bus->kref);
  566. return bus;
  567. }
  568. static void usb_host_release(struct kref *kref)
  569. {
  570. struct usb_bus *bus = container_of(kref, struct usb_bus, kref);
  571. if (bus->release)
  572. bus->release(bus);
  573. }
  574. /* exported only within usbcore */
  575. void usb_bus_put(struct usb_bus *bus)
  576. {
  577. if (bus)
  578. kref_put(&bus->kref, usb_host_release);
  579. }
  580. /*-------------------------------------------------------------------------*/
  581. static struct class *usb_host_class;
  582. int usb_host_init(void)
  583. {
  584. int retval = 0;
  585. usb_host_class = class_create(THIS_MODULE, "usb_host");
  586. if (IS_ERR(usb_host_class))
  587. retval = PTR_ERR(usb_host_class);
  588. return retval;
  589. }
  590. void usb_host_cleanup(void)
  591. {
  592. class_destroy(usb_host_class);
  593. }
  594. /**
  595. * usb_bus_init - shared initialization code
  596. * @bus: the bus structure being initialized
  597. *
  598. * This code is used to initialize a usb_bus structure, memory for which is
  599. * separately managed.
  600. */
  601. static void usb_bus_init (struct usb_bus *bus)
  602. {
  603. memset (&bus->devmap, 0, sizeof(struct usb_devmap));
  604. bus->devnum_next = 1;
  605. bus->root_hub = NULL;
  606. bus->hcpriv = NULL;
  607. bus->busnum = -1;
  608. bus->bandwidth_allocated = 0;
  609. bus->bandwidth_int_reqs = 0;
  610. bus->bandwidth_isoc_reqs = 0;
  611. INIT_LIST_HEAD (&bus->bus_list);
  612. kref_init(&bus->kref);
  613. }
  614. /**
  615. * usb_alloc_bus - creates a new USB host controller structure
  616. * @op: pointer to a struct usb_operations that this bus structure should use
  617. * Context: !in_interrupt()
  618. *
  619. * Creates a USB host controller bus structure with the specified
  620. * usb_operations and initializes all the necessary internal objects.
  621. *
  622. * If no memory is available, NULL is returned.
  623. *
  624. * The caller should call usb_put_bus() when it is finished with the structure.
  625. */
  626. struct usb_bus *usb_alloc_bus (struct usb_operations *op)
  627. {
  628. struct usb_bus *bus;
  629. bus = kmalloc (sizeof *bus, GFP_KERNEL);
  630. if (!bus)
  631. return NULL;
  632. memset(bus, 0, sizeof(struct usb_bus));
  633. usb_bus_init (bus);
  634. bus->op = op;
  635. return bus;
  636. }
  637. /*-------------------------------------------------------------------------*/
  638. /**
  639. * usb_register_bus - registers the USB host controller with the usb core
  640. * @bus: pointer to the bus to register
  641. * Context: !in_interrupt()
  642. *
  643. * Assigns a bus number, and links the controller into usbcore data
  644. * structures so that it can be seen by scanning the bus list.
  645. */
  646. static int usb_register_bus(struct usb_bus *bus)
  647. {
  648. int busnum;
  649. down (&usb_bus_list_lock);
  650. busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
  651. if (busnum < USB_MAXBUS) {
  652. set_bit (busnum, busmap.busmap);
  653. bus->busnum = busnum;
  654. } else {
  655. printk (KERN_ERR "%s: too many buses\n", usbcore_name);
  656. up(&usb_bus_list_lock);
  657. return -E2BIG;
  658. }
  659. bus->class_dev = class_device_create(usb_host_class, MKDEV(0,0), bus->controller, "usb%d", busnum);
  660. if (IS_ERR(bus->class_dev)) {
  661. clear_bit(busnum, busmap.busmap);
  662. up(&usb_bus_list_lock);
  663. return PTR_ERR(bus->class_dev);
  664. }
  665. class_set_devdata(bus->class_dev, bus);
  666. /* Add it to the local list of buses */
  667. list_add (&bus->bus_list, &usb_bus_list);
  668. up (&usb_bus_list_lock);
  669. usbfs_add_bus (bus);
  670. usbmon_notify_bus_add (bus);
  671. dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
  672. return 0;
  673. }
  674. /**
  675. * usb_deregister_bus - deregisters the USB host controller
  676. * @bus: pointer to the bus to deregister
  677. * Context: !in_interrupt()
  678. *
  679. * Recycles the bus number, and unlinks the controller from usbcore data
  680. * structures so that it won't be seen by scanning the bus list.
  681. */
  682. static void usb_deregister_bus (struct usb_bus *bus)
  683. {
  684. dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
  685. /*
  686. * NOTE: make sure that all the devices are removed by the
  687. * controller code, as well as having it call this when cleaning
  688. * itself up
  689. */
  690. down (&usb_bus_list_lock);
  691. list_del (&bus->bus_list);
  692. up (&usb_bus_list_lock);
  693. usbmon_notify_bus_remove (bus);
  694. usbfs_remove_bus (bus);
  695. clear_bit (bus->busnum, busmap.busmap);
  696. class_device_unregister(bus->class_dev);
  697. }
  698. /**
  699. * usb_hcd_register_root_hub - called by HCD to register its root hub
  700. * @usb_dev: the usb root hub device to be registered.
  701. * @hcd: host controller for this root hub
  702. *
  703. * The USB host controller calls this function to register the root hub
  704. * properly with the USB subsystem. It sets up the device properly in
  705. * the device tree and stores the root_hub pointer in the bus structure,
  706. * then calls usb_new_device() to register the usb device. It also
  707. * assigns the root hub's USB address (always 1).
  708. */
  709. int usb_hcd_register_root_hub (struct usb_device *usb_dev, struct usb_hcd *hcd)
  710. {
  711. struct device *parent_dev = hcd->self.controller;
  712. const int devnum = 1;
  713. int retval;
  714. /* hcd->driver->start() reported can_wakeup, probably with
  715. * assistance from board's boot firmware.
  716. * NOTE: normal devices won't enable wakeup by default.
  717. */
  718. if (hcd->can_wakeup)
  719. dev_dbg (parent_dev, "supports USB remote wakeup\n");
  720. hcd->remote_wakeup = hcd->can_wakeup;
  721. usb_dev->devnum = devnum;
  722. usb_dev->bus->devnum_next = devnum + 1;
  723. memset (&usb_dev->bus->devmap.devicemap, 0,
  724. sizeof usb_dev->bus->devmap.devicemap);
  725. set_bit (devnum, usb_dev->bus->devmap.devicemap);
  726. usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
  727. down (&usb_bus_list_lock);
  728. usb_dev->bus->root_hub = usb_dev;
  729. usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
  730. retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
  731. if (retval != sizeof usb_dev->descriptor) {
  732. usb_dev->bus->root_hub = NULL;
  733. up (&usb_bus_list_lock);
  734. dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
  735. usb_dev->dev.bus_id, retval);
  736. return (retval < 0) ? retval : -EMSGSIZE;
  737. }
  738. usb_lock_device (usb_dev);
  739. retval = usb_new_device (usb_dev);
  740. usb_unlock_device (usb_dev);
  741. if (retval) {
  742. usb_dev->bus->root_hub = NULL;
  743. dev_err (parent_dev, "can't register root hub for %s, %d\n",
  744. usb_dev->dev.bus_id, retval);
  745. }
  746. up (&usb_bus_list_lock);
  747. if (retval == 0) {
  748. spin_lock_irq (&hcd_root_hub_lock);
  749. hcd->rh_registered = 1;
  750. spin_unlock_irq (&hcd_root_hub_lock);
  751. /* Did the HC die before the root hub was registered? */
  752. if (hcd->state == HC_STATE_HALT)
  753. usb_hc_died (hcd); /* This time clean up */
  754. }
  755. return retval;
  756. }
  757. EXPORT_SYMBOL_GPL(usb_hcd_register_root_hub);
  758. /*-------------------------------------------------------------------------*/
  759. /**
  760. * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
  761. * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
  762. * @is_input: true iff the transaction sends data to the host
  763. * @isoc: true for isochronous transactions, false for interrupt ones
  764. * @bytecount: how many bytes in the transaction.
  765. *
  766. * Returns approximate bus time in nanoseconds for a periodic transaction.
  767. * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
  768. * scheduled in software, this function is only used for such scheduling.
  769. */
  770. long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
  771. {
  772. unsigned long tmp;
  773. switch (speed) {
  774. case USB_SPEED_LOW: /* INTR only */
  775. if (is_input) {
  776. tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
  777. return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  778. } else {
  779. tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
  780. return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  781. }
  782. case USB_SPEED_FULL: /* ISOC or INTR */
  783. if (isoc) {
  784. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  785. return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
  786. } else {
  787. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  788. return (9107L + BW_HOST_DELAY + tmp);
  789. }
  790. case USB_SPEED_HIGH: /* ISOC or INTR */
  791. // FIXME adjust for input vs output
  792. if (isoc)
  793. tmp = HS_USECS (bytecount);
  794. else
  795. tmp = HS_USECS_ISO (bytecount);
  796. return tmp;
  797. default:
  798. pr_debug ("%s: bogus device speed!\n", usbcore_name);
  799. return -1;
  800. }
  801. }
  802. EXPORT_SYMBOL (usb_calc_bus_time);
  803. /*
  804. * usb_check_bandwidth():
  805. *
  806. * old_alloc is from host_controller->bandwidth_allocated in microseconds;
  807. * bustime is from calc_bus_time(), but converted to microseconds.
  808. *
  809. * returns <bustime in us> if successful,
  810. * or -ENOSPC if bandwidth request fails.
  811. *
  812. * FIXME:
  813. * This initial implementation does not use Endpoint.bInterval
  814. * in managing bandwidth allocation.
  815. * It probably needs to be expanded to use Endpoint.bInterval.
  816. * This can be done as a later enhancement (correction).
  817. *
  818. * This will also probably require some kind of
  819. * frame allocation tracking...meaning, for example,
  820. * that if multiple drivers request interrupts every 10 USB frames,
  821. * they don't all have to be allocated at
  822. * frame numbers N, N+10, N+20, etc. Some of them could be at
  823. * N+11, N+21, N+31, etc., and others at
  824. * N+12, N+22, N+32, etc.
  825. *
  826. * Similarly for isochronous transfers...
  827. *
  828. * Individual HCDs can schedule more directly ... this logic
  829. * is not correct for high speed transfers.
  830. */
  831. int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
  832. {
  833. unsigned int pipe = urb->pipe;
  834. long bustime;
  835. int is_in = usb_pipein (pipe);
  836. int is_iso = usb_pipeisoc (pipe);
  837. int old_alloc = dev->bus->bandwidth_allocated;
  838. int new_alloc;
  839. bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
  840. usb_maxpacket (dev, pipe, !is_in)));
  841. if (is_iso)
  842. bustime /= urb->number_of_packets;
  843. new_alloc = old_alloc + (int) bustime;
  844. if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
  845. #ifdef DEBUG
  846. char *mode =
  847. #ifdef CONFIG_USB_BANDWIDTH
  848. "";
  849. #else
  850. "would have ";
  851. #endif
  852. dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
  853. mode, old_alloc, bustime, new_alloc);
  854. #endif
  855. #ifdef CONFIG_USB_BANDWIDTH
  856. bustime = -ENOSPC; /* report error */
  857. #endif
  858. }
  859. return bustime;
  860. }
  861. EXPORT_SYMBOL (usb_check_bandwidth);
  862. /**
  863. * usb_claim_bandwidth - records bandwidth for a periodic transfer
  864. * @dev: source/target of request
  865. * @urb: request (urb->dev == dev)
  866. * @bustime: bandwidth consumed, in (average) microseconds per frame
  867. * @isoc: true iff the request is isochronous
  868. *
  869. * Bus bandwidth reservations are recorded purely for diagnostic purposes.
  870. * HCDs are expected not to overcommit periodic bandwidth, and to record such
  871. * reservations whenever endpoints are added to the periodic schedule.
  872. *
  873. * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's
  874. * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
  875. * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
  876. * large its periodic schedule is.
  877. */
  878. void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
  879. {
  880. dev->bus->bandwidth_allocated += bustime;
  881. if (isoc)
  882. dev->bus->bandwidth_isoc_reqs++;
  883. else
  884. dev->bus->bandwidth_int_reqs++;
  885. urb->bandwidth = bustime;
  886. #ifdef USB_BANDWIDTH_MESSAGES
  887. dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
  888. bustime,
  889. isoc ? "ISOC" : "INTR",
  890. dev->bus->bandwidth_allocated,
  891. dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
  892. #endif
  893. }
  894. EXPORT_SYMBOL (usb_claim_bandwidth);
  895. /**
  896. * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
  897. * @dev: source/target of request
  898. * @urb: request (urb->dev == dev)
  899. * @isoc: true iff the request is isochronous
  900. *
  901. * This records that previously allocated bandwidth has been released.
  902. * Bandwidth is released when endpoints are removed from the host controller's
  903. * periodic schedule.
  904. */
  905. void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
  906. {
  907. dev->bus->bandwidth_allocated -= urb->bandwidth;
  908. if (isoc)
  909. dev->bus->bandwidth_isoc_reqs--;
  910. else
  911. dev->bus->bandwidth_int_reqs--;
  912. #ifdef USB_BANDWIDTH_MESSAGES
  913. dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
  914. urb->bandwidth,
  915. isoc ? "ISOC" : "INTR",
  916. dev->bus->bandwidth_allocated,
  917. dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
  918. #endif
  919. urb->bandwidth = 0;
  920. }
  921. EXPORT_SYMBOL (usb_release_bandwidth);
  922. /*-------------------------------------------------------------------------*/
  923. /*
  924. * Generic HC operations.
  925. */
  926. /*-------------------------------------------------------------------------*/
  927. static void urb_unlink (struct urb *urb)
  928. {
  929. unsigned long flags;
  930. /* Release any periodic transfer bandwidth */
  931. if (urb->bandwidth)
  932. usb_release_bandwidth (urb->dev, urb,
  933. usb_pipeisoc (urb->pipe));
  934. /* clear all state linking urb to this dev (and hcd) */
  935. spin_lock_irqsave (&hcd_data_lock, flags);
  936. list_del_init (&urb->urb_list);
  937. spin_unlock_irqrestore (&hcd_data_lock, flags);
  938. usb_put_dev (urb->dev);
  939. }
  940. /* may be called in any context with a valid urb->dev usecount
  941. * caller surrenders "ownership" of urb
  942. * expects usb_submit_urb() to have sanity checked and conditioned all
  943. * inputs in the urb
  944. */
  945. static int hcd_submit_urb (struct urb *urb, int mem_flags)
  946. {
  947. int status;
  948. struct usb_hcd *hcd = urb->dev->bus->hcpriv;
  949. struct usb_host_endpoint *ep;
  950. unsigned long flags;
  951. if (!hcd)
  952. return -ENODEV;
  953. usbmon_urb_submit(&hcd->self, urb);
  954. /*
  955. * Atomically queue the urb, first to our records, then to the HCD.
  956. * Access to urb->status is controlled by urb->lock ... changes on
  957. * i/o completion (normal or fault) or unlinking.
  958. */
  959. // FIXME: verify that quiescing hc works right (RH cleans up)
  960. spin_lock_irqsave (&hcd_data_lock, flags);
  961. ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
  962. [usb_pipeendpoint(urb->pipe)];
  963. if (unlikely (!ep))
  964. status = -ENOENT;
  965. else if (unlikely (urb->reject))
  966. status = -EPERM;
  967. else switch (hcd->state) {
  968. case HC_STATE_RUNNING:
  969. case HC_STATE_RESUMING:
  970. usb_get_dev (urb->dev);
  971. list_add_tail (&urb->urb_list, &ep->urb_list);
  972. status = 0;
  973. break;
  974. default:
  975. status = -ESHUTDOWN;
  976. break;
  977. }
  978. spin_unlock_irqrestore (&hcd_data_lock, flags);
  979. if (status) {
  980. INIT_LIST_HEAD (&urb->urb_list);
  981. usbmon_urb_submit_error(&hcd->self, urb, status);
  982. return status;
  983. }
  984. /* increment urb's reference count as part of giving it to the HCD
  985. * (which now controls it). HCD guarantees that it either returns
  986. * an error or calls giveback(), but not both.
  987. */
  988. urb = usb_get_urb (urb);
  989. atomic_inc (&urb->use_count);
  990. if (urb->dev == hcd->self.root_hub) {
  991. /* NOTE: requirement on hub callers (usbfs and the hub
  992. * driver, for now) that URBs' urb->transfer_buffer be
  993. * valid and usb_buffer_{sync,unmap}() not be needed, since
  994. * they could clobber root hub response data.
  995. */
  996. status = rh_urb_enqueue (hcd, urb);
  997. goto done;
  998. }
  999. /* lower level hcd code should use *_dma exclusively,
  1000. * unless it uses pio or talks to another transport.
  1001. */
  1002. if (hcd->self.controller->dma_mask) {
  1003. if (usb_pipecontrol (urb->pipe)
  1004. && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
  1005. urb->setup_dma = dma_map_single (
  1006. hcd->self.controller,
  1007. urb->setup_packet,
  1008. sizeof (struct usb_ctrlrequest),
  1009. DMA_TO_DEVICE);
  1010. if (urb->transfer_buffer_length != 0
  1011. && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
  1012. urb->transfer_dma = dma_map_single (
  1013. hcd->self.controller,
  1014. urb->transfer_buffer,
  1015. urb->transfer_buffer_length,
  1016. usb_pipein (urb->pipe)
  1017. ? DMA_FROM_DEVICE
  1018. : DMA_TO_DEVICE);
  1019. }
  1020. status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
  1021. done:
  1022. if (unlikely (status)) {
  1023. urb_unlink (urb);
  1024. atomic_dec (&urb->use_count);
  1025. if (urb->reject)
  1026. wake_up (&usb_kill_urb_queue);
  1027. usb_put_urb (urb);
  1028. usbmon_urb_submit_error(&hcd->self, urb, status);
  1029. }
  1030. return status;
  1031. }
  1032. /*-------------------------------------------------------------------------*/
  1033. /* called in any context */
  1034. static int hcd_get_frame_number (struct usb_device *udev)
  1035. {
  1036. struct usb_hcd *hcd = (struct usb_hcd *)udev->bus->hcpriv;
  1037. if (!HC_IS_RUNNING (hcd->state))
  1038. return -ESHUTDOWN;
  1039. return hcd->driver->get_frame_number (hcd);
  1040. }
  1041. /*-------------------------------------------------------------------------*/
  1042. /* this makes the hcd giveback() the urb more quickly, by kicking it
  1043. * off hardware queues (which may take a while) and returning it as
  1044. * soon as practical. we've already set up the urb's return status,
  1045. * but we can't know if the callback completed already.
  1046. */
  1047. static int
  1048. unlink1 (struct usb_hcd *hcd, struct urb *urb)
  1049. {
  1050. int value;
  1051. if (urb->dev == hcd->self.root_hub)
  1052. value = usb_rh_urb_dequeue (hcd, urb);
  1053. else {
  1054. /* The only reason an HCD might fail this call is if
  1055. * it has not yet fully queued the urb to begin with.
  1056. * Such failures should be harmless. */
  1057. value = hcd->driver->urb_dequeue (hcd, urb);
  1058. }
  1059. if (value != 0)
  1060. dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
  1061. urb, value);
  1062. return value;
  1063. }
  1064. /*
  1065. * called in any context
  1066. *
  1067. * caller guarantees urb won't be recycled till both unlink()
  1068. * and the urb's completion function return
  1069. */
  1070. static int hcd_unlink_urb (struct urb *urb, int status)
  1071. {
  1072. struct usb_host_endpoint *ep;
  1073. struct usb_hcd *hcd = NULL;
  1074. struct device *sys = NULL;
  1075. unsigned long flags;
  1076. struct list_head *tmp;
  1077. int retval;
  1078. if (!urb)
  1079. return -EINVAL;
  1080. if (!urb->dev || !urb->dev->bus)
  1081. return -ENODEV;
  1082. ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
  1083. [usb_pipeendpoint(urb->pipe)];
  1084. if (!ep)
  1085. return -ENODEV;
  1086. /*
  1087. * we contend for urb->status with the hcd core,
  1088. * which changes it while returning the urb.
  1089. *
  1090. * Caller guaranteed that the urb pointer hasn't been freed, and
  1091. * that it was submitted. But as a rule it can't know whether or
  1092. * not it's already been unlinked ... so we respect the reversed
  1093. * lock sequence needed for the usb_hcd_giveback_urb() code paths
  1094. * (urb lock, then hcd_data_lock) in case some other CPU is now
  1095. * unlinking it.
  1096. */
  1097. spin_lock_irqsave (&urb->lock, flags);
  1098. spin_lock (&hcd_data_lock);
  1099. sys = &urb->dev->dev;
  1100. hcd = urb->dev->bus->hcpriv;
  1101. if (hcd == NULL) {
  1102. retval = -ENODEV;
  1103. goto done;
  1104. }
  1105. /* running ~= hc unlink handshake works (irq, timer, etc)
  1106. * halted ~= no unlink handshake is needed
  1107. * suspended, resuming == should never happen
  1108. */
  1109. WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT);
  1110. /* insist the urb is still queued */
  1111. list_for_each(tmp, &ep->urb_list) {
  1112. if (tmp == &urb->urb_list)
  1113. break;
  1114. }
  1115. if (tmp != &urb->urb_list) {
  1116. retval = -EIDRM;
  1117. goto done;
  1118. }
  1119. /* Any status except -EINPROGRESS means something already started to
  1120. * unlink this URB from the hardware. So there's no more work to do.
  1121. */
  1122. if (urb->status != -EINPROGRESS) {
  1123. retval = -EBUSY;
  1124. goto done;
  1125. }
  1126. /* IRQ setup can easily be broken so that USB controllers
  1127. * never get completion IRQs ... maybe even the ones we need to
  1128. * finish unlinking the initial failed usb_set_address()
  1129. * or device descriptor fetch.
  1130. */
  1131. if (!hcd->saw_irq && hcd->self.root_hub != urb->dev) {
  1132. dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
  1133. "Controller is probably using the wrong IRQ."
  1134. "\n");
  1135. hcd->saw_irq = 1;
  1136. }
  1137. urb->status = status;
  1138. spin_unlock (&hcd_data_lock);
  1139. spin_unlock_irqrestore (&urb->lock, flags);
  1140. retval = unlink1 (hcd, urb);
  1141. if (retval == 0)
  1142. retval = -EINPROGRESS;
  1143. return retval;
  1144. done:
  1145. spin_unlock (&hcd_data_lock);
  1146. spin_unlock_irqrestore (&urb->lock, flags);
  1147. if (retval != -EIDRM && sys && sys->driver)
  1148. dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
  1149. return retval;
  1150. }
  1151. /*-------------------------------------------------------------------------*/
  1152. /* disables the endpoint: cancels any pending urbs, then synchronizes with
  1153. * the hcd to make sure all endpoint state is gone from hardware. use for
  1154. * set_configuration, set_interface, driver removal, physical disconnect.
  1155. *
  1156. * example: a qh stored in ep->hcpriv, holding state related to endpoint
  1157. * type, maxpacket size, toggle, halt status, and scheduling.
  1158. */
  1159. static void
  1160. hcd_endpoint_disable (struct usb_device *udev, struct usb_host_endpoint *ep)
  1161. {
  1162. struct usb_hcd *hcd;
  1163. struct urb *urb;
  1164. hcd = udev->bus->hcpriv;
  1165. WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT);
  1166. local_irq_disable ();
  1167. /* FIXME move most of this into message.c as part of its
  1168. * endpoint disable logic
  1169. */
  1170. /* ep is already gone from udev->ep_{in,out}[]; no more submits */
  1171. rescan:
  1172. spin_lock (&hcd_data_lock);
  1173. list_for_each_entry (urb, &ep->urb_list, urb_list) {
  1174. int tmp;
  1175. /* another cpu may be in hcd, spinning on hcd_data_lock
  1176. * to giveback() this urb. the races here should be
  1177. * small, but a full fix needs a new "can't submit"
  1178. * urb state.
  1179. * FIXME urb->reject should allow that...
  1180. */
  1181. if (urb->status != -EINPROGRESS)
  1182. continue;
  1183. usb_get_urb (urb);
  1184. spin_unlock (&hcd_data_lock);
  1185. spin_lock (&urb->lock);
  1186. tmp = urb->status;
  1187. if (tmp == -EINPROGRESS)
  1188. urb->status = -ESHUTDOWN;
  1189. spin_unlock (&urb->lock);
  1190. /* kick hcd unless it's already returning this */
  1191. if (tmp == -EINPROGRESS) {
  1192. tmp = urb->pipe;
  1193. unlink1 (hcd, urb);
  1194. dev_dbg (hcd->self.controller,
  1195. "shutdown urb %p pipe %08x ep%d%s%s\n",
  1196. urb, tmp, usb_pipeendpoint (tmp),
  1197. (tmp & USB_DIR_IN) ? "in" : "out",
  1198. ({ char *s; \
  1199. switch (usb_pipetype (tmp)) { \
  1200. case PIPE_CONTROL: s = ""; break; \
  1201. case PIPE_BULK: s = "-bulk"; break; \
  1202. case PIPE_INTERRUPT: s = "-intr"; break; \
  1203. default: s = "-iso"; break; \
  1204. }; s;}));
  1205. }
  1206. usb_put_urb (urb);
  1207. /* list contents may have changed */
  1208. goto rescan;
  1209. }
  1210. spin_unlock (&hcd_data_lock);
  1211. local_irq_enable ();
  1212. /* synchronize with the hardware, so old configuration state
  1213. * clears out immediately (and will be freed).
  1214. */
  1215. might_sleep ();
  1216. if (hcd->driver->endpoint_disable)
  1217. hcd->driver->endpoint_disable (hcd, ep);
  1218. }
  1219. /*-------------------------------------------------------------------------*/
  1220. #ifdef CONFIG_USB_SUSPEND
  1221. static int hcd_hub_suspend (struct usb_bus *bus)
  1222. {
  1223. struct usb_hcd *hcd;
  1224. hcd = container_of (bus, struct usb_hcd, self);
  1225. if (hcd->driver->hub_suspend)
  1226. return hcd->driver->hub_suspend (hcd);
  1227. return 0;
  1228. }
  1229. static int hcd_hub_resume (struct usb_bus *bus)
  1230. {
  1231. struct usb_hcd *hcd;
  1232. hcd = container_of (bus, struct usb_hcd, self);
  1233. if (hcd->driver->hub_resume)
  1234. return hcd->driver->hub_resume (hcd);
  1235. return 0;
  1236. }
  1237. /**
  1238. * usb_hcd_resume_root_hub - called by HCD to resume its root hub
  1239. * @hcd: host controller for this root hub
  1240. *
  1241. * The USB host controller calls this function when its root hub is
  1242. * suspended (with the remote wakeup feature enabled) and a remote
  1243. * wakeup request is received. It queues a request for khubd to
  1244. * resume the root hub.
  1245. */
  1246. void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
  1247. {
  1248. unsigned long flags;
  1249. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1250. if (hcd->rh_registered)
  1251. usb_resume_root_hub (hcd->self.root_hub);
  1252. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1253. }
  1254. #else
  1255. void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
  1256. {
  1257. }
  1258. #endif
  1259. EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
  1260. /*-------------------------------------------------------------------------*/
  1261. #ifdef CONFIG_USB_OTG
  1262. /**
  1263. * usb_bus_start_enum - start immediate enumeration (for OTG)
  1264. * @bus: the bus (must use hcd framework)
  1265. * @port_num: 1-based number of port; usually bus->otg_port
  1266. * Context: in_interrupt()
  1267. *
  1268. * Starts enumeration, with an immediate reset followed later by
  1269. * khubd identifying and possibly configuring the device.
  1270. * This is needed by OTG controller drivers, where it helps meet
  1271. * HNP protocol timing requirements for starting a port reset.
  1272. */
  1273. int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
  1274. {
  1275. struct usb_hcd *hcd;
  1276. int status = -EOPNOTSUPP;
  1277. /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
  1278. * boards with root hubs hooked up to internal devices (instead of
  1279. * just the OTG port) may need more attention to resetting...
  1280. */
  1281. hcd = container_of (bus, struct usb_hcd, self);
  1282. if (port_num && hcd->driver->start_port_reset)
  1283. status = hcd->driver->start_port_reset(hcd, port_num);
  1284. /* run khubd shortly after (first) root port reset finishes;
  1285. * it may issue others, until at least 50 msecs have passed.
  1286. */
  1287. if (status == 0)
  1288. mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
  1289. return status;
  1290. }
  1291. EXPORT_SYMBOL (usb_bus_start_enum);
  1292. #endif
  1293. /*-------------------------------------------------------------------------*/
  1294. /*
  1295. * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue)
  1296. */
  1297. static struct usb_operations usb_hcd_operations = {
  1298. .get_frame_number = hcd_get_frame_number,
  1299. .submit_urb = hcd_submit_urb,
  1300. .unlink_urb = hcd_unlink_urb,
  1301. .buffer_alloc = hcd_buffer_alloc,
  1302. .buffer_free = hcd_buffer_free,
  1303. .disable = hcd_endpoint_disable,
  1304. #ifdef CONFIG_USB_SUSPEND
  1305. .hub_suspend = hcd_hub_suspend,
  1306. .hub_resume = hcd_hub_resume,
  1307. #endif
  1308. };
  1309. /*-------------------------------------------------------------------------*/
  1310. /**
  1311. * usb_hcd_giveback_urb - return URB from HCD to device driver
  1312. * @hcd: host controller returning the URB
  1313. * @urb: urb being returned to the USB device driver.
  1314. * @regs: pt_regs, passed down to the URB completion handler
  1315. * Context: in_interrupt()
  1316. *
  1317. * This hands the URB from HCD to its USB device driver, using its
  1318. * completion function. The HCD has freed all per-urb resources
  1319. * (and is done using urb->hcpriv). It also released all HCD locks;
  1320. * the device driver won't cause problems if it frees, modifies,
  1321. * or resubmits this URB.
  1322. */
  1323. void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
  1324. {
  1325. int at_root_hub;
  1326. at_root_hub = (urb->dev == hcd->self.root_hub);
  1327. urb_unlink (urb);
  1328. /* lower level hcd code should use *_dma exclusively */
  1329. if (hcd->self.controller->dma_mask && !at_root_hub) {
  1330. if (usb_pipecontrol (urb->pipe)
  1331. && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
  1332. dma_unmap_single (hcd->self.controller, urb->setup_dma,
  1333. sizeof (struct usb_ctrlrequest),
  1334. DMA_TO_DEVICE);
  1335. if (urb->transfer_buffer_length != 0
  1336. && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
  1337. dma_unmap_single (hcd->self.controller,
  1338. urb->transfer_dma,
  1339. urb->transfer_buffer_length,
  1340. usb_pipein (urb->pipe)
  1341. ? DMA_FROM_DEVICE
  1342. : DMA_TO_DEVICE);
  1343. }
  1344. usbmon_urb_complete (&hcd->self, urb);
  1345. /* pass ownership to the completion handler */
  1346. urb->complete (urb, regs);
  1347. atomic_dec (&urb->use_count);
  1348. if (unlikely (urb->reject))
  1349. wake_up (&usb_kill_urb_queue);
  1350. usb_put_urb (urb);
  1351. }
  1352. EXPORT_SYMBOL (usb_hcd_giveback_urb);
  1353. /*-------------------------------------------------------------------------*/
  1354. /**
  1355. * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
  1356. * @irq: the IRQ being raised
  1357. * @__hcd: pointer to the HCD whose IRQ is being signaled
  1358. * @r: saved hardware registers
  1359. *
  1360. * If the controller isn't HALTed, calls the driver's irq handler.
  1361. * Checks whether the controller is now dead.
  1362. */
  1363. irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
  1364. {
  1365. struct usb_hcd *hcd = __hcd;
  1366. int start = hcd->state;
  1367. if (start == HC_STATE_HALT)
  1368. return IRQ_NONE;
  1369. if (hcd->driver->irq (hcd, r) == IRQ_NONE)
  1370. return IRQ_NONE;
  1371. hcd->saw_irq = 1;
  1372. if (hcd->state != start && hcd->state == HC_STATE_HALT)
  1373. usb_hc_died (hcd);
  1374. return IRQ_HANDLED;
  1375. }
  1376. /*-------------------------------------------------------------------------*/
  1377. /**
  1378. * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
  1379. * @hcd: pointer to the HCD representing the controller
  1380. *
  1381. * This is called by bus glue to report a USB host controller that died
  1382. * while operations may still have been pending. It's called automatically
  1383. * by the PCI glue, so only glue for non-PCI busses should need to call it.
  1384. */
  1385. void usb_hc_died (struct usb_hcd *hcd)
  1386. {
  1387. unsigned long flags;
  1388. dev_err (hcd->self.controller, "HC died; cleaning up\n");
  1389. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1390. if (hcd->rh_registered) {
  1391. /* make khubd clean up old urbs and devices */
  1392. usb_set_device_state (hcd->self.root_hub,
  1393. USB_STATE_NOTATTACHED);
  1394. usb_kick_khubd (hcd->self.root_hub);
  1395. }
  1396. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1397. }
  1398. EXPORT_SYMBOL_GPL (usb_hc_died);
  1399. /*-------------------------------------------------------------------------*/
  1400. static void hcd_release (struct usb_bus *bus)
  1401. {
  1402. struct usb_hcd *hcd;
  1403. hcd = container_of(bus, struct usb_hcd, self);
  1404. kfree(hcd);
  1405. }
  1406. /**
  1407. * usb_create_hcd - create and initialize an HCD structure
  1408. * @driver: HC driver that will use this hcd
  1409. * @dev: device for this HC, stored in hcd->self.controller
  1410. * @bus_name: value to store in hcd->self.bus_name
  1411. * Context: !in_interrupt()
  1412. *
  1413. * Allocate a struct usb_hcd, with extra space at the end for the
  1414. * HC driver's private data. Initialize the generic members of the
  1415. * hcd structure.
  1416. *
  1417. * If memory is unavailable, returns NULL.
  1418. */
  1419. struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
  1420. struct device *dev, char *bus_name)
  1421. {
  1422. struct usb_hcd *hcd;
  1423. hcd = kcalloc(1, sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
  1424. if (!hcd) {
  1425. dev_dbg (dev, "hcd alloc failed\n");
  1426. return NULL;
  1427. }
  1428. dev_set_drvdata(dev, hcd);
  1429. usb_bus_init(&hcd->self);
  1430. hcd->self.op = &usb_hcd_operations;
  1431. hcd->self.hcpriv = hcd;
  1432. hcd->self.release = &hcd_release;
  1433. hcd->self.controller = dev;
  1434. hcd->self.bus_name = bus_name;
  1435. init_timer(&hcd->rh_timer);
  1436. hcd->driver = driver;
  1437. hcd->product_desc = (driver->product_desc) ? driver->product_desc :
  1438. "USB Host Controller";
  1439. return hcd;
  1440. }
  1441. EXPORT_SYMBOL (usb_create_hcd);
  1442. void usb_put_hcd (struct usb_hcd *hcd)
  1443. {
  1444. dev_set_drvdata(hcd->self.controller, NULL);
  1445. usb_bus_put(&hcd->self);
  1446. }
  1447. EXPORT_SYMBOL (usb_put_hcd);
  1448. /**
  1449. * usb_add_hcd - finish generic HCD structure initialization and register
  1450. * @hcd: the usb_hcd structure to initialize
  1451. * @irqnum: Interrupt line to allocate
  1452. * @irqflags: Interrupt type flags
  1453. *
  1454. * Finish the remaining parts of generic HCD initialization: allocate the
  1455. * buffers of consistent memory, register the bus, request the IRQ line,
  1456. * and call the driver's reset() and start() routines.
  1457. */
  1458. int usb_add_hcd(struct usb_hcd *hcd,
  1459. unsigned int irqnum, unsigned long irqflags)
  1460. {
  1461. int retval;
  1462. dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
  1463. /* till now HC has been in an indeterminate state ... */
  1464. if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
  1465. dev_err(hcd->self.controller, "can't reset\n");
  1466. return retval;
  1467. }
  1468. if ((retval = hcd_buffer_create(hcd)) != 0) {
  1469. dev_dbg(hcd->self.controller, "pool alloc failed\n");
  1470. return retval;
  1471. }
  1472. if ((retval = usb_register_bus(&hcd->self)) < 0)
  1473. goto err1;
  1474. if (hcd->driver->irq) {
  1475. char buf[8], *bufp = buf;
  1476. #ifdef __sparc__
  1477. bufp = __irq_itoa(irqnum);
  1478. #else
  1479. sprintf(buf, "%d", irqnum);
  1480. #endif
  1481. snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
  1482. hcd->driver->description, hcd->self.busnum);
  1483. if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
  1484. hcd->irq_descr, hcd)) != 0) {
  1485. dev_err(hcd->self.controller,
  1486. "request interrupt %s failed\n", bufp);
  1487. goto err2;
  1488. }
  1489. hcd->irq = irqnum;
  1490. dev_info(hcd->self.controller, "irq %s, %s 0x%08llx\n", bufp,
  1491. (hcd->driver->flags & HCD_MEMORY) ?
  1492. "io mem" : "io base",
  1493. (unsigned long long)hcd->rsrc_start);
  1494. } else {
  1495. hcd->irq = -1;
  1496. if (hcd->rsrc_start)
  1497. dev_info(hcd->self.controller, "%s 0x%08llx\n",
  1498. (hcd->driver->flags & HCD_MEMORY) ?
  1499. "io mem" : "io base",
  1500. (unsigned long long)hcd->rsrc_start);
  1501. }
  1502. if ((retval = hcd->driver->start(hcd)) < 0) {
  1503. dev_err(hcd->self.controller, "startup error %d\n", retval);
  1504. goto err3;
  1505. }
  1506. return retval;
  1507. err3:
  1508. if (hcd->irq >= 0)
  1509. free_irq(irqnum, hcd);
  1510. err2:
  1511. usb_deregister_bus(&hcd->self);
  1512. err1:
  1513. hcd_buffer_destroy(hcd);
  1514. return retval;
  1515. }
  1516. EXPORT_SYMBOL (usb_add_hcd);
  1517. /**
  1518. * usb_remove_hcd - shutdown processing for generic HCDs
  1519. * @hcd: the usb_hcd structure to remove
  1520. * Context: !in_interrupt()
  1521. *
  1522. * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
  1523. * invoking the HCD's stop() method.
  1524. */
  1525. void usb_remove_hcd(struct usb_hcd *hcd)
  1526. {
  1527. dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
  1528. if (HC_IS_RUNNING (hcd->state))
  1529. hcd->state = HC_STATE_QUIESCING;
  1530. dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
  1531. spin_lock_irq (&hcd_root_hub_lock);
  1532. hcd->rh_registered = 0;
  1533. spin_unlock_irq (&hcd_root_hub_lock);
  1534. usb_disconnect(&hcd->self.root_hub);
  1535. hcd->driver->stop(hcd);
  1536. hcd->state = HC_STATE_HALT;
  1537. if (hcd->irq >= 0)
  1538. free_irq(hcd->irq, hcd);
  1539. usb_deregister_bus(&hcd->self);
  1540. hcd_buffer_destroy(hcd);
  1541. }
  1542. EXPORT_SYMBOL (usb_remove_hcd);
  1543. /*-------------------------------------------------------------------------*/
  1544. #if defined(CONFIG_USB_MON)
  1545. struct usb_mon_operations *mon_ops;
  1546. /*
  1547. * The registration is unlocked.
  1548. * We do it this way because we do not want to lock in hot paths.
  1549. *
  1550. * Notice that the code is minimally error-proof. Because usbmon needs
  1551. * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
  1552. */
  1553. int usb_mon_register (struct usb_mon_operations *ops)
  1554. {
  1555. if (mon_ops)
  1556. return -EBUSY;
  1557. mon_ops = ops;
  1558. mb();
  1559. return 0;
  1560. }
  1561. EXPORT_SYMBOL_GPL (usb_mon_register);
  1562. void usb_mon_deregister (void)
  1563. {
  1564. if (mon_ops == NULL) {
  1565. printk(KERN_ERR "USB: monitor was not registered\n");
  1566. return;
  1567. }
  1568. mon_ops = NULL;
  1569. mb();
  1570. }
  1571. EXPORT_SYMBOL_GPL (usb_mon_deregister);
  1572. #endif /* CONFIG_USB_MON */