All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17
@ 2014-06-23  2:25 ` Simon Horman
  0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider this Renesas ARM based SoC cpufreq update for v3.17.


The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:

  Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git renesas-cpufreq-for-v3.17

for you to fetch changes up to 06e32c91dbce3c24ccbe84e3af2a35199662bca0:

  ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile (2014-06-16 19:50:54 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Cpufreq Updates for v3.17

* Add cpufreq-cpu0 driver

----------------------------------------------------------------
Gaku Inami (1):
      ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile

 arch/arm/mach-shmobile/Makefile              |  1 +
 arch/arm/mach-shmobile/cpufreq.c             | 31 ++++++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/common.h |  7 +++++++
 3 files changed, 39 insertions(+)
 create mode 100644 arch/arm/mach-shmobile/cpufreq.c

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

* [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17
@ 2014-06-23  2:25 ` Simon Horman
  0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider this Renesas ARM based SoC cpufreq update for v3.17.


The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:

  Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git renesas-cpufreq-for-v3.17

for you to fetch changes up to 06e32c91dbce3c24ccbe84e3af2a35199662bca0:

  ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile (2014-06-16 19:50:54 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Cpufreq Updates for v3.17

* Add cpufreq-cpu0 driver

----------------------------------------------------------------
Gaku Inami (1):
      ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile

 arch/arm/mach-shmobile/Makefile              |  1 +
 arch/arm/mach-shmobile/cpufreq.c             | 31 ++++++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/common.h |  7 +++++++
 3 files changed, 39 insertions(+)
 create mode 100644 arch/arm/mach-shmobile/cpufreq.c

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

* [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
  2014-06-23  2:25 ` Simon Horman
@ 2014-06-23  2:25   ` Simon Horman
  -1 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

From: Gaku Inami <gaku.inami.xw@bp.renesas.com>

I add a new file(cpufreq.c) for the following reasons.
- Registration of platform_device must be unified in SH-Mobile.
- We can't create a node of cpufreq drivers into device tree.
  (Because cpufreq driver is virtual device.)

Signed-off-by: Gaku Inami <gaku.inami.xw@bp.renesas.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/mach-shmobile/Makefile              |  1 +
 arch/arm/mach-shmobile/cpufreq.c             | 31 ++++++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/common.h |  7 +++++++
 3 files changed, 39 insertions(+)
 create mode 100644 arch/arm/mach-shmobile/cpufreq.c

diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile
index 38d5fe8..1b966da 100644
--- a/arch/arm/mach-shmobile/Makefile
+++ b/arch/arm/mach-shmobile/Makefile
@@ -48,6 +48,7 @@ obj-$(CONFIG_ARCH_SH7372)	+= entry-intc.o
 # PM objects
 obj-$(CONFIG_SUSPEND)		+= suspend.o
 obj-$(CONFIG_CPU_IDLE)		+= cpuidle.o
+obj-$(CONFIG_CPU_FREQ)		+= cpufreq.o
 obj-$(CONFIG_ARCH_SH7372)	+= pm-sh7372.o sleep-sh7372.o pm-rmobile.o
 obj-$(CONFIG_ARCH_SH73A0)	+= pm-sh73a0.o
 obj-$(CONFIG_ARCH_R8A7740)	+= pm-r8a7740.o pm-rmobile.o
diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
new file mode 100644
index 0000000..e2c868f
--- /dev/null
+++ b/arch/arm/mach-shmobile/cpufreq.c
@@ -0,0 +1,31 @@
+/*
+ * CPUFreq support code for SH-Mobile ARM
+ *
+ *  Copyright (C) 2014 Gaku Inami
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License.  See the file "COPYING" in the main directory of this archive
+ * for more details.
+ */
+
+#include <linux/of.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
+
+int __init shmobile_cpufreq_init(void)
+{
+	struct device_node *np;
+
+	np = of_cpu_device_node_get(0);
+	if (np = NULL) {
+		pr_err("failed to find cpu0 node\n");
+		return 0;
+	}
+
+	if (of_get_property(np, "operating-points", NULL))
+		platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
+
+	of_node_put(np);
+
+	return 0;
+}
diff --git a/arch/arm/mach-shmobile/include/mach/common.h b/arch/arm/mach-shmobile/include/mach/common.h
index f7a360e..921a18e 100644
--- a/arch/arm/mach-shmobile/include/mach/common.h
+++ b/arch/arm/mach-shmobile/include/mach/common.h
@@ -45,12 +45,19 @@ int shmobile_cpuidle_init(void);
 static inline int shmobile_cpuidle_init(void) { return 0; }
 #endif
 
+#ifdef CONFIG_CPU_FREQ
+int shmobile_cpufreq_init(void);
+#else
+static inline int shmobile_cpufreq_init(void) { return 0; }
+#endif
+
 extern void __iomem *shmobile_scu_base;
 
 static inline void __init shmobile_init_late(void)
 {
 	shmobile_suspend_init();
 	shmobile_cpuidle_init();
+	shmobile_cpufreq_init();
 }
 
 #endif /* __ARCH_MACH_COMMON_H */
-- 
2.0.0.rc2


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

* [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
@ 2014-06-23  2:25   ` Simon Horman
  0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23  2:25 UTC (permalink / raw)
  To: linux-arm-kernel

From: Gaku Inami <gaku.inami.xw@bp.renesas.com>

I add a new file(cpufreq.c) for the following reasons.
- Registration of platform_device must be unified in SH-Mobile.
- We can't create a node of cpufreq drivers into device tree.
  (Because cpufreq driver is virtual device.)

Signed-off-by: Gaku Inami <gaku.inami.xw@bp.renesas.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/mach-shmobile/Makefile              |  1 +
 arch/arm/mach-shmobile/cpufreq.c             | 31 ++++++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/common.h |  7 +++++++
 3 files changed, 39 insertions(+)
 create mode 100644 arch/arm/mach-shmobile/cpufreq.c

diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile
index 38d5fe8..1b966da 100644
--- a/arch/arm/mach-shmobile/Makefile
+++ b/arch/arm/mach-shmobile/Makefile
@@ -48,6 +48,7 @@ obj-$(CONFIG_ARCH_SH7372)	+= entry-intc.o
 # PM objects
 obj-$(CONFIG_SUSPEND)		+= suspend.o
 obj-$(CONFIG_CPU_IDLE)		+= cpuidle.o
+obj-$(CONFIG_CPU_FREQ)		+= cpufreq.o
 obj-$(CONFIG_ARCH_SH7372)	+= pm-sh7372.o sleep-sh7372.o pm-rmobile.o
 obj-$(CONFIG_ARCH_SH73A0)	+= pm-sh73a0.o
 obj-$(CONFIG_ARCH_R8A7740)	+= pm-r8a7740.o pm-rmobile.o
diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
new file mode 100644
index 0000000..e2c868f
--- /dev/null
+++ b/arch/arm/mach-shmobile/cpufreq.c
@@ -0,0 +1,31 @@
+/*
+ * CPUFreq support code for SH-Mobile ARM
+ *
+ *  Copyright (C) 2014 Gaku Inami
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License.  See the file "COPYING" in the main directory of this archive
+ * for more details.
+ */
+
+#include <linux/of.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
+
+int __init shmobile_cpufreq_init(void)
+{
+	struct device_node *np;
+
+	np = of_cpu_device_node_get(0);
+	if (np == NULL) {
+		pr_err("failed to find cpu0 node\n");
+		return 0;
+	}
+
+	if (of_get_property(np, "operating-points", NULL))
+		platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
+
+	of_node_put(np);
+
+	return 0;
+}
diff --git a/arch/arm/mach-shmobile/include/mach/common.h b/arch/arm/mach-shmobile/include/mach/common.h
index f7a360e..921a18e 100644
--- a/arch/arm/mach-shmobile/include/mach/common.h
+++ b/arch/arm/mach-shmobile/include/mach/common.h
@@ -45,12 +45,19 @@ int shmobile_cpuidle_init(void);
 static inline int shmobile_cpuidle_init(void) { return 0; }
 #endif
 
+#ifdef CONFIG_CPU_FREQ
+int shmobile_cpufreq_init(void);
+#else
+static inline int shmobile_cpufreq_init(void) { return 0; }
+#endif
+
 extern void __iomem *shmobile_scu_base;
 
 static inline void __init shmobile_init_late(void)
 {
 	shmobile_suspend_init();
 	shmobile_cpuidle_init();
+	shmobile_cpufreq_init();
 }
 
 #endif /* __ARCH_MACH_COMMON_H */
-- 
2.0.0.rc2

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

* [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
  2014-06-23  2:25   ` Simon Horman
@ 2014-06-23  4:20     ` Viresh Kumar
  -1 siblings, 0 replies; 12+ messages in thread
From: Viresh Kumar @ 2014-06-23  4:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
<horms+renesas@verge.net.au> wrote:
> diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c

> +int __init shmobile_cpufreq_init(void)
> +{
> +       struct device_node *np;
> +
> +       np = of_cpu_device_node_get(0);
> +       if (np == NULL) {
> +               pr_err("failed to find cpu0 node\n");
> +               return 0;
> +       }
> +
> +       if (of_get_property(np, "operating-points", NULL))

Probably you don't need any of above checks as these are done from
cpufreq-cpu0 probe as well.. So, simply create a platform device and
let cpufreq-cpu0 driver decide its fate.

> +               platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
> +
> +       of_node_put(np);
> +
> +       return 0;
> +}

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

* Re: [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
@ 2014-06-23  4:20     ` Viresh Kumar
  0 siblings, 0 replies; 12+ messages in thread
From: Viresh Kumar @ 2014-06-23  4:20 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
<horms+renesas@verge.net.au> wrote:
> diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c

> +int __init shmobile_cpufreq_init(void)
> +{
> +       struct device_node *np;
> +
> +       np = of_cpu_device_node_get(0);
> +       if (np = NULL) {
> +               pr_err("failed to find cpu0 node\n");
> +               return 0;
> +       }
> +
> +       if (of_get_property(np, "operating-points", NULL))

Probably you don't need any of above checks as these are done from
cpufreq-cpu0 probe as well.. So, simply create a platform device and
let cpufreq-cpu0 driver decide its fate.

> +               platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
> +
> +       of_node_put(np);
> +
> +       return 0;
> +}

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

* Re: [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
  2014-06-23  4:20     ` Viresh Kumar
@ 2014-06-23 12:08       ` Simon Horman
  -1 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 09:38:09AM +0530, Viresh Kumar wrote:
> On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
> <horms+renesas@verge.net.au> wrote:
> > diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
> 
> > +int __init shmobile_cpufreq_init(void)
> > +{
> > +       struct device_node *np;
> > +
> > +       np = of_cpu_device_node_get(0);
> > +       if (np = NULL) {
> > +               pr_err("failed to find cpu0 node\n");
> > +               return 0;
> > +       }
> > +
> > +       if (of_get_property(np, "operating-points", NULL))
> 
> Probably you don't need any of above checks as these are done from
> cpufreq-cpu0 probe as well.. So, simply create a platform device and
> let cpufreq-cpu0 driver decide its fate.

Thanks.

Inami-san, could you look into this and make an incremental
patch as appropriate?

> 
> > +               platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
> > +
> > +       of_node_put(np);
> > +
> > +       return 0;
> > +}
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" 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] 12+ messages in thread

* [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
@ 2014-06-23 12:08       ` Simon Horman
  0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2014-06-23 12:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 09:38:09AM +0530, Viresh Kumar wrote:
> On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
> <horms+renesas@verge.net.au> wrote:
> > diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
> 
> > +int __init shmobile_cpufreq_init(void)
> > +{
> > +       struct device_node *np;
> > +
> > +       np = of_cpu_device_node_get(0);
> > +       if (np == NULL) {
> > +               pr_err("failed to find cpu0 node\n");
> > +               return 0;
> > +       }
> > +
> > +       if (of_get_property(np, "operating-points", NULL))
> 
> Probably you don't need any of above checks as these are done from
> cpufreq-cpu0 probe as well.. So, simply create a platform device and
> let cpufreq-cpu0 driver decide its fate.

Thanks.

Inami-san, could you look into this and make an incremental
patch as appropriate?

> 
> > +               platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
> > +
> > +       of_node_put(np);
> > +
> > +       return 0;
> > +}
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
  2014-06-23 12:08       ` Simon Horman
@ 2014-06-25  0:41         ` Gaku Inami
  -1 siblings, 0 replies; 12+ messages in thread
From: Gaku Inami @ 2014-06-25  0:41 UTC (permalink / raw)
  To: linux-arm-kernel


(2014/06/23 21:08), Simon Horman wrote:
> On Mon, Jun 23, 2014 at 09:38:09AM +0530, Viresh Kumar wrote:
>> On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
>> <horms+renesas@verge.net.au> wrote:
>>> diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
>>> +int __init shmobile_cpufreq_init(void)
>>> +{
>>> +       struct device_node *np;
>>> +
>>> +       np = of_cpu_device_node_get(0);
>>> +       if (np = NULL) {
>>> +               pr_err("failed to find cpu0 node\n");
>>> +               return 0;
>>> +       }
>>> +
>>> +       if (of_get_property(np, "operating-points", NULL))
>> Probably you don't need any of above checks as these are done from
>> cpufreq-cpu0 probe as well.. So, simply create a platform device and
>> let cpufreq-cpu0 driver decide its fate.
> Thanks.
>
> Inami-san, could you look into this and make an incremental
> patch as appropriate?

Thank you for your feedback.
I will make an incremental patch based on renesas-devel-v3.16-rc2-20140623.


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

* [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile
@ 2014-06-25  0:41         ` Gaku Inami
  0 siblings, 0 replies; 12+ messages in thread
From: Gaku Inami @ 2014-06-25  0:41 UTC (permalink / raw)
  To: linux-arm-kernel


(2014/06/23 21:08), Simon Horman wrote:
> On Mon, Jun 23, 2014 at 09:38:09AM +0530, Viresh Kumar wrote:
>> On Mon, Jun 23, 2014 at 7:55 AM, Simon Horman
>> <horms+renesas@verge.net.au> wrote:
>>> diff --git a/arch/arm/mach-shmobile/cpufreq.c b/arch/arm/mach-shmobile/cpufreq.c
>>> +int __init shmobile_cpufreq_init(void)
>>> +{
>>> +       struct device_node *np;
>>> +
>>> +       np = of_cpu_device_node_get(0);
>>> +       if (np == NULL) {
>>> +               pr_err("failed to find cpu0 node\n");
>>> +               return 0;
>>> +       }
>>> +
>>> +       if (of_get_property(np, "operating-points", NULL))
>> Probably you don't need any of above checks as these are done from
>> cpufreq-cpu0 probe as well.. So, simply create a platform device and
>> let cpufreq-cpu0 driver decide its fate.
> Thanks.
>
> Inami-san, could you look into this and make an incremental
> patch as appropriate?

Thank you for your feedback.
I will make an incremental patch based on renesas-devel-v3.16-rc2-20140623.

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

* Re: [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17
  2014-06-23  2:25 ` Simon Horman
@ 2014-07-07  0:09   ` Olof Johansson
  -1 siblings, 0 replies; 12+ messages in thread
From: Olof Johansson @ 2014-07-07  0:09 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 11:25:25AM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please consider this Renesas ARM based SoC cpufreq update for v3.17.
> 
> 
> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
> 
>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git renesas-cpufreq-for-v3.17
> 
> for you to fetch changes up to 06e32c91dbce3c24ccbe84e3af2a35199662bca0:
> 
>   ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile (2014-06-16 19:50:54 +0900)
> 
> ----------------------------------------------------------------
> Renesas ARM Based SoC Cpufreq Updates for v3.17
> 
> * Add cpufreq-cpu0 driver
> 

Technically inaccurate (for next time): This doesn't add a driver,
it adds registration of a device.

Merged into next/soc.


-Olof

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

* [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17
@ 2014-07-07  0:09   ` Olof Johansson
  0 siblings, 0 replies; 12+ messages in thread
From: Olof Johansson @ 2014-07-07  0:09 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jun 23, 2014 at 11:25:25AM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please consider this Renesas ARM based SoC cpufreq update for v3.17.
> 
> 
> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
> 
>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git renesas-cpufreq-for-v3.17
> 
> for you to fetch changes up to 06e32c91dbce3c24ccbe84e3af2a35199662bca0:
> 
>   ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile (2014-06-16 19:50:54 +0900)
> 
> ----------------------------------------------------------------
> Renesas ARM Based SoC Cpufreq Updates for v3.17
> 
> * Add cpufreq-cpu0 driver
> 

Technically inaccurate (for next time): This doesn't add a driver,
it adds registration of a device.

Merged into next/soc.


-Olof

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

end of thread, other threads:[~2014-07-07  0:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-23  2:25 [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17 Simon Horman
2014-06-23  2:25 ` Simon Horman
2014-06-23  2:25 ` [PATCH] ARM: shmobile: add cpufreq-cpu0 driver for common SH-Mobile Simon Horman
2014-06-23  2:25   ` Simon Horman
2014-06-23  4:08   ` Viresh Kumar
2014-06-23  4:20     ` Viresh Kumar
2014-06-23 12:08     ` Simon Horman
2014-06-23 12:08       ` Simon Horman
2014-06-25  0:41       ` Gaku Inami
2014-06-25  0:41         ` Gaku Inami
2014-07-07  0:09 ` [GIT PULL] Renesas ARM Based SoC Cpufreq Updates for v3.17 Olof Johansson
2014-07-07  0:09   ` Olof Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.