xhci-pci.c 16 KB

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