From: Anjelique Melendez <quic_amelende@quicinc.com> Date: Thu, 21 Dec 2023 18:58:37 +0000 (-0800) Subject: leds: rgb: Update PM8350C lpg_data to support two-nvmem PPG Scheme X-Git-Tag: for-linus-6.9~316^2~35 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c47d14545b991064b1dd15906cfb413dbc2780ac;p=users%2Fdwmw2%2Flinux.git leds: rgb: Update PM8350C lpg_data to support two-nvmem PPG Scheme Update the pm8350c lpg_data struct so that pm8350c devices are treated as PWM devices that support two-nvmem PPG scheme. Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com> Link: https://lore.kernel.org/r/20231221185838.28440-8-quic_amelende@quicinc.com Signed-off-by: Lee Jones <lee@kernel.org> --- diff --git a/drivers/leds/rgb/leds-qcom-lpg.c b/drivers/leds/rgb/leds-qcom-lpg.c index 9d0717f770bac..6226864145a65 100644 --- a/drivers/leds/rgb/leds-qcom-lpg.c +++ b/drivers/leds/rgb/leds-qcom-lpg.c @@ -1770,11 +1770,13 @@ static const struct lpg_data pm8150l_lpg_data = { static const struct lpg_data pm8350c_pwm_data = { .triled_base = 0xef00, + .lut_size = 122, + .num_channels = 4, .channels = (const struct lpg_channel_data[]) { - { .base = 0xe800, .triled_mask = BIT(7) }, - { .base = 0xe900, .triled_mask = BIT(6) }, - { .base = 0xea00, .triled_mask = BIT(5) }, + { .base = 0xe800, .triled_mask = BIT(7), .sdam_offset = 0x48 }, + { .base = 0xe900, .triled_mask = BIT(6), .sdam_offset = 0x56 }, + { .base = 0xea00, .triled_mask = BIT(5), .sdam_offset = 0x64 }, { .base = 0xeb00 }, }, };