Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mailbox: qcom: Add sdm660 hmss compatible

The Qualcomm SDM660 platform has a APCS HMSS GLOBAL block, add the
compatible for this.

Signed-off-by: Konrad Dybcio <konradybcio@gmail.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>

authored by

Konrad Dybcio and committed by
Jassi Brar
cfbf813e 03b70130

+6
+1
Documentation/devicetree/bindings/mailbox/qcom,apcs-kpss-global.yaml
··· 22 22 - qcom,msm8998-apcs-hmss-global 23 23 - qcom,qcs404-apcs-apps-global 24 24 - qcom,sc7180-apss-shared 25 + - qcom,sdm660-apcs-hmss-global 25 26 - qcom,sdm845-apss-shared 26 27 - qcom,sm8150-apss-shared 27 28
+5
drivers/mailbox/qcom-apcs-ipc-mailbox.c
··· 49 49 .offset = 8, .clk_name = NULL 50 50 }; 51 51 52 + static const struct qcom_apcs_ipc_data sdm660_apcs_data = { 53 + .offset = 8, .clk_name = NULL 54 + }; 55 + 52 56 static const struct qcom_apcs_ipc_data apps_shared_apcs_data = { 53 57 .offset = 12, .clk_name = NULL 54 58 }; ··· 154 150 { .compatible = "qcom,msm8998-apcs-hmss-global", .data = &msm8998_apcs_data }, 155 151 { .compatible = "qcom,qcs404-apcs-apps-global", .data = &msm8916_apcs_data }, 156 152 { .compatible = "qcom,sc7180-apss-shared", .data = &apps_shared_apcs_data }, 153 + { .compatible = "qcom,sdm660-apcs-hmss-global", .data = &sdm660_apcs_data }, 157 154 { .compatible = "qcom,sdm845-apss-shared", .data = &apps_shared_apcs_data }, 158 155 { .compatible = "qcom,sm8150-apss-shared", .data = &apps_shared_apcs_data }, 159 156 {}