mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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>
196 lines
4.2 KiB
C
196 lines
4.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#ifndef __LED_H
|
|
#define __LED_H
|
|
|
|
#include <stdbool.h>
|
|
#include <cyclic.h>
|
|
#include <dm/ofnode.h>
|
|
|
|
struct udevice;
|
|
|
|
enum led_state_t {
|
|
LEDST_OFF = 0,
|
|
LEDST_ON = 1,
|
|
LEDST_TOGGLE,
|
|
LEDST_BLINK,
|
|
|
|
LEDST_COUNT,
|
|
};
|
|
|
|
enum led_sw_blink_state_t {
|
|
LED_SW_BLINK_ST_DISABLED,
|
|
LED_SW_BLINK_ST_NOT_READY,
|
|
LED_SW_BLINK_ST_OFF,
|
|
LED_SW_BLINK_ST_ON,
|
|
};
|
|
|
|
struct led_sw_blink {
|
|
enum led_sw_blink_state_t state;
|
|
struct udevice *dev;
|
|
struct cyclic_info cyclic;
|
|
const char cyclic_name[0];
|
|
};
|
|
|
|
/**
|
|
* struct led_uc_plat - Platform data the uclass stores about each device
|
|
*
|
|
* @label: LED label
|
|
* @default_state: LED default state
|
|
*/
|
|
struct led_uc_plat {
|
|
const char *label;
|
|
enum led_state_t default_state;
|
|
#ifdef CONFIG_LED_SW_BLINK
|
|
struct led_sw_blink *sw_blink;
|
|
#endif
|
|
};
|
|
|
|
/**
|
|
* struct led_uc_priv - Private data the uclass stores about each device
|
|
*
|
|
* @boot_led_label: Boot LED label
|
|
* @boot_led_dev: Boot LED dev
|
|
* @boot_led_period: Boot LED blink period
|
|
*/
|
|
struct led_uc_priv {
|
|
#ifdef CONFIG_LED_BOOT
|
|
const char *boot_led_label;
|
|
int boot_led_period;
|
|
#endif
|
|
};
|
|
|
|
struct led_ops {
|
|
/**
|
|
* set_state() - set the state of an LED
|
|
*
|
|
* @dev: LED device to change
|
|
* @state: LED state to set
|
|
* @return 0 if OK, -ve on error
|
|
*/
|
|
int (*set_state)(struct udevice *dev, enum led_state_t state);
|
|
|
|
/**
|
|
* led_get_state() - get the state of an LED
|
|
*
|
|
* @dev: LED device to change
|
|
* @return LED state led_state_t, or -ve on error
|
|
*/
|
|
enum led_state_t (*get_state)(struct udevice *dev);
|
|
|
|
#ifdef CONFIG_LED_BLINK
|
|
/**
|
|
* led_set_period() - set the blink period of an LED
|
|
*
|
|
* Thie records the period if supported, or returns -ENOSYS if not.
|
|
* To start the LED blinking, use set_state().
|
|
*
|
|
* @dev: LED device to change
|
|
* @period_ms: LED blink period in milliseconds
|
|
* @return 0 if OK, -ve on error
|
|
*/
|
|
int (*set_period)(struct udevice *dev, int period_ms);
|
|
#endif
|
|
};
|
|
|
|
#define led_get_ops(dev) ((struct led_ops *)(dev)->driver->ops)
|
|
|
|
/**
|
|
* led_get_by_label() - Find an LED device by label
|
|
*
|
|
* @label: LED label to look up
|
|
* @devp: Returns the associated device, if found
|
|
* Return: 0 if found, -ENODEV if not found, other -ve on error
|
|
*/
|
|
int led_get_by_label(const char *label, struct udevice **devp);
|
|
|
|
/**
|
|
* led_set_state() - set the state of an LED
|
|
*
|
|
* @dev: LED device to change
|
|
* @state: LED state to set
|
|
* Return: 0 if OK, -ve on error
|
|
*/
|
|
int led_set_state(struct udevice *dev, enum led_state_t state);
|
|
|
|
/**
|
|
* led_get_state() - get the state of an LED
|
|
*
|
|
* @dev: LED device to change
|
|
* Return: LED state led_state_t, or -ve on error
|
|
*/
|
|
enum led_state_t led_get_state(struct udevice *dev);
|
|
|
|
/**
|
|
* led_set_period() - set the blink period of an LED
|
|
*
|
|
* @dev: LED device to change
|
|
* @period_ms: LED blink period in milliseconds
|
|
* Return: 0 if OK, -ve on error
|
|
*/
|
|
int led_set_period(struct udevice *dev, int period_ms);
|
|
|
|
/**
|
|
* led_bind_generic() - bind children of parent to given driver
|
|
*
|
|
* @parent: Top-level LED device
|
|
* @driver_name: Driver for handling individual child nodes
|
|
*/
|
|
int led_bind_generic(struct udevice *parent, const char *driver_name);
|
|
|
|
/* Internal functions for software blinking. Do not use them in your code */
|
|
int led_sw_set_period(struct udevice *dev, int period_ms);
|
|
bool led_sw_is_blinking(struct udevice *dev);
|
|
bool led_sw_on_state_change(struct udevice *dev, enum led_state_t state);
|
|
|
|
#ifdef CONFIG_LED_BOOT
|
|
|
|
/**
|
|
* led_boot_on() - turn ON the designated LED for booting
|
|
*
|
|
* Return: 0 if OK, -ve on error
|
|
*/
|
|
int led_boot_on(void);
|
|
|
|
/**
|
|
* led_boot_off() - turn OFF the designated LED for booting
|
|
*
|
|
* Return: 0 if OK, -ve on error
|
|
*/
|
|
int led_boot_off(void);
|
|
|
|
#if defined(CONFIG_LED_BLINK) || defined(CONFIG_LED_SW_BLINK)
|
|
/**
|
|
* led_boot_blink() - turn ON the designated LED for booting
|
|
*
|
|
* Return: 0 if OK, -ve on error
|
|
*/
|
|
int led_boot_blink(void);
|
|
|
|
#else
|
|
/* If LED BLINK is not supported/enabled, fallback to LED ON */
|
|
#define led_boot_blink led_boot_on
|
|
#endif
|
|
#else
|
|
static inline int led_boot_on(void)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
static inline int led_boot_off(void)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
static inline int led_boot_blink(void)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
#endif
|
|
|
|
#endif
|