1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
7 #define LOG_CATEGORY UCLASS_PANEL_BACKLIGHT
11 #include <backlight.h>
14 #include <power/regulator.h>
17 * Private information for the PWM backlight
19 * If @num_levels is 0 then the levels are simple values with the backlight
20 * value going between the minimum (default 0) and the maximum (default 255).
21 * Otherwise the levels are an index into @levels (0..n-1).
23 * @reg: Regulator to enable to turn the backlight on (NULL if none)
24 * @enable, GPIO to set to enable the backlight (can be missing)
25 * @pwm: PWM to use to change the backlight brightness
26 * @channel: PWM channel to use
27 * @period_ns: Period of the backlight in nanoseconds
28 * @levels: Levels for the backlight, or NULL if not using indexed levels
29 * @num_levels: Number of levels
30 * @cur_level: Current level for the backlight (index or value)
31 * @default_level: Default level for the backlight (index or value)
32 * @min_level: Minimum level of the backlight (full off)
33 * @min_level: Maximum level of the backlight (full on)
34 * @enabled: true if backlight is enabled
36 struct pwm_backlight_priv {
38 struct gpio_desc enable;
43 * the polarity of one PWM
45 * 1: inverted polarity
57 static int set_pwm(struct pwm_backlight_priv *priv)
62 duty_cycle = priv->period_ns * (priv->cur_level - priv->min_level) /
63 (priv->max_level - priv->min_level + 1);
64 ret = pwm_set_config(priv->pwm, priv->channel, priv->period_ns,
69 ret = pwm_set_invert(priv->pwm, priv->channel, priv->polarity);
73 static int enable_sequence(struct udevice *dev, int seq)
75 struct pwm_backlight_priv *priv = dev_get_priv(dev);
81 __maybe_unused struct dm_regulator_uclass_platdata
84 plat = dev_get_uclass_platdata(priv->reg);
85 log_debug("Enable '%s', regulator '%s'/'%s'\n",
86 dev->name, priv->reg->name, plat->name);
87 ret = regulator_set_enable(priv->reg, true);
89 log_debug("Cannot enable regulator for PWM '%s'\n",
98 dm_gpio_set_value(&priv->enable, 1);
105 static int pwm_backlight_enable(struct udevice *dev)
107 struct pwm_backlight_priv *priv = dev_get_priv(dev);
110 ret = enable_sequence(dev, 0);
116 ret = pwm_set_enable(priv->pwm, priv->channel, true);
119 ret = enable_sequence(dev, 1);
122 priv->enabled = true;
127 static int pwm_backlight_set_brightness(struct udevice *dev, int percent)
129 struct pwm_backlight_priv *priv = dev_get_priv(dev);
130 bool disable = false;
134 if (!priv->enabled) {
135 ret = enable_sequence(dev, 0);
139 if (percent == BACKLIGHT_OFF) {
143 if (percent == BACKLIGHT_DEFAULT) {
144 level = priv->default_level;
147 level = priv->levels[percent * (priv->num_levels - 1)
150 level = priv->min_level +
151 (priv->max_level - priv->min_level) *
155 priv->cur_level = level;
160 if (!priv->enabled) {
161 ret = enable_sequence(dev, 1);
164 priv->enabled = true;
167 dm_gpio_set_value(&priv->enable, 0);
169 ret = regulator_set_enable(priv->reg, false);
173 priv->enabled = false;
179 static int pwm_backlight_ofdata_to_platdata(struct udevice *dev)
181 struct pwm_backlight_priv *priv = dev_get_priv(dev);
182 struct ofnode_phandle_args args;
183 int index, ret, count, len;
186 log_debug("start\n");
187 ret = uclass_get_device_by_phandle(UCLASS_REGULATOR, dev,
188 "power-supply", &priv->reg);
190 log_debug("Cannot get power supply: ret=%d\n", ret);
191 ret = gpio_request_by_name(dev, "enable-gpios", 0, &priv->enable,
194 log_debug("Warning: cannot get enable GPIO: ret=%d\n", ret);
198 ret = dev_read_phandle_with_args(dev, "pwms", "#pwm-cells", 0, 0,
201 log_debug("Cannot get PWM phandle: ret=%d\n", ret);
205 ret = uclass_get_device_by_ofnode(UCLASS_PWM, args.node, &priv->pwm);
207 log_debug("Cannot get PWM: ret=%d\n", ret);
210 if (args.args_count < 2)
211 return log_msg_ret("Not enough arguments to pwm\n", -EINVAL);
212 priv->channel = args.args[0];
213 priv->period_ns = args.args[1];
214 if (args.args_count > 2)
215 priv->polarity = args.args[2];
217 index = dev_read_u32_default(dev, "default-brightness-level", 255);
218 cell = dev_read_prop(dev, "brightness-levels", &len);
219 count = len / sizeof(u32);
220 if (cell && count > index) {
221 priv->levels = malloc(len);
223 return log_ret(-ENOMEM);
224 dev_read_u32_array(dev, "brightness-levels", priv->levels,
226 priv->num_levels = count;
227 priv->default_level = priv->levels[index];
228 priv->max_level = priv->levels[count - 1];
230 priv->default_level = index;
231 priv->max_level = 255;
233 priv->cur_level = priv->default_level;
240 static int pwm_backlight_probe(struct udevice *dev)
245 static const struct backlight_ops pwm_backlight_ops = {
246 .enable = pwm_backlight_enable,
247 .set_brightness = pwm_backlight_set_brightness,
250 static const struct udevice_id pwm_backlight_ids[] = {
251 { .compatible = "pwm-backlight" },
255 U_BOOT_DRIVER(pwm_backlight) = {
256 .name = "pwm_backlight",
257 .id = UCLASS_PANEL_BACKLIGHT,
258 .of_match = pwm_backlight_ids,
259 .ops = &pwm_backlight_ops,
260 .ofdata_to_platdata = pwm_backlight_ofdata_to_platdata,
261 .probe = pwm_backlight_probe,
262 .priv_auto_alloc_size = sizeof(struct pwm_backlight_priv),