2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-06-23 21:38:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <led.h>
|
2018-07-27 14:37:07 +00:00
|
|
|
#include <dm/device-internal.h>
|
2015-06-23 21:38:45 +00:00
|
|
|
#include <dm/root.h>
|
|
|
|
#include <dm/uclass-internal.h>
|
|
|
|
|
|
|
|
int led_get_by_label(const char *label, struct udevice **devp)
|
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
struct uclass *uc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = uclass_get(UCLASS_LED, &uc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
uclass_foreach_dev(dev, uc) {
|
2017-04-10 17:34:53 +00:00
|
|
|
struct led_uc_plat *uc_plat = dev_get_uclass_platdata(dev);
|
2015-06-23 21:38:45 +00:00
|
|
|
|
2015-07-06 18:54:33 +00:00
|
|
|
/* Ignore the top-level LED node */
|
|
|
|
if (uc_plat->label && !strcmp(label, uc_plat->label))
|
2015-06-23 21:38:45 +00:00
|
|
|
return uclass_get_device_tail(dev, 0, devp);
|
|
|
|
}
|
|
|
|
|
2015-07-06 18:54:33 +00:00
|
|
|
return -ENODEV;
|
2015-06-23 21:38:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 17:34:54 +00:00
|
|
|
int led_set_state(struct udevice *dev, enum led_state_t state)
|
2015-06-23 21:38:45 +00:00
|
|
|
{
|
|
|
|
struct led_ops *ops = led_get_ops(dev);
|
|
|
|
|
2017-04-10 17:34:54 +00:00
|
|
|
if (!ops->set_state)
|
2015-06-23 21:38:45 +00:00
|
|
|
return -ENOSYS;
|
|
|
|
|
2017-04-10 17:34:54 +00:00
|
|
|
return ops->set_state(dev, state);
|
2015-06-23 21:38:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 17:34:55 +00:00
|
|
|
enum led_state_t led_get_state(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct led_ops *ops = led_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->get_state)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->get_state(dev);
|
|
|
|
}
|
|
|
|
|
2017-04-10 17:34:57 +00:00
|
|
|
#ifdef CONFIG_LED_BLINK
|
|
|
|
int led_set_period(struct udevice *dev, int period_ms)
|
|
|
|
{
|
|
|
|
struct led_ops *ops = led_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->set_period)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
return ops->set_period(dev, period_ms);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-27 14:37:07 +00:00
|
|
|
int led_default_state(void)
|
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
struct uclass *uc;
|
|
|
|
const char *default_state;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = uclass_get(UCLASS_LED, &uc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
for (uclass_find_first_device(UCLASS_LED, &dev);
|
|
|
|
dev;
|
|
|
|
uclass_find_next_device(&dev)) {
|
|
|
|
default_state = dev_read_string(dev, "default-state");
|
|
|
|
if (!default_state)
|
|
|
|
continue;
|
|
|
|
ret = device_probe(dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
if (!strncmp(default_state, "on", 2))
|
|
|
|
led_set_state(dev, LEDST_ON);
|
|
|
|
else if (!strncmp(default_state, "off", 3))
|
|
|
|
led_set_state(dev, LEDST_OFF);
|
|
|
|
/* default-state = "keep" : device is only probed */
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-06-23 21:38:45 +00:00
|
|
|
UCLASS_DRIVER(led) = {
|
|
|
|
.id = UCLASS_LED,
|
|
|
|
.name = "led",
|
2017-04-10 17:34:53 +00:00
|
|
|
.per_device_platdata_auto_alloc_size = sizeof(struct led_uc_plat),
|
2015-06-23 21:38:45 +00:00
|
|
|
};
|