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