All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: imx: Add the missing cpus node
@ 2013-07-07 13:12 Fabio Estevam
  2013-07-07 13:20 ` Alexander Shiyan
  0 siblings, 1 reply; 3+ messages in thread
From: Fabio Estevam @ 2013-07-07 13:12 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

To make it consistent with the other i.mx SoCs, let's add the cpus nodes.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/boot/dts/imx25.dtsi | 10 ++++++++++
 arch/arm/boot/dts/imx27.dtsi | 10 ++++++++++
 arch/arm/boot/dts/imx31.dtsi | 10 ++++++++++
 arch/arm/boot/dts/imx53.dtsi | 10 ++++++++++
 4 files changed, 40 insertions(+)

diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi
index f590484..1bb9615 100644
--- a/arch/arm/boot/dts/imx25.dtsi
+++ b/arch/arm/boot/dts/imx25.dtsi
@@ -32,6 +32,16 @@
 		usb1 = &usbhost1;
 	};
 
+	cpus {
+		#address-cells = <0>;
+		#size-cells = <0>;
+
+		cpu {
+			compatible = "arm,arm926ej-s";
+			device_type = "cpu";
+		};
+	};
+
 	asic: asic-interrupt-controller at 68000000 {
 		compatible = "fsl,imx25-asic", "fsl,avic";
 		interrupt-controller;
diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi
index a587294..cca29ea 100644
--- a/arch/arm/boot/dts/imx27.dtsi
+++ b/arch/arm/boot/dts/imx27.dtsi
@@ -32,6 +32,16 @@
 		spi2 = &cspi3;
 	};
 
+	cpus {
+		#address-cells = <0>;
+		#size-cells = <0>;
+
+		cpu {
+			compatible = "arm,arm926ej-s";
+			device_type = "cpu";
+		};
+	};
+
 	aitc: aitc-interrupt-controller at e0000000 {
 		compatible = "fsl,imx27-aitc", "fsl,avic";
 		interrupt-controller;
diff --git a/arch/arm/boot/dts/imx31.dtsi b/arch/arm/boot/dts/imx31.dtsi
index 8116778..c34f825 100644
--- a/arch/arm/boot/dts/imx31.dtsi
+++ b/arch/arm/boot/dts/imx31.dtsi
@@ -20,6 +20,16 @@
 		serial4 = &uart5;
 	};
 
+	cpus {
+		#address-cells = <0>;
+		#size-cells = <0>;
+
+		cpu {
+			compatible = "arm,arm1136";
+			device_type = "cpu";
+		};
+	};
+
 	avic: avic-interrupt-controller at 60000000 {
 		compatible = "fsl,imx31-avic", "fsl,avic";
 		interrupt-controller;
diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi
index eb21034..34b7266 100644
--- a/arch/arm/boot/dts/imx53.dtsi
+++ b/arch/arm/boot/dts/imx53.dtsi
@@ -35,6 +35,16 @@
 		spi2 = &cspi;
 	};
 
+	cpus {
+		#address-cells = <1>;
+		#size-cells = <0>;
+		cpu at 0 {
+			device_type = "cpu";
+			compatible = "arm,cortex-a8";
+			reg = <0x0>;
+		};
+	};
+
 	tzic: tz-interrupt-controller at 0fffc000 {
 		compatible = "fsl,imx53-tzic", "fsl,tzic";
 		interrupt-controller;
-- 
1.8.1.2

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

* Re: [PATCH] ARM: dts: imx: Add the missing cpus node
  2013-07-07 13:12 [PATCH] ARM: dts: imx: Add the missing cpus node Fabio Estevam
@ 2013-07-07 13:20 ` Alexander Shiyan
  2013-07-08  1:27   ` Shawn Guo
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Shiyan @ 2013-07-07 13:20 UTC (permalink / raw)
  To: linux-arm-kernel

> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> To make it consistent with the other i.mx SoCs, let's add the cpus nodes.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  arch/arm/boot/dts/imx25.dtsi | 10 ++++++++++
>  arch/arm/boot/dts/imx27.dtsi | 10 ++++++++++
>  arch/arm/boot/dts/imx31.dtsi | 10 ++++++++++
>  arch/arm/boot/dts/imx53.dtsi | 10 ++++++++++
>  4 files changed, 40 insertions(+)

i.MX27 have a CPU node already.

---

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

* [PATCH] ARM: dts: imx: Add the missing cpus node
  2013-07-07 13:20 ` Alexander Shiyan
@ 2013-07-08  1:27   ` Shawn Guo
  0 siblings, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2013-07-08  1:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jul 07, 2013 at 05:20:28PM +0400, Alexander Shiyan wrote:
> > From: Fabio Estevam <fabio.estevam@freescale.com>
> > 
> > To make it consistent with the other i.mx SoCs, let's add the cpus nodes.
> > 
> > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> > ---
> >  arch/arm/boot/dts/imx25.dtsi | 10 ++++++++++
> >  arch/arm/boot/dts/imx27.dtsi | 10 ++++++++++
> >  arch/arm/boot/dts/imx31.dtsi | 10 ++++++++++
> >  arch/arm/boot/dts/imx53.dtsi | 10 ++++++++++
> >  4 files changed, 40 insertions(+)
> 
> i.MX27 have a CPU node already.

Applied with imx27.dtsi changes left out.

Shawn

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

end of thread, other threads:[~2013-07-08  1:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-07 13:12 [PATCH] ARM: dts: imx: Add the missing cpus node Fabio Estevam
2013-07-07 13:20 ` Alexander Shiyan
2013-07-08  1:27   ` Shawn Guo

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.