diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2020-03-28 10:59:11 +0100 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2020-11-06 14:39:11 +0100 |
commit | f6439c531d52193f890807958aaec52905bc0f2e (patch) | |
tree | daef18992e870f85e26d1d9f4d04327091629fd0 /drivers/thunderbolt/tb.h | |
parent | thunderbolt: Only configure USB4 wake for lane 0 adapters (diff) | |
download | linux-f6439c531d52193f890807958aaec52905bc0f2e.tar.xz linux-f6439c531d52193f890807958aaec52905bc0f2e.zip |
thunderbolt: Add support for Intel Tiger Lake-H
Intel Tiger Lake-H has the same Thunderbolt/USB4 controller as Tiger
Lake-LP. Add the Tiger Lake-H PCI IDs to the driver list of supported
devices.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/tb.h')
-rw-r--r-- | drivers/thunderbolt/tb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h index a9995e21b916..8ea360b0ff77 100644 --- a/drivers/thunderbolt/tb.h +++ b/drivers/thunderbolt/tb.h @@ -784,6 +784,8 @@ static inline bool tb_switch_is_tiger_lake(const struct tb_switch *sw) switch (sw->config.device_id) { case PCI_DEVICE_ID_INTEL_TGL_NHI0: case PCI_DEVICE_ID_INTEL_TGL_NHI1: + case PCI_DEVICE_ID_INTEL_TGL_H_NHI0: + case PCI_DEVICE_ID_INTEL_TGL_H_NHI1: return true; } } |