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 E7CC1C4332F for ; Sun, 18 Dec 2022 15:00:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229871AbiLRPAk (ORCPT ); Sun, 18 Dec 2022 10:00:40 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52266 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229730AbiLRPAi (ORCPT ); Sun, 18 Dec 2022 10:00:38 -0500 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 9D9A1D71; Sun, 18 Dec 2022 07:00:36 -0800 (PST) Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B3A0A825; Sun, 18 Dec 2022 16:00:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1671375634; bh=kKRrKB/nJyp0eDTeiuSFhpxZVfNJx1NwPZwHj85dT18=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AllE6tS/wunTMQ4N29E0QV/VcJcZqGZy1A2ZGb+XOLYaSdYbXNuxqIhBNuOqeVnDo 3Y/rVf1JbQKJKIHmws4Z39JMkD/B6GcNK0XsvSfRfePQIZBi0O9bFTzycrUyjl7vHd gU9B0xCZ43Wyyuov0i5arXqq3wU9Om/Kiiq2dL5g= Date: Sun, 18 Dec 2022 17:00:30 +0200 From: Laurent Pinchart To: Adam Ford Cc: linux-arm-kernel@lists.infradead.org, aford@beaconembedded.com, Rob Herring , Krzysztof Kozlowski , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Lucas Stach , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] arm64: dts: imx8mp: Fix missing GPC Interrupt Message-ID: References: <20221217180849.775718-1-aford173@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20221217180849.775718-1-aford173@gmail.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi Adam, Thank you for the patch. On Sat, Dec 17, 2022 at 12:08:48PM -0600, Adam Ford wrote: > The GPC node references an interrupt parent, but it doesn't > state the interrupt itself. According to the TRM, this IRQ > is 87. This also eliminate an error detected from dt_binding_check The interrupt isn't used by the driver as far as I can see, so I can't test this, but the patch matches the reference manual, so Reviewed-by: Laurent Pinchart > Fixes: fc0f05124621 ("arm64: dts: imx8mp: add GPC node with GPU power domains") > Signed-off-by: Adam Ford > > diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi > index 7a6e6221f421..7a8ca56e48b6 100644 > --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi > +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi > @@ -524,6 +524,7 @@ gpc: gpc@303a0000 { > compatible = "fsl,imx8mp-gpc"; > reg = <0x303a0000 0x1000>; > interrupt-parent = <&gic>; > + interrupts = ; > interrupt-controller; > #interrupt-cells = <3>; > -- Regards, Laurent Pinchart