From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3983BC77B7D for ; Wed, 10 May 2023 07:00:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236311AbjEJHAw (ORCPT ); Wed, 10 May 2023 03:00:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60968 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236300AbjEJHAo (ORCPT ); Wed, 10 May 2023 03:00:44 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 341CB35AE; Wed, 10 May 2023 00:00:21 -0700 (PDT) Received: from pendragon.ideasonboard.com (softbank126090219015.bbtec.net [126.90.219.15]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 81A7E547; Wed, 10 May 2023 09:00:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1683702012; bh=4RQz1Ad0wpBZCJyrJ1iwEcnhoii6dJVdb+YGrwVqGE0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Roca8TdPGdB7WIGLhHaXY997ignzSF1jF1weIf2FFPzZ37Yt+Gmp1pEdP/iMXFEuR 24eO2BqBWxffj68mmCkcLbuwuBFG/Rw+U2OY/LXcnyg9oBm9CACNuwdrlff65CEk9A ofzxqke1CKOzWZJINDa5rqdKWCK4T+Q92ZIdX7as= Date: Wed, 10 May 2023 10:00:15 +0300 From: Laurent Pinchart To: Michal Simek Cc: linux-kernel@vger.kernel.org, monstr@monstr.eu, michal.simek@xilinx.com, git@xilinx.com, Radhey Shyam Pandey , Harini Katakam , Krzysztof Kozlowski , Parth Gajjar , Piyush Mehta , Rob Herring , Robert Hancock , Tanmay Shah , Vishal Sagar , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 07/23] arm64: zynqmp: Add pmu interrupt-affinity Message-ID: <20230510070015.GF11711@pendragon.ideasonboard.com> References: <4c6674bf7e048e7370248e50ed3d011d604d020e.1683034376.git.michal.simek@amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <4c6674bf7e048e7370248e50ed3d011d604d020e.1683034376.git.michal.simek@amd.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Michal, Thank you for the patch. On Tue, May 02, 2023 at 03:35:35PM +0200, Michal Simek wrote: > From: Radhey Shyam Pandey > > Explicitly specify interrupt affinity to avoid HW perfevents > need to guess. This avoids the following error upon linux boot: > armv8-pmu pmu: hw perfevents: no interrupt-affinity property, > guessing. As mentioned for some of the previous patches, the commit message should explain why this change improves the DT system description. The fact that it gets rid of a warning message may be mentioned, but it shouldn't be the main focus. > Signed-off-by: Radhey Shyam Pandey > Signed-off-by: Michal Simek > --- > > arch/arm64/boot/dts/xilinx/zynqmp.dtsi | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi > index 61c7045eb992..a117294dc890 100644 > --- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi > +++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi > @@ -161,6 +161,10 @@ pmu { > <0 144 4>, > <0 145 4>, > <0 146 4>; > + interrupt-affinity = <&cpu0>, > + <&cpu1>, > + <&cpu2>, > + <&cpu3>; > }; > > psci { -- Regards, Laurent Pinchart