On Wed, Jun 18, 2025 at 1:18 AM Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> wrote: > > Add Wildcat Lake ACPI IDs for DPTF. > > Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> > --- > drivers/acpi/dptf/dptf_power.c | 2 ++ > drivers/acpi/dptf/int340x_thermal.c | 7 +++++++ > drivers/acpi/fan.h | 1 + > drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 1 + > drivers/thermal/intel/int340x_thermal/int3403_thermal.c | 1 + > 5 files changed, 12 insertions(+) > > diff --git a/drivers/acpi/dptf/dptf_power.c b/drivers/acpi/dptf/dptf_power.c > index e8caf4106ff9..776914f31b9e 100644 > --- a/drivers/acpi/dptf/dptf_power.c > +++ b/drivers/acpi/dptf/dptf_power.c > @@ -238,6 +238,8 @@ static const struct acpi_device_id int3407_device_ids[] = { > {"INTC10A5", 0}, > {"INTC10D8", 0}, > {"INTC10D9", 0}, > + {"INTC1100", 0}, > + {"INTC1101", 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 aef7aca2161d..a222df059a16 100644 > --- a/drivers/acpi/dptf/int340x_thermal.c > +++ b/drivers/acpi/dptf/int340x_thermal.c > @@ -61,6 +61,13 @@ static const struct acpi_device_id int340x_thermal_device_ids[] = { > {"INTC10D7"}, > {"INTC10D8"}, > {"INTC10D9"}, > + {"INTC10FC"}, > + {"INTC10FD"}, > + {"INTC10FE"}, > + {"INTC10FF"}, > + {"INTC1100"}, > + {"INTC1101"}, > + {"INTC1102"}, > {""}, > }; > > diff --git a/drivers/acpi/fan.h b/drivers/acpi/fan.h > index 15eba1c70e66..8a28a72a7c6a 100644 > --- a/drivers/acpi/fan.h > +++ b/drivers/acpi/fan.h > @@ -20,6 +20,7 @@ > {"INTC106A", }, /* Fan for Lunar Lake generation */ \ > {"INTC10A2", }, /* Fan for Raptor Lake generation */ \ > {"INTC10D6", }, /* Fan for Panther Lake generation */ \ > + {"INTC10FE", }, /* Fan for Wildcat Lake generation */ \ > {"PNP0C0B", } /* Generic ACPI fan */ > > #define ACPI_FPS_NAME_LEN 20 > diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c > index 0e07693ecf59..ecb4ea443b9b 100644 > --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c > +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c > @@ -690,6 +690,7 @@ static const struct acpi_device_id int3400_thermal_match[] = { > {"INTC1068", 0}, > {"INTC10A0", 0}, > {"INTC10D4", 0}, > + {"INTC10FC", 0}, > {} > }; > > diff --git a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c > index 5a925a8df7b3..ba63796761eb 100644 > --- a/drivers/thermal/intel/int340x_thermal/int3403_thermal.c > +++ b/drivers/thermal/intel/int340x_thermal/int3403_thermal.c > @@ -276,6 +276,7 @@ static const struct acpi_device_id int3403_device_ids[] = { > {"INTC1069", 0}, > {"INTC10A1", 0}, > {"INTC10D5", 0}, > + {"INTC10FD", 0}, > {"", 0}, > }; > MODULE_DEVICE_TABLE(acpi, int3403_device_ids); > -- Applied as 6.17 material, thanks!