diff options
author | Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> | 2018-05-07 20:25:28 +0200 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2018-05-30 08:47:12 +0200 |
commit | ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e (patch) | |
tree | cfd2ee8c221709502629f38f898c98046f12865c /drivers/thermal | |
parent | thermal: int340x: Prevent error in reading trip hysteresis attribute (diff) | |
download | linux-ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e.tar.xz linux-ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e.zip |
thermal: int340x: processor_thermal: Add GeminiLake support
Added PCI device id of GeminiLake thermal device.
Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/int340x_thermal/processor_thermal_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/thermal/int340x_thermal/processor_thermal_device.c b/drivers/thermal/int340x_thermal/processor_thermal_device.c index 80bbf9ce2fb6..284cf2c5a8fd 100644 --- a/drivers/thermal/int340x_thermal/processor_thermal_device.c +++ b/drivers/thermal/int340x_thermal/processor_thermal_device.c @@ -43,6 +43,9 @@ #define PCI_DEVICE_ID_PROC_BXTX_THERMAL 0x4A8C #define PCI_DEVICE_ID_PROC_BXTP_THERMAL 0x5A8C +/* GeminiLake thermal reporting device */ +#define PCI_DEVICE_ID_PROC_GLK_THERMAL 0x318C + struct power_config { u32 index; u32 min_uw; @@ -467,6 +470,7 @@ static const struct pci_device_id proc_thermal_pci_ids[] = { { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_BXTP_THERMAL)}, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_CNL_THERMAL)}, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_CFL_THERMAL)}, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_GLK_THERMAL)}, { 0, }, }; |