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 0B5411D1F46; Wed, 2 Oct 2024 13:59:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727877587; cv=none; b=CUzgrYzlGkpxqFW27NmYgK0zGMFDOiAprL/X8oAwegnUBjA2rPDcHEbRwoMZrvupShWYvB/xK8g3tD7mtK6TUiOFzysOMWZCZYNYblqSEq5P/L/PrphDK9Lx0M8ET8KJ5zqQZvBQLhA00rtPieMWRpdlJwST5MDAUDVuv1AaiBE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727877587; c=relaxed/simple; bh=MiwERSoDoeqxzNoNjEjN4ICJrfqxX02UpNrbcU6KBIw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GfqFdLzLiyfqwWnFjdmExg4ab0YI+xxkRwZI8FzZOc1rP+6Hh3tt53RjLIdHITxfqAS8+/26AZAi31tFOWECwVTCeLsJ4dXiLDuSuXvazC7xJ+fkwMPNtap4opMJt5lo19W/UgxsJWCdv5BrZ21YUV9kRXNTzTjZJVuEwcoLi7A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HflAk6wy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="HflAk6wy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 82C5BC4CEC5; Wed, 2 Oct 2024 13:59:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727877586; bh=MiwERSoDoeqxzNoNjEjN4ICJrfqxX02UpNrbcU6KBIw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HflAk6wyYAIrKA8Mq65CUY5W3cCiuY64Ocartj5heH7uwqHKgaCZSpe45GQZF+j6a Uyv/U9tqyygj5FHs+C2UaSaksydH0TFxgcDA86MygBuQ3WHPxMOt92SVArDxWF/2Vu WURxhjP7PFTCXYHNs55PBeKXRb3KfT1bme35tK4A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Lad Prabhakar , Geert Uytterhoeven , Sasha Levin Subject: [PATCH 6.10 125/634] arm64: dts: renesas: r9a07g043u: Correct GICD and GICR sizes Date: Wed, 2 Oct 2024 14:53:45 +0200 Message-ID: <20241002125816.046447687@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241002125811.070689334@linuxfoundation.org> References: <20241002125811.070689334@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Lad Prabhakar [ Upstream commit ab39547f739236e7f16b8b0a51fdca95cc9cadd3 ] The RZ/G2UL SoC is equipped with the GIC-600. The GICD is 64KiB + 64KiB for the MBI alias (in total 128KiB), and the GICR is 128KiB per CPU. Despite the RZ/G2UL SoC being single-core, it has two instances of GICR. Fixes: cf40c9689e510 ("arm64: dts: renesas: Add initial DTSI for RZ/G2UL SoC") Signed-off-by: Lad Prabhakar Link: https://lore.kernel.org/20240730122436.350013-3-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Geert Uytterhoeven Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/renesas/r9a07g043u.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/renesas/r9a07g043u.dtsi b/arch/arm64/boot/dts/renesas/r9a07g043u.dtsi index 18ef297db9336..20fb5e41c5988 100644 --- a/arch/arm64/boot/dts/renesas/r9a07g043u.dtsi +++ b/arch/arm64/boot/dts/renesas/r9a07g043u.dtsi @@ -210,8 +210,8 @@ #interrupt-cells = <3>; #address-cells = <0>; interrupt-controller; - reg = <0x0 0x11900000 0 0x40000>, - <0x0 0x11940000 0 0x60000>; + reg = <0x0 0x11900000 0 0x20000>, + <0x0 0x11940000 0 0x40000>; interrupts = ; }; }; -- 2.43.0