linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress
@ 2016-04-14 15:39 Brian Starkey
  2016-04-14 15:39 ` [PATCH v3 2/2] arm64: dts: Add expansion bus to Juno Brian Starkey
  2016-04-15  8:55 ` [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Sudeep Holla
  0 siblings, 2 replies; 4+ messages in thread
From: Brian Starkey @ 2016-04-14 15:39 UTC (permalink / raw)
  To: Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi
  Cc: Rob Herring, Pawel Moll, linux-arm-kernel, devicetree, linux-kernel

The VExpress development platform has an external expansion bus which
can be used for additional hardware (e.g. LogicTile Express
daughterboards).
Add this bus to the VExpress CoreTile device-trees.

The bus is described for a CoreTile occupying site 1.

Signed-off-by: Brian Starkey <brian.starkey@arm.com>
Acked-by: Liviu Dudau <Liviu.Dudau@arm.com>
---

Changes since v2:
 - Split into ARM and arm64 patches (Sudeep)

Changes since v1:
 - Reword commit message (Liviu)

 arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts |   13 +++++++++++++
 arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts  |   13 +++++++++++++
 arch/arm/boot/dts/vexpress-v2p-ca5s.dts     |   13 +++++++++++++
 arch/arm/boot/dts/vexpress-v2p-ca9.dts      |   13 +++++++++++++
 4 files changed, 52 insertions(+)

diff --git a/arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts b/arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts
index 9420053..ec7539b 100644
--- a/arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts
+++ b/arch/arm/boot/dts/vexpress-v2p-ca15-tc1.dts
@@ -280,4 +280,17 @@
 
 		/include/ "vexpress-v2m-rs1.dtsi"
 	};
+
+	site2: hsb@40000000 {
+		compatible = "simple-bus";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0 0x40000000 0x3fef0000>;
+		#interrupt-cells = <1>;
+		interrupt-map-mask = <0 3>;
+		interrupt-map = <0 0 &gic 0 36 4>,
+				<0 1 &gic 0 37 4>,
+				<0 2 &gic 0 38 4>,
+				<0 3 &gic 0 39 4>;
+	};
 };
diff --git a/arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts b/arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts
index 17f63f7..a339b0c 100644
--- a/arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts
+++ b/arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts
@@ -638,4 +638,17 @@
 
 		/include/ "vexpress-v2m-rs1.dtsi"
 	};
+
+	site2: hsb@40000000 {
+		compatible = "simple-bus";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0 0x40000000 0x3fef0000>;
+		#interrupt-cells = <1>;
+		interrupt-map-mask = <0 3>;
+		interrupt-map = <0 0 &gic 0 36 4>,
+				<0 1 &gic 0 37 4>,
+				<0 2 &gic 0 38 4>,
+				<0 3 &gic 0 39 4>;
+	};
 };
diff --git a/arch/arm/boot/dts/vexpress-v2p-ca5s.dts b/arch/arm/boot/dts/vexpress-v2p-ca5s.dts
index d2709b7..76a9ccb 100644
--- a/arch/arm/boot/dts/vexpress-v2p-ca5s.dts
+++ b/arch/arm/boot/dts/vexpress-v2p-ca5s.dts
@@ -250,4 +250,17 @@
 
 		/include/ "vexpress-v2m-rs1.dtsi"
 	};
+
+	site2: hsb@40000000 {
+		compatible = "simple-bus";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0x40000000 0x40000000>;
+		#interrupt-cells = <1>;
+		interrupt-map-mask = <0 3>;
+		interrupt-map = <0 0 &gic 0 36 4>,
+				<0 1 &gic 0 37 4>,
+				<0 2 &gic 0 38 4>,
+				<0 3 &gic 0 39 4>;
+	};
 };
diff --git a/arch/arm/boot/dts/vexpress-v2p-ca9.dts b/arch/arm/boot/dts/vexpress-v2p-ca9.dts
index d949fac..edac212 100644
--- a/arch/arm/boot/dts/vexpress-v2p-ca9.dts
+++ b/arch/arm/boot/dts/vexpress-v2p-ca9.dts
@@ -359,4 +359,17 @@
 
 		/include/ "vexpress-v2m.dtsi"
 	};
+
+	site2: hsb@e0000000 {
+		compatible = "simple-bus";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0xe0000000 0x20000000>;
+		#interrupt-cells = <1>;
+		interrupt-map-mask = <0 3>;
+		interrupt-map = <0 0 &gic 0 36 4>,
+				<0 1 &gic 0 37 4>,
+				<0 2 &gic 0 38 4>,
+				<0 3 &gic 0 39 4>;
+	};
 };
-- 
1.7.9.5

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

* [PATCH v3 2/2] arm64: dts: Add expansion bus to Juno
  2016-04-14 15:39 [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Brian Starkey
@ 2016-04-14 15:39 ` Brian Starkey
  2016-04-15  8:55 ` [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Sudeep Holla
  1 sibling, 0 replies; 4+ messages in thread
From: Brian Starkey @ 2016-04-14 15:39 UTC (permalink / raw)
  To: Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi
  Cc: Rob Herring, Pawel Moll, linux-arm-kernel, devicetree, linux-kernel

The Juno development platform has an external expansion bus which can
be used for additional hardware (e.g. LogicTile Express daughterboards).
Add this bus to the Juno base device-tree.

Signed-off-by: Brian Starkey <brian.starkey@arm.com>
Acked-by: Liviu Dudau <Liviu.Dudau@arm.com>
---
 arch/arm64/boot/dts/arm/juno-base.dtsi |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm64/boot/dts/arm/juno-base.dtsi b/arch/arm64/boot/dts/arm/juno-base.dtsi
index 68ccc39..dee2386 100644
--- a/arch/arm64/boot/dts/arm/juno-base.dtsi
+++ b/arch/arm64/boot/dts/arm/juno-base.dtsi
@@ -272,3 +272,13 @@
 
 		/include/ "juno-motherboard.dtsi"
 	};
+
+	site2: tlx@60000000 {
+		compatible = "simple-bus";
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0 0x60000000 0x10000000>;
+		#interrupt-cells = <1>;
+		interrupt-map-mask = <0 0>;
+		interrupt-map = <0 0 &gic 0 0 0 168 IRQ_TYPE_LEVEL_HIGH>;
+	};
-- 
1.7.9.5

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

* Re: [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress
  2016-04-14 15:39 [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Brian Starkey
  2016-04-14 15:39 ` [PATCH v3 2/2] arm64: dts: Add expansion bus to Juno Brian Starkey
@ 2016-04-15  8:55 ` Sudeep Holla
  2016-04-15  9:53   ` Brian Starkey
  1 sibling, 1 reply; 4+ messages in thread
From: Sudeep Holla @ 2016-04-15  8:55 UTC (permalink / raw)
  To: Brian Starkey
  Cc: Liviu Dudau, Lorenzo Pieralisi, Sudeep Holla, Rob Herring,
	Pawel Moll, linux-arm-kernel, devicetree, linux-kernel



On 14/04/16 16:39, Brian Starkey wrote:
> The VExpress development platform has an external expansion bus which
> can be used for additional hardware (e.g. LogicTile Express
> daughterboards).
> Add this bus to the VExpress CoreTile device-trees.
>
> The bus is described for a CoreTile occupying site 1.
>

Pulled both, thanks for splitting.

-- 
Regards,
Sudeep

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

* Re: [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress
  2016-04-15  8:55 ` [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Sudeep Holla
@ 2016-04-15  9:53   ` Brian Starkey
  0 siblings, 0 replies; 4+ messages in thread
From: Brian Starkey @ 2016-04-15  9:53 UTC (permalink / raw)
  To: Sudeep Holla
  Cc: Liviu Dudau, Lorenzo Pieralisi, Rob Herring, Pawel Moll,
	linux-arm-kernel, devicetree, linux-kernel

On Fri, Apr 15, 2016 at 09:55:50AM +0100, Sudeep Holla wrote:
>
>
>On 14/04/16 16:39, Brian Starkey wrote:
>>The VExpress development platform has an external expansion bus which
>>can be used for additional hardware (e.g. LogicTile Express
>>daughterboards).
>>Add this bus to the VExpress CoreTile device-trees.
>>
>>The bus is described for a CoreTile occupying site 1.
>>
>
>Pulled both, thanks for splitting.

Great, thanks very much.

-Brian

>
>-- 
>Regards,
>Sudeep
>

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

end of thread, other threads:[~2016-04-15  9:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-14 15:39 [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Brian Starkey
2016-04-14 15:39 ` [PATCH v3 2/2] arm64: dts: Add expansion bus to Juno Brian Starkey
2016-04-15  8:55 ` [PATCH v3 1/2] ARM: dts: Add expansion bus to VExpress Sudeep Holla
2016-04-15  9:53   ` Brian Starkey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).