From mboxrd@z Thu Jan 1 00:00:00 1970 From: wangkefeng.wang@huawei.com (Kefeng Wang) Date: Fri, 8 Apr 2016 11:32:32 +0800 Subject: [PATCH 1/2] arm64: dts: hip05: fix its node without msi-cells In-Reply-To: <1459416820-18789-1-git-send-email-wangkefeng.wang@huawei.com> References: <1459416820-18789-1-git-send-email-wangkefeng.wang@huawei.com> Message-ID: <57072650.30005@huawei.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 2016/3/31 17:33, Kefeng Wang wrote: > Fix commit abf9c25d55e8 ("arm64: dts: hip05: Append all gicv3 ITS > entries"), it forgets the property msi-cell, see arm,gic-v3.txt. Sorry, ignore this, will send v2, should #msi-cell. > Signed-off-by: Kefeng Wang > --- > arch/arm64/boot/dts/hisilicon/hip05.dtsi | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm64/boot/dts/hisilicon/hip05.dtsi b/arch/arm64/boot/dts/hisilicon/hip05.dtsi > index 6319ff3..d1911ea 100644 > --- a/arch/arm64/boot/dts/hisilicon/hip05.dtsi > +++ b/arch/arm64/boot/dts/hisilicon/hip05.dtsi > @@ -249,24 +249,28 @@ > its_peri: interrupt-controller at 8c000000 { > compatible = "arm,gic-v3-its"; > msi-controller; > + msi-cells = <1>; > reg = <0x0 0x8c000000 0x0 0x40000>; > }; > > its_m3: interrupt-controller at a3000000 { > compatible = "arm,gic-v3-its"; > msi-controller; > + msi-cells = <1>; > reg = <0x0 0xa3000000 0x0 0x40000>; > }; > > its_pcie: interrupt-controller at b7000000 { > compatible = "arm,gic-v3-its"; > msi-controller; > + msi-cells = <1>; > reg = <0x0 0xb7000000 0x0 0x40000>; > }; > > its_dsa: interrupt-controller at c6000000 { > compatible = "arm,gic-v3-its"; > msi-controller; > + msi-cells = <1>; > reg = <0x0 0xc6000000 0x0 0x40000>; > }; > }; >