xhci-pci.c 15 KB

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