From mboxrd@z Thu Jan 1 00:00:00 1970 From: shawnguo@kernel.org (Shawn Guo) Date: Wed, 2 Dec 2015 14:30:40 +0800 Subject: [PATCH v2] ARM: DTS: LS1021A: add SATA node to DTS In-Reply-To: <1448854775-19865-1-git-send-email-Yuantian.Tang@freescale.com> References: <1448854775-19865-1-git-send-email-Yuantian.Tang@freescale.com> Message-ID: <20151202063040.GJ692@tiger> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Nov 30, 2015 at 11:39:35AM +0800, Yuantian.Tang at freescale.com wrote: > From: Tang Yuantian > > Added SATA node to LS1021A DTS to support SATA function. > > Signed-off-by: Tang Yuantian I think 'ARM: dts: ls1021a: ...' is a more idiomatic patch prefix for your patch. > --- > v2: > - put reg-names right after reg property > > arch/arm/boot/dts/ls1021a.dtsi | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/arch/arm/boot/dts/ls1021a.dtsi b/arch/arm/boot/dts/ls1021a.dtsi > index 9430a99..33aae8d 100644 > --- a/arch/arm/boot/dts/ls1021a.dtsi > +++ b/arch/arm/boot/dts/ls1021a.dtsi > @@ -143,6 +143,16 @@ > status = "disabled"; > }; > > + sata: sata at 3200000 { > + compatible = "fsl,ls1021a-ahci"; > + reg = <0x0 0x3200000 0x0 0x10000>, > + <0x0 0x20220520 0x0 0x4>; > + reg-names = "ahci", "sata-ecc"; > + interrupts = ; > + clocks = <&platform_clk 1>; > + dma-coherent; > + }; Shouldn't it have the line below to get the device disabled in .dtsi by default, and let .dts that has sata support to enable it? status = "disabled"; Shawn > + > scfg: scfg at 1570000 { > compatible = "fsl,ls1021a-scfg", "syscon"; > reg = <0x0 0x1570000 0x0 0x10000>; > -- > 2.1.0.27.g96db324 > >