Skip to content

Commit 8ffdc53

Browse files
uhpatelgregkh
authored andcommitted
xhci-pci: Allow host runtime PM as default for Intel Meteor Lake xHCI
Meteor Lake TCSS(Type-C Subsystem) xHCI needs to be runtime suspended whenever possible to allow the TCSS hardware block to enter D3cold and thus save energy. Cc: [email protected] Signed-off-by: Utkarsh Patel <[email protected]> Signed-off-by: Mathias Nyman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 7516da4 commit 8ffdc53

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/usb/host/xhci-pci.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI 0x464e
6363
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI 0x51ed
6464
#define PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI 0xa71e
65+
#define PCI_DEVICE_ID_INTEL_METEOR_LAKE_XHCI 0x7ec0
6566

6667
#define PCI_DEVICE_ID_AMD_RENOIR_XHCI 0x1639
6768
#define PCI_DEVICE_ID_AMD_PROMONTORYA_4 0x43b9
@@ -271,7 +272,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
271272
pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI ||
272273
pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI ||
273274
pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI ||
274-
pdev->device == PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI))
275+
pdev->device == PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI ||
276+
pdev->device == PCI_DEVICE_ID_INTEL_METEOR_LAKE_XHCI))
275277
xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW;
276278

277279
if (pdev->vendor == PCI_VENDOR_ID_ETRON &&

0 commit comments

Comments
 (0)