On Tue, 14 Jun 2016 02:21:41 +0200 "Rafael J. Wysocki" <[email protected]> wrote:
> On Tue, Jun 14, 2016 at 2:06 AM, Jacob Pan > <[email protected]> wrote: > > On Mon, 13 Jun 2016 23:56:18 +0200 > > "Rafael J. Wysocki" <[email protected]> wrote: > > > >> On Monday, June 13, 2016 11:32:10 PM Rafael J. Wysocki wrote: > >> > On Monday, May 23, 2016 09:45:42 AM Jacob Pan wrote: > >> > > SKX RAPL interface is similar to HSX/BDX. > >> > > > >> > > Signed-off-by: Jacob Pan <[email protected]> > >> > > --- > >> > > drivers/powercap/intel_rapl.c | 1 + > >> > > 1 file changed, 1 insertion(+) > >> > > > >> > > diff --git a/drivers/powercap/intel_rapl.c > >> > > b/drivers/powercap/intel_rapl.c index 470bb62..a417e68 100644 > >> > > --- a/drivers/powercap/intel_rapl.c > >> > > +++ b/drivers/powercap/intel_rapl.c > >> > > @@ -1096,6 +1096,7 @@ static const struct x86_cpu_id rapl_ids[] > >> > > __initconst = { RAPL_CPU(0x4E, rapl_defaults_core),/* Skylake > >> > > */ RAPL_CPU(0x4C, rapl_defaults_cht),/* Braswell/Cherryview > >> > > */ RAPL_CPU(0x4A, rapl_defaults_tng),/* Tangier */ > >> > > + RAPL_CPU(0x55, rapl_defaults_hsw_server),/* Skylake > >> > > server */ RAPL_CPU(0x56, rapl_defaults_core),/* Future Xeon */ > >> > > RAPL_CPU(0x5A, rapl_defaults_ann),/* Annidale */ > >> > > RAPL_CPU(0X5C, rapl_defaults_core),/* Broxton */ > >> > > > >> > > >> > Can you please rebase this on top of 4.7-rc3? > >> > >> Or rather on top of the x86/cpu branch from tip? > >> > > done. just sent you v2. > > [PATCH v2] powercap/rapl: add support for denverton > > Thanks for that one, but the $subject one was for SKX. Any chance to > rebase and resend this one too? SKX has already been added by commit below in tip/x86/cpu: commit d40671e30cb46e834651e0ce3d4590c915171414 Author: Dave Hansen <[email protected]> Date: Thu Jun 2 17:19:55 2016 -0700 x86, powercap, rapl: Add Skylake Server model number SKX uses similar RAPL interface as Broadwell server according to Jacob Pan. Signed-off-by: Dave Hansen <[email protected]> Cc: Andy Lutomirski <[email protected]> Cc: Borislav Petkov <[email protected]> Cc: Brian Gerst <[email protected]> Cc: Dave Hansen <[email protected]> Cc: Denys Vlasenko <[email protected]> Cc: H. Peter Anvin <[email protected]> Cc: Jacob Pan <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Rafael J. Wysocki <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: [email protected] Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]> diff --git a/drivers/powercap/intel_rapl.c b/drivers/powercap/intel_rapl.c index f4f8532..2e8f2be 100644 --- a/drivers/powercap/intel_rapl.c +++ b/drivers/powercap/intel_rapl.c @@ -1114,6 +1114,7 @@ static const struct x86_cpu_id rapl_ids[] __initconst = { RAPL_CPU(INTEL_FAM6_SKYLAKE_DESKTOP, rapl_defaults_core), RAPL_CPU(INTEL_FAM6_SKYLAKE_MOBILE, rapl_defaults_core), + RAPL_CPU(INTEL_FAM6_SKYLAKE_X, rapl_defaults_hsw_server), RAPL_CPU(INTEL_FAM6_KABYLAKE_MOBILE, rapl_defaults_core), RAPL_CPU(INTEL_FAM6_KABYLAKE_DESKTOP, rapl_defaults_core),

