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 74A7F269AE4; Tue, 8 Apr 2025 12:15:57 +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=1744114557; cv=none; b=VIgKMRwR86/tgjmVoeRfFtl8/Y0m7esiRDyWa6RNY0kOBcIXP5v6nLe0x5lgqhT0/f6RftDclYIbCP83JYqF3izPNx+MYVPMQlLhGdbK8dscvOYDNfqIw0kLDnrhZd5Trd/hF8QjVtaoqzuc8XWfBCdr+BEdYTx7vGomk/9QyAU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744114557; c=relaxed/simple; bh=JPJlauGlKZz78mG4VGo6+WsONurXvAmmt8tjTvsRHiY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=txD28wpU/h1xRFhVBEIh0Qx/4c9/GTVuppF51/Xl5DjQeneJWam87QmthQu431Nb6TM4WFsjc4NJkzfXRUZ97GTrwyQxLA7enMKhezGXMdogs/KHNQRrw2YAo5NeuaQ6xAFKs61QCO5OaCOfnhwh6/1d5IvoIAJc3bj6jZC45qA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=CtJgVNt0; 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="CtJgVNt0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 03312C4CEE5; Tue, 8 Apr 2025 12:15:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744114557; bh=JPJlauGlKZz78mG4VGo6+WsONurXvAmmt8tjTvsRHiY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CtJgVNt0QlqjxQVy72baut4kFmxNr18cD7BGdkjLjWF/Tbhurqgqzfz6+B2z6A61q Y8cB6BVMunTL+KCEisZqd4v/49LxSboTQQIsmfupDZv8LJ8WC3KXe2NvAzKXU+8Ebq HDNPMTITn7vopGpGXAHSpCEzZHQ2wNF1Yus4QRJ4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Stephan Gerhold , Luca Weiss , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.13 151/499] remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226 Date: Tue, 8 Apr 2025 12:46:03 +0200 Message-ID: <20250408104854.952793617@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104851.256868745@linuxfoundation.org> References: <20250408104851.256868745@linuxfoundation.org> User-Agent: quilt/0.68 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.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Luca Weiss [ Upstream commit ba785ff4162a65f18ed501019637a998b752b5ad ] MSM8226 requires the CX power domain, so use the msm8996_adsp_resource which has cx under proxy_pd_names and is otherwise equivalent. Suggested-by: Stephan Gerhold Fixes: fb4f07cc9399 ("remoteproc: qcom: pas: Add MSM8226 ADSP support") Signed-off-by: Luca Weiss Reviewed-by: Stephan Gerhold Link: https://lore.kernel.org/r/20250128-pas-singlepd-v1-1-85d9ae4b0093@lucaweiss.eu Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/remoteproc/qcom_q6v5_pas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c index 9f2d9b4be2790..60923ed129049 100644 --- a/drivers/remoteproc/qcom_q6v5_pas.c +++ b/drivers/remoteproc/qcom_q6v5_pas.c @@ -1411,7 +1411,7 @@ static const struct adsp_data sm8650_mpss_resource = { }; static const struct of_device_id adsp_of_match[] = { - { .compatible = "qcom,msm8226-adsp-pil", .data = &adsp_resource_init}, + { .compatible = "qcom,msm8226-adsp-pil", .data = &msm8996_adsp_resource}, { .compatible = "qcom,msm8953-adsp-pil", .data = &msm8996_adsp_resource}, { .compatible = "qcom,msm8974-adsp-pil", .data = &adsp_resource_init}, { .compatible = "qcom,msm8996-adsp-pil", .data = &msm8996_adsp_resource}, -- 2.39.5