xhci-pci.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /*
  2. * xHCI host controller driver PCI Bus Glue.
  3. *
  4. * Copyright (C) 2008 Intel Corp.
  5. *
  6. * Author: Sarah Sharp
  7. * Some code borrowed from the Linux EHCI driver.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software Foundation,
  20. * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include <linux/pci.h>
  23. #include <linux/slab.h>
  24. #include <linux/module.h>
  25. #include "xhci.h"
  26. #include "xhci-trace.h"
  27. /* Device for a quirk */
  28. #define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73
  29. #define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000
  30. #define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400
  31. #define PCI_VENDOR_ID_ETRON 0x1b6f
  32. #define PCI_DEVICE_ID_ASROCK_P67 0x7023
  33. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_XHCI 0x8c31
  34. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31
  35. static const char hcd_name[] = "xhci_hcd";
  36. /* called after powerup, by probe or system-pm "wakeup" */
  37. static int xhci_pci_reinit(struct xhci_hcd *xhci, struct pci_dev *pdev)
  38. {
  39. /*
  40. * TODO: Implement finding debug ports later.
  41. * TODO: see if there are any quirks that need to be added to handle
  42. * new extended capabilities.
  43. */
  44. /* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
  45. if (!pci_set_mwi(pdev))
  46. xhci_dbg(xhci, "MWI active\n");
  47. xhci_dbg(xhci, "Finished xhci_pci_reinit\n");
  48. return 0;
  49. }
  50. static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
  51. {
  52. struct pci_dev *pdev = to_pci_dev(dev);
  53. /* Look for vendor-specific quirks */
  54. if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
  55. (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK ||
  56. pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1400)) {
  57. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  58. pdev->revision == 0x0) {
  59. xhci->quirks |= XHCI_RESET_EP_QUIRK;
  60. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  61. "QUIRK: Fresco Logic xHC needs configure"
  62. " endpoint cmd after reset endpoint");
  63. }
  64. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  65. pdev->revision == 0x4) {
  66. xhci->quirks |= XHCI_SLOW_SUSPEND;
  67. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  68. "QUIRK: Fresco Logic xHC revision %u"
  69. "must be suspended extra slowly",
  70. pdev->revision);
  71. }
  72. /* Fresco Logic confirms: all revisions of this chip do not
  73. * support MSI, even though some of them claim to in their PCI
  74. * capabilities.
  75. */
  76. xhci->quirks |= XHCI_BROKEN_MSI;
  77. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  78. "QUIRK: Fresco Logic revision %u "
  79. "has broken MSI implementation",
  80. pdev->revision);
  81. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  82. }
  83. if (pdev->vendor == PCI_VENDOR_ID_NEC)
  84. xhci->quirks |= XHCI_NEC_HOST;
  85. if (pdev->vendor == PCI_VENDOR_ID_AMD && xhci->hci_version == 0x96)
  86. xhci->quirks |= XHCI_AMD_0x96_HOST;
  87. /* AMD PLL quirk */
  88. if (pdev->vendor == PCI_VENDOR_ID_AMD && usb_amd_find_chipset_info())
  89. xhci->quirks |= XHCI_AMD_PLL_FIX;
  90. if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
  91. xhci->quirks |= XHCI_LPM_SUPPORT;
  92. xhci->quirks |= XHCI_INTEL_HOST;
  93. }
  94. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  95. pdev->device == PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI) {
  96. xhci->quirks |= XHCI_EP_LIMIT_QUIRK;
  97. xhci->limit_active_eps = 64;
  98. xhci->quirks |= XHCI_SW_BW_CHECKING;
  99. /*
  100. * PPT desktop boards DH77EB and DH77DF will power back on after
  101. * a few seconds of being shutdown. The fix for this is to
  102. * switch the ports from xHCI to EHCI on shutdown. We can't use
  103. * DMI information to find those particular boards (since each
  104. * vendor will change the board name), so we have to key off all
  105. * PPT chipsets.
  106. */
  107. xhci->quirks |= XHCI_SPURIOUS_REBOOT;
  108. xhci->quirks |= XHCI_AVOID_BEI;
  109. }
  110. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  111. (pdev->device == PCI_DEVICE_ID_INTEL_LYNXPOINT_XHCI ||
  112. pdev->device == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI)) {
  113. /* Workaround for occasional spurious wakeups from S5 (or
  114. * any other sleep) on Haswell machines with LPT and LPT-LP
  115. * with the new Intel BIOS
  116. */
  117. xhci->quirks |= XHCI_SPURIOUS_WAKEUP;
  118. }
  119. if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
  120. pdev->device == PCI_DEVICE_ID_ASROCK_P67) {
  121. xhci->quirks |= XHCI_RESET_ON_RESUME;
  122. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  123. "QUIRK: Resetting on resume");
  124. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  125. }
  126. if (pdev->vendor == PCI_VENDOR_ID_VIA)
  127. xhci->quirks |= XHCI_RESET_ON_RESUME;
  128. }
  129. /* called during probe() after chip reset completes */
  130. static int xhci_pci_setup(struct usb_hcd *hcd)
  131. {
  132. struct xhci_hcd *xhci;
  133. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  134. int retval;
  135. retval = xhci_gen_setup(hcd, xhci_pci_quirks);
  136. if (retval)
  137. return retval;
  138. xhci = hcd_to_xhci(hcd);
  139. if (!usb_hcd_is_primary_hcd(hcd))
  140. return 0;
  141. pci_read_config_byte(pdev, XHCI_SBRN_OFFSET, &xhci->sbrn);
  142. xhci_dbg(xhci, "Got SBRN %u\n", (unsigned int) xhci->sbrn);
  143. /* Find any debug ports */
  144. retval = xhci_pci_reinit(xhci, pdev);
  145. if (!retval)
  146. return retval;
  147. kfree(xhci);
  148. return retval;
  149. }
  150. /*
  151. * We need to register our own PCI probe function (instead of the USB core's
  152. * function) in order to create a second roothub under xHCI.
  153. */
  154. static int xhci_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
  155. {
  156. int retval;
  157. struct xhci_hcd *xhci;
  158. struct hc_driver *driver;
  159. struct usb_hcd *hcd;
  160. driver = (struct hc_driver *)id->driver_data;
  161. /* Register the USB 2.0 roothub.
  162. * FIXME: USB core must know to register the USB 2.0 roothub first.
  163. * This is sort of silly, because we could just set the HCD driver flags
  164. * to say USB 2.0, but I'm not sure what the implications would be in
  165. * the other parts of the HCD code.
  166. */
  167. retval = usb_hcd_pci_probe(dev, id);
  168. if (retval)
  169. return retval;
  170. /* USB 2.0 roothub is stored in the PCI device now. */
  171. hcd = dev_get_drvdata(&dev->dev);
  172. xhci = hcd_to_xhci(hcd);
  173. xhci->shared_hcd = usb_create_shared_hcd(driver, &dev->dev,
  174. pci_name(dev), hcd);
  175. if (!xhci->shared_hcd) {
  176. retval = -ENOMEM;
  177. goto dealloc_usb2_hcd;
  178. }
  179. /* Set the xHCI pointer before xhci_pci_setup() (aka hcd_driver.reset)
  180. * is called by usb_add_hcd().
  181. */
  182. *((struct xhci_hcd **) xhci->shared_hcd->hcd_priv) = xhci;
  183. retval = usb_add_hcd(xhci->shared_hcd, dev->irq,
  184. IRQF_SHARED);
  185. if (retval)
  186. goto put_usb3_hcd;
  187. /* Roothub already marked as USB 3.0 speed */
  188. /* We know the LPM timeout algorithms for this host, let the USB core
  189. * enable and disable LPM for devices under the USB 3.0 roothub.
  190. */
  191. if (xhci->quirks & XHCI_LPM_SUPPORT)
  192. hcd_to_bus(xhci->shared_hcd)->root_hub->lpm_capable = 1;
  193. return 0;
  194. put_usb3_hcd:
  195. usb_put_hcd(xhci->shared_hcd);
  196. dealloc_usb2_hcd:
  197. usb_hcd_pci_remove(dev);
  198. return retval;
  199. }
  200. static void xhci_pci_remove(struct pci_dev *dev)
  201. {
  202. struct xhci_hcd *xhci;
  203. xhci = hcd_to_xhci(pci_get_drvdata(dev));
  204. if (xhci->shared_hcd) {
  205. usb_remove_hcd(xhci->shared_hcd);
  206. usb_put_hcd(xhci->shared_hcd);
  207. }
  208. usb_hcd_pci_remove(dev);
  209. /* Workaround for spurious wakeups at shutdown with HSW */
  210. if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
  211. pci_set_power_state(dev, PCI_D3hot);
  212. kfree(xhci);
  213. }
  214. #ifdef CONFIG_PM
  215. static int xhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
  216. {
  217. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  218. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  219. /*
  220. * Systems with the TI redriver that loses port status change events
  221. * need to have the registers polled during D3, so avoid D3cold.
  222. */
  223. if (xhci_compliance_mode_recovery_timer_quirk_check())
  224. pdev->no_d3cold = true;
  225. return xhci_suspend(xhci);
  226. }
  227. static int xhci_pci_resume(struct usb_hcd *hcd, bool hibernated)
  228. {
  229. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  230. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  231. int retval = 0;
  232. /* The BIOS on systems with the Intel Panther Point chipset may or may
  233. * not support xHCI natively. That means that during system resume, it
  234. * may switch the ports back to EHCI so that users can use their
  235. * keyboard to select a kernel from GRUB after resume from hibernate.
  236. *
  237. * The BIOS is supposed to remember whether the OS had xHCI ports
  238. * enabled before resume, and switch the ports back to xHCI when the
  239. * BIOS/OS semaphore is written, but we all know we can't trust BIOS
  240. * writers.
  241. *
  242. * Unconditionally switch the ports back to xHCI after a system resume.
  243. * It should not matter whether the EHCI or xHCI controller is
  244. * resumed first. It's enough to do the switchover in xHCI because
  245. * USB core won't notice anything as the hub driver doesn't start
  246. * running again until after all the devices (including both EHCI and
  247. * xHCI host controllers) have been resumed.
  248. */
  249. if (pdev->vendor == PCI_VENDOR_ID_INTEL)
  250. usb_enable_intel_xhci_ports(pdev);
  251. retval = xhci_resume(xhci, hibernated);
  252. return retval;
  253. }
  254. #endif /* CONFIG_PM */
  255. static const struct hc_driver xhci_pci_hc_driver = {
  256. .description = hcd_name,
  257. .product_desc = "xHCI Host Controller",
  258. .hcd_priv_size = sizeof(struct xhci_hcd *),
  259. /*
  260. * generic hardware linkage
  261. */
  262. .irq = xhci_irq,
  263. .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
  264. /*
  265. * basic lifecycle operations
  266. */
  267. .reset = xhci_pci_setup,
  268. .start = xhci_run,
  269. #ifdef CONFIG_PM
  270. .pci_suspend = xhci_pci_suspend,
  271. .pci_resume = xhci_pci_resume,
  272. #endif
  273. .stop = xhci_stop,
  274. .shutdown = xhci_shutdown,
  275. /*
  276. * managing i/o requests and associated device resources
  277. */
  278. .urb_enqueue = xhci_urb_enqueue,
  279. .urb_dequeue = xhci_urb_dequeue,
  280. .alloc_dev = xhci_alloc_dev,
  281. .free_dev = xhci_free_dev,
  282. .alloc_streams = xhci_alloc_streams,
  283. .free_streams = xhci_free_streams,
  284. .add_endpoint = xhci_add_endpoint,
  285. .drop_endpoint = xhci_drop_endpoint,
  286. .endpoint_reset = xhci_endpoint_reset,
  287. .check_bandwidth = xhci_check_bandwidth,
  288. .reset_bandwidth = xhci_reset_bandwidth,
  289. .address_device = xhci_address_device,
  290. .update_hub_device = xhci_update_hub_device,
  291. .reset_device = xhci_discover_or_reset_device,
  292. /*
  293. * scheduling support
  294. */
  295. .get_frame_number = xhci_get_frame,
  296. /* Root hub support */
  297. .hub_control = xhci_hub_control,
  298. .hub_status_data = xhci_hub_status_data,
  299. .bus_suspend = xhci_bus_suspend,
  300. .bus_resume = xhci_bus_resume,
  301. /*
  302. * call back when device connected and addressed
  303. */
  304. .update_device = xhci_update_device,
  305. .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
  306. .enable_usb3_lpm_timeout = xhci_enable_usb3_lpm_timeout,
  307. .disable_usb3_lpm_timeout = xhci_disable_usb3_lpm_timeout,
  308. .find_raw_port_number = xhci_find_raw_port_number,
  309. };
  310. /*-------------------------------------------------------------------------*/
  311. /* PCI driver selection metadata; PCI hotplugging uses this */
  312. static const struct pci_device_id pci_ids[] = { {
  313. /* handle any USB 3.0 xHCI controller */
  314. PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0),
  315. .driver_data = (unsigned long) &xhci_pci_hc_driver,
  316. },
  317. { /* end: all zeroes */ }
  318. };
  319. MODULE_DEVICE_TABLE(pci, pci_ids);
  320. /* pci driver glue; this is a "new style" PCI driver module */
  321. static struct pci_driver xhci_pci_driver = {
  322. .name = (char *) hcd_name,
  323. .id_table = pci_ids,
  324. .probe = xhci_pci_probe,
  325. .remove = xhci_pci_remove,
  326. /* suspend and resume implemented later */
  327. .shutdown = usb_hcd_pci_shutdown,
  328. #ifdef CONFIG_PM
  329. .driver = {
  330. .pm = &usb_hcd_pci_pm_ops
  331. },
  332. #endif
  333. };
  334. int __init xhci_register_pci(void)
  335. {
  336. return pci_register_driver(&xhci_pci_driver);
  337. }
  338. void xhci_unregister_pci(void)
  339. {
  340. pci_unregister_driver(&xhci_pci_driver);
  341. }