From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lorenzo Pieralisi Subject: Re: [RFC PATCH v3 07/17] ARM: dts: imx: cpus/cpu nodes dts updates Date: Thu, 25 Apr 2013 09:59:27 +0100 Message-ID: <20130425085926.GA25870@e102568-lin.cambridge.arm.com> References: <1366824502-19729-1-git-send-email-lorenzo.pieralisi@arm.com> <1366824502-19729-8-git-send-email-lorenzo.pieralisi@arm.com> <20130425054426.GG1389@S2101-09.ap.freescale.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20130425054426.GG1389@S2101-09.ap.freescale.net> Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Shawn Guo Cc: Nicolas Pitre , Jon Medhurst , Dave Martin , Andrew Lunn , Tony Lindgren , Benjamin Herrenschmidt , Linus Walleij , Will Deacon , Viresh Kumar , Mark Rutland , Lennert Buytenhek , Kukjin Kim , Russell King , Magnus Damm , Catalin Marinas , "grant.likely@linaro.org" , David Brown , Jean-Christophe Plagniol-Villard , Dinh Nguyen , Arnd Bergmann , Stephen Warren , Sekhar Nori , devicetree-discuss List-Id: devicetree@vger.kernel.org On Thu, Apr 25, 2013 at 06:44:28AM +0100, Shawn Guo wrote: > On Wed, Apr 24, 2013 at 06:28:12PM +0100, Lorenzo Pieralisi wrote: > > This patch updates the in-kernel dts files according to the latest cpus > > and cpu bindings updates for ARM. > > > > Signed-off-by: Lorenzo Pieralisi > > --- > > arch/arm/boot/dts/imx23.dtsi | 8 ++++++-- > > arch/arm/boot/dts/imx28.dtsi | 8 ++++++-- > > arch/arm/boot/dts/imx6dl.dtsi | 2 ++ > > arch/arm/boot/dts/imx6q.dtsi | 1 + > > 4 files changed, 15 insertions(+), 4 deletions(-) > > > > diff --git a/arch/arm/boot/dts/imx23.dtsi b/arch/arm/boot/dts/imx23.dtsi > > index 56afcf4..0aae18b 100644 > > --- a/arch/arm/boot/dts/imx23.dtsi > > +++ b/arch/arm/boot/dts/imx23.dtsi > > @@ -23,8 +23,12 @@ > > }; > > > > cpus { > > - cpu@0 { > > - compatible = "arm,arm926ejs"; > > + #address-cells = <0>; > > + #size-cells = <0>; > > + > > + cpu { > > + compatible = "arm,arm926ej-s"; > > + device_type = "cpu"; > > }; > > }; > > > > diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi > > index 7ba4966..07f131fc 100644 > > --- a/arch/arm/boot/dts/imx28.dtsi > > +++ b/arch/arm/boot/dts/imx28.dtsi > > @@ -32,8 +32,12 @@ > > }; > > > > cpus { > > - cpu@0 { > > - compatible = "arm,arm926ejs"; > > + #address-cells = <0>; > > + #size-cells = <0>; > > + > > + cpu { > > + compatible = "arm,arm926ej-s"; > > + device_type = "cpu"; > > }; > > }; > > > > diff --git a/arch/arm/boot/dts/imx6dl.dtsi b/arch/arm/boot/dts/imx6dl.dtsi > > index 63fafe2..b76d85e 100644 > > --- a/arch/arm/boot/dts/imx6dl.dtsi > > +++ b/arch/arm/boot/dts/imx6dl.dtsi > > @@ -16,12 +16,14 @@ > > > > cpu@0 { > > compatible = "arm,cortex-a9"; > > + device_type = "cpu"; > > reg = <0>; > > next-level-cache = <&L2>; > > }; > > > > cpu@1 { > > compatible = "arm,cortex-a9"; > > + device_type = "cpu"; > > reg = <1>; > > next-level-cache = <&L2>; > > }; > > diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi > > index cba021e..65c1b62 100644 > > --- a/arch/arm/boot/dts/imx6q.dtsi > > +++ b/arch/arm/boot/dts/imx6q.dtsi > > @@ -17,6 +17,7 @@ > > > > cpu@0 { > > compatible = "arm,cortex-a9"; > > + device_type = "cpu"; > > Shouldn't this line be added for cpu@1, cpu@2 and cpu@3 too? Other than > that, Yes, you are right, fixed. Thanks for reviewing. Lorenzo > > Acked-by: Shawn Guo > > > reg = <0>; > > next-level-cache = <&L2>; > > operating-points = < > > -- > > 1.7.12 > > > > > >