From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com ([217.140.101.70]:58516 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934101AbdBQSHx (ORCPT ); Fri, 17 Feb 2017 13:07:53 -0500 Date: Fri, 17 Feb 2017 18:07:35 +0000 From: Mark Rutland To: Geert Uytterhoeven Cc: Simon Horman , Magnus Damm , linux-renesas-soc@vger.kernel.org, Takeshi Kihara , linux-arm-kernel@lists.infradead.org, Dirk Behme Subject: Re: [PATCH v3] arm64: dts: r8a7795: Add Cortex-A53 CPU cores Message-ID: <20170217180734.GA25876@leverpostej> References: <1487343849-32616-1-git-send-email-geert+renesas@glider.be> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1487343849-32616-1-git-send-email-geert+renesas@glider.be> Sender: linux-renesas-soc-owner@vger.kernel.org List-ID: 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.