diff mbox series

[v1] pinctrl: tigerlake: Add Alder Lake-P ACPI ID

Message ID 20210107185406.40415-1-andriy.shevchenko@linux.intel.com
State New
Headers show
Series [v1] pinctrl: tigerlake: Add Alder Lake-P ACPI ID | expand

Commit Message

Andy Shevchenko Jan. 7, 2021, 6:54 p.m. UTC
Intel Alder Lake-P PCH has the same GPIO hardware than Tiger Lake-LP
PCH but the ACPI ID is different. Add this new ACPI ID to the list of
supported devices.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/pinctrl/intel/pinctrl-tigerlake.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Mika Westerberg Jan. 8, 2021, 6:58 a.m. UTC | #1
On Thu, Jan 07, 2021 at 08:54:06PM +0200, Andy Shevchenko wrote:
> Intel Alder Lake-P PCH has the same GPIO hardware than Tiger Lake-LP
> PCH but the ACPI ID is different. Add this new ACPI ID to the list of
> supported devices.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Andy Shevchenko Jan. 8, 2021, 1:46 p.m. UTC | #2
On Fri, Jan 08, 2021 at 08:58:55AM +0200, Mika Westerberg wrote:
> On Thu, Jan 07, 2021 at 08:54:06PM +0200, Andy Shevchenko wrote:
> > Intel Alder Lake-P PCH has the same GPIO hardware than Tiger Lake-LP
> > PCH but the ACPI ID is different. Add this new ACPI ID to the list of
> > supported devices.
> > 
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> 
> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>

Pushed to my review and testing queue, thanks!
diff mbox series

Patch

diff --git a/drivers/pinctrl/intel/pinctrl-tigerlake.c b/drivers/pinctrl/intel/pinctrl-tigerlake.c
index 3e354e02f408..75b6d66955bf 100644
--- a/drivers/pinctrl/intel/pinctrl-tigerlake.c
+++ b/drivers/pinctrl/intel/pinctrl-tigerlake.c
@@ -748,6 +748,7 @@  static const struct intel_pinctrl_soc_data tglh_soc_data = {
 static const struct acpi_device_id tgl_pinctrl_acpi_match[] = {
 	{ "INT34C5", (kernel_ulong_t)&tgllp_soc_data },
 	{ "INT34C6", (kernel_ulong_t)&tglh_soc_data },
+	{ "INTC1055", (kernel_ulong_t)&tgllp_soc_data },
 	{ }
 };
 MODULE_DEVICE_TABLE(acpi, tgl_pinctrl_acpi_match);