leds: rgb: leds-qcom-lpg: Add support for PMK8550 PWM
authorAnjelique Melendez <quic_amelende@quicinc.com>
Fri, 7 Apr 2023 22:38:49 +0000 (15:38 -0700)
committerLee Jones <lee@kernel.org>
Thu, 20 Apr 2023 10:10:33 +0000 (11:10 +0100)
Add support for pmk8550 compatible and lpg_data.

Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20230407223849.17623-4-quic_amelende@quicinc.com
drivers/leds/rgb/leds-qcom-lpg.c

index 373bcf8ebb5297c35233d9601bb2fbc1b6c7e27d..55a037234df1b07c44fab18846bfa17e705c1af1 100644 (file)
@@ -1490,6 +1490,14 @@ static const struct lpg_data pm8350c_pwm_data = {
        },
 };
 
+static const struct lpg_data pmk8550_pwm_data = {
+       .num_channels = 2,
+       .channels = (const struct lpg_channel_data[]) {
+               { .base = 0xe800 },
+               { .base = 0xe900 },
+       },
+};
+
 static const struct of_device_id lpg_of_table[] = {
        { .compatible = "qcom,pm8150b-lpg", .data = &pm8150b_lpg_data },
        { .compatible = "qcom,pm8150l-lpg", .data = &pm8150l_lpg_data },
@@ -1500,6 +1508,7 @@ static const struct of_device_id lpg_of_table[] = {
        { .compatible = "qcom,pmi8994-lpg", .data = &pmi8994_lpg_data },
        { .compatible = "qcom,pmi8998-lpg", .data = &pmi8998_lpg_data },
        { .compatible = "qcom,pmc8180c-lpg", .data = &pm8150l_lpg_data },
+       { .compatible = "qcom,pmk8550-pwm", .data = &pmk8550_pwm_data },
        {}
 };
 MODULE_DEVICE_TABLE(of, lpg_of_table);