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 BE0FF21D3FC; Thu, 13 Feb 2025 14:46:43 +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=1739458003; cv=none; b=e4G5Ar6i7WP9BmvOGSa2qAxxZQ2DSZbYUZTfdavoSQ6ZQiLmCMW4xQHFQEfh3brpZZdCxGiUHLYSfhEPZDiBLPUBccnissLVlDFy31UbZuMix0teXw9/Kh1AlAqZYsqasDPeefirvjAIZW0hHVCJI2Oga67JFaFPOSJ+IUmJ04U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739458003; c=relaxed/simple; bh=9CIVWbTdu+YAFT75YroykI1oNLuj/bfR480jbdIAsmY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WwW1HJzda8FlQvJ25eOuSYQ23tsG8/S/R7Ey1wova6sYjXbSSiorULM38YUC+3XlZCgyeIfMF6cd22UVpX10XOR45OAahXk9qbb0r9uv8uHcm9ab6jdFU87tY2Id0FEVquqhY9ml3L9G6DlYBYbq4WyBHwGKgbfmYPjhAN3ZZI0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YUwntbyy; 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="YUwntbyy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3A4AFC4CED1; Thu, 13 Feb 2025 14:46:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739458003; bh=9CIVWbTdu+YAFT75YroykI1oNLuj/bfR480jbdIAsmY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YUwntbyyC9dUNu/2eZyPqAteW5EKFWVcr0bZf3MZ8dx/4tcGD91Pqbr9naBzSJMVR U99a+506kqQgpS2ABoyBmthELo2wWC4VzL9K/WMz3uW6zOw2a6rySWzq+XUl3xAZpU GmlHJe6v4wBpSJQHoO3G7yRFyvD96K+fAK61u5XM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Krzysztof Kozlowski , Konrad Dybcio , Bjorn Andersson Subject: [PATCH 6.12 274/422] arm64: dts: qcom: sm6115: Fix ADSP memory base and length Date: Thu, 13 Feb 2025 15:27:03 +0100 Message-ID: <20250213142447.115711154@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250213142436.408121546@linuxfoundation.org> References: <20250213142436.408121546@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev 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: Krzysztof Kozlowski commit 47d178caac3ec13f5f472afda25fcfdfaa00d0da upstream. The address space in ADSP PAS (Peripheral Authentication Service) remoteproc node should point to the QDSP PUB address space (QDSP6...SS_PUB): 0x0a40_0000 with length of 0x4040. 0x0ab0_0000, value used so far, is the SSC_QUPV3 block, so entierly unrelated. Correct the base address and length, which should have no functional impact on Linux users, because PAS loader does not use this address space at all. Cc: stable@vger.kernel.org Fixes: 96ce9227fdbc ("arm64: dts: qcom: sm6115: Add remoteproc nodes") Signed-off-by: Krzysztof Kozlowski Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20241213-dts-qcom-cdsp-mpss-base-address-v3-23-2e0036fccd8d@linaro.org Signed-off-by: Bjorn Andersson Signed-off-by: Greg Kroah-Hartman --- arch/arm64/boot/dts/qcom/sm6115.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/arch/arm64/boot/dts/qcom/sm6115.dtsi +++ b/arch/arm64/boot/dts/qcom/sm6115.dtsi @@ -2670,9 +2670,9 @@ }; }; - remoteproc_adsp: remoteproc@ab00000 { + remoteproc_adsp: remoteproc@a400000 { compatible = "qcom,sm6115-adsp-pas"; - reg = <0x0 0x0ab00000 0x0 0x100>; + reg = <0x0 0x0a400000 0x0 0x4040>; interrupts-extended = <&intc GIC_SPI 282 IRQ_TYPE_EDGE_RISING>, <&adsp_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,