From mboxrd@z Thu Jan 1 00:00:00 1970 From: mark.rutland@arm.com (Mark Rutland) Date: Fri, 17 Feb 2017 18:07:35 +0000 Subject: [PATCH v3] arm64: dts: r8a7795: Add Cortex-A53 CPU cores In-Reply-To: <1487343849-32616-1-git-send-email-geert+renesas@glider.be> References: <1487343849-32616-1-git-send-email-geert+renesas@glider.be> Message-ID: <20170217180734.GA25876@leverpostej> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, On Fri, Feb 17, 2017 at 04:04:09PM +0100, Geert Uytterhoeven wrote: > From: Takeshi Kihara > > This patch adds Cortex-A53 CPU cores to r8a7795 SoC for a total of 8 > cores (4 x Cortex-A57 + 4 x Cortex-A53). > interrupts = , > , > , > - ; > + , > + , > + , > + , > + ; > interrupt-affinity = <&a57_0>, > <&a57_1>, > <&a57_2>, > - <&a57_3>; > + <&a57_3>, > + <&a53_0>, > + <&a53_1>, > + <&a53_2>, > + <&a53_3>; > }; This isn't quite right; the A53 cores should have a separate PMU node. The PMU hardware is different across microarchitectures, and they must be handled separately. Thanks, Mark.