Skip to content

Commit 9430dd5

Browse files
Srinivas KandagatlamohsRafi
authored andcommitted
FROMLIST: soc: qcom: pd-mapper: Add support for Glymur
Add Protection Domains for Qualcomm Glymur SoC which has both ADSP and CDSP. Adding this entry to the kernel driver will avoid the need for userspace to provide this service. Link: https://lore.kernel.org/all/20260323230523.2209023-1-srinivas.kandagatla@oss.qualcomm.com/ Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
1 parent b875717 commit 9430dd5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

drivers/soc/qcom/qcom_pd_mapper.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,14 @@ static const struct qcom_pdm_domain_data mpss_wlan_pd = {
372372
},
373373
};
374374

375+
static const struct qcom_pdm_domain_data *glymur_domains[] = {
376+
&adsp_audio_pd,
377+
&adsp_root_pd,
378+
&adsp_sensor_pd,
379+
&cdsp_root_pd,
380+
NULL,
381+
};
382+
375383
static const struct qcom_pdm_domain_data *kaanapali_domains[] = {
376384
&adsp_audio_pd,
377385
&adsp_root_pd,
@@ -599,6 +607,7 @@ static const struct of_device_id qcom_pdm_domains[] __maybe_unused = {
599607
{ .compatible = "qcom,apq8074", .data = NULL, },
600608
{ .compatible = "qcom,apq8084", .data = NULL, },
601609
{ .compatible = "qcom,apq8096", .data = msm8996_domains, },
610+
{ .compatible = "qcom,glymur", .data = glymur_domains, },
602611
{ .compatible = "qcom,kaanapali", .data = kaanapali_domains, },
603612
{ .compatible = "qcom,msm8226", .data = NULL, },
604613
{ .compatible = "qcom,msm8909", .data = NULL, },

0 commit comments

Comments
 (0)