diff options
author | 2025-01-28 22:53:59 +0100 | |
---|---|---|
committer | 2025-03-22 08:42:39 -0500 | |
commit | ba785ff4162a65f18ed501019637a998b752b5ad (patch) | |
tree | e3b8f74cbe06668607fe55f08c9157a483193606 | |
parent | remoteproc: core: Clear table_sz when rproc_shutdown (diff) | |
download | wireguard-linux-ba785ff4162a65f18ed501019637a998b752b5ad.tar.xz wireguard-linux-ba785ff4162a65f18ed501019637a998b752b5ad.zip |
remoteproc: qcom_q6v5_pas: Use resource with CX PD for MSM8226
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 <stephan.gerhold@linaro.org>
Fixes: fb4f07cc9399 ("remoteproc: qcom: pas: Add MSM8226 ADSP support")
Signed-off-by: Luca Weiss <luca@lucaweiss.eu>
Reviewed-by: Stephan Gerhold <stephan.gerhold@linaro.org>
Link: https://lore.kernel.org/r/20250128-pas-singlepd-v1-1-85d9ae4b0093@lucaweiss.eu
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/remoteproc/qcom_q6v5_pas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c index 534e88b84849..8f6de1b3a79b 100644 --- a/drivers/remoteproc/qcom_q6v5_pas.c +++ b/drivers/remoteproc/qcom_q6v5_pas.c @@ -1435,7 +1435,7 @@ static const struct adsp_data sm8750_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}, |