diff mbox series

[B/OEM-B,1/1] thermal: int340x: processor_thermal: Add GeminiLake support

Message ID 20191106132448.17294-2-kai.heng.feng@canonical.com
State Accepted
Headers show
Series Add GeminiLake support on Intel int340x thermal device | expand

Commit Message

Kai-Heng Feng Nov. 6, 2019, 1:24 p.m. UTC
From: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>

BugLink: https://bugs.launchpad.net/bugs/1851506

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>
(cherry picked from commit ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e)
Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
---
 drivers/thermal/int340x_thermal/processor_thermal_device.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Connor Kuehl Nov. 6, 2019, 10:08 p.m. UTC | #1
On 11/6/19 5:24 AM, Kai-Heng Feng wrote:
> From: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
> 
> BugLink: https://bugs.launchpad.net/bugs/1851506
> 
> 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>
> (cherry picked from commit ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e)
> Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>

Acked-by: Connor Kuehl <connor.kuehl@canonical.com>

> ---
>   drivers/thermal/int340x_thermal/processor_thermal_device.c | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/thermal/int340x_thermal/processor_thermal_device.c b/drivers/thermal/int340x_thermal/processor_thermal_device.c
> index 489d6e388294..d9076e784335 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;
> @@ -469,6 +472,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, },
>   };
>   
>
Stefan Bader Nov. 12, 2019, 1:14 p.m. UTC | #2
On 06.11.19 14:24, Kai-Heng Feng wrote:
> From: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
> 
> BugLink: https://bugs.launchpad.net/bugs/1851506
> 
> 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>
> (cherry picked from commit ce7d35fa4e60b08ed3f3c568e9fa6cdabf753e7e)
> Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
Acked-by: Stefan Bader <stefan.bader@canonical.com>
> ---
>  drivers/thermal/int340x_thermal/processor_thermal_device.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/thermal/int340x_thermal/processor_thermal_device.c b/drivers/thermal/int340x_thermal/processor_thermal_device.c
> index 489d6e388294..d9076e784335 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;
> @@ -469,6 +472,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, },
>  };
>  
>
diff mbox series

Patch

diff --git a/drivers/thermal/int340x_thermal/processor_thermal_device.c b/drivers/thermal/int340x_thermal/processor_thermal_device.c
index 489d6e388294..d9076e784335 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;
@@ -469,6 +472,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, },
 };