All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 0/3] Renesas ARM-based SoC DT updates for v3.11 #2
@ 2013-06-20 13:08 ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-06-20 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

This pull request is based on renesas-dt-for-v3.11 which you have
previously pulled.

The following changes since commit 24603f3caf07f5f65aa17ed7851ad4741595cf6a:

  ARM: shmobile: marzen-reference: add irqpin support in DT (2013-06-04 18:05:59 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-dt2-for-v3.11

for you to fetch changes up to c4fa4946f177ae214523586cd794ac18d34b1430:

  ARM: shmobile: irqpin: add a DT property to enable masking on parent (2013-06-19 21:27:31 +0900)

----------------------------------------------------------------
Second Round of Renesas ARM-based SoC DT updates for v3.11

* Increased DT coverage for renesas-intc-irqpin
  by Guennadi Liakhovetski
* Clean up of address format used in sh73a0 dtsi file
  by Guennadi Liakhovetski

----------------------------------------------------------------
Guennadi Liakhovetski (3):
      irqchip: renesas-intc-irqpin: DT binding for sense bitfield width
      ARM: shmobile: sh73a0: remove "0x" prefix from DT node names
      ARM: shmobile: irqpin: add a DT property to enable masking on parent

 .../interrupt-controller/renesas,intc-irqpin.txt       | 16 ++++++++++++++++
 arch/arm/boot/dts/sh73a0.dtsi                          | 18 +++++++++---------
 drivers/irqchip/irq-renesas-intc-irqpin.c              |  9 ++++++++-
 3 files changed, 33 insertions(+), 10 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt

^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PATCH 2/3] ARM: shmobile: Add r8a7790 CA15 CPU cores
  2013-10-01  2:39   ` Simon Horman
@ 2013-10-01  2:39 ` Simon Horman
  -1 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-10-01  2:39 UTC (permalink / raw)
  To: linux-sh

From: Magnus Damm <damm@opensource.se>

Add CA15 CPU cores to r8a7790 for a total of 4 x CA15.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r8a7790.dtsi | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi
index 3b879e7..388f49f 100644
--- a/arch/arm/boot/dts/r8a7790.dtsi
+++ b/arch/arm/boot/dts/r8a7790.dtsi
@@ -24,6 +24,27 @@
 			reg = <0>;
 			clock-frequency = <1300000000>;
 		};
+
+		cpu1: cpu@1 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a15";
+			reg = <1>;
+			clock-frequency = <1300000000>;
+		};
+
+		cpu2: cpu@2 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a15";
+			reg = <2>;
+			clock-frequency = <1300000000>;
+		};
+
+		cpu3: cpu@3 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a15";
+			reg = <3>;
+			clock-frequency = <1300000000>;
+		};
 	};
 
 	gic: interrupt-controller@f1001000 {
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 32+ messages in thread
* [GIT PULL v2 0/3] Renesas ARM-based SoC DT updates for v3.13
@ 2013-10-01  4:11 ` Simon Horman
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Horman @ 2013-10-01  4:11 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kevin, Olof and Arnd,

please consider these Renesas ARM-based SoC DT updates for v3.13.

This pull-request is based on v3.12-rc1.


The following changes since commit 272b98c6455f00884f0350f775c5342358ebb73f:

  Linux 3.12-rc1 (2013-09-16 16:17:51 -0400)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-dt-for-v3.13

for you to fetch changes up to 2007e74ca3769fd353fe87a7a105c14102d7980c:

  ARM: shmobile: Add r8a7790 CA7 CPU cores to DTSI (2013-09-30 16:10:00 +0900)

----------------------------------------------------------------
Renesas ARM-based SoC DT updates for v3.13

* Add CPU cores to DTSI of r8a7790 SoC
* Add MMCIF and SDHI DT nodes for reference DTS of ape6evm board

----------------------------------------------------------------
Guennadi Liakhovetski (1):
      ARM: shmobile: ape6evm-reference: add MMCIF and SDHI DT nodes

Magnus Damm (2):
      ARM: shmobile: Add r8a7790 CA15 CPU cores
      ARM: shmobile: Add r8a7790 CA7 CPU cores to DTSI

 arch/arm/boot/dts/r8a73a4-ape6evm-reference.dts | 72 +++++++++++++++++++++++++
 arch/arm/boot/dts/r8a7790.dtsi                  | 49 +++++++++++++++++
 2 files changed, 121 insertions(+)

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

end of thread, other threads:[~2014-12-02 17:42 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-20 13:08 [GIT PULL 0/3] Renesas ARM-based SoC DT updates for v3.11 #2 Simon Horman
2013-06-20 13:08 ` Simon Horman
2013-06-20 13:08 ` [PATCH 1/3] irqchip: renesas-intc-irqpin: DT binding for sense bitfield width Simon Horman
2013-06-20 13:08   ` Simon Horman
2013-06-20 13:08 ` [PATCH 2/3] ARM: shmobile: sh73a0: remove "0x" prefix from DT node names Simon Horman
2013-06-20 13:08   ` Simon Horman
2013-06-20 13:08 ` [PATCH 3/3] ARM: shmobile: irqpin: add a DT property to enable masking on parent Simon Horman
2013-06-20 13:08   ` Simon Horman
2013-06-21 13:29 ` [GIT PULL 0/3] Renesas ARM-based SoC DT updates for v3.11 #2 Arnd Bergmann
2013-06-21 13:29   ` Arnd Bergmann
2013-10-01  2:39 ` [GIT PULL 0/3] Renesas ARM-based SoC DT updates for v3.13 Simon Horman
2013-10-01  2:39   ` Simon Horman
2013-10-01  2:39   ` [PATCH 1/3] ARM: shmobile: ape6evm-reference: add MMCIF and SDHI DT nodes Simon Horman
2013-10-01  2:39     ` Simon Horman
2014-12-02  8:37     ` [PATCH 1/3] ARM: shmobile: ape6evm-reference: add ethernet controller to DT Ulrich Hecht
2014-12-02 17:42     ` Geert Uytterhoeven
2013-10-01  2:39   ` [PATCH 3/3] ARM: shmobile: Add r8a7790 CA7 CPU cores to DTSI Simon Horman
2013-10-01  2:39     ` Simon Horman
2013-10-01  4:08   ` [GIT PULL 0/3] Renesas ARM-based SoC DT updates for v3.13 Simon Horman
2013-10-01  4:08     ` Simon Horman
  -- strict thread matches above, loose matches on Subject: below --
2013-10-01  2:39 [PATCH 2/3] ARM: shmobile: Add r8a7790 CA15 CPU cores Simon Horman
2013-10-01  2:39 ` Simon Horman
2013-10-01  4:11 ` Simon Horman
2013-10-01  4:11   ` Simon Horman
2013-10-01  4:11 [GIT PULL v2 0/3] Renesas ARM-based SoC DT updates for v3.13 Simon Horman
2013-10-01  4:11 ` Simon Horman
2013-10-01  4:11 ` [PATCH 1/3] ARM: shmobile: ape6evm-reference: add MMCIF and SDHI DT nodes Simon Horman
2013-10-01  4:11   ` Simon Horman
2013-10-01  4:11 ` [PATCH 3/3] ARM: shmobile: Add r8a7790 CA7 CPU cores to DTSI Simon Horman
2013-10-01  4:11   ` Simon Horman
2013-10-07 18:40 ` [GIT PULL v2 0/3] Renesas ARM-based SoC DT updates for v3.13 Olof Johansson
2013-10-07 18:40   ` 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.