Message ID | 20220728175456.2796-1-sumeet.r.pawnikar@intel.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
Series | thermal: intel: Add TCC cooling support for Alder Lake-N and Raptor Lake-P | expand |
On Thu, 2022-07-28 at 23:24 +0530, Sumeet Pawnikar wrote: > Add Alder Lake-N and Raptor Lake-P to the list of processor models > supported by the Intel TCC cooling driver. > > Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> Acked-by: Zhang Rui <rui.zhang@intel.com> > --- > drivers/thermal/intel/intel_tcc_cooling.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/thermal/intel/intel_tcc_cooling.c > b/drivers/thermal/intel/intel_tcc_cooling.c > index a9596e7562ea..95adac427b6f 100644 > --- a/drivers/thermal/intel/intel_tcc_cooling.c > +++ b/drivers/thermal/intel/intel_tcc_cooling.c > @@ -81,7 +81,9 @@ static const struct x86_cpu_id tcc_ids[] > __initconst = { > X86_MATCH_INTEL_FAM6_MODEL(COMETLAKE, NULL), > X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE, NULL), > X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_L, NULL), > + X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_N, NULL), > X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE, NULL), > + X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_P, NULL), > {} > }; >
On Sat, Jul 30, 2022 at 5:09 AM Zhang Rui <rui.zhang@intel.com> wrote: > > On Thu, 2022-07-28 at 23:24 +0530, Sumeet Pawnikar wrote: > > Add Alder Lake-N and Raptor Lake-P to the list of processor models > > supported by the Intel TCC cooling driver. > > > > Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> > > Acked-by: Zhang Rui <rui.zhang@intel.com> > > > --- > > drivers/thermal/intel/intel_tcc_cooling.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/drivers/thermal/intel/intel_tcc_cooling.c > > b/drivers/thermal/intel/intel_tcc_cooling.c > > index a9596e7562ea..95adac427b6f 100644 > > --- a/drivers/thermal/intel/intel_tcc_cooling.c > > +++ b/drivers/thermal/intel/intel_tcc_cooling.c > > @@ -81,7 +81,9 @@ static const struct x86_cpu_id tcc_ids[] > > __initconst = { > > X86_MATCH_INTEL_FAM6_MODEL(COMETLAKE, NULL), > > X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE, NULL), > > X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_L, NULL), > > + X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_N, NULL), > > X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE, NULL), > > + X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_P, NULL), > > {} > > }; > > Applied as 5.20-rc material, thanks!
diff --git a/drivers/thermal/intel/intel_tcc_cooling.c b/drivers/thermal/intel/intel_tcc_cooling.c index a9596e7562ea..95adac427b6f 100644 --- a/drivers/thermal/intel/intel_tcc_cooling.c +++ b/drivers/thermal/intel/intel_tcc_cooling.c @@ -81,7 +81,9 @@ static const struct x86_cpu_id tcc_ids[] __initconst = { X86_MATCH_INTEL_FAM6_MODEL(COMETLAKE, NULL), X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE, NULL), X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_L, NULL), + X86_MATCH_INTEL_FAM6_MODEL(ALDERLAKE_N, NULL), X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE, NULL), + X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_P, NULL), {} };
Add Alder Lake-N and Raptor Lake-P to the list of processor models supported by the Intel TCC cooling driver. Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> --- drivers/thermal/intel/intel_tcc_cooling.c | 2 ++ 1 file changed, 2 insertions(+)