Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1500362 > unrolled thread

[RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID

Started byPiotr Luc <piotr.luc@intel.com>
First post2016-10-13 17:40 +0200
Last post2016-10-25 13:50 +0200
Articles 5 — 4 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID Piotr Luc <piotr.luc@intel.com> - 2016-10-13 17:40 +0200
    Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill  CPUID Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-10-13 20:20 +0200
      Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill  CPUID "Luc, Piotr" <Piotr.Luc@intel.com> - 2016-10-25 12:50 +0200
        Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID "Rafael J. Wysocki" <rafael@kernel.org> - 2016-10-25 13:20 +0200
          Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill  CPUID "Luc, Piotr" <Piotr.Luc@intel.com> - 2016-10-25 13:50 +0200

#1500362 — [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID

FromPiotr Luc <piotr.luc@intel.com>
Date2016-10-13 17:40 +0200
Subject[RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID
Message-ID<srQgW-5jv-17@gated-at.bofh.it>
Add Knights Mill (KNM) to the list of CPUIDs supported by intel_pstate.

Signed-off-by: Piotr Luc <piotr.luc@intel.com>
Reviewed-by: Dave Hansen <dave.hansen@intel.com>
Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Cc: Len Brown <lenb@kernel.org>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
This patch depends on [PATCH 03/11] x86/cpu/intel: Add Knights Mill 
to Intel family

 drivers/cpufreq/intel_pstate.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
index be9eade..4240aff 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -1367,6 +1367,7 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
 	ICPU(INTEL_FAM6_SKYLAKE_DESKTOP,	core_params),
 	ICPU(INTEL_FAM6_BROADWELL_XEON_D,	core_params),
 	ICPU(INTEL_FAM6_XEON_PHI_KNL,		knl_params),
+	ICPU(INTEL_FAM6_XEON_PHI_KNM,		knl_params),
 	ICPU(INTEL_FAM6_ATOM_GOLDMONT,		bxt_params),
 	{}
 };
-- 
2.10.1

[toc] | [next] | [standalone]


#1500490 — Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID

FromSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Date2016-10-13 20:20 +0200
SubjectRe: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID
Message-ID<srSLM-78p-13@gated-at.bofh.it>
In reply to#1500362
On Thu, 2016-10-13 at 17:31 +0200, Piotr Luc wrote:
> Add Knights Mill (KNM) to the list of CPUIDs supported by
> intel_pstate.
> 
> Signed-off-by: Piotr Luc <piotr.luc@intel.com>
> Reviewed-by: Dave Hansen <dave.hansen@intel.com>
> Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
> Cc: Len Brown <lenb@kernel.org>
> Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> Cc: Viresh Kumar <viresh.kumar@linaro.org>
> Cc: linux-pm@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org

Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>

> ---
> This patch depends on [PATCH 03/11] x86/cpu/intel: Add Knights Mill 
> to Intel family
> 
>  drivers/cpufreq/intel_pstate.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/cpufreq/intel_pstate.c
> b/drivers/cpufreq/intel_pstate.c
> index be9eade..4240aff 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -1367,6 +1367,7 @@ static const struct x86_cpu_id
> intel_pstate_cpu_ids[] = {
>  	ICPU(INTEL_FAM6_SKYLAKE_DESKTOP,	core_params),
>  	ICPU(INTEL_FAM6_BROADWELL_XEON_D,	core_params),
>  	ICPU(INTEL_FAM6_XEON_PHI_KNL,		knl_params),
> +	ICPU(INTEL_FAM6_XEON_PHI_KNM,		knl_params),
>  	ICPU(INTEL_FAM6_ATOM_GOLDMONT,		bxt_params),
>  	{}
>  };

[toc] | [prev] | [next] | [standalone]


#1508186 — Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID

From"Luc, Piotr" <Piotr.Luc@intel.com>
Date2016-10-25 12:50 +0200
SubjectRe: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID
Message-ID<sw7sR-4re-7@gated-at.bofh.it>
In reply to#1500490
Hi

Could you tell me what more do I need to do to get the patch
accepted?

The mentioned path 03/11 is already merged in 4.9.rc2.

Thanks
Piotr

On Thu, 2016-10-13 at 10:51 -0700, Srinivas Pandruvada wrote:
> On Thu, 2016-10-13 at 17:31 +0200, Piotr Luc wrote:
> > 
> > Add Knights Mill (KNM) to the list of CPUIDs supported by
> > intel_pstate.
> > 
> > Signed-off-by: Piotr Luc <piotr.luc@intel.com>
> > Reviewed-by: Dave Hansen <dave.hansen@intel.com>
> > Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
> > Cc: Len Brown <lenb@kernel.org>
> > Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> > Cc: Viresh Kumar <viresh.kumar@linaro.org>
> > Cc: linux-pm@vger.kernel.org
> > Cc: linux-kernel@vger.kernel.org
> 
> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
> 
> > 
> > ---
> > This patch depends on [PATCH 03/11] x86/cpu/intel: Add Knights
> > Mill 
> > to Intel family
> > 
> >  drivers/cpufreq/intel_pstate.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/cpufreq/intel_pstate.c

[toc] | [prev] | [next] | [standalone]


#1508213

From"Rafael J. Wysocki" <rafael@kernel.org>
Date2016-10-25 13:20 +0200
Message-ID<sw7VT-4Qh-15@gated-at.bofh.it>
In reply to#1508186
Hi,

On Tue, Oct 25, 2016 at 12:48 PM, Luc, Piotr <Piotr.Luc@intel.com> wrote:
> Hi
>
> Could you tell me what more do I need to do to get the patch
> accepted?
>
> The mentioned path 03/11 is already merged in 4.9.rc2.

If it's already there, I can pick up the intel_pstate one.

Thanks,
Rafael

[toc] | [prev] | [next] | [standalone]


#1508227 — Re: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID

From"Luc, Piotr" <Piotr.Luc@intel.com>
Date2016-10-25 13:50 +0200
SubjectRe: [RESEND PATCH 06/11] cpufreq: intel_pstate: Add Knights Mill CPUID
Message-ID<sw8oV-53d-3@gated-at.bofh.it>
In reply to#1508213
On Tue, 2016-10-25 at 13:16 +0200, Rafael J. Wysocki wrote:
> Hi,
> 
> On Tue, Oct 25, 2016 at 12:48 PM, Luc, Piotr <Piotr.Luc@intel.com>
> wrote:
> > 
> > Hi
> > 
> > Could you tell me what more do I need to do to get the patch
> > accepted?
> > 
> > The mentioned path 03/11 is already merged in 4.9.rc2.
> 
> If it's already there, I can pick up the intel_pstate one.
> 
> Thanks,
> > Rafael

Here is the commit http://git.kernel.org/cgit/linux/kernel/git/torvalds
/linux.git/commit/?id=0047f59834e5947d45f34f5f12eb330d158f700b

Thanks,
Piotr	

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web