ohci-pci.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. * OHCI HCD (Host Controller Driver) for USB.
  3. *
  4. * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
  5. * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
  6. *
  7. * [ Initialisation is based on Linus' ]
  8. * [ uhci code and gregs ohci fragments ]
  9. * [ (C) Copyright 1999 Linus Torvalds ]
  10. * [ (C) Copyright 1999 Gregory P. Smith]
  11. *
  12. * PCI Bus Glue
  13. *
  14. * This file is licenced under the GPL.
  15. */
  16. #ifndef CONFIG_PCI
  17. #error "This file is PCI bus glue. CONFIG_PCI must be defined."
  18. #endif
  19. /*-------------------------------------------------------------------------*/
  20. static int
  21. ohci_pci_reset (struct usb_hcd *hcd)
  22. {
  23. struct ohci_hcd *ohci = hcd_to_ohci (hcd);
  24. ohci_hcd_init (ohci);
  25. return ohci_init (ohci);
  26. }
  27. static int __devinit
  28. ohci_pci_start (struct usb_hcd *hcd)
  29. {
  30. struct ohci_hcd *ohci = hcd_to_ohci (hcd);
  31. int ret;
  32. if(hcd->self.controller && hcd->self.controller->bus == &pci_bus_type) {
  33. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  34. /* AMD 756, for most chips (early revs), corrupts register
  35. * values on read ... so enable the vendor workaround.
  36. */
  37. if (pdev->vendor == PCI_VENDOR_ID_AMD
  38. && pdev->device == 0x740c) {
  39. ohci->flags = OHCI_QUIRK_AMD756;
  40. ohci_dbg (ohci, "AMD756 erratum 4 workaround\n");
  41. // also somewhat erratum 10 (suspend/resume issues)
  42. }
  43. /* FIXME for some of the early AMD 760 southbridges, OHCI
  44. * won't work at all. blacklist them.
  45. */
  46. /* Apple's OHCI driver has a lot of bizarre workarounds
  47. * for this chip. Evidently control and bulk lists
  48. * can get confused. (B&W G3 models, and ...)
  49. */
  50. else if (pdev->vendor == PCI_VENDOR_ID_OPTI
  51. && pdev->device == 0xc861) {
  52. ohci_dbg (ohci,
  53. "WARNING: OPTi workarounds unavailable\n");
  54. }
  55. /* Check for NSC87560. We have to look at the bridge (fn1) to
  56. * identify the USB (fn2). This quirk might apply to more or
  57. * even all NSC stuff.
  58. */
  59. else if (pdev->vendor == PCI_VENDOR_ID_NS) {
  60. struct pci_dev *b;
  61. b = pci_find_slot (pdev->bus->number,
  62. PCI_DEVFN (PCI_SLOT (pdev->devfn), 1));
  63. if (b && b->device == PCI_DEVICE_ID_NS_87560_LIO
  64. && b->vendor == PCI_VENDOR_ID_NS) {
  65. ohci->flags |= OHCI_QUIRK_SUPERIO;
  66. ohci_dbg (ohci, "Using NSC SuperIO setup\n");
  67. }
  68. }
  69. /* Check for Compaq's ZFMicro chipset, which needs short
  70. * delays before control or bulk queues get re-activated
  71. * in finish_unlinks()
  72. */
  73. else if (pdev->vendor == PCI_VENDOR_ID_COMPAQ
  74. && pdev->device == 0xa0f8) {
  75. ohci->flags |= OHCI_QUIRK_ZFMICRO;
  76. ohci_dbg (ohci,
  77. "enabled Compaq ZFMicro chipset quirk\n");
  78. }
  79. }
  80. /* NOTE: there may have already been a first reset, to
  81. * keep bios/smm irqs from making trouble
  82. */
  83. if ((ret = ohci_run (ohci)) < 0) {
  84. ohci_err (ohci, "can't start\n");
  85. ohci_stop (hcd);
  86. return ret;
  87. }
  88. return 0;
  89. }
  90. #ifdef CONFIG_PM
  91. static int ohci_pci_suspend (struct usb_hcd *hcd, pm_message_t message)
  92. {
  93. struct ohci_hcd *ohci = hcd_to_ohci (hcd);
  94. unsigned long flags;
  95. int rc = 0;
  96. /* Root hub was already suspended. Disable irq emission and
  97. * mark HW unaccessible, bail out if RH has been resumed. Use
  98. * the spinlock to properly synchronize with possible pending
  99. * RH suspend or resume activity.
  100. *
  101. * This is still racy as hcd->state is manipulated outside of
  102. * any locks =P But that will be a different fix.
  103. */
  104. spin_lock_irqsave (&ohci->lock, flags);
  105. if (hcd->state != HC_STATE_SUSPENDED) {
  106. rc = -EINVAL;
  107. goto bail;
  108. }
  109. ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
  110. (void)ohci_readl(ohci, &ohci->regs->intrdisable);
  111. clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
  112. bail:
  113. spin_unlock_irqrestore (&ohci->lock, flags);
  114. return rc;
  115. }
  116. static int ohci_pci_resume (struct usb_hcd *hcd)
  117. {
  118. set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
  119. usb_hcd_resume_root_hub(hcd);
  120. return 0;
  121. }
  122. #endif /* CONFIG_PM */
  123. /*-------------------------------------------------------------------------*/
  124. static const struct hc_driver ohci_pci_hc_driver = {
  125. .description = hcd_name,
  126. .product_desc = "OHCI Host Controller",
  127. .hcd_priv_size = sizeof(struct ohci_hcd),
  128. /*
  129. * generic hardware linkage
  130. */
  131. .irq = ohci_irq,
  132. .flags = HCD_MEMORY | HCD_USB11,
  133. /*
  134. * basic lifecycle operations
  135. */
  136. .reset = ohci_pci_reset,
  137. .start = ohci_pci_start,
  138. #ifdef CONFIG_PM
  139. .suspend = ohci_pci_suspend,
  140. .resume = ohci_pci_resume,
  141. #endif
  142. .stop = ohci_stop,
  143. /*
  144. * managing i/o requests and associated device resources
  145. */
  146. .urb_enqueue = ohci_urb_enqueue,
  147. .urb_dequeue = ohci_urb_dequeue,
  148. .endpoint_disable = ohci_endpoint_disable,
  149. /*
  150. * scheduling support
  151. */
  152. .get_frame_number = ohci_get_frame,
  153. /*
  154. * root hub support
  155. */
  156. .hub_status_data = ohci_hub_status_data,
  157. .hub_control = ohci_hub_control,
  158. #ifdef CONFIG_PM
  159. .bus_suspend = ohci_bus_suspend,
  160. .bus_resume = ohci_bus_resume,
  161. #endif
  162. .start_port_reset = ohci_start_port_reset,
  163. };
  164. /*-------------------------------------------------------------------------*/
  165. static const struct pci_device_id pci_ids [] = { {
  166. /* handle any USB OHCI controller */
  167. PCI_DEVICE_CLASS((PCI_CLASS_SERIAL_USB << 8) | 0x10, ~0),
  168. .driver_data = (unsigned long) &ohci_pci_hc_driver,
  169. }, { /* end: all zeroes */ }
  170. };
  171. MODULE_DEVICE_TABLE (pci, pci_ids);
  172. /* pci driver glue; this is a "new style" PCI driver module */
  173. static struct pci_driver ohci_pci_driver = {
  174. .name = (char *) hcd_name,
  175. .id_table = pci_ids,
  176. .probe = usb_hcd_pci_probe,
  177. .remove = usb_hcd_pci_remove,
  178. #ifdef CONFIG_PM
  179. .suspend = usb_hcd_pci_suspend,
  180. .resume = usb_hcd_pci_resume,
  181. #endif
  182. };
  183. static int __init ohci_hcd_pci_init (void)
  184. {
  185. printk (KERN_DEBUG "%s: " DRIVER_INFO " (PCI)\n", hcd_name);
  186. if (usb_disabled())
  187. return -ENODEV;
  188. pr_debug ("%s: block sizes: ed %Zd td %Zd\n", hcd_name,
  189. sizeof (struct ed), sizeof (struct td));
  190. return pci_register_driver (&ohci_pci_driver);
  191. }
  192. module_init (ohci_hcd_pci_init);
  193. /*-------------------------------------------------------------------------*/
  194. static void __exit ohci_hcd_pci_cleanup (void)
  195. {
  196. pci_unregister_driver (&ohci_pci_driver);
  197. }
  198. module_exit (ohci_hcd_pci_cleanup);