hcd.c 54 KB

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