From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D5D5E28EB for ; Mon, 30 Jan 2023 13:54:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 51C6AC433D2; Mon, 30 Jan 2023 13:54:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675086848; bh=E2QG5MAz10LUzruRVDYcrq3m3Q6nVEp3darxDjuisQ8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TYMYS29gnIHi8fcXIv0BQ+2bzKVTkeKtSUUn9lxe8xoklQdx9DHbCJ2agiTJnroUC AgAUHRguqcFZ3PS2gbjXhQZc0zNeBDh8paEv/iUxBpb90MfOcbPiEffNoiEwqJhTx/ DfXciP2d+uXJesfT3ES2N55aDgyMvNCPapVRWNoc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Adam Ford , Laurent Pinchart , Shawn Guo , Sasha Levin Subject: [PATCH 6.1 018/313] arm64: dts: imx8mp: Fix missing GPC Interrupt Date: Mon, 30 Jan 2023 14:47:33 +0100 Message-Id: <20230130134337.513187856@linuxfoundation.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230130134336.532886729@linuxfoundation.org> References: <20230130134336.532886729@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Adam Ford [ Upstream commit b3b75ace2085aca623c57e04ea7218ae690090fb ] 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 Fixes: fc0f05124621 ("arm64: dts: imx8mp: add GPC node with GPU power domains") Signed-off-by: Adam Ford Reviewed-by: Laurent Pinchart Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi index d944ecca1b3c..4d06bb707a02 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -523,6 +523,7 @@ gpc: gpc@303a0000 { compatible = "fsl,imx8mp-gpc"; reg = <0x303a0000 0x1000>; interrupt-parent = <&gic>; + interrupts = ; interrupt-controller; #interrupt-cells = <3>; -- 2.39.0