blob: aa0e2928666a0c2d7189d0fdcf9347d53ddade4b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass37211bf2016-01-21 19:44:57 -07002/*
3 * Copyright (c) 2016 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass37211bf2016-01-21 19:44:57 -07005 */
6
Simon Glassfe68a452018-10-01 12:22:41 -06007#define LOG_CATEGORY UCLASS_PANEL_BACKLIGHT
8
Simon Glass37211bf2016-01-21 19:44:57 -07009#include <common.h>
10#include <dm.h>
11#include <backlight.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070013#include <malloc.h>
Simon Glass37211bf2016-01-21 19:44:57 -070014#include <pwm.h>
15#include <asm/gpio.h>
Simon Glassdbd79542020-05-10 11:40:11 -060016#include <linux/delay.h>
Alvaro Fernando Garcíabe732a52023-08-03 21:35:38 -030017#include <linux/math64.h>
Simon Glass37211bf2016-01-21 19:44:57 -070018#include <power/regulator.h>
19
Simon Glassfe68a452018-10-01 12:22:41 -060020/**
21 * Private information for the PWM backlight
22 *
23 * If @num_levels is 0 then the levels are simple values with the backlight
24 * value going between the minimum (default 0) and the maximum (default 255).
25 * Otherwise the levels are an index into @levels (0..n-1).
26 *
27 * @reg: Regulator to enable to turn the backlight on (NULL if none)
28 * @enable, GPIO to set to enable the backlight (can be missing)
29 * @pwm: PWM to use to change the backlight brightness
30 * @channel: PWM channel to use
31 * @period_ns: Period of the backlight in nanoseconds
32 * @levels: Levels for the backlight, or NULL if not using indexed levels
33 * @num_levels: Number of levels
34 * @cur_level: Current level for the backlight (index or value)
35 * @default_level: Default level for the backlight (index or value)
36 * @min_level: Minimum level of the backlight (full off)
Dario Binacchi4d570872020-10-11 14:28:03 +020037 * @max_level: Maximum level of the backlight (full on)
Simon Glassfe68a452018-10-01 12:22:41 -060038 * @enabled: true if backlight is enabled
39 */
Simon Glass37211bf2016-01-21 19:44:57 -070040struct pwm_backlight_priv {
41 struct udevice *reg;
42 struct gpio_desc enable;
43 struct udevice *pwm;
44 uint channel;
45 uint period_ns;
Stefan Mavrodieva7bec412019-04-12 08:56:27 +030046 /*
47 * the polarity of one PWM
48 * 0: normal polarity
49 * 1: inverted polarity
50 */
51 bool polarity;
Simon Glassfe68a452018-10-01 12:22:41 -060052 u32 *levels;
53 int num_levels;
Simon Glass37211bf2016-01-21 19:44:57 -070054 uint default_level;
Simon Glassfe68a452018-10-01 12:22:41 -060055 int cur_level;
Simon Glass37211bf2016-01-21 19:44:57 -070056 uint min_level;
57 uint max_level;
Simon Glassfe68a452018-10-01 12:22:41 -060058 bool enabled;
Simon Glass37211bf2016-01-21 19:44:57 -070059};
60
Simon Glassfe68a452018-10-01 12:22:41 -060061static int set_pwm(struct pwm_backlight_priv *priv)
Simon Glass37211bf2016-01-21 19:44:57 -070062{
Alvaro Fernando Garcíabe732a52023-08-03 21:35:38 -030063 u64 width;
Simon Glass37211bf2016-01-21 19:44:57 -070064 uint duty_cycle;
65 int ret;
66
Alper Nebi Yasak46927462020-10-22 23:49:26 +030067 if (priv->period_ns) {
Alvaro Fernando Garcíabe732a52023-08-03 21:35:38 -030068 width = priv->period_ns * (priv->cur_level - priv->min_level);
69 duty_cycle = div_u64(width,
70 (priv->max_level - priv->min_level));
Alper Nebi Yasak46927462020-10-22 23:49:26 +030071 ret = pwm_set_config(priv->pwm, priv->channel, priv->period_ns,
72 duty_cycle);
73 } else {
74 /* PWM driver will internally scale these like the above. */
75 ret = pwm_set_config(priv->pwm, priv->channel,
76 priv->max_level - priv->min_level,
77 priv->cur_level - priv->min_level);
78 }
Stefan Mavrodieva7bec412019-04-12 08:56:27 +030079 if (ret)
80 return log_ret(ret);
Simon Glassfe68a452018-10-01 12:22:41 -060081
Stefan Mavrodieva7bec412019-04-12 08:56:27 +030082 ret = pwm_set_invert(priv->pwm, priv->channel, priv->polarity);
Marc Dietrichbc59fb42019-07-02 22:08:33 +020083 if (ret == -ENOSYS && !priv->polarity)
84 ret = 0;
85
Simon Glassfe68a452018-10-01 12:22:41 -060086 return log_ret(ret);
87}
88
89static int enable_sequence(struct udevice *dev, int seq)
90{
91 struct pwm_backlight_priv *priv = dev_get_priv(dev);
92 int ret;
93
94 switch (seq) {
95 case 0:
96 if (priv->reg) {
Simon Glass71fa5b42020-12-03 16:55:18 -070097 __maybe_unused struct dm_regulator_uclass_plat
Simon Glassfe68a452018-10-01 12:22:41 -060098 *plat;
99
Simon Glass71fa5b42020-12-03 16:55:18 -0700100 plat = dev_get_uclass_plat(priv->reg);
Simon Glassfe68a452018-10-01 12:22:41 -0600101 log_debug("Enable '%s', regulator '%s'/'%s'\n",
102 dev->name, priv->reg->name, plat->name);
103 ret = regulator_set_enable(priv->reg, true);
104 if (ret) {
105 log_debug("Cannot enable regulator for PWM '%s'\n",
Simon Glassa119b902018-11-23 21:29:39 -0700106 dev->name);
Simon Glassfe68a452018-10-01 12:22:41 -0600107 return log_ret(ret);
108 }
109 mdelay(120);
110 }
111 break;
112 case 1:
113 mdelay(10);
114 dm_gpio_set_value(&priv->enable, 1);
115 break;
116 }
117
118 return 0;
119}
120
121static int pwm_backlight_enable(struct udevice *dev)
122{
123 struct pwm_backlight_priv *priv = dev_get_priv(dev);
124 int ret;
125
126 ret = enable_sequence(dev, 0);
127 if (ret)
128 return log_ret(ret);
129 ret = set_pwm(priv);
Simon Glass37211bf2016-01-21 19:44:57 -0700130 if (ret)
Simon Glassfe68a452018-10-01 12:22:41 -0600131 return log_ret(ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700132 ret = pwm_set_enable(priv->pwm, priv->channel, true);
133 if (ret)
Simon Glassfe68a452018-10-01 12:22:41 -0600134 return log_ret(ret);
135 ret = enable_sequence(dev, 1);
136 if (ret)
137 return log_ret(ret);
138 priv->enabled = true;
139
140 return 0;
141}
142
143static int pwm_backlight_set_brightness(struct udevice *dev, int percent)
144{
145 struct pwm_backlight_priv *priv = dev_get_priv(dev);
146 bool disable = false;
147 int level;
148 int ret;
149
150 if (!priv->enabled) {
151 ret = enable_sequence(dev, 0);
152 if (ret)
153 return log_ret(ret);
154 }
155 if (percent == BACKLIGHT_OFF) {
156 disable = true;
157 percent = 0;
158 }
159 if (percent == BACKLIGHT_DEFAULT) {
160 level = priv->default_level;
161 } else {
162 if (priv->levels) {
163 level = priv->levels[percent * (priv->num_levels - 1)
164 / 100];
165 } else {
166 level = priv->min_level +
167 (priv->max_level - priv->min_level) *
168 percent / 100;
169 }
170 }
171 priv->cur_level = level;
172
173 ret = set_pwm(priv);
174 if (ret)
175 return log_ret(ret);
176 if (!priv->enabled) {
177 ret = enable_sequence(dev, 1);
178 if (ret)
179 return log_ret(ret);
180 priv->enabled = true;
181 }
182 if (disable) {
183 dm_gpio_set_value(&priv->enable, 0);
184 if (priv->reg) {
185 ret = regulator_set_enable(priv->reg, false);
186 if (ret)
187 return log_ret(ret);
188 }
189 priv->enabled = false;
190 }
Simon Glass37211bf2016-01-21 19:44:57 -0700191
192 return 0;
193}
194
Simon Glassaad29ae2020-12-03 16:55:21 -0700195static int pwm_backlight_of_to_plat(struct udevice *dev)
Simon Glass37211bf2016-01-21 19:44:57 -0700196{
197 struct pwm_backlight_priv *priv = dev_get_priv(dev);
Simon Glasse247e5c2017-06-12 06:21:37 -0600198 struct ofnode_phandle_args args;
Simon Glass37211bf2016-01-21 19:44:57 -0700199 int index, ret, count, len;
200 const u32 *cell;
201
Simon Glassfe68a452018-10-01 12:22:41 -0600202 log_debug("start\n");
Simon Glass37211bf2016-01-21 19:44:57 -0700203 ret = uclass_get_device_by_phandle(UCLASS_REGULATOR, dev,
204 "power-supply", &priv->reg);
Kever Yang2dae5812018-02-09 10:45:12 +0800205 if (ret)
Simon Glassfe68a452018-10-01 12:22:41 -0600206 log_debug("Cannot get power supply: ret=%d\n", ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700207 ret = gpio_request_by_name(dev, "enable-gpios", 0, &priv->enable,
208 GPIOD_IS_OUT);
209 if (ret) {
Simon Glassfe68a452018-10-01 12:22:41 -0600210 log_debug("Warning: cannot get enable GPIO: ret=%d\n", ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700211 if (ret != -ENOENT)
Simon Glassfe68a452018-10-01 12:22:41 -0600212 return log_ret(ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700213 }
Simon Glasse247e5c2017-06-12 06:21:37 -0600214 ret = dev_read_phandle_with_args(dev, "pwms", "#pwm-cells", 0, 0,
215 &args);
Simon Glass37211bf2016-01-21 19:44:57 -0700216 if (ret) {
Simon Glassfe68a452018-10-01 12:22:41 -0600217 log_debug("Cannot get PWM phandle: ret=%d\n", ret);
218 return log_ret(ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700219 }
220
Simon Glasse247e5c2017-06-12 06:21:37 -0600221 ret = uclass_get_device_by_ofnode(UCLASS_PWM, args.node, &priv->pwm);
Simon Glass37211bf2016-01-21 19:44:57 -0700222 if (ret) {
Simon Glassfe68a452018-10-01 12:22:41 -0600223 log_debug("Cannot get PWM: ret=%d\n", ret);
224 return log_ret(ret);
Simon Glass37211bf2016-01-21 19:44:57 -0700225 }
Alper Nebi Yasak46927462020-10-22 23:49:26 +0300226 if (args.args_count < 1)
Simon Glassfe68a452018-10-01 12:22:41 -0600227 return log_msg_ret("Not enough arguments to pwm\n", -EINVAL);
Simon Glass37211bf2016-01-21 19:44:57 -0700228 priv->channel = args.args[0];
Alper Nebi Yasak46927462020-10-22 23:49:26 +0300229 if (args.args_count > 1)
230 priv->period_ns = args.args[1];
Stefan Mavrodieva7bec412019-04-12 08:56:27 +0300231 if (args.args_count > 2)
232 priv->polarity = args.args[2];
Simon Glass37211bf2016-01-21 19:44:57 -0700233
Simon Glasse247e5c2017-06-12 06:21:37 -0600234 index = dev_read_u32_default(dev, "default-brightness-level", 255);
235 cell = dev_read_prop(dev, "brightness-levels", &len);
Simon Glass37211bf2016-01-21 19:44:57 -0700236 count = len / sizeof(u32);
237 if (cell && count > index) {
Simon Glassfe68a452018-10-01 12:22:41 -0600238 priv->levels = malloc(len);
239 if (!priv->levels)
240 return log_ret(-ENOMEM);
Simon Glass5a569942021-05-13 19:39:18 -0600241 ret = dev_read_u32_array(dev, "brightness-levels", priv->levels,
242 count);
243 if (ret)
244 return log_msg_ret("levels", ret);
Simon Glassfe68a452018-10-01 12:22:41 -0600245 priv->num_levels = count;
246 priv->default_level = priv->levels[index];
247 priv->max_level = priv->levels[count - 1];
Simon Glass37211bf2016-01-21 19:44:57 -0700248 } else {
249 priv->default_level = index;
250 priv->max_level = 255;
251 }
Simon Glassfe68a452018-10-01 12:22:41 -0600252 priv->cur_level = priv->default_level;
253 log_debug("done\n");
Simon Glass37211bf2016-01-21 19:44:57 -0700254
255
256 return 0;
257}
258
259static int pwm_backlight_probe(struct udevice *dev)
260{
261 return 0;
262}
263
264static const struct backlight_ops pwm_backlight_ops = {
Simon Glassfe68a452018-10-01 12:22:41 -0600265 .enable = pwm_backlight_enable,
266 .set_brightness = pwm_backlight_set_brightness,
Simon Glass37211bf2016-01-21 19:44:57 -0700267};
268
269static const struct udevice_id pwm_backlight_ids[] = {
270 { .compatible = "pwm-backlight" },
271 { }
272};
273
274U_BOOT_DRIVER(pwm_backlight) = {
275 .name = "pwm_backlight",
276 .id = UCLASS_PANEL_BACKLIGHT,
277 .of_match = pwm_backlight_ids,
278 .ops = &pwm_backlight_ops,
Simon Glassaad29ae2020-12-03 16:55:21 -0700279 .of_to_plat = pwm_backlight_of_to_plat,
Simon Glass37211bf2016-01-21 19:44:57 -0700280 .probe = pwm_backlight_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700281 .priv_auto = sizeof(struct pwm_backlight_priv),
Simon Glass37211bf2016-01-21 19:44:57 -0700282};