xhci-pci.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  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_EJ168 0x7023
  33. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_XHCI 0x8c31
  34. #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31
  35. #define PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI 0x22b5
  36. #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI 0xa12f
  37. #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI 0x9d2f
  38. static const char hcd_name[] = "xhci_hcd";
  39. static struct hc_driver __read_mostly xhci_pci_hc_driver;
  40. /* called after powerup, by probe or system-pm "wakeup" */
  41. static int xhci_pci_reinit(struct xhci_hcd *xhci, struct pci_dev *pdev)
  42. {
  43. /*
  44. * TODO: Implement finding debug ports later.
  45. * TODO: see if there are any quirks that need to be added to handle
  46. * new extended capabilities.
  47. */
  48. /* PCI Memory-Write-Invalidate cycle support is optional (uncommon) */
  49. if (!pci_set_mwi(pdev))
  50. xhci_dbg(xhci, "MWI active\n");
  51. xhci_dbg(xhci, "Finished xhci_pci_reinit\n");
  52. return 0;
  53. }
  54. static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
  55. {
  56. struct pci_dev *pdev = to_pci_dev(dev);
  57. /* Look for vendor-specific quirks */
  58. if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC &&
  59. (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK ||
  60. pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1400)) {
  61. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  62. pdev->revision == 0x0) {
  63. xhci->quirks |= XHCI_RESET_EP_QUIRK;
  64. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  65. "QUIRK: Fresco Logic xHC needs configure"
  66. " endpoint cmd after reset endpoint");
  67. }
  68. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK &&
  69. pdev->revision == 0x4) {
  70. xhci->quirks |= XHCI_SLOW_SUSPEND;
  71. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  72. "QUIRK: Fresco Logic xHC revision %u"
  73. "must be suspended extra slowly",
  74. pdev->revision);
  75. }
  76. if (pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_PDK)
  77. xhci->quirks |= XHCI_BROKEN_STREAMS;
  78. /* Fresco Logic confirms: all revisions of this chip do not
  79. * support MSI, even though some of them claim to in their PCI
  80. * capabilities.
  81. */
  82. xhci->quirks |= XHCI_BROKEN_MSI;
  83. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  84. "QUIRK: Fresco Logic revision %u "
  85. "has broken MSI implementation",
  86. pdev->revision);
  87. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  88. }
  89. if (pdev->vendor == PCI_VENDOR_ID_NEC)
  90. xhci->quirks |= XHCI_NEC_HOST;
  91. if (pdev->vendor == PCI_VENDOR_ID_AMD && xhci->hci_version == 0x96)
  92. xhci->quirks |= XHCI_AMD_0x96_HOST;
  93. /* AMD PLL quirk */
  94. if (pdev->vendor == PCI_VENDOR_ID_AMD && usb_amd_find_chipset_info())
  95. xhci->quirks |= XHCI_AMD_PLL_FIX;
  96. if (pdev->vendor == PCI_VENDOR_ID_AMD)
  97. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  98. if (pdev->vendor == PCI_VENDOR_ID_INTEL) {
  99. xhci->quirks |= XHCI_LPM_SUPPORT;
  100. xhci->quirks |= XHCI_INTEL_HOST;
  101. xhci->quirks |= XHCI_AVOID_BEI;
  102. }
  103. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  104. pdev->device == PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI) {
  105. xhci->quirks |= XHCI_EP_LIMIT_QUIRK;
  106. xhci->limit_active_eps = 64;
  107. xhci->quirks |= XHCI_SW_BW_CHECKING;
  108. /*
  109. * PPT desktop boards DH77EB and DH77DF will power back on after
  110. * a few seconds of being shutdown. The fix for this is to
  111. * switch the ports from xHCI to EHCI on shutdown. We can't use
  112. * DMI information to find those particular boards (since each
  113. * vendor will change the board name), so we have to key off all
  114. * PPT chipsets.
  115. */
  116. xhci->quirks |= XHCI_SPURIOUS_REBOOT;
  117. }
  118. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  119. pdev->device == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI) {
  120. xhci->quirks |= XHCI_SPURIOUS_REBOOT;
  121. }
  122. if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
  123. (pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
  124. pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
  125. pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI)) {
  126. xhci->quirks |= XHCI_PME_STUCK_QUIRK;
  127. }
  128. if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
  129. pdev->device == PCI_DEVICE_ID_EJ168) {
  130. xhci->quirks |= XHCI_RESET_ON_RESUME;
  131. xhci->quirks |= XHCI_TRUST_TX_LENGTH;
  132. xhci->quirks |= XHCI_BROKEN_STREAMS;
  133. }
  134. if (pdev->vendor == PCI_VENDOR_ID_RENESAS &&
  135. pdev->device == 0x0015)
  136. xhci->quirks |= XHCI_RESET_ON_RESUME;
  137. if (pdev->vendor == PCI_VENDOR_ID_VIA)
  138. xhci->quirks |= XHCI_RESET_ON_RESUME;
  139. /* See https://bugzilla.kernel.org/show_bug.cgi?id=79511 */
  140. if (pdev->vendor == PCI_VENDOR_ID_VIA &&
  141. pdev->device == 0x3432)
  142. xhci->quirks |= XHCI_BROKEN_STREAMS;
  143. if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA &&
  144. pdev->device == 0x1042)
  145. xhci->quirks |= XHCI_BROKEN_STREAMS;
  146. if (xhci->quirks & XHCI_RESET_ON_RESUME)
  147. xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
  148. "QUIRK: Resetting on resume");
  149. }
  150. /*
  151. * Make sure PME works on some Intel xHCI controllers by writing 1 to clear
  152. * the Internal PME flag bit in vendor specific PMCTRL register at offset 0x80a4
  153. */
  154. static void xhci_pme_quirk(struct xhci_hcd *xhci)
  155. {
  156. u32 val;
  157. void __iomem *reg;
  158. reg = (void __iomem *) xhci->cap_regs + 0x80a4;
  159. val = readl(reg);
  160. writel(val | BIT(28), reg);
  161. readl(reg);
  162. }
  163. /* called during probe() after chip reset completes */
  164. static int xhci_pci_setup(struct usb_hcd *hcd)
  165. {
  166. struct xhci_hcd *xhci;
  167. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  168. int retval;
  169. retval = xhci_gen_setup(hcd, xhci_pci_quirks);
  170. if (retval)
  171. return retval;
  172. xhci = hcd_to_xhci(hcd);
  173. if (!usb_hcd_is_primary_hcd(hcd))
  174. return 0;
  175. pci_read_config_byte(pdev, XHCI_SBRN_OFFSET, &xhci->sbrn);
  176. xhci_dbg(xhci, "Got SBRN %u\n", (unsigned int) xhci->sbrn);
  177. /* Find any debug ports */
  178. retval = xhci_pci_reinit(xhci, pdev);
  179. if (!retval)
  180. return retval;
  181. kfree(xhci);
  182. return retval;
  183. }
  184. /*
  185. * We need to register our own PCI probe function (instead of the USB core's
  186. * function) in order to create a second roothub under xHCI.
  187. */
  188. static int xhci_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
  189. {
  190. int retval;
  191. struct xhci_hcd *xhci;
  192. struct hc_driver *driver;
  193. struct usb_hcd *hcd;
  194. driver = (struct hc_driver *)id->driver_data;
  195. /* Prevent runtime suspending between USB-2 and USB-3 initialization */
  196. pm_runtime_get_noresume(&dev->dev);
  197. /* Register the USB 2.0 roothub.
  198. * FIXME: USB core must know to register the USB 2.0 roothub first.
  199. * This is sort of silly, because we could just set the HCD driver flags
  200. * to say USB 2.0, but I'm not sure what the implications would be in
  201. * the other parts of the HCD code.
  202. */
  203. retval = usb_hcd_pci_probe(dev, id);
  204. if (retval)
  205. goto put_runtime_pm;
  206. /* USB 2.0 roothub is stored in the PCI device now. */
  207. hcd = dev_get_drvdata(&dev->dev);
  208. xhci = hcd_to_xhci(hcd);
  209. xhci->shared_hcd = usb_create_shared_hcd(driver, &dev->dev,
  210. pci_name(dev), hcd);
  211. if (!xhci->shared_hcd) {
  212. retval = -ENOMEM;
  213. goto dealloc_usb2_hcd;
  214. }
  215. /* Set the xHCI pointer before xhci_pci_setup() (aka hcd_driver.reset)
  216. * is called by usb_add_hcd().
  217. */
  218. *((struct xhci_hcd **) xhci->shared_hcd->hcd_priv) = xhci;
  219. retval = usb_add_hcd(xhci->shared_hcd, dev->irq,
  220. IRQF_SHARED);
  221. if (retval)
  222. goto put_usb3_hcd;
  223. /* Roothub already marked as USB 3.0 speed */
  224. if (!(xhci->quirks & XHCI_BROKEN_STREAMS) &&
  225. HCC_MAX_PSA(xhci->hcc_params) >= 4)
  226. xhci->shared_hcd->can_do_streams = 1;
  227. /* USB-2 and USB-3 roothubs initialized, allow runtime pm suspend */
  228. pm_runtime_put_noidle(&dev->dev);
  229. return 0;
  230. put_usb3_hcd:
  231. usb_put_hcd(xhci->shared_hcd);
  232. dealloc_usb2_hcd:
  233. usb_hcd_pci_remove(dev);
  234. put_runtime_pm:
  235. pm_runtime_put_noidle(&dev->dev);
  236. return retval;
  237. }
  238. static void xhci_pci_remove(struct pci_dev *dev)
  239. {
  240. struct xhci_hcd *xhci;
  241. xhci = hcd_to_xhci(pci_get_drvdata(dev));
  242. if (xhci->shared_hcd) {
  243. usb_remove_hcd(xhci->shared_hcd);
  244. usb_put_hcd(xhci->shared_hcd);
  245. }
  246. usb_hcd_pci_remove(dev);
  247. /* Workaround for spurious wakeups at shutdown with HSW */
  248. if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
  249. pci_set_power_state(dev, PCI_D3hot);
  250. kfree(xhci);
  251. }
  252. #ifdef CONFIG_PM
  253. static int xhci_pci_suspend(struct usb_hcd *hcd, bool do_wakeup)
  254. {
  255. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  256. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  257. /*
  258. * Systems with the TI redriver that loses port status change events
  259. * need to have the registers polled during D3, so avoid D3cold.
  260. */
  261. if (xhci->quirks & XHCI_COMP_MODE_QUIRK)
  262. pdev->no_d3cold = true;
  263. if (xhci->quirks & XHCI_PME_STUCK_QUIRK)
  264. xhci_pme_quirk(xhci);
  265. return xhci_suspend(xhci, do_wakeup);
  266. }
  267. static int xhci_pci_resume(struct usb_hcd *hcd, bool hibernated)
  268. {
  269. struct xhci_hcd *xhci = hcd_to_xhci(hcd);
  270. struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
  271. int retval = 0;
  272. /* The BIOS on systems with the Intel Panther Point chipset may or may
  273. * not support xHCI natively. That means that during system resume, it
  274. * may switch the ports back to EHCI so that users can use their
  275. * keyboard to select a kernel from GRUB after resume from hibernate.
  276. *
  277. * The BIOS is supposed to remember whether the OS had xHCI ports
  278. * enabled before resume, and switch the ports back to xHCI when the
  279. * BIOS/OS semaphore is written, but we all know we can't trust BIOS
  280. * writers.
  281. *
  282. * Unconditionally switch the ports back to xHCI after a system resume.
  283. * It should not matter whether the EHCI or xHCI controller is
  284. * resumed first. It's enough to do the switchover in xHCI because
  285. * USB core won't notice anything as the hub driver doesn't start
  286. * running again until after all the devices (including both EHCI and
  287. * xHCI host controllers) have been resumed.
  288. */
  289. if (pdev->vendor == PCI_VENDOR_ID_INTEL)
  290. usb_enable_intel_xhci_ports(pdev);
  291. if (xhci->quirks & XHCI_PME_STUCK_QUIRK)
  292. xhci_pme_quirk(xhci);
  293. retval = xhci_resume(xhci, hibernated);
  294. return retval;
  295. }
  296. #endif /* CONFIG_PM */
  297. /*-------------------------------------------------------------------------*/
  298. /* PCI driver selection metadata; PCI hotplugging uses this */
  299. static const struct pci_device_id pci_ids[] = { {
  300. /* handle any USB 3.0 xHCI controller */
  301. PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0),
  302. .driver_data = (unsigned long) &xhci_pci_hc_driver,
  303. },
  304. { /* end: all zeroes */ }
  305. };
  306. MODULE_DEVICE_TABLE(pci, pci_ids);
  307. /* pci driver glue; this is a "new style" PCI driver module */
  308. static struct pci_driver xhci_pci_driver = {
  309. .name = (char *) hcd_name,
  310. .id_table = pci_ids,
  311. .probe = xhci_pci_probe,
  312. .remove = xhci_pci_remove,
  313. /* suspend and resume implemented later */
  314. .shutdown = usb_hcd_pci_shutdown,
  315. #ifdef CONFIG_PM
  316. .driver = {
  317. .pm = &usb_hcd_pci_pm_ops
  318. },
  319. #endif
  320. };
  321. static int __init xhci_pci_init(void)
  322. {
  323. xhci_init_driver(&xhci_pci_hc_driver, xhci_pci_setup);
  324. #ifdef CONFIG_PM
  325. xhci_pci_hc_driver.pci_suspend = xhci_pci_suspend;
  326. xhci_pci_hc_driver.pci_resume = xhci_pci_resume;
  327. #endif
  328. return pci_register_driver(&xhci_pci_driver);
  329. }
  330. module_init(xhci_pci_init);
  331. static void __exit xhci_pci_exit(void)
  332. {
  333. pci_unregister_driver(&xhci_pci_driver);
  334. }
  335. module_exit(xhci_pci_exit);
  336. MODULE_DESCRIPTION("xHCI PCI Host Controller Driver");
  337. MODULE_LICENSE("GPL");