All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms+renesas@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 10/14] ARM: shmobile: Initial r7s72100 SoC support
Date: Wed, 09 Oct 2013 06:49:54 +0000	[thread overview]
Message-ID: <e3da5b36d48a8e55d1549da016e4c38ff3c0d0fc.1381293239.git.horms+renesas@verge.net.au> (raw)
In-Reply-To: <cover.1381293239.git.horms+renesas@verge.net.au>

From: Magnus Damm <damm@opensource.se>

Add initial support for the r7272100 SoC including:
 - Single Cortex-A9 CPU Core
 - GIC

No static virtual mappings are used, all the components
make use of ioremap(). DT_MACHINE_START is still wrapped
in CONFIG_USE_OF to match other mach-shmobile code.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r7s72100.dtsi                |  36 +++++
 arch/arm/mach-shmobile/Kconfig                 |   6 +
 arch/arm/mach-shmobile/Makefile                |   2 +
 arch/arm/mach-shmobile/clock-r7s72100.c        | 194 +++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/r7s72100.h |   7 +
 arch/arm/mach-shmobile/setup-r7s72100.c        |  43 ++++++
 6 files changed, 288 insertions(+)
 create mode 100644 arch/arm/boot/dts/r7s72100.dtsi
 create mode 100644 arch/arm/mach-shmobile/clock-r7s72100.c
 create mode 100644 arch/arm/mach-shmobile/include/mach/r7s72100.h
 create mode 100644 arch/arm/mach-shmobile/setup-r7s72100.c

diff --git a/arch/arm/boot/dts/r7s72100.dtsi b/arch/arm/boot/dts/r7s72100.dtsi
new file mode 100644
index 0000000..46b82aa
--- /dev/null
+++ b/arch/arm/boot/dts/r7s72100.dtsi
@@ -0,0 +1,36 @@
+/*
+ * Device Tree Source for the r7s72100 SoC
+ *
+ * Copyright (C) 2013 Renesas Solutions Corp.
+ *
+ * This file is licensed under the terms of the GNU General Public License
+ * version 2.  This program is licensed "as is" without any warranty of any
+ * kind, whether express or implied.
+ */
+
+/ {
+	compatible = "renesas,r7s72100";
+	interrupt-parent = <&gic>;
+	#address-cells = <1>;
+	#size-cells = <1>;
+
+	cpus {
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		cpu@0 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a9";
+			reg = <0>;
+		};
+	};
+
+	gic: interrupt-controller@e8201000 {
+		compatible = "arm,cortex-a9-gic";
+		#interrupt-cells = <3>;
+		#address-cells = <0>;
+		interrupt-controller;
+		reg = <0xe8201000 0x1000>,
+			<0xe8202000 0x1000>;
+	};
+};
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig
index b452405..5dd5f9f 100644
--- a/arch/arm/mach-shmobile/Kconfig
+++ b/arch/arm/mach-shmobile/Kconfig
@@ -113,6 +113,12 @@ config ARCH_EMEV2
 	select ARM_GIC
 	select CPU_V7
 
+config ARCH_R7S72100
+	bool "RZ/A1H (R7S72100)"
+	select ARM_GIC
+	select CPU_V7
+	select SH_CLK_CPG
+
 comment "SH-Mobile Board Type"
 
 config MACH_APE6EVM
diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile
index 3c37e82..95e48d1 100644
--- a/arch/arm/mach-shmobile/Makefile
+++ b/arch/arm/mach-shmobile/Makefile
@@ -18,6 +18,7 @@ obj-$(CONFIG_ARCH_R8A7790)	+= setup-r8a7790.o
 obj-$(CONFIG_ARCH_R8A7790)	+= setup-r8a7790.o setup-rcar-gen2.o
 obj-$(CONFIG_ARCH_R8A7791)	+= setup-r8a7791.o setup-rcar-gen2.o
 obj-$(CONFIG_ARCH_EMEV2)	+= setup-emev2.o
+obj-$(CONFIG_ARCH_R7S72100)	+= setup-r7s72100.o
 
 # Clock objects
 ifndef CONFIG_COMMON_CLK
@@ -31,6 +32,7 @@ obj-$(CONFIG_ARCH_R8A7779)	+= clock-r8a7779.o
 obj-$(CONFIG_ARCH_R8A7790)	+= clock-r8a7790.o
 obj-$(CONFIG_ARCH_R8A7791)	+= clock-r8a7791.o
 obj-$(CONFIG_ARCH_EMEV2)	+= clock-emev2.o
+obj-$(CONFIG_ARCH_R7S72100)	+= clock-r7s72100.o
 endif
 
 # SMP objects
diff --git a/arch/arm/mach-shmobile/clock-r7s72100.c b/arch/arm/mach-shmobile/clock-r7s72100.c
new file mode 100644
index 0000000..1e71094
--- /dev/null
+++ b/arch/arm/mach-shmobile/clock-r7s72100.c
@@ -0,0 +1,194 @@
+/*
+ * r7a72100 clock framework support
+ *
+ * Copyright (C) 2013  Renesas Solutions Corp.
+ * Copyright (C) 2012  Phil Edworthy
+ * Copyright (C) 2011  Magnus Damm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+#include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/io.h>
+#include <linux/sh_clk.h>
+#include <linux/clkdev.h>
+#include <mach/common.h>
+#include <mach/r7s72100.h>
+
+/* registers */
+#define FRQCR		0xfcfe0010
+#define FRQCR2		0xfcfe0014
+#define STBCR3		0xfcfe0420
+#define STBCR4		0xfcfe0424
+
+#define PLL_RATE 30
+
+static struct clk_mapping cpg_mapping = {
+	.phys	= 0xfcfe0000,
+	.len	= 0x1000,
+};
+
+/* Fixed 32 KHz root clock for RTC */
+static struct clk r_clk = {
+	.rate           = 32768,
+};
+
+/*
+ * Default rate for the root input clock, reset this with clk_set_rate()
+ * from the platform code.
+ */
+static struct clk extal_clk = {
+	.rate		= 13330000,
+	.mapping	= &cpg_mapping,
+};
+
+static unsigned long pll_recalc(struct clk *clk)
+{
+	return clk->parent->rate * PLL_RATE;
+}
+
+static struct sh_clk_ops pll_clk_ops = {
+	.recalc		= pll_recalc,
+};
+
+static struct clk pll_clk = {
+	.ops		= &pll_clk_ops,
+	.parent		= &extal_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long bus_recalc(struct clk *clk)
+{
+	return clk->parent->rate * 2 / 3;
+}
+
+static struct sh_clk_ops bus_clk_ops = {
+	.recalc		= bus_recalc,
+};
+
+static struct clk bus_clk = {
+	.ops		= &bus_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long peripheral0_recalc(struct clk *clk)
+{
+	return clk->parent->rate / 12;
+}
+
+static struct sh_clk_ops peripheral0_clk_ops = {
+	.recalc		= peripheral0_recalc,
+};
+
+static struct clk peripheral0_clk = {
+	.ops		= &peripheral0_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long peripheral1_recalc(struct clk *clk)
+{
+	return clk->parent->rate / 6;
+}
+
+static struct sh_clk_ops peripheral1_clk_ops = {
+	.recalc		= peripheral1_recalc,
+};
+
+static struct clk peripheral1_clk = {
+	.ops		= &peripheral1_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+struct clk *main_clks[] = {
+	&r_clk,
+	&extal_clk,
+	&pll_clk,
+	&bus_clk,
+	&peripheral0_clk,
+	&peripheral1_clk,
+};
+
+static int div2[] = { 1, 3, 0, 3 }; /* 1, 2/3, reserve, 1/3 */
+static int multipliers[] = { 1, 2, 1, 1 };
+
+static struct clk_div_mult_table div4_div_mult_table = {
+	.divisors = div2,
+	.nr_divisors = ARRAY_SIZE(div2),
+	.multipliers = multipliers,
+	.nr_multipliers = ARRAY_SIZE(multipliers),
+};
+
+static struct clk_div4_table div4_table = {
+	.div_mult_table = &div4_div_mult_table,
+};
+
+enum { DIV4_I,
+	DIV4_NR };
+
+#define DIV4(_reg, _bit, _mask, _flags) \
+	SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)
+
+/* The mask field specifies the div2 entries that are valid */
+struct clk div4_clks[DIV4_NR] = {
+	[DIV4_I]  = DIV4(FRQCR, 8, 0xB, CLK_ENABLE_REG_16BIT
+					| CLK_ENABLE_ON_INIT),
+};
+
+enum { MSTP47, MSTP46, MSTP45, MSTP44, MSTP43, MSTP42, MSTP41, MSTP40,
+	MSTP33,	MSTP_NR };
+
+static struct clk mstp_clks[MSTP_NR] = {
+	[MSTP47] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 7, 0), /* SCIF0 */
+	[MSTP46] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 6, 0), /* SCIF1 */
+	[MSTP45] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 5, 0), /* SCIF2 */
+	[MSTP44] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 4, 0), /* SCIF3 */
+	[MSTP43] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 3, 0), /* SCIF4 */
+	[MSTP42] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 2, 0), /* SCIF5 */
+	[MSTP41] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 1, 0), /* SCIF6 */
+	[MSTP40] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 0, 0), /* SCIF7 */
+	[MSTP33] = SH_CLK_MSTP8(&peripheral0_clk, STBCR3, 3, 0), /* MTU2 */
+};
+
+static struct clk_lookup lookups[] = {
+	/* main clocks */
+	CLKDEV_CON_ID("rclk", &r_clk),
+	CLKDEV_CON_ID("extal", &extal_clk),
+	CLKDEV_CON_ID("pll_clk", &pll_clk),
+	CLKDEV_CON_ID("peripheral_clk", &peripheral1_clk),
+
+	/* DIV4 clocks */
+	CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),
+
+	/* MSTP clocks */
+};
+
+void __init r7s72100_clock_init(void)
+{
+	int k, ret = 0;
+
+	for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
+		ret = clk_register(main_clks[k]);
+
+	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
+
+	if (!ret)
+		ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
+
+	if (!ret)
+		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
+
+	if (!ret)
+		shmobile_clk_init();
+	else
+		panic("failed to setup rza1 clocks\n");
+}
diff --git a/arch/arm/mach-shmobile/include/mach/r7s72100.h b/arch/arm/mach-shmobile/include/mach/r7s72100.h
new file mode 100644
index 0000000..f78062e
--- /dev/null
+++ b/arch/arm/mach-shmobile/include/mach/r7s72100.h
@@ -0,0 +1,7 @@
+#ifndef __ASM_R7S72100_H__
+#define __ASM_R7S72100_H__
+
+void r7s72100_clock_init(void);
+void r7s72100_init_early(void);
+
+#endif /* __ASM_R7S72100_H__ */
diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c
new file mode 100644
index 0000000..c1aded0
--- /dev/null
+++ b/arch/arm/mach-shmobile/setup-r7s72100.c
@@ -0,0 +1,43 @@
+/*
+ * r7s72100 processor support
+ *
+ * Copyright (C) 2013  Renesas Solutions Corp.
+ * Copyright (C) 2013  Magnus Damm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <linux/irq.h>
+#include <linux/kernel.h>
+#include <linux/of_platform.h>
+#include <mach/common.h>
+#include <mach/r7s72100.h>
+#include <asm/mach/arch.h>
+
+void __init r7s72100_init_early(void)
+{
+	shmobile_setup_delay(400, 1, 3); /* Cortex-A9 @ 400MHz */
+}
+
+#ifdef CONFIG_USE_OF
+static const char *r7s72100_boards_compat_dt[] __initdata = {
+	"renesas,r7s72100",
+	NULL,
+};
+
+DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)")
+	.init_early	= r7s72100_init_early,
+	.dt_compat	= r7s72100_boards_compat_dt,
+MACHINE_END
+#endif /* CONFIG_USE_OF */
-- 
1.8.4


WARNING: multiple messages have this Message-ID (diff)
From: horms+renesas@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 10/14] ARM: shmobile: Initial r7s72100 SoC support
Date: Wed,  9 Oct 2013 15:49:54 +0900	[thread overview]
Message-ID: <e3da5b36d48a8e55d1549da016e4c38ff3c0d0fc.1381293239.git.horms+renesas@verge.net.au> (raw)
In-Reply-To: <cover.1381293239.git.horms+renesas@verge.net.au>

From: Magnus Damm <damm@opensource.se>

Add initial support for the r7272100 SoC including:
 - Single Cortex-A9 CPU Core
 - GIC

No static virtual mappings are used, all the components
make use of ioremap(). DT_MACHINE_START is still wrapped
in CONFIG_USE_OF to match other mach-shmobile code.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r7s72100.dtsi                |  36 +++++
 arch/arm/mach-shmobile/Kconfig                 |   6 +
 arch/arm/mach-shmobile/Makefile                |   2 +
 arch/arm/mach-shmobile/clock-r7s72100.c        | 194 +++++++++++++++++++++++++
 arch/arm/mach-shmobile/include/mach/r7s72100.h |   7 +
 arch/arm/mach-shmobile/setup-r7s72100.c        |  43 ++++++
 6 files changed, 288 insertions(+)
 create mode 100644 arch/arm/boot/dts/r7s72100.dtsi
 create mode 100644 arch/arm/mach-shmobile/clock-r7s72100.c
 create mode 100644 arch/arm/mach-shmobile/include/mach/r7s72100.h
 create mode 100644 arch/arm/mach-shmobile/setup-r7s72100.c

diff --git a/arch/arm/boot/dts/r7s72100.dtsi b/arch/arm/boot/dts/r7s72100.dtsi
new file mode 100644
index 0000000..46b82aa
--- /dev/null
+++ b/arch/arm/boot/dts/r7s72100.dtsi
@@ -0,0 +1,36 @@
+/*
+ * Device Tree Source for the r7s72100 SoC
+ *
+ * Copyright (C) 2013 Renesas Solutions Corp.
+ *
+ * This file is licensed under the terms of the GNU General Public License
+ * version 2.  This program is licensed "as is" without any warranty of any
+ * kind, whether express or implied.
+ */
+
+/ {
+	compatible = "renesas,r7s72100";
+	interrupt-parent = <&gic>;
+	#address-cells = <1>;
+	#size-cells = <1>;
+
+	cpus {
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		cpu at 0 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a9";
+			reg = <0>;
+		};
+	};
+
+	gic: interrupt-controller at e8201000 {
+		compatible = "arm,cortex-a9-gic";
+		#interrupt-cells = <3>;
+		#address-cells = <0>;
+		interrupt-controller;
+		reg = <0xe8201000 0x1000>,
+			<0xe8202000 0x1000>;
+	};
+};
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig
index b452405..5dd5f9f 100644
--- a/arch/arm/mach-shmobile/Kconfig
+++ b/arch/arm/mach-shmobile/Kconfig
@@ -113,6 +113,12 @@ config ARCH_EMEV2
 	select ARM_GIC
 	select CPU_V7
 
+config ARCH_R7S72100
+	bool "RZ/A1H (R7S72100)"
+	select ARM_GIC
+	select CPU_V7
+	select SH_CLK_CPG
+
 comment "SH-Mobile Board Type"
 
 config MACH_APE6EVM
diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile
index 3c37e82..95e48d1 100644
--- a/arch/arm/mach-shmobile/Makefile
+++ b/arch/arm/mach-shmobile/Makefile
@@ -18,6 +18,7 @@ obj-$(CONFIG_ARCH_R8A7790)	+= setup-r8a7790.o
 obj-$(CONFIG_ARCH_R8A7790)	+= setup-r8a7790.o setup-rcar-gen2.o
 obj-$(CONFIG_ARCH_R8A7791)	+= setup-r8a7791.o setup-rcar-gen2.o
 obj-$(CONFIG_ARCH_EMEV2)	+= setup-emev2.o
+obj-$(CONFIG_ARCH_R7S72100)	+= setup-r7s72100.o
 
 # Clock objects
 ifndef CONFIG_COMMON_CLK
@@ -31,6 +32,7 @@ obj-$(CONFIG_ARCH_R8A7779)	+= clock-r8a7779.o
 obj-$(CONFIG_ARCH_R8A7790)	+= clock-r8a7790.o
 obj-$(CONFIG_ARCH_R8A7791)	+= clock-r8a7791.o
 obj-$(CONFIG_ARCH_EMEV2)	+= clock-emev2.o
+obj-$(CONFIG_ARCH_R7S72100)	+= clock-r7s72100.o
 endif
 
 # SMP objects
diff --git a/arch/arm/mach-shmobile/clock-r7s72100.c b/arch/arm/mach-shmobile/clock-r7s72100.c
new file mode 100644
index 0000000..1e71094
--- /dev/null
+++ b/arch/arm/mach-shmobile/clock-r7s72100.c
@@ -0,0 +1,194 @@
+/*
+ * r7a72100 clock framework support
+ *
+ * Copyright (C) 2013  Renesas Solutions Corp.
+ * Copyright (C) 2012  Phil Edworthy
+ * Copyright (C) 2011  Magnus Damm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+#include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/io.h>
+#include <linux/sh_clk.h>
+#include <linux/clkdev.h>
+#include <mach/common.h>
+#include <mach/r7s72100.h>
+
+/* registers */
+#define FRQCR		0xfcfe0010
+#define FRQCR2		0xfcfe0014
+#define STBCR3		0xfcfe0420
+#define STBCR4		0xfcfe0424
+
+#define PLL_RATE 30
+
+static struct clk_mapping cpg_mapping = {
+	.phys	= 0xfcfe0000,
+	.len	= 0x1000,
+};
+
+/* Fixed 32 KHz root clock for RTC */
+static struct clk r_clk = {
+	.rate           = 32768,
+};
+
+/*
+ * Default rate for the root input clock, reset this with clk_set_rate()
+ * from the platform code.
+ */
+static struct clk extal_clk = {
+	.rate		= 13330000,
+	.mapping	= &cpg_mapping,
+};
+
+static unsigned long pll_recalc(struct clk *clk)
+{
+	return clk->parent->rate * PLL_RATE;
+}
+
+static struct sh_clk_ops pll_clk_ops = {
+	.recalc		= pll_recalc,
+};
+
+static struct clk pll_clk = {
+	.ops		= &pll_clk_ops,
+	.parent		= &extal_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long bus_recalc(struct clk *clk)
+{
+	return clk->parent->rate * 2 / 3;
+}
+
+static struct sh_clk_ops bus_clk_ops = {
+	.recalc		= bus_recalc,
+};
+
+static struct clk bus_clk = {
+	.ops		= &bus_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long peripheral0_recalc(struct clk *clk)
+{
+	return clk->parent->rate / 12;
+}
+
+static struct sh_clk_ops peripheral0_clk_ops = {
+	.recalc		= peripheral0_recalc,
+};
+
+static struct clk peripheral0_clk = {
+	.ops		= &peripheral0_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+static unsigned long peripheral1_recalc(struct clk *clk)
+{
+	return clk->parent->rate / 6;
+}
+
+static struct sh_clk_ops peripheral1_clk_ops = {
+	.recalc		= peripheral1_recalc,
+};
+
+static struct clk peripheral1_clk = {
+	.ops		= &peripheral1_clk_ops,
+	.parent		= &pll_clk,
+	.flags		= CLK_ENABLE_ON_INIT,
+};
+
+struct clk *main_clks[] = {
+	&r_clk,
+	&extal_clk,
+	&pll_clk,
+	&bus_clk,
+	&peripheral0_clk,
+	&peripheral1_clk,
+};
+
+static int div2[] = { 1, 3, 0, 3 }; /* 1, 2/3, reserve, 1/3 */
+static int multipliers[] = { 1, 2, 1, 1 };
+
+static struct clk_div_mult_table div4_div_mult_table = {
+	.divisors = div2,
+	.nr_divisors = ARRAY_SIZE(div2),
+	.multipliers = multipliers,
+	.nr_multipliers = ARRAY_SIZE(multipliers),
+};
+
+static struct clk_div4_table div4_table = {
+	.div_mult_table = &div4_div_mult_table,
+};
+
+enum { DIV4_I,
+	DIV4_NR };
+
+#define DIV4(_reg, _bit, _mask, _flags) \
+	SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)
+
+/* The mask field specifies the div2 entries that are valid */
+struct clk div4_clks[DIV4_NR] = {
+	[DIV4_I]  = DIV4(FRQCR, 8, 0xB, CLK_ENABLE_REG_16BIT
+					| CLK_ENABLE_ON_INIT),
+};
+
+enum { MSTP47, MSTP46, MSTP45, MSTP44, MSTP43, MSTP42, MSTP41, MSTP40,
+	MSTP33,	MSTP_NR };
+
+static struct clk mstp_clks[MSTP_NR] = {
+	[MSTP47] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 7, 0), /* SCIF0 */
+	[MSTP46] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 6, 0), /* SCIF1 */
+	[MSTP45] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 5, 0), /* SCIF2 */
+	[MSTP44] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 4, 0), /* SCIF3 */
+	[MSTP43] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 3, 0), /* SCIF4 */
+	[MSTP42] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 2, 0), /* SCIF5 */
+	[MSTP41] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 1, 0), /* SCIF6 */
+	[MSTP40] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 0, 0), /* SCIF7 */
+	[MSTP33] = SH_CLK_MSTP8(&peripheral0_clk, STBCR3, 3, 0), /* MTU2 */
+};
+
+static struct clk_lookup lookups[] = {
+	/* main clocks */
+	CLKDEV_CON_ID("rclk", &r_clk),
+	CLKDEV_CON_ID("extal", &extal_clk),
+	CLKDEV_CON_ID("pll_clk", &pll_clk),
+	CLKDEV_CON_ID("peripheral_clk", &peripheral1_clk),
+
+	/* DIV4 clocks */
+	CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),
+
+	/* MSTP clocks */
+};
+
+void __init r7s72100_clock_init(void)
+{
+	int k, ret = 0;
+
+	for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
+		ret = clk_register(main_clks[k]);
+
+	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
+
+	if (!ret)
+		ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
+
+	if (!ret)
+		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
+
+	if (!ret)
+		shmobile_clk_init();
+	else
+		panic("failed to setup rza1 clocks\n");
+}
diff --git a/arch/arm/mach-shmobile/include/mach/r7s72100.h b/arch/arm/mach-shmobile/include/mach/r7s72100.h
new file mode 100644
index 0000000..f78062e
--- /dev/null
+++ b/arch/arm/mach-shmobile/include/mach/r7s72100.h
@@ -0,0 +1,7 @@
+#ifndef __ASM_R7S72100_H__
+#define __ASM_R7S72100_H__
+
+void r7s72100_clock_init(void);
+void r7s72100_init_early(void);
+
+#endif /* __ASM_R7S72100_H__ */
diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c
new file mode 100644
index 0000000..c1aded0
--- /dev/null
+++ b/arch/arm/mach-shmobile/setup-r7s72100.c
@@ -0,0 +1,43 @@
+/*
+ * r7s72100 processor support
+ *
+ * Copyright (C) 2013  Renesas Solutions Corp.
+ * Copyright (C) 2013  Magnus Damm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <linux/irq.h>
+#include <linux/kernel.h>
+#include <linux/of_platform.h>
+#include <mach/common.h>
+#include <mach/r7s72100.h>
+#include <asm/mach/arch.h>
+
+void __init r7s72100_init_early(void)
+{
+	shmobile_setup_delay(400, 1, 3); /* Cortex-A9 @ 400MHz */
+}
+
+#ifdef CONFIG_USE_OF
+static const char *r7s72100_boards_compat_dt[] __initdata = {
+	"renesas,r7s72100",
+	NULL,
+};
+
+DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)")
+	.init_early	= r7s72100_init_early,
+	.dt_compat	= r7s72100_boards_compat_dt,
+MACHINE_END
+#endif /* CONFIG_USE_OF */
-- 
1.8.4

  parent reply	other threads:[~2013-10-09  6:49 UTC|newest]

Thread overview: 776+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-08  9:05 [GIT PULL] Second round of Renesas ARM based SoC cleanups for v3.13 Simon Horman
2013-10-08  9:05 ` Simon Horman
2013-10-08  9:05 ` [PATCH 1/4] ARM: shmobile: r8a7778: cleanup registration of vin Simon Horman
2013-10-08  9:05   ` Simon Horman
2013-10-08  9:05 ` [PATCH 2/4] ARM: shmobile: r8a7778: cleanup registration of sh_eth Simon Horman
2013-10-08  9:05   ` Simon Horman
2013-10-08  9:05 ` [PATCH 3/4] ARM: shmobile: r8a7778: r8a7778_register_hspi() become static Simon Horman
2013-10-08  9:05   ` Simon Horman
2013-10-08  9:05 ` [PATCH 4/4] ARM: shmobile: lager: Constify platform data and resources Simon Horman
2013-10-08  9:05   ` Simon Horman
2013-10-09  4:53 ` [GIT PULL] Second round of Renesas ARM based SoC cleanups for v3.13 Simon Horman
2013-10-09  4:53   ` Simon Horman
2013-10-10 22:02   ` Kevin Hilman
2013-10-10 22:02     ` Kevin Hilman
2013-10-10 22:14     ` Kevin Hilman
2013-10-10 22:14       ` Kevin Hilman
2013-10-09  6:49 ` [GIT PULL] Second round of Renesas ARM based SoC updates " Simon Horman
2013-10-09  6:49   ` Simon Horman
2013-10-09  6:49   ` [PATCH 01/14] ARM: shmobile: r8a73a4: add a DMAC platform device and clock for it Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 02/14] ARM: shmobile: r8a7778: add HPB-DMAC support Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 03/14] ARM: shmobile: r8a7779: " Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-11-11 20:43     ` Sergei Shtylyov
2013-11-11 21:43       ` Sergei Shtylyov
2013-11-11 20:45       ` Sergei Shtylyov
2013-11-11 21:46         ` Sergei Shtylyov
2013-11-12  1:58         ` Simon Horman
2013-11-12  1:58           ` Simon Horman
2013-11-12 16:13           ` Sergei Shtylyov
2013-11-12 16:13             ` Sergei Shtylyov
2013-11-13  2:41             ` Simon Horman
2013-11-13  2:41               ` Simon Horman
2013-10-09  6:49   ` [PATCH 04/14] ARM: shmobile: r8a7790: add I2C clocks and aliases for the DT mode Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 05/14] ARM: shmobile: r8a73a4: add a clock alias for the DMAC in " Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 06/14] ARM: shmobile: Break out R-Car Gen2 setup code Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 07/14] ARM: shmobile: Introduce r8a7791_add_standard_devices() Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 08/14] ARM: shmobile: r8a7791 IRQC platform device support Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 09/14] ARM: shmobile: r8a7791 Arch timer workaround Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` Simon Horman [this message]
2013-10-09  6:49     ` [PATCH 10/14] ARM: shmobile: Initial r7s72100 SoC support Simon Horman
2013-10-09  6:49   ` [PATCH 11/14] ARM: shmobile: r7s72100 SCIF support Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 12/14] ARM: shmobile: r8a7778: split r8a7778_init_irq_extpin() for DT Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 13/14] ARM: shmobile: r8a7779: split r8a7779_init_irq_extpin() " Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-09  6:49   ` [PATCH 14/14] ARM: shmobile: r8a7791 SMP support Simon Horman
2013-10-09  6:49     ` Simon Horman
2013-10-10 23:04   ` [GIT PULL] Second round of Renesas ARM based SoC updates for v3.13 Kevin Hilman
2013-10-10 23:04     ` Kevin Hilman
2013-10-09  6:50 ` [GIT PULL] Second Round of Renesas ARM based SoC board " Simon Horman
2013-10-09  6:50   ` Simon Horman
2013-10-09  6:50   ` [PATCH 01/14] ARM: shmobile: ape6evm: add DMA support to MMCIF Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 02/14] ARM: shmobile: bockw: enable DMA for SDHI0 Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 03/14] ARM: shmobile: marzen: " Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 04/14] ARM: shmobile: Genmai support Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 05/14] ARM: shmobile: Use r8a7791_add_standard_devices() on Koelsch Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 06/14] ARM: shmobile: Use arch timer " Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 07/14] ARM: shmobile: Sync KZM9D DTS with KZM9D reference DTS Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 08/14] ARM: shmobile: Use KZM9D without reference for multiplatform Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:50   ` [PATCH 09/14] ARM: shmobile: Remove non-multiplatform KZM9D reference support Simon Horman
2013-10-09  6:50     ` Simon Horman
2013-10-09  6:51   ` [PATCH 10/14] ARM: shmobile: Let KZM9D multiplatform boot with KZM9D DTB Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-09  6:51   ` [PATCH 11/14] ARM: shmobile: Remove KZM9D reference DTS Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-09  6:51   ` [PATCH 12/14] ARM: shmobile: Use SMP on Koelsch Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-09  6:51   ` [PATCH 13/14] ARM: shmobile: bockw: add SMSC support on reference Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-09  6:51   ` [PATCH 14/14] ARM: shmobile: marzen: enable INTC IRQ Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-14 22:02   ` [GIT PULL] Second Round of Renesas ARM based SoC board updates for v3.13 Kevin Hilman
2013-10-14 22:02     ` Kevin Hilman
2013-10-09  6:51 ` [GIT PULL] Second Round of Renesas ARM based SoC defconfig " Simon Horman
2013-10-09  6:51   ` Simon Horman
2013-10-09  6:51   ` [PATCH] ARM: shmobile: Genmai defconfig Simon Horman
2013-10-09  6:51     ` Simon Horman
2013-10-14 22:09     ` Kevin Hilman
2013-10-14 22:09       ` Kevin Hilman
2013-10-15  0:27       ` Simon Horman
2013-10-15  0:27         ` Simon Horman
2013-10-15  2:00       ` Magnus Damm
2013-10-15  2:00         ` Magnus Damm
2013-10-15 14:13         ` Kevin Hilman
2013-10-15 14:13           ` Kevin Hilman
2013-10-10 22:19 ` [GIT PULL] Second round of Renesas ARM based SoC cleanups for v3.13 Kevin Hilman
2013-10-10 22:19   ` Kevin Hilman
2013-12-23  2:07 ` [GIT PULL] Second Round of Renesas ARM based SoC cleanups for v3.14 Simon Horman
2013-12-23  2:07   ` Simon Horman
2013-12-23  2:07   ` [PATCH] ARM: shmobile: remove unnecessary platform_device as header cleanup Simon Horman
2013-12-23  2:07     ` Simon Horman
2013-12-29 21:19   ` [GIT PULL] Second Round of Renesas ARM based SoC cleanups for v3.14 Olof Johansson
2013-12-29 21:19     ` Olof Johansson
2014-01-24  1:14 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Fixes " Simon Horman
2014-01-24  1:14   ` Simon Horman
2014-01-24  1:14   ` [PATCH] ARM: shmobile: r8a7790.dtsi: ficx i2c[0-3] clock reference Simon Horman
2014-01-24  1:14     ` Simon Horman
2014-03-06  5:05 ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock Updates for v3.15 Simon Horman
2014-03-06  5:05   ` Simon Horman
2014-03-06  5:05   ` [PATCH 1/2] ARM: shmobile: r8a7791: Remove legacy clock aliases for DT devices Simon Horman
2014-03-06  5:05     ` Simon Horman
2015-11-24 21:32     ` [PATCH 1/2] ARM: shmobile: r8a7791: remove deprecated #gpio-range-cells from dtsi Wolfram Sang
2015-11-25  0:31     ` Simon Horman
2014-03-06  5:05   ` [PATCH 2/2] ARM: shmobile: r8a7790: add sound SCU clock support Simon Horman
2014-03-06  5:05     ` Simon Horman
2014-03-17  7:48   ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock Updates for v3.15 Olof Johansson
2014-03-17  7:48     ` Olof Johansson
2014-04-29  2:15 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v3.16 Simon Horman
2014-04-29  2:15   ` Simon Horman
2014-04-29  2:15   ` [PATCH 1/3] ARM: shmobile: henninger: initial device tree Simon Horman
2014-04-29  2:15     ` Simon Horman
2014-04-29  2:15   ` [PATCH 2/3] ARM: shmobile: henninger: add Ether DT support Simon Horman
2014-04-29  2:15     ` Simon Horman
2014-04-29  2:15   ` [PATCH 3/3] ARM: shmobile: henninger: enable SATA0 Simon Horman
2014-04-29  2:15     ` Simon Horman
2014-05-06  1:44   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v3.16 Olof Johansson
2014-05-06  1:44     ` Olof Johansson
2014-04-29  2:15 ` [GIT PULL] Second Round of Renesas ARM Based SoC " Simon Horman
2014-04-29  2:15   ` Simon Horman
2014-04-29  2:15   ` [PATCH] ARM: shmobile: Ignore callbacks for subsys generic_pm_domain_data Simon Horman
2014-04-29  2:15     ` Simon Horman
2014-05-06  1:46   ` [GIT PULL] Second Round of Renesas ARM Based SoC Updates for v3.16 Olof Johansson
2014-05-06  1:46     ` Olof Johansson
2014-05-07  4:54     ` Simon Horman
2014-05-07  4:54       ` Simon Horman
2014-05-13  8:03 ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock " Simon Horman
2014-05-13  8:03   ` Simon Horman
2014-05-13  8:03   ` [PATCH 1/2] ARM: shmobile: r8a7740: Correct name of DT Ethernet clock Simon Horman
2014-05-13  8:03     ` Simon Horman
2014-05-13  8:03   ` [PATCH 2/2] ARM: shmobile: r8a7791: Correct SYS-DMAC clock defines Simon Horman
2014-05-13  8:03     ` Simon Horman
2014-05-20  5:36   ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock Updates for v3.16 Olof Johansson
2014-05-20  5:36     ` Olof Johansson
2014-05-14  7:26 ` [GIT PULL] Second Round of Renesas ARM Based SoC Boards " Simon Horman
2014-05-14  7:26   ` Simon Horman
2014-05-14  7:26   ` [PATCH] ARM: shmobile: Minor cleanup of the Armadillo legacy board code Simon Horman
2014-05-14  7:26     ` Simon Horman
2014-05-20  5:39   ` [GIT PULL] Second Round of Renesas ARM Based SoC Boards Updates for v3.16 Olof Johansson
2014-05-20  5:39     ` Olof Johansson
2014-05-17  1:24 ` [GIT PULL] Second Round of Renesas ARM Based SoC r7s72100-ccf " Simon Horman
2014-05-17  1:24   ` Simon Horman
2014-05-17  1:24   ` [PATCH 1/5] ARM: shmobile: Remove non-multiplatform Genmai reference support Simon Horman
2014-05-17  1:24     ` Simon Horman
2014-05-17  1:24   ` [PATCH 2/5] ARM: shmobile: genmai-reference: Remove legacy clock support Simon Horman
2014-05-17  1:24     ` Simon Horman
2014-05-17  1:24   ` [PATCH 3/5] ARM: shmobile: Sync Genmai DTS with Genmai reference DTS Simon Horman
2014-05-17  1:24     ` Simon Horman
2014-05-17  1:24   ` [PATCH 4/5] ARM: shmobile: Let Genmai multiplatform boot with Genmai DTB Simon Horman
2014-05-17  1:24     ` Simon Horman
2014-05-17  1:24   ` [PATCH 5/5] ARM: shmobile: Remove Genmai reference DTS Simon Horman
2014-05-17  1:24     ` Simon Horman
2014-05-22  5:08   ` [GIT PULL] Second Round of Renesas ARM Based SoC r7s72100-ccf Updates for v3.16 Olof Johansson
2014-05-22  5:08     ` Olof Johansson
2014-05-22  5:42     ` Simon Horman
2014-05-22  5:42       ` Simon Horman
2014-07-01  0:28 ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.17 Simon Horman
2014-07-01  0:28   ` Simon Horman
2014-07-01  0:28   ` [PATCH] ARM: shmobile: Enable genmai board in multiplatform defconfig Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-12 16:34   ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.17 Olof Johansson
2014-07-12 16:34     ` Olof Johansson
2014-07-01  0:28 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2014-07-01  0:28   ` Simon Horman
2014-07-01  0:28   ` [PATCH 1/4] ARM: shmobile: r8a7790: add internal PCI bridge nodes Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 2/4] ARM: shmobile: lager: enable internal PCI Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 3/4] ARM: shmobile: r8a7790: add DVC support for sound node on DTSI Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 4/4] ARM: shmobile: r8a7791: " Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-12 16:35   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v3.17 Olof Johansson
2014-07-12 16:35     ` Olof Johansson
2014-07-01  0:28 ` [GIT PULL] Second Round of Renesas ARM Based SoC r8a7779 Multiplatform " Simon Horman
2014-07-01  0:28   ` Simon Horman
2014-07-01  0:28   ` [PATCH] ARM: shmobile: Move r8a7779.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-12 16:36   ` [GIT PULL] Second Round of Renesas ARM Based SoC r8a7779 Multiplatform Updates for v3.17 Olof Johansson
2014-07-12 16:36     ` Olof Johansson
2014-07-01  0:28 ` [GIT PULL] Second Round of Renesas ARM Based SoC soc-cleanup " Simon Horman
2014-07-01  0:28   ` Simon Horman
2014-07-01  0:28   ` [PATCH 1/7] ARM: shmobile: Move r7s72100.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 2/7] ARM: shmobile: Move r8a73a4.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 3/7] ARM: shmobile: Move r8a7740.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 4/7] ARM: shmobile: Move r8a7778.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 5/7] ARM: shmobile: Move r8a7790.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 6/7] ARM: shmobile: Move sh73a0.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 7/7] ARM: shmobile: Move sh7372.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-12 16:37   ` [GIT PULL] Second Round of Renesas ARM Based SoC soc-cleanup Updates for v3.17 Olof Johansson
2014-07-12 16:37     ` Olof Johansson
2014-07-01  0:28 ` [GIT PULL] Second Round of Renesas ARM Based SoC " Simon Horman
2014-07-01  0:28   ` Simon Horman
2014-07-01  0:28   ` [PATCH 1/8] ARM: shmobile: Move r8a7791.h Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 2/8] ARM: shmobile: Allow use of boot code for non-SMP case Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 3/8] ARM: shmobile: Adjust APMU code to build for non-SMP Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 4/8] ARM: shmobile: Use __init for APMU suspend init function Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 5/8] ARM: shmobile: Move r8a7790 reset code to pm-r8a7790.c Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 6/8] ARM: shmobile: Allow r8a7790 to build non-SMP APMU code Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 7/8] ARM: shmobile: Move r8a7791 reset code to pm-r8a7791.c Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-01  0:28   ` [PATCH 8/8] ARM: shmobile: Allow r8a7791 to build non-SMP APMU code Simon Horman
2014-07-01  0:28     ` Simon Horman
2014-07-12 16:46   ` [GIT PULL] Second Round of Renesas ARM Based SoC Updates for v3.17 Olof Johansson
2014-07-12 16:46     ` Olof Johansson
2014-07-12 20:55     ` Simon Horman
2014-07-12 20:55       ` Simon Horman
2014-07-12 13:53 ` [GIT PULL] Second Round of Renesas ARM Based SoC CPUFreq " Simon Horman
2014-07-12 13:53   ` Simon Horman
2014-07-12 13:53   ` [PATCH] ARM: shmobile: Remove opps table check for cpufreq Simon Horman
2014-07-12 13:53     ` Simon Horman
2014-07-13  4:47   ` [GIT PULL] Second Round of Renesas ARM Based SoC CPUFreq Updates for v3.17 Olof Johansson
2014-07-13  4:47     ` Olof Johansson
2014-07-15  9:16 ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock " Simon Horman
2014-07-15  9:16   ` Simon Horman
2014-07-15  9:16   ` [PATCH 2/4] ARM: shmobile: r8a73a4: add SCI clock support for DT Simon Horman
2014-07-15  9:16     ` Simon Horman
2014-07-15  9:16   ` [PATCH 3/4] ARM: shmobile: r8a7740: correct " Simon Horman
2014-07-15  9:16     ` Simon Horman
2014-07-15  9:16   ` [PATCH 4/4] ARM: shmobile: sh73a0: add " Simon Horman
2014-07-15  9:16     ` Simon Horman
2014-07-15 13:19     ` Sergei Shtylyov
2014-07-15 13:19       ` Sergei Shtylyov
2014-07-15 23:52       ` Simon Horman
2014-07-15 23:52         ` Simon Horman
2014-07-19  4:31   ` [GIT PULL] Second Round of Renesas ARM Based SoC Clock Updates for v3.17 Olof Johansson
2014-07-19  4:31     ` Olof Johansson
2014-07-24  1:57 ` [GIT PULL] Second Round of Renesas ARM Based SoC Fixes for v3.16 Simon Horman
2014-07-24  1:57   ` Simon Horman
2014-07-24  1:57   ` [PATCH] ARM: shmobile: r8a7791: Fix SD2CKCR register address Simon Horman
2014-07-24  1:57     ` Simon Horman
2014-07-31  0:34 ` [GIT PULL] Second Round of Renesas ARM Based SoC Shdma Updates for v3.17 Simon Horman
2014-07-31  0:34   ` [PATCH 4/6] dmaengine: rcar-dmac: Add device tree bindings documentation Simon Horman
2014-07-31  0:34     ` Simon Horman
2014-08-04  8:05     ` Geert Uytterhoeven
2014-08-04  8:05       ` Geert Uytterhoeven
2014-08-04 14:01       ` Laurent Pinchart
2014-08-04 14:01         ` Laurent Pinchart
2014-08-05  1:46         ` Simon Horman
2014-08-05  1:46           ` Simon Horman
2014-08-05 13:33           ` Laurent Pinchart
2014-08-05 13:33             ` Laurent Pinchart
2014-07-31 11:59 ` [GIT PULL] Second Round of Renesas ARM Based SoC Shdma Updates for v3.17 Vinod Koul
2014-08-01  4:12 ` Simon Horman
2014-08-01 16:49 ` Vinod Koul
2014-08-04  7:08 ` Simon Horman
2014-08-25  1:09 ` [GIT PULL] Second Round Of Renesas ARM Based SoC Defconfig Updates For v3.18 Simon Horman
2014-08-25  1:09   ` Simon Horman
2014-08-25  1:10   ` [PATCH] ARM: shmobile: bockw: Do not disable SUSPEND in defconfig Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10 ` [GIT PULL] Second Round Of Renesas ARM Based SoC DT Updates For v3.18 Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10   ` [PATCH 1/7] ARM: shmobile: r8a7790: Add JPU clock dt and CPG define Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 2/7] ARM: shmobile: r8a7791: " Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 3/7] ARM: shmobile: r8a7740: clock register bits Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 4/7] ARM: shmobile: r8a7779 dtsi: Remove superfluous interrupt-parent Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 5/7] ARM: shmobile: r8a7790 " Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 6/7] ARM: shmobile: r8a7791 " Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 7/7] ARM: shmobile: sh73a0 dtsi: Move interrupt-parent to the top Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10 ` [GIT PULL] Second Round Of Renesas ARM Based SoC Updates For v3.18 Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10   ` [PATCH 1/3] ARM: shmobile: sh73a0: Remove duplicate CPUFreq bits Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 2/3] ARM: shmobile: ape6evm: " Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-08-25  1:10   ` [PATCH 3/3] ARM: shmobile: Move legacy INTC definitions from irqs.h to intc.h Simon Horman
2014-08-25  1:10     ` Simon Horman
2014-09-05 16:04   ` [GIT PULL] Second Round Of Renesas ARM Based SoC Updates For v3.18 Arnd Bergmann
2014-09-05 16:04     ` Arnd Bergmann
2014-09-11  0:57 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Timers Updates for v3.18 Simon Horman
2014-09-11  0:57   ` Simon Horman
2014-09-11  0:56   ` [PATCH 1/7] ARM: shmobile: r8a7790: Use SoC-specific 48-bit CMT compat string Simon Horman
2014-09-11  0:56     ` Simon Horman
2014-09-11  0:56   ` [PATCH 2/7] ARM: shmobile: r7s72100: Use SoC-specific MTU2 " Simon Horman
2014-09-11  0:56     ` Simon Horman
2014-09-11  0:57   ` [PATCH 3/7] ARM: shmobile: r8a7791: Use SoC-specific 48-bit CMT " Simon Horman
2014-09-11  0:57     ` Simon Horman
2014-09-11  0:57   ` [PATCH 4/7] ARM: shmobile: r8a7779: Use SoC-specific TMU " Simon Horman
2014-09-11  0:57     ` Simon Horman
2014-09-11  0:57   ` [PATCH 5/7] ARM: shmobile: r8a7740: Use SoC-specific 48-bit CMT " Simon Horman
2014-09-11  0:57     ` Simon Horman
2014-09-11  0:57   ` [PATCH 6/7] ARM: shmobile: sh73a0: Add CMT1 device to DT Simon Horman
2014-09-11  0:57     ` Simon Horman
2014-09-11  0:57   ` [PATCH 7/7] ARM: shmobile: kzm9g-reference: Enable CMT1 in device tree Simon Horman
2014-09-11  0:57     ` Simon Horman
2014-09-11  8:19   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Timers Updates for v3.18 Arnd Bergmann
2014-09-11  8:19     ` Arnd Bergmann
2014-09-12  1:23 ` [GIT PULL] Second Round of Renesas ARM Based SoC Clk " Simon Horman
2014-09-12  1:23   ` Simon Horman
2014-09-12  1:23   ` [PATCH] clk: shmobile: Add r8a7740, sh73a0 SoCs to MSTP bindings Simon Horman
2014-09-12  1:23     ` Simon Horman
2014-09-24  5:15   ` [GIT PULL] Second Round of Renesas ARM Based SoC Clk Updates for v3.18 Olof Johansson
2014-09-24  5:15     ` Olof Johansson
2014-11-04  1:50 ` [GIT PULL] Second Round of Renesas ARM Based SoC Boards Cleanups for v3.19 Simon Horman
2014-11-04  1:50   ` Simon Horman
2014-11-04  1:50   ` [PATCH] ARM: shmobile: marzen-reference: Don't include legacy clock.h Simon Horman
2014-11-04  1:50     ` Simon Horman
2014-11-19 21:30   ` [GIT PULL] Second Round of Renesas ARM Based SoC Boards Cleanups for v3.19 Arnd Bergmann
2014-11-19 21:30     ` Arnd Bergmann
2014-11-10  1:32 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2014-11-10  1:32   ` Simon Horman
2014-11-10  1:32   ` [PATCH 1/8] ARM: shmobile: r8a7778 dtsi: Remove unnecessary MMC options Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 2/8] ARM: shmobile: r8a7779 " Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 3/8] ARM: shmobile: r8a7790 " Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 4/8] ARM: shmobile: r8a7790 dtsi: Drop bogus 0x unit-address prefix Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 5/8] ARM: shmobile: r8a7791 " Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 6/8] ARM: shmobile: kzm9g-reference dts: " Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 7/8] ARM: shmobile: r8a73a4: fix scifb* naming Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 8/8] ARM: shmobile: alt dts: Drop console= bootargs parameter Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-19 21:48   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Cleanups for v3.19 Arnd Bergmann
2014-11-19 21:48     ` Arnd Bergmann
2014-11-10  1:32 ` [GIT PULL] Second Round of Renesas ARM Based SoC Soc Updates " Simon Horman
2014-11-10  1:32   ` Simon Horman
2014-11-10  1:32   ` [PATCH 1/3] ARM: shmobile: Separate APMU resource data into CPU dependant part Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 2/3] ARM: shmobile: r8a7791: Correct number of CPU cores Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-10  1:32   ` [PATCH 3/3] ARM: shmobile: Enable PCI domains for R-Car Gen2 devices Simon Horman
2014-11-10  1:32     ` Simon Horman
2014-11-19 21:10   ` [GIT PULL] Second Round of Renesas ARM Based SoC Soc Updates for v3.19 Arnd Bergmann
2014-11-19 21:10     ` Arnd Bergmann
2014-11-13  1:20 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2014-11-13  1:20   ` Simon Horman
2014-11-13  1:19   ` [PATCH 01/25] ARM: shmobile: r8a7794: Add VIN clock to device tree Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 02/25] ARM: shmobile: r8a7790: Add Audio DMAC devices to DT Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 03/25] ARM: shmobile: r8a7791: " Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 04/25] ARM: shmobile: r8a7790: Add Audio DMAC peri peri " Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 05/25] ARM: shmobile: r8a7791: " Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 06/25] ARM: shmobile: r8a7790: sound enables Audio DMAC entry on DTSI Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 07/25] ARM: shmobile: r8a7791: " Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-13  1:19   ` [PATCH 08/25] ARM: shmobile: r8a7790: sound enables Audio DMAC peri peri " Simon Horman
2014-11-13  1:19     ` Simon Horman
2014-11-17 11:29     ` Arnd Bergmann
2014-11-17 11:29       ` Arnd Bergmann
2014-11-18  0:03       ` Kuninori Morimoto
2014-11-18  0:03         ` Kuninori Morimoto
2014-11-18  0:50         ` Simon Horman
2014-11-18  0:50           ` Simon Horman
2014-11-18 12:56           ` Arnd Bergmann
2014-11-18 12:56             ` Arnd Bergmann
2014-11-19  0:10             ` Simon Horman
2014-11-19  0:10               ` Simon Horman
2014-11-18 12:54         ` Arnd Bergmann
2014-11-18 12:54           ` Arnd Bergmann
2014-11-19  0:16           ` Kuninori Morimoto
2014-11-19  0:16             ` Kuninori Morimoto
2014-11-19  8:05             ` Kuninori Morimoto
2014-11-19  8:05               ` Kuninori Morimoto
2014-11-25  0:59           ` Kuninori Morimoto
2014-11-25  0:59             ` Kuninori Morimoto
2014-11-13  1:20   ` [PATCH 09/25] ARM: shmobile: r8a7791: " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 10/25] ARM: shmobile: lager: fixup IIC2 clock frequency Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 11/25] ARM: shmobile: lager: Sound PIO support on DTS Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 12/25] ARM: shmobile: lager: Sound DMA " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 13/25] ARM: shmobile: lager: Sound DMA support via BUSIF " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 14/25] ARM: shmobile: lager: Sound DMA support via SRC " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 15/25] ARM: shmobile: lager: Sound DMA support via DVC " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 16/25] ARM: shmobile: koelsch: fixup I2C2 clock frequency Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 17/25] ARM: shmobile: koelsch: Sound PIO support on DTS Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 18/25] ARM: shmobile: koelsch: Sound DMA " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 19/25] ARM: shmobile: koelsch: Sound DMA support via BUSIF " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 20/25] ARM: shmobile: koelsch: Sound DMA support via SRC " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 21/25] ARM: shmobile: koelsch: Sound DMA support via DVC " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 22/25] ARM: shmobile: r8a73a4 dtsi: Add SoC-specific IIC compatible properties Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 23/25] ARM: shmobile: sh73a0 " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 24/25] ARM: shmobile: koelsch dts: Add labels for the LEDs Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-13  1:20   ` [PATCH 25/25] ARM: shmobile: kzm9g-reference " Simon Horman
2014-11-13  1:20     ` Simon Horman
2014-11-19 22:09   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v3.19 Arnd Bergmann
2014-11-19 22:09     ` Arnd Bergmann
2014-11-20  0:56     ` Simon Horman
2014-11-20  0:56       ` Simon Horman
2014-11-21  0:55 ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanups " Simon Horman
2014-11-21  0:55   ` Simon Horman
2014-11-21  0:55   ` [PATCH 1/3] ARM: shmobile: sh73a0: Spelling/grammar s/entity map/identity mapping/ Simon Horman
2014-11-21  0:55     ` Simon Horman
2014-11-21  0:55   ` [PATCH 2/3] ARM: shmobile: sh7372: " Simon Horman
2014-11-21  0:55     ` Simon Horman
2014-11-21  0:55   ` [PATCH 3/3] ARM: shmobile: r8a7779: Spelling/grammar s/entity/identity/, s/map/mapping/ Simon Horman
2014-11-21  0:55     ` Simon Horman
2014-11-21 12:06   ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanups for v3.19 Arnd Bergmann
2014-11-21 12:06     ` Arnd Bergmann
2014-11-25  0:33     ` Simon Horman
2014-11-25  0:33       ` Simon Horman
2015-01-16  2:34 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Cleanups for v3.20 Simon Horman
2015-01-16  2:34   ` Simon Horman
2015-01-16  2:34   ` [PATCH 1/4] ARM: shmobile: r8a7790 dtsi: Drop "renesas,rcar_sound" compatible value Simon Horman
2015-01-16  2:34     ` [PATCH 1/4] ARM: shmobile: r8a7790 dtsi: Drop "renesas, rcar_sound" " Simon Horman
2015-01-16  2:34   ` [PATCH 2/4] ARM: shmobile: r8a7791 dtsi: Drop "renesas,rcar_sound" " Simon Horman
2015-01-16  2:34     ` [PATCH 2/4] ARM: shmobile: r8a7791 dtsi: Drop "renesas, rcar_sound" " Simon Horman
2015-01-16  2:34   ` [PATCH 3/4] ARM: shmobile: r8a7790: tidyup #sound-dai-cells settings Simon Horman
2015-01-16  2:34     ` Simon Horman
2015-01-22  4:09     ` [PATCH 3/4] ARM: shmobile: r8a7790: tidyup SDHI register size on DTSI Kuninori Morimoto
2015-01-16  2:34   ` [PATCH 4/4] ARM: shmobile: r8a7791: tidyup #sound-dai-cells settings Simon Horman
2015-01-16  2:34     ` Simon Horman
2015-01-22  4:09     ` [PATCH 4/4] ARM: shmobile: r8a7791: tidyup SDHI register size on DTSI Kuninori Morimoto
2015-01-20  0:34   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Cleanups for v3.20 Olof Johansson
2015-01-20  0:34     ` Olof Johansson
2015-01-16  2:35 ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates " Simon Horman
2015-01-16  2:35   ` Simon Horman
2015-01-16  2:35   ` [PATCH] ARM: shmobile: Enable kzm9g board in multiplatform defconfig Simon Horman
2015-01-16  2:35     ` Simon Horman
2015-01-21 22:52   ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.20 Olof Johansson
2015-01-21 22:52     ` Olof Johansson
2015-01-16  2:45 ` [GIT PULL] Second Round of Renesas ARM Based SoC Sh73a0 CCF " Simon Horman
2015-01-16  2:45   ` Simon Horman
2015-01-16  2:45   ` [PATCH] clk: shmobile: fix sparse NULL pointer warning Simon Horman
2015-01-16  2:45     ` Simon Horman
2015-01-21 23:14   ` [GIT PULL] Second Round of Renesas ARM Based SoC Sh73a0 CCF Updates for v3.20 Olof Johansson
2015-01-21 23:14     ` Olof Johansson
2015-01-17  0:58 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2015-01-17  0:58   ` Simon Horman
2015-01-17  0:58   ` [PATCH 01/11] ARM: shmobile: sh73a0 dtsi: Add SoC-specific FSI2 compatible property Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 02/11] PM / Domains: Add DT bindings for the R-Mobile System Controller Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 03/11] ARM: shmobile: r8a7740 dtsi: Add PM domain support Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 04/11] ARM: shmobile: r8a7791: fix MSTP8 input clocks Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 05/11] ARM: shmobile: r8a7790: add SRC interrupt number on DTSI Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 06/11] ARM: shmobile: r8a7791: " Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 07/11] ARM: shmobile: Add DT bindings for Renesas memory controllers Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 08/11] ARM: shmobile: r8a73a4 dtsi: Add memory-controller nodes Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 09/11] ARM: shmobile: r8a7740 dtsi: Add memory-controller node Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 10/11] ARM: shmobile: sh73a0 dtsi: Add memory-controller nodes Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-17  0:58   ` [PATCH 11/11] PM / Domains: R-Mobile SYSC: Document SH-Mobile AG5 (sh73a0) binding Simon Horman
2015-01-17  0:58     ` Simon Horman
2015-01-22  1:01   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v3.20 Olof Johansson
2015-01-22  1:01     ` Olof Johansson
2015-01-17  0:59 ` [GIT PULL] Second Round of Renesas ARM Based SoC " Simon Horman
2015-01-17  0:59   ` Simon Horman
2015-01-17  0:59   ` [PATCH 1/3] ARM: shmobile: R-Mobile: Use generic_pm_domain.attach_dev() for pm_clk setup Simon Horman
2015-01-17  0:59     ` Simon Horman
2015-01-17  0:59   ` [PATCH 2/3] ARM: shmobile: R-Mobile: Store SYSC base address in rmobile_pm_domain Simon Horman
2015-01-17  0:59     ` Simon Horman
2015-01-17  0:59   ` [PATCH 3/3] ARM: shmobile: R-Mobile: Add DT support for PM domains Simon Horman
2015-01-17  0:59     ` Simon Horman
2015-01-22  1:02   ` [GIT PULL] Second Round of Renesas ARM Based SoC Updates for v3.20 Olof Johansson
2015-01-22  1:02     ` Olof Johansson
2015-01-20  1:26 ` [GIT PULL] Second Round of Renesas ARM Based SoC Fixes for v3.19 Simon Horman
2015-01-20  1:26   ` Simon Horman
2015-01-20  1:26   ` [PATCH 1/2] ARM: shmobile: r8a7778: Instantiate GIC from C board code in legacy builds Simon Horman
2015-01-20  1:26     ` Simon Horman
2015-01-20  1:26   ` [PATCH 2/2] ARM: shmobile: r8a7779: " Simon Horman
2015-01-20  1:26     ` Simon Horman
2015-01-20  9:42   ` [GIT PULL] Second Round of Renesas ARM Based SoC Fixes for v3.19 Geert Uytterhoeven
2015-01-20  9:42     ` Geert Uytterhoeven
2015-01-22  1:16   ` Olof Johansson
2015-01-22  1:16     ` Olof Johansson
2015-01-20  1:27 ` [GIT PULL] Second Round of Renesas ARM Based SoC sh73a0 Multiplatform Updates for v3.20 Simon Horman
2015-01-20  1:27   ` Simon Horman
2015-01-20  1:27   ` [PATCH] ARM: shmobile: sh73a0 dtsi: Add Cortex-A9 TWD node Simon Horman
2015-01-20  1:27     ` Simon Horman
2015-01-22  1:03   ` [GIT PULL] Second Round of Renesas ARM Based SoC sh73a0 Multiplatform Updates for v3.20 Simon Horman
2015-01-22  1:03     ` Simon Horman
2015-01-22  1:34   ` Olof Johansson
2015-01-22  1:34     ` Olof Johansson
2015-01-22  2:01     ` Simon Horman
2015-01-22  2:01       ` Simon Horman
2015-01-22  6:36       ` Olof Johansson
2015-01-22  6:36         ` Olof Johansson
2015-03-10  0:42 ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.1 Simon Horman
2015-03-10  0:42   ` Simon Horman
2015-03-10  0:43   ` [PATCH 1/3] ARM: shmobile: Remove stray closing parenthesis in debug description Simon Horman
2015-03-10  0:43     ` Simon Horman
2015-03-10  0:43   ` [PATCH 2/3] ARM: shmobile: R-Car Gen2: CONFIG_COMMON_CLK is always set Simon Horman
2015-03-10  0:43     ` Simon Horman
2015-03-10  0:43   ` [PATCH 3/3] ARM: shmobile: r8a7740: Remove restart callback Simon Horman
2015-03-10  0:43     ` Simon Horman
2015-03-11 22:08   ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.1 Arnd Bergmann
2015-03-11 22:08     ` Arnd Bergmann
2015-03-11 23:30     ` Simon Horman
2015-03-11 23:30       ` Simon Horman
2015-03-10  0:44 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates " Simon Horman
2015-03-10  0:44   ` Simon Horman
2015-03-10  0:44   ` [PATCH 01/15] ARM: shmobile: r8a7790: Reference DMA channels in SDHI DT nodes Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 02/15] ARM: shmobile: r8a7791: " Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 03/15] ARM: shmobile: r8a7790: tidyup SDHI register size on DTSI Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 04/15] ARM: shmobile: r8a7791: " Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 05/15] ARM: shmobile: r8a7790: Fix HSUSB clock to hp_clk from mp_clk Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 06/15] ARM: shmobile: r8a7791: " Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 07/15] ARM: shmobile: lager: Add DU HDMI output support Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 08/15] ARM: shmobile: ape6evm dts: Fix polarity of LEDs Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 09/15] ARM: shmobile: marzen: Add DU external pixel clock to DT Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 10/15] ARM: shmobile: koelsch: Add DU external pixel clocks " Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 11/15] ARM: shmobile: lager: " Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 12/15] ARM: shmobile: r8a7794: alt: Fix ethernet controller PHY IRQ line Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 13/15] ARM: shmobile: r8a7791: Fix IPMMU-GP clock to device tree Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 14/15] ARM: shmobile: ape6evm dts: Enable pull-up for GPIO switches Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-10  0:44   ` [PATCH 15/15] ARM: shmobile: ape6evm dts: Configure the custom switch as wake-up source Simon Horman
2015-03-10  0:44     ` Simon Horman
2015-03-11 21:56   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v4.1 Arnd Bergmann
2015-03-11 21:56     ` Arnd Bergmann
2015-05-29  0:53 ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v4.2 Simon Horman
2015-05-29  0:53   ` Simon Horman
2015-05-29  0:54   ` [PATCH] ARM: multi_v7_defconfig: Enable shmobile r8a7778/bockw platform Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29 14:25   ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v4.2 Arnd Bergmann
2015-05-29 14:25     ` Arnd Bergmann
2015-05-29  0:54 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2015-05-29  0:54   ` Simon Horman
2015-05-29  0:54   ` [PATCH 01/10] ARM: shmobile: lager dts: Replace "nor-jedec" by "jedec,spi-nor" Simon Horman
2015-05-29  0:54     ` [PATCH 01/10] ARM: shmobile: lager dts: Replace "nor-jedec" by "jedec, spi-nor" Simon Horman
2015-05-29  0:54   ` [PATCH 02/10] ARM: shmobile: koelsch dts: Replace "nor-jedec" by "jedec,spi-nor" Simon Horman
2015-05-29  0:54     ` [PATCH 02/10] ARM: shmobile: koelsch dts: Replace "nor-jedec" by "jedec, spi-nor" Simon Horman
2015-05-29  0:54   ` [PATCH 03/10] ARM: shmobile: bockw-reference dts: Replace "nor-jedec" by "jedec,spi-nor" Simon Horman
2015-05-29  0:54     ` [PATCH 03/10] ARM: shmobile: bockw-reference dts: Replace "nor-jedec" by "jedec, spi-nor" Simon Horman
2015-05-29  0:54   ` [PATCH 04/10] ARM: shmobile: henninger dts: Replace "nor-jedec" by "jedec,spi-nor" Simon Horman
2015-05-29  0:54     ` [PATCH 04/10] ARM: shmobile: henninger dts: Replace "nor-jedec" by "jedec, spi-nor" Simon Horman
2015-05-29  0:54   ` [PATCH 05/10] ARM: shmobile: bockw dts: Replace "nor-jedec" by "jedec,spi-nor" Simon Horman
2015-05-29  0:54     ` [PATCH 05/10] ARM: shmobile: bockw dts: Replace "nor-jedec" by "jedec, spi-nor" Simon Horman
2015-05-29  0:54   ` [PATCH 06/10] ARM: shmobile: r8a7790: add MMCIF max-frequency Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29  0:54   ` [PATCH 07/10] ARM: shmobile: r8a7791: " Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29  0:54   ` [PATCH 08/10] ARM: shmobile: r8a7794 dtsi: Describe DMA for the serial ports Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29  0:54   ` [PATCH 09/10] ARM: shmobile: r8a7791 " Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29  0:54   ` [PATCH 10/10] ARM: shmobile: r8a7790 " Simon Horman
2015-05-29  0:54     ` Simon Horman
2015-05-29 12:00   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v4.2 Arnd Bergmann
2015-05-29 12:00     ` Arnd Bergmann
2015-07-24  8:41 ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.3 Simon Horman
2015-07-24  8:41   ` Simon Horman
2015-07-24  8:41   ` [PATCH] ARM: shmobile: apmu: silence build warnings Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-27 12:27   ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.3 Olof Johansson
2015-07-27 12:27     ` Olof Johansson
2015-07-24  8:41 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates " Simon Horman
2015-07-24  8:41   ` Simon Horman
2015-07-24  8:41   ` [PATCH 1/9] ARM: shmobile: emev2: add IIC cores to dtsi Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 2/9] ARM: shmobile: emev2: kzm9d: enable IIC busses Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 3/9] ARM: shmobile: lager: add sound label on DTS Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 4/9] ARM: shmobile: koelsch: " Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 5/9] ARM: shmobile: lager: Fix adv7511 IRQ sensing Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 6/9] ARM: shmobile: r8a7790: Add Audio CTU support on DTSI Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 7/9] ARM: shmobile: r8a7790: Add Audio MIX " Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 8/9] ARM: shmobile: r8a7791: Add Audio CTU " Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-24  8:41   ` [PATCH 9/9] ARM: shmobile: r8a7791: Add Audio MIX " Simon Horman
2015-07-24  8:41     ` Simon Horman
2015-07-30  0:23 ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v4.3 Simon Horman
2015-07-30  0:23   ` Simon Horman
2015-07-30  0:23   ` [PATCH] ARM: shmobile: Enable fixed voltage regulator in shmobile_defconfig Simon Horman
2015-07-30  0:23     ` Simon Horman
2015-08-05  8:36   ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v4.3 Olof Johansson
2015-08-05  8:36     ` Olof Johansson
2015-10-15  0:33 ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.4 Simon Horman
2015-10-15  0:33   ` Simon Horman
2015-10-15  0:33   ` [PATCH 1/6] ARM: shmobile: smp: Make shmobile_smp_apmu_cpu_shutdown() static Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-15  0:33   ` [PATCH 2/6] ARM: shmobile: r8a7778: Make r8a7778_init_irq_dt() static Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-15  0:33   ` [PATCH 3/6] ARM: shmobile: r8a7779: Remove legacy PM Domain remainings Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-15  0:33   ` [PATCH 4/6] ARM: shmobile: apmu: correct type of CPU id Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-15  0:33   ` [PATCH 5/6] ARM: shmobile: dt: Rename incorrect interrupt related binding Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-15  8:06     ` Lee Jones
2015-10-15  8:06       ` Lee Jones
2015-10-15  0:33   ` [PATCH 6/6] ARM: shmobile: R-Mobile: add missing of_node_put Simon Horman
2015-10-15  0:33     ` Simon Horman
2015-10-22 16:48   ` [GIT PULL] Second Round of Renesas ARM Based SoC Cleanup for v4.4 Olof Johansson
2015-10-22 16:48     ` Olof Johansson
2015-10-15  0:34 ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates " Simon Horman
2015-10-15  0:34   ` Simon Horman
2015-10-15  0:34   ` [PATCH 1/2] ARM: shmobile: defconfig: enable HDMI output for RCar Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 2/2] ARM: multi_v7_defconfig: enable HDMI output for Renesas RCar Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-22 16:47   ` [GIT PULL] Second Round of Renesas ARM Based SoC Defconfig Updates for v4.4 Olof Johansson
2015-10-22 16:47     ` Olof Johansson
2015-10-15  0:34 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT " Simon Horman
2015-10-15  0:34   ` Simon Horman
2015-10-15  0:34   ` [PATCH 1/7] ARM: shmobile: porter: add SDHI0/2 DT support Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 2/7] ARM: shmobile: porter: enable SATA0 Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 3/7] ARM: shmobile: porter: add I2C2 DT support Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 4/7] ARM: shmobile: porter: add VIN0/ADV7180 " Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 5/7] ARM: shmobile: porter: add QSPI " Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 6/7] ARM: shmobile: porter: enable PCIe Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15  0:34   ` [PATCH 7/7] ARM: shmobile: porter: enable internal PCI and USB PHY Simon Horman
2015-10-15  0:34     ` Simon Horman
2015-10-15 15:19   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v4.4 Arnd Bergmann
2015-10-15 15:19     ` Arnd Bergmann
2015-11-27  1:55 ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v4.5 Simon Horman
2015-11-27  1:55   ` Simon Horman
2015-11-27  1:55   ` [PATCH 01/15] ARM: shmobile: r8a7790: switch console back to scif0 Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 02/15] ARM: shmobile: bockw dts: define sdhi0 pins with pull-ups Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 03/15] ARM: shmobile: r8a7794: alt: Enable PFC DU for the VGA port Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 04/15] ARM: shmobile: r8a7793: Add DU node to device tree Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 05/15] ARM: shmobile: r8a7791: remove deprecated #gpio-range-cells from dtsi Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 06/15] ARM: shmobile: r8a7794: " Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 07/15] ARM: shmobile: r8a7791: koelsch: Fix pinmux for HDMI Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 08/15] ARM: shmobile: bockw: Move SPI FLASH partition to subnode Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 09/15] ARM: shmobile: porter: Move SPI FLASH partitions " Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 10/15] ARM: shmobile: lager: " Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 11/15] ARM: shmobile: silk: " Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 12/15] ARM: shmobile: alt: Correct scif2 pfc Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 13/15] ARM: shmobile: alt: Correct ether pfc Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 14/15] ARM: shmobile: r8a7740 dtsi: Add L2 cache-controller node Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-11-27  1:55   ` [PATCH 15/15] ARM: shmobile: sh73a0 " Simon Horman
2015-11-27  1:55     ` Simon Horman
2015-12-11 23:16   ` [GIT PULL] Second Round of Renesas ARM Based SoC DT Updates for v4.5 Arnd Bergmann
2015-12-11 23:16     ` Arnd Bergmann
  -- strict thread matches above, loose matches on Subject: below --
2013-08-31 23:11 [PATCH 0/4] Add Ether DT support for R8A7778/BOCK-W reference board Sergei Shtylyov
2013-08-31 23:11 ` Sergei Shtylyov
2013-08-31 23:18 ` [PATCH 2/4] ARM: shmobile: r8a7778: add Ether clock for DT case Sergei Shtylyov
2013-08-31 23:18   ` Sergei Shtylyov
2013-08-31 23:22 ` [PATCH 3/4] ARM: shmobile: bockw-reference: add Ether DT support Sergei Shtylyov
2013-08-31 23:22   ` Sergei Shtylyov
2013-08-31 23:22   ` Sergei Shtylyov
2013-08-31 23:24 ` [PATCH 4/4] ARM: shmobile: BOCK-W reference: add Ether PFC settings Sergei Shtylyov
2013-08-31 23:24   ` Sergei Shtylyov
2013-07-09  5:52 [PATCH 1/4] ARM: shmobile: r8a7778: add usb phy power control function Kuninori Morimoto
2013-07-09 11:52 ` Sergei Shtylyov
2013-07-10  1:07 ` Simon Horman
2013-07-10  1:11 ` Kuninori Morimoto
2013-07-10  1:27 ` Kuninori Morimoto
2013-08-31 23:15 ` [PATCH 1/4] ARM: shmobile: r8a7778: add Ether DT support Sergei Shtylyov
2013-08-31 23:15   ` Sergei Shtylyov
2013-08-31 23:15   ` Sergei Shtylyov
2013-09-02 13:14 ` Laurent Pinchart
2013-09-02 13:14   ` Laurent Pinchart
2013-09-02 13:14   ` Laurent Pinchart
2013-09-02 14:05 ` Sergei Shtylyov
2013-09-02 14:05   ` Sergei Shtylyov
2013-09-02 14:05   ` Sergei Shtylyov
2013-09-02 14:18 ` Laurent Pinchart
2013-09-02 14:18   ` Laurent Pinchart
2013-09-02 14:18   ` Laurent Pinchart
2013-09-02 15:32 ` Pawel Moll
2013-09-02 15:32   ` Pawel Moll
2013-09-02 15:32   ` Pawel Moll
2013-09-03 12:11 ` Laurent Pinchart
2013-09-03 12:11   ` Laurent Pinchart
2013-09-03 12:11   ` Laurent Pinchart
2013-09-03 13:53 ` Sergei Shtylyov
2013-09-03 13:53   ` Sergei Shtylyov
2013-09-03 13:53   ` Sergei Shtylyov
2013-09-03 15:17 ` Magnus Damm
2013-09-03 15:17   ` Magnus Damm
2013-09-03 15:17   ` Magnus Damm
2013-09-03 18:27 ` Sergei Shtylyov
2013-09-03 18:27   ` Sergei Shtylyov
2013-09-03 18:27   ` Sergei Shtylyov
2013-09-04  5:35 ` Magnus Damm
2013-09-04  5:35   ` Magnus Damm
2013-09-04  5:35   ` Magnus Damm
2013-09-04  9:39 ` Laurent Pinchart
2013-09-04  9:39   ` Laurent Pinchart
2013-09-04  9:39   ` Laurent Pinchart
2013-09-05  6:03 ` Simon Horman
2013-09-05  6:03   ` Simon Horman
2013-09-05  6:03   ` Simon Horman
2013-10-04  6:43 ` [PATCH 1/4] ARM: shmobile: r8a7778: add I2C clock for DT Kuninori Morimoto
2013-10-08  1:49 ` Simon Horman
2014-01-14  2:25 ` [PATCH 1/4] ARM: shmobile: r8a7778: add audio clock in new style Kuninori Morimoto
2014-07-15  9:16 ` [PATCH 1/4] ARM: shmobile: r8a7778: add SCI clock support for DT Simon Horman
2014-07-15  9:16   ` Simon Horman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e3da5b36d48a8e55d1549da016e4c38ff3c0d0fc.1381293239.git.horms+renesas@verge.net.au \
    --to=horms+renesas@verge.net.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.