xhci-pci.c 14 KB

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