soc: qcom: rpmpd: Add support for sm6125
authorMartin Botka <martin.botka@somainline.org>
Tue, 30 Nov 2021 21:23:30 +0000 (22:23 +0100)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Tue, 21 Dec 2021 01:10:10 +0000 (19:10 -0600)
Add RPM power domains located in Qualcomm SM6125
SoC.

Signed-off-by: Martin Botka <martin.botka@somainline.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20211130212332.25401-2-martin.botka@somainline.org
drivers/soc/qcom/rpmpd.c

index 36b2381039e6253a55826a5d88675c871c803688..0a8d8d24bfb77a96993c26c82f4e75c5f2046f7c 100644 (file)
@@ -395,6 +395,28 @@ static const struct rpmpd_desc sm6115_desc = {
        .max_state = RPM_SMD_LEVEL_TURBO_NO_CPR,
 };
 
+/* sm6125 RPM Power domains */
+DEFINE_RPMPD_PAIR(sm6125, vddcx, vddcx_ao, RWCX, LEVEL, 0);
+DEFINE_RPMPD_VFL(sm6125, vddcx_vfl, RWCX, 0);
+
+DEFINE_RPMPD_PAIR(sm6125, vddmx, vddmx_ao, RWMX, LEVEL, 0);
+DEFINE_RPMPD_VFL(sm6125, vddmx_vfl, RWMX, 0);
+
+static struct rpmpd *sm6125_rpmpds[] = {
+       [SM6125_VDDCX] =                &sm6125_vddcx,
+       [SM6125_VDDCX_AO] =             &sm6125_vddcx_ao,
+       [SM6125_VDDCX_VFL] =            &sm6125_vddcx_vfl,
+       [SM6125_VDDMX] =                &sm6125_vddmx,
+       [SM6125_VDDMX_AO] =             &sm6125_vddmx_ao,
+       [SM6125_VDDMX_VFL] =            &sm6125_vddmx_vfl,
+};
+
+static const struct rpmpd_desc sm6125_desc = {
+       .rpmpds = sm6125_rpmpds,
+       .num_pds = ARRAY_SIZE(sm6125_rpmpds),
+       .max_state = RPM_SMD_LEVEL_BINNING,
+};
+
 static struct rpmpd *qcm2290_rpmpds[] = {
        [QCM2290_VDDCX] = &sm6115_vddcx,
        [QCM2290_VDDCX_AO] = &sm6115_vddcx_ao,
@@ -425,6 +447,7 @@ static const struct of_device_id rpmpd_match_table[] = {
        { .compatible = "qcom,qcs404-rpmpd", .data = &qcs404_desc },
        { .compatible = "qcom,sdm660-rpmpd", .data = &sdm660_desc },
        { .compatible = "qcom,sm6115-rpmpd", .data = &sm6115_desc },
+       { .compatible = "qcom,sm6125-rpmpd", .data = &sm6125_desc },
        { }
 };
 MODULE_DEVICE_TABLE(of, rpmpd_match_table);