remoteproc: qcom: pas: Add QCS404 remoteprocs
Add compatibles for the three PAS based remote processors found in QCS404. Reviewed-by: Sibi Sankar <sibis@codeaurora.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
ef73c22fa0
commit
0af9368211
|
@ -10,6 +10,9 @@ on the Qualcomm ADSP Hexagon core.
|
|||
"qcom,msm8974-adsp-pil"
|
||||
"qcom,msm8996-adsp-pil"
|
||||
"qcom,msm8996-slpi-pil"
|
||||
"qcom,qcs404-adsp-pas"
|
||||
"qcom,qcs404-cdsp-pas"
|
||||
"qcom,qcs404-wcss-pas"
|
||||
"qcom,sdm845-adsp-pas"
|
||||
"qcom,sdm845-cdsp-pas"
|
||||
|
||||
|
|
|
@ -362,10 +362,22 @@ static const struct adsp_data slpi_resource_init = {
|
|||
.ssctl_id = 0x16,
|
||||
};
|
||||
|
||||
static const struct adsp_data wcss_resource_init = {
|
||||
.crash_reason_smem = 421,
|
||||
.firmware_name = "wcnss.mdt",
|
||||
.pas_id = 6,
|
||||
.ssr_name = "mpss",
|
||||
.sysmon_name = "wcnss",
|
||||
.ssctl_id = 0x12,
|
||||
};
|
||||
|
||||
static const struct of_device_id adsp_of_match[] = {
|
||||
{ .compatible = "qcom,msm8974-adsp-pil", .data = &adsp_resource_init},
|
||||
{ .compatible = "qcom,msm8996-adsp-pil", .data = &adsp_resource_init},
|
||||
{ .compatible = "qcom,msm8996-slpi-pil", .data = &slpi_resource_init},
|
||||
{ .compatible = "qcom,qcs404-adsp-pas", .data = &adsp_resource_init },
|
||||
{ .compatible = "qcom,qcs404-cdsp-pas", .data = &cdsp_resource_init },
|
||||
{ .compatible = "qcom,qcs404-wcss-pas", .data = &wcss_resource_init },
|
||||
{ .compatible = "qcom,sdm845-adsp-pas", .data = &adsp_resource_init},
|
||||
{ .compatible = "qcom,sdm845-cdsp-pas", .data = &cdsp_resource_init},
|
||||
{ },
|
||||
|
|
Loading…
Reference in New Issue