blob: d094299c2a485bf685e856f0335d84f15e88bc43 [file] [log] [blame]
Thomas Gleixner97fb5e82019-05-29 07:17:58 -07001// SPDX-License-Identifier: GPL-2.0-only
Courtney Cavin93c64f12015-03-12 08:47:08 -07002/* Copyright (c) 2015, Sony Mobile Communications, AB.
Courtney Cavin93c64f12015-03-12 08:47:08 -07003 */
4
Kiran Gundafeeab872019-11-01 11:57:03 +05305#include <linux/delay.h>
6#include <linux/interrupt.h>
7#include <linux/ktime.h>
Courtney Cavin93c64f12015-03-12 08:47:08 -07008#include <linux/kernel.h>
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07009#include <linux/backlight.h>
Courtney Cavin93c64f12015-03-12 08:47:08 -070010#include <linux/module.h>
11#include <linux/of.h>
12#include <linux/of_device.h>
Kiran Gunda775d2ff2019-11-01 11:57:01 +053013#include <linux/of_address.h>
Courtney Cavin93c64f12015-03-12 08:47:08 -070014#include <linux/regmap.h>
15
Bjorn Andersson9d6c2432015-10-26 10:45:08 -070016/* From DT binding */
Kiran Gunda775d2ff2019-11-01 11:57:01 +053017#define WLED_MAX_STRINGS 4
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +053018#define MOD_A 0
19#define MOD_B 1
Kiran Gunda775d2ff2019-11-01 11:57:01 +053020
Kiran Gundabb800a32019-11-01 11:57:00 +053021#define WLED_DEFAULT_BRIGHTNESS 2048
Kiran Gunda8663c182019-11-01 11:57:04 +053022#define WLED_SOFT_START_DLY_US 10000
Kiran Gundabb800a32019-11-01 11:57:00 +053023#define WLED3_SINK_REG_BRIGHT_MAX 0xFFF
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +053024#define WLED5_SINK_REG_BRIGHT_MAX_12B 0xFFF
25#define WLED5_SINK_REG_BRIGHT_MAX_15B 0x7FFF
Courtney Cavin93c64f12015-03-12 08:47:08 -070026
Kiran Gunda03b2b5e2019-11-01 11:57:02 +053027/* WLED3/WLED4 control registers */
Kiran Gunda8663c182019-11-01 11:57:04 +053028#define WLED3_CTRL_REG_FAULT_STATUS 0x08
29#define WLED3_CTRL_REG_ILIM_FAULT_BIT BIT(0)
30#define WLED3_CTRL_REG_OVP_FAULT_BIT BIT(1)
31#define WLED4_CTRL_REG_SC_FAULT_BIT BIT(2)
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +053032#define WLED5_CTRL_REG_OVP_PRE_ALARM_BIT BIT(4)
Kiran Gunda8663c182019-11-01 11:57:04 +053033
34#define WLED3_CTRL_REG_INT_RT_STS 0x10
35#define WLED3_CTRL_REG_OVP_FAULT_STATUS BIT(1)
36
Kiran Gundabb800a32019-11-01 11:57:00 +053037#define WLED3_CTRL_REG_MOD_EN 0x46
Kiran Gundabb800a32019-11-01 11:57:00 +053038#define WLED3_CTRL_REG_MOD_EN_MASK BIT(7)
Kiran Gunda775d2ff2019-11-01 11:57:01 +053039#define WLED3_CTRL_REG_MOD_EN_SHIFT 7
Courtney Cavin93c64f12015-03-12 08:47:08 -070040
Kiran Gunda8663c182019-11-01 11:57:04 +053041#define WLED3_CTRL_REG_FEEDBACK_CONTROL 0x48
42
Kiran Gundabb800a32019-11-01 11:57:00 +053043#define WLED3_CTRL_REG_FREQ 0x4c
Kiran Gunda775d2ff2019-11-01 11:57:01 +053044#define WLED3_CTRL_REG_FREQ_MASK GENMASK(3, 0)
Courtney Cavin93c64f12015-03-12 08:47:08 -070045
Kiran Gundabb800a32019-11-01 11:57:00 +053046#define WLED3_CTRL_REG_OVP 0x4d
Kiran Gunda8663c182019-11-01 11:57:04 +053047#define WLED3_CTRL_REG_OVP_MASK GENMASK(1, 0)
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +053048#define WLED5_CTRL_REG_OVP_MASK GENMASK(3, 0)
Courtney Cavin93c64f12015-03-12 08:47:08 -070049
Kiran Gundabb800a32019-11-01 11:57:00 +053050#define WLED3_CTRL_REG_ILIMIT 0x4e
Kiran Gunda775d2ff2019-11-01 11:57:01 +053051#define WLED3_CTRL_REG_ILIMIT_MASK GENMASK(2, 0)
Courtney Cavin93c64f12015-03-12 08:47:08 -070052
Kiran Gunda03b2b5e2019-11-01 11:57:02 +053053/* WLED3/WLED4 sink registers */
Kiran Gundabb800a32019-11-01 11:57:00 +053054#define WLED3_SINK_REG_SYNC 0x47
Kiran Gundabb800a32019-11-01 11:57:00 +053055#define WLED3_SINK_REG_SYNC_CLEAR 0x00
Courtney Cavin93c64f12015-03-12 08:47:08 -070056
Kiran Gundabb800a32019-11-01 11:57:00 +053057#define WLED3_SINK_REG_CURR_SINK 0x4f
Kiran Gunda775d2ff2019-11-01 11:57:01 +053058#define WLED3_SINK_REG_CURR_SINK_MASK GENMASK(7, 5)
59#define WLED3_SINK_REG_CURR_SINK_SHFT 5
Courtney Cavin93c64f12015-03-12 08:47:08 -070060
Kiran Gunda775d2ff2019-11-01 11:57:01 +053061/* WLED3 specific per-'string' registers below */
62#define WLED3_SINK_REG_BRIGHT(n) (0x40 + n)
Courtney Cavin93c64f12015-03-12 08:47:08 -070063
Kiran Gunda775d2ff2019-11-01 11:57:01 +053064#define WLED3_SINK_REG_STR_MOD_EN(n) (0x60 + (n * 0x10))
Kiran Gundabb800a32019-11-01 11:57:00 +053065#define WLED3_SINK_REG_STR_MOD_MASK BIT(7)
Courtney Cavin93c64f12015-03-12 08:47:08 -070066
Kiran Gunda775d2ff2019-11-01 11:57:01 +053067#define WLED3_SINK_REG_STR_FULL_SCALE_CURR(n) (0x62 + (n * 0x10))
68#define WLED3_SINK_REG_STR_FULL_SCALE_CURR_MASK GENMASK(4, 0)
Courtney Cavin93c64f12015-03-12 08:47:08 -070069
Kiran Gunda775d2ff2019-11-01 11:57:01 +053070#define WLED3_SINK_REG_STR_MOD_SRC(n) (0x63 + (n * 0x10))
71#define WLED3_SINK_REG_STR_MOD_SRC_MASK BIT(0)
Kiran Gundabb800a32019-11-01 11:57:00 +053072#define WLED3_SINK_REG_STR_MOD_SRC_INT 0x00
73#define WLED3_SINK_REG_STR_MOD_SRC_EXT 0x01
Courtney Cavin93c64f12015-03-12 08:47:08 -070074
Kiran Gunda775d2ff2019-11-01 11:57:01 +053075#define WLED3_SINK_REG_STR_CABC(n) (0x66 + (n * 0x10))
Kiran Gundabb800a32019-11-01 11:57:00 +053076#define WLED3_SINK_REG_STR_CABC_MASK BIT(7)
Kiran Gunda775d2ff2019-11-01 11:57:01 +053077
Kiran Gundafeeab872019-11-01 11:57:03 +053078/* WLED4 specific control registers */
79#define WLED4_CTRL_REG_SHORT_PROTECT 0x5e
80#define WLED4_CTRL_REG_SHORT_EN_MASK BIT(7)
81
82#define WLED4_CTRL_REG_SEC_ACCESS 0xd0
83#define WLED4_CTRL_REG_SEC_UNLOCK 0xa5
84
85#define WLED4_CTRL_REG_TEST1 0xe2
86#define WLED4_CTRL_REG_TEST1_EXT_FET_DTEST2 0x09
87
Kiran Gunda03b2b5e2019-11-01 11:57:02 +053088/* WLED4 specific sink registers */
89#define WLED4_SINK_REG_CURR_SINK 0x46
90#define WLED4_SINK_REG_CURR_SINK_MASK GENMASK(7, 4)
91#define WLED4_SINK_REG_CURR_SINK_SHFT 4
92
93/* WLED4 specific per-'string' registers below */
94#define WLED4_SINK_REG_STR_MOD_EN(n) (0x50 + (n * 0x10))
95#define WLED4_SINK_REG_STR_MOD_MASK BIT(7)
96
97#define WLED4_SINK_REG_STR_FULL_SCALE_CURR(n) (0x52 + (n * 0x10))
98#define WLED4_SINK_REG_STR_FULL_SCALE_CURR_MASK GENMASK(3, 0)
99
100#define WLED4_SINK_REG_STR_MOD_SRC(n) (0x53 + (n * 0x10))
101#define WLED4_SINK_REG_STR_MOD_SRC_MASK BIT(0)
102#define WLED4_SINK_REG_STR_MOD_SRC_INT 0x00
103#define WLED4_SINK_REG_STR_MOD_SRC_EXT 0x01
104
105#define WLED4_SINK_REG_STR_CABC(n) (0x56 + (n * 0x10))
106#define WLED4_SINK_REG_STR_CABC_MASK BIT(7)
107
108#define WLED4_SINK_REG_BRIGHT(n) (0x57 + (n * 0x10))
109
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530110/* WLED5 specific control registers */
111#define WLED5_CTRL_REG_OVP_INT_CTL 0x5f
112#define WLED5_CTRL_REG_OVP_INT_TIMER_MASK GENMASK(2, 0)
113
114/* WLED5 specific sink registers */
115#define WLED5_SINK_REG_MOD_A_EN 0x50
116#define WLED5_SINK_REG_MOD_B_EN 0x60
117#define WLED5_SINK_REG_MOD_EN_MASK BIT(7)
118
119#define WLED5_SINK_REG_MOD_A_SRC_SEL 0x51
120#define WLED5_SINK_REG_MOD_B_SRC_SEL 0x61
121#define WLED5_SINK_REG_MOD_SRC_SEL_HIGH 0
122#define WLED5_SINK_REG_MOD_SRC_SEL_EXT 0x03
123#define WLED5_SINK_REG_MOD_SRC_SEL_MASK GENMASK(1, 0)
124
125#define WLED5_SINK_REG_MOD_A_BRIGHTNESS_WIDTH_SEL 0x52
126#define WLED5_SINK_REG_MOD_B_BRIGHTNESS_WIDTH_SEL 0x62
127#define WLED5_SINK_REG_BRIGHTNESS_WIDTH_12B 0
128#define WLED5_SINK_REG_BRIGHTNESS_WIDTH_15B 1
129
130#define WLED5_SINK_REG_MOD_A_BRIGHTNESS_LSB 0x53
131#define WLED5_SINK_REG_MOD_A_BRIGHTNESS_MSB 0x54
132#define WLED5_SINK_REG_MOD_B_BRIGHTNESS_LSB 0x63
133#define WLED5_SINK_REG_MOD_B_BRIGHTNESS_MSB 0x64
134
135#define WLED5_SINK_REG_MOD_SYNC_BIT 0x65
136#define WLED5_SINK_REG_SYNC_MOD_A_BIT BIT(0)
137#define WLED5_SINK_REG_SYNC_MOD_B_BIT BIT(1)
138#define WLED5_SINK_REG_SYNC_MASK GENMASK(1, 0)
139
140/* WLED5 specific per-'string' registers below */
141#define WLED5_SINK_REG_STR_FULL_SCALE_CURR(n) (0x72 + (n * 0x10))
142
143#define WLED5_SINK_REG_STR_SRC_SEL(n) (0x73 + (n * 0x10))
144#define WLED5_SINK_REG_SRC_SEL_MOD_A 0
145#define WLED5_SINK_REG_SRC_SEL_MOD_B 1
146#define WLED5_SINK_REG_SRC_SEL_MASK GENMASK(1, 0)
147
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530148struct wled_var_cfg {
149 const u32 *values;
150 u32 (*fn)(u32);
151 int size;
152};
153
154struct wled_u32_opts {
155 const char *name;
156 u32 *val_ptr;
157 const struct wled_var_cfg *cfg;
158};
159
160struct wled_bool_opts {
161 const char *name;
162 bool *val_ptr;
163};
Courtney Cavin93c64f12015-03-12 08:47:08 -0700164
Kiran Gundabb800a32019-11-01 11:57:00 +0530165struct wled_config {
166 u32 boost_i_limit;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700167 u32 ovp;
168 u32 switch_freq;
169 u32 num_strings;
Kiran Gundabb800a32019-11-01 11:57:00 +0530170 u32 string_i_limit;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530171 u32 enabled_strings[WLED_MAX_STRINGS];
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530172 u32 mod_sel;
173 u32 cabc_sel;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700174 bool cs_out_en;
175 bool ext_gen;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530176 bool cabc;
Kiran Gundafeeab872019-11-01 11:57:03 +0530177 bool external_pfet;
Kiran Gunda8663c182019-11-01 11:57:04 +0530178 bool auto_detection_enabled;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700179};
180
Kiran Gundabb800a32019-11-01 11:57:00 +0530181struct wled {
Bjorn Andersson7ddbc242015-07-21 17:44:49 -0700182 const char *name;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530183 struct device *dev;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700184 struct regmap *regmap;
Kiran Gundafeeab872019-11-01 11:57:03 +0530185 struct mutex lock; /* Lock to avoid race from thread irq handler */
186 ktime_t last_short_event;
Kiran Gunda8663c182019-11-01 11:57:04 +0530187 ktime_t start_ovp_fault_time;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530188 u16 ctrl_addr;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +0530189 u16 sink_addr;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530190 u16 max_string_count;
Kiran Gunda8663c182019-11-01 11:57:04 +0530191 u16 auto_detection_ovp_count;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530192 u32 brightness;
193 u32 max_brightness;
Kiran Gundafeeab872019-11-01 11:57:03 +0530194 u32 short_count;
Kiran Gunda8663c182019-11-01 11:57:04 +0530195 u32 auto_detect_count;
Kiran Gundaf16899a2020-04-23 21:03:35 +0530196 u32 version;
Kiran Gundafeeab872019-11-01 11:57:03 +0530197 bool disabled_by_short;
198 bool has_short_detect;
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530199 bool cabc_disabled;
Kiran Gundafeeab872019-11-01 11:57:03 +0530200 int short_irq;
Kiran Gunda8663c182019-11-01 11:57:04 +0530201 int ovp_irq;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700202
Kiran Gundabb800a32019-11-01 11:57:00 +0530203 struct wled_config cfg;
Kiran Gunda8663c182019-11-01 11:57:04 +0530204 struct delayed_work ovp_work;
Kiran Gundaf16899a2020-04-23 21:03:35 +0530205
206 /* Configures the brightness. Applicable for wled3, wled4 and wled5 */
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530207 int (*wled_set_brightness)(struct wled *wled, u16 brightness);
Kiran Gundaf16899a2020-04-23 21:03:35 +0530208
209 /* Configures the cabc register. Applicable for wled4 and wled5 */
210 int (*wled_cabc_config)(struct wled *wled, bool enable);
211
212 /*
213 * Toggles the sync bit for the brightness update to take place.
214 * Applicable for WLED3, WLED4 and WLED5.
215 */
216 int (*wled_sync_toggle)(struct wled *wled);
217
218 /*
219 * Time to wait before checking the OVP status after wled module enable.
220 * Applicable for WLED4 and WLED5.
221 */
222 int (*wled_ovp_delay)(struct wled *wled);
223
224 /*
225 * Determines if the auto string detection is required.
226 * Applicable for WLED4 and WLED5
227 */
228 bool (*wled_auto_detection_required)(struct wled *wled);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700229};
230
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530231static int wled3_set_brightness(struct wled *wled, u16 brightness)
232{
233 int rc, i;
234 u8 v[2];
235
236 v[0] = brightness & 0xff;
237 v[1] = (brightness >> 8) & 0xf;
238
239 for (i = 0; i < wled->cfg.num_strings; ++i) {
240 rc = regmap_bulk_write(wled->regmap, wled->ctrl_addr +
241 WLED3_SINK_REG_BRIGHT(i), v, 2);
242 if (rc < 0)
243 return rc;
244 }
245
246 return 0;
247}
248
Kiran Gunda03b2b5e2019-11-01 11:57:02 +0530249static int wled4_set_brightness(struct wled *wled, u16 brightness)
250{
251 int rc, i;
252 u16 low_limit = wled->max_brightness * 4 / 1000;
253 u8 v[2];
254
255 /* WLED4's lower limit of operation is 0.4% */
256 if (brightness > 0 && brightness < low_limit)
257 brightness = low_limit;
258
259 v[0] = brightness & 0xff;
260 v[1] = (brightness >> 8) & 0xf;
261
262 for (i = 0; i < wled->cfg.num_strings; ++i) {
263 rc = regmap_bulk_write(wled->regmap, wled->sink_addr +
264 WLED4_SINK_REG_BRIGHT(i), v, 2);
265 if (rc < 0)
266 return rc;
267 }
268
269 return 0;
270}
271
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530272static int wled5_set_brightness(struct wled *wled, u16 brightness)
273{
274 int rc, offset;
275 u16 low_limit = wled->max_brightness * 1 / 1000;
276 u8 v[2];
277
278 /* WLED5's lower limit is 0.1% */
279 if (brightness < low_limit)
280 brightness = low_limit;
281
282 v[0] = brightness & 0xff;
283 v[1] = (brightness >> 8) & 0x7f;
284
285 offset = (wled->cfg.mod_sel == MOD_A) ?
286 WLED5_SINK_REG_MOD_A_BRIGHTNESS_LSB :
287 WLED5_SINK_REG_MOD_B_BRIGHTNESS_LSB;
288
289 rc = regmap_bulk_write(wled->regmap, wled->sink_addr + offset,
290 v, 2);
291 return rc;
292}
293
Kiran Gunda8663c182019-11-01 11:57:04 +0530294static void wled_ovp_work(struct work_struct *work)
295{
296 struct wled *wled = container_of(work,
297 struct wled, ovp_work.work);
298 enable_irq(wled->ovp_irq);
299}
300
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530301static int wled_module_enable(struct wled *wled, int val)
302{
303 int rc;
304
Kiran Gundafeeab872019-11-01 11:57:03 +0530305 if (wled->disabled_by_short)
306 return -ENXIO;
307
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530308 rc = regmap_update_bits(wled->regmap, wled->ctrl_addr +
309 WLED3_CTRL_REG_MOD_EN,
310 WLED3_CTRL_REG_MOD_EN_MASK,
311 val << WLED3_CTRL_REG_MOD_EN_SHIFT);
Kiran Gunda8663c182019-11-01 11:57:04 +0530312 if (rc < 0)
313 return rc;
314
315 if (wled->ovp_irq > 0) {
316 if (val) {
317 /*
318 * The hardware generates a storm of spurious OVP
319 * interrupts during soft start operations. So defer
320 * enabling the IRQ for 10ms to ensure that the
321 * soft start is complete.
322 */
323 schedule_delayed_work(&wled->ovp_work, HZ / 100);
324 } else {
325 if (!cancel_delayed_work_sync(&wled->ovp_work))
326 disable_irq(wled->ovp_irq);
327 }
328 }
329
330 return 0;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530331}
332
Kiran Gundaf16899a2020-04-23 21:03:35 +0530333static int wled3_sync_toggle(struct wled *wled)
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530334{
335 int rc;
336 unsigned int mask = GENMASK(wled->max_string_count - 1, 0);
337
338 rc = regmap_update_bits(wled->regmap,
Obeida Shamouncdfd4c62021-03-14 11:11:10 +0100339 wled->sink_addr + WLED3_SINK_REG_SYNC,
Kiran Gunda5eb622e2021-03-18 18:09:40 +0530340 mask, WLED3_SINK_REG_SYNC_CLEAR);
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530341 if (rc < 0)
342 return rc;
343
344 rc = regmap_update_bits(wled->regmap,
Obeida Shamouncdfd4c62021-03-14 11:11:10 +0100345 wled->sink_addr + WLED3_SINK_REG_SYNC,
Kiran Gunda5eb622e2021-03-18 18:09:40 +0530346 mask, mask);
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530347
348 return rc;
349}
350
Kiran Gunda4d6e9cd2021-03-18 18:09:39 +0530351static int wled5_mod_sync_toggle(struct wled *wled)
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530352{
353 int rc;
354 u8 val;
355
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530356 rc = regmap_update_bits(wled->regmap,
357 wled->sink_addr + WLED5_SINK_REG_MOD_SYNC_BIT,
Kiran Gunda5eb622e2021-03-18 18:09:40 +0530358 WLED5_SINK_REG_SYNC_MASK, 0);
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530359 if (rc < 0)
360 return rc;
361
Kiran Gunda5eb622e2021-03-18 18:09:40 +0530362 val = (wled->cfg.mod_sel == MOD_A) ? WLED5_SINK_REG_SYNC_MOD_A_BIT :
363 WLED5_SINK_REG_SYNC_MOD_B_BIT;
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530364 return regmap_update_bits(wled->regmap,
365 wled->sink_addr + WLED5_SINK_REG_MOD_SYNC_BIT,
Kiran Gunda5eb622e2021-03-18 18:09:40 +0530366 WLED5_SINK_REG_SYNC_MASK, val);
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530367}
368
Kiran Gundaf16899a2020-04-23 21:03:35 +0530369static int wled_ovp_fault_status(struct wled *wled, bool *fault_set)
370{
371 int rc;
372 u32 int_rt_sts, fault_sts;
373
374 *fault_set = false;
375 rc = regmap_read(wled->regmap,
376 wled->ctrl_addr + WLED3_CTRL_REG_INT_RT_STS,
377 &int_rt_sts);
378 if (rc < 0) {
379 dev_err(wled->dev, "Failed to read INT_RT_STS rc=%d\n", rc);
380 return rc;
381 }
382
383 rc = regmap_read(wled->regmap,
384 wled->ctrl_addr + WLED3_CTRL_REG_FAULT_STATUS,
385 &fault_sts);
386 if (rc < 0) {
387 dev_err(wled->dev, "Failed to read FAULT_STATUS rc=%d\n", rc);
388 return rc;
389 }
390
391 if (int_rt_sts & WLED3_CTRL_REG_OVP_FAULT_STATUS)
392 *fault_set = true;
393
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530394 if (wled->version == 4 && (fault_sts & WLED3_CTRL_REG_OVP_FAULT_BIT))
395 *fault_set = true;
396
397 if (wled->version == 5 && (fault_sts & (WLED3_CTRL_REG_OVP_FAULT_BIT |
398 WLED5_CTRL_REG_OVP_PRE_ALARM_BIT)))
Kiran Gundaf16899a2020-04-23 21:03:35 +0530399 *fault_set = true;
400
401 if (*fault_set)
402 dev_dbg(wled->dev, "WLED OVP fault detected, int_rt_sts=0x%x fault_sts=0x%x\n",
403 int_rt_sts, fault_sts);
404
405 return rc;
406}
407
408static int wled4_ovp_delay(struct wled *wled)
409{
410 return WLED_SOFT_START_DLY_US;
411}
412
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530413static int wled5_ovp_delay(struct wled *wled)
414{
415 int rc, delay_us;
416 u32 val;
417 u8 ovp_timer_ms[8] = {1, 2, 4, 8, 12, 16, 20, 24};
418
419 /* For WLED5, get the delay based on OVP timer */
420 rc = regmap_read(wled->regmap, wled->ctrl_addr +
421 WLED5_CTRL_REG_OVP_INT_CTL, &val);
422 if (rc < 0)
423 delay_us =
424 ovp_timer_ms[val & WLED5_CTRL_REG_OVP_INT_TIMER_MASK] * 1000;
425 else
426 delay_us = 2 * WLED_SOFT_START_DLY_US;
427
428 dev_dbg(wled->dev, "delay_time_us: %d\n", delay_us);
429
430 return delay_us;
431}
432
Kiran Gundabb800a32019-11-01 11:57:00 +0530433static int wled_update_status(struct backlight_device *bl)
Courtney Cavin93c64f12015-03-12 08:47:08 -0700434{
Kiran Gundabb800a32019-11-01 11:57:00 +0530435 struct wled *wled = bl_get_data(bl);
Sam Ravnborg51d53e52020-07-19 10:07:41 +0200436 u16 brightness = backlight_get_brightness(bl);
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530437 int rc = 0;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700438
Kiran Gundafeeab872019-11-01 11:57:03 +0530439 mutex_lock(&wled->lock);
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530440 if (brightness) {
441 rc = wled->wled_set_brightness(wled, brightness);
442 if (rc < 0) {
443 dev_err(wled->dev, "wled failed to set brightness rc:%d\n",
444 rc);
Kiran Gundafeeab872019-11-01 11:57:03 +0530445 goto unlock_mutex;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530446 }
447
Kiran Gunda4d6e9cd2021-03-18 18:09:39 +0530448 if (wled->version < 5) {
449 rc = wled->wled_sync_toggle(wled);
450 if (rc < 0) {
451 dev_err(wled->dev, "wled sync failed rc:%d\n", rc);
452 goto unlock_mutex;
453 }
454 } else {
455 /*
456 * For WLED5 toggling the MOD_SYNC_BIT updates the
457 * brightness
458 */
459 rc = wled5_mod_sync_toggle(wled);
460 if (rc < 0) {
461 dev_err(wled->dev, "wled mod sync failed rc:%d\n",
462 rc);
463 goto unlock_mutex;
464 }
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530465 }
Courtney Cavin93c64f12015-03-12 08:47:08 -0700466 }
467
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530468 if (!!brightness != !!wled->brightness) {
469 rc = wled_module_enable(wled, !!brightness);
470 if (rc < 0) {
471 dev_err(wled->dev, "wled enable failed rc:%d\n", rc);
Kiran Gundafeeab872019-11-01 11:57:03 +0530472 goto unlock_mutex;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530473 }
474 }
Courtney Cavin93c64f12015-03-12 08:47:08 -0700475
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530476 wled->brightness = brightness;
477
Kiran Gundafeeab872019-11-01 11:57:03 +0530478unlock_mutex:
479 mutex_unlock(&wled->lock);
480
Courtney Cavin93c64f12015-03-12 08:47:08 -0700481 return rc;
482}
483
Kiran Gundaf16899a2020-04-23 21:03:35 +0530484static int wled4_cabc_config(struct wled *wled, bool enable)
485{
486 int i, j, rc;
487 u8 val;
488
489 for (i = 0; i < wled->cfg.num_strings; i++) {
490 j = wled->cfg.enabled_strings[i];
491
492 val = enable ? WLED4_SINK_REG_STR_CABC_MASK : 0;
493 rc = regmap_update_bits(wled->regmap, wled->sink_addr +
494 WLED4_SINK_REG_STR_CABC(j),
495 WLED4_SINK_REG_STR_CABC_MASK, val);
496 if (rc < 0)
497 return rc;
498 }
499
500 return 0;
501}
502
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530503static int wled5_cabc_config(struct wled *wled, bool enable)
504{
505 int rc, offset;
506 u8 reg;
507
508 if (wled->cabc_disabled)
509 return 0;
510
511 reg = enable ? wled->cfg.cabc_sel : 0;
512 offset = (wled->cfg.mod_sel == MOD_A) ? WLED5_SINK_REG_MOD_A_SRC_SEL :
513 WLED5_SINK_REG_MOD_B_SRC_SEL;
514
515 rc = regmap_update_bits(wled->regmap, wled->sink_addr + offset,
516 WLED5_SINK_REG_MOD_SRC_SEL_MASK, reg);
517 if (rc < 0) {
518 pr_err("Error in configuring CABC rc=%d\n", rc);
519 return rc;
520 }
521
522 if (!wled->cfg.cabc_sel)
523 wled->cabc_disabled = true;
524
525 return 0;
526}
527
Kiran Gundafeeab872019-11-01 11:57:03 +0530528#define WLED_SHORT_DLY_MS 20
529#define WLED_SHORT_CNT_MAX 5
530#define WLED_SHORT_RESET_CNT_DLY_US USEC_PER_SEC
531
532static irqreturn_t wled_short_irq_handler(int irq, void *_wled)
533{
534 struct wled *wled = _wled;
535 int rc;
536 s64 elapsed_time;
537
538 wled->short_count++;
539 mutex_lock(&wled->lock);
540 rc = wled_module_enable(wled, false);
541 if (rc < 0) {
542 dev_err(wled->dev, "wled disable failed rc:%d\n", rc);
543 goto unlock_mutex;
544 }
545
546 elapsed_time = ktime_us_delta(ktime_get(),
547 wled->last_short_event);
548 if (elapsed_time > WLED_SHORT_RESET_CNT_DLY_US)
549 wled->short_count = 1;
550
551 if (wled->short_count > WLED_SHORT_CNT_MAX) {
Colin Ian King102a1b32019-11-12 09:30:25 +0000552 dev_err(wled->dev, "Short triggered %d times, disabling WLED forever!\n",
Kiran Gundafeeab872019-11-01 11:57:03 +0530553 wled->short_count);
554 wled->disabled_by_short = true;
555 goto unlock_mutex;
556 }
557
558 wled->last_short_event = ktime_get();
559
560 msleep(WLED_SHORT_DLY_MS);
561 rc = wled_module_enable(wled, true);
562 if (rc < 0)
563 dev_err(wled->dev, "wled enable failed rc:%d\n", rc);
564
565unlock_mutex:
566 mutex_unlock(&wled->lock);
567
568 return IRQ_HANDLED;
569}
570
Kiran Gunda8663c182019-11-01 11:57:04 +0530571#define AUTO_DETECT_BRIGHTNESS 200
572
573static void wled_auto_string_detection(struct wled *wled)
574{
Kiran Gundaf16899a2020-04-23 21:03:35 +0530575 int rc = 0, i, delay_time_us;
576 u32 sink_config = 0;
Kiran Gunda8663c182019-11-01 11:57:04 +0530577 u8 sink_test = 0, sink_valid = 0, val;
Kiran Gundaf16899a2020-04-23 21:03:35 +0530578 bool fault_set;
Kiran Gunda8663c182019-11-01 11:57:04 +0530579
580 /* Read configured sink configuration */
581 rc = regmap_read(wled->regmap, wled->sink_addr +
582 WLED4_SINK_REG_CURR_SINK, &sink_config);
583 if (rc < 0) {
584 dev_err(wled->dev, "Failed to read SINK configuration rc=%d\n",
585 rc);
586 goto failed_detect;
587 }
588
589 /* Disable the module before starting detection */
590 rc = regmap_update_bits(wled->regmap,
591 wled->ctrl_addr + WLED3_CTRL_REG_MOD_EN,
592 WLED3_CTRL_REG_MOD_EN_MASK, 0);
593 if (rc < 0) {
594 dev_err(wled->dev, "Failed to disable WLED module rc=%d\n", rc);
595 goto failed_detect;
596 }
597
598 /* Set low brightness across all sinks */
599 rc = wled4_set_brightness(wled, AUTO_DETECT_BRIGHTNESS);
600 if (rc < 0) {
601 dev_err(wled->dev, "Failed to set brightness for auto detection rc=%d\n",
602 rc);
603 goto failed_detect;
604 }
605
606 if (wled->cfg.cabc) {
Kiran Gundaf16899a2020-04-23 21:03:35 +0530607 rc = wled->wled_cabc_config(wled, false);
608 if (rc < 0)
609 goto failed_detect;
Kiran Gunda8663c182019-11-01 11:57:04 +0530610 }
611
612 /* Disable all sinks */
613 rc = regmap_write(wled->regmap,
614 wled->sink_addr + WLED4_SINK_REG_CURR_SINK, 0);
615 if (rc < 0) {
616 dev_err(wled->dev, "Failed to disable all sinks rc=%d\n", rc);
617 goto failed_detect;
618 }
619
620 /* Iterate through the strings one by one */
621 for (i = 0; i < wled->cfg.num_strings; i++) {
622 sink_test = BIT((WLED4_SINK_REG_CURR_SINK_SHFT + i));
623
624 /* Enable feedback control */
625 rc = regmap_write(wled->regmap, wled->ctrl_addr +
626 WLED3_CTRL_REG_FEEDBACK_CONTROL, i + 1);
627 if (rc < 0) {
628 dev_err(wled->dev, "Failed to enable feedback for SINK %d rc = %d\n",
629 i + 1, rc);
630 goto failed_detect;
631 }
632
633 /* Enable the sink */
634 rc = regmap_write(wled->regmap, wled->sink_addr +
635 WLED4_SINK_REG_CURR_SINK, sink_test);
636 if (rc < 0) {
637 dev_err(wled->dev, "Failed to configure SINK %d rc=%d\n",
638 i + 1, rc);
639 goto failed_detect;
640 }
641
642 /* Enable the module */
643 rc = regmap_update_bits(wled->regmap, wled->ctrl_addr +
644 WLED3_CTRL_REG_MOD_EN,
645 WLED3_CTRL_REG_MOD_EN_MASK,
646 WLED3_CTRL_REG_MOD_EN_MASK);
647 if (rc < 0) {
648 dev_err(wled->dev, "Failed to enable WLED module rc=%d\n",
649 rc);
650 goto failed_detect;
651 }
652
Kiran Gundaf16899a2020-04-23 21:03:35 +0530653 delay_time_us = wled->wled_ovp_delay(wled);
654 usleep_range(delay_time_us, delay_time_us + 1000);
Kiran Gunda8663c182019-11-01 11:57:04 +0530655
Kiran Gundaf16899a2020-04-23 21:03:35 +0530656 rc = wled_ovp_fault_status(wled, &fault_set);
Kiran Gunda8663c182019-11-01 11:57:04 +0530657 if (rc < 0) {
Kiran Gundaf16899a2020-04-23 21:03:35 +0530658 dev_err(wled->dev, "Error in getting OVP fault_sts, rc=%d\n",
Kiran Gunda8663c182019-11-01 11:57:04 +0530659 rc);
660 goto failed_detect;
661 }
662
Kiran Gundaf16899a2020-04-23 21:03:35 +0530663 if (fault_set)
Kiran Gunda8663c182019-11-01 11:57:04 +0530664 dev_dbg(wled->dev, "WLED OVP fault detected with SINK %d\n",
665 i + 1);
666 else
667 sink_valid |= sink_test;
668
669 /* Disable the module */
670 rc = regmap_update_bits(wled->regmap,
671 wled->ctrl_addr + WLED3_CTRL_REG_MOD_EN,
672 WLED3_CTRL_REG_MOD_EN_MASK, 0);
673 if (rc < 0) {
674 dev_err(wled->dev, "Failed to disable WLED module rc=%d\n",
675 rc);
676 goto failed_detect;
677 }
678 }
679
680 if (!sink_valid) {
681 dev_err(wled->dev, "No valid WLED sinks found\n");
682 wled->disabled_by_short = true;
683 goto failed_detect;
684 }
685
686 if (sink_valid != sink_config) {
687 dev_warn(wled->dev, "%x is not a valid sink configuration - using %x instead\n",
688 sink_config, sink_valid);
689 sink_config = sink_valid;
690 }
691
692 /* Write the new sink configuration */
693 rc = regmap_write(wled->regmap,
694 wled->sink_addr + WLED4_SINK_REG_CURR_SINK,
695 sink_config);
696 if (rc < 0) {
697 dev_err(wled->dev, "Failed to reconfigure the default sink rc=%d\n",
698 rc);
699 goto failed_detect;
700 }
701
702 /* Enable valid sinks */
Kiran Gundaf16899a2020-04-23 21:03:35 +0530703 if (wled->version == 4) {
704 for (i = 0; i < wled->cfg.num_strings; i++) {
705 if (sink_config &
706 BIT(WLED4_SINK_REG_CURR_SINK_SHFT + i))
707 val = WLED4_SINK_REG_STR_MOD_MASK;
708 else
709 /* Disable modulator_en for unused sink */
710 val = 0;
711
712 rc = regmap_write(wled->regmap, wled->sink_addr +
713 WLED4_SINK_REG_STR_MOD_EN(i), val);
714 if (rc < 0) {
715 dev_err(wled->dev, "Failed to configure MODULATOR_EN rc=%d\n",
716 rc);
Kiran Gunda8663c182019-11-01 11:57:04 +0530717 goto failed_detect;
Kiran Gundaf16899a2020-04-23 21:03:35 +0530718 }
Kiran Gunda8663c182019-11-01 11:57:04 +0530719 }
720 }
721
Kiran Gundaf16899a2020-04-23 21:03:35 +0530722 /* Enable CABC */
723 rc = wled->wled_cabc_config(wled, true);
724 if (rc < 0)
725 goto failed_detect;
726
Kiran Gunda8663c182019-11-01 11:57:04 +0530727 /* Restore the feedback setting */
728 rc = regmap_write(wled->regmap,
729 wled->ctrl_addr + WLED3_CTRL_REG_FEEDBACK_CONTROL, 0);
730 if (rc < 0) {
731 dev_err(wled->dev, "Failed to restore feedback setting rc=%d\n",
732 rc);
733 goto failed_detect;
734 }
735
736 /* Restore brightness */
737 rc = wled4_set_brightness(wled, wled->brightness);
738 if (rc < 0) {
739 dev_err(wled->dev, "Failed to set brightness after auto detection rc=%d\n",
740 rc);
741 goto failed_detect;
742 }
743
744 rc = regmap_update_bits(wled->regmap,
745 wled->ctrl_addr + WLED3_CTRL_REG_MOD_EN,
746 WLED3_CTRL_REG_MOD_EN_MASK,
747 WLED3_CTRL_REG_MOD_EN_MASK);
748 if (rc < 0) {
749 dev_err(wled->dev, "Failed to enable WLED module rc=%d\n", rc);
750 goto failed_detect;
751 }
752
753failed_detect:
754 return;
755}
756
757#define WLED_AUTO_DETECT_OVP_COUNT 5
758#define WLED_AUTO_DETECT_CNT_DLY_US USEC_PER_SEC
Kiran Gundaf16899a2020-04-23 21:03:35 +0530759
760static bool wled4_auto_detection_required(struct wled *wled)
Kiran Gunda8663c182019-11-01 11:57:04 +0530761{
762 s64 elapsed_time_us;
763
764 if (!wled->cfg.auto_detection_enabled)
765 return false;
766
767 /*
768 * Check if the OVP fault was an occasional one
769 * or if it's firing continuously, the latter qualifies
770 * for an auto-detection check.
771 */
772 if (!wled->auto_detection_ovp_count) {
773 wled->start_ovp_fault_time = ktime_get();
774 wled->auto_detection_ovp_count++;
775 } else {
776 elapsed_time_us = ktime_us_delta(ktime_get(),
777 wled->start_ovp_fault_time);
778 if (elapsed_time_us > WLED_AUTO_DETECT_CNT_DLY_US)
779 wled->auto_detection_ovp_count = 0;
780 else
781 wled->auto_detection_ovp_count++;
782
783 if (wled->auto_detection_ovp_count >=
784 WLED_AUTO_DETECT_OVP_COUNT) {
785 wled->auto_detection_ovp_count = 0;
786 return true;
787 }
788 }
789
790 return false;
791}
792
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +0530793static bool wled5_auto_detection_required(struct wled *wled)
794{
795 if (!wled->cfg.auto_detection_enabled)
796 return false;
797
798 /*
799 * Unlike WLED4, WLED5 has OVP fault density interrupt configuration
800 * i.e. to count the number of OVP alarms for a certain duration before
801 * triggering OVP fault interrupt. By default, number of OVP fault
802 * events counted before an interrupt is fired is 32 and the time
803 * interval is 12 ms. If we see one OVP fault interrupt, then that
804 * should qualify for a real OVP fault condition to run auto detection
805 * algorithm.
806 */
807 return true;
808}
809
Kiran Gunda8663c182019-11-01 11:57:04 +0530810static int wled_auto_detection_at_init(struct wled *wled)
811{
812 int rc;
Kiran Gundaf16899a2020-04-23 21:03:35 +0530813 bool fault_set;
Kiran Gunda8663c182019-11-01 11:57:04 +0530814
815 if (!wled->cfg.auto_detection_enabled)
816 return 0;
817
Kiran Gundaf16899a2020-04-23 21:03:35 +0530818 rc = wled_ovp_fault_status(wled, &fault_set);
Kiran Gunda8663c182019-11-01 11:57:04 +0530819 if (rc < 0) {
Kiran Gundaf16899a2020-04-23 21:03:35 +0530820 dev_err(wled->dev, "Error in getting OVP fault_sts, rc=%d\n",
821 rc);
Kiran Gunda8663c182019-11-01 11:57:04 +0530822 return rc;
823 }
824
Kiran Gundaf16899a2020-04-23 21:03:35 +0530825 if (fault_set) {
Kiran Gunda8663c182019-11-01 11:57:04 +0530826 mutex_lock(&wled->lock);
827 wled_auto_string_detection(wled);
828 mutex_unlock(&wled->lock);
829 }
830
831 return rc;
832}
833
834static irqreturn_t wled_ovp_irq_handler(int irq, void *_wled)
835{
836 struct wled *wled = _wled;
837 int rc;
838 u32 int_sts, fault_sts;
839
840 rc = regmap_read(wled->regmap,
841 wled->ctrl_addr + WLED3_CTRL_REG_INT_RT_STS, &int_sts);
842 if (rc < 0) {
843 dev_err(wled->dev, "Error in reading WLED3_INT_RT_STS rc=%d\n",
844 rc);
845 return IRQ_HANDLED;
846 }
847
848 rc = regmap_read(wled->regmap, wled->ctrl_addr +
849 WLED3_CTRL_REG_FAULT_STATUS, &fault_sts);
850 if (rc < 0) {
851 dev_err(wled->dev, "Error in reading WLED_FAULT_STATUS rc=%d\n",
852 rc);
853 return IRQ_HANDLED;
854 }
855
856 if (fault_sts & (WLED3_CTRL_REG_OVP_FAULT_BIT |
857 WLED3_CTRL_REG_ILIM_FAULT_BIT))
858 dev_dbg(wled->dev, "WLED OVP fault detected, int_sts=%x fault_sts= %x\n",
859 int_sts, fault_sts);
860
861 if (fault_sts & WLED3_CTRL_REG_OVP_FAULT_BIT) {
Kiran Gundaf16899a2020-04-23 21:03:35 +0530862 if (wled->wled_auto_detection_required(wled)) {
Kiran Gunda8663c182019-11-01 11:57:04 +0530863 mutex_lock(&wled->lock);
864 wled_auto_string_detection(wled);
865 mutex_unlock(&wled->lock);
866 }
867 }
868
869 return IRQ_HANDLED;
870}
871
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530872static int wled3_setup(struct wled *wled)
Courtney Cavin93c64f12015-03-12 08:47:08 -0700873{
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530874 u16 addr;
875 u8 sink_en = 0;
876 int rc, i, j;
Courtney Cavin93c64f12015-03-12 08:47:08 -0700877
878 rc = regmap_update_bits(wled->regmap,
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530879 wled->ctrl_addr + WLED3_CTRL_REG_OVP,
880 WLED3_CTRL_REG_OVP_MASK, wled->cfg.ovp);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700881 if (rc)
882 return rc;
883
884 rc = regmap_update_bits(wled->regmap,
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530885 wled->ctrl_addr + WLED3_CTRL_REG_ILIMIT,
886 WLED3_CTRL_REG_ILIMIT_MASK,
887 wled->cfg.boost_i_limit);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700888 if (rc)
889 return rc;
890
891 rc = regmap_update_bits(wled->regmap,
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530892 wled->ctrl_addr + WLED3_CTRL_REG_FREQ,
893 WLED3_CTRL_REG_FREQ_MASK,
894 wled->cfg.switch_freq);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700895 if (rc)
896 return rc;
897
Courtney Cavin93c64f12015-03-12 08:47:08 -0700898 for (i = 0; i < wled->cfg.num_strings; ++i) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530899 j = wled->cfg.enabled_strings[i];
900 addr = wled->ctrl_addr + WLED3_SINK_REG_STR_MOD_EN(j);
901 rc = regmap_update_bits(wled->regmap, addr,
902 WLED3_SINK_REG_STR_MOD_MASK,
903 WLED3_SINK_REG_STR_MOD_MASK);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700904 if (rc)
905 return rc;
906
907 if (wled->cfg.ext_gen) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530908 addr = wled->ctrl_addr + WLED3_SINK_REG_STR_MOD_SRC(j);
909 rc = regmap_update_bits(wled->regmap, addr,
910 WLED3_SINK_REG_STR_MOD_SRC_MASK,
911 WLED3_SINK_REG_STR_MOD_SRC_EXT);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700912 if (rc)
913 return rc;
914 }
915
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530916 addr = wled->ctrl_addr + WLED3_SINK_REG_STR_FULL_SCALE_CURR(j);
917 rc = regmap_update_bits(wled->regmap, addr,
918 WLED3_SINK_REG_STR_FULL_SCALE_CURR_MASK,
919 wled->cfg.string_i_limit);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700920 if (rc)
921 return rc;
922
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530923 addr = wled->ctrl_addr + WLED3_SINK_REG_STR_CABC(j);
924 rc = regmap_update_bits(wled->regmap, addr,
925 WLED3_SINK_REG_STR_CABC_MASK,
926 wled->cfg.cabc ?
927 WLED3_SINK_REG_STR_CABC_MASK : 0);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700928 if (rc)
929 return rc;
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530930
931 sink_en |= BIT(j + WLED3_SINK_REG_CURR_SINK_SHFT);
Courtney Cavin93c64f12015-03-12 08:47:08 -0700932 }
933
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530934 rc = regmap_update_bits(wled->regmap,
935 wled->ctrl_addr + WLED3_SINK_REG_CURR_SINK,
936 WLED3_SINK_REG_CURR_SINK_MASK, sink_en);
937 if (rc)
938 return rc;
939
Courtney Cavin93c64f12015-03-12 08:47:08 -0700940 return 0;
941}
942
Kiran Gundabb800a32019-11-01 11:57:00 +0530943static const struct wled_config wled3_config_defaults = {
944 .boost_i_limit = 3,
945 .string_i_limit = 20,
Courtney Cavin93c64f12015-03-12 08:47:08 -0700946 .ovp = 2,
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530947 .num_strings = 3,
Courtney Cavin93c64f12015-03-12 08:47:08 -0700948 .switch_freq = 5,
Courtney Cavin93c64f12015-03-12 08:47:08 -0700949 .cs_out_en = false,
950 .ext_gen = false,
Kiran Gunda775d2ff2019-11-01 11:57:01 +0530951 .cabc = false,
952 .enabled_strings = {0, 1, 2, 3},
Courtney Cavin93c64f12015-03-12 08:47:08 -0700953};
954
Kiran Gunda03b2b5e2019-11-01 11:57:02 +0530955static int wled4_setup(struct wled *wled)
956{
957 int rc, temp, i, j;
958 u16 addr;
959 u8 sink_en = 0;
Kiran Gundafeeab872019-11-01 11:57:03 +0530960 u32 sink_cfg;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +0530961
962 rc = regmap_update_bits(wled->regmap,
963 wled->ctrl_addr + WLED3_CTRL_REG_OVP,
964 WLED3_CTRL_REG_OVP_MASK, wled->cfg.ovp);
965 if (rc < 0)
966 return rc;
967
968 rc = regmap_update_bits(wled->regmap,
969 wled->ctrl_addr + WLED3_CTRL_REG_ILIMIT,
970 WLED3_CTRL_REG_ILIMIT_MASK,
971 wled->cfg.boost_i_limit);
972 if (rc < 0)
973 return rc;
974
975 rc = regmap_update_bits(wled->regmap,
976 wled->ctrl_addr + WLED3_CTRL_REG_FREQ,
977 WLED3_CTRL_REG_FREQ_MASK,
978 wled->cfg.switch_freq);
979 if (rc < 0)
980 return rc;
981
Kiran Gundafeeab872019-11-01 11:57:03 +0530982 if (wled->cfg.external_pfet) {
983 /* Unlock the secure register access */
984 rc = regmap_write(wled->regmap, wled->ctrl_addr +
985 WLED4_CTRL_REG_SEC_ACCESS,
986 WLED4_CTRL_REG_SEC_UNLOCK);
987 if (rc < 0)
988 return rc;
989
990 rc = regmap_write(wled->regmap,
991 wled->ctrl_addr + WLED4_CTRL_REG_TEST1,
992 WLED4_CTRL_REG_TEST1_EXT_FET_DTEST2);
993 if (rc < 0)
994 return rc;
995 }
996
Kiran Gunda03b2b5e2019-11-01 11:57:02 +0530997 rc = regmap_read(wled->regmap, wled->sink_addr +
998 WLED4_SINK_REG_CURR_SINK, &sink_cfg);
999 if (rc < 0)
1000 return rc;
1001
1002 for (i = 0; i < wled->cfg.num_strings; i++) {
1003 j = wled->cfg.enabled_strings[i];
1004 temp = j + WLED4_SINK_REG_CURR_SINK_SHFT;
1005 sink_en |= 1 << temp;
1006 }
1007
Kiran Gunda8663c182019-11-01 11:57:04 +05301008 if (sink_cfg == sink_en) {
1009 rc = wled_auto_detection_at_init(wled);
1010 return rc;
1011 }
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301012
1013 rc = regmap_update_bits(wled->regmap,
1014 wled->sink_addr + WLED4_SINK_REG_CURR_SINK,
1015 WLED4_SINK_REG_CURR_SINK_MASK, 0);
1016 if (rc < 0)
1017 return rc;
1018
1019 rc = regmap_update_bits(wled->regmap, wled->ctrl_addr +
1020 WLED3_CTRL_REG_MOD_EN,
1021 WLED3_CTRL_REG_MOD_EN_MASK, 0);
1022 if (rc < 0)
1023 return rc;
1024
1025 /* Per sink/string configuration */
1026 for (i = 0; i < wled->cfg.num_strings; i++) {
1027 j = wled->cfg.enabled_strings[i];
1028
1029 addr = wled->sink_addr +
1030 WLED4_SINK_REG_STR_MOD_EN(j);
1031 rc = regmap_update_bits(wled->regmap, addr,
1032 WLED4_SINK_REG_STR_MOD_MASK,
1033 WLED4_SINK_REG_STR_MOD_MASK);
1034 if (rc < 0)
1035 return rc;
1036
1037 addr = wled->sink_addr +
1038 WLED4_SINK_REG_STR_FULL_SCALE_CURR(j);
1039 rc = regmap_update_bits(wled->regmap, addr,
1040 WLED4_SINK_REG_STR_FULL_SCALE_CURR_MASK,
1041 wled->cfg.string_i_limit);
1042 if (rc < 0)
1043 return rc;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301044 }
1045
Kiran Gundaf16899a2020-04-23 21:03:35 +05301046 rc = wled4_cabc_config(wled, wled->cfg.cabc);
1047 if (rc < 0)
1048 return rc;
1049
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301050 rc = regmap_update_bits(wled->regmap, wled->ctrl_addr +
1051 WLED3_CTRL_REG_MOD_EN,
1052 WLED3_CTRL_REG_MOD_EN_MASK,
1053 WLED3_CTRL_REG_MOD_EN_MASK);
1054 if (rc < 0)
1055 return rc;
1056
1057 rc = regmap_update_bits(wled->regmap,
1058 wled->sink_addr + WLED4_SINK_REG_CURR_SINK,
1059 WLED4_SINK_REG_CURR_SINK_MASK, sink_en);
1060 if (rc < 0)
1061 return rc;
1062
Kiran Gundaf16899a2020-04-23 21:03:35 +05301063 rc = wled->wled_sync_toggle(wled);
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301064 if (rc < 0) {
1065 dev_err(wled->dev, "Failed to toggle sync reg rc:%d\n", rc);
1066 return rc;
1067 }
1068
Kiran Gunda8663c182019-11-01 11:57:04 +05301069 rc = wled_auto_detection_at_init(wled);
1070
1071 return rc;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301072}
1073
1074static const struct wled_config wled4_config_defaults = {
1075 .boost_i_limit = 4,
1076 .string_i_limit = 10,
1077 .ovp = 1,
1078 .num_strings = 4,
1079 .switch_freq = 11,
1080 .cabc = false,
Kiran Gundafeeab872019-11-01 11:57:03 +05301081 .external_pfet = false,
Kiran Gunda8663c182019-11-01 11:57:04 +05301082 .auto_detection_enabled = false,
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301083};
1084
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301085static int wled5_setup(struct wled *wled)
1086{
1087 int rc, temp, i, j, offset;
1088 u8 sink_en = 0;
1089 u16 addr;
1090 u32 val;
1091
1092 rc = regmap_update_bits(wled->regmap,
1093 wled->ctrl_addr + WLED3_CTRL_REG_OVP,
1094 WLED5_CTRL_REG_OVP_MASK, wled->cfg.ovp);
1095 if (rc < 0)
1096 return rc;
1097
1098 rc = regmap_update_bits(wled->regmap,
1099 wled->ctrl_addr + WLED3_CTRL_REG_ILIMIT,
1100 WLED3_CTRL_REG_ILIMIT_MASK,
1101 wled->cfg.boost_i_limit);
1102 if (rc < 0)
1103 return rc;
1104
1105 rc = regmap_update_bits(wled->regmap,
1106 wled->ctrl_addr + WLED3_CTRL_REG_FREQ,
1107 WLED3_CTRL_REG_FREQ_MASK,
1108 wled->cfg.switch_freq);
1109 if (rc < 0)
1110 return rc;
1111
1112 /* Per sink/string configuration */
1113 for (i = 0; i < wled->cfg.num_strings; ++i) {
1114 j = wled->cfg.enabled_strings[i];
1115 addr = wled->sink_addr +
1116 WLED4_SINK_REG_STR_FULL_SCALE_CURR(j);
1117 rc = regmap_update_bits(wled->regmap, addr,
1118 WLED4_SINK_REG_STR_FULL_SCALE_CURR_MASK,
1119 wled->cfg.string_i_limit);
1120 if (rc < 0)
1121 return rc;
1122
1123 addr = wled->sink_addr + WLED5_SINK_REG_STR_SRC_SEL(j);
1124 rc = regmap_update_bits(wled->regmap, addr,
1125 WLED5_SINK_REG_SRC_SEL_MASK,
1126 wled->cfg.mod_sel == MOD_A ?
1127 WLED5_SINK_REG_SRC_SEL_MOD_A :
1128 WLED5_SINK_REG_SRC_SEL_MOD_B);
1129
1130 temp = j + WLED4_SINK_REG_CURR_SINK_SHFT;
1131 sink_en |= 1 << temp;
1132 }
1133
1134 rc = wled5_cabc_config(wled, wled->cfg.cabc_sel ? true : false);
1135 if (rc < 0)
1136 return rc;
1137
1138 /* Enable one of the modulators A or B based on mod_sel */
1139 addr = wled->sink_addr + WLED5_SINK_REG_MOD_A_EN;
1140 val = (wled->cfg.mod_sel == MOD_A) ? WLED5_SINK_REG_MOD_EN_MASK : 0;
1141 rc = regmap_update_bits(wled->regmap, addr,
1142 WLED5_SINK_REG_MOD_EN_MASK, val);
1143 if (rc < 0)
1144 return rc;
1145
1146 addr = wled->sink_addr + WLED5_SINK_REG_MOD_B_EN;
1147 val = (wled->cfg.mod_sel == MOD_B) ? WLED5_SINK_REG_MOD_EN_MASK : 0;
1148 rc = regmap_update_bits(wled->regmap, addr,
1149 WLED5_SINK_REG_MOD_EN_MASK, val);
1150 if (rc < 0)
1151 return rc;
1152
1153 offset = (wled->cfg.mod_sel == MOD_A) ?
1154 WLED5_SINK_REG_MOD_A_BRIGHTNESS_WIDTH_SEL :
1155 WLED5_SINK_REG_MOD_B_BRIGHTNESS_WIDTH_SEL;
1156
1157 addr = wled->sink_addr + offset;
1158 val = (wled->max_brightness == WLED5_SINK_REG_BRIGHT_MAX_15B) ?
1159 WLED5_SINK_REG_BRIGHTNESS_WIDTH_15B :
1160 WLED5_SINK_REG_BRIGHTNESS_WIDTH_12B;
1161 rc = regmap_write(wled->regmap, addr, val);
1162 if (rc < 0)
1163 return rc;
1164
1165 rc = regmap_update_bits(wled->regmap,
1166 wled->sink_addr + WLED4_SINK_REG_CURR_SINK,
1167 WLED4_SINK_REG_CURR_SINK_MASK, sink_en);
1168 if (rc < 0)
1169 return rc;
1170
1171 /* This updates only FSC configuration in WLED5 */
1172 rc = wled->wled_sync_toggle(wled);
1173 if (rc < 0) {
1174 pr_err("Failed to toggle sync reg rc:%d\n", rc);
1175 return rc;
1176 }
1177
1178 rc = wled_auto_detection_at_init(wled);
1179 if (rc < 0)
1180 return rc;
1181
1182 return 0;
1183}
1184
1185static const struct wled_config wled5_config_defaults = {
1186 .boost_i_limit = 5,
1187 .string_i_limit = 10,
1188 .ovp = 4,
1189 .num_strings = 4,
1190 .switch_freq = 11,
1191 .mod_sel = 0,
1192 .cabc_sel = 0,
1193 .cabc = false,
1194 .external_pfet = false,
1195 .auto_detection_enabled = false,
1196};
1197
Kiran Gundabb800a32019-11-01 11:57:00 +05301198static const u32 wled3_boost_i_limit_values[] = {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001199 105, 385, 525, 805, 980, 1260, 1400, 1680,
1200};
1201
Kiran Gundabb800a32019-11-01 11:57:00 +05301202static const struct wled_var_cfg wled3_boost_i_limit_cfg = {
1203 .values = wled3_boost_i_limit_values,
1204 .size = ARRAY_SIZE(wled3_boost_i_limit_values),
Courtney Cavin93c64f12015-03-12 08:47:08 -07001205};
1206
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301207static const u32 wled4_boost_i_limit_values[] = {
1208 105, 280, 450, 620, 970, 1150, 1300, 1500,
1209};
1210
1211static const struct wled_var_cfg wled4_boost_i_limit_cfg = {
1212 .values = wled4_boost_i_limit_values,
1213 .size = ARRAY_SIZE(wled4_boost_i_limit_values),
1214};
1215
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301216static inline u32 wled5_boost_i_limit_values_fn(u32 idx)
1217{
1218 return 525 + (idx * 175);
1219}
1220
1221static const struct wled_var_cfg wled5_boost_i_limit_cfg = {
1222 .fn = wled5_boost_i_limit_values_fn,
1223 .size = 8,
1224};
1225
Kiran Gundabb800a32019-11-01 11:57:00 +05301226static const u32 wled3_ovp_values[] = {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001227 35, 32, 29, 27,
1228};
1229
Kiran Gundabb800a32019-11-01 11:57:00 +05301230static const struct wled_var_cfg wled3_ovp_cfg = {
1231 .values = wled3_ovp_values,
1232 .size = ARRAY_SIZE(wled3_ovp_values),
Courtney Cavin93c64f12015-03-12 08:47:08 -07001233};
1234
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301235static const u32 wled4_ovp_values[] = {
1236 31100, 29600, 19600, 18100,
1237};
1238
1239static const struct wled_var_cfg wled4_ovp_cfg = {
1240 .values = wled4_ovp_values,
1241 .size = ARRAY_SIZE(wled4_ovp_values),
1242};
1243
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301244static inline u32 wled5_ovp_values_fn(u32 idx)
1245{
1246 /*
1247 * 0000 - 38.5 V
1248 * 0001 - 37 V ..
1249 * 1111 - 16 V
1250 */
1251 return 38500 - (idx * 1500);
1252}
1253
1254static const struct wled_var_cfg wled5_ovp_cfg = {
1255 .fn = wled5_ovp_values_fn,
1256 .size = 16,
1257};
1258
Kiran Gundabb800a32019-11-01 11:57:00 +05301259static u32 wled3_num_strings_values_fn(u32 idx)
Courtney Cavin93c64f12015-03-12 08:47:08 -07001260{
1261 return idx + 1;
1262}
1263
Kiran Gundabb800a32019-11-01 11:57:00 +05301264static const struct wled_var_cfg wled3_num_strings_cfg = {
1265 .fn = wled3_num_strings_values_fn,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001266 .size = 3,
1267};
1268
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301269static const struct wled_var_cfg wled4_num_strings_cfg = {
1270 .fn = wled3_num_strings_values_fn,
1271 .size = 4,
1272};
1273
Kiran Gundabb800a32019-11-01 11:57:00 +05301274static u32 wled3_switch_freq_values_fn(u32 idx)
Courtney Cavin93c64f12015-03-12 08:47:08 -07001275{
1276 return 19200 / (2 * (1 + idx));
1277}
1278
Kiran Gundabb800a32019-11-01 11:57:00 +05301279static const struct wled_var_cfg wled3_switch_freq_cfg = {
1280 .fn = wled3_switch_freq_values_fn,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001281 .size = 16,
1282};
1283
Kiran Gundabb800a32019-11-01 11:57:00 +05301284static const struct wled_var_cfg wled3_string_i_limit_cfg = {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001285 .size = 26,
1286};
1287
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301288static const u32 wled4_string_i_limit_values[] = {
1289 0, 2500, 5000, 7500, 10000, 12500, 15000, 17500, 20000,
1290 22500, 25000, 27500, 30000,
1291};
1292
1293static const struct wled_var_cfg wled4_string_i_limit_cfg = {
1294 .values = wled4_string_i_limit_values,
1295 .size = ARRAY_SIZE(wled4_string_i_limit_values),
1296};
1297
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301298static const struct wled_var_cfg wled5_mod_sel_cfg = {
1299 .size = 2,
1300};
1301
1302static const struct wled_var_cfg wled5_cabc_sel_cfg = {
1303 .size = 4,
1304};
1305
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301306static u32 wled_values(const struct wled_var_cfg *cfg, u32 idx)
Courtney Cavin93c64f12015-03-12 08:47:08 -07001307{
1308 if (idx >= cfg->size)
1309 return UINT_MAX;
1310 if (cfg->fn)
1311 return cfg->fn(idx);
1312 if (cfg->values)
1313 return cfg->values[idx];
1314 return idx;
1315}
1316
Kiran Gundaf16899a2020-04-23 21:03:35 +05301317static int wled_configure(struct wled *wled)
Courtney Cavin93c64f12015-03-12 08:47:08 -07001318{
Kiran Gundabb800a32019-11-01 11:57:00 +05301319 struct wled_config *cfg = &wled->cfg;
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301320 struct device *dev = wled->dev;
1321 const __be32 *prop_addr;
Chen Zhou7af43a72020-01-22 09:32:40 +08001322 u32 size, val, c;
1323 int rc, i, j, string_len;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001324
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301325 const struct wled_u32_opts *u32_opts = NULL;
1326 const struct wled_u32_opts wled3_opts[] = {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001327 {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301328 .name = "qcom,current-boost-limit",
1329 .val_ptr = &cfg->boost_i_limit,
Kiran Gundabb800a32019-11-01 11:57:00 +05301330 .cfg = &wled3_boost_i_limit_cfg,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001331 },
1332 {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301333 .name = "qcom,current-limit",
1334 .val_ptr = &cfg->string_i_limit,
Kiran Gundabb800a32019-11-01 11:57:00 +05301335 .cfg = &wled3_string_i_limit_cfg,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001336 },
1337 {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301338 .name = "qcom,ovp",
1339 .val_ptr = &cfg->ovp,
Kiran Gundabb800a32019-11-01 11:57:00 +05301340 .cfg = &wled3_ovp_cfg,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001341 },
1342 {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301343 .name = "qcom,switching-freq",
1344 .val_ptr = &cfg->switch_freq,
Kiran Gundabb800a32019-11-01 11:57:00 +05301345 .cfg = &wled3_switch_freq_cfg,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001346 },
1347 {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301348 .name = "qcom,num-strings",
1349 .val_ptr = &cfg->num_strings,
Kiran Gundabb800a32019-11-01 11:57:00 +05301350 .cfg = &wled3_num_strings_cfg,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001351 },
1352 };
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301353
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301354 const struct wled_u32_opts wled4_opts[] = {
1355 {
1356 .name = "qcom,current-boost-limit",
1357 .val_ptr = &cfg->boost_i_limit,
1358 .cfg = &wled4_boost_i_limit_cfg,
1359 },
1360 {
1361 .name = "qcom,current-limit-microamp",
1362 .val_ptr = &cfg->string_i_limit,
1363 .cfg = &wled4_string_i_limit_cfg,
1364 },
1365 {
1366 .name = "qcom,ovp-millivolt",
1367 .val_ptr = &cfg->ovp,
1368 .cfg = &wled4_ovp_cfg,
1369 },
1370 {
1371 .name = "qcom,switching-freq",
1372 .val_ptr = &cfg->switch_freq,
1373 .cfg = &wled3_switch_freq_cfg,
1374 },
1375 {
1376 .name = "qcom,num-strings",
1377 .val_ptr = &cfg->num_strings,
1378 .cfg = &wled4_num_strings_cfg,
1379 },
1380 };
1381
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301382 const struct wled_u32_opts wled5_opts[] = {
1383 {
1384 .name = "qcom,current-boost-limit",
1385 .val_ptr = &cfg->boost_i_limit,
1386 .cfg = &wled5_boost_i_limit_cfg,
1387 },
1388 {
1389 .name = "qcom,current-limit-microamp",
1390 .val_ptr = &cfg->string_i_limit,
1391 .cfg = &wled4_string_i_limit_cfg,
1392 },
1393 {
1394 .name = "qcom,ovp-millivolt",
1395 .val_ptr = &cfg->ovp,
1396 .cfg = &wled5_ovp_cfg,
1397 },
1398 {
1399 .name = "qcom,switching-freq",
1400 .val_ptr = &cfg->switch_freq,
1401 .cfg = &wled3_switch_freq_cfg,
1402 },
1403 {
1404 .name = "qcom,num-strings",
1405 .val_ptr = &cfg->num_strings,
1406 .cfg = &wled4_num_strings_cfg,
1407 },
1408 {
1409 .name = "qcom,modulator-sel",
1410 .val_ptr = &cfg->mod_sel,
1411 .cfg = &wled5_mod_sel_cfg,
1412 },
1413 {
1414 .name = "qcom,cabc-sel",
1415 .val_ptr = &cfg->cabc_sel,
1416 .cfg = &wled5_cabc_sel_cfg,
1417 },
1418 };
1419
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301420 const struct wled_bool_opts bool_opts[] = {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001421 { "qcom,cs-out", &cfg->cs_out_en, },
1422 { "qcom,ext-gen", &cfg->ext_gen, },
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301423 { "qcom,cabc", &cfg->cabc, },
Kiran Gundafeeab872019-11-01 11:57:03 +05301424 { "qcom,external-pfet", &cfg->external_pfet, },
Kiran Gunda8663c182019-11-01 11:57:04 +05301425 { "qcom,auto-string-detection", &cfg->auto_detection_enabled, },
Courtney Cavin93c64f12015-03-12 08:47:08 -07001426 };
1427
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301428 prop_addr = of_get_address(dev->of_node, 0, NULL, NULL);
1429 if (!prop_addr) {
1430 dev_err(wled->dev, "invalid IO resources\n");
1431 return -EINVAL;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001432 }
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301433 wled->ctrl_addr = be32_to_cpu(*prop_addr);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001434
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07001435 rc = of_property_read_string(dev->of_node, "label", &wled->name);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001436 if (rc)
Rob Herringf86b7752018-08-27 20:03:42 -05001437 wled->name = devm_kasprintf(dev, GFP_KERNEL, "%pOFn", dev->of_node);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001438
Kiran Gundaf16899a2020-04-23 21:03:35 +05301439 switch (wled->version) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301440 case 3:
1441 u32_opts = wled3_opts;
1442 size = ARRAY_SIZE(wled3_opts);
1443 *cfg = wled3_config_defaults;
1444 wled->wled_set_brightness = wled3_set_brightness;
Kiran Gundaf16899a2020-04-23 21:03:35 +05301445 wled->wled_sync_toggle = wled3_sync_toggle;
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301446 wled->max_string_count = 3;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301447 wled->sink_addr = wled->ctrl_addr;
1448 break;
1449
1450 case 4:
1451 u32_opts = wled4_opts;
1452 size = ARRAY_SIZE(wled4_opts);
1453 *cfg = wled4_config_defaults;
1454 wled->wled_set_brightness = wled4_set_brightness;
Kiran Gundaf16899a2020-04-23 21:03:35 +05301455 wled->wled_sync_toggle = wled3_sync_toggle;
1456 wled->wled_cabc_config = wled4_cabc_config;
1457 wled->wled_ovp_delay = wled4_ovp_delay;
1458 wled->wled_auto_detection_required =
1459 wled4_auto_detection_required;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301460 wled->max_string_count = 4;
1461
1462 prop_addr = of_get_address(dev->of_node, 1, NULL, NULL);
1463 if (!prop_addr) {
1464 dev_err(wled->dev, "invalid IO resources\n");
1465 return -EINVAL;
1466 }
1467 wled->sink_addr = be32_to_cpu(*prop_addr);
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301468 break;
1469
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301470 case 5:
1471 u32_opts = wled5_opts;
1472 size = ARRAY_SIZE(wled5_opts);
1473 *cfg = wled5_config_defaults;
1474 wled->wled_set_brightness = wled5_set_brightness;
Kiran Gunda4d6e9cd2021-03-18 18:09:39 +05301475 wled->wled_sync_toggle = wled3_sync_toggle;
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301476 wled->wled_cabc_config = wled5_cabc_config;
1477 wled->wled_ovp_delay = wled5_ovp_delay;
1478 wled->wled_auto_detection_required =
1479 wled5_auto_detection_required;
1480 wled->max_string_count = 4;
1481
1482 prop_addr = of_get_address(dev->of_node, 1, NULL, NULL);
1483 if (!prop_addr) {
1484 dev_err(wled->dev, "invalid IO resources\n");
1485 return -EINVAL;
1486 }
1487 wled->sink_addr = be32_to_cpu(*prop_addr);
1488 break;
1489
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301490 default:
1491 dev_err(wled->dev, "Invalid WLED version\n");
1492 return -EINVAL;
1493 }
1494
1495 for (i = 0; i < size; ++i) {
Courtney Cavin93c64f12015-03-12 08:47:08 -07001496 rc = of_property_read_u32(dev->of_node, u32_opts[i].name, &val);
1497 if (rc == -EINVAL) {
1498 continue;
1499 } else if (rc) {
1500 dev_err(dev, "error reading '%s'\n", u32_opts[i].name);
1501 return rc;
1502 }
1503
1504 c = UINT_MAX;
1505 for (j = 0; c != val; j++) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301506 c = wled_values(u32_opts[i].cfg, j);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001507 if (c == UINT_MAX) {
1508 dev_err(dev, "invalid value for '%s'\n",
1509 u32_opts[i].name);
1510 return -EINVAL;
1511 }
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301512
1513 if (c == val)
1514 break;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001515 }
1516
1517 dev_dbg(dev, "'%s' = %u\n", u32_opts[i].name, c);
1518 *u32_opts[i].val_ptr = j;
1519 }
1520
1521 for (i = 0; i < ARRAY_SIZE(bool_opts); ++i) {
1522 if (of_property_read_bool(dev->of_node, bool_opts[i].name))
1523 *bool_opts[i].val_ptr = true;
1524 }
1525
1526 cfg->num_strings = cfg->num_strings + 1;
1527
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301528 string_len = of_property_count_elems_of_size(dev->of_node,
1529 "qcom,enabled-strings",
1530 sizeof(u32));
1531 if (string_len > 0)
1532 of_property_read_u32_array(dev->of_node,
1533 "qcom,enabled-strings",
1534 wled->cfg.enabled_strings,
1535 sizeof(u32));
1536
Courtney Cavin93c64f12015-03-12 08:47:08 -07001537 return 0;
1538}
1539
Kiran Gundafeeab872019-11-01 11:57:03 +05301540static int wled_configure_short_irq(struct wled *wled,
1541 struct platform_device *pdev)
1542{
1543 int rc;
1544
1545 if (!wled->has_short_detect)
1546 return 0;
1547
1548 rc = regmap_update_bits(wled->regmap, wled->ctrl_addr +
1549 WLED4_CTRL_REG_SHORT_PROTECT,
1550 WLED4_CTRL_REG_SHORT_EN_MASK,
1551 WLED4_CTRL_REG_SHORT_EN_MASK);
1552 if (rc < 0)
1553 return rc;
1554
1555 wled->short_irq = platform_get_irq_byname(pdev, "short");
1556 if (wled->short_irq < 0) {
1557 dev_dbg(&pdev->dev, "short irq is not used\n");
1558 return 0;
1559 }
1560
1561 rc = devm_request_threaded_irq(wled->dev, wled->short_irq,
1562 NULL, wled_short_irq_handler,
1563 IRQF_ONESHOT,
1564 "wled_short_irq", wled);
1565 if (rc < 0)
1566 dev_err(wled->dev, "Unable to request short_irq (err:%d)\n",
1567 rc);
1568
1569 return rc;
1570}
1571
Kiran Gunda8663c182019-11-01 11:57:04 +05301572static int wled_configure_ovp_irq(struct wled *wled,
1573 struct platform_device *pdev)
1574{
1575 int rc;
1576 u32 val;
1577
1578 wled->ovp_irq = platform_get_irq_byname(pdev, "ovp");
1579 if (wled->ovp_irq < 0) {
1580 dev_dbg(&pdev->dev, "OVP IRQ not found - disabling automatic string detection\n");
1581 return 0;
1582 }
1583
1584 rc = devm_request_threaded_irq(wled->dev, wled->ovp_irq, NULL,
1585 wled_ovp_irq_handler, IRQF_ONESHOT,
1586 "wled_ovp_irq", wled);
1587 if (rc < 0) {
1588 dev_err(wled->dev, "Unable to request ovp_irq (err:%d)\n",
1589 rc);
1590 wled->ovp_irq = 0;
1591 return 0;
1592 }
1593
1594 rc = regmap_read(wled->regmap, wled->ctrl_addr +
1595 WLED3_CTRL_REG_MOD_EN, &val);
1596 if (rc < 0)
1597 return rc;
1598
1599 /* Keep OVP irq disabled until module is enabled */
1600 if (!(val & WLED3_CTRL_REG_MOD_EN_MASK))
1601 disable_irq(wled->ovp_irq);
1602
1603 return 0;
1604}
1605
Kiran Gundabb800a32019-11-01 11:57:00 +05301606static const struct backlight_ops wled_ops = {
1607 .update_status = wled_update_status,
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07001608};
1609
Kiran Gundabb800a32019-11-01 11:57:00 +05301610static int wled_probe(struct platform_device *pdev)
Courtney Cavin93c64f12015-03-12 08:47:08 -07001611{
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07001612 struct backlight_properties props;
1613 struct backlight_device *bl;
Kiran Gundabb800a32019-11-01 11:57:00 +05301614 struct wled *wled;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001615 struct regmap *regmap;
Bjorn Andersson9d6c2432015-10-26 10:45:08 -07001616 u32 val;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001617 int rc;
1618
1619 regmap = dev_get_regmap(pdev->dev.parent, NULL);
1620 if (!regmap) {
1621 dev_err(&pdev->dev, "Unable to get regmap\n");
1622 return -EINVAL;
1623 }
1624
1625 wled = devm_kzalloc(&pdev->dev, sizeof(*wled), GFP_KERNEL);
1626 if (!wled)
1627 return -ENOMEM;
1628
1629 wled->regmap = regmap;
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301630 wled->dev = &pdev->dev;
Courtney Cavin93c64f12015-03-12 08:47:08 -07001631
Kiran Gundaf16899a2020-04-23 21:03:35 +05301632 wled->version = (uintptr_t)of_device_get_match_data(&pdev->dev);
1633 if (!wled->version) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301634 dev_err(&pdev->dev, "Unknown device version\n");
1635 return -ENODEV;
1636 }
1637
Kiran Gundafeeab872019-11-01 11:57:03 +05301638 mutex_init(&wled->lock);
Kiran Gundaf16899a2020-04-23 21:03:35 +05301639 rc = wled_configure(wled);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001640 if (rc)
1641 return rc;
1642
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301643 val = WLED3_SINK_REG_BRIGHT_MAX;
1644 of_property_read_u32(pdev->dev.of_node, "max-brightness", &val);
1645 wled->max_brightness = val;
1646
Kiran Gundaf16899a2020-04-23 21:03:35 +05301647 switch (wled->version) {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301648 case 3:
Kiran Gunda8663c182019-11-01 11:57:04 +05301649 wled->cfg.auto_detection_enabled = false;
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301650 rc = wled3_setup(wled);
1651 if (rc) {
1652 dev_err(&pdev->dev, "wled3_setup failed\n");
1653 return rc;
1654 }
1655 break;
1656
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301657 case 4:
Kiran Gundafeeab872019-11-01 11:57:03 +05301658 wled->has_short_detect = true;
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301659 rc = wled4_setup(wled);
1660 if (rc) {
1661 dev_err(&pdev->dev, "wled4_setup failed\n");
1662 return rc;
1663 }
1664 break;
1665
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301666 case 5:
1667 wled->has_short_detect = true;
1668 if (wled->cfg.cabc_sel)
1669 wled->max_brightness = WLED5_SINK_REG_BRIGHT_MAX_12B;
1670
1671 rc = wled5_setup(wled);
1672 if (rc) {
1673 dev_err(&pdev->dev, "wled5_setup failed\n");
1674 return rc;
1675 }
1676 break;
1677
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301678 default:
1679 dev_err(wled->dev, "Invalid WLED version\n");
1680 break;
1681 }
Courtney Cavin93c64f12015-03-12 08:47:08 -07001682
Kiran Gunda8663c182019-11-01 11:57:04 +05301683 INIT_DELAYED_WORK(&wled->ovp_work, wled_ovp_work);
1684
Kiran Gundafeeab872019-11-01 11:57:03 +05301685 rc = wled_configure_short_irq(wled, pdev);
1686 if (rc < 0)
1687 return rc;
1688
Kiran Gunda8663c182019-11-01 11:57:04 +05301689 rc = wled_configure_ovp_irq(wled, pdev);
1690 if (rc < 0)
1691 return rc;
1692
Kiran Gundabb800a32019-11-01 11:57:00 +05301693 val = WLED_DEFAULT_BRIGHTNESS;
Bjorn Andersson9d6c2432015-10-26 10:45:08 -07001694 of_property_read_u32(pdev->dev.of_node, "default-brightness", &val);
1695
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07001696 memset(&props, 0, sizeof(struct backlight_properties));
1697 props.type = BACKLIGHT_RAW;
Bjorn Andersson9d6c2432015-10-26 10:45:08 -07001698 props.brightness = val;
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301699 props.max_brightness = wled->max_brightness;
Bjorn Andersson7ddbc242015-07-21 17:44:49 -07001700 bl = devm_backlight_device_register(&pdev->dev, wled->name,
1701 &pdev->dev, wled,
Kiran Gundabb800a32019-11-01 11:57:00 +05301702 &wled_ops, &props);
kbuild test robotfc181112015-10-27 02:26:11 +08001703 return PTR_ERR_OR_ZERO(bl);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001704};
1705
Kiran Gundafeeab872019-11-01 11:57:03 +05301706static int wled_remove(struct platform_device *pdev)
1707{
Julia Lawall0b5e0f42021-02-09 22:13:25 +01001708 struct wled *wled = platform_get_drvdata(pdev);
Kiran Gundafeeab872019-11-01 11:57:03 +05301709
1710 mutex_destroy(&wled->lock);
Kiran Gunda8663c182019-11-01 11:57:04 +05301711 cancel_delayed_work_sync(&wled->ovp_work);
Kiran Gundafeeab872019-11-01 11:57:03 +05301712 disable_irq(wled->short_irq);
Kiran Gunda8663c182019-11-01 11:57:04 +05301713 disable_irq(wled->ovp_irq);
Kiran Gundafeeab872019-11-01 11:57:03 +05301714
1715 return 0;
1716}
1717
Kiran Gundabb800a32019-11-01 11:57:00 +05301718static const struct of_device_id wled_match_table[] = {
Kiran Gunda775d2ff2019-11-01 11:57:01 +05301719 { .compatible = "qcom,pm8941-wled", .data = (void *)3 },
Konrad Dybcio6fc632d2021-02-28 13:41:05 +01001720 { .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
Kiran Gunda03b2b5e2019-11-01 11:57:02 +05301721 { .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
1722 { .compatible = "qcom,pm660l-wled", .data = (void *)4 },
Subbaraman Narayanamurthy62a1d3f2020-04-23 21:03:37 +05301723 { .compatible = "qcom,pm8150l-wled", .data = (void *)5 },
Courtney Cavin93c64f12015-03-12 08:47:08 -07001724 {}
1725};
Kiran Gundabb800a32019-11-01 11:57:00 +05301726MODULE_DEVICE_TABLE(of, wled_match_table);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001727
Kiran Gundabb800a32019-11-01 11:57:00 +05301728static struct platform_driver wled_driver = {
1729 .probe = wled_probe,
Kiran Gundafeeab872019-11-01 11:57:03 +05301730 .remove = wled_remove,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001731 .driver = {
Kiran Gundabb800a32019-11-01 11:57:00 +05301732 .name = "qcom,wled",
1733 .of_match_table = wled_match_table,
Courtney Cavin93c64f12015-03-12 08:47:08 -07001734 },
1735};
1736
Kiran Gundabb800a32019-11-01 11:57:00 +05301737module_platform_driver(wled_driver);
Courtney Cavin93c64f12015-03-12 08:47:08 -07001738
Kiran Gundabb800a32019-11-01 11:57:00 +05301739MODULE_DESCRIPTION("Qualcomm WLED driver");
Courtney Cavin93c64f12015-03-12 08:47:08 -07001740MODULE_LICENSE("GPL v2");