hcd.c 77 KB

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