xhci-pci.c 13 KB

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