linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor
@ 2014-08-22 10:05 Mika Westerberg
  2014-08-22 10:19 ` Viresh Kumar
  0 siblings, 1 reply; 4+ messages in thread
From: Mika Westerberg @ 2014-08-22 10:05 UTC (permalink / raw)
  To: Rafael J. Wysocki, Viresh Kumar
  Cc: Dirk Brandewie, Mika Westerberg, linux-pm, linux-kernel

This is pretty much the same as Intel Baytrail, only the CPU ID is
different. Add the new ID to the supported CPU list.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Cc: Dirk Brandewie <dirk.j.brandewie@intel.com>
---
 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 c5eac949760d..a3cf8994160b 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -660,6 +660,7 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
 	ICPU(0x3f, core_params),
 	ICPU(0x45, core_params),
 	ICPU(0x46, core_params),
+	ICPU(0x4c, byt_params),
 	ICPU(0x4f, core_params),
 	ICPU(0x56, core_params),
 	{}
-- 
2.1.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor
  2014-08-22 10:05 [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor Mika Westerberg
@ 2014-08-22 10:19 ` Viresh Kumar
  2014-08-27 16:47   ` Dirk Brandewie
  0 siblings, 1 reply; 4+ messages in thread
From: Viresh Kumar @ 2014-08-22 10:19 UTC (permalink / raw)
  To: Mika Westerberg
  Cc: Rafael J. Wysocki, Dirk Brandewie, linux-pm@vger.kernel.org,
	Linux Kernel Mailing List

On 22 August 2014 15:35, Mika Westerberg
<mika.westerberg@linux.intel.com> wrote:
> This is pretty much the same as Intel Baytrail, only the CPU ID is
> different. Add the new ID to the supported CPU list.
>
> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> Cc: Dirk Brandewie <dirk.j.brandewie@intel.com>

Dirk might be away on holidays..

> ---
>  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 c5eac949760d..a3cf8994160b 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -660,6 +660,7 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
>         ICPU(0x3f, core_params),
>         ICPU(0x45, core_params),
>         ICPU(0x46, core_params),
> +       ICPU(0x4c, byt_params),
>         ICPU(0x4f, core_params),
>         ICPU(0x56, core_params),
>         {}

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor
  2014-08-22 10:19 ` Viresh Kumar
@ 2014-08-27 16:47   ` Dirk Brandewie
  2014-08-27 23:48     ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Dirk Brandewie @ 2014-08-27 16:47 UTC (permalink / raw)
  To: Viresh Kumar, Mika Westerberg
  Cc: dirk.brandewie, Rafael J. Wysocki, Dirk Brandewie,
	linux-pm@vger.kernel.org, Linux Kernel Mailing List

On 08/22/2014 03:19 AM, Viresh Kumar wrote:
> On 22 August 2014 15:35, Mika Westerberg
> <mika.westerberg@linux.intel.com> wrote:
>> This is pretty much the same as Intel Baytrail, only the CPU ID is
>> different. Add the new ID to the supported CPU list.
>>
>> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
>> Cc: Dirk Brandewie <dirk.j.brandewie@intel.com>
>
> Dirk might be away on holidays..

Yes Sorry

Acked-by: Dirk Brandewie <dirk.j.brandewie@intel.com>

>
>> ---
>>   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 c5eac949760d..a3cf8994160b 100644
>> --- a/drivers/cpufreq/intel_pstate.c
>> +++ b/drivers/cpufreq/intel_pstate.c
>> @@ -660,6 +660,7 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
>>          ICPU(0x3f, core_params),
>>          ICPU(0x45, core_params),
>>          ICPU(0x46, core_params),
>> +       ICPU(0x4c, byt_params),
>>          ICPU(0x4f, core_params),
>>          ICPU(0x56, core_params),
>>          {}
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor
  2014-08-27 16:47   ` Dirk Brandewie
@ 2014-08-27 23:48     ` Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2014-08-27 23:48 UTC (permalink / raw)
  To: Dirk Brandewie
  Cc: Viresh Kumar, Mika Westerberg, Dirk Brandewie,
	linux-pm@vger.kernel.org, Linux Kernel Mailing List

On Wednesday, August 27, 2014 09:47:45 AM Dirk Brandewie wrote:
> On 08/22/2014 03:19 AM, Viresh Kumar wrote:
> > On 22 August 2014 15:35, Mika Westerberg
> > <mika.westerberg@linux.intel.com> wrote:
> >> This is pretty much the same as Intel Baytrail, only the CPU ID is
> >> different. Add the new ID to the supported CPU list.
> >>
> >> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> >> Cc: Dirk Brandewie <dirk.j.brandewie@intel.com>
> >
> > Dirk might be away on holidays..
> 
> Yes Sorry
> 
> Acked-by: Dirk Brandewie <dirk.j.brandewie@intel.com>

Queued up for 3.17-rc3, thanks!

> 
> >
> >> ---
> >>   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 c5eac949760d..a3cf8994160b 100644
> >> --- a/drivers/cpufreq/intel_pstate.c
> >> +++ b/drivers/cpufreq/intel_pstate.c
> >> @@ -660,6 +660,7 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
> >>          ICPU(0x3f, core_params),
> >>          ICPU(0x45, core_params),
> >>          ICPU(0x46, core_params),
> >> +       ICPU(0x4c, byt_params),
> >>          ICPU(0x4f, core_params),
> >>          ICPU(0x56, core_params),
> >>          {}
> >
> > Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-27 23:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-22 10:05 [PATCH] cpufreq: intel_pstate: Add CPU ID for Braswell processor Mika Westerberg
2014-08-22 10:19 ` Viresh Kumar
2014-08-27 16:47   ` Dirk Brandewie
2014-08-27 23:48     ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).