linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi,
@ 2019-12-12 22:37 Gayatri Kammela
  2019-12-12 22:37 ` [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi Gayatri Kammela
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Gayatri Kammela @ 2019-12-12 22:37 UTC (permalink / raw)
  To: linux-pm
  Cc: platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Gayatri Kammela, Andy Shevchenko,
	Zhang Rui, Srinivas Pandruvada

Hi,

Tiger Lake supports devices whose hardware IDs are changed for various
drivers. Hence, add the new hardware IDs.

Patch 1: Add Tiger Lake support to DPTF driver
Patch 2: Add Tiger Lake support to fan driver
Patch 3: Add Tiger Lake support to Intel's HID driver
Patch 4: Add Tiger Lake support to thermal driver

Gayatri Kammela (4):
  acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in
    acpi
  acpi: fan: Add new Tiger Lake hardware ID to support fan driver in
    acpi
  platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID
    driver
  thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support
    thermal driver

 drivers/acpi/dptf/dptf_power.c                          | 1 +
 drivers/acpi/dptf/int340x_thermal.c                     | 4 ++++
 drivers/acpi/fan.c                                      | 1 +
 drivers/platform/x86/intel-hid.c                        | 1 +
 drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 1 +
 drivers/thermal/intel/int340x_thermal/int3403_thermal.c | 1 +
 6 files changed, 9 insertions(+)

Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
-- 
2.17.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi
  2019-12-12 22:37 [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi, Gayatri Kammela
@ 2019-12-12 22:37 ` Gayatri Kammela
  2019-12-13  9:34   ` Andy Shevchenko
  2019-12-12 22:37 ` [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver " Gayatri Kammela
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Gayatri Kammela @ 2019-12-12 22:37 UTC (permalink / raw)
  To: linux-pm
  Cc: platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Gayatri Kammela, Andy Shevchenko,
	Zhang Rui, Srinivas Pandruvada

Tiger Lake has new unique hardware IDs that are needed to support
DPTF drivers. Hence, add them.

Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
---
 drivers/acpi/dptf/dptf_power.c      | 1 +
 drivers/acpi/dptf/int340x_thermal.c | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/drivers/acpi/dptf/dptf_power.c b/drivers/acpi/dptf/dptf_power.c
index eb58fc475a03..6ddcfde36bcb 100644
--- a/drivers/acpi/dptf/dptf_power.c
+++ b/drivers/acpi/dptf/dptf_power.c
@@ -98,6 +98,7 @@ static int dptf_power_remove(struct platform_device *pdev)
 
 static const struct acpi_device_id int3407_device_ids[] = {
 	{"INT3407", 0},
+	{"INT1047", 0},
 	{"", 0},
 };
 MODULE_DEVICE_TABLE(acpi, int3407_device_ids);
diff --git a/drivers/acpi/dptf/int340x_thermal.c b/drivers/acpi/dptf/int340x_thermal.c
index 5c7a90186e3c..3210c20941e7 100644
--- a/drivers/acpi/dptf/int340x_thermal.c
+++ b/drivers/acpi/dptf/int340x_thermal.c
@@ -24,6 +24,10 @@ static const struct acpi_device_id int340x_thermal_device_ids[] = {
 	{"INT3409"},
 	{"INT340A"},
 	{"INT340B"},
+	{"INT1040"},
+	{"INT1043"},
+	{"INT1044"},
+	{"INT1047"},
 	{""},
 };
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver in acpi
  2019-12-12 22:37 [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi, Gayatri Kammela
  2019-12-12 22:37 ` [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi Gayatri Kammela
@ 2019-12-12 22:37 ` Gayatri Kammela
  2019-12-13  9:35   ` Andy Shevchenko
  2019-12-12 22:37 ` [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver Gayatri Kammela
  2019-12-12 22:37 ` [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver Gayatri Kammela
  3 siblings, 1 reply; 10+ messages in thread
From: Gayatri Kammela @ 2019-12-12 22:37 UTC (permalink / raw)
  To: linux-pm
  Cc: platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Gayatri Kammela, Andy Shevchenko,
	Zhang Rui, Srinivas Pandruvada

Tiger Lake has a new unique hardware ID to support fan driver. Hence,
add it.

Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
---
 drivers/acpi/fan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c
index 816b0803f7fb..16e1ca23f573 100644
--- a/drivers/acpi/fan.c
+++ b/drivers/acpi/fan.c
@@ -26,6 +26,7 @@ static int acpi_fan_remove(struct platform_device *pdev);
 static const struct acpi_device_id fan_device_ids[] = {
 	{"PNP0C0B", 0},
 	{"INT3404", 0},
+	{"INT1044", 0},
 	{"", 0},
 };
 MODULE_DEVICE_TABLE(acpi, fan_device_ids);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver
  2019-12-12 22:37 [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi, Gayatri Kammela
  2019-12-12 22:37 ` [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi Gayatri Kammela
  2019-12-12 22:37 ` [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver " Gayatri Kammela
@ 2019-12-12 22:37 ` Gayatri Kammela
  2019-12-13  9:35   ` Andy Shevchenko
  2019-12-12 22:37 ` [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver Gayatri Kammela
  3 siblings, 1 reply; 10+ messages in thread
From: Gayatri Kammela @ 2019-12-12 22:37 UTC (permalink / raw)
  To: linux-pm
  Cc: platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Gayatri Kammela, Zhang Rui,
	Andy Shevchenko, Srinivas Pandruvada

Tiger Lake has a new unique hardware ID to support Intel's HID event
filter driver. Hence, add it.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
---
 drivers/platform/x86/intel-hid.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/platform/x86/intel-hid.c b/drivers/platform/x86/intel-hid.c
index ef6d4bd77b1a..3ce423c11a88 100644
--- a/drivers/platform/x86/intel-hid.c
+++ b/drivers/platform/x86/intel-hid.c
@@ -20,6 +20,7 @@ MODULE_AUTHOR("Alex Hung");
 
 static const struct acpi_device_id intel_hid_ids[] = {
 	{"INT33D5", 0},
+	{"INT1051", 0},
 	{"", 0},
 };
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver
  2019-12-12 22:37 [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi, Gayatri Kammela
                   ` (2 preceding siblings ...)
  2019-12-12 22:37 ` [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver Gayatri Kammela
@ 2019-12-12 22:37 ` Gayatri Kammela
  2019-12-13  9:35   ` Andy Shevchenko
  3 siblings, 1 reply; 10+ messages in thread
From: Gayatri Kammela @ 2019-12-12 22:37 UTC (permalink / raw)
  To: linux-pm
  Cc: platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Gayatri Kammela, Andy Shevchenko,
	Zhang rui, Srinivas Pandruvada

Tiger Lake has a new unique hardware IDs to support thermal driver.
Hence, add them.

Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Zhang rui <rui.zhang@intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
---
 drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 1 +
 drivers/thermal/intel/int340x_thermal/int3403_thermal.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
index 3517883b5cdb..b441704deea2 100644
--- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
+++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
@@ -370,6 +370,7 @@ static int int3400_thermal_remove(struct platform_device *pdev)
 
 static const struct acpi_device_id int3400_thermal_match[] = {
 	{"INT3400", 0},
+	{"INT1040", 0},
 	{}
 };
 
diff --git a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c
index a7bbd8584ae2..219024cce7fb 100644
--- a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c
+++ b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c
@@ -283,6 +283,7 @@ static int int3403_remove(struct platform_device *pdev)
 
 static const struct acpi_device_id int3403_device_ids[] = {
 	{"INT3403", 0},
+	{"INT1043", 0},
 	{"", 0},
 };
 MODULE_DEVICE_TABLE(acpi, int3403_device_ids);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi
  2019-12-12 22:37 ` [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi Gayatri Kammela
@ 2019-12-13  9:34   ` Andy Shevchenko
  2019-12-13 17:54     ` Kammela, Gayatri
  0 siblings, 1 reply; 10+ messages in thread
From: Andy Shevchenko @ 2019-12-13  9:34 UTC (permalink / raw)
  To: Gayatri Kammela
  Cc: linux-pm, platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Zhang Rui, Srinivas Pandruvada

On Thu, Dec 12, 2019 at 02:37:17PM -0800, Gayatri Kammela wrote:
> Tiger Lake has new unique hardware IDs that are needed to support
> DPTF drivers. Hence, add them.

>  	{"INT3407", 0},
> +	{"INT1047", 0},

Can we keep them in sorted order?

>  	{"INT3409"},
>  	{"INT340A"},
>  	{"INT340B"},
> +	{"INT1040"},
> +	{"INT1043"},
> +	{"INT1044"},
> +	{"INT1047"},

Ditto.

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver in acpi
  2019-12-12 22:37 ` [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver " Gayatri Kammela
@ 2019-12-13  9:35   ` Andy Shevchenko
  0 siblings, 0 replies; 10+ messages in thread
From: Andy Shevchenko @ 2019-12-13  9:35 UTC (permalink / raw)
  To: Gayatri Kammela
  Cc: linux-pm, platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Zhang Rui, Srinivas Pandruvada

On Thu, Dec 12, 2019 at 02:37:18PM -0800, Gayatri Kammela wrote:

>  	{"PNP0C0B", 0},
>  	{"INT3404", 0},
> +	{"INT1044", 0},

Same comment here.

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver
  2019-12-12 22:37 ` [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver Gayatri Kammela
@ 2019-12-13  9:35   ` Andy Shevchenko
  0 siblings, 0 replies; 10+ messages in thread
From: Andy Shevchenko @ 2019-12-13  9:35 UTC (permalink / raw)
  To: Gayatri Kammela
  Cc: linux-pm, platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Zhang Rui, Srinivas Pandruvada

On Thu, Dec 12, 2019 at 02:37:19PM -0800, Gayatri Kammela wrote:

>  	{"INT33D5", 0},
> +	{"INT1051", 0},

And here

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver
  2019-12-12 22:37 ` [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver Gayatri Kammela
@ 2019-12-13  9:35   ` Andy Shevchenko
  0 siblings, 0 replies; 10+ messages in thread
From: Andy Shevchenko @ 2019-12-13  9:35 UTC (permalink / raw)
  To: Gayatri Kammela
  Cc: linux-pm, platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria,
	charles.d.prestopine, dvhart, Zhang rui, Srinivas Pandruvada

On Thu, Dec 12, 2019 at 02:37:20PM -0800, Gayatri Kammela wrote:
> Tiger Lake has a new unique hardware IDs to support thermal driver.
> Hence, add them.

>  	{"INT3400", 0},
> +	{"INT1040", 0},

>  	{"INT3403", 0},
> +	{"INT1043", 0},

And here

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi
  2019-12-13  9:34   ` Andy Shevchenko
@ 2019-12-13 17:54     ` Kammela, Gayatri
  0 siblings, 0 replies; 10+ messages in thread
From: Kammela, Gayatri @ 2019-12-13 17:54 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-pm, platform-driver-x86, alex.hung, linux-acpi, lenb, rjw,
	linux-kernel, daniel.lezcano, amit.kucheria, Prestopine,
	Charles D, dvhart, Zhang, Rui, Pandruvada, Srinivas

> On Thu, Dec 12, 2019 at 02:37:17PM -0800, Gayatri Kammela wrote:
> > Tiger Lake has new unique hardware IDs that are needed to support DPTF
> > drivers. Hence, add them.
> 
> >  	{"INT3407", 0},
> > +	{"INT1047", 0},
> 
> Can we keep them in sorted order?
Thanks Andy! I will keep them in sorted order for all the patches in the series in v2
> 
> >  	{"INT3409"},
> >  	{"INT340A"},
> >  	{"INT340B"},
> > +	{"INT1040"},
> > +	{"INT1043"},
> > +	{"INT1044"},
> > +	{"INT1047"},
> 
> Ditto.
> 
> --
> With Best Regards,
> Andy Shevchenko
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-12-13 20:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-12 22:37 [PATCH v1 0/4] drivers: Add Tiger Lake hardware IDs to support acpi, Gayatri Kammela
2019-12-12 22:37 ` [PATCH v1 1/4] acpi: dptf: Add new Tiger Lake hardware IDs to support DPTF drivers in acpi Gayatri Kammela
2019-12-13  9:34   ` Andy Shevchenko
2019-12-13 17:54     ` Kammela, Gayatri
2019-12-12 22:37 ` [PATCH v1 2/4] acpi: fan: Add new Tiger Lake hardware ID to support fan driver " Gayatri Kammela
2019-12-13  9:35   ` Andy Shevchenko
2019-12-12 22:37 ` [PATCH v1 3/4] platform/x86: intel-hid: Add new Tiger Lake hardware ID to support HID driver Gayatri Kammela
2019-12-13  9:35   ` Andy Shevchenko
2019-12-12 22:37 ` [PATCH v1 4/4] thermal: int340x_thermal: Add new Tiger Lake hardware IDs to support thermal driver Gayatri Kammela
2019-12-13  9:35   ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).