1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
12 #include <power/regulator.h>
14 struct simple_panel_priv {
16 struct udevice *backlight;
17 struct gpio_desc enable;
20 static int simple_panel_enable_backlight(struct udevice *dev)
22 struct simple_panel_priv *priv = dev_get_priv(dev);
25 debug("%s: start, backlight = '%s'\n", __func__, priv->backlight->name);
26 dm_gpio_set_value(&priv->enable, 1);
27 ret = backlight_enable(priv->backlight);
28 debug("%s: done, ret = %d\n", __func__, ret);
35 static int simple_panel_ofdata_to_platdata(struct udevice *dev)
37 struct simple_panel_priv *priv = dev_get_priv(dev);
40 if (IS_ENABLED(CONFIG_DM_REGULATOR)) {
41 ret = uclass_get_device_by_phandle(UCLASS_REGULATOR, dev,
42 "power-supply", &priv->reg);
44 debug("%s: Warning: cannot get power supply: ret=%d\n",
50 ret = uclass_get_device_by_phandle(UCLASS_PANEL_BACKLIGHT, dev,
51 "backlight", &priv->backlight);
53 debug("%s: Cannot get backlight: ret=%d\n", __func__, ret);
56 ret = gpio_request_by_name(dev, "enable-gpios", 0, &priv->enable,
59 debug("%s: Warning: cannot get enable GPIO: ret=%d\n",
68 static int simple_panel_probe(struct udevice *dev)
70 struct simple_panel_priv *priv = dev_get_priv(dev);
73 if (IS_ENABLED(CONFIG_DM_REGULATOR) && priv->reg) {
74 debug("%s: Enable regulator '%s'\n", __func__, priv->reg->name);
75 ret = regulator_set_enable(priv->reg, true);
83 static const struct panel_ops simple_panel_ops = {
84 .enable_backlight = simple_panel_enable_backlight,
87 static const struct udevice_id simple_panel_ids[] = {
88 { .compatible = "simple-panel" },
89 { .compatible = "auo,b133xtn01" },
90 { .compatible = "auo,b116xw03" },
91 { .compatible = "auo,b133htn01" },
95 U_BOOT_DRIVER(simple_panel) = {
96 .name = "simple_panel",
98 .of_match = simple_panel_ids,
99 .ops = &simple_panel_ops,
100 .ofdata_to_platdata = simple_panel_ofdata_to_platdata,
101 .probe = simple_panel_probe,
102 .priv_auto_alloc_size = sizeof(struct simple_panel_priv),