Merge tag 'v3.10.94' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / leds / leds-lp5523.c
CommitLineData
0efba16c
SO
1/*
2 * lp5523.c - LP5523 LED Driver
3 *
4 * Copyright (C) 2010 Nokia Corporation
a2387cb9 5 * Copyright (C) 2012 Texas Instruments
0efba16c
SO
6 *
7 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
a2387cb9 8 * Milo(Woogyom) Kim <milo.kim@ti.com>
0efba16c
SO
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * 02110-1301 USA
23 */
24
0efba16c 25#include <linux/delay.h>
79bcc10b
MWK
26#include <linux/firmware.h>
27#include <linux/i2c.h>
28#include <linux/init.h>
0efba16c 29#include <linux/leds.h>
79bcc10b
MWK
30#include <linux/module.h>
31#include <linux/mutex.h>
6a0c9a47 32#include <linux/platform_data/leds-lp55xx.h>
79bcc10b 33#include <linux/slab.h>
6a0c9a47
MWK
34
35#include "leds-lp55xx-common.h"
0efba16c 36
12f022d2
MWK
37#define LP5523_PROGRAM_LENGTH 32
38#define LP5523_MAX_LEDS 9
39
40/* Registers */
0efba16c
SO
41#define LP5523_REG_ENABLE 0x00
42#define LP5523_REG_OP_MODE 0x01
0efba16c
SO
43#define LP5523_REG_ENABLE_LEDS_MSB 0x04
44#define LP5523_REG_ENABLE_LEDS_LSB 0x05
0efba16c
SO
45#define LP5523_REG_LED_PWM_BASE 0x16
46#define LP5523_REG_LED_CURRENT_BASE 0x26
47#define LP5523_REG_CONFIG 0x36
12f022d2
MWK
48#define LP5523_REG_STATUS 0x3A
49#define LP5523_REG_RESET 0x3D
0efba16c
SO
50#define LP5523_REG_LED_TEST_CTRL 0x41
51#define LP5523_REG_LED_TEST_ADC 0x42
12f022d2 52#define LP5523_REG_PROG_PAGE_SEL 0x4F
0efba16c
SO
53#define LP5523_REG_PROG_MEM 0x50
54
12f022d2 55/* Bit description in registers */
0efba16c
SO
56#define LP5523_ENABLE 0x40
57#define LP5523_AUTO_INC 0x40
58#define LP5523_PWR_SAVE 0x20
59#define LP5523_PWM_PWR_SAVE 0x04
0efba16c 60#define LP5523_CP_AUTO 0x18
0efba16c 61#define LP5523_AUTO_CLK 0x02
12f022d2 62
0efba16c
SO
63#define LP5523_EN_LEDTEST 0x80
64#define LP5523_LEDTEST_DONE 0x80
48068d5d 65#define LP5523_RESET 0xFF
0efba16c 66#define LP5523_ADC_SHORTCIRC_LIM 80
0efba16c
SO
67#define LP5523_EXT_CLK_USED 0x08
68
db6eaf83
MWK
69/* Memory Page Selection */
70#define LP5523_PAGE_ENG1 0
71#define LP5523_PAGE_ENG2 1
72#define LP5523_PAGE_ENG3 2
73
74/* Program Memory Operations */
75#define LP5523_MODE_ENG1_M 0x30 /* Operation Mode Register */
76#define LP5523_MODE_ENG2_M 0x0C
77#define LP5523_MODE_ENG3_M 0x03
78#define LP5523_LOAD_ENG1 0x10
79#define LP5523_LOAD_ENG2 0x04
80#define LP5523_LOAD_ENG3 0x01
81
82#define LP5523_ENG1_IS_LOADING(mode) \
83 ((mode & LP5523_MODE_ENG1_M) == LP5523_LOAD_ENG1)
84#define LP5523_ENG2_IS_LOADING(mode) \
85 ((mode & LP5523_MODE_ENG2_M) == LP5523_LOAD_ENG2)
86#define LP5523_ENG3_IS_LOADING(mode) \
87 ((mode & LP5523_MODE_ENG3_M) == LP5523_LOAD_ENG3)
88
89#define LP5523_EXEC_ENG1_M 0x30 /* Enable Register */
90#define LP5523_EXEC_ENG2_M 0x0C
91#define LP5523_EXEC_ENG3_M 0x03
92#define LP5523_EXEC_M 0x3F
93#define LP5523_RUN_ENG1 0x20
94#define LP5523_RUN_ENG2 0x08
95#define LP5523_RUN_ENG3 0x02
96
27d7704e
KM
97enum lp5523_chip_id {
98 LP5523,
99 LP55231,
100};
101
db6eaf83
MWK
102static inline void lp5523_wait_opmode_done(void)
103{
104 usleep_range(1000, 2000);
105}
106
a96bfa13
MWK
107static void lp5523_set_led_current(struct lp55xx_led *led, u8 led_current)
108{
109 led->led_current = led_current;
110 lp55xx_write(led->chip, LP5523_REG_LED_CURRENT_BASE + led->chan_nr,
111 led_current);
112}
113
ffbdccdb 114static int lp5523_post_init_device(struct lp55xx_chip *chip)
0efba16c 115{
ffbdccdb 116 int ret;
0efba16c 117
ffbdccdb 118 ret = lp55xx_write(chip, LP5523_REG_ENABLE, LP5523_ENABLE);
632418bf
MWK
119 if (ret)
120 return ret;
0efba16c 121
2e4840ed
SO
122 /* Chip startup time is 500 us, 1 - 2 ms gives some margin */
123 usleep_range(1000, 2000);
0efba16c 124
ffbdccdb 125 ret = lp55xx_write(chip, LP5523_REG_CONFIG,
0efba16c
SO
126 LP5523_AUTO_INC | LP5523_PWR_SAVE |
127 LP5523_CP_AUTO | LP5523_AUTO_CLK |
128 LP5523_PWM_PWR_SAVE);
632418bf
MWK
129 if (ret)
130 return ret;
0efba16c
SO
131
132 /* turn on all leds */
ffbdccdb 133 ret = lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_MSB, 0x01);
632418bf 134 if (ret)
1b21ec5a
JH
135 return ret;
136
ffbdccdb 137 return lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_LSB, 0xff);
0efba16c
SO
138}
139
db6eaf83 140static void lp5523_load_engine(struct lp55xx_chip *chip)
0efba16c 141{
db6eaf83
MWK
142 enum lp55xx_engine_index idx = chip->engine_idx;
143 u8 mask[] = {
144 [LP55XX_ENGINE_1] = LP5523_MODE_ENG1_M,
145 [LP55XX_ENGINE_2] = LP5523_MODE_ENG2_M,
146 [LP55XX_ENGINE_3] = LP5523_MODE_ENG3_M,
147 };
148
149 u8 val[] = {
150 [LP55XX_ENGINE_1] = LP5523_LOAD_ENG1,
151 [LP55XX_ENGINE_2] = LP5523_LOAD_ENG2,
152 [LP55XX_ENGINE_3] = LP5523_LOAD_ENG3,
153 };
154
155 u8 page_sel[] = {
156 [LP55XX_ENGINE_1] = LP5523_PAGE_ENG1,
157 [LP55XX_ENGINE_2] = LP5523_PAGE_ENG2,
158 [LP55XX_ENGINE_3] = LP5523_PAGE_ENG3,
159 };
160
161 lp55xx_update_bits(chip, LP5523_REG_OP_MODE, mask[idx], val[idx]);
162
163 lp5523_wait_opmode_done();
164
165 lp55xx_write(chip, LP5523_REG_PROG_PAGE_SEL, page_sel[idx]);
0efba16c
SO
166}
167
db6eaf83 168static void lp5523_stop_engine(struct lp55xx_chip *chip)
0efba16c 169{
db6eaf83
MWK
170 lp55xx_write(chip, LP5523_REG_OP_MODE, 0);
171 lp5523_wait_opmode_done();
172}
0efba16c 173
db6eaf83
MWK
174static void lp5523_turn_off_channels(struct lp55xx_chip *chip)
175{
176 int i;
0efba16c 177
db6eaf83
MWK
178 for (i = 0; i < LP5523_MAX_LEDS; i++)
179 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + i, 0);
0efba16c
SO
180}
181
db6eaf83 182static void lp5523_run_engine(struct lp55xx_chip *chip, bool start)
0efba16c 183{
db6eaf83
MWK
184 int ret;
185 u8 mode;
186 u8 exec;
0efba16c 187
db6eaf83
MWK
188 /* stop engine */
189 if (!start) {
190 lp5523_stop_engine(chip);
191 lp5523_turn_off_channels(chip);
192 return;
193 }
0efba16c 194
db6eaf83
MWK
195 /*
196 * To run the engine,
197 * operation mode and enable register should updated at the same time
198 */
0efba16c 199
db6eaf83
MWK
200 ret = lp55xx_read(chip, LP5523_REG_OP_MODE, &mode);
201 if (ret)
202 return;
0efba16c 203
db6eaf83
MWK
204 ret = lp55xx_read(chip, LP5523_REG_ENABLE, &exec);
205 if (ret)
206 return;
0efba16c 207
db6eaf83
MWK
208 /* change operation mode to RUN only when each engine is loading */
209 if (LP5523_ENG1_IS_LOADING(mode)) {
210 mode = (mode & ~LP5523_MODE_ENG1_M) | LP5523_RUN_ENG1;
211 exec = (exec & ~LP5523_EXEC_ENG1_M) | LP5523_RUN_ENG1;
212 }
0efba16c 213
db6eaf83
MWK
214 if (LP5523_ENG2_IS_LOADING(mode)) {
215 mode = (mode & ~LP5523_MODE_ENG2_M) | LP5523_RUN_ENG2;
216 exec = (exec & ~LP5523_EXEC_ENG2_M) | LP5523_RUN_ENG2;
217 }
0efba16c 218
db6eaf83
MWK
219 if (LP5523_ENG3_IS_LOADING(mode)) {
220 mode = (mode & ~LP5523_MODE_ENG3_M) | LP5523_RUN_ENG3;
221 exec = (exec & ~LP5523_EXEC_ENG3_M) | LP5523_RUN_ENG3;
222 }
223
224 lp55xx_write(chip, LP5523_REG_OP_MODE, mode);
225 lp5523_wait_opmode_done();
226
227 lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec);
0efba16c
SO
228}
229
db6eaf83
MWK
230static int lp5523_update_program_memory(struct lp55xx_chip *chip,
231 const u8 *data, size_t size)
0efba16c 232{
db6eaf83
MWK
233 u8 pattern[LP5523_PROGRAM_LENGTH] = {0};
234 unsigned cmd;
235 char c[3];
236 int update_size;
237 int nrchars;
238 int offset = 0;
239 int ret;
0efba16c 240 int i;
0efba16c 241
db6eaf83
MWK
242 /* clear program memory before updating */
243 for (i = 0; i < LP5523_PROGRAM_LENGTH; i++)
244 lp55xx_write(chip, LP5523_REG_PROG_MEM + i, 0);
0efba16c 245
db6eaf83
MWK
246 i = 0;
247 while ((offset < size - 1) && (i < LP5523_PROGRAM_LENGTH)) {
248 /* separate sscanfs because length is working only for %s */
249 ret = sscanf(data + offset, "%2s%n ", c, &nrchars);
250 if (ret != 1)
251 goto err;
0efba16c 252
db6eaf83
MWK
253 ret = sscanf(c, "%2x", &cmd);
254 if (ret != 1)
255 goto err;
0efba16c 256
db6eaf83
MWK
257 pattern[i] = (u8)cmd;
258 offset += nrchars;
259 i++;
260 }
0efba16c 261
db6eaf83
MWK
262 /* Each instruction is 16bit long. Check that length is even */
263 if (i % 2)
264 goto err;
0efba16c 265
db6eaf83
MWK
266 update_size = i;
267 for (i = 0; i < update_size; i++)
268 lp55xx_write(chip, LP5523_REG_PROG_MEM + i, pattern[i]);
0efba16c 269
db6eaf83 270 return 0;
0efba16c 271
db6eaf83
MWK
272err:
273 dev_err(&chip->cl->dev, "wrong pattern format\n");
274 return -EINVAL;
0efba16c 275}
0efba16c 276
db6eaf83 277static void lp5523_firmware_loaded(struct lp55xx_chip *chip)
0efba16c 278{
db6eaf83 279 const struct firmware *fw = chip->fw;
fbac0812 280
db6eaf83
MWK
281 if (fw->size > LP5523_PROGRAM_LENGTH) {
282 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n",
283 fw->size);
284 return;
285 }
0efba16c 286
db6eaf83
MWK
287 /*
288 * Program momery sequence
289 * 1) set engine mode to "LOAD"
290 * 2) write firmware data into program memory
291 */
0efba16c 292
db6eaf83
MWK
293 lp5523_load_engine(chip);
294 lp5523_update_program_memory(chip, fw->data, fw->size);
0efba16c 295}
0efba16c
SO
296
297static ssize_t lp5523_selftest(struct device *dev,
298 struct device_attribute *attr,
299 char *buf)
300{
9ca3bd80
MWK
301 struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
302 struct lp55xx_chip *chip = led->chip;
303 struct lp55xx_platform_data *pdata = chip->pdata;
0efba16c 304 int i, ret, pos = 0;
0efba16c
SO
305 u8 status, adc, vdd;
306
307 mutex_lock(&chip->lock);
308
9ca3bd80 309 ret = lp55xx_read(chip, LP5523_REG_STATUS, &status);
0efba16c
SO
310 if (ret < 0)
311 goto fail;
312
313 /* Check that ext clock is really in use if requested */
9ca3bd80 314 if (pdata->clock_mode == LP55XX_CLOCK_EXT) {
0efba16c
SO
315 if ((status & LP5523_EXT_CLK_USED) == 0)
316 goto fail;
9ca3bd80 317 }
0efba16c
SO
318
319 /* Measure VDD (i.e. VBAT) first (channel 16 corresponds to VDD) */
9ca3bd80 320 lp55xx_write(chip, LP5523_REG_LED_TEST_CTRL, LP5523_EN_LEDTEST | 16);
2e4840ed 321 usleep_range(3000, 6000); /* ADC conversion time is typically 2.7 ms */
9ca3bd80 322 ret = lp55xx_read(chip, LP5523_REG_STATUS, &status);
1b21ec5a
JH
323 if (ret < 0)
324 goto fail;
325
0efba16c 326 if (!(status & LP5523_LEDTEST_DONE))
2e4840ed 327 usleep_range(3000, 6000); /* Was not ready. Wait little bit */
0efba16c 328
9ca3bd80 329 ret = lp55xx_read(chip, LP5523_REG_LED_TEST_ADC, &vdd);
1b21ec5a
JH
330 if (ret < 0)
331 goto fail;
332
0efba16c
SO
333 vdd--; /* There may be some fluctuation in measurement */
334
0e202346 335 for (i = 0; i < LP5523_MAX_LEDS; i++) {
0efba16c 336 /* Skip non-existing channels */
9ca3bd80 337 if (pdata->led_config[i].led_current == 0)
0efba16c
SO
338 continue;
339
340 /* Set default current */
9ca3bd80
MWK
341 lp55xx_write(chip, LP5523_REG_LED_CURRENT_BASE + i,
342 pdata->led_config[i].led_current);
0efba16c 343
9ca3bd80 344 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + i, 0xff);
2e4840ed
SO
345 /* let current stabilize 2 - 4ms before measurements start */
346 usleep_range(2000, 4000);
9ca3bd80 347 lp55xx_write(chip, LP5523_REG_LED_TEST_CTRL,
0efba16c 348 LP5523_EN_LEDTEST | i);
2e4840ed
SO
349 /* ADC conversion time is 2.7 ms typically */
350 usleep_range(3000, 6000);
9ca3bd80 351 ret = lp55xx_read(chip, LP5523_REG_STATUS, &status);
1b21ec5a
JH
352 if (ret < 0)
353 goto fail;
354
0efba16c 355 if (!(status & LP5523_LEDTEST_DONE))
2e4840ed 356 usleep_range(3000, 6000);/* Was not ready. Wait. */
9ca3bd80
MWK
357
358 ret = lp55xx_read(chip, LP5523_REG_LED_TEST_ADC, &adc);
1b21ec5a
JH
359 if (ret < 0)
360 goto fail;
0efba16c
SO
361
362 if (adc >= vdd || adc < LP5523_ADC_SHORTCIRC_LIM)
363 pos += sprintf(buf + pos, "LED %d FAIL\n", i);
364
9ca3bd80 365 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + i, 0x00);
0efba16c
SO
366
367 /* Restore current */
9ca3bd80
MWK
368 lp55xx_write(chip, LP5523_REG_LED_CURRENT_BASE + i,
369 led->led_current);
0efba16c
SO
370 led++;
371 }
372 if (pos == 0)
373 pos = sprintf(buf, "OK\n");
374 goto release_lock;
375fail:
376 pos = sprintf(buf, "FAIL\n");
377
378release_lock:
379 mutex_unlock(&chip->lock);
380
381 return pos;
382}
383
0efba16c
SO
384static void lp5523_led_brightness_work(struct work_struct *work)
385{
a6e4679a 386 struct lp55xx_led *led = container_of(work, struct lp55xx_led,
0efba16c 387 brightness_work);
a6e4679a 388 struct lp55xx_chip *chip = led->chip;
0efba16c
SO
389
390 mutex_lock(&chip->lock);
a6e4679a 391 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + led->chan_nr,
0efba16c 392 led->brightness);
0efba16c
SO
393 mutex_unlock(&chip->lock);
394}
395
0efba16c
SO
396static DEVICE_ATTR(selftest, S_IRUGO, lp5523_selftest, NULL);
397
398static struct attribute *lp5523_attributes[] = {
0efba16c 399 &dev_attr_selftest.attr,
f1625842 400 NULL,
0efba16c
SO
401};
402
403static const struct attribute_group lp5523_group = {
404 .attrs = lp5523_attributes,
405};
406
48068d5d
MWK
407/* Chip specific configurations */
408static struct lp55xx_device_config lp5523_cfg = {
409 .reset = {
410 .addr = LP5523_REG_RESET,
411 .val = LP5523_RESET,
412 },
e3a700d8
MWK
413 .enable = {
414 .addr = LP5523_REG_ENABLE,
415 .val = LP5523_ENABLE,
416 },
0e202346 417 .max_channel = LP5523_MAX_LEDS,
ffbdccdb 418 .post_init_device = lp5523_post_init_device,
a6e4679a 419 .brightness_work_fn = lp5523_led_brightness_work,
a96bfa13 420 .set_led_current = lp5523_set_led_current,
db6eaf83
MWK
421 .firmware_cb = lp5523_firmware_loaded,
422 .run_engine = lp5523_run_engine,
e73c0ce6 423 .dev_attr_group = &lp5523_group,
48068d5d
MWK
424};
425
98ea1ea2 426static int lp5523_probe(struct i2c_client *client,
0efba16c
SO
427 const struct i2c_device_id *id)
428{
22ebeb48 429 int ret;
6a0c9a47
MWK
430 struct lp55xx_chip *chip;
431 struct lp55xx_led *led;
432 struct lp55xx_platform_data *pdata = client->dev.platform_data;
0efba16c 433
6a0c9a47 434 if (!pdata) {
0efba16c 435 dev_err(&client->dev, "no platform data\n");
94ca4bcc 436 return -EINVAL;
0efba16c
SO
437 }
438
6a0c9a47
MWK
439 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
440 if (!chip)
441 return -ENOMEM;
442
443 led = devm_kzalloc(&client->dev,
444 sizeof(*led) * pdata->num_channels, GFP_KERNEL);
445 if (!led)
446 return -ENOMEM;
447
448 chip->cl = client;
449 chip->pdata = pdata;
48068d5d 450 chip->cfg = &lp5523_cfg;
6a0c9a47
MWK
451
452 mutex_init(&chip->lock);
0efba16c 453
6a0c9a47 454 i2c_set_clientdata(client, led);
0efba16c 455
22ebeb48 456 ret = lp55xx_init_device(chip);
0efba16c 457 if (ret)
f6c64c6f 458 goto err_init;
0efba16c 459
56a1e9ad 460 dev_info(&client->dev, "%s Programmable led chip found\n", id->name);
0efba16c 461
9e9b3db1 462 ret = lp55xx_register_leds(led, chip);
f6524808 463 if (ret)
9e9b3db1 464 goto err_register_leds;
0efba16c 465
e73c0ce6 466 ret = lp55xx_register_sysfs(chip);
0efba16c
SO
467 if (ret) {
468 dev_err(&client->dev, "registering sysfs failed\n");
e73c0ce6 469 goto err_register_sysfs;
0efba16c 470 }
e73c0ce6
MWK
471
472 return 0;
473
474err_register_sysfs:
c3a68ebf 475 lp55xx_unregister_leds(led, chip);
9e9b3db1 476err_register_leds:
6ce61762 477 lp55xx_deinit_device(chip);
f6c64c6f 478err_init:
0efba16c
SO
479 return ret;
480}
481
482static int lp5523_remove(struct i2c_client *client)
483{
6ce61762
MWK
484 struct lp55xx_led *led = i2c_get_clientdata(client);
485 struct lp55xx_chip *chip = led->chip;
0efba16c 486
87cc4bde
MWK
487 lp5523_stop_engine(chip);
488 lp55xx_unregister_sysfs(chip);
c3a68ebf 489 lp55xx_unregister_leds(led, chip);
6ce61762 490 lp55xx_deinit_device(chip);
0efba16c 491
0efba16c
SO
492 return 0;
493}
494
495static const struct i2c_device_id lp5523_id[] = {
27d7704e
KM
496 { "lp5523", LP5523 },
497 { "lp55231", LP55231 },
0efba16c
SO
498 { }
499};
500
501MODULE_DEVICE_TABLE(i2c, lp5523_id);
502
503static struct i2c_driver lp5523_driver = {
504 .driver = {
27d7704e 505 .name = "lp5523x",
0efba16c
SO
506 },
507 .probe = lp5523_probe,
508 .remove = lp5523_remove,
509 .id_table = lp5523_id,
510};
511
09a0d183 512module_i2c_driver(lp5523_driver);
0efba16c
SO
513
514MODULE_AUTHOR("Mathias Nyman <mathias.nyman@nokia.com>");
a2387cb9 515MODULE_AUTHOR("Milo Kim <milo.kim@ti.com>");
0efba16c
SO
516MODULE_DESCRIPTION("LP5523 LED engine");
517MODULE_LICENSE("GPL");