Re: [PATCH] soc: qcom: pd-mapper: Add Kaanapali compatible
From: Prasad Kumpatla
Date: Wed Oct 01 2025 - 10:29:27 EST
On 9/25/2025 2:24 PM, Konrad Dybcio wrote:
On 9/25/25 1:58 AM, Jingyi Wang wrote:
From: Prasad Kumpatla <prasad.kumpatla@xxxxxxxxxxxxxxxx>
Add support for the Qualcomm Kaanapali SoC to the protection
domain mapper. Kaanapali shares the same protection domain
configuration as SM8550, so reuse the existing SM8550 domain data.
Signed-off-by: Prasad Kumpatla <prasad.kumpatla@xxxxxxxxxxxxxxxx>
Signed-off-by: Jingyi Wang <jingyi.wang@xxxxxxxxxxxxxxxx>
---
drivers/soc/qcom/qcom_pd_mapper.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/soc/qcom/qcom_pd_mapper.c b/drivers/soc/qcom/qcom_pd_mapper.c
index 6384f271953d..bb2eeb955106 100644
--- a/drivers/soc/qcom/qcom_pd_mapper.c
+++ b/drivers/soc/qcom/qcom_pd_mapper.c
@@ -552,6 +552,7 @@ static const struct of_device_id qcom_pdm_domains[] __maybe_unused = {
{ .compatible = "qcom,apq8074", .data = NULL, },
{ .compatible = "qcom,apq8084", .data = NULL, },
{ .compatible = "qcom,apq8096", .data = msm8996_domains, },
+ { .compatible = "qcom,kaanapali", .data = sm8550_domains, },
Doesn't e.g. 'msm/adsp/charger_pd' need adjustments with the move to
SoCCP?
Yes, Thanks for pointing it, Will create a new domain entry for
Kaanapali and
remove the charger_pd. Will update in next patch.
Thanks,
Prasad
Konrad