2022-02-15 18:05:28

by Andy Shevchenko

[permalink] [raw]
Subject: [PATCH v1 2/4] pinctrl: alderlake: Add Raptor Lake-S ACPI ID

Intel Raptor Lake-S PCH has the same GPIO hardware than Alder Lake-S PCH
but the ACPI ID is different. Add this new ACPI ID to the list of supported
devices.

Signed-off-by: Andy Shevchenko <[email protected]>
---
drivers/pinctrl/intel/pinctrl-alderlake.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/intel/pinctrl-alderlake.c b/drivers/pinctrl/intel/pinctrl-alderlake.c
index efb664f12b5d..51fb99cd64a2 100644
--- a/drivers/pinctrl/intel/pinctrl-alderlake.c
+++ b/drivers/pinctrl/intel/pinctrl-alderlake.c
@@ -416,6 +416,7 @@ static const struct intel_pinctrl_soc_data adls_soc_data = {

static const struct acpi_device_id adl_pinctrl_acpi_match[] = {
{ "INTC1056", (kernel_ulong_t)&adls_soc_data },
+ { "INTC1085", (kernel_ulong_t)&adls_soc_data },
{ }
};
MODULE_DEVICE_TABLE(acpi, adl_pinctrl_acpi_match);
--
2.34.1


2022-02-22 05:11:57

by Mika Westerberg

[permalink] [raw]
Subject: Re: [PATCH v1 2/4] pinctrl: alderlake: Add Raptor Lake-S ACPI ID

On Tue, Feb 15, 2022 at 05:27:58PM +0200, Andy Shevchenko wrote:
> Intel Raptor Lake-S PCH has the same GPIO hardware than Alder Lake-S PCH
> but the ACPI ID is different. Add this new ACPI ID to the list of supported
> devices.
>
> Signed-off-by: Andy Shevchenko <[email protected]>

Acked-by: Mika Westerberg <[email protected]>