]> git.dujemihanovic.xyz Git - u-boot.git/commit
led: implement LED boot API
authorChristian Marangi <ansuelsmth@gmail.com>
Tue, 1 Oct 2024 12:24:36 +0000 (14:24 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 10 Oct 2024 22:02:20 +0000 (16:02 -0600)
commit914fd75a5d2f4cfa7828b48abed50a146063d1bd
tree67791bee8ec4c6939a9c12481c5865cae09c0b2d
parent30f6ea513859f240f12d0399f22ce459d0c856c3
led: implement LED boot API

Implement LED boot API to signal correct boot of the system.

led_boot_on/off/blink() are introduced to turn ON, OFF and BLINK the
designated boot LED.

New Kconfig is introduced, CONFIG_LED_BOOT to enable the feature.
This makes use of the /options/u-boot property "boot-led" to the
define the boot LED.
It's also introduced a new /options/u-boot property "boot-led-period"
to define the default period when the LED is set to blink mode.

If "boot-led-period" is not defined, the value of 250 (ms) is
used by default.

If CONFIG_LED_BLINK or CONFIG_LED_SW_BLINK is not enabled,
led_boot_blink call will fallback to simple LED ON.

To cache the data we repurpose the now unused led_uc_priv for storage of
global LED uclass info.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/led/Kconfig
drivers/led/led-uclass.c
include/led.h