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 25B85C5AD4C for ; Wed, 15 Nov 2023 19:27:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233793AbjKOT1j (ORCPT ); Wed, 15 Nov 2023 14:27:39 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33722 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233833AbjKOT1h (ORCPT ); Wed, 15 Nov 2023 14:27:37 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 40AE919E for ; Wed, 15 Nov 2023 11:27:34 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 82CA8C433C9; Wed, 15 Nov 2023 19:27:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1700076453; bh=IpC1lItvYSh19oTJw/Ge+IgAkFSyU6Kzf/J6hEe+lTM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R19CwvMB98MNs5mwh0+TBIsEZqFAS5Pf9h/wtyyoCcQMo/j9tb9Pdnwt4cfSOa5Ps 6FXyZ9tihpLONfZDRxhY2ch/tawCZ9xR1KjRpuYBbZZEu1JwDOzL6irSmWB9XXH9lo jC/6h1WVktdGQya569u3aBBg1XPgdYM2xP3gzo8U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Shubhi Garg , Jon Hunter , Thierry Reding , Sasha Levin Subject: [PATCH 6.5 298/550] arm64: tegra: Use correct interrupts for Tegra234 TKE Date: Wed, 15 Nov 2023 14:14:42 -0500 Message-ID: <20231115191621.470764048@linuxfoundation.org> X-Mailer: git-send-email 2.42.1 In-Reply-To: <20231115191600.708733204@linuxfoundation.org> References: <20231115191600.708733204@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 6.5-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thierry Reding [ Upstream commit c0b80988eb78d6423249ab530bfbc6b238790a26 ] The shared interrupts 0-9 of the TKE are mapped to interrupts 0-9, but shared interrupts 10-15 are mapped to 256-261. Correct the mapping for the final 6 interrupts. This prevents the TKE from requesting the RTC interrupt (along with several GTE and watchdog interrupts). Reported-by: Shubhi Garg Fixes: 28d860ed02c2 ("arm64: tegra: Enable native timers on Tegra234") Reviewed-by: Jon Hunter Signed-off-by: Thierry Reding Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/nvidia/tegra234.dtsi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm64/boot/dts/nvidia/tegra234.dtsi b/arch/arm64/boot/dts/nvidia/tegra234.dtsi index 0f12a8debd8ae..1a1dd35aff26a 100644 --- a/arch/arm64/boot/dts/nvidia/tegra234.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra234.dtsi @@ -43,12 +43,12 @@ timer@2080000 { , , , - , - , - , - , - , - ; + , + , + , + , + , + ; status = "okay"; }; -- 2.42.0