u-boot-brain/drivers/video/backlight_gpio.c
Simon Glass 41575d8e4c dm: treewide: Rename auto_alloc_size members to be shorter
This construct is quite long-winded. In earlier days it made some sense
since auto-allocation was a strange concept. But with driver model now
used pretty universally, we can shorten this to 'auto'. This reduces
verbosity and makes it easier to read.

Coincidentally it also ensures that every declaration is on one line,
thus making dtoc's job easier.

Signed-off-by: Simon Glass <sjg@chromium.org>
2020-12-13 08:00:25 -07:00

73 lines
1.5 KiB
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2017, STMicroelectronics - All Rights Reserved
* Author: Patrick Delaunay <patrick.delaunay@st.com>
*/
#include <common.h>
#include <dm.h>
#include <backlight.h>
#include <log.h>
#include <asm/gpio.h>
struct gpio_backlight_priv {
struct gpio_desc gpio;
bool def_value;
};
static int gpio_backlight_enable(struct udevice *dev)
{
struct gpio_backlight_priv *priv = dev_get_priv(dev);
dm_gpio_set_value(&priv->gpio, 1);
return 0;
}
static int gpio_backlight_ofdata_to_platdata(struct udevice *dev)
{
struct gpio_backlight_priv *priv = dev_get_priv(dev);
int ret;
ret = gpio_request_by_name(dev, "gpios", 0, &priv->gpio,
GPIOD_IS_OUT);
if (ret) {
debug("%s: Warning: cannot get GPIO: ret=%d\n",
__func__, ret);
return ret;
}
priv->def_value = dev_read_bool(dev, "default-on");
return 0;
}
static int gpio_backlight_probe(struct udevice *dev)
{
struct gpio_backlight_priv *priv = dev_get_priv(dev);
if (priv->def_value)
gpio_backlight_enable(dev);
return 0;
}
static const struct backlight_ops gpio_backlight_ops = {
.enable = gpio_backlight_enable,
};
static const struct udevice_id gpio_backlight_ids[] = {
{ .compatible = "gpio-backlight" },
{ }
};
U_BOOT_DRIVER(gpio_backlight) = {
.name = "gpio_backlight",
.id = UCLASS_PANEL_BACKLIGHT,
.of_match = gpio_backlight_ids,
.ops = &gpio_backlight_ops,
.ofdata_to_platdata = gpio_backlight_ofdata_to_platdata,
.probe = gpio_backlight_probe,
.priv_auto = sizeof(struct gpio_backlight_priv),
};