diff mbox

ACK: [trusty] [PATCH 0/3] cpufreq: powernv

Message ID 534FFE6D.4030407@canonical.com
State New
Headers show

Commit Message

Tim Gardner April 17, 2014, 4:16 p.m. UTC
Note that this also changes behavior for powerpc64-smp. I assume that 
has been tested ?

We also need the attached config patch for packaging.

rtg

Comments

Mauricio Faria de Oliveira April 17, 2014, 7:56 p.m. UTC | #1
Hi Tim,

> Note that this also changes behavior for powerpc64-smp. I assume that
> has been tested ?
>
> We also need the attached config patch for packaging.

Thanks for mentioning that.  I completely missed the config patch.

I'll give this another spin and ping back.

Best regards,
Mauricio Faria de Oliveira April 30, 2014, 3:06 p.m. UTC | #2
Hi Tim,

>> Note that this also changes behavior for powerpc64-smp. I assume that
>> has been tested ?
>>
>> We also need the attached config patch for packaging.
>
> Thanks for mentioning that.  I completely missed the config patch.
>
> I'll give this another spin and ping back.

First of all, apologies for the extra delayed response.
And thanks for applying the patches w/ the required changes.


Initially I thought of enabling it only for ppc64el, excluding
common -- any other powerpc flavours.
But, given I missed the config patch, this doesn't look like any
position/schedule dates to ask for things. :)

Nonetheless, the code should exit gracefully where non-supported
(i.e., powerpc64-smp on POWER5/Mac hardware), for this check in the
top of init code [1]:

+       power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
+       if (!power_mgt) {
+               pr_warn("power-mgt node not found\n");
+               return -ENODEV;
+       }

.. since that file (actually the 'ibm,opal' dir at all) is not part of 
the device-tree for a POWER5 system (and I can't think of it in Macs),
which is where the powerpc flavours are supposed to run, IIRC [2].

     # grep -m1 ^cpu /proc/cpuinfo
     cpu		: POWER5 (gr)

     # stat /proc/device-tree/ibm,opal/power-mgt
     stat: cannot stat `/proc/device-tree/ibm,opal/power-mgt': No such
     file or directory

Thanks!

[1] drivers/cpufreq/powernv-cpufreq.c
   static int __init powernv_cpufreq_init(void) -> init_powernv_pstates
[2] http://cdimage.ubuntu.com/releases/14.04/release/
Tim Gardner April 30, 2014, 6:25 p.m. UTC | #3
On 04/30/2014 09:06 AM, Mauricio Faria de Oliveira wrote:
> Hi Tim,
> 
>>> Note that this also changes behavior for powerpc64-smp. I assume that
>>> has been tested ?
>>>
>>> We also need the attached config patch for packaging.
>>
>> Thanks for mentioning that.  I completely missed the config patch.
>>
>> I'll give this another spin and ping back.
> 
> First of all, apologies for the extra delayed response.
> And thanks for applying the patches w/ the required changes.
> 
> 
> Initially I thought of enabling it only for ppc64el, excluding
> common -- any other powerpc flavours.
> But, given I missed the config patch, this doesn't look like any
> position/schedule dates to ask for things. :)
> 
> Nonetheless, the code should exit gracefully where non-supported
> (i.e., powerpc64-smp on POWER5/Mac hardware), for this check in the
> top of init code [1]:
> 
> +       power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
> +       if (!power_mgt) {
> +               pr_warn("power-mgt node not found\n");
> +               return -ENODEV;
> +       }
> 
> .. since that file (actually the 'ibm,opal' dir at all) is not part of
> the device-tree for a POWER5 system (and I can't think of it in Macs),
> which is where the powerpc flavours are supposed to run, IIRC [2].
> 
>     # grep -m1 ^cpu /proc/cpuinfo
>     cpu        : POWER5 (gr)
> 
>     # stat /proc/device-tree/ibm,opal/power-mgt
>     stat: cannot stat `/proc/device-tree/ibm,opal/power-mgt': No such
>     file or directory
> 
> Thanks!
> 
> [1] drivers/cpufreq/powernv-cpufreq.c
>   static int __init powernv_cpufreq_init(void) -> init_powernv_pstates
> [2] http://cdimage.ubuntu.com/releases/14.04/release/
> 

That was my take on it at the time, i.e., non Opal platforms should fail
gracefully.

rtg
diff mbox

Patch

From 69f18f9a25d8b92c8f183edd5ac9986f7c4701a9 Mon Sep 17 00:00:00 2001
From: Tim Gardner <tim.gardner@canonical.com>
Date: Thu, 17 Apr 2014 16:09:17 +0000
Subject: [PATCH] UBUNTU: [Config] CONFIG_POWERNV_CPUFREQ=m

Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
---
 debian.master/config/config.common.ubuntu | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu
index 570c2ac..5167ade 100644
--- a/debian.master/config/config.common.ubuntu
+++ b/debian.master/config/config.common.ubuntu
@@ -4926,6 +4926,7 @@  CONFIG_POWER4=y
 # CONFIG_POWER5_CPU is not set
 # CONFIG_POWER6_CPU is not set
 CONFIG_POWERCAP=y
+CONFIG_POWERNV_CPUFREQ=m
 CONFIG_POWERNV_MSI=y
 CONFIG_POWER_AVS=y
 CONFIG_POWER_AVS_OMAP=y
-- 
1.9.1