mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 10:02:02 +02:00
soc: qcom: pd-mapper: Add support for QCS8300
Add support for the Qualcomm QCS8300 SoC to the protection domain mapper. QCS8300 share the same protection domain configuration as SC8280XP, except charger_pd. Add an entry to the kernel, to avoid the need for userspace to provide this service. Signed-off-by: Mohammad Rafi Shaik <mohammad.rafi.shaik@oss.qualcomm.com> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> Link: https://lore.kernel.org/r/20260608084139.1468000-3-mohammad.rafi.shaik@oss.qualcomm.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
This commit is contained in:
parent
63fba7528f
commit
17e26dfa92
|
|
@ -444,6 +444,14 @@ static const struct qcom_pdm_domain_data *qcs615_domains[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static const struct qcom_pdm_domain_data *qcs8300_domains[] = {
|
||||
&adsp_audio_pd,
|
||||
&adsp_root_pd,
|
||||
&cdsp_root_pd,
|
||||
&gpdsp_root_pd,
|
||||
NULL,
|
||||
};
|
||||
|
||||
static const struct qcom_pdm_domain_data *sa8775p_domains[] = {
|
||||
&adsp_audio_pd,
|
||||
&adsp_root_pd,
|
||||
|
|
@ -631,6 +639,7 @@ static const struct of_device_id qcom_pdm_domains[] __maybe_unused = {
|
|||
{ .compatible = "qcom,qcm6490", .data = sc7280_domains, },
|
||||
{ .compatible = "qcom,qcs404", .data = qcs404_domains, },
|
||||
{ .compatible = "qcom,qcs615", .data = qcs615_domains, },
|
||||
{ .compatible = "qcom,qcs8300", .data = qcs8300_domains, },
|
||||
{ .compatible = "qcom,sa8775p", .data = sa8775p_domains, },
|
||||
{ .compatible = "qcom,sc7180", .data = sc7180_domains, },
|
||||
{ .compatible = "qcom,sc7280", .data = sc7280_domains, },
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user