* [PATCH V3] leds: rgb: leds-group-multicolor: Implement default-intensity
@ 2026-08-04 19:11 Stefan Wahren
2026-08-04 19:25 ` sashiko-bot
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Wahren @ 2026-08-04 19:11 UTC (permalink / raw)
To: Lee Jones, Pavel Machek, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jean-Jacques Hiblot
Cc: Jonas Rebmann, linux-leds, devicetree, linux-kernel,
Stefan Wahren
Currently it's not possible to specify the initial color of a LED
multicolor group during boot. So implement the default-intensity property
similar to the leds-pwm-multicolor driver. In case the property is
missing, the old behavior is kept.
Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Reviewed-by: Jonas Rebmann <jre@pengutronix.de>
---
Changes in V3:
- drop unnecessary patch for leds-group-multicolor.yaml
- add Jonas' RB
Changes in V2:
- adapt to approach (incl. error behavior) by Jonas Rebmann [2]
- address comments by Lee which still apply
drivers/leds/rgb/leds-group-multicolor.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/leds/rgb/leds-group-multicolor.c b/drivers/leds/rgb/leds-group-multicolor.c
index 548c7dd63ba1..69b203ec89fa 100644
--- a/drivers/leds/rgb/leds-group-multicolor.c
+++ b/drivers/leds/rgb/leds-group-multicolor.c
@@ -109,8 +109,14 @@ static int leds_gmc_probe(struct platform_device *pdev)
subled[i].color_index = led_cdev->color;
- /* Configure the LED intensity to its maximum */
- subled[i].intensity = max_brightness;
+ ret = fwnode_property_read_u32(led_cdev->dev->fwnode, "default-intensity",
+ &subled[i].intensity);
+
+ /* In case default-intensity is missing, fallback to maximum */
+ if (ret)
+ subled[i].intensity = max_brightness;
+ else if (subled[i].intensity > max_brightness)
+ subled[i].intensity = max_brightness;
}
/* Initialise the multicolor's LED class device */
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH V3] leds: rgb: leds-group-multicolor: Implement default-intensity
2026-08-04 19:11 [PATCH V3] leds: rgb: leds-group-multicolor: Implement default-intensity Stefan Wahren
@ 2026-08-04 19:25 ` sashiko-bot
0 siblings, 0 replies; 2+ messages in thread
From: sashiko-bot @ 2026-08-04 19:25 UTC (permalink / raw)
To: Stefan Wahren; +Cc: conor+dt, devicetree, linux-leds, lee, robh
> Currently it's not possible to specify the initial color of a LED
> multicolor group during boot. So implement the default-intensity property
> similar to the leds-pwm-multicolor driver. In case the property is
> missing, the old behavior is kept.
>
> Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260804191158.41976-1-wahrenst@gmx.net?part=1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-04 19:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-04 19:11 [PATCH V3] leds: rgb: leds-group-multicolor: Implement default-intensity Stefan Wahren
2026-08-04 19:25 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox