xhci-pci.c 15 KB

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