* [PATCH V3 1/5] PM / OPP: Add "opp-supported-hw" binding
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
@ 2015-11-11 2:40 ` Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding Viresh Kumar
` (5 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2015-11-11 2:40 UTC (permalink / raw)
To: Rafael Wysocki, robh+dt, sboyd, lee.jones
Cc: linaro-kernel, linux-pm, mark.rutland, pawel.moll, ijc+devicetree,
galak, nm, devicetree, b.zolnierkie, m.szyprowski, Viresh Kumar,
Rob Herring, open list, Rafael J. Wysocki
We may want to enable only a subset of OPPs, from the bigger list of
OPPs, based on what version of the hardware we are running on. This
would enable us to not duplicate OPP tables for every version of the
hardware we support.
To enable that, this patch defines a new property 'opp-supported-hw'. It
can support any number of hierarchy levels of the versions the hardware
follows. And based on the selected hardware versions, we can pick only
the relevant OPPs at runtime.
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Documentation/devicetree/bindings/opp/opp.txt | 65 +++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
index 0cb44dc21f97..d072fa0ffbd4 100644
--- a/Documentation/devicetree/bindings/opp/opp.txt
+++ b/Documentation/devicetree/bindings/opp/opp.txt
@@ -123,6 +123,26 @@ properties.
- opp-suspend: Marks the OPP to be used during device suspend. Only one OPP in
the table should have this.
+- opp-supported-hw: This enables us to select only a subset of OPPs from the
+ larger OPP table, based on what version of the hardware we are running on. We
+ still can't have multiple nodes with the same opp-hz value in OPP table.
+
+ It's an user defined array containing a hierarchy of hardware version numbers,
+ supported by the OPP. For example: a platform with hierarchy of three levels
+ of versions (A, B and C), this field should be like <X Y Z>, where X
+ corresponds to Version hierarchy A, Y corresponds to version hierarchy B and Z
+ corresponds to version hierarchy C.
+
+ Each level of hierarchy is represented by a 32 bit value, and so there can be
+ only 32 different supported version per hierarchy. i.e. 1 bit per version. A
+ value of 0xFFFFFFFF will enable the OPP for all versions for that hierarchy
+ level. And a value of 0x00000000 will disable the OPP completely, and so we
+ never want that to happen.
+
+ If 32 values aren't sufficient for a version hierarchy, than that version
+ hierarchy can be contained in multiple 32 bit values. i.e. <X Y Z1 Z2> in the
+ above example, Z1 & Z2 refer to the version hierarchy Z.
+
- status: Marks the node enabled/disabled.
Example 1: Single cluster Dual-core ARM cortex A9, switch DVFS states together.
@@ -463,3 +483,48 @@ Example 5: Multiple OPP tables
};
};
};
+
+Example 6: opp-supported-hw
+(example: three level hierarchy of versions: cuts, substrate and process)
+
+/ {
+ cpus {
+ cpu@0 {
+ compatible = "arm,cortex-a7";
+ ...
+
+ cpu-supply = <&cpu_supply>
+ operating-points-v2 = <&cpu0_opp_table_slow>;
+ };
+ };
+
+ opp_table {
+ compatible = "operating-points-v2";
+ status = "okay";
+ opp-shared;
+
+ opp00 {
+ /*
+ * Supports all substrate and process versions for 0xF
+ * cuts, i.e. only first four cuts.
+ */
+ opp-supported-hw = <0xF 0xFFFFFFFF 0xFFFFFFFF>
+ opp-hz = /bits/ 64 <600000000>;
+ opp-microvolt = <900000 915000 925000>;
+ ...
+ };
+
+ opp01 {
+ /*
+ * Supports:
+ * - cuts: only one, 6th cut (represented by 6th bit).
+ * - substrate: supports 16 different substrate versions
+ * - process: supports 9 different process versions
+ */
+ opp-supported-hw = <0x20 0xff0000ff 0x0000f4f0>
+ opp-hz = /bits/ 64 <800000000>;
+ opp-microvolt = <900000 915000 925000>;
+ ...
+ };
+ };
+};
--
2.6.2.198.g614a2ac
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 1/5] PM / OPP: Add "opp-supported-hw" binding Viresh Kumar
@ 2015-11-11 2:40 ` Viresh Kumar
2015-11-11 20:31 ` Rob Herring
2015-11-11 2:40 ` [PATCH V3 3/5] PM / OPP: Remove 'operating-points-names' binding Viresh Kumar
` (4 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2015-11-11 2:40 UTC (permalink / raw)
To: Rafael Wysocki, robh+dt, sboyd, lee.jones
Cc: linaro-kernel, linux-pm, mark.rutland, pawel.moll, ijc+devicetree,
galak, nm, devicetree, b.zolnierkie, m.szyprowski, Viresh Kumar,
open list, Rafael J. Wysocki
Depending on the version of hardware or its properties, which are only
known at runtime, various properties of the OPP can change. For example,
an OPP with frequency 1.2 GHz, may have different voltage/current
requirements based on the version of the hardware it is running on.
In order to not replicate the same OPP tables for varying values of all
such fields, this commit introduces the concept of opp-property-<name>.
The <name> can be chosen by the platform at runtime, and OPPs will be
initialized depending on that name string. Currently support is extended
for the following properties:
- opp-microvolt-<name>
- opp-microamp-<name>
If the name string isn't provided by the platform, or if it is provided
but doesn't match the properties present in the OPP node, we will fall
back to the original properties without the -<name> string, if they are
available.
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Documentation/devicetree/bindings/opp/opp.txt | 47 +++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
index d072fa0ffbd4..a3e7f0d5e1fb 100644
--- a/Documentation/devicetree/bindings/opp/opp.txt
+++ b/Documentation/devicetree/bindings/opp/opp.txt
@@ -100,6 +100,14 @@ properties.
Entries for multiple regulators must be present in the same order as
regulators are specified in device's DT node.
+- opp-microvolt-<name>: Named opp-microvolt property. This is exactly similar to
+ the above opp-microvolt property, but allows multiple voltage ranges to be
+ provided for the same OPP. At runtime, the platform can pick a <name> and
+ matching opp-microvolt-<name> property will be enabled for all OPPs. If the
+ platform doesn't pick a specific <name> or the <name> doesn't match with any
+ opp-microvolt-<name> properties, then opp-microvolt property shall be used, if
+ present.
+
- opp-microamp: The maximum current drawn by the device in microamperes
considering system specific parameters (such as transients, process, aging,
maximum operating temperature range etc.) as necessary. This may be used to
@@ -112,6 +120,9 @@ properties.
for few regulators, then this should be marked as zero for them. If it isn't
required for any regulator, then this property need not be present.
+- opp-microamp-<name>: Named opp-microamp property. Similar to
+ opp-microvolt-<name> property, but for microamp instead.
+
- clock-latency-ns: Specifies the maximum possible transition latency (in
nanoseconds) for switching to this OPP from any other OPP.
@@ -528,3 +539,39 @@ Example 6: opp-supported-hw
};
};
};
+
+Example 7: opp-microvolt-<name>, opp-microamp-<name>:
+(example: device with two possible microvolt ranges: slow and fast)
+
+/ {
+ cpus {
+ cpu@0 {
+ compatible = "arm,cortex-a7";
+ ...
+
+ operating-points-v2 = <&cpu0_opp_table>;
+ };
+ };
+
+ cpu0_opp_table: opp_table0 {
+ compatible = "operating-points-v2";
+ opp-shared;
+
+ opp00 {
+ opp-hz = /bits/ 64 <1000000000>;
+ opp-microvolt-slow = <900000 915000 925000>;
+ opp-microvolt-fast = <970000 975000 985000>;
+ opp-microamp-slow = <70000>;
+ opp-microamp-fast = <71000>;
+ };
+
+ opp01 {
+ opp-hz = /bits/ 64 <1200000000>;
+ opp-microvolt-slow = <900000 915000 925000>, /* Supply vcc0 */
+ <910000 925000 935000>; /* Supply vcc1 */
+ opp-microvolt-fast = <970000 975000 985000>, /* Supply vcc0 */
+ <960000 965000 975000>; /* Supply vcc1 */
+ opp-microamp = <70000>; /* Will be used for both slow/fast */
+ };
+ };
+};
--
2.6.2.198.g614a2ac
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
2015-11-11 2:40 ` [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding Viresh Kumar
@ 2015-11-11 20:31 ` Rob Herring
2015-11-12 5:08 ` Viresh Kumar
0 siblings, 1 reply; 14+ messages in thread
From: Rob Herring @ 2015-11-11 20:31 UTC (permalink / raw)
To: Viresh Kumar
Cc: Rafael Wysocki, sboyd, lee.jones, linaro-kernel, linux-pm,
mark.rutland, pawel.moll, ijc+devicetree, galak, nm, devicetree,
b.zolnierkie, m.szyprowski, open list, Rafael J. Wysocki
On Wed, Nov 11, 2015 at 08:10:55AM +0530, Viresh Kumar wrote:
> Depending on the version of hardware or its properties, which are only
> known at runtime, various properties of the OPP can change. For example,
> an OPP with frequency 1.2 GHz, may have different voltage/current
> requirements based on the version of the hardware it is running on.
>
> In order to not replicate the same OPP tables for varying values of all
> such fields, this commit introduces the concept of opp-property-<name>.
> The <name> can be chosen by the platform at runtime, and OPPs will be
> initialized depending on that name string. Currently support is extended
> for the following properties:
> - opp-microvolt-<name>
> - opp-microamp-<name>
>
> If the name string isn't provided by the platform, or if it is provided
> but doesn't match the properties present in the OPP node, we will fall
> back to the original properties without the -<name> string, if they are
> available.
>
> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> Documentation/devicetree/bindings/opp/opp.txt | 47 +++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
> index d072fa0ffbd4..a3e7f0d5e1fb 100644
> --- a/Documentation/devicetree/bindings/opp/opp.txt
> +++ b/Documentation/devicetree/bindings/opp/opp.txt
> @@ -100,6 +100,14 @@ properties.
> Entries for multiple regulators must be present in the same order as
> regulators are specified in device's DT node.
>
> +- opp-microvolt-<name>: Named opp-microvolt property. This is exactly similar to
> + the above opp-microvolt property, but allows multiple voltage ranges to be
> + provided for the same OPP. At runtime, the platform can pick a <name> and
> + matching opp-microvolt-<name> property will be enabled for all OPPs. If the
> + platform doesn't pick a specific <name> or the <name> doesn't match with any
> + opp-microvolt-<name> properties, then opp-microvolt property shall be used, if
> + present.
> +
> - opp-microamp: The maximum current drawn by the device in microamperes
> considering system specific parameters (such as transients, process, aging,
> maximum operating temperature range etc.) as necessary. This may be used to
> @@ -112,6 +120,9 @@ properties.
> for few regulators, then this should be marked as zero for them. If it isn't
> required for any regulator, then this property need not be present.
>
> +- opp-microamp-<name>: Named opp-microamp property. Similar to
> + opp-microvolt-<name> property, but for microamp instead.
> +
> - clock-latency-ns: Specifies the maximum possible transition latency (in
> nanoseconds) for switching to this OPP from any other OPP.
>
> @@ -528,3 +539,39 @@ Example 6: opp-supported-hw
> };
> };
> };
> +
> +Example 7: opp-microvolt-<name>, opp-microamp-<name>:
> +(example: device with two possible microvolt ranges: slow and fast)
> +
> +/ {
> + cpus {
> + cpu@0 {
> + compatible = "arm,cortex-a7";
> + ...
> +
> + operating-points-v2 = <&cpu0_opp_table>;
> + };
> + };
> +
> + cpu0_opp_table: opp_table0 {
> + compatible = "operating-points-v2";
> + opp-shared;
> +
> + opp00 {
Thought we are doing frequency for unit address here.
> + opp-hz = /bits/ 64 <1000000000>;
> + opp-microvolt-slow = <900000 915000 925000>;
> + opp-microvolt-fast = <970000 975000 985000>;
> + opp-microamp-slow = <70000>;
> + opp-microamp-fast = <71000>;
> + };
> +
> + opp01 {
> + opp-hz = /bits/ 64 <1200000000>;
> + opp-microvolt-slow = <900000 915000 925000>, /* Supply vcc0 */
> + <910000 925000 935000>; /* Supply vcc1 */
> + opp-microvolt-fast = <970000 975000 985000>, /* Supply vcc0 */
> + <960000 965000 975000>; /* Supply vcc1 */
> + opp-microamp = <70000>; /* Will be used for both slow/fast */
> + };
> + };
> +};
> --
> 2.6.2.198.g614a2ac
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
2015-11-11 20:31 ` Rob Herring
@ 2015-11-12 5:08 ` Viresh Kumar
2015-11-20 5:11 ` Viresh Kumar
0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2015-11-12 5:08 UTC (permalink / raw)
To: Rob Herring
Cc: Rafael Wysocki, sboyd, lee.jones, linaro-kernel, linux-pm,
mark.rutland, pawel.moll, ijc+devicetree, galak, nm, devicetree,
b.zolnierkie, m.szyprowski, open list, Rafael J. Wysocki
On 11-11-15, 14:31, Rob Herring wrote:
> > + opp00 {
>
> Thought we are doing frequency for unit address here.
That's done by the (Already reviewed) 4th patch..
--
viresh
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
2015-11-12 5:08 ` Viresh Kumar
@ 2015-11-20 5:11 ` Viresh Kumar
0 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2015-11-20 5:11 UTC (permalink / raw)
To: Rob Herring
Cc: Rafael Wysocki, sboyd, lee.jones, linaro-kernel, linux-pm,
mark.rutland, pawel.moll, ijc+devicetree, galak, nm, devicetree,
b.zolnierkie, m.szyprowski, open list, Rafael J. Wysocki
On 12-11-15, 10:38, Viresh Kumar wrote:
> On 11-11-15, 14:31, Rob Herring wrote:
> > > + opp00 {
> >
> > Thought we are doing frequency for unit address here.
>
> That's done by the (Already reviewed) 4th patch..
Ping for the pending Ack :)
--
viresh
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH V3 3/5] PM / OPP: Remove 'operating-points-names' binding
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 1/5] PM / OPP: Add "opp-supported-hw" binding Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 2/5] PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding Viresh Kumar
@ 2015-11-11 2:40 ` Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 4/5] PM / OPP: Rename OPP nodes as opp@<opp-hz> Viresh Kumar
` (3 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2015-11-11 2:40 UTC (permalink / raw)
To: Rafael Wysocki, robh+dt, sboyd, lee.jones
Cc: linaro-kernel, linux-pm, mark.rutland, pawel.moll, ijc+devicetree,
galak, nm, devicetree, b.zolnierkie, m.szyprowski, Viresh Kumar,
Rob Herring, open list, Rafael J. Wysocki
These aren't used until now by any DT files and wouldn't be used now as
we have a better scheme in place now, i.e. opp-property-<name>
properties.
Remove the (useless) binding without breaking ABI.
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Documentation/devicetree/bindings/opp/opp.txt | 62 +--------------------------
1 file changed, 2 insertions(+), 60 deletions(-)
diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
index a3e7f0d5e1fb..24eac9a97749 100644
--- a/Documentation/devicetree/bindings/opp/opp.txt
+++ b/Documentation/devicetree/bindings/opp/opp.txt
@@ -45,21 +45,10 @@ Devices supporting OPPs must set their "operating-points-v2" property with
phandle to a OPP table in their DT node. The OPP core will use this phandle to
find the operating points for the device.
-Devices may want to choose OPP tables at runtime and so can provide a list of
-phandles here. But only *one* of them should be chosen at runtime. This must be
-accompanied by a corresponding "operating-points-names" property, to uniquely
-identify the OPP tables.
-
If required, this can be extended for SoC vendor specfic bindings. Such bindings
should be documented as Documentation/devicetree/bindings/power/<vendor>-opp.txt
and should have a compatible description like: "operating-points-v2-<vendor>".
-Optional properties:
-- operating-points-names: Names of OPP tables (required if multiple OPP
- tables are present), to uniquely identify them. The same list must be present
- for all the CPUs which are sharing clock/voltage rails and hence the OPP
- tables.
-
* OPP Table Node
This describes the OPPs belonging to a device. This node can have following
@@ -448,54 +437,7 @@ Example 4: Handling multiple regulators
};
};
-Example 5: Multiple OPP tables
-
-/ {
- cpus {
- cpu@0 {
- compatible = "arm,cortex-a7";
- ...
-
- cpu-supply = <&cpu_supply>
- operating-points-v2 = <&cpu0_opp_table_slow>, <&cpu0_opp_table_fast>;
- operating-points-names = "slow", "fast";
- };
- };
-
- cpu0_opp_table_slow: opp_table_slow {
- compatible = "operating-points-v2";
- status = "okay";
- opp-shared;
-
- opp00 {
- opp-hz = /bits/ 64 <600000000>;
- ...
- };
-
- opp01 {
- opp-hz = /bits/ 64 <800000000>;
- ...
- };
- };
-
- cpu0_opp_table_fast: opp_table_fast {
- compatible = "operating-points-v2";
- status = "okay";
- opp-shared;
-
- opp10 {
- opp-hz = /bits/ 64 <1000000000>;
- ...
- };
-
- opp11 {
- opp-hz = /bits/ 64 <1100000000>;
- ...
- };
- };
-};
-
-Example 6: opp-supported-hw
+Example 5: opp-supported-hw
(example: three level hierarchy of versions: cuts, substrate and process)
/ {
@@ -540,7 +482,7 @@ Example 6: opp-supported-hw
};
};
-Example 7: opp-microvolt-<name>, opp-microamp-<name>:
+Example 6: opp-microvolt-<name>, opp-microamp-<name>:
(example: device with two possible microvolt ranges: slow and fast)
/ {
--
2.6.2.198.g614a2ac
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH V3 4/5] PM / OPP: Rename OPP nodes as opp@<opp-hz>
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
` (2 preceding siblings ...)
2015-11-11 2:40 ` [PATCH V3 3/5] PM / OPP: Remove 'operating-points-names' binding Viresh Kumar
@ 2015-11-11 2:40 ` Viresh Kumar
2015-11-11 2:40 ` [PATCH V3 5/5] ARM: dts: exynos4412: " Viresh Kumar
` (2 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2015-11-11 2:40 UTC (permalink / raw)
To: Rafael Wysocki, robh+dt, sboyd, lee.jones
Cc: linaro-kernel, linux-pm, mark.rutland, pawel.moll, ijc+devicetree,
galak, nm, devicetree, b.zolnierkie, m.szyprowski, Viresh Kumar,
Rob Herring, open list, Rafael J. Wysocki
It would be better to name OPP nodes as opp@<opp-hz> as that will ensure
that multiple DT nodes don't contain the same frequency. Of course we
expect the writer to name the node with its opp-hz frequency and not any
other frequency.
And that will let the compile error out if multiple nodes are using the
same opp-hz frequency.
Suggested-by: Stephen Boyd <sboyd@codeaurora.org>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Documentation/devicetree/bindings/opp/opp.txt | 38 +++++++++++++--------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
index 24eac9a97749..601256fe8c0d 100644
--- a/Documentation/devicetree/bindings/opp/opp.txt
+++ b/Documentation/devicetree/bindings/opp/opp.txt
@@ -177,20 +177,20 @@ Example 1: Single cluster Dual-core ARM cortex A9, switch DVFS states together.
compatible = "operating-points-v2";
opp-shared;
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
clock-latency-ns = <300000>;
opp-suspend;
};
- opp01 {
+ opp@1100000000 {
opp-hz = /bits/ 64 <1100000000>;
opp-microvolt = <980000 1000000 1010000>;
opp-microamp = <80000>;
clock-latency-ns = <310000>;
};
- opp02 {
+ opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
opp-microvolt = <1025000>;
clock-latency-ns = <290000>;
@@ -256,20 +256,20 @@ independently.
* independently.
*/
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
clock-latency-ns = <300000>;
opp-suspend;
};
- opp01 {
+ opp@1100000000 {
opp-hz = /bits/ 64 <1100000000>;
opp-microvolt = <980000 1000000 1010000>;
opp-microamp = <80000>;
clock-latency-ns = <310000>;
};
- opp02 {
+ opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
opp-microvolt = <1025000>;
opp-microamp = <90000;
@@ -332,20 +332,20 @@ DVFS state together.
compatible = "operating-points-v2";
opp-shared;
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000 975000 985000>;
opp-microamp = <70000>;
clock-latency-ns = <300000>;
opp-suspend;
};
- opp01 {
+ opp@1100000000 {
opp-hz = /bits/ 64 <1100000000>;
opp-microvolt = <980000 1000000 1010000>;
opp-microamp = <80000>;
clock-latency-ns = <310000>;
};
- opp02 {
+ opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
opp-microvolt = <1025000>;
opp-microamp = <90000>;
@@ -358,20 +358,20 @@ DVFS state together.
compatible = "operating-points-v2";
opp-shared;
- opp10 {
+ opp@1300000000 {
opp-hz = /bits/ 64 <1300000000>;
opp-microvolt = <1045000 1050000 1055000>;
opp-microamp = <95000>;
clock-latency-ns = <400000>;
opp-suspend;
};
- opp11 {
+ opp@1400000000 {
opp-hz = /bits/ 64 <1400000000>;
opp-microvolt = <1075000>;
opp-microamp = <100000>;
clock-latency-ns = <400000>;
};
- opp12 {
+ opp@1500000000 {
opp-hz = /bits/ 64 <1500000000>;
opp-microvolt = <1010000 1100000 1110000>;
opp-microamp = <95000>;
@@ -398,7 +398,7 @@ Example 4: Handling multiple regulators
compatible = "operating-points-v2";
opp-shared;
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000>, /* Supply 0 */
<960000>, /* Supply 1 */
@@ -411,7 +411,7 @@ Example 4: Handling multiple regulators
/* OR */
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000 975000 985000>, /* Supply 0 */
<960000 965000 975000>, /* Supply 1 */
@@ -424,7 +424,7 @@ Example 4: Handling multiple regulators
/* OR */
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <970000 975000 985000>, /* Supply 0 */
<960000 965000 975000>, /* Supply 1 */
@@ -456,7 +456,7 @@ Example 5: opp-supported-hw
status = "okay";
opp-shared;
- opp00 {
+ opp@600000000 {
/*
* Supports all substrate and process versions for 0xF
* cuts, i.e. only first four cuts.
@@ -467,7 +467,7 @@ Example 5: opp-supported-hw
...
};
- opp01 {
+ opp@800000000 {
/*
* Supports:
* - cuts: only one, 6th cut (represented by 6th bit).
@@ -499,7 +499,7 @@ Example 5: opp-supported-hw
compatible = "operating-points-v2";
opp-shared;
- opp00 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt-slow = <900000 915000 925000>;
opp-microvolt-fast = <970000 975000 985000>;
@@ -507,7 +507,7 @@ Example 5: opp-supported-hw
opp-microamp-fast = <71000>;
};
- opp01 {
+ opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
opp-microvolt-slow = <900000 915000 925000>, /* Supply vcc0 */
<910000 925000 935000>; /* Supply vcc1 */
--
2.6.2.198.g614a2ac
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH V3 5/5] ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz>
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
` (3 preceding siblings ...)
2015-11-11 2:40 ` [PATCH V3 4/5] PM / OPP: Rename OPP nodes as opp@<opp-hz> Viresh Kumar
@ 2015-11-11 2:40 ` Viresh Kumar
2015-11-23 23:04 ` Rafael J. Wysocki
[not found] ` <cover.1447209519.git.viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-12-10 8:58 ` Lee Jones
6 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2015-11-11 2:40 UTC (permalink / raw)
To: Rafael Wysocki, robh+dt, sboyd, lee.jones
Cc: linaro-kernel, linux-pm, mark.rutland, pawel.moll, ijc+devicetree,
galak, nm, devicetree, b.zolnierkie, m.szyprowski, Viresh Kumar,
Krzysztof Kozlowski, Kukjin Kim, moderated list:ARM PORT,
open list, moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
Russell King
OPP bindings got updated to name OPP nodes this way, make changes
according to that.
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
arch/arm/boot/dts/exynos4412.dtsi | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm/boot/dts/exynos4412.dtsi
index 294cfe40388d..40beede46e55 100644
--- a/arch/arm/boot/dts/exynos4412.dtsi
+++ b/arch/arm/boot/dts/exynos4412.dtsi
@@ -64,73 +64,73 @@
compatible = "operating-points-v2";
opp-shared;
- opp00 {
+ opp@200000000 {
opp-hz = /bits/ 64 <200000000>;
opp-microvolt = <900000>;
clock-latency-ns = <200000>;
};
- opp01 {
+ opp@300000000 {
opp-hz = /bits/ 64 <300000000>;
opp-microvolt = <900000>;
clock-latency-ns = <200000>;
};
- opp02 {
+ opp@400000000 {
opp-hz = /bits/ 64 <400000000>;
opp-microvolt = <925000>;
clock-latency-ns = <200000>;
};
- opp03 {
+ opp@500000000 {
opp-hz = /bits/ 64 <500000000>;
opp-microvolt = <950000>;
clock-latency-ns = <200000>;
};
- opp04 {
+ opp@600000000 {
opp-hz = /bits/ 64 <600000000>;
opp-microvolt = <975000>;
clock-latency-ns = <200000>;
};
- opp05 {
+ opp@700000000 {
opp-hz = /bits/ 64 <700000000>;
opp-microvolt = <987500>;
clock-latency-ns = <200000>;
};
- opp06 {
+ opp@800000000 {
opp-hz = /bits/ 64 <800000000>;
opp-microvolt = <1000000>;
clock-latency-ns = <200000>;
opp-suspend;
};
- opp07 {
+ opp@900000000 {
opp-hz = /bits/ 64 <900000000>;
opp-microvolt = <1037500>;
clock-latency-ns = <200000>;
};
- opp08 {
+ opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <1087500>;
clock-latency-ns = <200000>;
};
- opp09 {
+ opp@1100000000 {
opp-hz = /bits/ 64 <1100000000>;
opp-microvolt = <1137500>;
clock-latency-ns = <200000>;
};
- opp10 {
+ opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
opp-microvolt = <1187500>;
clock-latency-ns = <200000>;
};
- opp11 {
+ opp@1300000000 {
opp-hz = /bits/ 64 <1300000000>;
opp-microvolt = <1250000>;
clock-latency-ns = <200000>;
};
- opp12 {
+ opp@1400000000 {
opp-hz = /bits/ 64 <1400000000>;
opp-microvolt = <1287500>;
clock-latency-ns = <200000>;
};
- opp13 {
+ opp@1500000000 {
opp-hz = /bits/ 64 <1500000000>;
opp-microvolt = <1350000>;
clock-latency-ns = <200000>;
--
2.6.2.198.g614a2ac
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH V3 5/5] ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz>
2015-11-11 2:40 ` [PATCH V3 5/5] ARM: dts: exynos4412: " Viresh Kumar
@ 2015-11-23 23:04 ` Rafael J. Wysocki
2015-11-23 23:10 ` Rafael J. Wysocki
0 siblings, 1 reply; 14+ messages in thread
From: Rafael J. Wysocki @ 2015-11-23 23:04 UTC (permalink / raw)
To: Viresh Kumar
Cc: robh+dt, sboyd, lee.jones, linaro-kernel, linux-pm, mark.rutland,
pawel.moll, ijc+devicetree, galak, nm, devicetree, b.zolnierkie,
m.szyprowski, Krzysztof Kozlowski, Kukjin Kim,
moderated list:ARM PORT, open list,
moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES, Russell King
On Wednesday, November 11, 2015 08:10:58 AM Viresh Kumar wrote:
> OPP bindings got updated to name OPP nodes this way, make changes
> according to that.
>
> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> arch/arm/boot/dts/exynos4412.dtsi | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm/boot/dts/exynos4412.dtsi
> index 294cfe40388d..40beede46e55 100644
> --- a/arch/arm/boot/dts/exynos4412.dtsi
> +++ b/arch/arm/boot/dts/exynos4412.dtsi
> @@ -64,73 +64,73 @@
> compatible = "operating-points-v2";
> opp-shared;
>
> - opp00 {
> + opp@200000000 {
> opp-hz = /bits/ 64 <200000000>;
> opp-microvolt = <900000>;
> clock-latency-ns = <200000>;
> };
> - opp01 {
> + opp@300000000 {
> opp-hz = /bits/ 64 <300000000>;
> opp-microvolt = <900000>;
> clock-latency-ns = <200000>;
> };
> - opp02 {
> + opp@400000000 {
> opp-hz = /bits/ 64 <400000000>;
> opp-microvolt = <925000>;
> clock-latency-ns = <200000>;
> };
> - opp03 {
> + opp@500000000 {
> opp-hz = /bits/ 64 <500000000>;
> opp-microvolt = <950000>;
> clock-latency-ns = <200000>;
> };
> - opp04 {
> + opp@600000000 {
> opp-hz = /bits/ 64 <600000000>;
> opp-microvolt = <975000>;
> clock-latency-ns = <200000>;
> };
> - opp05 {
> + opp@700000000 {
> opp-hz = /bits/ 64 <700000000>;
> opp-microvolt = <987500>;
> clock-latency-ns = <200000>;
> };
> - opp06 {
> + opp@800000000 {
> opp-hz = /bits/ 64 <800000000>;
> opp-microvolt = <1000000>;
> clock-latency-ns = <200000>;
> opp-suspend;
> };
> - opp07 {
> + opp@900000000 {
> opp-hz = /bits/ 64 <900000000>;
> opp-microvolt = <1037500>;
> clock-latency-ns = <200000>;
> };
> - opp08 {
> + opp@1000000000 {
> opp-hz = /bits/ 64 <1000000000>;
> opp-microvolt = <1087500>;
> clock-latency-ns = <200000>;
> };
> - opp09 {
> + opp@1100000000 {
> opp-hz = /bits/ 64 <1100000000>;
> opp-microvolt = <1137500>;
> clock-latency-ns = <200000>;
> };
> - opp10 {
> + opp@1200000000 {
> opp-hz = /bits/ 64 <1200000000>;
> opp-microvolt = <1187500>;
> clock-latency-ns = <200000>;
> };
> - opp11 {
> + opp@1300000000 {
> opp-hz = /bits/ 64 <1300000000>;
> opp-microvolt = <1250000>;
> clock-latency-ns = <200000>;
> };
> - opp12 {
> + opp@1400000000 {
> opp-hz = /bits/ 64 <1400000000>;
> opp-microvolt = <1287500>;
> clock-latency-ns = <200000>;
> };
> - opp13 {
> + opp@1500000000 {
> opp-hz = /bits/ 64 <1500000000>;
> opp-microvolt = <1350000>;
> clock-latency-ns = <200000>;
>
This one doesn't apply for me on top of the current Linus' tree, so please
update.
Thanks,
Rafael
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH V3 5/5] ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz>
2015-11-23 23:04 ` Rafael J. Wysocki
@ 2015-11-23 23:10 ` Rafael J. Wysocki
0 siblings, 0 replies; 14+ messages in thread
From: Rafael J. Wysocki @ 2015-11-23 23:10 UTC (permalink / raw)
To: Viresh Kumar
Cc: robh+dt, sboyd, lee.jones, linaro-kernel, linux-pm, mark.rutland,
pawel.moll, ijc+devicetree, galak, nm, devicetree, b.zolnierkie,
m.szyprowski, Krzysztof Kozlowski, Kukjin Kim,
moderated list:ARM PORT, open list,
moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES, Russell King
On Tuesday, November 24, 2015 12:04:00 AM Rafael J. Wysocki wrote:
> On Wednesday, November 11, 2015 08:10:58 AM Viresh Kumar wrote:
> > OPP bindings got updated to name OPP nodes this way, make changes
> > according to that.
> >
> > Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> > ---
> > arch/arm/boot/dts/exynos4412.dtsi | 28 ++++++++++++++--------------
> > 1 file changed, 14 insertions(+), 14 deletions(-)
> >
> > diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm/boot/dts/exynos4412.dtsi
> > index 294cfe40388d..40beede46e55 100644
> > --- a/arch/arm/boot/dts/exynos4412.dtsi
> > +++ b/arch/arm/boot/dts/exynos4412.dtsi
> > @@ -64,73 +64,73 @@
> > compatible = "operating-points-v2";
> > opp-shared;
> >
> > - opp00 {
> > + opp@200000000 {
> > opp-hz = /bits/ 64 <200000000>;
> > opp-microvolt = <900000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp01 {
> > + opp@300000000 {
> > opp-hz = /bits/ 64 <300000000>;
> > opp-microvolt = <900000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp02 {
> > + opp@400000000 {
> > opp-hz = /bits/ 64 <400000000>;
> > opp-microvolt = <925000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp03 {
> > + opp@500000000 {
> > opp-hz = /bits/ 64 <500000000>;
> > opp-microvolt = <950000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp04 {
> > + opp@600000000 {
> > opp-hz = /bits/ 64 <600000000>;
> > opp-microvolt = <975000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp05 {
> > + opp@700000000 {
> > opp-hz = /bits/ 64 <700000000>;
> > opp-microvolt = <987500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp06 {
> > + opp@800000000 {
> > opp-hz = /bits/ 64 <800000000>;
> > opp-microvolt = <1000000>;
> > clock-latency-ns = <200000>;
> > opp-suspend;
> > };
> > - opp07 {
> > + opp@900000000 {
> > opp-hz = /bits/ 64 <900000000>;
> > opp-microvolt = <1037500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp08 {
> > + opp@1000000000 {
> > opp-hz = /bits/ 64 <1000000000>;
> > opp-microvolt = <1087500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp09 {
> > + opp@1100000000 {
> > opp-hz = /bits/ 64 <1100000000>;
> > opp-microvolt = <1137500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp10 {
> > + opp@1200000000 {
> > opp-hz = /bits/ 64 <1200000000>;
> > opp-microvolt = <1187500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp11 {
> > + opp@1300000000 {
> > opp-hz = /bits/ 64 <1300000000>;
> > opp-microvolt = <1250000>;
> > clock-latency-ns = <200000>;
> > };
> > - opp12 {
> > + opp@1400000000 {
> > opp-hz = /bits/ 64 <1400000000>;
> > opp-microvolt = <1287500>;
> > clock-latency-ns = <200000>;
> > };
> > - opp13 {
> > + opp@1500000000 {
> > opp-hz = /bits/ 64 <1500000000>;
> > opp-microvolt = <1350000>;
> > clock-latency-ns = <200000>;
> >
>
> This one doesn't apply for me on top of the current Linus' tree, so please
> update.
Scratch that, my bad. Sorry.
Thanks,
Rafael
^ permalink raw reply [flat|nested] 14+ messages in thread
[parent not found: <cover.1447209519.git.viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>]
* Re: [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings
[not found] ` <cover.1447209519.git.viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2015-11-23 23:02 ` Rafael J. Wysocki
2015-11-24 1:59 ` Viresh Kumar
0 siblings, 1 reply; 14+ messages in thread
From: Rafael J. Wysocki @ 2015-11-23 23:02 UTC (permalink / raw)
To: Viresh Kumar
Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A, sboyd-sgV2jX0FEOL9JmXXK+q4OQ,
lee.jones-QSEj5FYQhm4dnm+yROfE0A,
linaro-kernel-cunTk1MwBs8s++Sfvej+rw,
linux-pm-u79uwXL29TY76Z2rM5mHXA, mark.rutland-5wv7dgnIgG8,
pawel.moll-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, nm-l0cyMroinI0,
devicetree-u79uwXL29TY76Z2rM5mHXA,
b.zolnierkie-Sze3O3UU22JBDgjK7y7TUQ,
m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ
On Wednesday, November 11, 2015 08:10:53 AM Viresh Kumar wrote:
> Hi Rafael,
>
> Rob only needs to Ack the modified 2/5 patch and then you can safely
> apply this series.
>
> The first patch enables us to select only a subset of OPPs from the
> bigger table, based on what version of the hardware we are running on.
>
> The second one enables us to select slightly different values for
> multiple properties, based on what kind of hardware they are running on.
>
> The third one removes an (unused) binding, which is replaced by the
> second patch with a better solution.
>
> The fourth patch is based on what Stephen suggested (and then reviewed)
> in the earlier series, and the 5th one updates the existing users of
> these bindings for it.
>
> V2->V3:
> - dropped turbo/suspend named properties
> - Applied all the Acks
>
> Viresh Kumar (5):
> PM / OPP: Add "opp-supported-hw" binding
> PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
> PM / OPP: Remove 'operating-points-names' binding
> PM / OPP: Rename OPP nodes as opp@<opp-hz>
> ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz>
>
> Documentation/devicetree/bindings/opp/opp.txt | 132 ++++++++++++++++++--------
> arch/arm/boot/dts/exynos4412.dtsi | 28 +++---
> 2 files changed, 107 insertions(+), 53 deletions(-)
I'm tentatively queuing this series up for 4.5, but ACKs from Rob are
still missing for patches [2,5/5] AFAICS.
Thanks,
Rafael
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings
2015-11-23 23:02 ` [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Rafael J. Wysocki
@ 2015-11-24 1:59 ` Viresh Kumar
0 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2015-11-24 1:59 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: robh+dt, sboyd, lee.jones, linaro-kernel, linux-pm, mark.rutland,
pawel.moll, ijc+devicetree, galak, nm, devicetree, b.zolnierkie,
m.szyprowski
On 24-11-15, 00:02, Rafael J. Wysocki wrote:
> I'm tentatively queuing this series up for 4.5, but ACKs from Rob are
> still missing for patches [2,5/5] AFAICS.
He may not Ack the 5th one as that's a platform patch, and I have
asked him yesterday again to have a look at 2/5.
--
viresh
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings
2015-11-11 2:40 [PATCH V3 0/5] PM / OPP: opp-supported-hw and <prop>-name bindings Viresh Kumar
` (5 preceding siblings ...)
[not found] ` <cover.1447209519.git.viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2015-12-10 8:58 ` Lee Jones
6 siblings, 0 replies; 14+ messages in thread
From: Lee Jones @ 2015-12-10 8:58 UTC (permalink / raw)
To: Viresh Kumar
Cc: Rafael Wysocki, robh+dt, sboyd, linaro-kernel, linux-pm,
mark.rutland, pawel.moll, ijc+devicetree, galak, nm, devicetree,
b.zolnierkie, m.szyprowski
On Wed, 11 Nov 2015, Viresh Kumar wrote:
> Hi Rafael,
>
> Rob only needs to Ack the modified 2/5 patch and then you can safely
> apply this series.
>
> The first patch enables us to select only a subset of OPPs from the
> bigger table, based on what version of the hardware we are running on.
>
> The second one enables us to select slightly different values for
> multiple properties, based on what kind of hardware they are running on.
>
> The third one removes an (unused) binding, which is replaced by the
> second patch with a better solution.
>
> The fourth patch is based on what Stephen suggested (and then reviewed)
> in the earlier series, and the 5th one updates the existing users of
> these bindings for it.
>
> V2->V3:
> - dropped turbo/suspend named properties
> - Applied all the Acks
>
> Viresh Kumar (5):
> PM / OPP: Add "opp-supported-hw" binding
> PM / OPP: Add {opp-microvolt|opp-microamp}-<name> binding
> PM / OPP: Remove 'operating-points-names' binding
> PM / OPP: Rename OPP nodes as opp@<opp-hz>
> ARM: dts: exynos4412: Rename OPP nodes as opp@<opp-hz>
Tested-by: Lee Jones <lee.jones@linaro.org>
> Documentation/devicetree/bindings/opp/opp.txt | 132 ++++++++++++++++++--------
> arch/arm/boot/dts/exynos4412.dtsi | 28 +++---
> 2 files changed, 107 insertions(+), 53 deletions(-)
>
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 14+ messages in thread