Last active
November 24, 2016 17:45
-
-
Save l1k/3608b9a7931152d1a53921403040325c to your computer and use it in GitHub Desktop.
[PATCH v4.8] thunderbolt: Support Eagle Ridge controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 8f99b485d08f6f1ae5d9fcb6ddf8d393f03f6b9c Mon Sep 17 00:00:00 2001 | |
From: Lukas Wunner <[email protected]> | |
Date: Tue, 22 Dec 2015 10:46:19 +0100 | |
Subject: [PATCH v4.8] thunderbolt: Support Eagle Ridge controller | |
Add support for the Eagle Ridge controller (DSL2310), which is built | |
into these systems: | |
MacBookAir4,1 2011 11" | |
MacBookAir4,2 2011 13" | |
Cc: Andreas Noever <[email protected]> | |
Signed-off-by: Lukas Wunner <[email protected]> | |
--- | |
drivers/pci/quirks.c | 4 ++++ | |
drivers/thunderbolt/nhi.c | 6 ++++++ | |
drivers/thunderbolt/switch.c | 1 + | |
3 files changed, 11 insertions(+) | |
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c | |
index 44e0ff3..45f3188 100644 | |
--- a/drivers/pci/quirks.c | |
+++ b/drivers/pci/quirks.c | |
@@ -3326,6 +3326,7 @@ static void quirk_apple_wait_for_thunderbolt(struct pci_dev *dev) | |
goto out; | |
if (nhi->vendor != PCI_VENDOR_ID_INTEL | |
|| (nhi->device != PCI_DEVICE_ID_INTEL_LIGHT_RIDGE && | |
+ nhi->device != PCI_DEVICE_ID_INTEL_EAGLE_RIDGE && | |
nhi->device != PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C && | |
nhi->device != PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI && | |
nhi->device != PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI) | |
@@ -3341,6 +3342,9 @@ DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_INTEL, | |
PCI_DEVICE_ID_INTEL_LIGHT_RIDGE, | |
quirk_apple_wait_for_thunderbolt); | |
DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_INTEL, | |
+ PCI_DEVICE_ID_INTEL_EAGLE_RIDGE, | |
+ quirk_apple_wait_for_thunderbolt); | |
+DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_INTEL, | |
PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C, | |
quirk_apple_wait_for_thunderbolt); | |
DECLARE_PCI_FIXUP_RESUME_EARLY(PCI_VENDOR_ID_INTEL, | |
diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c | |
index a8c2041..f531c5e 100644 | |
--- a/drivers/thunderbolt/nhi.c | |
+++ b/drivers/thunderbolt/nhi.c | |
@@ -645,6 +645,12 @@ static struct pci_device_id nhi_ids[] = { | |
{ | |
.class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0, | |
.vendor = PCI_VENDOR_ID_INTEL, | |
+ .device = PCI_DEVICE_ID_INTEL_EAGLE_RIDGE, | |
+ .subvendor = 0x2222, .subdevice = 0x1111, | |
+ }, | |
+ { | |
+ .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0, | |
+ .vendor = PCI_VENDOR_ID_INTEL, | |
.device = PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C, | |
.subvendor = 0x2222, .subdevice = 0x1111, | |
}, | |
diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c | |
index 9840fde..6cbab4b 100644 | |
--- a/drivers/thunderbolt/switch.c | |
+++ b/drivers/thunderbolt/switch.c | |
@@ -371,6 +371,7 @@ struct tb_switch *tb_switch_alloc(struct tb *tb, u64 route) | |
sw->config.vendor_id); | |
if (sw->config.device_id != PCI_DEVICE_ID_INTEL_LIGHT_RIDGE && | |
+ sw->config.device_id != PCI_DEVICE_ID_INTEL_EAGLE_RIDGE && | |
sw->config.device_id != PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C && | |
sw->config.device_id != PCI_DEVICE_ID_INTEL_PORT_RIDGE && | |
sw->config.device_id != PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_BRIDGE && | |
-- | |
2.10.2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment