* [PATCH 0/3] ARM: kernel: minor topology/DT clock fixes @ 2013-06-20 14:39 Florian Fainelli 2013-06-20 14:39 ` [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first Florian Fainelli ` (2 more replies) 0 siblings, 3 replies; 8+ messages in thread From: Florian Fainelli @ 2013-06-20 14:39 UTC (permalink / raw) To: lorenzo.pieralisi Cc: Florian Fainelli, nico, devicetree-discuss, rob.herring, grant.likely, linux-arm-kernel Hi all, Following the initial patch: 1371635237-22860-1-git-send-email-f.fainelli@gmail.com here is a more complete series of fixes to address the clocks/clock-frequency parsing in the ARM kernel topology code. Note that some in-tree platforms for which the topology code was enabled will issue the warning from patch 3. This is done on purpose such that they get a chance to be fixed, either by adding common clock support, or by adding a valid "clock-frequency" property. Florian Fainelli (3): ARM: kernel: get cpu clock rate from cpu clock node first ARM: kernel: downgrade missing clock-frequency from error to warning ARM: kernel: document ARM CPUs clocks and clock-frequency properties Documentation/devicetree/bindings/arm/cpus.txt | 7 ++++++- arch/arm/kernel/topology.c | 23 ++++++++++++++++------- 2 files changed, 22 insertions(+), 8 deletions(-) -- 1.8.1.2 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first 2013-06-20 14:39 [PATCH 0/3] ARM: kernel: minor topology/DT clock fixes Florian Fainelli @ 2013-06-20 14:39 ` Florian Fainelli [not found] ` <1371739146-32639-2-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2013-06-20 14:39 ` [PATCH 2/3] ARM: kernel: downgrade missing clock-frequency from error to warning Florian Fainelli 2013-06-20 14:39 ` [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties Florian Fainelli 2 siblings, 1 reply; 8+ messages in thread From: Florian Fainelli @ 2013-06-20 14:39 UTC (permalink / raw) To: lorenzo.pieralisi Cc: Florian Fainelli, nico, devicetree-discuss, rob.herring, grant.likely, linux-arm-kernel The current topology code will only attempt to parse a "clock-frequency" property for a given CPU node. Some platforms such as the ecx-2000 provide a clock node. Change the logic to first look for a clock node, and if we fail, fallback to parsing a "clock-frequency" property. To avoid unnecessary casting, change rate from u32 to unsigned long, and introduce the "prop" variable to hold the contents of the "clock-frequency" property. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> --- arch/arm/kernel/topology.c | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c index c5a5954..8f340a1 100644 --- a/arch/arm/kernel/topology.c +++ b/arch/arm/kernel/topology.c @@ -21,6 +21,7 @@ #include <linux/of.h> #include <linux/sched.h> #include <linux/slab.h> +#include <linux/clk.h> #include <asm/cputype.h> #include <asm/topology.h> @@ -104,7 +105,9 @@ static void __init parse_dt_topology(void) cpu_capacity = kzalloc(alloc_size, GFP_NOWAIT); while ((cn = of_find_node_by_type(cn, "cpu"))) { - const u32 *rate, *reg; + const u32 *prop, *reg; + unsigned long rate; + struct clk *cpu_clk; int len; if (cpu >= num_possible_cpus()) @@ -117,11 +120,17 @@ static void __init parse_dt_topology(void) if (cpu_eff->compatible == NULL) continue; - rate = of_get_property(cn, "clock-frequency", &len); - if (!rate || len != 4) { - pr_err("%s missing clock-frequency property\n", - cn->full_name); - continue; + cpu_clk = of_clk_get(cn, 0); + if (IS_ERR(cpu_clk)) { + prop = of_get_property(cn, "clock-frequency", &len); + if (!prop || len != 4) { + pr_err("%s missing clock-frequency property\n", + cn->full_name); + continue; + } + rate = be32_to_cpup(prop); + } else { + rate = clk_get_rate(cpu_clk); } reg = of_get_property(cn, "reg", &len); @@ -130,7 +139,7 @@ static void __init parse_dt_topology(void) continue; } - capacity = ((be32_to_cpup(rate)) >> 20) * cpu_eff->efficiency; + capacity = (rate >> 20) * cpu_eff->efficiency; /* Save min capacity of the system */ if (capacity < min_capacity) -- 1.8.1.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
[parent not found: <1371739146-32639-2-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first [not found] ` <1371739146-32639-2-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2013-06-21 9:35 ` Lorenzo Pieralisi 2013-06-21 9:42 ` Florian Fainelli 0 siblings, 1 reply; 8+ messages in thread From: Lorenzo Pieralisi @ 2013-06-21 9:35 UTC (permalink / raw) To: Florian Fainelli Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, nico-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org On Thu, Jun 20, 2013 at 03:39:04PM +0100, Florian Fainelli wrote: > The current topology code will only attempt to parse a "clock-frequency" > property for a given CPU node. Some platforms such as the ecx-2000 > provide a clock node. Change the logic to first look for a clock node, > and if we fail, fallback to parsing a "clock-frequency" property. To > avoid unnecessary casting, change rate from u32 to unsigned long, and > introduce the "prop" variable to hold the contents of the > "clock-frequency" property. > > Signed-off-by: Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > arch/arm/kernel/topology.c | 23 ++++++++++++++++------- > 1 file changed, 16 insertions(+), 7 deletions(-) > > diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c > index c5a5954..8f340a1 100644 > --- a/arch/arm/kernel/topology.c > +++ b/arch/arm/kernel/topology.c > @@ -21,6 +21,7 @@ > #include <linux/of.h> > #include <linux/sched.h> > #include <linux/slab.h> > +#include <linux/clk.h> > > #include <asm/cputype.h> > #include <asm/topology.h> > @@ -104,7 +105,9 @@ static void __init parse_dt_topology(void) > cpu_capacity = kzalloc(alloc_size, GFP_NOWAIT); > > while ((cn = of_find_node_by_type(cn, "cpu"))) { > - const u32 *rate, *reg; > + const u32 *prop, *reg; > + unsigned long rate; > + struct clk *cpu_clk; > int len; > > if (cpu >= num_possible_cpus()) > @@ -117,11 +120,17 @@ static void __init parse_dt_topology(void) > if (cpu_eff->compatible == NULL) > continue; > > - rate = of_get_property(cn, "clock-frequency", &len); > - if (!rate || len != 4) { > - pr_err("%s missing clock-frequency property\n", > - cn->full_name); > - continue; > + cpu_clk = of_clk_get(cn, 0); > + if (IS_ERR(cpu_clk)) { > + prop = of_get_property(cn, "clock-frequency", &len); > + if (!prop || len != 4) { > + pr_err("%s missing clock-frequency property\n", > + cn->full_name); > + continue; > + } > + rate = be32_to_cpup(prop); > + } else { > + rate = clk_get_rate(cpu_clk); I am not questioning whether adding a "clocks" property is proper or not, but let me say cpu related info and parsing are already scattered all over the place and this is wrong. We are currently trying to consolidate CPU related info in a single structure in the kernel, and then this code can become a consumer of that data. As to the "clocks" property as I mentioned in another reply, that requires more thought. Lorenzo ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first 2013-06-21 9:35 ` Lorenzo Pieralisi @ 2013-06-21 9:42 ` Florian Fainelli 0 siblings, 0 replies; 8+ messages in thread From: Florian Fainelli @ 2013-06-21 9:42 UTC (permalink / raw) To: Lorenzo Pieralisi Cc: grant.likely@linaro.org, devicetree-discuss@lists.ozlabs.org, rob.herring@calxeda.com, linux-arm-kernel@lists.infradead.org, nico@linaro.org 2013/6/21 Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>: > On Thu, Jun 20, 2013 at 03:39:04PM +0100, Florian Fainelli wrote: >> The current topology code will only attempt to parse a "clock-frequency" >> property for a given CPU node. Some platforms such as the ecx-2000 >> provide a clock node. Change the logic to first look for a clock node, >> and if we fail, fallback to parsing a "clock-frequency" property. To >> avoid unnecessary casting, change rate from u32 to unsigned long, and >> introduce the "prop" variable to hold the contents of the >> "clock-frequency" property. >> >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> >> --- >> arch/arm/kernel/topology.c | 23 ++++++++++++++++------- >> 1 file changed, 16 insertions(+), 7 deletions(-) >> >> diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c >> index c5a5954..8f340a1 100644 >> --- a/arch/arm/kernel/topology.c >> +++ b/arch/arm/kernel/topology.c >> @@ -21,6 +21,7 @@ >> #include <linux/of.h> >> #include <linux/sched.h> >> #include <linux/slab.h> >> +#include <linux/clk.h> >> >> #include <asm/cputype.h> >> #include <asm/topology.h> >> @@ -104,7 +105,9 @@ static void __init parse_dt_topology(void) >> cpu_capacity = kzalloc(alloc_size, GFP_NOWAIT); >> >> while ((cn = of_find_node_by_type(cn, "cpu"))) { >> - const u32 *rate, *reg; >> + const u32 *prop, *reg; >> + unsigned long rate; >> + struct clk *cpu_clk; >> int len; >> >> if (cpu >= num_possible_cpus()) >> @@ -117,11 +120,17 @@ static void __init parse_dt_topology(void) >> if (cpu_eff->compatible == NULL) >> continue; >> >> - rate = of_get_property(cn, "clock-frequency", &len); >> - if (!rate || len != 4) { >> - pr_err("%s missing clock-frequency property\n", >> - cn->full_name); >> - continue; >> + cpu_clk = of_clk_get(cn, 0); >> + if (IS_ERR(cpu_clk)) { >> + prop = of_get_property(cn, "clock-frequency", &len); >> + if (!prop || len != 4) { >> + pr_err("%s missing clock-frequency property\n", >> + cn->full_name); >> + continue; >> + } >> + rate = be32_to_cpup(prop); >> + } else { >> + rate = clk_get_rate(cpu_clk); > > I am not questioning whether adding a "clocks" property is proper or > not, but let me say cpu related info and parsing are already scattered > all over the place and this is wrong. We are currently trying to > consolidate CPU related info in a single structure in the kernel, and > then this code can become a consumer of that data. Fine, this makes sense, although it was probably hard to know it without you telling it first. > As to the "clocks" > property as I mentioned in another reply, that requires more thought. Fair enough. -- Florian ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/3] ARM: kernel: downgrade missing clock-frequency from error to warning 2013-06-20 14:39 [PATCH 0/3] ARM: kernel: minor topology/DT clock fixes Florian Fainelli 2013-06-20 14:39 ` [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first Florian Fainelli @ 2013-06-20 14:39 ` Florian Fainelli 2013-06-20 14:39 ` [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties Florian Fainelli 2 siblings, 0 replies; 8+ messages in thread From: Florian Fainelli @ 2013-06-20 14:39 UTC (permalink / raw) To: lorenzo.pieralisi Cc: Florian Fainelli, nico, devicetree-discuss, rob.herring, grant.likely, linux-arm-kernel A subsequent patch will modify the ARM CPU binding documentation to make it mandatory to supply either a "clocks" node, or a "clock-frequency" node when the property "device_type" equals "cpu". Since this is going to start spitting errors for some in-tree platforms, dowgrade the error message to a simple warning. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> --- arch/arm/kernel/topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c index 8f340a1..091ec84 100644 --- a/arch/arm/kernel/topology.c +++ b/arch/arm/kernel/topology.c @@ -124,7 +124,7 @@ static void __init parse_dt_topology(void) if (IS_ERR(cpu_clk)) { prop = of_get_property(cn, "clock-frequency", &len); if (!prop || len != 4) { - pr_err("%s missing clock-frequency property\n", + pr_warn("%s missing clock-frequency property\n", cn->full_name); continue; } -- 1.8.1.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties 2013-06-20 14:39 [PATCH 0/3] ARM: kernel: minor topology/DT clock fixes Florian Fainelli 2013-06-20 14:39 ` [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first Florian Fainelli 2013-06-20 14:39 ` [PATCH 2/3] ARM: kernel: downgrade missing clock-frequency from error to warning Florian Fainelli @ 2013-06-20 14:39 ` Florian Fainelli [not found] ` <1371739146-32639-4-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2 siblings, 1 reply; 8+ messages in thread From: Florian Fainelli @ 2013-06-20 14:39 UTC (permalink / raw) To: lorenzo.pieralisi Cc: Florian Fainelli, nico, devicetree-discuss, rob.herring, grant.likely, linux-arm-kernel ARM CPU device tree nodes may contain a "clock-frequency" property, when set, this property must contain the CPU frequency in Hz, which is then used by the topology parsing code in arch/arm/kernel/topology.c to deduced the CPU capacity. The "clocks" property, if present shall be a phandle to a valid clock node. Document thes properties to avoid any possible confusion on the clock-frequency unit and also specify that "device_type" is also used by the topology code. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> --- Documentation/devicetree/bindings/arm/cpus.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/arm/cpus.txt b/Documentation/devicetree/bindings/arm/cpus.txt index f32494d..1ce1ace 100644 --- a/Documentation/devicetree/bindings/arm/cpus.txt +++ b/Documentation/devicetree/bindings/arm/cpus.txt @@ -10,7 +10,7 @@ http://devicetree.org For the ARM architecture every CPU node must contain the following properties: -- device_type: must be "cpu" +- device_type: must be "cpu". Use by the topology code. - reg: property matching the CPU MPIDR[23:0] register bits reg[31:24] bits must be set to 0 - compatible: should be one of: @@ -45,6 +45,11 @@ For the ARM architecture every CPU node must contain the following properties: "marvell,xsc3" "marvell,xscale" +- clocks: phandle and clock specifier for the CPU clock, used if + "device_type" is present. +- clock-frequency: the frequency of the CPU, in Hz. Mandatory if "device_type" + is also present, used as fallback is "clocks" is not present. + Example: cpus { -- 1.8.1.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
[parent not found: <1371739146-32639-4-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties [not found] ` <1371739146-32639-4-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2013-06-21 9:30 ` Lorenzo Pieralisi 2013-06-21 9:54 ` Florian Fainelli 0 siblings, 1 reply; 8+ messages in thread From: Lorenzo Pieralisi @ 2013-06-21 9:30 UTC (permalink / raw) To: Florian Fainelli Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org, rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, nico-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org On Thu, Jun 20, 2013 at 03:39:06PM +0100, Florian Fainelli wrote: > ARM CPU device tree nodes may contain a "clock-frequency" property, > when set, this property must contain the CPU frequency in Hz, > which is then used by the topology parsing code in > arch/arm/kernel/topology.c to deduced the CPU capacity. The "clocks" > property, if present shall be a phandle to a valid clock node. > > Document thes properties to avoid any possible confusion on the > clock-frequency unit and also specify that "device_type" is also > used by the topology code. > > Signed-off-by: Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > Documentation/devicetree/bindings/arm/cpus.txt | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/arm/cpus.txt b/Documentation/devicetree/bindings/arm/cpus.txt > index f32494d..1ce1ace 100644 > --- a/Documentation/devicetree/bindings/arm/cpus.txt > +++ b/Documentation/devicetree/bindings/arm/cpus.txt > @@ -10,7 +10,7 @@ http://devicetree.org > > For the ARM architecture every CPU node must contain the following properties: > > -- device_type: must be "cpu" > +- device_type: must be "cpu". Use by the topology code. No. These are DT bindings, they are not related to kernel code and must be defined independently. > - reg: property matching the CPU MPIDR[23:0] register bits > reg[31:24] bits must be set to 0 > - compatible: should be one of: > @@ -45,6 +45,11 @@ For the ARM architecture every CPU node must contain the following properties: > "marvell,xsc3" > "marvell,xscale" > > +- clocks: phandle and clock specifier for the CPU clock, used if > + "device_type" is present. "device_type" must be present, no "if" there (see latest bindings that are on their way to the kernel) git://linux-arm.org/linux-2.6-lp.git dt-cpus-bindings Then we can see if a "clocks" property is suitable here, and try to understand what needs to happen when a platform has DVFS capabilities. I need to think more about this. > +- clock-frequency: the frequency of the CPU, in Hz. Mandatory if "device_type" > + is also present, used as fallback is "clocks" is not present. We should not define bindings to fix kernel code. Either "clock-frequency" is required or it is not, it should not depend on "device_type" being present and "device_type" is mandatory anyway. As I mentioned above, we still have to check how to handle multiple frequencies, and how to do it. I will give it more thought on my side. Lorenzo ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties 2013-06-21 9:30 ` Lorenzo Pieralisi @ 2013-06-21 9:54 ` Florian Fainelli 0 siblings, 0 replies; 8+ messages in thread From: Florian Fainelli @ 2013-06-21 9:54 UTC (permalink / raw) To: Lorenzo Pieralisi Cc: grant.likely@linaro.org, devicetree-discuss@lists.ozlabs.org, rob.herring@calxeda.com, linux-arm-kernel@lists.infradead.org, nico@linaro.org 2013/6/21 Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>: > On Thu, Jun 20, 2013 at 03:39:06PM +0100, Florian Fainelli wrote: >> ARM CPU device tree nodes may contain a "clock-frequency" property, >> when set, this property must contain the CPU frequency in Hz, >> which is then used by the topology parsing code in >> arch/arm/kernel/topology.c to deduced the CPU capacity. The "clocks" >> property, if present shall be a phandle to a valid clock node. >> >> Document thes properties to avoid any possible confusion on the >> clock-frequency unit and also specify that "device_type" is also >> used by the topology code. >> >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> >> --- >> Documentation/devicetree/bindings/arm/cpus.txt | 7 ++++++- >> 1 file changed, 6 insertions(+), 1 deletion(-) >> >> diff --git a/Documentation/devicetree/bindings/arm/cpus.txt b/Documentation/devicetree/bindings/arm/cpus.txt >> index f32494d..1ce1ace 100644 >> --- a/Documentation/devicetree/bindings/arm/cpus.txt >> +++ b/Documentation/devicetree/bindings/arm/cpus.txt >> @@ -10,7 +10,7 @@ http://devicetree.org >> >> For the ARM architecture every CPU node must contain the following properties: >> >> -- device_type: must be "cpu" >> +- device_type: must be "cpu". Use by the topology code. > > No. These are DT bindings, they are not related to kernel code and must > be defined independently. Ok. > >> - reg: property matching the CPU MPIDR[23:0] register bits >> reg[31:24] bits must be set to 0 >> - compatible: should be one of: >> @@ -45,6 +45,11 @@ For the ARM architecture every CPU node must contain the following properties: >> "marvell,xsc3" >> "marvell,xscale" >> >> +- clocks: phandle and clock specifier for the CPU clock, used if >> + "device_type" is present. > > "device_type" must be present, no "if" there (see latest bindings that are on > their way to the kernel) > > git://linux-arm.org/linux-2.6-lp.git dt-cpus-bindings > > Then we can see if a "clocks" property is suitable here, and try to understand > what needs to happen when a platform has DVFS capabilities. I need to think > more about this. > >> +- clock-frequency: the frequency of the CPU, in Hz. Mandatory if "device_type" >> + is also present, used as fallback is "clocks" is not present. > We should not define bindings to fix kernel code. Either "clock-frequency" > is required or it is not, it should not depend on "device_type" being > present and "device_type" is mandatory anyway. As I mentioned above, we > still have to check how to handle multiple frequencies, and how to do it. > > I will give it more thought on my side. Sure. On the short term, I think it would be wise to clarify that "clock-frequency" must be in Hz so that people that define their binding now get it correctly. ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-06-21 9:54 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-06-20 14:39 [PATCH 0/3] ARM: kernel: minor topology/DT clock fixes Florian Fainelli 2013-06-20 14:39 ` [PATCH 1/3] ARM: kernel: get cpu clock rate from cpu clock node first Florian Fainelli [not found] ` <1371739146-32639-2-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2013-06-21 9:35 ` Lorenzo Pieralisi 2013-06-21 9:42 ` Florian Fainelli 2013-06-20 14:39 ` [PATCH 2/3] ARM: kernel: downgrade missing clock-frequency from error to warning Florian Fainelli 2013-06-20 14:39 ` [PATCH 3/3] ARM: kernel: document ARM CPUs clocks and clock-frequency properties Florian Fainelli [not found] ` <1371739146-32639-4-git-send-email-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2013-06-21 9:30 ` Lorenzo Pieralisi 2013-06-21 9:54 ` Florian Fainelli
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).