hub.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * USB hub driver.
  3.  *
  4.  * (C) Copyright 1999 Linus Torvalds
  5.  * (C) Copyright 1999 Johannes Erdfelt
  6.  * (C) Copyright 1999 Gregory P. Smith
  7.  * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
  8.  *
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/kernel.h>
  12. #include <linux/module.h>
  13. #include <linux/completion.h>
  14. #include <linux/sched.h>
  15. #include <linux/list.h>
  16. #include <linux/slab.h>
  17. #include <linux/smp_lock.h>
  18. #ifdef CONFIG_USB_DEBUG
  19. #define DEBUG
  20. #else
  21. #undef DEBUG
  22. #endif
  23. #include <linux/usb.h>
  24. #include <linux/usbdevice_fs.h>
  25. #include <asm/semaphore.h>
  26. #include <asm/uaccess.h>
  27. #include <asm/byteorder.h>
  28. #include "hub.h"
  29. /* Wakes up khubd */
  30. static spinlock_t hub_event_lock = SPIN_LOCK_UNLOCKED;
  31. static DECLARE_MUTEX(usb_address0_sem);
  32. static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
  33. static LIST_HEAD(hub_list); /* List containing all of the hubs (for cleanup) */
  34. static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
  35. static int khubd_pid = 0; /* PID of khubd */
  36. static DECLARE_COMPLETION(khubd_exited);
  37. #ifdef DEBUG
  38. static inline char *portspeed (int portstatus)
  39. {
  40. if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
  41.      return "480 Mb/s";
  42. else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
  43. return "1.5 Mb/s";
  44. else
  45. return "12 Mb/s";
  46. }
  47. #endif
  48. /* USB 2.0 spec Section 11.24.4.5 */
  49. static int usb_get_hub_descriptor(struct usb_device *dev, void *data, int size)
  50. {
  51. return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  52. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
  53. USB_DT_HUB << 8, 0, data, size, HZ);
  54. }
  55. /*
  56.  * USB 2.0 spec Section 11.24.2.1
  57.  */
  58. static int usb_clear_hub_feature(struct usb_device *dev, int feature)
  59. {
  60. return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  61. USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, HZ);
  62. }
  63. /*
  64.  * USB 2.0 spec Section 11.24.2.2
  65.  * BUG: doesn't handle port indicator selector in high byte of wIndex
  66.  */
  67. static int usb_clear_port_feature(struct usb_device *dev, int port, int feature)
  68. {
  69. return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  70. USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port, NULL, 0, HZ);
  71. }
  72. /*
  73.  * USB 2.0 spec Section 11.24.2.13
  74.  * BUG: doesn't handle port indicator selector in high byte of wIndex
  75.  */
  76. static int usb_set_port_feature(struct usb_device *dev, int port, int feature)
  77. {
  78. return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  79. USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port, NULL, 0, HZ);
  80. }
  81. /*
  82.  * USB 2.0 spec Section 11.24.2.6
  83.  */
  84. static int usb_get_hub_status(struct usb_device *dev, void *data)
  85. {
  86. return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  87. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
  88. data, sizeof(struct usb_hub_status), HZ);
  89. }
  90. /*
  91.  * USB 2.0 spec Section 11.24.2.7
  92.  */
  93. static int usb_get_port_status(struct usb_device *dev, int port, void *data)
  94. {
  95. return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  96. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port,
  97. data, sizeof(struct usb_hub_status), HZ);
  98. }
  99. static void hub_irq(struct urb *urb)
  100. {
  101. struct usb_hub *hub = (struct usb_hub *)urb->context;
  102. unsigned long flags;
  103. /* Cause a hub reset after 10 consecutive errors */
  104. if (urb->status) {
  105. if (urb->status == -ENOENT)
  106. return;
  107. dbg("nonzero status in irq %d", urb->status);
  108. if ((++hub->nerrors < 10) || hub->error)
  109. return;
  110. hub->error = urb->status;
  111. }
  112. hub->nerrors = 0;
  113. /* Something happened, let khubd figure it out */
  114. spin_lock_irqsave(&hub_event_lock, flags);
  115. if (list_empty(&hub->event_list)) {
  116. list_add(&hub->event_list, &hub_event_list);
  117. wake_up(&khubd_wait);
  118. }
  119. spin_unlock_irqrestore(&hub_event_lock, flags);
  120. }
  121. static void usb_hub_power_on(struct usb_hub *hub)
  122. {
  123. int i;
  124. /* Enable power to the ports */
  125. dbg("enabling power on all ports");
  126. for (i = 0; i < hub->descriptor->bNbrPorts; i++)
  127. usb_set_port_feature(hub->dev, i + 1, USB_PORT_FEAT_POWER);
  128. /* Wait for power to be enabled */
  129. wait_ms(hub->descriptor->bPwrOn2PwrGood * 2);
  130. }
  131. static int usb_hub_configure(struct usb_hub *hub, struct usb_endpoint_descriptor *endpoint)
  132. {
  133. struct usb_device *dev = hub->dev;
  134. struct usb_hub_status *hubstatus;
  135. char portstr[USB_MAXCHILDREN + 1];
  136. unsigned int pipe;
  137. int i, maxp, ret;
  138. hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
  139. if (!hub->descriptor) {
  140. err("Unable to kmalloc %Zd bytes for hub descriptor", sizeof(*hub->descriptor));
  141. return -1;
  142. }
  143. /* Request the entire hub descriptor. */
  144. ret = usb_get_hub_descriptor(dev, hub->descriptor, sizeof(*hub->descriptor));
  145. /* <hub->descriptor> is large enough for a hub with 127 ports;
  146.  * the hub can/will return fewer bytes here. */
  147. if (ret < 0) {
  148. err("Unable to get hub descriptor (err = %d)", ret);
  149. kfree(hub->descriptor);
  150. return -1;
  151. }
  152. dev->maxchild = hub->descriptor->bNbrPorts;
  153. info("%d port%s detected", hub->descriptor->bNbrPorts, (hub->descriptor->bNbrPorts == 1) ? "" : "s");
  154. le16_to_cpus(&hub->descriptor->wHubCharacteristics);
  155. if (hub->descriptor->wHubCharacteristics & HUB_CHAR_COMPOUND)
  156. dbg("part of a compound device");
  157. else
  158. dbg("standalone hub");
  159. switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_LPSM) {
  160. case 0x00:
  161. dbg("ganged power switching");
  162. break;
  163. case 0x01:
  164. dbg("individual port power switching");
  165. break;
  166. case 0x02:
  167. case 0x03:
  168. dbg("unknown reserved power switching mode");
  169. break;
  170. }
  171. switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_OCPM) {
  172. case 0x00:
  173. dbg("global over-current protection");
  174. break;
  175. case 0x08:
  176. dbg("individual port over-current protection");
  177. break;
  178. case 0x10:
  179. case 0x18:
  180. dbg("no over-current protection");
  181.                         break;
  182. }
  183. switch (dev->descriptor.bDeviceProtocol) {
  184. case 0:
  185. break;
  186. case 1:
  187. dbg("Single TT");
  188. hub->tt.hub = dev;
  189. break;
  190. case 2:
  191. dbg("TT per port");
  192. hub->tt.hub = dev;
  193. hub->tt.multi = 1;
  194. break;
  195. default:
  196. dbg("Unrecognized hub protocol %d",
  197. dev->descriptor.bDeviceProtocol);
  198. break;
  199. }
  200. switch (hub->descriptor->wHubCharacteristics & HUB_CHAR_TTTT) {
  201. case 0x00:
  202. if (dev->descriptor.bDeviceProtocol != 0)
  203. dbg("TT requires at most 8 FS bit times");
  204. break;
  205. case 0x20:
  206. dbg("TT requires at most 16 FS bit times");
  207. break;
  208. case 0x40:
  209. dbg("TT requires at most 24 FS bit times");
  210. break;
  211. case 0x60:
  212. dbg("TT requires at most 32 FS bit times");
  213. break;
  214. }
  215. dbg("Port indicators are %s supported", 
  216.     (hub->descriptor->wHubCharacteristics & HUB_CHAR_PORTIND) ? "" : "not");
  217. dbg("power on to power good time: %dms", hub->descriptor->bPwrOn2PwrGood * 2);
  218. dbg("hub controller current requirement: %dmA", hub->descriptor->bHubContrCurrent);
  219. for (i = 0; i < dev->maxchild; i++)
  220. portstr[i] = hub->descriptor->DeviceRemovable[((i + 1) / 8)] & (1 << ((i + 1) % 8)) ? 'F' : 'R';
  221. portstr[dev->maxchild] = 0;
  222. dbg("port removable status: %s", portstr);
  223. hubstatus = kmalloc(sizeof *hubstatus, GFP_KERNEL);
  224. if (!hubstatus) {
  225. err("Unable to allocate hubstatus");
  226. kfree(hub->descriptor);
  227. return -1;
  228. }
  229. ret = usb_get_hub_status(dev, hubstatus);
  230. if (ret < 0) {
  231. err("Unable to get hub status (err = %d)", ret);
  232. kfree(hubstatus);
  233. kfree(hub->descriptor);
  234. return -1;
  235. }
  236. le16_to_cpus(&hubstatus->wHubStatus);
  237. dbg("local power source is %s",
  238. (hubstatus->wHubStatus & HUB_STATUS_LOCAL_POWER) ? "lost (inactive)" : "good");
  239. dbg("%sover-current condition exists",
  240. (hubstatus->wHubStatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
  241. kfree(hubstatus);
  242. /* Start the interrupt endpoint */
  243. pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
  244. maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
  245. if (maxp > sizeof(hub->buffer))
  246. maxp = sizeof(hub->buffer);
  247. hub->urb = usb_alloc_urb(0);
  248. if (!hub->urb) {
  249. err("couldn't allocate interrupt urb");
  250. kfree(hub->descriptor);
  251. return -1;
  252. }
  253. FILL_INT_URB(hub->urb, dev, pipe, hub->buffer, maxp, hub_irq, hub,
  254. /* NOTE:  in 2.5 fill_int_urb() converts the encoding */
  255. (dev->speed == USB_SPEED_HIGH)
  256. ? 1 << (endpoint->bInterval - 1)
  257. : endpoint->bInterval);
  258. ret = usb_submit_urb(hub->urb);
  259. if (ret) {
  260. err("usb_submit_urb failed (%d)", ret);
  261. kfree(hub->descriptor);
  262. return -1;
  263. }
  264. /* Wake up khubd */
  265. wake_up(&khubd_wait);
  266. usb_hub_power_on(hub);
  267. return 0;
  268. }
  269. static void *hub_probe(struct usb_device *dev, unsigned int i,
  270.        const struct usb_device_id *id)
  271. {
  272. struct usb_interface_descriptor *interface;
  273. struct usb_endpoint_descriptor *endpoint;
  274. struct usb_hub *hub;
  275. unsigned long flags;
  276. interface = &dev->actconfig->interface[i].altsetting[0];
  277. /* Some hubs have a subclass of 1, which AFAICT according to the */
  278. /*  specs is not defined, but it works */
  279. if ((interface->bInterfaceSubClass != 0) &&
  280.     (interface->bInterfaceSubClass != 1)) {
  281. err("invalid subclass (%d) for USB hub device #%d",
  282. interface->bInterfaceSubClass, dev->devnum);
  283. return NULL;
  284. }
  285. /* Multiple endpoints? What kind of mutant ninja-hub is this? */
  286. if (interface->bNumEndpoints != 1) {
  287. err("invalid bNumEndpoints (%d) for USB hub device #%d",
  288. interface->bNumEndpoints, dev->devnum);
  289. return NULL;
  290. }
  291. endpoint = &interface->endpoint[0];
  292. /* Output endpoint? Curiousier and curiousier.. */
  293. if (!(endpoint->bEndpointAddress & USB_DIR_IN)) {
  294. err("Device #%d is hub class, but has output endpoint?",
  295. dev->devnum);
  296. return NULL;
  297. }
  298. /* If it's not an interrupt endpoint, we'd better punt! */
  299. if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT) {
  300. err("Device #%d is hub class, but has endpoint other than interrupt?",
  301. dev->devnum);
  302. return NULL;
  303. }
  304. /* We found a hub */
  305. info("USB hub found");
  306. hub = kmalloc(sizeof(*hub), GFP_KERNEL);
  307. if (!hub) {
  308. err("couldn't kmalloc hub struct");
  309. return NULL;
  310. }
  311. memset(hub, 0, sizeof(*hub));
  312. INIT_LIST_HEAD(&hub->event_list);
  313. hub->dev = dev;
  314. init_MUTEX(&hub->khubd_sem);
  315. /* Record the new hub's existence */
  316. spin_lock_irqsave(&hub_event_lock, flags);
  317. INIT_LIST_HEAD(&hub->hub_list);
  318. list_add(&hub->hub_list, &hub_list);
  319. spin_unlock_irqrestore(&hub_event_lock, flags);
  320. if (usb_hub_configure(hub, endpoint) >= 0)
  321. return hub;
  322. err("hub configuration failed for device #%d", dev->devnum);
  323. /* free hub, but first clean up its list. */
  324. spin_lock_irqsave(&hub_event_lock, flags);
  325. /* Delete it and then reset it */
  326. list_del(&hub->event_list);
  327. INIT_LIST_HEAD(&hub->event_list);
  328. list_del(&hub->hub_list);
  329. INIT_LIST_HEAD(&hub->hub_list);
  330. spin_unlock_irqrestore(&hub_event_lock, flags);
  331. kfree(hub);
  332. return NULL;
  333. }
  334. static void hub_disconnect(struct usb_device *dev, void *ptr)
  335. {
  336. struct usb_hub *hub = (struct usb_hub *)ptr;
  337. unsigned long flags;
  338. spin_lock_irqsave(&hub_event_lock, flags);
  339. /* Delete it and then reset it */
  340. list_del(&hub->event_list);
  341. INIT_LIST_HEAD(&hub->event_list);
  342. list_del(&hub->hub_list);
  343. INIT_LIST_HEAD(&hub->hub_list);
  344. spin_unlock_irqrestore(&hub_event_lock, flags);
  345. down(&hub->khubd_sem); /* Wait for khubd to leave this hub alone. */
  346. up(&hub->khubd_sem);
  347. if (hub->urb) {
  348. usb_unlink_urb(hub->urb);
  349. usb_free_urb(hub->urb);
  350. hub->urb = NULL;
  351. }
  352. if (hub->descriptor) {
  353. kfree(hub->descriptor);
  354. hub->descriptor = NULL;
  355. }
  356. /* Free the memory */
  357. kfree(hub);
  358. }
  359. static int hub_ioctl(struct usb_device *hub, unsigned int code, void *user_data)
  360. {
  361. /* assert ifno == 0 (part of hub spec) */
  362. switch (code) {
  363. case USBDEVFS_HUB_PORTINFO: {
  364. struct usbdevfs_hub_portinfo *info = user_data;
  365. unsigned long flags;
  366. int i;
  367. spin_lock_irqsave(&hub_event_lock, flags);
  368. if (hub->devnum <= 0)
  369. info->nports = 0;
  370. else {
  371. info->nports = hub->maxchild;
  372. for (i = 0; i < info->nports; i++) {
  373. if (hub->children[i] == NULL)
  374. info->port[i] = 0;
  375. else
  376. info->port[i] = hub->children[i]->devnum;
  377. }
  378. }
  379. spin_unlock_irqrestore(&hub_event_lock, flags);
  380. return info->nports + 1;
  381. }
  382. default:
  383. return -ENOSYS;
  384. }
  385. }
  386. static int usb_hub_reset(struct usb_hub *hub)
  387. {
  388. struct usb_device *dev = hub->dev;
  389. int i;
  390. /* Disconnect any attached devices */
  391. for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
  392. if (dev->children[i])
  393. usb_disconnect(&dev->children[i]);
  394. }
  395. /* Attempt to reset the hub */
  396. if (hub->urb)
  397. usb_unlink_urb(hub->urb);
  398. else
  399. return -1;
  400. if (usb_reset_device(dev))
  401. return -1;
  402. hub->urb->dev = dev;                                                    
  403. if (usb_submit_urb(hub->urb))
  404. return -1;
  405. usb_hub_power_on(hub);
  406. return 0;
  407. }
  408. static void usb_hub_disconnect(struct usb_device *dev)
  409. {
  410. struct usb_device *parent = dev->parent;
  411. int i;
  412. /* Find the device pointer to disconnect */
  413. if (parent) {
  414. for (i = 0; i < parent->maxchild; i++) {
  415. if (parent->children[i] == dev) {
  416. usb_disconnect(&parent->children[i]);
  417. return;
  418. }
  419. }
  420. }
  421. err("cannot disconnect hub %d", dev->devnum);
  422. }
  423. static int usb_hub_port_status(struct usb_device *hub, int port,
  424.        u16 *status, u16 *change)
  425. {
  426. struct usb_port_status *portsts;
  427. int ret = -ENOMEM;
  428. portsts = kmalloc(sizeof(*portsts), GFP_KERNEL);
  429. if (portsts) {
  430. ret = usb_get_port_status(hub, port + 1, portsts);
  431. if (ret < 0)
  432. err("%s (%d) failed (err = %d)", __FUNCTION__, hub->devnum, ret);
  433. else {
  434. *status = le16_to_cpu(portsts->wPortStatus);
  435. *change = le16_to_cpu(portsts->wPortChange); 
  436. dbg("port %d, portstatus %x, change %x, %s", port + 1,
  437. *status, *change, portspeed(*status));
  438. ret = 0;
  439. }
  440. kfree(portsts);
  441. }
  442. return ret;
  443. }
  444. #define HUB_RESET_TRIES 5
  445. #define HUB_PROBE_TRIES 2
  446. #define HUB_SHORT_RESET_TIME 10
  447. #define HUB_LONG_RESET_TIME 200
  448. #define HUB_RESET_TIMEOUT 500
  449. /* return: -1 on error, 0 on success, 1 on disconnect.  */
  450. static int usb_hub_port_wait_reset(struct usb_device *hub, int port,
  451. struct usb_device *dev, unsigned int delay)
  452. {
  453. int delay_time, ret;
  454. u16 portstatus;
  455. u16 portchange;
  456. for (delay_time = 0; delay_time < HUB_RESET_TIMEOUT; delay_time += delay) {
  457. /* wait to give the device a chance to reset */
  458. wait_ms(delay);
  459. /* read and decode port status */
  460. ret = usb_hub_port_status(hub, port, &portstatus, &portchange);
  461. if (ret < 0) {
  462. return -1;
  463. }
  464. /* Device went away? */
  465. if (!(portstatus & USB_PORT_STAT_CONNECTION))
  466. return 1;
  467. /* bomb out completely if something weird happened */
  468. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  469. return -1;
  470. /* if we`ve finished resetting, then break out of the loop */
  471. if (!(portstatus & USB_PORT_STAT_RESET) &&
  472.     (portstatus & USB_PORT_STAT_ENABLE)) {
  473. if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  474. dev->speed = USB_SPEED_HIGH;
  475. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  476. dev->speed = USB_SPEED_LOW;
  477. else
  478. dev->speed = USB_SPEED_FULL;
  479. return 0;
  480. }
  481. /* switch to the long delay after two short delay failures */
  482. if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
  483. delay = HUB_LONG_RESET_TIME;
  484. dbg("port %d of hub %d not reset yet, waiting %dms", port + 1,
  485. hub->devnum, delay);
  486. }
  487. return -1;
  488. }
  489. /* return: -1 on error, 0 on success, 1 on disconnect.  */
  490. static int usb_hub_port_reset(struct usb_device *hub, int port,
  491. struct usb_device *dev, unsigned int delay)
  492. {
  493. int i, status;
  494. /* Reset the port */
  495. for (i = 0; i < HUB_RESET_TRIES; i++) {
  496. usb_set_port_feature(hub, port + 1, USB_PORT_FEAT_RESET);
  497. /* return on disconnect or reset */
  498. status = usb_hub_port_wait_reset(hub, port, dev, delay);
  499. if (status != -1) {
  500. usb_clear_port_feature(hub, port + 1, USB_PORT_FEAT_C_RESET);
  501. return status;
  502. }
  503. dbg("port %d of hub %d not enabled, trying reset again...",
  504. port + 1, hub->devnum);
  505. delay = HUB_LONG_RESET_TIME;
  506. }
  507. err("Cannot enable port %i of hub %d, disabling port.",
  508. port + 1, hub->devnum);
  509. err("Maybe the USB cable is bad?");
  510. return -1;
  511. }
  512. void usb_hub_port_disable(struct usb_device *hub, int port)
  513. {
  514. int ret;
  515. ret = usb_clear_port_feature(hub, port + 1, USB_PORT_FEAT_ENABLE);
  516. if (ret)
  517. err("cannot disable port %d of hub %d (err = %d)",
  518. port + 1, hub->devnum, ret);
  519. }
  520. /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
  521.  *
  522.  * Between connect detection and reset signaling there must be a delay
  523.  * of 100ms at least for debounce and power-settling. The corresponding
  524.  * timer shall restart whenever the downstream port detects a disconnect.
  525.  * 
  526.  * Apparently there are some bluetooth and irda-dongles and a number
  527.  * of low-speed devices which require longer delays of about 200-400ms.
  528.  * Not covered by the spec - but easy to deal with.
  529.  *
  530.  * This implementation uses 400ms minimum debounce timeout and checks
  531.  * every 100ms for transient disconnects to restart the delay.
  532.  */
  533. #define HUB_DEBOUNCE_TIMEOUT 400
  534. #define HUB_DEBOUNCE_STEP 100
  535. /* return: -1 on error, 0 on success, 1 on disconnect.  */
  536. static int usb_hub_port_debounce(struct usb_device *hub, int port)
  537. {
  538. int ret;
  539. unsigned delay_time;
  540. u16 portchange, portstatus;
  541. for (delay_time = 0; delay_time < HUB_DEBOUNCE_TIMEOUT; /* empty */ ) {
  542. /* wait debounce step increment */
  543. wait_ms(HUB_DEBOUNCE_STEP);
  544. ret = usb_hub_port_status(hub, port, &portstatus, &portchange);
  545. if (ret < 0)
  546. return -1;
  547. if ((portchange & USB_PORT_STAT_C_CONNECTION)) {
  548. usb_clear_port_feature(hub, port+1, USB_PORT_FEAT_C_CONNECTION);
  549. delay_time = 0;
  550. }
  551. else
  552. delay_time += HUB_DEBOUNCE_STEP;
  553. }
  554. return ((portstatus&USB_PORT_STAT_CONNECTION)) ? 0 : 1;
  555. }
  556. static void usb_hub_port_connect_change(struct usb_hub *hubstate, int port,
  557. u16 portstatus, u16 portchange)
  558. {
  559. struct usb_device *hub = hubstate->dev;
  560. struct usb_device *dev;
  561. unsigned int delay = HUB_SHORT_RESET_TIME;
  562. int i;
  563. dbg("port %d, portstatus %x, change %x, %s",
  564. port + 1, portstatus, portchange, portspeed (portstatus));
  565. /* Clear the connection change status */
  566. usb_clear_port_feature(hub, port + 1, USB_PORT_FEAT_C_CONNECTION);
  567. /* Disconnect any existing devices under this port */
  568. if (hub->children[port])
  569. usb_disconnect(&hub->children[port]);
  570. /* Return now if nothing is connected */
  571. if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
  572. if (portstatus & USB_PORT_STAT_ENABLE)
  573. usb_hub_port_disable(hub, port);
  574. return;
  575. }
  576. if (usb_hub_port_debounce(hub, port)) {
  577. err("connect-debounce failed, port %d disabled", port+1);
  578. usb_hub_port_disable(hub, port);
  579. return;
  580. }
  581. down(&usb_address0_sem);
  582. for (i = 0; i < HUB_PROBE_TRIES; i++) {
  583. struct usb_device *pdev;
  584. int len;
  585. /* Allocate a new device struct */
  586. dev = usb_alloc_dev(hub, hub->bus);
  587. if (!dev) {
  588. err("couldn't allocate usb_device");
  589. break;
  590. }
  591. hub->children[port] = dev;
  592. /* Reset the device */
  593. if (usb_hub_port_reset(hub, port, dev, delay)) {
  594. usb_free_dev(dev);
  595. break;
  596. }
  597. /* Find a new device ID for it */
  598. usb_connect(dev);
  599. /* Set up TT records, if needed  */
  600. if (hub->tt) {
  601. dev->tt = hub->tt;
  602. dev->ttport = hub->ttport;
  603. } else if (dev->speed != USB_SPEED_HIGH
  604. && hub->speed == USB_SPEED_HIGH) {
  605. dev->tt = &hubstate->tt;
  606. dev->ttport = port + 1;
  607. }
  608. /* Save readable and stable topology id, distinguishing
  609.  * devices by location for diagnostics, tools, etc.  The
  610.  * string is a path along hub ports, from the root.  Each
  611.  * device's id will be stable until USB is re-cabled, and
  612.  * hubs are often labeled with these port numbers.
  613.  *
  614.  * Initial size: ".NN" times five hubs + NUL = 16 bytes max
  615.  * (quite rare, since most hubs have 4-6 ports).
  616.  */
  617. pdev = dev->parent;
  618. if (pdev->devpath [0] != '0') /* parent not root? */
  619. len = snprintf (dev->devpath, sizeof dev->devpath,
  620. "%s.%d", pdev->devpath, port + 1);
  621. /* root == "0", root port 2 == "2", port 3 that hub "2.3" */
  622. else
  623. len = snprintf (dev->devpath, sizeof dev->devpath,
  624. "%d", port + 1);
  625. if (len == sizeof dev->devpath)
  626. warn ("devpath size! usb/%03d/%03d path %s",
  627. dev->bus->busnum, dev->devnum, dev->devpath);
  628. info("new USB device %s-%s, assigned address %d",
  629. dev->bus->bus_name, dev->devpath, dev->devnum);
  630. /* Run it through the hoops (find a driver, etc) */
  631. if (!usb_new_device(dev))
  632. goto done;
  633. /* Free the configuration if there was an error */
  634. usb_free_dev(dev);
  635. /* Switch to a long reset time */
  636. delay = HUB_LONG_RESET_TIME;
  637. }
  638. hub->children[port] = NULL;
  639. usb_hub_port_disable(hub, port);
  640. done:
  641. up(&usb_address0_sem);
  642. }
  643. static void usb_hub_events(void)
  644. {
  645. unsigned long flags;
  646. struct list_head *tmp;
  647. struct usb_device *dev;
  648. struct usb_hub *hub;
  649. struct usb_hub_status *hubsts;
  650. u16 hubstatus;
  651. u16 hubchange;
  652. u16 portstatus;
  653. u16 portchange;
  654. int i, ret;
  655. /*
  656.  *  We restart the list everytime to avoid a deadlock with
  657.  * deleting hubs downstream from this one. This should be
  658.  * safe since we delete the hub from the event list.
  659.  * Not the most efficient, but avoids deadlocks.
  660.  */
  661. while (1) {
  662. spin_lock_irqsave(&hub_event_lock, flags);
  663. if (list_empty(&hub_event_list))
  664. break;
  665. /* Grab the next entry from the beginning of the list */
  666. tmp = hub_event_list.next;
  667. hub = list_entry(tmp, struct usb_hub, event_list);
  668. dev = hub->dev;
  669. list_del(tmp);
  670. INIT_LIST_HEAD(tmp);
  671. down(&hub->khubd_sem); /* never blocks, we were on list */
  672. spin_unlock_irqrestore(&hub_event_lock, flags);
  673. if (hub->error) {
  674. dbg("resetting hub %d for error %d", dev->devnum, hub->error);
  675. if (usb_hub_reset(hub)) {
  676. err("error resetting hub %d - disconnecting", dev->devnum);
  677. up(&hub->khubd_sem);
  678. usb_hub_disconnect(dev);
  679. continue;
  680. }
  681. hub->nerrors = 0;
  682. hub->error = 0;
  683. }
  684. for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
  685. ret = usb_hub_port_status(dev, i, &portstatus, &portchange);
  686. if (ret < 0) {
  687. continue;
  688. }
  689. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  690. dbg("port %d connection change", i + 1);
  691. usb_hub_port_connect_change(hub, i, portstatus, portchange);
  692. } else if (portchange & USB_PORT_STAT_C_ENABLE) {
  693. dbg("port %d enable change, status %x", i + 1, portstatus);
  694. usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_ENABLE);
  695. /*
  696.  * EM interference sometimes causes bad shielded USB devices to 
  697.  * be shutdown by the hub, this hack enables them again.
  698.  * Works at least with mouse driver. 
  699.  */
  700. if (!(portstatus & USB_PORT_STAT_ENABLE) && 
  701.     (portstatus & USB_PORT_STAT_CONNECTION) && (dev->children[i])) {
  702. err("already running port %i disabled by hub (EMI?), re-enabling...",
  703. i + 1);
  704. usb_hub_port_connect_change(hub, i, portstatus, portchange);
  705. }
  706. }
  707. if (portchange & USB_PORT_STAT_C_SUSPEND) {
  708. dbg("port %d suspend change", i + 1);
  709. usb_clear_port_feature(dev, i + 1,  USB_PORT_FEAT_C_SUSPEND);
  710. }
  711. if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
  712. err("port %d over-current change", i + 1);
  713. usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_OVER_CURRENT);
  714. usb_hub_power_on(hub);
  715. }
  716. if (portchange & USB_PORT_STAT_C_RESET) {
  717. dbg("port %d reset change", i + 1);
  718. usb_clear_port_feature(dev, i + 1, USB_PORT_FEAT_C_RESET);
  719. }
  720. } /* end for i */
  721. /* deal with hub status changes */
  722. hubsts = kmalloc(sizeof *hubsts, GFP_KERNEL);
  723. if (!hubsts) {
  724. err("couldn't allocate hubsts");
  725. } else {
  726. if (usb_get_hub_status(dev, hubsts) < 0)
  727. err("get_hub_status failed");
  728. else {
  729. hubstatus = le16_to_cpup(&hubsts->wHubStatus);
  730. hubchange = le16_to_cpup(&hubsts->wHubChange);
  731. if (hubchange & HUB_CHANGE_LOCAL_POWER) {
  732. dbg("hub power change");
  733. usb_clear_hub_feature(dev, C_HUB_LOCAL_POWER);
  734. }
  735. if (hubchange & HUB_CHANGE_OVERCURRENT) {
  736. dbg("hub overcurrent change");
  737. wait_ms(500); /* Cool down */
  738. usb_clear_hub_feature(dev, C_HUB_OVER_CURRENT);
  739. usb_hub_power_on(hub);
  740. }
  741. }
  742. kfree(hubsts);
  743. }
  744. up(&hub->khubd_sem);
  745.         } /* end while (1) */
  746. spin_unlock_irqrestore(&hub_event_lock, flags);
  747. }
  748. static int usb_hub_thread(void *__hub)
  749. {
  750. lock_kernel();
  751. /*
  752.  * This thread doesn't need any user-level access,
  753.  * so get rid of all our resources
  754.  */
  755. daemonize();
  756. reparent_to_init();
  757. /* Setup a nice name */
  758. strcpy(current->comm, "khubd");
  759. /* Send me a signal to get me die (for debugging) */
  760. do {
  761. usb_hub_events();
  762. wait_event_interruptible(khubd_wait, !list_empty(&hub_event_list)); 
  763. } while (!signal_pending(current));
  764. dbg("usb_hub_thread exiting");
  765. unlock_kernel();
  766. complete_and_exit(&khubd_exited, 0);
  767. }
  768. static struct usb_device_id hub_id_table [] = {
  769.     { match_flags: USB_DEVICE_ID_MATCH_INT_CLASS,
  770.       bInterfaceClass: USB_CLASS_HUB},
  771.     { } /* Terminating entry */
  772. };
  773. MODULE_DEVICE_TABLE (usb, hub_id_table);
  774. static struct usb_driver hub_driver = {
  775. name: "hub",
  776. probe: hub_probe,
  777. ioctl: hub_ioctl,
  778. disconnect: hub_disconnect,
  779. id_table: hub_id_table,
  780. };
  781. /*
  782.  * This should be a separate module.
  783.  */
  784. int usb_hub_init(void)
  785. {
  786. int pid;
  787. if (usb_register(&hub_driver) < 0) {
  788. err("Unable to register USB hub driver");
  789. return -1;
  790. }
  791. pid = kernel_thread(usb_hub_thread, NULL,
  792. CLONE_FS | CLONE_FILES | CLONE_SIGHAND);
  793. if (pid >= 0) {
  794. khubd_pid = pid;
  795. return 0;
  796. }
  797. /* Fall through if kernel_thread failed */
  798. usb_deregister(&hub_driver);
  799. err("failed to start usb_hub_thread");
  800. return -1;
  801. }
  802. void usb_hub_cleanup(void)
  803. {
  804. int ret;
  805. /* Kill the thread */
  806. ret = kill_proc(khubd_pid, SIGTERM, 1);
  807. wait_for_completion(&khubd_exited);
  808. /*
  809.  * Hub resources are freed for us by usb_deregister. It calls
  810.  * usb_driver_purge on every device which in turn calls that
  811.  * devices disconnect function if it is using this driver.
  812.  * The hub_disconnect function takes care of releasing the
  813.  * individual hub resources. -greg
  814.  */
  815. usb_deregister(&hub_driver);
  816. } /* usb_hub_cleanup() */
  817. /*
  818.  * WARNING - If a driver calls usb_reset_device, you should simulate a
  819.  * disconnect() and probe() for other interfaces you doesn't claim. This
  820.  * is left up to the driver writer right now. This insures other drivers
  821.  * have a chance to re-setup their interface.
  822.  *
  823.  * Take a look at proc_resetdevice in devio.c for some sample code to
  824.  * do this.
  825.  */
  826. int usb_reset_device(struct usb_device *dev)
  827. {
  828. struct usb_device *parent = dev->parent;
  829. struct usb_device_descriptor *descriptor;
  830. int i, ret, port = -1;
  831. if (!parent) {
  832. err("attempting to reset root hub!");
  833. return -EINVAL;
  834. }
  835. for (i = 0; i < parent->maxchild; i++)
  836. if (parent->children[i] == dev) {
  837. port = i;
  838. break;
  839. }
  840. if (port < 0)
  841. return -ENOENT;
  842. down(&usb_address0_sem);
  843. /* Send a reset to the device */
  844. if (usb_hub_port_reset(parent, port, dev, HUB_SHORT_RESET_TIME)) {
  845. usb_hub_port_disable(parent, port);
  846. up(&usb_address0_sem);
  847. return(-ENODEV);
  848. }
  849. /* Reprogram the Address */
  850. ret = usb_set_address(dev);
  851. if (ret < 0) {
  852. err("USB device not accepting new address (error=%d)", ret);
  853. usb_hub_port_disable(parent, port);
  854. up(&usb_address0_sem);
  855. return ret;
  856. }
  857. /* Let the SET_ADDRESS settle */
  858. wait_ms(10);
  859. up(&usb_address0_sem);
  860. /*
  861.  * Now we fetch the configuration descriptors for the device and
  862.  * see if anything has changed. If it has, we dump the current
  863.  * parsed descriptors and reparse from scratch. Then we leave
  864.  * the device alone for the caller to finish setting up.
  865.  *
  866.  * If nothing changed, we reprogram the configuration and then
  867.  * the alternate settings.
  868.  */
  869. descriptor = kmalloc(sizeof *descriptor, GFP_NOIO);
  870. if (!descriptor) {
  871. return -ENOMEM;
  872. }
  873. ret = usb_get_descriptor(dev, USB_DT_DEVICE, 0, descriptor,
  874. sizeof(*descriptor));
  875. if (ret < 0)
  876. return ret;
  877. le16_to_cpus(&descriptor->bcdUSB);
  878. le16_to_cpus(&descriptor->idVendor);
  879. le16_to_cpus(&descriptor->idProduct);
  880. le16_to_cpus(&descriptor->bcdDevice);
  881. if (memcmp(&dev->descriptor, descriptor, sizeof(*descriptor))) {
  882. kfree(descriptor);
  883. usb_destroy_configuration(dev);
  884. ret = usb_get_device_descriptor(dev);
  885. if (ret < sizeof(dev->descriptor)) {
  886. if (ret < 0)
  887. err("unable to get device descriptor (error=%d)", ret);
  888. else
  889. err("USB device descriptor short read (expected %Zi, got %i)", sizeof(dev->descriptor), ret);
  890.         
  891. clear_bit(dev->devnum, &dev->bus->devmap.devicemap);
  892. dev->devnum = -1;
  893. return -EIO;
  894. }
  895. ret = usb_get_configuration(dev);
  896. if (ret < 0) {
  897. err("unable to get configuration (error=%d)", ret);
  898. usb_destroy_configuration(dev);
  899. clear_bit(dev->devnum, &dev->bus->devmap.devicemap);
  900. dev->devnum = -1;
  901. return 1;
  902. }
  903. dev->actconfig = dev->config;
  904. usb_set_maxpacket(dev);
  905. return 1;
  906. }
  907. kfree(descriptor);
  908. ret = usb_set_configuration(dev, dev->actconfig->bConfigurationValue);
  909. if (ret < 0) {
  910. err("failed to set active configuration (error=%d)", ret);
  911. return ret;
  912. }
  913. for (i = 0; i < dev->actconfig->bNumInterfaces; i++) {
  914. struct usb_interface *intf = &dev->actconfig->interface[i];
  915. struct usb_interface_descriptor *as = &intf->altsetting[intf->act_altsetting];
  916. ret = usb_set_interface(dev, as->bInterfaceNumber, as->bAlternateSetting);
  917. if (ret < 0) {
  918. err("failed to set active alternate setting for interface %d (error=%d)", i, ret);
  919. return ret;
  920. }
  921. }
  922. return 0;
  923. }