xhci-pci.c 15 KB

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