xhci-pci.c 19 KB

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