hcd.c 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676
  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/bcd.h>
  25. #include <linux/module.h>
  26. #include <linux/version.h>
  27. #include <linux/kernel.h>
  28. #include <linux/slab.h>
  29. #include <linux/completion.h>
  30. #include <linux/utsname.h>
  31. #include <linux/mm.h>
  32. #include <asm/io.h>
  33. #include <linux/device.h>
  34. #include <linux/dma-mapping.h>
  35. #include <linux/mutex.h>
  36. #include <asm/irq.h>
  37. #include <asm/byteorder.h>
  38. #include <asm/unaligned.h>
  39. #include <linux/platform_device.h>
  40. #include <linux/workqueue.h>
  41. #include <linux/usb.h>
  42. #include <linux/usb/hcd.h>
  43. #include "usb.h"
  44. /*-------------------------------------------------------------------------*/
  45. /*
  46. * USB Host Controller Driver framework
  47. *
  48. * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
  49. * HCD-specific behaviors/bugs.
  50. *
  51. * This does error checks, tracks devices and urbs, and delegates to a
  52. * "hc_driver" only for code (and data) that really needs to know about
  53. * hardware differences. That includes root hub registers, i/o queues,
  54. * and so on ... but as little else as possible.
  55. *
  56. * Shared code includes most of the "root hub" code (these are emulated,
  57. * though each HC's hardware works differently) and PCI glue, plus request
  58. * tracking overhead. The HCD code should only block on spinlocks or on
  59. * hardware handshaking; blocking on software events (such as other kernel
  60. * threads releasing resources, or completing actions) is all generic.
  61. *
  62. * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
  63. * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
  64. * only by the hub driver ... and that neither should be seen or used by
  65. * usb client device drivers.
  66. *
  67. * Contributors of ideas or unattributed patches include: David Brownell,
  68. * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
  69. *
  70. * HISTORY:
  71. * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
  72. * associated cleanup. "usb_hcd" still != "usb_bus".
  73. * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
  74. */
  75. /*-------------------------------------------------------------------------*/
  76. /* Keep track of which host controller drivers are loaded */
  77. unsigned long usb_hcds_loaded;
  78. EXPORT_SYMBOL_GPL(usb_hcds_loaded);
  79. /* host controllers we manage */
  80. LIST_HEAD (usb_bus_list);
  81. EXPORT_SYMBOL_GPL (usb_bus_list);
  82. /* used when allocating bus numbers */
  83. #define USB_MAXBUS 64
  84. struct usb_busmap {
  85. unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
  86. };
  87. static struct usb_busmap busmap;
  88. /* used when updating list of hcds */
  89. DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
  90. EXPORT_SYMBOL_GPL (usb_bus_list_lock);
  91. /* used for controlling access to virtual root hubs */
  92. static DEFINE_SPINLOCK(hcd_root_hub_lock);
  93. /* used when updating an endpoint's URB list */
  94. static DEFINE_SPINLOCK(hcd_urb_list_lock);
  95. /* used to protect against unlinking URBs after the device is gone */
  96. static DEFINE_SPINLOCK(hcd_urb_unlink_lock);
  97. /* wait queue for synchronous unlinks */
  98. DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
  99. static inline int is_root_hub(struct usb_device *udev)
  100. {
  101. return (udev->parent == NULL);
  102. }
  103. /*-------------------------------------------------------------------------*/
  104. /*
  105. * Sharable chunks of root hub code.
  106. */
  107. /*-------------------------------------------------------------------------*/
  108. #define KERNEL_REL bin2bcd(((LINUX_VERSION_CODE >> 16) & 0x0ff))
  109. #define KERNEL_VER bin2bcd(((LINUX_VERSION_CODE >> 8) & 0x0ff))
  110. /* usb 3.0 root hub device descriptor */
  111. static const u8 usb3_rh_dev_descriptor[18] = {
  112. 0x12, /* __u8 bLength; */
  113. 0x01, /* __u8 bDescriptorType; Device */
  114. 0x00, 0x03, /* __le16 bcdUSB; v3.0 */
  115. 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
  116. 0x00, /* __u8 bDeviceSubClass; */
  117. 0x03, /* __u8 bDeviceProtocol; USB 3.0 hub */
  118. 0x09, /* __u8 bMaxPacketSize0; 2^9 = 512 Bytes */
  119. 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
  120. 0x03, 0x00, /* __le16 idProduct; device 0x0003 */
  121. KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
  122. 0x03, /* __u8 iManufacturer; */
  123. 0x02, /* __u8 iProduct; */
  124. 0x01, /* __u8 iSerialNumber; */
  125. 0x01 /* __u8 bNumConfigurations; */
  126. };
  127. /* usb 2.0 root hub device descriptor */
  128. static const u8 usb2_rh_dev_descriptor [18] = {
  129. 0x12, /* __u8 bLength; */
  130. 0x01, /* __u8 bDescriptorType; Device */
  131. 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
  132. 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
  133. 0x00, /* __u8 bDeviceSubClass; */
  134. 0x00, /* __u8 bDeviceProtocol; [ usb 2.0 no TT ] */
  135. 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
  136. 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
  137. 0x02, 0x00, /* __le16 idProduct; device 0x0002 */
  138. KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
  139. 0x03, /* __u8 iManufacturer; */
  140. 0x02, /* __u8 iProduct; */
  141. 0x01, /* __u8 iSerialNumber; */
  142. 0x01 /* __u8 bNumConfigurations; */
  143. };
  144. /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
  145. /* usb 1.1 root hub device descriptor */
  146. static const u8 usb11_rh_dev_descriptor [18] = {
  147. 0x12, /* __u8 bLength; */
  148. 0x01, /* __u8 bDescriptorType; Device */
  149. 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
  150. 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
  151. 0x00, /* __u8 bDeviceSubClass; */
  152. 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
  153. 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
  154. 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
  155. 0x01, 0x00, /* __le16 idProduct; device 0x0001 */
  156. KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
  157. 0x03, /* __u8 iManufacturer; */
  158. 0x02, /* __u8 iProduct; */
  159. 0x01, /* __u8 iSerialNumber; */
  160. 0x01 /* __u8 bNumConfigurations; */
  161. };
  162. /*-------------------------------------------------------------------------*/
  163. /* Configuration descriptors for our root hubs */
  164. static const u8 fs_rh_config_descriptor [] = {
  165. /* one configuration */
  166. 0x09, /* __u8 bLength; */
  167. 0x02, /* __u8 bDescriptorType; Configuration */
  168. 0x19, 0x00, /* __le16 wTotalLength; */
  169. 0x01, /* __u8 bNumInterfaces; (1) */
  170. 0x01, /* __u8 bConfigurationValue; */
  171. 0x00, /* __u8 iConfiguration; */
  172. 0xc0, /* __u8 bmAttributes;
  173. Bit 7: must be set,
  174. 6: Self-powered,
  175. 5: Remote wakeup,
  176. 4..0: resvd */
  177. 0x00, /* __u8 MaxPower; */
  178. /* USB 1.1:
  179. * USB 2.0, single TT organization (mandatory):
  180. * one interface, protocol 0
  181. *
  182. * USB 2.0, multiple TT organization (optional):
  183. * two interfaces, protocols 1 (like single TT)
  184. * and 2 (multiple TT mode) ... config is
  185. * sometimes settable
  186. * NOT IMPLEMENTED
  187. */
  188. /* one interface */
  189. 0x09, /* __u8 if_bLength; */
  190. 0x04, /* __u8 if_bDescriptorType; Interface */
  191. 0x00, /* __u8 if_bInterfaceNumber; */
  192. 0x00, /* __u8 if_bAlternateSetting; */
  193. 0x01, /* __u8 if_bNumEndpoints; */
  194. 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
  195. 0x00, /* __u8 if_bInterfaceSubClass; */
  196. 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
  197. 0x00, /* __u8 if_iInterface; */
  198. /* one endpoint (status change endpoint) */
  199. 0x07, /* __u8 ep_bLength; */
  200. 0x05, /* __u8 ep_bDescriptorType; Endpoint */
  201. 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
  202. 0x03, /* __u8 ep_bmAttributes; Interrupt */
  203. 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
  204. 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
  205. };
  206. static const u8 hs_rh_config_descriptor [] = {
  207. /* one configuration */
  208. 0x09, /* __u8 bLength; */
  209. 0x02, /* __u8 bDescriptorType; Configuration */
  210. 0x19, 0x00, /* __le16 wTotalLength; */
  211. 0x01, /* __u8 bNumInterfaces; (1) */
  212. 0x01, /* __u8 bConfigurationValue; */
  213. 0x00, /* __u8 iConfiguration; */
  214. 0xc0, /* __u8 bmAttributes;
  215. Bit 7: must be set,
  216. 6: Self-powered,
  217. 5: Remote wakeup,
  218. 4..0: resvd */
  219. 0x00, /* __u8 MaxPower; */
  220. /* USB 1.1:
  221. * USB 2.0, single TT organization (mandatory):
  222. * one interface, protocol 0
  223. *
  224. * USB 2.0, multiple TT organization (optional):
  225. * two interfaces, protocols 1 (like single TT)
  226. * and 2 (multiple TT mode) ... config is
  227. * sometimes settable
  228. * NOT IMPLEMENTED
  229. */
  230. /* one interface */
  231. 0x09, /* __u8 if_bLength; */
  232. 0x04, /* __u8 if_bDescriptorType; Interface */
  233. 0x00, /* __u8 if_bInterfaceNumber; */
  234. 0x00, /* __u8 if_bAlternateSetting; */
  235. 0x01, /* __u8 if_bNumEndpoints; */
  236. 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
  237. 0x00, /* __u8 if_bInterfaceSubClass; */
  238. 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
  239. 0x00, /* __u8 if_iInterface; */
  240. /* one endpoint (status change endpoint) */
  241. 0x07, /* __u8 ep_bLength; */
  242. 0x05, /* __u8 ep_bDescriptorType; Endpoint */
  243. 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
  244. 0x03, /* __u8 ep_bmAttributes; Interrupt */
  245. /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
  246. * see hub.c:hub_configure() for details. */
  247. (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
  248. 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
  249. };
  250. static const u8 ss_rh_config_descriptor[] = {
  251. /* one configuration */
  252. 0x09, /* __u8 bLength; */
  253. 0x02, /* __u8 bDescriptorType; Configuration */
  254. 0x1f, 0x00, /* __le16 wTotalLength; */
  255. 0x01, /* __u8 bNumInterfaces; (1) */
  256. 0x01, /* __u8 bConfigurationValue; */
  257. 0x00, /* __u8 iConfiguration; */
  258. 0xc0, /* __u8 bmAttributes;
  259. Bit 7: must be set,
  260. 6: Self-powered,
  261. 5: Remote wakeup,
  262. 4..0: resvd */
  263. 0x00, /* __u8 MaxPower; */
  264. /* one interface */
  265. 0x09, /* __u8 if_bLength; */
  266. 0x04, /* __u8 if_bDescriptorType; Interface */
  267. 0x00, /* __u8 if_bInterfaceNumber; */
  268. 0x00, /* __u8 if_bAlternateSetting; */
  269. 0x01, /* __u8 if_bNumEndpoints; */
  270. 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
  271. 0x00, /* __u8 if_bInterfaceSubClass; */
  272. 0x00, /* __u8 if_bInterfaceProtocol; */
  273. 0x00, /* __u8 if_iInterface; */
  274. /* one endpoint (status change endpoint) */
  275. 0x07, /* __u8 ep_bLength; */
  276. 0x05, /* __u8 ep_bDescriptorType; Endpoint */
  277. 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
  278. 0x03, /* __u8 ep_bmAttributes; Interrupt */
  279. /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
  280. * see hub.c:hub_configure() for details. */
  281. (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
  282. 0x0c, /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
  283. /* one SuperSpeed endpoint companion descriptor */
  284. 0x06, /* __u8 ss_bLength */
  285. 0x30, /* __u8 ss_bDescriptorType; SuperSpeed EP Companion */
  286. 0x00, /* __u8 ss_bMaxBurst; allows 1 TX between ACKs */
  287. 0x00, /* __u8 ss_bmAttributes; 1 packet per service interval */
  288. 0x02, 0x00 /* __le16 ss_wBytesPerInterval; 15 bits for max 15 ports */
  289. };
  290. /* authorized_default behaviour:
  291. * -1 is authorized for all devices except wireless (old behaviour)
  292. * 0 is unauthorized for all devices
  293. * 1 is authorized for all devices
  294. */
  295. static int authorized_default = -1;
  296. module_param(authorized_default, int, S_IRUGO|S_IWUSR);
  297. MODULE_PARM_DESC(authorized_default,
  298. "Default USB device authorization: 0 is not authorized, 1 is "
  299. "authorized, -1 is authorized except for wireless USB (default, "
  300. "old behaviour");
  301. /*-------------------------------------------------------------------------*/
  302. /**
  303. * ascii2desc() - Helper routine for producing UTF-16LE string descriptors
  304. * @s: Null-terminated ASCII (actually ISO-8859-1) string
  305. * @buf: Buffer for USB string descriptor (header + UTF-16LE)
  306. * @len: Length (in bytes; may be odd) of descriptor buffer.
  307. *
  308. * The return value is the number of bytes filled in: 2 + 2*strlen(s) or
  309. * buflen, whichever is less.
  310. *
  311. * USB String descriptors can contain at most 126 characters; input
  312. * strings longer than that are truncated.
  313. */
  314. static unsigned
  315. ascii2desc(char const *s, u8 *buf, unsigned len)
  316. {
  317. unsigned n, t = 2 + 2*strlen(s);
  318. if (t > 254)
  319. t = 254; /* Longest possible UTF string descriptor */
  320. if (len > t)
  321. len = t;
  322. t += USB_DT_STRING << 8; /* Now t is first 16 bits to store */
  323. n = len;
  324. while (n--) {
  325. *buf++ = t;
  326. if (!n--)
  327. break;
  328. *buf++ = t >> 8;
  329. t = (unsigned char)*s++;
  330. }
  331. return len;
  332. }
  333. /**
  334. * rh_string() - provides string descriptors for root hub
  335. * @id: the string ID number (0: langids, 1: serial #, 2: product, 3: vendor)
  336. * @hcd: the host controller for this root hub
  337. * @data: buffer for output packet
  338. * @len: length of the provided buffer
  339. *
  340. * Produces either a manufacturer, product or serial number string for the
  341. * virtual root hub device.
  342. * Returns the number of bytes filled in: the length of the descriptor or
  343. * of the provided buffer, whichever is less.
  344. */
  345. static unsigned
  346. rh_string(int id, struct usb_hcd const *hcd, u8 *data, unsigned len)
  347. {
  348. char buf[100];
  349. char const *s;
  350. static char const langids[4] = {4, USB_DT_STRING, 0x09, 0x04};
  351. // language ids
  352. switch (id) {
  353. case 0:
  354. /* Array of LANGID codes (0x0409 is MSFT-speak for "en-us") */
  355. /* See http://www.usb.org/developers/docs/USB_LANGIDs.pdf */
  356. if (len > 4)
  357. len = 4;
  358. memcpy(data, langids, len);
  359. return len;
  360. case 1:
  361. /* Serial number */
  362. s = hcd->self.bus_name;
  363. break;
  364. case 2:
  365. /* Product name */
  366. s = hcd->product_desc;
  367. break;
  368. case 3:
  369. /* Manufacturer */
  370. snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
  371. init_utsname()->release, hcd->driver->description);
  372. s = buf;
  373. break;
  374. default:
  375. /* Can't happen; caller guarantees it */
  376. return 0;
  377. }
  378. return ascii2desc(s, data, len);
  379. }
  380. /* Root hub control transfers execute synchronously */
  381. static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
  382. {
  383. struct usb_ctrlrequest *cmd;
  384. u16 typeReq, wValue, wIndex, wLength;
  385. u8 *ubuf = urb->transfer_buffer;
  386. /*
  387. * tbuf should be as big as the BOS descriptor and
  388. * the USB hub descriptor.
  389. */
  390. u8 tbuf[USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE]
  391. __attribute__((aligned(4)));
  392. const u8 *bufp = tbuf;
  393. unsigned len = 0;
  394. int status;
  395. u8 patch_wakeup = 0;
  396. u8 patch_protocol = 0;
  397. might_sleep();
  398. spin_lock_irq(&hcd_root_hub_lock);
  399. status = usb_hcd_link_urb_to_ep(hcd, urb);
  400. spin_unlock_irq(&hcd_root_hub_lock);
  401. if (status)
  402. return status;
  403. urb->hcpriv = hcd; /* Indicate it's queued */
  404. cmd = (struct usb_ctrlrequest *) urb->setup_packet;
  405. typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
  406. wValue = le16_to_cpu (cmd->wValue);
  407. wIndex = le16_to_cpu (cmd->wIndex);
  408. wLength = le16_to_cpu (cmd->wLength);
  409. if (wLength > urb->transfer_buffer_length)
  410. goto error;
  411. urb->actual_length = 0;
  412. switch (typeReq) {
  413. /* DEVICE REQUESTS */
  414. /* The root hub's remote wakeup enable bit is implemented using
  415. * driver model wakeup flags. If this system supports wakeup
  416. * through USB, userspace may change the default "allow wakeup"
  417. * policy through sysfs or these calls.
  418. *
  419. * Most root hubs support wakeup from downstream devices, for
  420. * runtime power management (disabling USB clocks and reducing
  421. * VBUS power usage). However, not all of them do so; silicon,
  422. * board, and BIOS bugs here are not uncommon, so these can't
  423. * be treated quite like external hubs.
  424. *
  425. * Likewise, not all root hubs will pass wakeup events upstream,
  426. * to wake up the whole system. So don't assume root hub and
  427. * controller capabilities are identical.
  428. */
  429. case DeviceRequest | USB_REQ_GET_STATUS:
  430. tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
  431. << USB_DEVICE_REMOTE_WAKEUP)
  432. | (1 << USB_DEVICE_SELF_POWERED);
  433. tbuf [1] = 0;
  434. len = 2;
  435. break;
  436. case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
  437. if (wValue == USB_DEVICE_REMOTE_WAKEUP)
  438. device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
  439. else
  440. goto error;
  441. break;
  442. case DeviceOutRequest | USB_REQ_SET_FEATURE:
  443. if (device_can_wakeup(&hcd->self.root_hub->dev)
  444. && wValue == USB_DEVICE_REMOTE_WAKEUP)
  445. device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
  446. else
  447. goto error;
  448. break;
  449. case DeviceRequest | USB_REQ_GET_CONFIGURATION:
  450. tbuf [0] = 1;
  451. len = 1;
  452. /* FALLTHROUGH */
  453. case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
  454. break;
  455. case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
  456. switch (wValue & 0xff00) {
  457. case USB_DT_DEVICE << 8:
  458. switch (hcd->speed) {
  459. case HCD_USB3:
  460. bufp = usb3_rh_dev_descriptor;
  461. break;
  462. case HCD_USB2:
  463. bufp = usb2_rh_dev_descriptor;
  464. break;
  465. case HCD_USB11:
  466. bufp = usb11_rh_dev_descriptor;
  467. break;
  468. default:
  469. goto error;
  470. }
  471. len = 18;
  472. if (hcd->has_tt)
  473. patch_protocol = 1;
  474. break;
  475. case USB_DT_CONFIG << 8:
  476. switch (hcd->speed) {
  477. case HCD_USB3:
  478. bufp = ss_rh_config_descriptor;
  479. len = sizeof ss_rh_config_descriptor;
  480. break;
  481. case HCD_USB2:
  482. bufp = hs_rh_config_descriptor;
  483. len = sizeof hs_rh_config_descriptor;
  484. break;
  485. case HCD_USB11:
  486. bufp = fs_rh_config_descriptor;
  487. len = sizeof fs_rh_config_descriptor;
  488. break;
  489. default:
  490. goto error;
  491. }
  492. if (device_can_wakeup(&hcd->self.root_hub->dev))
  493. patch_wakeup = 1;
  494. break;
  495. case USB_DT_STRING << 8:
  496. if ((wValue & 0xff) < 4)
  497. urb->actual_length = rh_string(wValue & 0xff,
  498. hcd, ubuf, wLength);
  499. else /* unsupported IDs --> "protocol stall" */
  500. goto error;
  501. break;
  502. case USB_DT_BOS << 8:
  503. goto nongeneric;
  504. default:
  505. goto error;
  506. }
  507. break;
  508. case DeviceRequest | USB_REQ_GET_INTERFACE:
  509. tbuf [0] = 0;
  510. len = 1;
  511. /* FALLTHROUGH */
  512. case DeviceOutRequest | USB_REQ_SET_INTERFACE:
  513. break;
  514. case DeviceOutRequest | USB_REQ_SET_ADDRESS:
  515. // wValue == urb->dev->devaddr
  516. dev_dbg (hcd->self.controller, "root hub device address %d\n",
  517. wValue);
  518. break;
  519. /* INTERFACE REQUESTS (no defined feature/status flags) */
  520. /* ENDPOINT REQUESTS */
  521. case EndpointRequest | USB_REQ_GET_STATUS:
  522. // ENDPOINT_HALT flag
  523. tbuf [0] = 0;
  524. tbuf [1] = 0;
  525. len = 2;
  526. /* FALLTHROUGH */
  527. case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
  528. case EndpointOutRequest | USB_REQ_SET_FEATURE:
  529. dev_dbg (hcd->self.controller, "no endpoint features yet\n");
  530. break;
  531. /* CLASS REQUESTS (and errors) */
  532. default:
  533. nongeneric:
  534. /* non-generic request */
  535. switch (typeReq) {
  536. case GetHubStatus:
  537. case GetPortStatus:
  538. len = 4;
  539. break;
  540. case GetHubDescriptor:
  541. len = sizeof (struct usb_hub_descriptor);
  542. break;
  543. case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
  544. /* len is returned by hub_control */
  545. break;
  546. }
  547. status = hcd->driver->hub_control (hcd,
  548. typeReq, wValue, wIndex,
  549. tbuf, wLength);
  550. break;
  551. error:
  552. /* "protocol stall" on error */
  553. status = -EPIPE;
  554. }
  555. if (status < 0) {
  556. len = 0;
  557. if (status != -EPIPE) {
  558. dev_dbg (hcd->self.controller,
  559. "CTRL: TypeReq=0x%x val=0x%x "
  560. "idx=0x%x len=%d ==> %d\n",
  561. typeReq, wValue, wIndex,
  562. wLength, status);
  563. }
  564. } else if (status > 0) {
  565. /* hub_control may return the length of data copied. */
  566. len = status;
  567. status = 0;
  568. }
  569. if (len) {
  570. if (urb->transfer_buffer_length < len)
  571. len = urb->transfer_buffer_length;
  572. urb->actual_length = len;
  573. // always USB_DIR_IN, toward host
  574. memcpy (ubuf, bufp, len);
  575. /* report whether RH hardware supports remote wakeup */
  576. if (patch_wakeup &&
  577. len > offsetof (struct usb_config_descriptor,
  578. bmAttributes))
  579. ((struct usb_config_descriptor *)ubuf)->bmAttributes
  580. |= USB_CONFIG_ATT_WAKEUP;
  581. /* report whether RH hardware has an integrated TT */
  582. if (patch_protocol &&
  583. len > offsetof(struct usb_device_descriptor,
  584. bDeviceProtocol))
  585. ((struct usb_device_descriptor *) ubuf)->
  586. bDeviceProtocol = USB_HUB_PR_HS_SINGLE_TT;
  587. }
  588. /* any errors get returned through the urb completion */
  589. spin_lock_irq(&hcd_root_hub_lock);
  590. usb_hcd_unlink_urb_from_ep(hcd, urb);
  591. /* This peculiar use of spinlocks echoes what real HC drivers do.
  592. * Avoiding calls to local_irq_disable/enable makes the code
  593. * RT-friendly.
  594. */
  595. spin_unlock(&hcd_root_hub_lock);
  596. usb_hcd_giveback_urb(hcd, urb, status);
  597. spin_lock(&hcd_root_hub_lock);
  598. spin_unlock_irq(&hcd_root_hub_lock);
  599. return 0;
  600. }
  601. /*-------------------------------------------------------------------------*/
  602. /*
  603. * Root Hub interrupt transfers are polled using a timer if the
  604. * driver requests it; otherwise the driver is responsible for
  605. * calling usb_hcd_poll_rh_status() when an event occurs.
  606. *
  607. * Completions are called in_interrupt(), but they may or may not
  608. * be in_irq().
  609. */
  610. void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
  611. {
  612. struct urb *urb;
  613. int length;
  614. unsigned long flags;
  615. char buffer[6]; /* Any root hubs with > 31 ports? */
  616. if (unlikely(!hcd->rh_pollable))
  617. return;
  618. if (!hcd->uses_new_polling && !hcd->status_urb)
  619. return;
  620. length = hcd->driver->hub_status_data(hcd, buffer);
  621. if (length > 0) {
  622. /* try to complete the status urb */
  623. spin_lock_irqsave(&hcd_root_hub_lock, flags);
  624. urb = hcd->status_urb;
  625. if (urb) {
  626. clear_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
  627. hcd->status_urb = NULL;
  628. urb->actual_length = length;
  629. memcpy(urb->transfer_buffer, buffer, length);
  630. usb_hcd_unlink_urb_from_ep(hcd, urb);
  631. spin_unlock(&hcd_root_hub_lock);
  632. usb_hcd_giveback_urb(hcd, urb, 0);
  633. spin_lock(&hcd_root_hub_lock);
  634. } else {
  635. length = 0;
  636. set_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
  637. }
  638. spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
  639. }
  640. /* The USB 2.0 spec says 256 ms. This is close enough and won't
  641. * exceed that limit if HZ is 100. The math is more clunky than
  642. * maybe expected, this is to make sure that all timers for USB devices
  643. * fire at the same time to give the CPU a break in between */
  644. if (hcd->uses_new_polling ? HCD_POLL_RH(hcd) :
  645. (length == 0 && hcd->status_urb != NULL))
  646. mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
  647. }
  648. EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
  649. /* timer callback */
  650. static void rh_timer_func (unsigned long _hcd)
  651. {
  652. usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
  653. }
  654. /*-------------------------------------------------------------------------*/
  655. static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
  656. {
  657. int retval;
  658. unsigned long flags;
  659. unsigned len = 1 + (urb->dev->maxchild / 8);
  660. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  661. if (hcd->status_urb || urb->transfer_buffer_length < len) {
  662. dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
  663. retval = -EINVAL;
  664. goto done;
  665. }
  666. retval = usb_hcd_link_urb_to_ep(hcd, urb);
  667. if (retval)
  668. goto done;
  669. hcd->status_urb = urb;
  670. urb->hcpriv = hcd; /* indicate it's queued */
  671. if (!hcd->uses_new_polling)
  672. mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
  673. /* If a status change has already occurred, report it ASAP */
  674. else if (HCD_POLL_PENDING(hcd))
  675. mod_timer(&hcd->rh_timer, jiffies);
  676. retval = 0;
  677. done:
  678. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  679. return retval;
  680. }
  681. static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
  682. {
  683. if (usb_endpoint_xfer_int(&urb->ep->desc))
  684. return rh_queue_status (hcd, urb);
  685. if (usb_endpoint_xfer_control(&urb->ep->desc))
  686. return rh_call_control (hcd, urb);
  687. return -EINVAL;
  688. }
  689. /*-------------------------------------------------------------------------*/
  690. /* Unlinks of root-hub control URBs are legal, but they don't do anything
  691. * since these URBs always execute synchronously.
  692. */
  693. static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
  694. {
  695. unsigned long flags;
  696. int rc;
  697. spin_lock_irqsave(&hcd_root_hub_lock, flags);
  698. rc = usb_hcd_check_unlink_urb(hcd, urb, status);
  699. if (rc)
  700. goto done;
  701. if (usb_endpoint_num(&urb->ep->desc) == 0) { /* Control URB */
  702. ; /* Do nothing */
  703. } else { /* Status URB */
  704. if (!hcd->uses_new_polling)
  705. del_timer (&hcd->rh_timer);
  706. if (urb == hcd->status_urb) {
  707. hcd->status_urb = NULL;
  708. usb_hcd_unlink_urb_from_ep(hcd, urb);
  709. spin_unlock(&hcd_root_hub_lock);
  710. usb_hcd_giveback_urb(hcd, urb, status);
  711. spin_lock(&hcd_root_hub_lock);
  712. }
  713. }
  714. done:
  715. spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
  716. return rc;
  717. }
  718. /*
  719. * Show & store the current value of authorized_default
  720. */
  721. static ssize_t usb_host_authorized_default_show(struct device *dev,
  722. struct device_attribute *attr,
  723. char *buf)
  724. {
  725. struct usb_device *rh_usb_dev = to_usb_device(dev);
  726. struct usb_bus *usb_bus = rh_usb_dev->bus;
  727. struct usb_hcd *usb_hcd;
  728. if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
  729. return -ENODEV;
  730. usb_hcd = bus_to_hcd(usb_bus);
  731. return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default);
  732. }
  733. static ssize_t usb_host_authorized_default_store(struct device *dev,
  734. struct device_attribute *attr,
  735. const char *buf, size_t size)
  736. {
  737. ssize_t result;
  738. unsigned val;
  739. struct usb_device *rh_usb_dev = to_usb_device(dev);
  740. struct usb_bus *usb_bus = rh_usb_dev->bus;
  741. struct usb_hcd *usb_hcd;
  742. if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
  743. return -ENODEV;
  744. usb_hcd = bus_to_hcd(usb_bus);
  745. result = sscanf(buf, "%u\n", &val);
  746. if (result == 1) {
  747. usb_hcd->authorized_default = val? 1 : 0;
  748. result = size;
  749. }
  750. else
  751. result = -EINVAL;
  752. return result;
  753. }
  754. static DEVICE_ATTR(authorized_default, 0644,
  755. usb_host_authorized_default_show,
  756. usb_host_authorized_default_store);
  757. /* Group all the USB bus attributes */
  758. static struct attribute *usb_bus_attrs[] = {
  759. &dev_attr_authorized_default.attr,
  760. NULL,
  761. };
  762. static struct attribute_group usb_bus_attr_group = {
  763. .name = NULL, /* we want them in the same directory */
  764. .attrs = usb_bus_attrs,
  765. };
  766. /*-------------------------------------------------------------------------*/
  767. /**
  768. * usb_bus_init - shared initialization code
  769. * @bus: the bus structure being initialized
  770. *
  771. * This code is used to initialize a usb_bus structure, memory for which is
  772. * separately managed.
  773. */
  774. static void usb_bus_init (struct usb_bus *bus)
  775. {
  776. memset (&bus->devmap, 0, sizeof(struct usb_devmap));
  777. bus->devnum_next = 1;
  778. bus->root_hub = NULL;
  779. bus->busnum = -1;
  780. bus->bandwidth_allocated = 0;
  781. bus->bandwidth_int_reqs = 0;
  782. bus->bandwidth_isoc_reqs = 0;
  783. INIT_LIST_HEAD (&bus->bus_list);
  784. }
  785. /*-------------------------------------------------------------------------*/
  786. /**
  787. * usb_register_bus - registers the USB host controller with the usb core
  788. * @bus: pointer to the bus to register
  789. * Context: !in_interrupt()
  790. *
  791. * Assigns a bus number, and links the controller into usbcore data
  792. * structures so that it can be seen by scanning the bus list.
  793. */
  794. static int usb_register_bus(struct usb_bus *bus)
  795. {
  796. int result = -E2BIG;
  797. int busnum;
  798. mutex_lock(&usb_bus_list_lock);
  799. busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
  800. if (busnum >= USB_MAXBUS) {
  801. printk (KERN_ERR "%s: too many buses\n", usbcore_name);
  802. goto error_find_busnum;
  803. }
  804. set_bit (busnum, busmap.busmap);
  805. bus->busnum = busnum;
  806. /* Add it to the local list of buses */
  807. list_add (&bus->bus_list, &usb_bus_list);
  808. mutex_unlock(&usb_bus_list_lock);
  809. usb_notify_add_bus(bus);
  810. dev_info (bus->controller, "new USB bus registered, assigned bus "
  811. "number %d\n", bus->busnum);
  812. return 0;
  813. error_find_busnum:
  814. mutex_unlock(&usb_bus_list_lock);
  815. return result;
  816. }
  817. /**
  818. * usb_deregister_bus - deregisters the USB host controller
  819. * @bus: pointer to the bus to deregister
  820. * Context: !in_interrupt()
  821. *
  822. * Recycles the bus number, and unlinks the controller from usbcore data
  823. * structures so that it won't be seen by scanning the bus list.
  824. */
  825. static void usb_deregister_bus (struct usb_bus *bus)
  826. {
  827. dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
  828. /*
  829. * NOTE: make sure that all the devices are removed by the
  830. * controller code, as well as having it call this when cleaning
  831. * itself up
  832. */
  833. mutex_lock(&usb_bus_list_lock);
  834. list_del (&bus->bus_list);
  835. mutex_unlock(&usb_bus_list_lock);
  836. usb_notify_remove_bus(bus);
  837. clear_bit (bus->busnum, busmap.busmap);
  838. }
  839. /**
  840. * register_root_hub - called by usb_add_hcd() to register a root hub
  841. * @hcd: host controller for this root hub
  842. *
  843. * This function registers the root hub with the USB subsystem. It sets up
  844. * the device properly in the device tree and then calls usb_new_device()
  845. * to register the usb device. It also assigns the root hub's USB address
  846. * (always 1).
  847. */
  848. static int register_root_hub(struct usb_hcd *hcd)
  849. {
  850. struct device *parent_dev = hcd->self.controller;
  851. struct usb_device *usb_dev = hcd->self.root_hub;
  852. const int devnum = 1;
  853. int retval;
  854. usb_dev->devnum = devnum;
  855. usb_dev->bus->devnum_next = devnum + 1;
  856. memset (&usb_dev->bus->devmap.devicemap, 0,
  857. sizeof usb_dev->bus->devmap.devicemap);
  858. set_bit (devnum, usb_dev->bus->devmap.devicemap);
  859. usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
  860. mutex_lock(&usb_bus_list_lock);
  861. usb_dev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  862. retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
  863. if (retval != sizeof usb_dev->descriptor) {
  864. mutex_unlock(&usb_bus_list_lock);
  865. dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
  866. dev_name(&usb_dev->dev), retval);
  867. return (retval < 0) ? retval : -EMSGSIZE;
  868. }
  869. if (usb_dev->speed == USB_SPEED_SUPER) {
  870. retval = usb_get_bos_descriptor(usb_dev);
  871. if (retval < 0) {
  872. mutex_unlock(&usb_bus_list_lock);
  873. dev_dbg(parent_dev, "can't read %s bos descriptor %d\n",
  874. dev_name(&usb_dev->dev), retval);
  875. return retval;
  876. }
  877. }
  878. retval = usb_new_device (usb_dev);
  879. if (retval) {
  880. dev_err (parent_dev, "can't register root hub for %s, %d\n",
  881. dev_name(&usb_dev->dev), retval);
  882. } else {
  883. spin_lock_irq (&hcd_root_hub_lock);
  884. hcd->rh_registered = 1;
  885. spin_unlock_irq (&hcd_root_hub_lock);
  886. /* Did the HC die before the root hub was registered? */
  887. if (HCD_DEAD(hcd))
  888. usb_hc_died (hcd); /* This time clean up */
  889. }
  890. mutex_unlock(&usb_bus_list_lock);
  891. return retval;
  892. }
  893. /*-------------------------------------------------------------------------*/
  894. /**
  895. * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
  896. * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
  897. * @is_input: true iff the transaction sends data to the host
  898. * @isoc: true for isochronous transactions, false for interrupt ones
  899. * @bytecount: how many bytes in the transaction.
  900. *
  901. * Returns approximate bus time in nanoseconds for a periodic transaction.
  902. * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
  903. * scheduled in software, this function is only used for such scheduling.
  904. */
  905. long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
  906. {
  907. unsigned long tmp;
  908. switch (speed) {
  909. case USB_SPEED_LOW: /* INTR only */
  910. if (is_input) {
  911. tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
  912. return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  913. } else {
  914. tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
  915. return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
  916. }
  917. case USB_SPEED_FULL: /* ISOC or INTR */
  918. if (isoc) {
  919. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  920. return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
  921. } else {
  922. tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
  923. return (9107L + BW_HOST_DELAY + tmp);
  924. }
  925. case USB_SPEED_HIGH: /* ISOC or INTR */
  926. // FIXME adjust for input vs output
  927. if (isoc)
  928. tmp = HS_NSECS_ISO (bytecount);
  929. else
  930. tmp = HS_NSECS (bytecount);
  931. return tmp;
  932. default:
  933. pr_debug ("%s: bogus device speed!\n", usbcore_name);
  934. return -1;
  935. }
  936. }
  937. EXPORT_SYMBOL_GPL(usb_calc_bus_time);
  938. /*-------------------------------------------------------------------------*/
  939. /*
  940. * Generic HC operations.
  941. */
  942. /*-------------------------------------------------------------------------*/
  943. /**
  944. * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
  945. * @hcd: host controller to which @urb was submitted
  946. * @urb: URB being submitted
  947. *
  948. * Host controller drivers should call this routine in their enqueue()
  949. * method. The HCD's private spinlock must be held and interrupts must
  950. * be disabled. The actions carried out here are required for URB
  951. * submission, as well as for endpoint shutdown and for usb_kill_urb.
  952. *
  953. * Returns 0 for no error, otherwise a negative error code (in which case
  954. * the enqueue() method must fail). If no error occurs but enqueue() fails
  955. * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
  956. * the private spinlock and returning.
  957. */
  958. int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
  959. {
  960. int rc = 0;
  961. spin_lock(&hcd_urb_list_lock);
  962. /* Check that the URB isn't being killed */
  963. if (unlikely(atomic_read(&urb->reject))) {
  964. rc = -EPERM;
  965. goto done;
  966. }
  967. if (unlikely(!urb->ep->enabled)) {
  968. rc = -ENOENT;
  969. goto done;
  970. }
  971. if (unlikely(!urb->dev->can_submit)) {
  972. rc = -EHOSTUNREACH;
  973. goto done;
  974. }
  975. /*
  976. * Check the host controller's state and add the URB to the
  977. * endpoint's queue.
  978. */
  979. if (HCD_RH_RUNNING(hcd)) {
  980. urb->unlinked = 0;
  981. list_add_tail(&urb->urb_list, &urb->ep->urb_list);
  982. } else {
  983. rc = -ESHUTDOWN;
  984. goto done;
  985. }
  986. done:
  987. spin_unlock(&hcd_urb_list_lock);
  988. return rc;
  989. }
  990. EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
  991. /**
  992. * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
  993. * @hcd: host controller to which @urb was submitted
  994. * @urb: URB being checked for unlinkability
  995. * @status: error code to store in @urb if the unlink succeeds
  996. *
  997. * Host controller drivers should call this routine in their dequeue()
  998. * method. The HCD's private spinlock must be held and interrupts must
  999. * be disabled. The actions carried out here are required for making
  1000. * sure than an unlink is valid.
  1001. *
  1002. * Returns 0 for no error, otherwise a negative error code (in which case
  1003. * the dequeue() method must fail). The possible error codes are:
  1004. *
  1005. * -EIDRM: @urb was not submitted or has already completed.
  1006. * The completion function may not have been called yet.
  1007. *
  1008. * -EBUSY: @urb has already been unlinked.
  1009. */
  1010. int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
  1011. int status)
  1012. {
  1013. struct list_head *tmp;
  1014. /* insist the urb is still queued */
  1015. list_for_each(tmp, &urb->ep->urb_list) {
  1016. if (tmp == &urb->urb_list)
  1017. break;
  1018. }
  1019. if (tmp != &urb->urb_list)
  1020. return -EIDRM;
  1021. /* Any status except -EINPROGRESS means something already started to
  1022. * unlink this URB from the hardware. So there's no more work to do.
  1023. */
  1024. if (urb->unlinked)
  1025. return -EBUSY;
  1026. urb->unlinked = status;
  1027. return 0;
  1028. }
  1029. EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
  1030. /**
  1031. * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
  1032. * @hcd: host controller to which @urb was submitted
  1033. * @urb: URB being unlinked
  1034. *
  1035. * Host controller drivers should call this routine before calling
  1036. * usb_hcd_giveback_urb(). The HCD's private spinlock must be held and
  1037. * interrupts must be disabled. The actions carried out here are required
  1038. * for URB completion.
  1039. */
  1040. void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
  1041. {
  1042. /* clear all state linking urb to this dev (and hcd) */
  1043. spin_lock(&hcd_urb_list_lock);
  1044. list_del_init(&urb->urb_list);
  1045. spin_unlock(&hcd_urb_list_lock);
  1046. }
  1047. EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
  1048. /*
  1049. * Some usb host controllers can only perform dma using a small SRAM area.
  1050. * The usb core itself is however optimized for host controllers that can dma
  1051. * using regular system memory - like pci devices doing bus mastering.
  1052. *
  1053. * To support host controllers with limited dma capabilites we provide dma
  1054. * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
  1055. * For this to work properly the host controller code must first use the
  1056. * function dma_declare_coherent_memory() to point out which memory area
  1057. * that should be used for dma allocations.
  1058. *
  1059. * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
  1060. * dma using dma_alloc_coherent() which in turn allocates from the memory
  1061. * area pointed out with dma_declare_coherent_memory().
  1062. *
  1063. * So, to summarize...
  1064. *
  1065. * - We need "local" memory, canonical example being
  1066. * a small SRAM on a discrete controller being the
  1067. * only memory that the controller can read ...
  1068. * (a) "normal" kernel memory is no good, and
  1069. * (b) there's not enough to share
  1070. *
  1071. * - The only *portable* hook for such stuff in the
  1072. * DMA framework is dma_declare_coherent_memory()
  1073. *
  1074. * - So we use that, even though the primary requirement
  1075. * is that the memory be "local" (hence addressible
  1076. * by that device), not "coherent".
  1077. *
  1078. */
  1079. static int hcd_alloc_coherent(struct usb_bus *bus,
  1080. gfp_t mem_flags, dma_addr_t *dma_handle,
  1081. void **vaddr_handle, size_t size,
  1082. enum dma_data_direction dir)
  1083. {
  1084. unsigned char *vaddr;
  1085. if (*vaddr_handle == NULL) {
  1086. WARN_ON_ONCE(1);
  1087. return -EFAULT;
  1088. }
  1089. vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
  1090. mem_flags, dma_handle);
  1091. if (!vaddr)
  1092. return -ENOMEM;
  1093. /*
  1094. * Store the virtual address of the buffer at the end
  1095. * of the allocated dma buffer. The size of the buffer
  1096. * may be uneven so use unaligned functions instead
  1097. * of just rounding up. It makes sense to optimize for
  1098. * memory footprint over access speed since the amount
  1099. * of memory available for dma may be limited.
  1100. */
  1101. put_unaligned((unsigned long)*vaddr_handle,
  1102. (unsigned long *)(vaddr + size));
  1103. if (dir == DMA_TO_DEVICE)
  1104. memcpy(vaddr, *vaddr_handle, size);
  1105. *vaddr_handle = vaddr;
  1106. return 0;
  1107. }
  1108. static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
  1109. void **vaddr_handle, size_t size,
  1110. enum dma_data_direction dir)
  1111. {
  1112. unsigned char *vaddr = *vaddr_handle;
  1113. vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
  1114. if (dir == DMA_FROM_DEVICE)
  1115. memcpy(vaddr, *vaddr_handle, size);
  1116. hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
  1117. *vaddr_handle = vaddr;
  1118. *dma_handle = 0;
  1119. }
  1120. void usb_hcd_unmap_urb_setup_for_dma(struct usb_hcd *hcd, struct urb *urb)
  1121. {
  1122. if (urb->transfer_flags & URB_SETUP_MAP_SINGLE)
  1123. dma_unmap_single(hcd->self.controller,
  1124. urb->setup_dma,
  1125. sizeof(struct usb_ctrlrequest),
  1126. DMA_TO_DEVICE);
  1127. else if (urb->transfer_flags & URB_SETUP_MAP_LOCAL)
  1128. hcd_free_coherent(urb->dev->bus,
  1129. &urb->setup_dma,
  1130. (void **) &urb->setup_packet,
  1131. sizeof(struct usb_ctrlrequest),
  1132. DMA_TO_DEVICE);
  1133. /* Make it safe to call this routine more than once */
  1134. urb->transfer_flags &= ~(URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL);
  1135. }
  1136. EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_setup_for_dma);
  1137. static void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
  1138. {
  1139. if (hcd->driver->unmap_urb_for_dma)
  1140. hcd->driver->unmap_urb_for_dma(hcd, urb);
  1141. else
  1142. usb_hcd_unmap_urb_for_dma(hcd, urb);
  1143. }
  1144. void usb_hcd_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
  1145. {
  1146. enum dma_data_direction dir;
  1147. usb_hcd_unmap_urb_setup_for_dma(hcd, urb);
  1148. dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
  1149. if (urb->transfer_flags & URB_DMA_MAP_SG)
  1150. dma_unmap_sg(hcd->self.controller,
  1151. urb->sg,
  1152. urb->num_sgs,
  1153. dir);
  1154. else if (urb->transfer_flags & URB_DMA_MAP_PAGE)
  1155. dma_unmap_page(hcd->self.controller,
  1156. urb->transfer_dma,
  1157. urb->transfer_buffer_length,
  1158. dir);
  1159. else if (urb->transfer_flags & URB_DMA_MAP_SINGLE)
  1160. dma_unmap_single(hcd->self.controller,
  1161. urb->transfer_dma,
  1162. urb->transfer_buffer_length,
  1163. dir);
  1164. else if (urb->transfer_flags & URB_MAP_LOCAL)
  1165. hcd_free_coherent(urb->dev->bus,
  1166. &urb->transfer_dma,
  1167. &urb->transfer_buffer,
  1168. urb->transfer_buffer_length,
  1169. dir);
  1170. /* Make it safe to call this routine more than once */
  1171. urb->transfer_flags &= ~(URB_DMA_MAP_SG | URB_DMA_MAP_PAGE |
  1172. URB_DMA_MAP_SINGLE | URB_MAP_LOCAL);
  1173. }
  1174. EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_for_dma);
  1175. static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
  1176. gfp_t mem_flags)
  1177. {
  1178. if (hcd->driver->map_urb_for_dma)
  1179. return hcd->driver->map_urb_for_dma(hcd, urb, mem_flags);
  1180. else
  1181. return usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
  1182. }
  1183. int usb_hcd_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
  1184. gfp_t mem_flags)
  1185. {
  1186. enum dma_data_direction dir;
  1187. int ret = 0;
  1188. /* Map the URB's buffers for DMA access.
  1189. * Lower level HCD code should use *_dma exclusively,
  1190. * unless it uses pio or talks to another transport,
  1191. * or uses the provided scatter gather list for bulk.
  1192. */
  1193. if (usb_endpoint_xfer_control(&urb->ep->desc)) {
  1194. if (hcd->self.uses_pio_for_control)
  1195. return ret;
  1196. if (hcd->self.uses_dma) {
  1197. urb->setup_dma = dma_map_single(
  1198. hcd->self.controller,
  1199. urb->setup_packet,
  1200. sizeof(struct usb_ctrlrequest),
  1201. DMA_TO_DEVICE);
  1202. if (dma_mapping_error(hcd->self.controller,
  1203. urb->setup_dma))
  1204. return -EAGAIN;
  1205. urb->transfer_flags |= URB_SETUP_MAP_SINGLE;
  1206. } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
  1207. ret = hcd_alloc_coherent(
  1208. urb->dev->bus, mem_flags,
  1209. &urb->setup_dma,
  1210. (void **)&urb->setup_packet,
  1211. sizeof(struct usb_ctrlrequest),
  1212. DMA_TO_DEVICE);
  1213. if (ret)
  1214. return ret;
  1215. urb->transfer_flags |= URB_SETUP_MAP_LOCAL;
  1216. }
  1217. }
  1218. dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
  1219. if (urb->transfer_buffer_length != 0
  1220. && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
  1221. if (hcd->self.uses_dma) {
  1222. if (urb->num_sgs) {
  1223. int n;
  1224. /* We don't support sg for isoc transfers ! */
  1225. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1226. WARN_ON(1);
  1227. return -EINVAL;
  1228. }
  1229. n = dma_map_sg(
  1230. hcd->self.controller,
  1231. urb->sg,
  1232. urb->num_sgs,
  1233. dir);
  1234. if (n <= 0)
  1235. ret = -EAGAIN;
  1236. else
  1237. urb->transfer_flags |= URB_DMA_MAP_SG;
  1238. urb->num_mapped_sgs = n;
  1239. if (n != urb->num_sgs)
  1240. urb->transfer_flags |=
  1241. URB_DMA_SG_COMBINED;
  1242. } else if (urb->sg) {
  1243. struct scatterlist *sg = urb->sg;
  1244. urb->transfer_dma = dma_map_page(
  1245. hcd->self.controller,
  1246. sg_page(sg),
  1247. sg->offset,
  1248. urb->transfer_buffer_length,
  1249. dir);
  1250. if (dma_mapping_error(hcd->self.controller,
  1251. urb->transfer_dma))
  1252. ret = -EAGAIN;
  1253. else
  1254. urb->transfer_flags |= URB_DMA_MAP_PAGE;
  1255. } else {
  1256. urb->transfer_dma = dma_map_single(
  1257. hcd->self.controller,
  1258. urb->transfer_buffer,
  1259. urb->transfer_buffer_length,
  1260. dir);
  1261. if (dma_mapping_error(hcd->self.controller,
  1262. urb->transfer_dma))
  1263. ret = -EAGAIN;
  1264. else
  1265. urb->transfer_flags |= URB_DMA_MAP_SINGLE;
  1266. }
  1267. } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
  1268. ret = hcd_alloc_coherent(
  1269. urb->dev->bus, mem_flags,
  1270. &urb->transfer_dma,
  1271. &urb->transfer_buffer,
  1272. urb->transfer_buffer_length,
  1273. dir);
  1274. if (ret == 0)
  1275. urb->transfer_flags |= URB_MAP_LOCAL;
  1276. }
  1277. if (ret && (urb->transfer_flags & (URB_SETUP_MAP_SINGLE |
  1278. URB_SETUP_MAP_LOCAL)))
  1279. usb_hcd_unmap_urb_for_dma(hcd, urb);
  1280. }
  1281. return ret;
  1282. }
  1283. EXPORT_SYMBOL_GPL(usb_hcd_map_urb_for_dma);
  1284. /*-------------------------------------------------------------------------*/
  1285. /* may be called in any context with a valid urb->dev usecount
  1286. * caller surrenders "ownership" of urb
  1287. * expects usb_submit_urb() to have sanity checked and conditioned all
  1288. * inputs in the urb
  1289. */
  1290. int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
  1291. {
  1292. int status;
  1293. struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
  1294. /* increment urb's reference count as part of giving it to the HCD
  1295. * (which will control it). HCD guarantees that it either returns
  1296. * an error or calls giveback(), but not both.
  1297. */
  1298. usb_get_urb(urb);
  1299. atomic_inc(&urb->use_count);
  1300. atomic_inc(&urb->dev->urbnum);
  1301. usbmon_urb_submit(&hcd->self, urb);
  1302. /* NOTE requirements on root-hub callers (usbfs and the hub
  1303. * driver, for now): URBs' urb->transfer_buffer must be
  1304. * valid and usb_buffer_{sync,unmap}() not be needed, since
  1305. * they could clobber root hub response data. Also, control
  1306. * URBs must be submitted in process context with interrupts
  1307. * enabled.
  1308. */
  1309. if (is_root_hub(urb->dev)) {
  1310. status = rh_urb_enqueue(hcd, urb);
  1311. } else {
  1312. status = map_urb_for_dma(hcd, urb, mem_flags);
  1313. if (likely(status == 0)) {
  1314. status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
  1315. if (unlikely(status))
  1316. unmap_urb_for_dma(hcd, urb);
  1317. }
  1318. }
  1319. if (unlikely(status)) {
  1320. usbmon_urb_submit_error(&hcd->self, urb, status);
  1321. urb->hcpriv = NULL;
  1322. INIT_LIST_HEAD(&urb->urb_list);
  1323. atomic_dec(&urb->use_count);
  1324. atomic_dec(&urb->dev->urbnum);
  1325. if (atomic_read(&urb->reject))
  1326. wake_up(&usb_kill_urb_queue);
  1327. usb_put_urb(urb);
  1328. }
  1329. return status;
  1330. }
  1331. /*-------------------------------------------------------------------------*/
  1332. /* this makes the hcd giveback() the urb more quickly, by kicking it
  1333. * off hardware queues (which may take a while) and returning it as
  1334. * soon as practical. we've already set up the urb's return status,
  1335. * but we can't know if the callback completed already.
  1336. */
  1337. static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
  1338. {
  1339. int value;
  1340. if (is_root_hub(urb->dev))
  1341. value = usb_rh_urb_dequeue(hcd, urb, status);
  1342. else {
  1343. /* The only reason an HCD might fail this call is if
  1344. * it has not yet fully queued the urb to begin with.
  1345. * Such failures should be harmless. */
  1346. value = hcd->driver->urb_dequeue(hcd, urb, status);
  1347. }
  1348. return value;
  1349. }
  1350. /*
  1351. * called in any context
  1352. *
  1353. * caller guarantees urb won't be recycled till both unlink()
  1354. * and the urb's completion function return
  1355. */
  1356. int usb_hcd_unlink_urb (struct urb *urb, int status)
  1357. {
  1358. struct usb_hcd *hcd;
  1359. int retval = -EIDRM;
  1360. unsigned long flags;
  1361. /* Prevent the device and bus from going away while
  1362. * the unlink is carried out. If they are already gone
  1363. * then urb->use_count must be 0, since disconnected
  1364. * devices can't have any active URBs.
  1365. */
  1366. spin_lock_irqsave(&hcd_urb_unlink_lock, flags);
  1367. if (atomic_read(&urb->use_count) > 0) {
  1368. retval = 0;
  1369. usb_get_dev(urb->dev);
  1370. }
  1371. spin_unlock_irqrestore(&hcd_urb_unlink_lock, flags);
  1372. if (retval == 0) {
  1373. hcd = bus_to_hcd(urb->dev->bus);
  1374. retval = unlink1(hcd, urb, status);
  1375. usb_put_dev(urb->dev);
  1376. }
  1377. if (retval == 0)
  1378. retval = -EINPROGRESS;
  1379. else if (retval != -EIDRM && retval != -EBUSY)
  1380. dev_dbg(&urb->dev->dev, "hcd_unlink_urb %p fail %d\n",
  1381. urb, retval);
  1382. return retval;
  1383. }
  1384. /*-------------------------------------------------------------------------*/
  1385. /**
  1386. * usb_hcd_giveback_urb - return URB from HCD to device driver
  1387. * @hcd: host controller returning the URB
  1388. * @urb: urb being returned to the USB device driver.
  1389. * @status: completion status code for the URB.
  1390. * Context: in_interrupt()
  1391. *
  1392. * This hands the URB from HCD to its USB device driver, using its
  1393. * completion function. The HCD has freed all per-urb resources
  1394. * (and is done using urb->hcpriv). It also released all HCD locks;
  1395. * the device driver won't cause problems if it frees, modifies,
  1396. * or resubmits this URB.
  1397. *
  1398. * If @urb was unlinked, the value of @status will be overridden by
  1399. * @urb->unlinked. Erroneous short transfers are detected in case
  1400. * the HCD hasn't checked for them.
  1401. */
  1402. void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
  1403. {
  1404. urb->hcpriv = NULL;
  1405. if (unlikely(urb->unlinked))
  1406. status = urb->unlinked;
  1407. else if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
  1408. urb->actual_length < urb->transfer_buffer_length &&
  1409. !status))
  1410. status = -EREMOTEIO;
  1411. unmap_urb_for_dma(hcd, urb);
  1412. usbmon_urb_complete(&hcd->self, urb, status);
  1413. usb_unanchor_urb(urb);
  1414. /* pass ownership to the completion handler */
  1415. urb->status = status;
  1416. urb->complete (urb);
  1417. atomic_dec (&urb->use_count);
  1418. if (unlikely(atomic_read(&urb->reject)))
  1419. wake_up (&usb_kill_urb_queue);
  1420. usb_put_urb (urb);
  1421. }
  1422. EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
  1423. /*-------------------------------------------------------------------------*/
  1424. /* Cancel all URBs pending on this endpoint and wait for the endpoint's
  1425. * queue to drain completely. The caller must first insure that no more
  1426. * URBs can be submitted for this endpoint.
  1427. */
  1428. void usb_hcd_flush_endpoint(struct usb_device *udev,
  1429. struct usb_host_endpoint *ep)
  1430. {
  1431. struct usb_hcd *hcd;
  1432. struct urb *urb;
  1433. if (!ep)
  1434. return;
  1435. might_sleep();
  1436. hcd = bus_to_hcd(udev->bus);
  1437. /* No more submits can occur */
  1438. spin_lock_irq(&hcd_urb_list_lock);
  1439. rescan:
  1440. list_for_each_entry (urb, &ep->urb_list, urb_list) {
  1441. int is_in;
  1442. if (urb->unlinked)
  1443. continue;
  1444. usb_get_urb (urb);
  1445. is_in = usb_urb_dir_in(urb);
  1446. spin_unlock(&hcd_urb_list_lock);
  1447. /* kick hcd */
  1448. unlink1(hcd, urb, -ESHUTDOWN);
  1449. dev_dbg (hcd->self.controller,
  1450. "shutdown urb %p ep%d%s%s\n",
  1451. urb, usb_endpoint_num(&ep->desc),
  1452. is_in ? "in" : "out",
  1453. ({ char *s;
  1454. switch (usb_endpoint_type(&ep->desc)) {
  1455. case USB_ENDPOINT_XFER_CONTROL:
  1456. s = ""; break;
  1457. case USB_ENDPOINT_XFER_BULK:
  1458. s = "-bulk"; break;
  1459. case USB_ENDPOINT_XFER_INT:
  1460. s = "-intr"; break;
  1461. default:
  1462. s = "-iso"; break;
  1463. };
  1464. s;
  1465. }));
  1466. usb_put_urb (urb);
  1467. /* list contents may have changed */
  1468. spin_lock(&hcd_urb_list_lock);
  1469. goto rescan;
  1470. }
  1471. spin_unlock_irq(&hcd_urb_list_lock);
  1472. /* Wait until the endpoint queue is completely empty */
  1473. while (!list_empty (&ep->urb_list)) {
  1474. spin_lock_irq(&hcd_urb_list_lock);
  1475. /* The list may have changed while we acquired the spinlock */
  1476. urb = NULL;
  1477. if (!list_empty (&ep->urb_list)) {
  1478. urb = list_entry (ep->urb_list.prev, struct urb,
  1479. urb_list);
  1480. usb_get_urb (urb);
  1481. }
  1482. spin_unlock_irq(&hcd_urb_list_lock);
  1483. if (urb) {
  1484. usb_kill_urb (urb);
  1485. usb_put_urb (urb);
  1486. }
  1487. }
  1488. }
  1489. /**
  1490. * usb_hcd_alloc_bandwidth - check whether a new bandwidth setting exceeds
  1491. * the bus bandwidth
  1492. * @udev: target &usb_device
  1493. * @new_config: new configuration to install
  1494. * @cur_alt: the current alternate interface setting
  1495. * @new_alt: alternate interface setting that is being installed
  1496. *
  1497. * To change configurations, pass in the new configuration in new_config,
  1498. * and pass NULL for cur_alt and new_alt.
  1499. *
  1500. * To reset a device's configuration (put the device in the ADDRESSED state),
  1501. * pass in NULL for new_config, cur_alt, and new_alt.
  1502. *
  1503. * To change alternate interface settings, pass in NULL for new_config,
  1504. * pass in the current alternate interface setting in cur_alt,
  1505. * and pass in the new alternate interface setting in new_alt.
  1506. *
  1507. * Returns an error if the requested bandwidth change exceeds the
  1508. * bus bandwidth or host controller internal resources.
  1509. */
  1510. int usb_hcd_alloc_bandwidth(struct usb_device *udev,
  1511. struct usb_host_config *new_config,
  1512. struct usb_host_interface *cur_alt,
  1513. struct usb_host_interface *new_alt)
  1514. {
  1515. int num_intfs, i, j;
  1516. struct usb_host_interface *alt = NULL;
  1517. int ret = 0;
  1518. struct usb_hcd *hcd;
  1519. struct usb_host_endpoint *ep;
  1520. hcd = bus_to_hcd(udev->bus);
  1521. if (!hcd->driver->check_bandwidth)
  1522. return 0;
  1523. /* Configuration is being removed - set configuration 0 */
  1524. if (!new_config && !cur_alt) {
  1525. for (i = 1; i < 16; ++i) {
  1526. ep = udev->ep_out[i];
  1527. if (ep)
  1528. hcd->driver->drop_endpoint(hcd, udev, ep);
  1529. ep = udev->ep_in[i];
  1530. if (ep)
  1531. hcd->driver->drop_endpoint(hcd, udev, ep);
  1532. }
  1533. hcd->driver->check_bandwidth(hcd, udev);
  1534. return 0;
  1535. }
  1536. /* Check if the HCD says there's enough bandwidth. Enable all endpoints
  1537. * each interface's alt setting 0 and ask the HCD to check the bandwidth
  1538. * of the bus. There will always be bandwidth for endpoint 0, so it's
  1539. * ok to exclude it.
  1540. */
  1541. if (new_config) {
  1542. num_intfs = new_config->desc.bNumInterfaces;
  1543. /* Remove endpoints (except endpoint 0, which is always on the
  1544. * schedule) from the old config from the schedule
  1545. */
  1546. for (i = 1; i < 16; ++i) {
  1547. ep = udev->ep_out[i];
  1548. if (ep) {
  1549. ret = hcd->driver->drop_endpoint(hcd, udev, ep);
  1550. if (ret < 0)
  1551. goto reset;
  1552. }
  1553. ep = udev->ep_in[i];
  1554. if (ep) {
  1555. ret = hcd->driver->drop_endpoint(hcd, udev, ep);
  1556. if (ret < 0)
  1557. goto reset;
  1558. }
  1559. }
  1560. for (i = 0; i < num_intfs; ++i) {
  1561. struct usb_host_interface *first_alt;
  1562. int iface_num;
  1563. first_alt = &new_config->intf_cache[i]->altsetting[0];
  1564. iface_num = first_alt->desc.bInterfaceNumber;
  1565. /* Set up endpoints for alternate interface setting 0 */
  1566. alt = usb_find_alt_setting(new_config, iface_num, 0);
  1567. if (!alt)
  1568. /* No alt setting 0? Pick the first setting. */
  1569. alt = first_alt;
  1570. for (j = 0; j < alt->desc.bNumEndpoints; j++) {
  1571. ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]);
  1572. if (ret < 0)
  1573. goto reset;
  1574. }
  1575. }
  1576. }
  1577. if (cur_alt && new_alt) {
  1578. struct usb_interface *iface = usb_ifnum_to_if(udev,
  1579. cur_alt->desc.bInterfaceNumber);
  1580. if (!iface)
  1581. return -EINVAL;
  1582. if (iface->resetting_device) {
  1583. /*
  1584. * The USB core just reset the device, so the xHCI host
  1585. * and the device will think alt setting 0 is installed.
  1586. * However, the USB core will pass in the alternate
  1587. * setting installed before the reset as cur_alt. Dig
  1588. * out the alternate setting 0 structure, or the first
  1589. * alternate setting if a broken device doesn't have alt
  1590. * setting 0.
  1591. */
  1592. cur_alt = usb_altnum_to_altsetting(iface, 0);
  1593. if (!cur_alt)
  1594. cur_alt = &iface->altsetting[0];
  1595. }
  1596. /* Drop all the endpoints in the current alt setting */
  1597. for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) {
  1598. ret = hcd->driver->drop_endpoint(hcd, udev,
  1599. &cur_alt->endpoint[i]);
  1600. if (ret < 0)
  1601. goto reset;
  1602. }
  1603. /* Add all the endpoints in the new alt setting */
  1604. for (i = 0; i < new_alt->desc.bNumEndpoints; i++) {
  1605. ret = hcd->driver->add_endpoint(hcd, udev,
  1606. &new_alt->endpoint[i]);
  1607. if (ret < 0)
  1608. goto reset;
  1609. }
  1610. }
  1611. ret = hcd->driver->check_bandwidth(hcd, udev);
  1612. reset:
  1613. if (ret < 0)
  1614. hcd->driver->reset_bandwidth(hcd, udev);
  1615. return ret;
  1616. }
  1617. /* Disables the endpoint: synchronizes with the hcd to make sure all
  1618. * endpoint state is gone from hardware. usb_hcd_flush_endpoint() must
  1619. * have been called previously. Use for set_configuration, set_interface,
  1620. * driver removal, physical disconnect.
  1621. *
  1622. * example: a qh stored in ep->hcpriv, holding state related to endpoint
  1623. * type, maxpacket size, toggle, halt status, and scheduling.
  1624. */
  1625. void usb_hcd_disable_endpoint(struct usb_device *udev,
  1626. struct usb_host_endpoint *ep)
  1627. {
  1628. struct usb_hcd *hcd;
  1629. might_sleep();
  1630. hcd = bus_to_hcd(udev->bus);
  1631. if (hcd->driver->endpoint_disable)
  1632. hcd->driver->endpoint_disable(hcd, ep);
  1633. }
  1634. /**
  1635. * usb_hcd_reset_endpoint - reset host endpoint state
  1636. * @udev: USB device.
  1637. * @ep: the endpoint to reset.
  1638. *
  1639. * Resets any host endpoint state such as the toggle bit, sequence
  1640. * number and current window.
  1641. */
  1642. void usb_hcd_reset_endpoint(struct usb_device *udev,
  1643. struct usb_host_endpoint *ep)
  1644. {
  1645. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  1646. if (hcd->driver->endpoint_reset)
  1647. hcd->driver->endpoint_reset(hcd, ep);
  1648. else {
  1649. int epnum = usb_endpoint_num(&ep->desc);
  1650. int is_out = usb_endpoint_dir_out(&ep->desc);
  1651. int is_control = usb_endpoint_xfer_control(&ep->desc);
  1652. usb_settoggle(udev, epnum, is_out, 0);
  1653. if (is_control)
  1654. usb_settoggle(udev, epnum, !is_out, 0);
  1655. }
  1656. }
  1657. /**
  1658. * usb_alloc_streams - allocate bulk endpoint stream IDs.
  1659. * @interface: alternate setting that includes all endpoints.
  1660. * @eps: array of endpoints that need streams.
  1661. * @num_eps: number of endpoints in the array.
  1662. * @num_streams: number of streams to allocate.
  1663. * @mem_flags: flags hcd should use to allocate memory.
  1664. *
  1665. * Sets up a group of bulk endpoints to have num_streams stream IDs available.
  1666. * Drivers may queue multiple transfers to different stream IDs, which may
  1667. * complete in a different order than they were queued.
  1668. */
  1669. int usb_alloc_streams(struct usb_interface *interface,
  1670. struct usb_host_endpoint **eps, unsigned int num_eps,
  1671. unsigned int num_streams, gfp_t mem_flags)
  1672. {
  1673. struct usb_hcd *hcd;
  1674. struct usb_device *dev;
  1675. int i;
  1676. dev = interface_to_usbdev(interface);
  1677. hcd = bus_to_hcd(dev->bus);
  1678. if (!hcd->driver->alloc_streams || !hcd->driver->free_streams)
  1679. return -EINVAL;
  1680. if (dev->speed != USB_SPEED_SUPER)
  1681. return -EINVAL;
  1682. /* Streams only apply to bulk endpoints. */
  1683. for (i = 0; i < num_eps; i++)
  1684. if (!usb_endpoint_xfer_bulk(&eps[i]->desc))
  1685. return -EINVAL;
  1686. return hcd->driver->alloc_streams(hcd, dev, eps, num_eps,
  1687. num_streams, mem_flags);
  1688. }
  1689. EXPORT_SYMBOL_GPL(usb_alloc_streams);
  1690. /**
  1691. * usb_free_streams - free bulk endpoint stream IDs.
  1692. * @interface: alternate setting that includes all endpoints.
  1693. * @eps: array of endpoints to remove streams from.
  1694. * @num_eps: number of endpoints in the array.
  1695. * @mem_flags: flags hcd should use to allocate memory.
  1696. *
  1697. * Reverts a group of bulk endpoints back to not using stream IDs.
  1698. * Can fail if we are given bad arguments, or HCD is broken.
  1699. */
  1700. void usb_free_streams(struct usb_interface *interface,
  1701. struct usb_host_endpoint **eps, unsigned int num_eps,
  1702. gfp_t mem_flags)
  1703. {
  1704. struct usb_hcd *hcd;
  1705. struct usb_device *dev;
  1706. int i;
  1707. dev = interface_to_usbdev(interface);
  1708. hcd = bus_to_hcd(dev->bus);
  1709. if (dev->speed != USB_SPEED_SUPER)
  1710. return;
  1711. /* Streams only apply to bulk endpoints. */
  1712. for (i = 0; i < num_eps; i++)
  1713. if (!eps[i] || !usb_endpoint_xfer_bulk(&eps[i]->desc))
  1714. return;
  1715. hcd->driver->free_streams(hcd, dev, eps, num_eps, mem_flags);
  1716. }
  1717. EXPORT_SYMBOL_GPL(usb_free_streams);
  1718. /* Protect against drivers that try to unlink URBs after the device
  1719. * is gone, by waiting until all unlinks for @udev are finished.
  1720. * Since we don't currently track URBs by device, simply wait until
  1721. * nothing is running in the locked region of usb_hcd_unlink_urb().
  1722. */
  1723. void usb_hcd_synchronize_unlinks(struct usb_device *udev)
  1724. {
  1725. spin_lock_irq(&hcd_urb_unlink_lock);
  1726. spin_unlock_irq(&hcd_urb_unlink_lock);
  1727. }
  1728. /*-------------------------------------------------------------------------*/
  1729. /* called in any context */
  1730. int usb_hcd_get_frame_number (struct usb_device *udev)
  1731. {
  1732. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  1733. if (!HCD_RH_RUNNING(hcd))
  1734. return -ESHUTDOWN;
  1735. return hcd->driver->get_frame_number (hcd);
  1736. }
  1737. /*-------------------------------------------------------------------------*/
  1738. #ifdef CONFIG_PM
  1739. int hcd_bus_suspend(struct usb_device *rhdev, pm_message_t msg)
  1740. {
  1741. struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
  1742. int status;
  1743. int old_state = hcd->state;
  1744. dev_dbg(&rhdev->dev, "bus %ssuspend, wakeup %d\n",
  1745. (PMSG_IS_AUTO(msg) ? "auto-" : ""),
  1746. rhdev->do_remote_wakeup);
  1747. if (HCD_DEAD(hcd)) {
  1748. dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "suspend");
  1749. return 0;
  1750. }
  1751. if (!hcd->driver->bus_suspend) {
  1752. status = -ENOENT;
  1753. } else {
  1754. clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  1755. hcd->state = HC_STATE_QUIESCING;
  1756. status = hcd->driver->bus_suspend(hcd);
  1757. }
  1758. if (status == 0) {
  1759. usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
  1760. hcd->state = HC_STATE_SUSPENDED;
  1761. /* Did we race with a root-hub wakeup event? */
  1762. if (rhdev->do_remote_wakeup) {
  1763. char buffer[6];
  1764. status = hcd->driver->hub_status_data(hcd, buffer);
  1765. if (status != 0) {
  1766. dev_dbg(&rhdev->dev, "suspend raced with wakeup event\n");
  1767. hcd_bus_resume(rhdev, PMSG_AUTO_RESUME);
  1768. status = -EBUSY;
  1769. }
  1770. }
  1771. } else {
  1772. spin_lock_irq(&hcd_root_hub_lock);
  1773. if (!HCD_DEAD(hcd)) {
  1774. set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  1775. hcd->state = old_state;
  1776. }
  1777. spin_unlock_irq(&hcd_root_hub_lock);
  1778. dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
  1779. "suspend", status);
  1780. }
  1781. return status;
  1782. }
  1783. int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
  1784. {
  1785. struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
  1786. int status;
  1787. int old_state = hcd->state;
  1788. dev_dbg(&rhdev->dev, "usb %sresume\n",
  1789. (PMSG_IS_AUTO(msg) ? "auto-" : ""));
  1790. if (HCD_DEAD(hcd)) {
  1791. dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "resume");
  1792. return 0;
  1793. }
  1794. if (!hcd->driver->bus_resume)
  1795. return -ENOENT;
  1796. if (HCD_RH_RUNNING(hcd))
  1797. return 0;
  1798. hcd->state = HC_STATE_RESUMING;
  1799. status = hcd->driver->bus_resume(hcd);
  1800. clear_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
  1801. if (status == 0) {
  1802. struct usb_device *udev;
  1803. int port1;
  1804. spin_lock_irq(&hcd_root_hub_lock);
  1805. if (!HCD_DEAD(hcd)) {
  1806. usb_set_device_state(rhdev, rhdev->actconfig
  1807. ? USB_STATE_CONFIGURED
  1808. : USB_STATE_ADDRESS);
  1809. set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  1810. hcd->state = HC_STATE_RUNNING;
  1811. }
  1812. spin_unlock_irq(&hcd_root_hub_lock);
  1813. /*
  1814. * Check whether any of the enabled ports on the root hub are
  1815. * unsuspended. If they are then a TRSMRCY delay is needed
  1816. * (this is what the USB-2 spec calls a "global resume").
  1817. * Otherwise we can skip the delay.
  1818. */
  1819. usb_hub_for_each_child(rhdev, port1, udev) {
  1820. if (udev->state != USB_STATE_NOTATTACHED &&
  1821. !udev->port_is_suspended) {
  1822. usleep_range(10000, 11000); /* TRSMRCY */
  1823. break;
  1824. }
  1825. }
  1826. } else {
  1827. hcd->state = old_state;
  1828. dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
  1829. "resume", status);
  1830. if (status != -ESHUTDOWN)
  1831. usb_hc_died(hcd);
  1832. }
  1833. return status;
  1834. }
  1835. #endif /* CONFIG_PM */
  1836. #ifdef CONFIG_USB_SUSPEND
  1837. /* Workqueue routine for root-hub remote wakeup */
  1838. static void hcd_resume_work(struct work_struct *work)
  1839. {
  1840. struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
  1841. struct usb_device *udev = hcd->self.root_hub;
  1842. usb_lock_device(udev);
  1843. usb_remote_wakeup(udev);
  1844. usb_unlock_device(udev);
  1845. }
  1846. /**
  1847. * usb_hcd_resume_root_hub - called by HCD to resume its root hub
  1848. * @hcd: host controller for this root hub
  1849. *
  1850. * The USB host controller calls this function when its root hub is
  1851. * suspended (with the remote wakeup feature enabled) and a remote
  1852. * wakeup request is received. The routine submits a workqueue request
  1853. * to resume the root hub (that is, manage its downstream ports again).
  1854. */
  1855. void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
  1856. {
  1857. unsigned long flags;
  1858. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1859. if (hcd->rh_registered) {
  1860. set_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
  1861. queue_work(pm_wq, &hcd->wakeup_work);
  1862. }
  1863. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1864. }
  1865. EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
  1866. #endif /* CONFIG_USB_SUSPEND */
  1867. /*-------------------------------------------------------------------------*/
  1868. #ifdef CONFIG_USB_OTG
  1869. /**
  1870. * usb_bus_start_enum - start immediate enumeration (for OTG)
  1871. * @bus: the bus (must use hcd framework)
  1872. * @port_num: 1-based number of port; usually bus->otg_port
  1873. * Context: in_interrupt()
  1874. *
  1875. * Starts enumeration, with an immediate reset followed later by
  1876. * khubd identifying and possibly configuring the device.
  1877. * This is needed by OTG controller drivers, where it helps meet
  1878. * HNP protocol timing requirements for starting a port reset.
  1879. */
  1880. int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
  1881. {
  1882. struct usb_hcd *hcd;
  1883. int status = -EOPNOTSUPP;
  1884. /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
  1885. * boards with root hubs hooked up to internal devices (instead of
  1886. * just the OTG port) may need more attention to resetting...
  1887. */
  1888. hcd = container_of (bus, struct usb_hcd, self);
  1889. if (port_num && hcd->driver->start_port_reset)
  1890. status = hcd->driver->start_port_reset(hcd, port_num);
  1891. /* run khubd shortly after (first) root port reset finishes;
  1892. * it may issue others, until at least 50 msecs have passed.
  1893. */
  1894. if (status == 0)
  1895. mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
  1896. return status;
  1897. }
  1898. EXPORT_SYMBOL_GPL(usb_bus_start_enum);
  1899. #endif
  1900. /*-------------------------------------------------------------------------*/
  1901. /**
  1902. * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
  1903. * @irq: the IRQ being raised
  1904. * @__hcd: pointer to the HCD whose IRQ is being signaled
  1905. *
  1906. * If the controller isn't HALTed, calls the driver's irq handler.
  1907. * Checks whether the controller is now dead.
  1908. */
  1909. irqreturn_t usb_hcd_irq (int irq, void *__hcd)
  1910. {
  1911. struct usb_hcd *hcd = __hcd;
  1912. unsigned long flags;
  1913. irqreturn_t rc;
  1914. /* IRQF_DISABLED doesn't work correctly with shared IRQs
  1915. * when the first handler doesn't use it. So let's just
  1916. * assume it's never used.
  1917. */
  1918. local_irq_save(flags);
  1919. if (unlikely(HCD_DEAD(hcd) || !HCD_HW_ACCESSIBLE(hcd)))
  1920. rc = IRQ_NONE;
  1921. else if (hcd->driver->irq(hcd) == IRQ_NONE)
  1922. rc = IRQ_NONE;
  1923. else
  1924. rc = IRQ_HANDLED;
  1925. local_irq_restore(flags);
  1926. return rc;
  1927. }
  1928. EXPORT_SYMBOL_GPL(usb_hcd_irq);
  1929. /*-------------------------------------------------------------------------*/
  1930. /**
  1931. * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
  1932. * @hcd: pointer to the HCD representing the controller
  1933. *
  1934. * This is called by bus glue to report a USB host controller that died
  1935. * while operations may still have been pending. It's called automatically
  1936. * by the PCI glue, so only glue for non-PCI busses should need to call it.
  1937. *
  1938. * Only call this function with the primary HCD.
  1939. */
  1940. void usb_hc_died (struct usb_hcd *hcd)
  1941. {
  1942. unsigned long flags;
  1943. dev_err (hcd->self.controller, "HC died; cleaning up\n");
  1944. spin_lock_irqsave (&hcd_root_hub_lock, flags);
  1945. clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  1946. set_bit(HCD_FLAG_DEAD, &hcd->flags);
  1947. if (hcd->rh_registered) {
  1948. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  1949. /* make khubd clean up old urbs and devices */
  1950. usb_set_device_state (hcd->self.root_hub,
  1951. USB_STATE_NOTATTACHED);
  1952. usb_kick_khubd (hcd->self.root_hub);
  1953. }
  1954. if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) {
  1955. hcd = hcd->shared_hcd;
  1956. if (hcd->rh_registered) {
  1957. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  1958. /* make khubd clean up old urbs and devices */
  1959. usb_set_device_state(hcd->self.root_hub,
  1960. USB_STATE_NOTATTACHED);
  1961. usb_kick_khubd(hcd->self.root_hub);
  1962. }
  1963. }
  1964. spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
  1965. /* Make sure that the other roothub is also deallocated. */
  1966. }
  1967. EXPORT_SYMBOL_GPL (usb_hc_died);
  1968. /*-------------------------------------------------------------------------*/
  1969. /**
  1970. * usb_create_shared_hcd - create and initialize an HCD structure
  1971. * @driver: HC driver that will use this hcd
  1972. * @dev: device for this HC, stored in hcd->self.controller
  1973. * @bus_name: value to store in hcd->self.bus_name
  1974. * @primary_hcd: a pointer to the usb_hcd structure that is sharing the
  1975. * PCI device. Only allocate certain resources for the primary HCD
  1976. * Context: !in_interrupt()
  1977. *
  1978. * Allocate a struct usb_hcd, with extra space at the end for the
  1979. * HC driver's private data. Initialize the generic members of the
  1980. * hcd structure.
  1981. *
  1982. * If memory is unavailable, returns NULL.
  1983. */
  1984. struct usb_hcd *usb_create_shared_hcd(const struct hc_driver *driver,
  1985. struct device *dev, const char *bus_name,
  1986. struct usb_hcd *primary_hcd)
  1987. {
  1988. struct usb_hcd *hcd;
  1989. hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
  1990. if (!hcd) {
  1991. dev_dbg (dev, "hcd alloc failed\n");
  1992. return NULL;
  1993. }
  1994. if (primary_hcd == NULL) {
  1995. hcd->bandwidth_mutex = kmalloc(sizeof(*hcd->bandwidth_mutex),
  1996. GFP_KERNEL);
  1997. if (!hcd->bandwidth_mutex) {
  1998. kfree(hcd);
  1999. dev_dbg(dev, "hcd bandwidth mutex alloc failed\n");
  2000. return NULL;
  2001. }
  2002. mutex_init(hcd->bandwidth_mutex);
  2003. dev_set_drvdata(dev, hcd);
  2004. } else {
  2005. hcd->bandwidth_mutex = primary_hcd->bandwidth_mutex;
  2006. hcd->primary_hcd = primary_hcd;
  2007. primary_hcd->primary_hcd = primary_hcd;
  2008. hcd->shared_hcd = primary_hcd;
  2009. primary_hcd->shared_hcd = hcd;
  2010. }
  2011. kref_init(&hcd->kref);
  2012. usb_bus_init(&hcd->self);
  2013. hcd->self.controller = dev;
  2014. hcd->self.bus_name = bus_name;
  2015. hcd->self.uses_dma = (dev->dma_mask != NULL);
  2016. init_timer(&hcd->rh_timer);
  2017. hcd->rh_timer.function = rh_timer_func;
  2018. hcd->rh_timer.data = (unsigned long) hcd;
  2019. #ifdef CONFIG_USB_SUSPEND
  2020. INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
  2021. #endif
  2022. hcd->driver = driver;
  2023. hcd->speed = driver->flags & HCD_MASK;
  2024. hcd->product_desc = (driver->product_desc) ? driver->product_desc :
  2025. "USB Host Controller";
  2026. return hcd;
  2027. }
  2028. EXPORT_SYMBOL_GPL(usb_create_shared_hcd);
  2029. /**
  2030. * usb_create_hcd - create and initialize an HCD structure
  2031. * @driver: HC driver that will use this hcd
  2032. * @dev: device for this HC, stored in hcd->self.controller
  2033. * @bus_name: value to store in hcd->self.bus_name
  2034. * Context: !in_interrupt()
  2035. *
  2036. * Allocate a struct usb_hcd, with extra space at the end for the
  2037. * HC driver's private data. Initialize the generic members of the
  2038. * hcd structure.
  2039. *
  2040. * If memory is unavailable, returns NULL.
  2041. */
  2042. struct usb_hcd *usb_create_hcd(const struct hc_driver *driver,
  2043. struct device *dev, const char *bus_name)
  2044. {
  2045. return usb_create_shared_hcd(driver, dev, bus_name, NULL);
  2046. }
  2047. EXPORT_SYMBOL_GPL(usb_create_hcd);
  2048. /*
  2049. * Roothubs that share one PCI device must also share the bandwidth mutex.
  2050. * Don't deallocate the bandwidth_mutex until the last shared usb_hcd is
  2051. * deallocated.
  2052. *
  2053. * Make sure to only deallocate the bandwidth_mutex when the primary HCD is
  2054. * freed. When hcd_release() is called for the non-primary HCD, set the
  2055. * primary_hcd's shared_hcd pointer to null (since the non-primary HCD will be
  2056. * freed shortly).
  2057. */
  2058. static void hcd_release (struct kref *kref)
  2059. {
  2060. struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
  2061. if (usb_hcd_is_primary_hcd(hcd))
  2062. kfree(hcd->bandwidth_mutex);
  2063. else
  2064. hcd->shared_hcd->shared_hcd = NULL;
  2065. kfree(hcd);
  2066. }
  2067. struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
  2068. {
  2069. if (hcd)
  2070. kref_get (&hcd->kref);
  2071. return hcd;
  2072. }
  2073. EXPORT_SYMBOL_GPL(usb_get_hcd);
  2074. void usb_put_hcd (struct usb_hcd *hcd)
  2075. {
  2076. if (hcd)
  2077. kref_put (&hcd->kref, hcd_release);
  2078. }
  2079. EXPORT_SYMBOL_GPL(usb_put_hcd);
  2080. int usb_hcd_is_primary_hcd(struct usb_hcd *hcd)
  2081. {
  2082. if (!hcd->primary_hcd)
  2083. return 1;
  2084. return hcd == hcd->primary_hcd;
  2085. }
  2086. EXPORT_SYMBOL_GPL(usb_hcd_is_primary_hcd);
  2087. static int usb_hcd_request_irqs(struct usb_hcd *hcd,
  2088. unsigned int irqnum, unsigned long irqflags)
  2089. {
  2090. int retval;
  2091. if (hcd->driver->irq) {
  2092. /* IRQF_DISABLED doesn't work as advertised when used together
  2093. * with IRQF_SHARED. As usb_hcd_irq() will always disable
  2094. * interrupts we can remove it here.
  2095. */
  2096. if (irqflags & IRQF_SHARED)
  2097. irqflags &= ~IRQF_DISABLED;
  2098. snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
  2099. hcd->driver->description, hcd->self.busnum);
  2100. retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
  2101. hcd->irq_descr, hcd);
  2102. if (retval != 0) {
  2103. dev_err(hcd->self.controller,
  2104. "request interrupt %d failed\n",
  2105. irqnum);
  2106. return retval;
  2107. }
  2108. hcd->irq = irqnum;
  2109. dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
  2110. (hcd->driver->flags & HCD_MEMORY) ?
  2111. "io mem" : "io base",
  2112. (unsigned long long)hcd->rsrc_start);
  2113. } else {
  2114. hcd->irq = 0;
  2115. if (hcd->rsrc_start)
  2116. dev_info(hcd->self.controller, "%s 0x%08llx\n",
  2117. (hcd->driver->flags & HCD_MEMORY) ?
  2118. "io mem" : "io base",
  2119. (unsigned long long)hcd->rsrc_start);
  2120. }
  2121. return 0;
  2122. }
  2123. /**
  2124. * usb_add_hcd - finish generic HCD structure initialization and register
  2125. * @hcd: the usb_hcd structure to initialize
  2126. * @irqnum: Interrupt line to allocate
  2127. * @irqflags: Interrupt type flags
  2128. *
  2129. * Finish the remaining parts of generic HCD initialization: allocate the
  2130. * buffers of consistent memory, register the bus, request the IRQ line,
  2131. * and call the driver's reset() and start() routines.
  2132. */
  2133. int usb_add_hcd(struct usb_hcd *hcd,
  2134. unsigned int irqnum, unsigned long irqflags)
  2135. {
  2136. int retval;
  2137. struct usb_device *rhdev;
  2138. dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
  2139. /* Keep old behaviour if authorized_default is not in [0, 1]. */
  2140. if (authorized_default < 0 || authorized_default > 1)
  2141. hcd->authorized_default = hcd->wireless? 0 : 1;
  2142. else
  2143. hcd->authorized_default = authorized_default;
  2144. set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
  2145. /* HC is in reset state, but accessible. Now do the one-time init,
  2146. * bottom up so that hcds can customize the root hubs before khubd
  2147. * starts talking to them. (Note, bus id is assigned early too.)
  2148. */
  2149. if ((retval = hcd_buffer_create(hcd)) != 0) {
  2150. dev_dbg(hcd->self.controller, "pool alloc failed\n");
  2151. return retval;
  2152. }
  2153. if ((retval = usb_register_bus(&hcd->self)) < 0)
  2154. goto err_register_bus;
  2155. if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
  2156. dev_err(hcd->self.controller, "unable to allocate root hub\n");
  2157. retval = -ENOMEM;
  2158. goto err_allocate_root_hub;
  2159. }
  2160. hcd->self.root_hub = rhdev;
  2161. switch (hcd->speed) {
  2162. case HCD_USB11:
  2163. rhdev->speed = USB_SPEED_FULL;
  2164. break;
  2165. case HCD_USB2:
  2166. rhdev->speed = USB_SPEED_HIGH;
  2167. break;
  2168. case HCD_USB3:
  2169. rhdev->speed = USB_SPEED_SUPER;
  2170. break;
  2171. default:
  2172. retval = -EINVAL;
  2173. goto err_set_rh_speed;
  2174. }
  2175. /* wakeup flag init defaults to "everything works" for root hubs,
  2176. * but drivers can override it in reset() if needed, along with
  2177. * recording the overall controller's system wakeup capability.
  2178. */
  2179. device_set_wakeup_capable(&rhdev->dev, 1);
  2180. /* HCD_FLAG_RH_RUNNING doesn't matter until the root hub is
  2181. * registered. But since the controller can die at any time,
  2182. * let's initialize the flag before touching the hardware.
  2183. */
  2184. set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  2185. /* "reset" is misnamed; its role is now one-time init. the controller
  2186. * should already have been reset (and boot firmware kicked off etc).
  2187. */
  2188. if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
  2189. dev_err(hcd->self.controller, "can't setup\n");
  2190. goto err_hcd_driver_setup;
  2191. }
  2192. hcd->rh_pollable = 1;
  2193. /* NOTE: root hub and controller capabilities may not be the same */
  2194. if (device_can_wakeup(hcd->self.controller)
  2195. && device_can_wakeup(&hcd->self.root_hub->dev))
  2196. dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
  2197. /* enable irqs just before we start the controller,
  2198. * if the BIOS provides legacy PCI irqs.
  2199. */
  2200. if (usb_hcd_is_primary_hcd(hcd) && irqnum) {
  2201. retval = usb_hcd_request_irqs(hcd, irqnum, irqflags);
  2202. if (retval)
  2203. goto err_request_irq;
  2204. }
  2205. hcd->state = HC_STATE_RUNNING;
  2206. retval = hcd->driver->start(hcd);
  2207. if (retval < 0) {
  2208. dev_err(hcd->self.controller, "startup error %d\n", retval);
  2209. goto err_hcd_driver_start;
  2210. }
  2211. /* starting here, usbcore will pay attention to this root hub */
  2212. rhdev->bus_mA = min(500u, hcd->power_budget);
  2213. if ((retval = register_root_hub(hcd)) != 0)
  2214. goto err_register_root_hub;
  2215. retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
  2216. if (retval < 0) {
  2217. printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
  2218. retval);
  2219. goto error_create_attr_group;
  2220. }
  2221. if (hcd->uses_new_polling && HCD_POLL_RH(hcd))
  2222. usb_hcd_poll_rh_status(hcd);
  2223. /*
  2224. * Host controllers don't generate their own wakeup requests;
  2225. * they only forward requests from the root hub. Therefore
  2226. * controllers should always be enabled for remote wakeup.
  2227. */
  2228. device_wakeup_enable(hcd->self.controller);
  2229. return retval;
  2230. error_create_attr_group:
  2231. clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  2232. if (HC_IS_RUNNING(hcd->state))
  2233. hcd->state = HC_STATE_QUIESCING;
  2234. spin_lock_irq(&hcd_root_hub_lock);
  2235. hcd->rh_registered = 0;
  2236. spin_unlock_irq(&hcd_root_hub_lock);
  2237. #ifdef CONFIG_USB_SUSPEND
  2238. cancel_work_sync(&hcd->wakeup_work);
  2239. #endif
  2240. mutex_lock(&usb_bus_list_lock);
  2241. usb_disconnect(&rhdev); /* Sets rhdev to NULL */
  2242. mutex_unlock(&usb_bus_list_lock);
  2243. err_register_root_hub:
  2244. hcd->rh_pollable = 0;
  2245. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  2246. del_timer_sync(&hcd->rh_timer);
  2247. hcd->driver->stop(hcd);
  2248. hcd->state = HC_STATE_HALT;
  2249. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  2250. del_timer_sync(&hcd->rh_timer);
  2251. err_hcd_driver_start:
  2252. if (usb_hcd_is_primary_hcd(hcd) && hcd->irq > 0)
  2253. free_irq(irqnum, hcd);
  2254. err_request_irq:
  2255. err_hcd_driver_setup:
  2256. err_set_rh_speed:
  2257. usb_put_dev(hcd->self.root_hub);
  2258. err_allocate_root_hub:
  2259. usb_deregister_bus(&hcd->self);
  2260. err_register_bus:
  2261. hcd_buffer_destroy(hcd);
  2262. return retval;
  2263. }
  2264. EXPORT_SYMBOL_GPL(usb_add_hcd);
  2265. /**
  2266. * usb_remove_hcd - shutdown processing for generic HCDs
  2267. * @hcd: the usb_hcd structure to remove
  2268. * Context: !in_interrupt()
  2269. *
  2270. * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
  2271. * invoking the HCD's stop() method.
  2272. */
  2273. void usb_remove_hcd(struct usb_hcd *hcd)
  2274. {
  2275. struct usb_device *rhdev = hcd->self.root_hub;
  2276. dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
  2277. usb_get_dev(rhdev);
  2278. sysfs_remove_group(&rhdev->dev.kobj, &usb_bus_attr_group);
  2279. clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
  2280. if (HC_IS_RUNNING (hcd->state))
  2281. hcd->state = HC_STATE_QUIESCING;
  2282. dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
  2283. spin_lock_irq (&hcd_root_hub_lock);
  2284. hcd->rh_registered = 0;
  2285. spin_unlock_irq (&hcd_root_hub_lock);
  2286. #ifdef CONFIG_USB_SUSPEND
  2287. cancel_work_sync(&hcd->wakeup_work);
  2288. #endif
  2289. mutex_lock(&usb_bus_list_lock);
  2290. usb_disconnect(&rhdev); /* Sets rhdev to NULL */
  2291. mutex_unlock(&usb_bus_list_lock);
  2292. /* Prevent any more root-hub status calls from the timer.
  2293. * The HCD might still restart the timer (if a port status change
  2294. * interrupt occurs), but usb_hcd_poll_rh_status() won't invoke
  2295. * the hub_status_data() callback.
  2296. */
  2297. hcd->rh_pollable = 0;
  2298. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  2299. del_timer_sync(&hcd->rh_timer);
  2300. hcd->driver->stop(hcd);
  2301. hcd->state = HC_STATE_HALT;
  2302. /* In case the HCD restarted the timer, stop it again. */
  2303. clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
  2304. del_timer_sync(&hcd->rh_timer);
  2305. if (usb_hcd_is_primary_hcd(hcd)) {
  2306. if (hcd->irq > 0)
  2307. free_irq(hcd->irq, hcd);
  2308. }
  2309. usb_put_dev(hcd->self.root_hub);
  2310. usb_deregister_bus(&hcd->self);
  2311. hcd_buffer_destroy(hcd);
  2312. }
  2313. EXPORT_SYMBOL_GPL(usb_remove_hcd);
  2314. void
  2315. usb_hcd_platform_shutdown(struct platform_device* dev)
  2316. {
  2317. struct usb_hcd *hcd = platform_get_drvdata(dev);
  2318. if (hcd->driver->shutdown)
  2319. hcd->driver->shutdown(hcd);
  2320. }
  2321. EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
  2322. /*-------------------------------------------------------------------------*/
  2323. #if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE)
  2324. struct usb_mon_operations *mon_ops;
  2325. /*
  2326. * The registration is unlocked.
  2327. * We do it this way because we do not want to lock in hot paths.
  2328. *
  2329. * Notice that the code is minimally error-proof. Because usbmon needs
  2330. * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
  2331. */
  2332. int usb_mon_register (struct usb_mon_operations *ops)
  2333. {
  2334. if (mon_ops)
  2335. return -EBUSY;
  2336. mon_ops = ops;
  2337. mb();
  2338. return 0;
  2339. }
  2340. EXPORT_SYMBOL_GPL (usb_mon_register);
  2341. void usb_mon_deregister (void)
  2342. {
  2343. if (mon_ops == NULL) {
  2344. printk(KERN_ERR "USB: monitor was not registered\n");
  2345. return;
  2346. }
  2347. mon_ops = NULL;
  2348. mb();
  2349. }
  2350. EXPORT_SYMBOL_GPL (usb_mon_deregister);
  2351. #endif /* CONFIG_USB_MON || CONFIG_USB_MON_MODULE */