From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 287383F889E; Wed, 20 May 2026 18:12:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779300729; cv=none; b=AdNh4mhzq4I2PmO8mbwYD//lp/BiaE1SFhH/JfsED9AiLnwsCRc93FOzlN1zJuNDp0k8dUXteqJdhnSPeJvfmjChIeqXB735i8fKqhxodmDL+OfO+cD3c0jMKK8ttZqjZG4iR0wfahltWQrkpW1rjoxEpyiBNi2Ew0Gw4irNJfs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779300729; c=relaxed/simple; bh=o4WyYkNpeCYq1PMkKUuJihxT1zinqtSg9iGTDH73aGE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=K0XuTMuQQNVjP15x+9/oZvMKutGYYiw9V8OFeB8TDXgiDUYaWMwEHkR7zPOwroQ8/jA8C0+wofYZjmxJOs4o8I8gf0XgV1f8Bw6JQ/KN1OU72xlh+fCLkiOOjwvoGrF9LolHrQDaln7/b3i84Mz7eEBZEjb4Eh/6F8AMcQmjC1s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=EaBV6o40; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="EaBV6o40" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49EE31F000E9; Wed, 20 May 2026 18:12:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779300727; bh=3ssNjQexSSwUAtVu9czZ3wtAegv45g8Sy3MXsn0AzP4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=EaBV6o40Vk1LQXcdi5f0ZL38R8DU2rBgVIn3yNd3X9Uxa6lyHu45alnDX87RsZ3Ge RxvERxT7cm1hl3Aw2tIArKz6Vi6KIcGQphXHdRnDy3FB0NcVYC6DQ9AJuuazLwbPQm /dGGyif+FV7FAF3M3OHkpj+VXeqYCKvzvYMAL7ks= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Konrad Dybcio , Neil Armstrong , Abel Vesa , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.12 284/666] arm64: dts: qcom: sm8550: Fix GIC_ITS range length Date: Wed, 20 May 2026 18:18:15 +0200 Message-ID: <20260520162117.370701532@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162111.222830634@linuxfoundation.org> References: <20260520162111.222830634@linuxfoundation.org> User-Agent: quilt/0.69 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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Konrad Dybcio [ Upstream commit 357c559e386705609b6b9dc0544c420e3f91f3a0 ] Currently, the GITS_SGIR register is cut off. Fix it up. Fixes: ffc50b2d3828 ("arm64: dts: qcom: Add base SM8550 dtsi") Signed-off-by: Konrad Dybcio Reviewed-by: Neil Armstrong Reviewed-by: Abel Vesa Link: https://lore.kernel.org/r/20260317-topic-its_range_fixup-v1-4-49be8076adb1@oss.qualcomm.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/qcom/sm8550.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi index cfdd30009015f..5044a754cf5b2 100644 --- a/arch/arm64/boot/dts/qcom/sm8550.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi @@ -4418,7 +4418,7 @@ intc: interrupt-controller@17100000 { gic_its: msi-controller@17140000 { compatible = "arm,gic-v3-its"; - reg = <0 0x17140000 0 0x20000>; + reg = <0 0x17140000 0 0x40000>; msi-controller; #msi-cells = <1>; }; -- 2.53.0