From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregory.clement@bootlin.com (Gregory CLEMENT) Date: Thu, 05 Jul 2018 15:28:30 +0200 Subject: [PATCH] arm64: dts: marvell: fix CP110 ICU node size In-Reply-To: <87k1q924qv.fsf@bootlin.com> (Gregory CLEMENT's message of "Thu, 05 Jul 2018 15:26:16 +0200") References: <20180705123449.6052-1-miquel.raynal@bootlin.com> <87k1q924qv.fsf@bootlin.com> Message-ID: <87fu0x24n5.fsf@bootlin.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, On jeu., juil. 05 2018, Gregory CLEMENT wrote: > Hi Miquel, > > On jeu., juil. 05 2018, Miquel Raynal wrote: > >> commit 2f872ddcdb1e8e2186162616cea4581b8403849d upstream. >> >> ICU size in CP110 is not 0x10 but at least 0x440 bytes long (from the >> specification). >> >> Fixes: 6ef84a827c37 ("arm64: dts: marvell: enable GICP and ICU on Armada 7K/8K") >> Cc: stable at vger.kernel.org # 4.14.x >> Signed-off-by: Miquel Raynal >> Reviewed-by: Thomas Petazzoni >> Signed-off-by: Gregory CLEMENT > > See > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=2f872ddcdb1e8e2186162616cea4581b8403849d > > it is already in the linux kernel. > > Gregory I missed the comment below and the fact it was for the stable branch. Sorryt for the noise! Gregory > >> --- >> >> Backport to 4.14 stable tree: the original patch did not applied >> because of the effort of DT de-duplication that merged two files in one. >> >> >> arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi | 2 +- >> arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi | 2 +- >> 2 files changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> index 9a7b63cd63a3..7c19f32d0f44 100644 >> --- a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> +++ b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> @@ -169,7 +169,7 @@ >> >> cpm_icu: interrupt-controller at 1e0000 { >> compatible = "marvell,cp110-icu"; >> - reg = <0x1e0000 0x10>; >> + reg = <0x1e0000 0x440>; >> #interrupt-cells = <3>; >> interrupt-controller; >> msi-parent = <&gicp>; >> diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> index faf28633a309..150e97a1dfea 100644 >> --- a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> +++ b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> @@ -169,7 +169,7 @@ >> >> cps_icu: interrupt-controller at 1e0000 { >> compatible = "marvell,cp110-icu"; >> - reg = <0x1e0000 0x10>; >> + reg = <0x1e0000 0x440>; >> #interrupt-cells = <3>; >> interrupt-controller; >> msi-parent = <&gicp>; >> -- >> 2.14.1 >> > > -- > Gregory Clement, Bootlin (formerly Free Electrons) > Embedded Linux and Kernel engineering > http://bootlin.com > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel at lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -- Gregory Clement, Bootlin (formerly Free Electrons) Embedded Linux and Kernel engineering http://bootlin.com From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gregory CLEMENT Subject: Re: [PATCH] arm64: dts: marvell: fix CP110 ICU node size Date: Thu, 05 Jul 2018 15:28:30 +0200 Message-ID: <87fu0x24n5.fsf@bootlin.com> References: <20180705123449.6052-1-miquel.raynal@bootlin.com> <87k1q924qv.fsf@bootlin.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <87k1q924qv.fsf@bootlin.com> (Gregory CLEMENT's message of "Thu, 05 Jul 2018 15:26:16 +0200") Sender: stable-owner@vger.kernel.org To: Miquel Raynal Cc: Mark Rutland , Andrew Lunn , Jason Cooper , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org, Nadav Haklai , Rob Herring , Thomas Petazzoni , linux-arm-kernel@lists.infradead.org, Sebastian Hesselbarth List-Id: devicetree@vger.kernel.org Hi, On jeu., juil. 05 2018, Gregory CLEMENT wrote: > Hi Miquel, > > On jeu., juil. 05 2018, Miquel Raynal wrote: > >> commit 2f872ddcdb1e8e2186162616cea4581b8403849d upstream. >> >> ICU size in CP110 is not 0x10 but at least 0x440 bytes long (from the >> specification). >> >> Fixes: 6ef84a827c37 ("arm64: dts: marvell: enable GICP and ICU on Armada 7K/8K") >> Cc: stable@vger.kernel.org # 4.14.x >> Signed-off-by: Miquel Raynal >> Reviewed-by: Thomas Petazzoni >> Signed-off-by: Gregory CLEMENT > > See > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=2f872ddcdb1e8e2186162616cea4581b8403849d > > it is already in the linux kernel. > > Gregory I missed the comment below and the fact it was for the stable branch. Sorryt for the noise! Gregory > >> --- >> >> Backport to 4.14 stable tree: the original patch did not applied >> because of the effort of DT de-duplication that merged two files in one. >> >> >> arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi | 2 +- >> arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi | 2 +- >> 2 files changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> index 9a7b63cd63a3..7c19f32d0f44 100644 >> --- a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> +++ b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi >> @@ -169,7 +169,7 @@ >> >> cpm_icu: interrupt-controller@1e0000 { >> compatible = "marvell,cp110-icu"; >> - reg = <0x1e0000 0x10>; >> + reg = <0x1e0000 0x440>; >> #interrupt-cells = <3>; >> interrupt-controller; >> msi-parent = <&gicp>; >> diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> index faf28633a309..150e97a1dfea 100644 >> --- a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> +++ b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi >> @@ -169,7 +169,7 @@ >> >> cps_icu: interrupt-controller@1e0000 { >> compatible = "marvell,cp110-icu"; >> - reg = <0x1e0000 0x10>; >> + reg = <0x1e0000 0x440>; >> #interrupt-cells = <3>; >> interrupt-controller; >> msi-parent = <&gicp>; >> -- >> 2.14.1 >> > > -- > Gregory Clement, Bootlin (formerly Free Electrons) > Embedded Linux and Kernel engineering > http://bootlin.com > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -- Gregory Clement, Bootlin (formerly Free Electrons) Embedded Linux and Kernel engineering http://bootlin.com