vhci_hcd.c 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2003-2008 Takahiro Hirofuchi
  4. * Copyright (C) 2015-2016 Nobuo Iwata
  5. */
  6. #include <linux/init.h>
  7. #include <linux/file.h>
  8. #include <linux/kernel.h>
  9. #include <linux/kthread.h>
  10. #include <linux/module.h>
  11. #include <linux/platform_device.h>
  12. #include <linux/slab.h>
  13. #include "usbip_common.h"
  14. #include "vhci.h"
  15. #define DRIVER_AUTHOR "Takahiro Hirofuchi"
  16. #define DRIVER_DESC "USB/IP 'Virtual' Host Controller (VHCI) Driver"
  17. /*
  18. * TODO
  19. * - update root hub emulation
  20. * - move the emulation code to userland ?
  21. * porting to other operating systems
  22. * minimize kernel code
  23. * - add suspend/resume code
  24. * - clean up everything
  25. */
  26. /* See usb gadget dummy hcd */
  27. static int vhci_hub_status(struct usb_hcd *hcd, char *buff);
  28. static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
  29. u16 wIndex, char *buff, u16 wLength);
  30. static int vhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
  31. gfp_t mem_flags);
  32. static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status);
  33. static int vhci_start(struct usb_hcd *vhci_hcd);
  34. static void vhci_stop(struct usb_hcd *hcd);
  35. static int vhci_get_frame_number(struct usb_hcd *hcd);
  36. static const char driver_name[] = "vhci_hcd";
  37. static const char driver_desc[] = "USB/IP Virtual Host Controller";
  38. int vhci_num_controllers = VHCI_NR_HCS;
  39. struct vhci *vhcis;
  40. static const char * const bit_desc[] = {
  41. "CONNECTION", /*0*/
  42. "ENABLE", /*1*/
  43. "SUSPEND", /*2*/
  44. "OVER_CURRENT", /*3*/
  45. "RESET", /*4*/
  46. "L1", /*5*/
  47. "R6", /*6*/
  48. "R7", /*7*/
  49. "POWER", /*8*/
  50. "LOWSPEED", /*9*/
  51. "HIGHSPEED", /*10*/
  52. "PORT_TEST", /*11*/
  53. "INDICATOR", /*12*/
  54. "R13", /*13*/
  55. "R14", /*14*/
  56. "R15", /*15*/
  57. "C_CONNECTION", /*16*/
  58. "C_ENABLE", /*17*/
  59. "C_SUSPEND", /*18*/
  60. "C_OVER_CURRENT", /*19*/
  61. "C_RESET", /*20*/
  62. "C_L1", /*21*/
  63. "R22", /*22*/
  64. "R23", /*23*/
  65. "R24", /*24*/
  66. "R25", /*25*/
  67. "R26", /*26*/
  68. "R27", /*27*/
  69. "R28", /*28*/
  70. "R29", /*29*/
  71. "R30", /*30*/
  72. "R31", /*31*/
  73. };
  74. static const char * const bit_desc_ss[] = {
  75. "CONNECTION", /*0*/
  76. "ENABLE", /*1*/
  77. "SUSPEND", /*2*/
  78. "OVER_CURRENT", /*3*/
  79. "RESET", /*4*/
  80. "L1", /*5*/
  81. "R6", /*6*/
  82. "R7", /*7*/
  83. "R8", /*8*/
  84. "POWER", /*9*/
  85. "HIGHSPEED", /*10*/
  86. "PORT_TEST", /*11*/
  87. "INDICATOR", /*12*/
  88. "R13", /*13*/
  89. "R14", /*14*/
  90. "R15", /*15*/
  91. "C_CONNECTION", /*16*/
  92. "C_ENABLE", /*17*/
  93. "C_SUSPEND", /*18*/
  94. "C_OVER_CURRENT", /*19*/
  95. "C_RESET", /*20*/
  96. "C_BH_RESET", /*21*/
  97. "C_LINK_STATE", /*22*/
  98. "C_CONFIG_ERROR", /*23*/
  99. "R24", /*24*/
  100. "R25", /*25*/
  101. "R26", /*26*/
  102. "R27", /*27*/
  103. "R28", /*28*/
  104. "R29", /*29*/
  105. "R30", /*30*/
  106. "R31", /*31*/
  107. };
  108. static void dump_port_status_diff(u32 prev_status, u32 new_status, bool usb3)
  109. {
  110. int i = 0;
  111. u32 bit = 1;
  112. const char * const *desc = bit_desc;
  113. if (usb3)
  114. desc = bit_desc_ss;
  115. pr_debug("status prev -> new: %08x -> %08x\n", prev_status, new_status);
  116. while (bit) {
  117. u32 prev = prev_status & bit;
  118. u32 new = new_status & bit;
  119. char change;
  120. if (!prev && new)
  121. change = '+';
  122. else if (prev && !new)
  123. change = '-';
  124. else
  125. change = ' ';
  126. if (prev || new) {
  127. pr_debug(" %c%s\n", change, desc[i]);
  128. if (bit == 1) /* USB_PORT_STAT_CONNECTION */
  129. pr_debug(" %c%s\n", change, "USB_PORT_STAT_SPEED_5GBPS");
  130. }
  131. bit <<= 1;
  132. i++;
  133. }
  134. pr_debug("\n");
  135. }
  136. void rh_port_connect(struct vhci_device *vdev, enum usb_device_speed speed)
  137. {
  138. struct vhci_hcd *vhci_hcd = vdev_to_vhci_hcd(vdev);
  139. struct vhci *vhci = vhci_hcd->vhci;
  140. int rhport = vdev->rhport;
  141. u32 status;
  142. unsigned long flags;
  143. usbip_dbg_vhci_rh("rh_port_connect %d\n", rhport);
  144. spin_lock_irqsave(&vhci->lock, flags);
  145. status = vhci_hcd->port_status[rhport];
  146. status |= USB_PORT_STAT_CONNECTION | (1 << USB_PORT_FEAT_C_CONNECTION);
  147. switch (speed) {
  148. case USB_SPEED_HIGH:
  149. status |= USB_PORT_STAT_HIGH_SPEED;
  150. break;
  151. case USB_SPEED_LOW:
  152. status |= USB_PORT_STAT_LOW_SPEED;
  153. break;
  154. default:
  155. break;
  156. }
  157. vhci_hcd->port_status[rhport] = status;
  158. spin_unlock_irqrestore(&vhci->lock, flags);
  159. usb_hcd_poll_rh_status(vhci_hcd_to_hcd(vhci_hcd));
  160. }
  161. static void rh_port_disconnect(struct vhci_device *vdev)
  162. {
  163. struct vhci_hcd *vhci_hcd = vdev_to_vhci_hcd(vdev);
  164. struct vhci *vhci = vhci_hcd->vhci;
  165. int rhport = vdev->rhport;
  166. u32 status;
  167. unsigned long flags;
  168. usbip_dbg_vhci_rh("rh_port_disconnect %d\n", rhport);
  169. spin_lock_irqsave(&vhci->lock, flags);
  170. status = vhci_hcd->port_status[rhport];
  171. status &= ~USB_PORT_STAT_CONNECTION;
  172. status |= (1 << USB_PORT_FEAT_C_CONNECTION);
  173. vhci_hcd->port_status[rhport] = status;
  174. spin_unlock_irqrestore(&vhci->lock, flags);
  175. usb_hcd_poll_rh_status(vhci_hcd_to_hcd(vhci_hcd));
  176. }
  177. #define PORT_C_MASK \
  178. ((USB_PORT_STAT_C_CONNECTION \
  179. | USB_PORT_STAT_C_ENABLE \
  180. | USB_PORT_STAT_C_SUSPEND \
  181. | USB_PORT_STAT_C_OVERCURRENT \
  182. | USB_PORT_STAT_C_RESET) << 16)
  183. /*
  184. * Returns 0 if the status hasn't changed, or the number of bytes in buf.
  185. * Ports are 0-indexed from the HCD point of view,
  186. * and 1-indexed from the USB core pointer of view.
  187. *
  188. * @buf: a bitmap to show which port status has been changed.
  189. * bit 0: reserved
  190. * bit 1: the status of port 0 has been changed.
  191. * bit 2: the status of port 1 has been changed.
  192. * ...
  193. */
  194. static int vhci_hub_status(struct usb_hcd *hcd, char *buf)
  195. {
  196. struct vhci_hcd *vhci_hcd = hcd_to_vhci_hcd(hcd);
  197. struct vhci *vhci = vhci_hcd->vhci;
  198. int retval = DIV_ROUND_UP(VHCI_HC_PORTS + 1, 8);
  199. int rhport;
  200. int changed = 0;
  201. unsigned long flags;
  202. memset(buf, 0, retval);
  203. spin_lock_irqsave(&vhci->lock, flags);
  204. if (!HCD_HW_ACCESSIBLE(hcd)) {
  205. usbip_dbg_vhci_rh("hw accessible flag not on?\n");
  206. goto done;
  207. }
  208. /* check pseudo status register for each port */
  209. for (rhport = 0; rhport < VHCI_HC_PORTS; rhport++) {
  210. if ((vhci_hcd->port_status[rhport] & PORT_C_MASK)) {
  211. /* The status of a port has been changed, */
  212. usbip_dbg_vhci_rh("port %d status changed\n", rhport);
  213. buf[(rhport + 1) / 8] |= 1 << (rhport + 1) % 8;
  214. changed = 1;
  215. }
  216. }
  217. if ((hcd->state == HC_STATE_SUSPENDED) && (changed == 1))
  218. usb_hcd_resume_root_hub(hcd);
  219. done:
  220. spin_unlock_irqrestore(&vhci->lock, flags);
  221. return changed ? retval : 0;
  222. }
  223. /* usb 3.0 root hub device descriptor */
  224. static struct {
  225. struct usb_bos_descriptor bos;
  226. struct usb_ss_cap_descriptor ss_cap;
  227. } __packed usb3_bos_desc = {
  228. .bos = {
  229. .bLength = USB_DT_BOS_SIZE,
  230. .bDescriptorType = USB_DT_BOS,
  231. .wTotalLength = cpu_to_le16(sizeof(usb3_bos_desc)),
  232. .bNumDeviceCaps = 1,
  233. },
  234. .ss_cap = {
  235. .bLength = USB_DT_USB_SS_CAP_SIZE,
  236. .bDescriptorType = USB_DT_DEVICE_CAPABILITY,
  237. .bDevCapabilityType = USB_SS_CAP_TYPE,
  238. .wSpeedSupported = cpu_to_le16(USB_5GBPS_OPERATION),
  239. .bFunctionalitySupport = ilog2(USB_5GBPS_OPERATION),
  240. },
  241. };
  242. static inline void
  243. ss_hub_descriptor(struct usb_hub_descriptor *desc)
  244. {
  245. memset(desc, 0, sizeof *desc);
  246. desc->bDescriptorType = USB_DT_SS_HUB;
  247. desc->bDescLength = 12;
  248. desc->wHubCharacteristics = cpu_to_le16(
  249. HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_COMMON_OCPM);
  250. desc->bNbrPorts = VHCI_HC_PORTS;
  251. desc->u.ss.bHubHdrDecLat = 0x04; /* Worst case: 0.4 micro sec*/
  252. desc->u.ss.DeviceRemovable = 0xffff;
  253. }
  254. static inline void hub_descriptor(struct usb_hub_descriptor *desc)
  255. {
  256. int width;
  257. memset(desc, 0, sizeof(*desc));
  258. desc->bDescriptorType = USB_DT_HUB;
  259. desc->wHubCharacteristics = cpu_to_le16(
  260. HUB_CHAR_INDV_PORT_LPSM | HUB_CHAR_COMMON_OCPM);
  261. desc->bNbrPorts = VHCI_HC_PORTS;
  262. BUILD_BUG_ON(VHCI_HC_PORTS > USB_MAXCHILDREN);
  263. width = desc->bNbrPorts / 8 + 1;
  264. desc->bDescLength = USB_DT_HUB_NONVAR_SIZE + 2 * width;
  265. memset(&desc->u.hs.DeviceRemovable[0], 0, width);
  266. memset(&desc->u.hs.DeviceRemovable[width], 0xff, width);
  267. }
  268. static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
  269. u16 wIndex, char *buf, u16 wLength)
  270. {
  271. struct vhci_hcd *vhci_hcd;
  272. struct vhci *vhci;
  273. int retval = 0;
  274. int rhport = -1;
  275. unsigned long flags;
  276. bool invalid_rhport = false;
  277. u32 prev_port_status[VHCI_HC_PORTS];
  278. if (!HCD_HW_ACCESSIBLE(hcd))
  279. return -ETIMEDOUT;
  280. /*
  281. * NOTE:
  282. * wIndex (bits 0-7) shows the port number and begins from 1?
  283. */
  284. wIndex = ((__u8)(wIndex & 0x00ff));
  285. usbip_dbg_vhci_rh("typeReq %x wValue %x wIndex %x\n", typeReq, wValue,
  286. wIndex);
  287. /*
  288. * wIndex can be 0 for some request types (typeReq). rhport is
  289. * in valid range when wIndex >= 1 and < VHCI_HC_PORTS.
  290. *
  291. * Reference port_status[] only with valid rhport when
  292. * invalid_rhport is false.
  293. */
  294. if (wIndex < 1 || wIndex > VHCI_HC_PORTS) {
  295. invalid_rhport = true;
  296. if (wIndex > VHCI_HC_PORTS)
  297. pr_err("invalid port number %d\n", wIndex);
  298. } else
  299. rhport = wIndex - 1;
  300. vhci_hcd = hcd_to_vhci_hcd(hcd);
  301. vhci = vhci_hcd->vhci;
  302. spin_lock_irqsave(&vhci->lock, flags);
  303. /* store old status and compare now and old later */
  304. if (usbip_dbg_flag_vhci_rh) {
  305. if (!invalid_rhport)
  306. memcpy(prev_port_status, vhci_hcd->port_status,
  307. sizeof(prev_port_status));
  308. }
  309. switch (typeReq) {
  310. case ClearHubFeature:
  311. usbip_dbg_vhci_rh(" ClearHubFeature\n");
  312. break;
  313. case ClearPortFeature:
  314. if (invalid_rhport) {
  315. pr_err("invalid port number %d\n", wIndex);
  316. goto error;
  317. }
  318. switch (wValue) {
  319. case USB_PORT_FEAT_SUSPEND:
  320. if (hcd->speed >= HCD_USB3) {
  321. pr_err(" ClearPortFeature: USB_PORT_FEAT_SUSPEND req not "
  322. "supported for USB 3.0 roothub\n");
  323. goto error;
  324. }
  325. usbip_dbg_vhci_rh(
  326. " ClearPortFeature: USB_PORT_FEAT_SUSPEND\n");
  327. if (vhci_hcd->port_status[rhport] & USB_PORT_STAT_SUSPEND) {
  328. /* 20msec signaling */
  329. vhci_hcd->resuming = 1;
  330. vhci_hcd->re_timeout = jiffies + msecs_to_jiffies(20);
  331. }
  332. break;
  333. case USB_PORT_FEAT_POWER:
  334. usbip_dbg_vhci_rh(
  335. " ClearPortFeature: USB_PORT_FEAT_POWER\n");
  336. if (hcd->speed >= HCD_USB3)
  337. vhci_hcd->port_status[rhport] &= ~USB_SS_PORT_STAT_POWER;
  338. else
  339. vhci_hcd->port_status[rhport] &= ~USB_PORT_STAT_POWER;
  340. break;
  341. default:
  342. usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n",
  343. wValue);
  344. if (wValue >= 32)
  345. goto error;
  346. vhci_hcd->port_status[rhport] &= ~(1 << wValue);
  347. break;
  348. }
  349. break;
  350. case GetHubDescriptor:
  351. usbip_dbg_vhci_rh(" GetHubDescriptor\n");
  352. if (hcd->speed >= HCD_USB3 &&
  353. (wLength < USB_DT_SS_HUB_SIZE ||
  354. wValue != (USB_DT_SS_HUB << 8))) {
  355. pr_err("Wrong hub descriptor type for USB 3.0 roothub.\n");
  356. goto error;
  357. }
  358. if (hcd->speed >= HCD_USB3)
  359. ss_hub_descriptor((struct usb_hub_descriptor *) buf);
  360. else
  361. hub_descriptor((struct usb_hub_descriptor *) buf);
  362. break;
  363. case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
  364. if (hcd->speed < HCD_USB3)
  365. goto error;
  366. if ((wValue >> 8) != USB_DT_BOS)
  367. goto error;
  368. memcpy(buf, &usb3_bos_desc, sizeof(usb3_bos_desc));
  369. retval = sizeof(usb3_bos_desc);
  370. break;
  371. case GetHubStatus:
  372. usbip_dbg_vhci_rh(" GetHubStatus\n");
  373. *(__le32 *) buf = cpu_to_le32(0);
  374. break;
  375. case GetPortStatus:
  376. usbip_dbg_vhci_rh(" GetPortStatus port %x\n", wIndex);
  377. if (invalid_rhport) {
  378. pr_err("invalid port number %d\n", wIndex);
  379. retval = -EPIPE;
  380. goto error;
  381. }
  382. /* we do not care about resume. */
  383. /* whoever resets or resumes must GetPortStatus to
  384. * complete it!!
  385. */
  386. if (vhci_hcd->resuming && time_after(jiffies, vhci_hcd->re_timeout)) {
  387. vhci_hcd->port_status[rhport] |= (1 << USB_PORT_FEAT_C_SUSPEND);
  388. vhci_hcd->port_status[rhport] &= ~(1 << USB_PORT_FEAT_SUSPEND);
  389. vhci_hcd->resuming = 0;
  390. vhci_hcd->re_timeout = 0;
  391. }
  392. if ((vhci_hcd->port_status[rhport] & (1 << USB_PORT_FEAT_RESET)) !=
  393. 0 && time_after(jiffies, vhci_hcd->re_timeout)) {
  394. vhci_hcd->port_status[rhport] |= (1 << USB_PORT_FEAT_C_RESET);
  395. vhci_hcd->port_status[rhport] &= ~(1 << USB_PORT_FEAT_RESET);
  396. vhci_hcd->re_timeout = 0;
  397. /*
  398. * A few drivers do usb reset during probe when
  399. * the device could be in VDEV_ST_USED state
  400. */
  401. if (vhci_hcd->vdev[rhport].ud.status ==
  402. VDEV_ST_NOTASSIGNED ||
  403. vhci_hcd->vdev[rhport].ud.status ==
  404. VDEV_ST_USED) {
  405. usbip_dbg_vhci_rh(
  406. " enable rhport %d (status %u)\n",
  407. rhport,
  408. vhci_hcd->vdev[rhport].ud.status);
  409. vhci_hcd->port_status[rhport] |=
  410. USB_PORT_STAT_ENABLE;
  411. }
  412. if (hcd->speed < HCD_USB3) {
  413. switch (vhci_hcd->vdev[rhport].speed) {
  414. case USB_SPEED_HIGH:
  415. vhci_hcd->port_status[rhport] |=
  416. USB_PORT_STAT_HIGH_SPEED;
  417. break;
  418. case USB_SPEED_LOW:
  419. vhci_hcd->port_status[rhport] |=
  420. USB_PORT_STAT_LOW_SPEED;
  421. break;
  422. default:
  423. pr_err("vhci_device speed not set\n");
  424. break;
  425. }
  426. }
  427. }
  428. ((__le16 *) buf)[0] = cpu_to_le16(vhci_hcd->port_status[rhport]);
  429. ((__le16 *) buf)[1] =
  430. cpu_to_le16(vhci_hcd->port_status[rhport] >> 16);
  431. usbip_dbg_vhci_rh(" GetPortStatus bye %x %x\n", ((u16 *)buf)[0],
  432. ((u16 *)buf)[1]);
  433. break;
  434. case SetHubFeature:
  435. usbip_dbg_vhci_rh(" SetHubFeature\n");
  436. retval = -EPIPE;
  437. break;
  438. case SetPortFeature:
  439. switch (wValue) {
  440. case USB_PORT_FEAT_LINK_STATE:
  441. usbip_dbg_vhci_rh(
  442. " SetPortFeature: USB_PORT_FEAT_LINK_STATE\n");
  443. if (hcd->speed < HCD_USB3) {
  444. pr_err("USB_PORT_FEAT_LINK_STATE req not "
  445. "supported for USB 2.0 roothub\n");
  446. goto error;
  447. }
  448. /*
  449. * Since this is dummy we don't have an actual link so
  450. * there is nothing to do for the SET_LINK_STATE cmd
  451. */
  452. break;
  453. case USB_PORT_FEAT_U1_TIMEOUT:
  454. usbip_dbg_vhci_rh(
  455. " SetPortFeature: USB_PORT_FEAT_U1_TIMEOUT\n");
  456. fallthrough;
  457. case USB_PORT_FEAT_U2_TIMEOUT:
  458. usbip_dbg_vhci_rh(
  459. " SetPortFeature: USB_PORT_FEAT_U2_TIMEOUT\n");
  460. /* TODO: add suspend/resume support! */
  461. if (hcd->speed < HCD_USB3) {
  462. pr_err("USB_PORT_FEAT_U1/2_TIMEOUT req not "
  463. "supported for USB 2.0 roothub\n");
  464. goto error;
  465. }
  466. break;
  467. case USB_PORT_FEAT_SUSPEND:
  468. usbip_dbg_vhci_rh(
  469. " SetPortFeature: USB_PORT_FEAT_SUSPEND\n");
  470. /* Applicable only for USB2.0 hub */
  471. if (hcd->speed >= HCD_USB3) {
  472. pr_err("USB_PORT_FEAT_SUSPEND req not "
  473. "supported for USB 3.0 roothub\n");
  474. goto error;
  475. }
  476. if (invalid_rhport) {
  477. pr_err("invalid port number %d\n", wIndex);
  478. goto error;
  479. }
  480. vhci_hcd->port_status[rhport] |= USB_PORT_STAT_SUSPEND;
  481. break;
  482. case USB_PORT_FEAT_POWER:
  483. usbip_dbg_vhci_rh(
  484. " SetPortFeature: USB_PORT_FEAT_POWER\n");
  485. if (invalid_rhport) {
  486. pr_err("invalid port number %d\n", wIndex);
  487. goto error;
  488. }
  489. if (hcd->speed >= HCD_USB3)
  490. vhci_hcd->port_status[rhport] |= USB_SS_PORT_STAT_POWER;
  491. else
  492. vhci_hcd->port_status[rhport] |= USB_PORT_STAT_POWER;
  493. break;
  494. case USB_PORT_FEAT_BH_PORT_RESET:
  495. usbip_dbg_vhci_rh(
  496. " SetPortFeature: USB_PORT_FEAT_BH_PORT_RESET\n");
  497. if (invalid_rhport) {
  498. pr_err("invalid port number %d\n", wIndex);
  499. goto error;
  500. }
  501. /* Applicable only for USB3.0 hub */
  502. if (hcd->speed < HCD_USB3) {
  503. pr_err("USB_PORT_FEAT_BH_PORT_RESET req not "
  504. "supported for USB 2.0 roothub\n");
  505. goto error;
  506. }
  507. fallthrough;
  508. case USB_PORT_FEAT_RESET:
  509. usbip_dbg_vhci_rh(
  510. " SetPortFeature: USB_PORT_FEAT_RESET\n");
  511. if (invalid_rhport) {
  512. pr_err("invalid port number %d\n", wIndex);
  513. goto error;
  514. }
  515. /* if it's already enabled, disable */
  516. if (hcd->speed >= HCD_USB3) {
  517. vhci_hcd->port_status[rhport] = 0;
  518. vhci_hcd->port_status[rhport] =
  519. (USB_SS_PORT_STAT_POWER |
  520. USB_PORT_STAT_CONNECTION |
  521. USB_PORT_STAT_RESET);
  522. } else if (vhci_hcd->port_status[rhport] & USB_PORT_STAT_ENABLE) {
  523. vhci_hcd->port_status[rhport] &= ~(USB_PORT_STAT_ENABLE
  524. | USB_PORT_STAT_LOW_SPEED
  525. | USB_PORT_STAT_HIGH_SPEED);
  526. }
  527. /* 50msec reset signaling */
  528. vhci_hcd->re_timeout = jiffies + msecs_to_jiffies(50);
  529. fallthrough;
  530. default:
  531. usbip_dbg_vhci_rh(" SetPortFeature: default %d\n",
  532. wValue);
  533. if (invalid_rhport) {
  534. pr_err("invalid port number %d\n", wIndex);
  535. goto error;
  536. }
  537. if (wValue >= 32)
  538. goto error;
  539. if (hcd->speed >= HCD_USB3) {
  540. if ((vhci_hcd->port_status[rhport] &
  541. USB_SS_PORT_STAT_POWER) != 0) {
  542. vhci_hcd->port_status[rhport] |= (1 << wValue);
  543. }
  544. } else
  545. if ((vhci_hcd->port_status[rhport] &
  546. USB_PORT_STAT_POWER) != 0) {
  547. vhci_hcd->port_status[rhport] |= (1 << wValue);
  548. }
  549. }
  550. break;
  551. case GetPortErrorCount:
  552. usbip_dbg_vhci_rh(" GetPortErrorCount\n");
  553. if (hcd->speed < HCD_USB3) {
  554. pr_err("GetPortErrorCount req not "
  555. "supported for USB 2.0 roothub\n");
  556. goto error;
  557. }
  558. /* We'll always return 0 since this is a dummy hub */
  559. *(__le32 *) buf = cpu_to_le32(0);
  560. break;
  561. case SetHubDepth:
  562. usbip_dbg_vhci_rh(" SetHubDepth\n");
  563. if (hcd->speed < HCD_USB3) {
  564. pr_err("SetHubDepth req not supported for "
  565. "USB 2.0 roothub\n");
  566. goto error;
  567. }
  568. break;
  569. default:
  570. pr_err("default hub control req: %04x v%04x i%04x l%d\n",
  571. typeReq, wValue, wIndex, wLength);
  572. error:
  573. /* "protocol stall" on error */
  574. retval = -EPIPE;
  575. }
  576. if (usbip_dbg_flag_vhci_rh) {
  577. pr_debug("port %d\n", rhport);
  578. /* Only dump valid port status */
  579. if (!invalid_rhport) {
  580. dump_port_status_diff(prev_port_status[rhport],
  581. vhci_hcd->port_status[rhport],
  582. hcd->speed >= HCD_USB3);
  583. }
  584. }
  585. usbip_dbg_vhci_rh(" bye\n");
  586. spin_unlock_irqrestore(&vhci->lock, flags);
  587. if (!invalid_rhport &&
  588. (vhci_hcd->port_status[rhport] & PORT_C_MASK) != 0) {
  589. usb_hcd_poll_rh_status(hcd);
  590. }
  591. return retval;
  592. }
  593. static void vhci_tx_urb(struct urb *urb, struct vhci_device *vdev)
  594. {
  595. struct vhci_priv *priv;
  596. struct vhci_hcd *vhci_hcd = vdev_to_vhci_hcd(vdev);
  597. unsigned long flags;
  598. priv = kzalloc(sizeof(struct vhci_priv), GFP_ATOMIC);
  599. if (!priv) {
  600. usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
  601. return;
  602. }
  603. spin_lock_irqsave(&vdev->priv_lock, flags);
  604. priv->seqnum = atomic_inc_return(&vhci_hcd->seqnum);
  605. if (priv->seqnum == 0xffff)
  606. dev_info(&urb->dev->dev, "seqnum max\n");
  607. priv->vdev = vdev;
  608. priv->urb = urb;
  609. urb->hcpriv = (void *) priv;
  610. list_add_tail(&priv->list, &vdev->priv_tx);
  611. wake_up(&vdev->waitq_tx);
  612. spin_unlock_irqrestore(&vdev->priv_lock, flags);
  613. }
  614. static int vhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
  615. {
  616. struct vhci_hcd *vhci_hcd = hcd_to_vhci_hcd(hcd);
  617. struct vhci *vhci = vhci_hcd->vhci;
  618. struct device *dev = &urb->dev->dev;
  619. u8 portnum = urb->dev->portnum;
  620. int ret = 0;
  621. struct vhci_device *vdev;
  622. unsigned long flags;
  623. if (portnum > VHCI_HC_PORTS) {
  624. pr_err("invalid port number %d\n", portnum);
  625. return -ENODEV;
  626. }
  627. vdev = &vhci_hcd->vdev[portnum-1];
  628. if (!urb->transfer_buffer && !urb->num_sgs &&
  629. urb->transfer_buffer_length) {
  630. dev_dbg(dev, "Null URB transfer buffer\n");
  631. return -EINVAL;
  632. }
  633. spin_lock_irqsave(&vhci->lock, flags);
  634. if (urb->status != -EINPROGRESS) {
  635. dev_err(dev, "URB already unlinked!, status %d\n", urb->status);
  636. spin_unlock_irqrestore(&vhci->lock, flags);
  637. return urb->status;
  638. }
  639. /* refuse enqueue for dead connection */
  640. spin_lock(&vdev->ud.lock);
  641. if (vdev->ud.status == VDEV_ST_NULL ||
  642. vdev->ud.status == VDEV_ST_ERROR) {
  643. dev_err(dev, "enqueue for inactive port %d\n", vdev->rhport);
  644. spin_unlock(&vdev->ud.lock);
  645. spin_unlock_irqrestore(&vhci->lock, flags);
  646. return -ENODEV;
  647. }
  648. spin_unlock(&vdev->ud.lock);
  649. ret = usb_hcd_link_urb_to_ep(hcd, urb);
  650. if (ret)
  651. goto no_need_unlink;
  652. /*
  653. * The enumeration process is as follows;
  654. *
  655. * 1. Get_Descriptor request to DevAddrs(0) EndPoint(0)
  656. * to get max packet length of default pipe
  657. *
  658. * 2. Set_Address request to DevAddr(0) EndPoint(0)
  659. *
  660. */
  661. if (usb_pipedevice(urb->pipe) == 0) {
  662. struct usb_device *old;
  663. __u8 type = usb_pipetype(urb->pipe);
  664. struct usb_ctrlrequest *ctrlreq =
  665. (struct usb_ctrlrequest *) urb->setup_packet;
  666. if (type != PIPE_CONTROL || !ctrlreq) {
  667. dev_err(dev, "invalid request to devnum 0\n");
  668. ret = -EINVAL;
  669. goto no_need_xmit;
  670. }
  671. old = vdev->udev;
  672. switch (ctrlreq->bRequest) {
  673. case USB_REQ_SET_ADDRESS:
  674. /* set_address may come when a device is reset */
  675. dev_info(dev, "SetAddress Request (%d) to port %d\n",
  676. ctrlreq->wValue, vdev->rhport);
  677. vdev->udev = usb_get_dev(urb->dev);
  678. usb_put_dev(old);
  679. spin_lock(&vdev->ud.lock);
  680. vdev->ud.status = VDEV_ST_USED;
  681. spin_unlock(&vdev->ud.lock);
  682. if (urb->status == -EINPROGRESS) {
  683. /* This request is successfully completed. */
  684. /* If not -EINPROGRESS, possibly unlinked. */
  685. urb->status = 0;
  686. }
  687. goto no_need_xmit;
  688. case USB_REQ_GET_DESCRIPTOR:
  689. if (ctrlreq->wValue == cpu_to_le16(USB_DT_DEVICE << 8))
  690. usbip_dbg_vhci_hc(
  691. "Not yet?:Get_Descriptor to device 0 (get max pipe size)\n");
  692. vdev->udev = usb_get_dev(urb->dev);
  693. usb_put_dev(old);
  694. goto out;
  695. default:
  696. /* NOT REACHED */
  697. dev_err(dev,
  698. "invalid request to devnum 0 bRequest %u, wValue %u\n",
  699. ctrlreq->bRequest,
  700. ctrlreq->wValue);
  701. ret = -EINVAL;
  702. goto no_need_xmit;
  703. }
  704. }
  705. out:
  706. vhci_tx_urb(urb, vdev);
  707. spin_unlock_irqrestore(&vhci->lock, flags);
  708. return 0;
  709. no_need_xmit:
  710. usb_hcd_unlink_urb_from_ep(hcd, urb);
  711. no_need_unlink:
  712. spin_unlock_irqrestore(&vhci->lock, flags);
  713. if (!ret) {
  714. /* usb_hcd_giveback_urb() should be called with
  715. * irqs disabled
  716. */
  717. local_irq_disable();
  718. usb_hcd_giveback_urb(hcd, urb, urb->status);
  719. local_irq_enable();
  720. }
  721. return ret;
  722. }
  723. /*
  724. * vhci_rx gives back the urb after receiving the reply of the urb. If an
  725. * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
  726. * back its urb. For the driver unlinking the urb, the content of the urb is
  727. * not important, but the calling to its completion handler is important; the
  728. * completion of unlinking is notified by the completion handler.
  729. *
  730. *
  731. * CLIENT SIDE
  732. *
  733. * - When vhci_hcd receives RET_SUBMIT,
  734. *
  735. * - case 1a). the urb of the pdu is not unlinking.
  736. * - normal case
  737. * => just give back the urb
  738. *
  739. * - case 1b). the urb of the pdu is unlinking.
  740. * - usbip.ko will return a reply of the unlinking request.
  741. * => give back the urb now and go to case 2b).
  742. *
  743. * - When vhci_hcd receives RET_UNLINK,
  744. *
  745. * - case 2a). a submit request is still pending in vhci_hcd.
  746. * - urb was really pending in usbip.ko and urb_unlink_urb() was
  747. * completed there.
  748. * => free a pending submit request
  749. * => notify unlink completeness by giving back the urb
  750. *
  751. * - case 2b). a submit request is *not* pending in vhci_hcd.
  752. * - urb was already given back to the core driver.
  753. * => do not give back the urb
  754. *
  755. *
  756. * SERVER SIDE
  757. *
  758. * - When usbip receives CMD_UNLINK,
  759. *
  760. * - case 3a). the urb of the unlink request is now in submission.
  761. * => do usb_unlink_urb().
  762. * => after the unlink is completed, send RET_UNLINK.
  763. *
  764. * - case 3b). the urb of the unlink request is not in submission.
  765. * - may be already completed or never be received
  766. * => send RET_UNLINK
  767. *
  768. */
  769. static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
  770. {
  771. struct vhci_hcd *vhci_hcd = hcd_to_vhci_hcd(hcd);
  772. struct vhci *vhci = vhci_hcd->vhci;
  773. struct vhci_priv *priv;
  774. struct vhci_device *vdev;
  775. unsigned long flags;
  776. spin_lock_irqsave(&vhci->lock, flags);
  777. priv = urb->hcpriv;
  778. if (!priv) {
  779. /* URB was never linked! or will be soon given back by
  780. * vhci_rx. */
  781. spin_unlock_irqrestore(&vhci->lock, flags);
  782. return -EIDRM;
  783. }
  784. {
  785. int ret = 0;
  786. ret = usb_hcd_check_unlink_urb(hcd, urb, status);
  787. if (ret) {
  788. spin_unlock_irqrestore(&vhci->lock, flags);
  789. return ret;
  790. }
  791. }
  792. /* send unlink request here? */
  793. vdev = priv->vdev;
  794. if (!vdev->ud.tcp_socket) {
  795. /* tcp connection is closed */
  796. spin_lock(&vdev->priv_lock);
  797. list_del(&priv->list);
  798. kfree(priv);
  799. urb->hcpriv = NULL;
  800. spin_unlock(&vdev->priv_lock);
  801. /*
  802. * If tcp connection is alive, we have sent CMD_UNLINK.
  803. * vhci_rx will receive RET_UNLINK and give back the URB.
  804. * Otherwise, we give back it here.
  805. */
  806. usb_hcd_unlink_urb_from_ep(hcd, urb);
  807. spin_unlock_irqrestore(&vhci->lock, flags);
  808. usb_hcd_giveback_urb(hcd, urb, urb->status);
  809. spin_lock_irqsave(&vhci->lock, flags);
  810. } else {
  811. /* tcp connection is alive */
  812. struct vhci_unlink *unlink;
  813. spin_lock(&vdev->priv_lock);
  814. /* setup CMD_UNLINK pdu */
  815. unlink = kzalloc(sizeof(struct vhci_unlink), GFP_ATOMIC);
  816. if (!unlink) {
  817. spin_unlock(&vdev->priv_lock);
  818. spin_unlock_irqrestore(&vhci->lock, flags);
  819. usbip_event_add(&vdev->ud, VDEV_EVENT_ERROR_MALLOC);
  820. return -ENOMEM;
  821. }
  822. unlink->seqnum = atomic_inc_return(&vhci_hcd->seqnum);
  823. if (unlink->seqnum == 0xffff)
  824. pr_info("seqnum max\n");
  825. unlink->unlink_seqnum = priv->seqnum;
  826. /* send cmd_unlink and try to cancel the pending URB in the
  827. * peer */
  828. list_add_tail(&unlink->list, &vdev->unlink_tx);
  829. wake_up(&vdev->waitq_tx);
  830. spin_unlock(&vdev->priv_lock);
  831. }
  832. spin_unlock_irqrestore(&vhci->lock, flags);
  833. usbip_dbg_vhci_hc("leave\n");
  834. return 0;
  835. }
  836. static void vhci_cleanup_unlink_list(struct vhci_device *vdev,
  837. struct list_head *unlink_list)
  838. {
  839. struct vhci_hcd *vhci_hcd = vdev_to_vhci_hcd(vdev);
  840. struct usb_hcd *hcd = vhci_hcd_to_hcd(vhci_hcd);
  841. struct vhci *vhci = vhci_hcd->vhci;
  842. struct vhci_unlink *unlink, *tmp;
  843. unsigned long flags;
  844. spin_lock_irqsave(&vhci->lock, flags);
  845. spin_lock(&vdev->priv_lock);
  846. list_for_each_entry_safe(unlink, tmp, unlink_list, list) {
  847. struct urb *urb;
  848. urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum);
  849. if (!urb) {
  850. list_del(&unlink->list);
  851. kfree(unlink);
  852. continue;
  853. }
  854. urb->status = -ENODEV;
  855. usb_hcd_unlink_urb_from_ep(hcd, urb);
  856. list_del(&unlink->list);
  857. spin_unlock(&vdev->priv_lock);
  858. spin_unlock_irqrestore(&vhci->lock, flags);
  859. usb_hcd_giveback_urb(hcd, urb, urb->status);
  860. spin_lock_irqsave(&vhci->lock, flags);
  861. spin_lock(&vdev->priv_lock);
  862. kfree(unlink);
  863. }
  864. spin_unlock(&vdev->priv_lock);
  865. spin_unlock_irqrestore(&vhci->lock, flags);
  866. }
  867. static void vhci_device_unlink_cleanup(struct vhci_device *vdev)
  868. {
  869. /* give back URB of unsent unlink request */
  870. vhci_cleanup_unlink_list(vdev, &vdev->unlink_tx);
  871. /* give back URB of unanswered unlink request */
  872. vhci_cleanup_unlink_list(vdev, &vdev->unlink_rx);
  873. }
  874. /*
  875. * The important thing is that only one context begins cleanup.
  876. * This is why error handling and cleanup become simple.
  877. * We do not want to consider race condition as possible.
  878. */
  879. static void vhci_shutdown_connection(struct usbip_device *ud)
  880. {
  881. struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
  882. /* need this? see stub_dev.c */
  883. if (ud->tcp_socket) {
  884. pr_debug("shutdown tcp_socket %d\n", ud->sockfd);
  885. kernel_sock_shutdown(ud->tcp_socket, SHUT_RDWR);
  886. }
  887. /* kill threads related to this sdev */
  888. if (vdev->ud.tcp_rx) {
  889. kthread_stop_put(vdev->ud.tcp_rx);
  890. vdev->ud.tcp_rx = NULL;
  891. }
  892. if (vdev->ud.tcp_tx) {
  893. kthread_stop_put(vdev->ud.tcp_tx);
  894. vdev->ud.tcp_tx = NULL;
  895. }
  896. pr_info("stop threads\n");
  897. /* active connection is closed */
  898. if (vdev->ud.tcp_socket) {
  899. sockfd_put(vdev->ud.tcp_socket);
  900. vdev->ud.tcp_socket = NULL;
  901. vdev->ud.sockfd = -1;
  902. }
  903. pr_info("release socket\n");
  904. vhci_device_unlink_cleanup(vdev);
  905. /*
  906. * rh_port_disconnect() is a trigger of ...
  907. * usb_disable_device():
  908. * disable all the endpoints for a USB device.
  909. * usb_disable_endpoint():
  910. * disable endpoints. pending urbs are unlinked(dequeued).
  911. *
  912. * NOTE: After calling rh_port_disconnect(), the USB device drivers of a
  913. * detached device should release used urbs in a cleanup function (i.e.
  914. * xxx_disconnect()). Therefore, vhci_hcd does not need to release
  915. * pushed urbs and their private data in this function.
  916. *
  917. * NOTE: vhci_dequeue() must be considered carefully. When shutting down
  918. * a connection, vhci_shutdown_connection() expects vhci_dequeue()
  919. * gives back pushed urbs and frees their private data by request of
  920. * the cleanup function of a USB driver. When unlinking a urb with an
  921. * active connection, vhci_dequeue() does not give back the urb which
  922. * is actually given back by vhci_rx after receiving its return pdu.
  923. *
  924. */
  925. rh_port_disconnect(vdev);
  926. pr_info("disconnect device\n");
  927. }
  928. static void vhci_device_reset(struct usbip_device *ud)
  929. {
  930. struct vhci_device *vdev = container_of(ud, struct vhci_device, ud);
  931. struct usb_device *old = vdev->udev;
  932. unsigned long flags;
  933. spin_lock_irqsave(&ud->lock, flags);
  934. vdev->speed = 0;
  935. vdev->devid = 0;
  936. vdev->udev = NULL;
  937. usb_put_dev(old);
  938. if (ud->tcp_socket) {
  939. sockfd_put(ud->tcp_socket);
  940. ud->tcp_socket = NULL;
  941. ud->sockfd = -1;
  942. }
  943. ud->status = VDEV_ST_NULL;
  944. spin_unlock_irqrestore(&ud->lock, flags);
  945. }
  946. static void vhci_device_unusable(struct usbip_device *ud)
  947. {
  948. unsigned long flags;
  949. spin_lock_irqsave(&ud->lock, flags);
  950. ud->status = VDEV_ST_ERROR;
  951. spin_unlock_irqrestore(&ud->lock, flags);
  952. }
  953. static void vhci_device_init(struct vhci_device *vdev)
  954. {
  955. memset(vdev, 0, sizeof(struct vhci_device));
  956. vdev->ud.side = USBIP_VHCI;
  957. vdev->ud.status = VDEV_ST_NULL;
  958. spin_lock_init(&vdev->ud.lock);
  959. mutex_init(&vdev->ud.sysfs_lock);
  960. INIT_LIST_HEAD(&vdev->priv_rx);
  961. INIT_LIST_HEAD(&vdev->priv_tx);
  962. INIT_LIST_HEAD(&vdev->unlink_tx);
  963. INIT_LIST_HEAD(&vdev->unlink_rx);
  964. spin_lock_init(&vdev->priv_lock);
  965. init_waitqueue_head(&vdev->waitq_tx);
  966. vdev->ud.eh_ops.shutdown = vhci_shutdown_connection;
  967. vdev->ud.eh_ops.reset = vhci_device_reset;
  968. vdev->ud.eh_ops.unusable = vhci_device_unusable;
  969. usbip_start_eh(&vdev->ud);
  970. }
  971. static int hcd_name_to_id(const char *name)
  972. {
  973. char *c;
  974. long val;
  975. int ret;
  976. c = strchr(name, '.');
  977. if (c == NULL)
  978. return 0;
  979. ret = kstrtol(c+1, 10, &val);
  980. if (ret < 0)
  981. return ret;
  982. return val;
  983. }
  984. static int vhci_setup(struct usb_hcd *hcd)
  985. {
  986. struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
  987. if (usb_hcd_is_primary_hcd(hcd)) {
  988. vhci->vhci_hcd_hs = hcd_to_vhci_hcd(hcd);
  989. vhci->vhci_hcd_hs->vhci = vhci;
  990. /*
  991. * Mark the first roothub as being USB 2.0.
  992. * The USB 3.0 roothub will be registered later by
  993. * vhci_hcd_probe()
  994. */
  995. hcd->speed = HCD_USB2;
  996. hcd->self.root_hub->speed = USB_SPEED_HIGH;
  997. } else {
  998. vhci->vhci_hcd_ss = hcd_to_vhci_hcd(hcd);
  999. vhci->vhci_hcd_ss->vhci = vhci;
  1000. hcd->speed = HCD_USB31;
  1001. hcd->self.root_hub->speed = USB_SPEED_SUPER_PLUS;
  1002. }
  1003. /*
  1004. * Support SG.
  1005. * sg_tablesize is an arbitrary value to alleviate memory pressure
  1006. * on the host.
  1007. */
  1008. hcd->self.sg_tablesize = 32;
  1009. hcd->self.no_sg_constraint = 1;
  1010. return 0;
  1011. }
  1012. static int vhci_start(struct usb_hcd *hcd)
  1013. {
  1014. struct vhci_hcd *vhci_hcd = hcd_to_vhci_hcd(hcd);
  1015. int id, rhport;
  1016. int err;
  1017. usbip_dbg_vhci_hc("enter vhci_start\n");
  1018. if (usb_hcd_is_primary_hcd(hcd))
  1019. spin_lock_init(&vhci_hcd->vhci->lock);
  1020. /* initialize private data of usb_hcd */
  1021. for (rhport = 0; rhport < VHCI_HC_PORTS; rhport++) {
  1022. struct vhci_device *vdev = &vhci_hcd->vdev[rhport];
  1023. vhci_device_init(vdev);
  1024. vdev->rhport = rhport;
  1025. }
  1026. atomic_set(&vhci_hcd->seqnum, 0);
  1027. hcd->power_budget = 0; /* no limit */
  1028. hcd->uses_new_polling = 1;
  1029. #ifdef CONFIG_USB_OTG
  1030. hcd->self.otg_port = 1;
  1031. #endif
  1032. id = hcd_name_to_id(hcd_name(hcd));
  1033. if (id < 0) {
  1034. pr_err("invalid vhci name %s\n", hcd_name(hcd));
  1035. return -EINVAL;
  1036. }
  1037. /* vhci_hcd is now ready to be controlled through sysfs */
  1038. if (id == 0 && usb_hcd_is_primary_hcd(hcd)) {
  1039. err = vhci_init_attr_group();
  1040. if (err) {
  1041. dev_err(hcd_dev(hcd), "init attr group failed, err = %d\n", err);
  1042. return err;
  1043. }
  1044. err = sysfs_create_group(&hcd_dev(hcd)->kobj, &vhci_attr_group);
  1045. if (err) {
  1046. dev_err(hcd_dev(hcd), "create sysfs files failed, err = %d\n", err);
  1047. vhci_finish_attr_group();
  1048. return err;
  1049. }
  1050. pr_info("created sysfs %s\n", hcd_name(hcd));
  1051. }
  1052. return 0;
  1053. }
  1054. static void vhci_stop(struct usb_hcd *hcd)
  1055. {
  1056. struct vhci_hcd *vhci_hcd = hcd_to_vhci_hcd(hcd);
  1057. int id, rhport;
  1058. usbip_dbg_vhci_hc("stop VHCI controller\n");
  1059. /* 1. remove the userland interface of vhci_hcd */
  1060. id = hcd_name_to_id(hcd_name(hcd));
  1061. if (id == 0 && usb_hcd_is_primary_hcd(hcd)) {
  1062. sysfs_remove_group(&hcd_dev(hcd)->kobj, &vhci_attr_group);
  1063. vhci_finish_attr_group();
  1064. }
  1065. /* 2. shutdown all the ports of vhci_hcd */
  1066. for (rhport = 0; rhport < VHCI_HC_PORTS; rhport++) {
  1067. struct vhci_device *vdev = &vhci_hcd->vdev[rhport];
  1068. usbip_event_add(&vdev->ud, VDEV_EVENT_REMOVED);
  1069. usbip_stop_eh(&vdev->ud);
  1070. }
  1071. }
  1072. static int vhci_get_frame_number(struct usb_hcd *hcd)
  1073. {
  1074. dev_err_ratelimited(&hcd->self.root_hub->dev, "Not yet implemented\n");
  1075. return 0;
  1076. }
  1077. #ifdef CONFIG_PM
  1078. /* FIXME: suspend/resume */
  1079. static int vhci_bus_suspend(struct usb_hcd *hcd)
  1080. {
  1081. struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
  1082. unsigned long flags;
  1083. dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
  1084. spin_lock_irqsave(&vhci->lock, flags);
  1085. hcd->state = HC_STATE_SUSPENDED;
  1086. spin_unlock_irqrestore(&vhci->lock, flags);
  1087. return 0;
  1088. }
  1089. static int vhci_bus_resume(struct usb_hcd *hcd)
  1090. {
  1091. struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
  1092. int rc = 0;
  1093. unsigned long flags;
  1094. dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
  1095. spin_lock_irqsave(&vhci->lock, flags);
  1096. if (!HCD_HW_ACCESSIBLE(hcd))
  1097. rc = -ESHUTDOWN;
  1098. else
  1099. hcd->state = HC_STATE_RUNNING;
  1100. spin_unlock_irqrestore(&vhci->lock, flags);
  1101. return rc;
  1102. }
  1103. #else
  1104. #define vhci_bus_suspend NULL
  1105. #define vhci_bus_resume NULL
  1106. #endif
  1107. /* Change a group of bulk endpoints to support multiple stream IDs */
  1108. static int vhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
  1109. struct usb_host_endpoint **eps, unsigned int num_eps,
  1110. unsigned int num_streams, gfp_t mem_flags)
  1111. {
  1112. dev_dbg(&hcd->self.root_hub->dev, "vhci_alloc_streams not implemented\n");
  1113. return 0;
  1114. }
  1115. /* Reverts a group of bulk endpoints back to not using stream IDs. */
  1116. static int vhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
  1117. struct usb_host_endpoint **eps, unsigned int num_eps,
  1118. gfp_t mem_flags)
  1119. {
  1120. dev_dbg(&hcd->self.root_hub->dev, "vhci_free_streams not implemented\n");
  1121. return 0;
  1122. }
  1123. static const struct hc_driver vhci_hc_driver = {
  1124. .description = driver_name,
  1125. .product_desc = driver_desc,
  1126. .hcd_priv_size = sizeof(struct vhci_hcd),
  1127. .flags = HCD_USB31 | HCD_SHARED,
  1128. .reset = vhci_setup,
  1129. .start = vhci_start,
  1130. .stop = vhci_stop,
  1131. .urb_enqueue = vhci_urb_enqueue,
  1132. .urb_dequeue = vhci_urb_dequeue,
  1133. .get_frame_number = vhci_get_frame_number,
  1134. .hub_status_data = vhci_hub_status,
  1135. .hub_control = vhci_hub_control,
  1136. .bus_suspend = vhci_bus_suspend,
  1137. .bus_resume = vhci_bus_resume,
  1138. .alloc_streams = vhci_alloc_streams,
  1139. .free_streams = vhci_free_streams,
  1140. };
  1141. static int vhci_hcd_probe(struct platform_device *pdev)
  1142. {
  1143. struct vhci *vhci = *((void **)dev_get_platdata(&pdev->dev));
  1144. struct usb_hcd *hcd_hs;
  1145. struct usb_hcd *hcd_ss;
  1146. int ret;
  1147. usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
  1148. /*
  1149. * Allocate and initialize hcd.
  1150. * Our private data is also allocated automatically.
  1151. */
  1152. hcd_hs = usb_create_hcd(&vhci_hc_driver, &pdev->dev, dev_name(&pdev->dev));
  1153. if (!hcd_hs) {
  1154. pr_err("create primary hcd failed\n");
  1155. return -ENOMEM;
  1156. }
  1157. hcd_hs->has_tt = 1;
  1158. /*
  1159. * Finish generic HCD structure initialization and register.
  1160. * Call the driver's reset() and start() routines.
  1161. */
  1162. ret = usb_add_hcd(hcd_hs, 0, 0);
  1163. if (ret != 0) {
  1164. pr_err("usb_add_hcd hs failed %d\n", ret);
  1165. goto put_usb2_hcd;
  1166. }
  1167. hcd_ss = usb_create_shared_hcd(&vhci_hc_driver, &pdev->dev,
  1168. dev_name(&pdev->dev), hcd_hs);
  1169. if (!hcd_ss) {
  1170. ret = -ENOMEM;
  1171. pr_err("create shared hcd failed\n");
  1172. goto remove_usb2_hcd;
  1173. }
  1174. ret = usb_add_hcd(hcd_ss, 0, 0);
  1175. if (ret) {
  1176. pr_err("usb_add_hcd ss failed %d\n", ret);
  1177. goto put_usb3_hcd;
  1178. }
  1179. usbip_dbg_vhci_hc("bye\n");
  1180. return 0;
  1181. put_usb3_hcd:
  1182. usb_put_hcd(hcd_ss);
  1183. remove_usb2_hcd:
  1184. usb_remove_hcd(hcd_hs);
  1185. put_usb2_hcd:
  1186. usb_put_hcd(hcd_hs);
  1187. vhci->vhci_hcd_hs = NULL;
  1188. vhci->vhci_hcd_ss = NULL;
  1189. return ret;
  1190. }
  1191. static void vhci_hcd_remove(struct platform_device *pdev)
  1192. {
  1193. struct vhci *vhci = *((void **)dev_get_platdata(&pdev->dev));
  1194. /*
  1195. * Disconnects the root hub,
  1196. * then reverses the effects of usb_add_hcd(),
  1197. * invoking the HCD's stop() methods.
  1198. */
  1199. usb_remove_hcd(vhci_hcd_to_hcd(vhci->vhci_hcd_ss));
  1200. usb_put_hcd(vhci_hcd_to_hcd(vhci->vhci_hcd_ss));
  1201. usb_remove_hcd(vhci_hcd_to_hcd(vhci->vhci_hcd_hs));
  1202. usb_put_hcd(vhci_hcd_to_hcd(vhci->vhci_hcd_hs));
  1203. vhci->vhci_hcd_hs = NULL;
  1204. vhci->vhci_hcd_ss = NULL;
  1205. }
  1206. #ifdef CONFIG_PM
  1207. /* what should happen for USB/IP under suspend/resume? */
  1208. static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
  1209. {
  1210. struct usb_hcd *hcd;
  1211. struct vhci *vhci;
  1212. int rhport;
  1213. int connected = 0;
  1214. int ret = 0;
  1215. unsigned long flags;
  1216. dev_dbg(&pdev->dev, "%s\n", __func__);
  1217. hcd = platform_get_drvdata(pdev);
  1218. if (!hcd)
  1219. return 0;
  1220. vhci = *((void **)dev_get_platdata(hcd->self.controller));
  1221. spin_lock_irqsave(&vhci->lock, flags);
  1222. for (rhport = 0; rhport < VHCI_HC_PORTS; rhport++) {
  1223. if (vhci->vhci_hcd_hs->port_status[rhport] &
  1224. USB_PORT_STAT_CONNECTION)
  1225. connected += 1;
  1226. if (vhci->vhci_hcd_ss->port_status[rhport] &
  1227. USB_PORT_STAT_CONNECTION)
  1228. connected += 1;
  1229. }
  1230. spin_unlock_irqrestore(&vhci->lock, flags);
  1231. if (connected > 0) {
  1232. dev_info(&pdev->dev,
  1233. "We have %d active connection%s. Do not suspend.\n",
  1234. connected, (connected == 1 ? "" : "s"));
  1235. ret = -EBUSY;
  1236. } else {
  1237. dev_info(&pdev->dev, "suspend vhci_hcd");
  1238. clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
  1239. }
  1240. return ret;
  1241. }
  1242. static int vhci_hcd_resume(struct platform_device *pdev)
  1243. {
  1244. struct usb_hcd *hcd;
  1245. dev_dbg(&pdev->dev, "%s\n", __func__);
  1246. hcd = platform_get_drvdata(pdev);
  1247. if (!hcd)
  1248. return 0;
  1249. set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
  1250. usb_hcd_poll_rh_status(hcd);
  1251. return 0;
  1252. }
  1253. #else
  1254. #define vhci_hcd_suspend NULL
  1255. #define vhci_hcd_resume NULL
  1256. #endif
  1257. static struct platform_driver vhci_driver = {
  1258. .probe = vhci_hcd_probe,
  1259. .remove_new = vhci_hcd_remove,
  1260. .suspend = vhci_hcd_suspend,
  1261. .resume = vhci_hcd_resume,
  1262. .driver = {
  1263. .name = driver_name,
  1264. },
  1265. };
  1266. static void del_platform_devices(void)
  1267. {
  1268. int i;
  1269. for (i = 0; i < vhci_num_controllers; i++) {
  1270. platform_device_unregister(vhcis[i].pdev);
  1271. vhcis[i].pdev = NULL;
  1272. }
  1273. sysfs_remove_link(&platform_bus.kobj, driver_name);
  1274. }
  1275. static int __init vhci_hcd_init(void)
  1276. {
  1277. int i, ret;
  1278. if (usb_disabled())
  1279. return -ENODEV;
  1280. if (vhci_num_controllers < 1)
  1281. vhci_num_controllers = 1;
  1282. vhcis = kcalloc(vhci_num_controllers, sizeof(struct vhci), GFP_KERNEL);
  1283. if (vhcis == NULL)
  1284. return -ENOMEM;
  1285. ret = platform_driver_register(&vhci_driver);
  1286. if (ret)
  1287. goto err_driver_register;
  1288. for (i = 0; i < vhci_num_controllers; i++) {
  1289. void *vhci = &vhcis[i];
  1290. struct platform_device_info pdevinfo = {
  1291. .name = driver_name,
  1292. .id = i,
  1293. .data = &vhci,
  1294. .size_data = sizeof(void *),
  1295. };
  1296. vhcis[i].pdev = platform_device_register_full(&pdevinfo);
  1297. ret = PTR_ERR_OR_ZERO(vhcis[i].pdev);
  1298. if (ret < 0) {
  1299. while (i--)
  1300. platform_device_unregister(vhcis[i].pdev);
  1301. goto err_add_hcd;
  1302. }
  1303. }
  1304. return 0;
  1305. err_add_hcd:
  1306. platform_driver_unregister(&vhci_driver);
  1307. err_driver_register:
  1308. kfree(vhcis);
  1309. return ret;
  1310. }
  1311. static void __exit vhci_hcd_exit(void)
  1312. {
  1313. del_platform_devices();
  1314. platform_driver_unregister(&vhci_driver);
  1315. kfree(vhcis);
  1316. }
  1317. module_init(vhci_hcd_init);
  1318. module_exit(vhci_hcd_exit);
  1319. MODULE_AUTHOR(DRIVER_AUTHOR);
  1320. MODULE_DESCRIPTION(DRIVER_DESC);
  1321. MODULE_LICENSE("GPL");