blob: dd4526e168fa744300d5033290ccef04766c7b50 [file] [log] [blame]
Samu Onkalo500fe142010-11-11 14:05:22 -08001/*
2 * LP5521 LED chip driver.
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/i2c.h>
26#include <linux/mutex.h>
27#include <linux/gpio.h>
28#include <linux/interrupt.h>
29#include <linux/delay.h>
30#include <linux/ctype.h>
31#include <linux/spinlock.h>
32#include <linux/wait.h>
33#include <linux/leds.h>
34#include <linux/leds-lp5521.h>
35#include <linux/workqueue.h>
36#include <linux/slab.h>
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +090037#include <linux/platform_data/leds-lp55xx.h>
38
39#include "leds-lp55xx-common.h"
Samu Onkalo500fe142010-11-11 14:05:22 -080040
41#define LP5521_PROGRAM_LENGTH 32 /* in bytes */
42
43#define LP5521_MAX_LEDS 3 /* Maximum number of LEDs */
44#define LP5521_MAX_ENGINES 3 /* Maximum number of engines */
45
46#define LP5521_ENG_MASK_BASE 0x30 /* 00110000 */
47#define LP5521_ENG_STATUS_MASK 0x07 /* 00000111 */
48
49#define LP5521_CMD_LOAD 0x15 /* 00010101 */
50#define LP5521_CMD_RUN 0x2a /* 00101010 */
51#define LP5521_CMD_DIRECT 0x3f /* 00111111 */
52#define LP5521_CMD_DISABLED 0x00 /* 00000000 */
53
54/* Registers */
55#define LP5521_REG_ENABLE 0x00
56#define LP5521_REG_OP_MODE 0x01
57#define LP5521_REG_R_PWM 0x02
58#define LP5521_REG_G_PWM 0x03
59#define LP5521_REG_B_PWM 0x04
60#define LP5521_REG_R_CURRENT 0x05
61#define LP5521_REG_G_CURRENT 0x06
62#define LP5521_REG_B_CURRENT 0x07
63#define LP5521_REG_CONFIG 0x08
64#define LP5521_REG_R_CHANNEL_PC 0x09
65#define LP5521_REG_G_CHANNEL_PC 0x0A
66#define LP5521_REG_B_CHANNEL_PC 0x0B
67#define LP5521_REG_STATUS 0x0C
68#define LP5521_REG_RESET 0x0D
69#define LP5521_REG_GPO 0x0E
70#define LP5521_REG_R_PROG_MEM 0x10
71#define LP5521_REG_G_PROG_MEM 0x30
72#define LP5521_REG_B_PROG_MEM 0x50
73
74#define LP5521_PROG_MEM_BASE LP5521_REG_R_PROG_MEM
75#define LP5521_PROG_MEM_SIZE 0x20
76
77/* Base register to set LED current */
78#define LP5521_REG_LED_CURRENT_BASE LP5521_REG_R_CURRENT
79
80/* Base register to set the brightness */
81#define LP5521_REG_LED_PWM_BASE LP5521_REG_R_PWM
82
83/* Bits in ENABLE register */
84#define LP5521_MASTER_ENABLE 0x40 /* Chip master enable */
85#define LP5521_LOGARITHMIC_PWM 0x80 /* Logarithmic PWM adjustment */
86#define LP5521_EXEC_RUN 0x2A
Kim, Milo32a2f742012-03-23 15:02:09 -070087#define LP5521_ENABLE_DEFAULT \
88 (LP5521_MASTER_ENABLE | LP5521_LOGARITHMIC_PWM)
89#define LP5521_ENABLE_RUN_PROGRAM \
90 (LP5521_ENABLE_DEFAULT | LP5521_EXEC_RUN)
Samu Onkalo500fe142010-11-11 14:05:22 -080091
Samu Onkalo500fe142010-11-11 14:05:22 -080092/* Status */
93#define LP5521_EXT_CLK_USED 0x08
94
Srinidhi KASAGARb3c49c02011-10-31 17:12:24 -070095/* default R channel current register value */
96#define LP5521_REG_R_CURR_DEFAULT 0xAF
97
Kim, Milo011af7b2012-03-23 15:02:09 -070098/* Pattern Mode */
99#define PATTERN_OFF 0
100
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900101/* Reset register value */
102#define LP5521_RESET 0xFF
103
Samu Onkalo500fe142010-11-11 14:05:22 -0800104struct lp5521_engine {
Samu Onkalo500fe142010-11-11 14:05:22 -0800105 int id;
106 u8 mode;
107 u8 prog_page;
108 u8 engine_mask;
109};
110
111struct lp5521_led {
112 int id;
113 u8 chan_nr;
114 u8 led_current;
115 u8 max_current;
116 struct led_classdev cdev;
117 struct work_struct brightness_work;
118 u8 brightness;
119};
120
121struct lp5521_chip {
122 struct lp5521_platform_data *pdata;
123 struct mutex lock; /* Serialize control */
124 struct i2c_client *client;
125 struct lp5521_engine engines[LP5521_MAX_ENGINES];
126 struct lp5521_led leds[LP5521_MAX_LEDS];
127 u8 num_channels;
128 u8 num_leds;
129};
130
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900131static inline void lp5521_wait_enable_done(void)
132{
133 /* it takes more 488 us to update ENABLE register */
134 usleep_range(500, 600);
135}
136
Samu Onkalo9fdb18b2010-11-24 12:57:02 -0800137static inline struct lp5521_led *cdev_to_led(struct led_classdev *cdev)
138{
139 return container_of(cdev, struct lp5521_led, cdev);
140}
141
142static inline struct lp5521_chip *engine_to_lp5521(struct lp5521_engine *engine)
143{
144 return container_of(engine, struct lp5521_chip,
145 engines[engine->id - 1]);
146}
147
148static inline struct lp5521_chip *led_to_lp5521(struct lp5521_led *led)
149{
150 return container_of(led, struct lp5521_chip,
151 leds[led->id]);
152}
Samu Onkalo500fe142010-11-11 14:05:22 -0800153
154static void lp5521_led_brightness_work(struct work_struct *work);
155
156static inline int lp5521_write(struct i2c_client *client, u8 reg, u8 value)
157{
158 return i2c_smbus_write_byte_data(client, reg, value);
159}
160
161static int lp5521_read(struct i2c_client *client, u8 reg, u8 *buf)
162{
163 s32 ret;
164
165 ret = i2c_smbus_read_byte_data(client, reg);
166 if (ret < 0)
Sachin Kamat313e8b52012-11-20 01:59:00 -0800167 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800168
169 *buf = ret;
170 return 0;
171}
172
173static int lp5521_set_engine_mode(struct lp5521_engine *engine, u8 mode)
174{
175 struct lp5521_chip *chip = engine_to_lp5521(engine);
176 struct i2c_client *client = chip->client;
177 int ret;
178 u8 engine_state;
179
180 /* Only transition between RUN and DIRECT mode are handled here */
181 if (mode == LP5521_CMD_LOAD)
182 return 0;
183
184 if (mode == LP5521_CMD_DISABLED)
185 mode = LP5521_CMD_DIRECT;
186
187 ret = lp5521_read(client, LP5521_REG_OP_MODE, &engine_state);
Axel Linfa0ea0e2011-10-31 17:12:12 -0700188 if (ret < 0)
189 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800190
191 /* set mode only for this engine */
192 engine_state &= ~(engine->engine_mask);
193 mode &= engine->engine_mask;
194 engine_state |= mode;
Axel Linfa0ea0e2011-10-31 17:12:12 -0700195 return lp5521_write(client, LP5521_REG_OP_MODE, engine_state);
Samu Onkalo500fe142010-11-11 14:05:22 -0800196}
197
198static int lp5521_load_program(struct lp5521_engine *eng, const u8 *pattern)
199{
200 struct lp5521_chip *chip = engine_to_lp5521(eng);
201 struct i2c_client *client = chip->client;
202 int ret;
203 int addr;
204 u8 mode;
205
206 /* move current engine to direct mode and remember the state */
207 ret = lp5521_set_engine_mode(eng, LP5521_CMD_DIRECT);
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700208 if (ret)
209 return ret;
210
Samu Onkalo09c76b02010-11-24 12:57:03 -0800211 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
212 usleep_range(1000, 2000);
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700213 ret = lp5521_read(client, LP5521_REG_OP_MODE, &mode);
214 if (ret)
215 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800216
217 /* For loading, all the engines to load mode */
218 lp5521_write(client, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
Samu Onkalo09c76b02010-11-24 12:57:03 -0800219 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
220 usleep_range(1000, 2000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800221 lp5521_write(client, LP5521_REG_OP_MODE, LP5521_CMD_LOAD);
Samu Onkalo09c76b02010-11-24 12:57:03 -0800222 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
223 usleep_range(1000, 2000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800224
225 addr = LP5521_PROG_MEM_BASE + eng->prog_page * LP5521_PROG_MEM_SIZE;
226 i2c_smbus_write_i2c_block_data(client,
227 addr,
228 LP5521_PROG_MEM_SIZE,
229 pattern);
230
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700231 return lp5521_write(client, LP5521_REG_OP_MODE, mode);
Samu Onkalo500fe142010-11-11 14:05:22 -0800232}
233
234static int lp5521_set_led_current(struct lp5521_chip *chip, int led, u8 curr)
235{
236 return lp5521_write(chip->client,
237 LP5521_REG_LED_CURRENT_BASE + chip->leds[led].chan_nr,
238 curr);
239}
240
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900241static int lp5521_post_init_device(struct lp55xx_chip *chip)
Samu Onkalo500fe142010-11-11 14:05:22 -0800242{
Samu Onkalo500fe142010-11-11 14:05:22 -0800243 int ret;
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900244 u8 val;
Samu Onkalo500fe142010-11-11 14:05:22 -0800245
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900246 /*
247 * Make sure that the chip is reset by reading back the r channel
248 * current reg. This is dummy read is required on some platforms -
249 * otherwise further access to the R G B channels in the
250 * LP5521_REG_ENABLE register will not have any effect - strange!
251 */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900252 ret = lp55xx_read(chip, LP5521_REG_R_CURRENT, &val);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900253 if (ret) {
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900254 dev_err(&chip->cl->dev, "error in resetting chip\n");
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900255 return ret;
256 }
257 if (val != LP5521_REG_R_CURR_DEFAULT) {
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900258 dev_err(&chip->cl->dev,
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900259 "unexpected data in register (expected 0x%x got 0x%x)\n",
260 LP5521_REG_R_CURR_DEFAULT, val);
261 ret = -EINVAL;
262 return ret;
263 }
264 usleep_range(10000, 20000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800265
Samu Onkalo500fe142010-11-11 14:05:22 -0800266 /* Set all PWMs to direct control mode */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900267 ret = lp55xx_write(chip, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
Samu Onkalo500fe142010-11-11 14:05:22 -0800268
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900269 val = chip->pdata->update_config ?
Kim, Milo3b49aac2012-03-23 15:02:08 -0700270 : (LP5521_PWRSAVE_EN | LP5521_CP_MODE_AUTO | LP5521_R_TO_BATT);
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900271 ret = lp55xx_write(chip, LP5521_REG_CONFIG, val);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900272 if (ret)
273 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800274
275 /* Initialize all channels PWM to zero -> leds off */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900276 lp55xx_write(chip, LP5521_REG_R_PWM, 0);
277 lp55xx_write(chip, LP5521_REG_G_PWM, 0);
278 lp55xx_write(chip, LP5521_REG_B_PWM, 0);
Samu Onkalo500fe142010-11-11 14:05:22 -0800279
280 /* Set engines are set to run state when OP_MODE enables engines */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900281 ret = lp55xx_write(chip, LP5521_REG_ENABLE, LP5521_ENABLE_RUN_PROGRAM);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900282 if (ret)
283 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800284
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900285 lp5521_wait_enable_done();
286
287 return 0;
Samu Onkalo500fe142010-11-11 14:05:22 -0800288}
289
290static int lp5521_run_selftest(struct lp5521_chip *chip, char *buf)
291{
292 int ret;
293 u8 status;
294
295 ret = lp5521_read(chip->client, LP5521_REG_STATUS, &status);
296 if (ret < 0)
297 return ret;
298
299 /* Check that ext clock is really in use if requested */
300 if (chip->pdata && chip->pdata->clock_mode == LP5521_CLOCK_EXT)
301 if ((status & LP5521_EXT_CLK_USED) == 0)
302 return -EIO;
303 return 0;
304}
305
306static void lp5521_set_brightness(struct led_classdev *cdev,
307 enum led_brightness brightness)
308{
309 struct lp5521_led *led = cdev_to_led(cdev);
310 led->brightness = (u8)brightness;
311 schedule_work(&led->brightness_work);
312}
313
314static void lp5521_led_brightness_work(struct work_struct *work)
315{
316 struct lp5521_led *led = container_of(work,
317 struct lp5521_led,
318 brightness_work);
319 struct lp5521_chip *chip = led_to_lp5521(led);
320 struct i2c_client *client = chip->client;
321
322 mutex_lock(&chip->lock);
323 lp5521_write(client, LP5521_REG_LED_PWM_BASE + led->chan_nr,
324 led->brightness);
325 mutex_unlock(&chip->lock);
326}
327
Samu Onkalo500fe142010-11-11 14:05:22 -0800328/* Set engine mode and create appropriate sysfs attributes, if required. */
329static int lp5521_set_mode(struct lp5521_engine *engine, u8 mode)
330{
Samu Onkalo500fe142010-11-11 14:05:22 -0800331 int ret = 0;
332
333 /* if in that mode already do nothing, except for run */
334 if (mode == engine->mode && mode != LP5521_CMD_RUN)
335 return 0;
336
337 if (mode == LP5521_CMD_RUN) {
338 ret = lp5521_set_engine_mode(engine, LP5521_CMD_RUN);
339 } else if (mode == LP5521_CMD_LOAD) {
340 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
341 lp5521_set_engine_mode(engine, LP5521_CMD_LOAD);
Samu Onkalo500fe142010-11-11 14:05:22 -0800342 } else if (mode == LP5521_CMD_DISABLED) {
343 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
344 }
345
Samu Onkalo500fe142010-11-11 14:05:22 -0800346 engine->mode = mode;
347
348 return ret;
349}
350
351static int lp5521_do_store_load(struct lp5521_engine *engine,
352 const char *buf, size_t len)
353{
354 struct lp5521_chip *chip = engine_to_lp5521(engine);
355 struct i2c_client *client = chip->client;
356 int ret, nrchars, offset = 0, i = 0;
357 char c[3];
358 unsigned cmd;
359 u8 pattern[LP5521_PROGRAM_LENGTH] = {0};
360
361 while ((offset < len - 1) && (i < LP5521_PROGRAM_LENGTH)) {
362 /* separate sscanfs because length is working only for %s */
363 ret = sscanf(buf + offset, "%2s%n ", c, &nrchars);
Vasiliy Kulikov22602092011-01-12 16:59:14 -0800364 if (ret != 2)
365 goto fail;
Samu Onkalo500fe142010-11-11 14:05:22 -0800366 ret = sscanf(c, "%2x", &cmd);
367 if (ret != 1)
368 goto fail;
369 pattern[i] = (u8)cmd;
370
371 offset += nrchars;
372 i++;
373 }
374
375 /* Each instruction is 16bit long. Check that length is even */
376 if (i % 2)
377 goto fail;
378
379 mutex_lock(&chip->lock);
Samu Onkalod4e7ad02011-01-12 16:59:19 -0800380 if (engine->mode == LP5521_CMD_LOAD)
381 ret = lp5521_load_program(engine, pattern);
382 else
383 ret = -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800384 mutex_unlock(&chip->lock);
385
386 if (ret) {
387 dev_err(&client->dev, "failed loading pattern\n");
388 return ret;
389 }
390
391 return len;
392fail:
393 dev_err(&client->dev, "wrong pattern format\n");
394 return -EINVAL;
395}
396
397static ssize_t store_engine_load(struct device *dev,
398 struct device_attribute *attr,
399 const char *buf, size_t len, int nr)
400{
401 struct i2c_client *client = to_i2c_client(dev);
402 struct lp5521_chip *chip = i2c_get_clientdata(client);
403 return lp5521_do_store_load(&chip->engines[nr - 1], buf, len);
404}
405
406#define store_load(nr) \
407static ssize_t store_engine##nr##_load(struct device *dev, \
408 struct device_attribute *attr, \
409 const char *buf, size_t len) \
410{ \
411 return store_engine_load(dev, attr, buf, len, nr); \
412}
413store_load(1)
414store_load(2)
415store_load(3)
416
417static ssize_t show_engine_mode(struct device *dev,
418 struct device_attribute *attr,
419 char *buf, int nr)
420{
421 struct i2c_client *client = to_i2c_client(dev);
422 struct lp5521_chip *chip = i2c_get_clientdata(client);
423 switch (chip->engines[nr - 1].mode) {
424 case LP5521_CMD_RUN:
425 return sprintf(buf, "run\n");
426 case LP5521_CMD_LOAD:
427 return sprintf(buf, "load\n");
428 case LP5521_CMD_DISABLED:
429 return sprintf(buf, "disabled\n");
430 default:
431 return sprintf(buf, "disabled\n");
432 }
433}
434
435#define show_mode(nr) \
436static ssize_t show_engine##nr##_mode(struct device *dev, \
437 struct device_attribute *attr, \
438 char *buf) \
439{ \
440 return show_engine_mode(dev, attr, buf, nr); \
441}
442show_mode(1)
443show_mode(2)
444show_mode(3)
445
446static ssize_t store_engine_mode(struct device *dev,
447 struct device_attribute *attr,
448 const char *buf, size_t len, int nr)
449{
450 struct i2c_client *client = to_i2c_client(dev);
451 struct lp5521_chip *chip = i2c_get_clientdata(client);
452 struct lp5521_engine *engine = &chip->engines[nr - 1];
453 mutex_lock(&chip->lock);
454
455 if (!strncmp(buf, "run", 3))
456 lp5521_set_mode(engine, LP5521_CMD_RUN);
457 else if (!strncmp(buf, "load", 4))
458 lp5521_set_mode(engine, LP5521_CMD_LOAD);
459 else if (!strncmp(buf, "disabled", 8))
460 lp5521_set_mode(engine, LP5521_CMD_DISABLED);
461
462 mutex_unlock(&chip->lock);
463 return len;
464}
465
466#define store_mode(nr) \
467static ssize_t store_engine##nr##_mode(struct device *dev, \
468 struct device_attribute *attr, \
469 const char *buf, size_t len) \
470{ \
471 return store_engine_mode(dev, attr, buf, len, nr); \
472}
473store_mode(1)
474store_mode(2)
475store_mode(3)
476
477static ssize_t show_max_current(struct device *dev,
478 struct device_attribute *attr,
479 char *buf)
480{
481 struct led_classdev *led_cdev = dev_get_drvdata(dev);
482 struct lp5521_led *led = cdev_to_led(led_cdev);
483
484 return sprintf(buf, "%d\n", led->max_current);
485}
486
487static ssize_t show_current(struct device *dev,
488 struct device_attribute *attr,
489 char *buf)
490{
491 struct led_classdev *led_cdev = dev_get_drvdata(dev);
492 struct lp5521_led *led = cdev_to_led(led_cdev);
493
494 return sprintf(buf, "%d\n", led->led_current);
495}
496
497static ssize_t store_current(struct device *dev,
498 struct device_attribute *attr,
499 const char *buf, size_t len)
500{
501 struct led_classdev *led_cdev = dev_get_drvdata(dev);
502 struct lp5521_led *led = cdev_to_led(led_cdev);
503 struct lp5521_chip *chip = led_to_lp5521(led);
504 ssize_t ret;
505 unsigned long curr;
506
Kim, Milo011af7b2012-03-23 15:02:09 -0700507 if (kstrtoul(buf, 0, &curr))
Samu Onkalo500fe142010-11-11 14:05:22 -0800508 return -EINVAL;
509
510 if (curr > led->max_current)
511 return -EINVAL;
512
513 mutex_lock(&chip->lock);
514 ret = lp5521_set_led_current(chip, led->id, curr);
515 mutex_unlock(&chip->lock);
516
517 if (ret < 0)
518 return ret;
519
520 led->led_current = (u8)curr;
521
522 return len;
523}
524
525static ssize_t lp5521_selftest(struct device *dev,
526 struct device_attribute *attr,
527 char *buf)
528{
529 struct i2c_client *client = to_i2c_client(dev);
530 struct lp5521_chip *chip = i2c_get_clientdata(client);
531 int ret;
532
533 mutex_lock(&chip->lock);
534 ret = lp5521_run_selftest(chip, buf);
535 mutex_unlock(&chip->lock);
536 return sprintf(buf, "%s\n", ret ? "FAIL" : "OK");
537}
538
Kim, Milo011af7b2012-03-23 15:02:09 -0700539static void lp5521_clear_program_memory(struct i2c_client *cl)
540{
541 int i;
542 u8 rgb_mem[] = {
543 LP5521_REG_R_PROG_MEM,
544 LP5521_REG_G_PROG_MEM,
545 LP5521_REG_B_PROG_MEM,
546 };
547
548 for (i = 0; i < ARRAY_SIZE(rgb_mem); i++) {
549 lp5521_write(cl, rgb_mem[i], 0);
550 lp5521_write(cl, rgb_mem[i] + 1, 0);
551 }
552}
553
554static void lp5521_write_program_memory(struct i2c_client *cl,
555 u8 base, u8 *rgb, int size)
556{
557 int i;
558
559 if (!rgb || size <= 0)
560 return;
561
562 for (i = 0; i < size; i++)
563 lp5521_write(cl, base + i, *(rgb + i));
564
565 lp5521_write(cl, base + i, 0);
566 lp5521_write(cl, base + i + 1, 0);
567}
568
569static inline struct lp5521_led_pattern *lp5521_get_pattern
570 (struct lp5521_chip *chip, u8 offset)
571{
572 struct lp5521_led_pattern *ptn;
573 ptn = chip->pdata->patterns + (offset - 1);
574 return ptn;
575}
576
577static void lp5521_run_led_pattern(int mode, struct lp5521_chip *chip)
578{
579 struct lp5521_led_pattern *ptn;
580 struct i2c_client *cl = chip->client;
581 int num_patterns = chip->pdata->num_patterns;
582
583 if (mode > num_patterns || !(chip->pdata->patterns))
584 return;
585
586 if (mode == PATTERN_OFF) {
Kim, Milo32a2f742012-03-23 15:02:09 -0700587 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_DEFAULT);
Kim, Milo011af7b2012-03-23 15:02:09 -0700588 usleep_range(1000, 2000);
589 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
590 } else {
591 ptn = lp5521_get_pattern(chip, mode);
592 if (!ptn)
593 return;
594
595 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_LOAD);
596 usleep_range(1000, 2000);
597
598 lp5521_clear_program_memory(cl);
599
600 lp5521_write_program_memory(cl, LP5521_REG_R_PROG_MEM,
601 ptn->r, ptn->size_r);
602 lp5521_write_program_memory(cl, LP5521_REG_G_PROG_MEM,
603 ptn->g, ptn->size_g);
604 lp5521_write_program_memory(cl, LP5521_REG_B_PROG_MEM,
605 ptn->b, ptn->size_b);
606
607 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_RUN);
608 usleep_range(1000, 2000);
Kim, Milo32a2f742012-03-23 15:02:09 -0700609 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_RUN_PROGRAM);
Kim, Milo011af7b2012-03-23 15:02:09 -0700610 }
611}
612
613static ssize_t store_led_pattern(struct device *dev,
614 struct device_attribute *attr,
615 const char *buf, size_t len)
616{
617 struct lp5521_chip *chip = i2c_get_clientdata(to_i2c_client(dev));
618 unsigned long val;
619 int ret;
620
Jingoo Han69b44c12012-11-18 20:51:20 -0800621 ret = kstrtoul(buf, 16, &val);
Kim, Milo011af7b2012-03-23 15:02:09 -0700622 if (ret)
623 return ret;
624
625 lp5521_run_led_pattern(val, chip);
626
627 return len;
628}
629
Samu Onkalo500fe142010-11-11 14:05:22 -0800630/* led class device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700631static DEVICE_ATTR(led_current, S_IRUGO | S_IWUSR, show_current, store_current);
Samu Onkalo500fe142010-11-11 14:05:22 -0800632static DEVICE_ATTR(max_current, S_IRUGO , show_max_current, NULL);
633
634static struct attribute *lp5521_led_attributes[] = {
635 &dev_attr_led_current.attr,
636 &dev_attr_max_current.attr,
637 NULL,
638};
639
640static struct attribute_group lp5521_led_attribute_group = {
641 .attrs = lp5521_led_attributes
642};
643
644/* device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700645static DEVICE_ATTR(engine1_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800646 show_engine1_mode, store_engine1_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700647static DEVICE_ATTR(engine2_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800648 show_engine2_mode, store_engine2_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700649static DEVICE_ATTR(engine3_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800650 show_engine3_mode, store_engine3_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700651static DEVICE_ATTR(engine1_load, S_IWUSR, NULL, store_engine1_load);
652static DEVICE_ATTR(engine2_load, S_IWUSR, NULL, store_engine2_load);
653static DEVICE_ATTR(engine3_load, S_IWUSR, NULL, store_engine3_load);
Samu Onkalo500fe142010-11-11 14:05:22 -0800654static DEVICE_ATTR(selftest, S_IRUGO, lp5521_selftest, NULL);
Kim, Milo011af7b2012-03-23 15:02:09 -0700655static DEVICE_ATTR(led_pattern, S_IWUSR, NULL, store_led_pattern);
Samu Onkalo500fe142010-11-11 14:05:22 -0800656
657static struct attribute *lp5521_attributes[] = {
658 &dev_attr_engine1_mode.attr,
659 &dev_attr_engine2_mode.attr,
660 &dev_attr_engine3_mode.attr,
661 &dev_attr_selftest.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800662 &dev_attr_engine1_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800663 &dev_attr_engine2_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800664 &dev_attr_engine3_load.attr,
Kim, Milo011af7b2012-03-23 15:02:09 -0700665 &dev_attr_led_pattern.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800666 NULL
667};
668
669static const struct attribute_group lp5521_group = {
670 .attrs = lp5521_attributes,
671};
672
Samu Onkalo500fe142010-11-11 14:05:22 -0800673static int lp5521_register_sysfs(struct i2c_client *client)
674{
675 struct device *dev = &client->dev;
676 return sysfs_create_group(&dev->kobj, &lp5521_group);
677}
678
679static void lp5521_unregister_sysfs(struct i2c_client *client)
680{
681 struct lp5521_chip *chip = i2c_get_clientdata(client);
682 struct device *dev = &client->dev;
683 int i;
684
685 sysfs_remove_group(&dev->kobj, &lp5521_group);
686
Samu Onkalo500fe142010-11-11 14:05:22 -0800687 for (i = 0; i < chip->num_leds; i++)
688 sysfs_remove_group(&chip->leds[i].cdev.dev->kobj,
689 &lp5521_led_attribute_group);
690}
691
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500692static int lp5521_init_led(struct lp5521_led *led,
Samu Onkalo500fe142010-11-11 14:05:22 -0800693 struct i2c_client *client,
694 int chan, struct lp5521_platform_data *pdata)
695{
696 struct device *dev = &client->dev;
697 char name[32];
698 int res;
699
700 if (chan >= LP5521_MAX_LEDS)
701 return -EINVAL;
702
703 if (pdata->led_config[chan].led_current == 0)
704 return 0;
705
706 led->led_current = pdata->led_config[chan].led_current;
707 led->max_current = pdata->led_config[chan].max_current;
708 led->chan_nr = pdata->led_config[chan].chan_nr;
709
710 if (led->chan_nr >= LP5521_MAX_LEDS) {
711 dev_err(dev, "Use channel numbers between 0 and %d\n",
712 LP5521_MAX_LEDS - 1);
713 return -EINVAL;
714 }
715
Samu Onkalo500fe142010-11-11 14:05:22 -0800716 led->cdev.brightness_set = lp5521_set_brightness;
Kim, Milo5ae4e8a2012-03-23 15:02:08 -0700717 if (pdata->led_config[chan].name) {
718 led->cdev.name = pdata->led_config[chan].name;
719 } else {
720 snprintf(name, sizeof(name), "%s:channel%d",
721 pdata->label ?: client->name, chan);
722 led->cdev.name = name;
723 }
724
Samu Onkalo500fe142010-11-11 14:05:22 -0800725 res = led_classdev_register(dev, &led->cdev);
726 if (res < 0) {
727 dev_err(dev, "couldn't register led on channel %d\n", chan);
728 return res;
729 }
730
731 res = sysfs_create_group(&led->cdev.dev->kobj,
732 &lp5521_led_attribute_group);
733 if (res < 0) {
734 dev_err(dev, "couldn't register current attribute\n");
735 led_classdev_unregister(&led->cdev);
736 return res;
737 }
738 return 0;
739}
740
Milo(Woogyom) Kimf6524802013-02-05 17:53:40 +0900741static int lp5521_register_leds(struct lp5521_chip *chip)
742{
743 struct lp5521_platform_data *pdata = chip->pdata;
744 struct i2c_client *client = chip->client;
745 int i;
746 int led;
747 int ret;
748
749 /* Initialize leds */
750 chip->num_channels = pdata->num_channels;
751 chip->num_leds = 0;
752 led = 0;
753 for (i = 0; i < pdata->num_channels; i++) {
754 /* Do not initialize channels that are not connected */
755 if (pdata->led_config[i].led_current == 0)
756 continue;
757
758 ret = lp5521_init_led(&chip->leds[led], client, i, pdata);
759 if (ret) {
760 dev_err(&client->dev, "error initializing leds\n");
761 return ret;
762 }
763 chip->num_leds++;
764
765 chip->leds[led].id = led;
766 /* Set initial LED current */
767 lp5521_set_led_current(chip, led,
768 chip->leds[led].led_current);
769
770 INIT_WORK(&(chip->leds[led].brightness_work),
771 lp5521_led_brightness_work);
772
773 led++;
774 }
775
776 return 0;
777}
778
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900779static void lp5521_unregister_leds(struct lp5521_chip *chip)
780{
781 int i;
782
783 for (i = 0; i < chip->num_leds; i++) {
784 led_classdev_unregister(&chip->leds[i].cdev);
785 cancel_work_sync(&chip->leds[i].brightness_work);
786 }
787}
788
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900789/* Chip specific configurations */
790static struct lp55xx_device_config lp5521_cfg = {
791 .reset = {
792 .addr = LP5521_REG_RESET,
793 .val = LP5521_RESET,
794 },
Milo(Woogyom) Kime3a700d2013-02-05 18:09:56 +0900795 .enable = {
796 .addr = LP5521_REG_ENABLE,
797 .val = LP5521_ENABLE_DEFAULT,
798 },
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900799 .post_init_device = lp5521_post_init_device,
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900800};
801
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500802static int lp5521_probe(struct i2c_client *client,
Samu Onkalo500fe142010-11-11 14:05:22 -0800803 const struct i2c_device_id *id)
804{
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900805 struct lp5521_chip *old_chip = NULL;
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900806 int ret;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900807 struct lp55xx_chip *chip;
808 struct lp55xx_led *led;
809 struct lp55xx_platform_data *pdata = client->dev.platform_data;
Samu Onkalo500fe142010-11-11 14:05:22 -0800810
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900811 if (!pdata) {
Samu Onkalo500fe142010-11-11 14:05:22 -0800812 dev_err(&client->dev, "no platform data\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800813 return -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800814 }
815
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900816 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
817 if (!chip)
818 return -ENOMEM;
Samu Onkalo500fe142010-11-11 14:05:22 -0800819
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900820 led = devm_kzalloc(&client->dev,
821 sizeof(*led) * pdata->num_channels, GFP_KERNEL);
822 if (!led)
823 return -ENOMEM;
824
825 chip->cl = client;
826 chip->pdata = pdata;
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900827 chip->cfg = &lp5521_cfg;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900828
829 mutex_init(&chip->lock);
830
831 i2c_set_clientdata(client, led);
Samu Onkalo500fe142010-11-11 14:05:22 -0800832
Milo(Woogyom) Kim22ebeb42013-02-05 18:58:35 +0900833 ret = lp55xx_init_device(chip);
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900834 if (ret)
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900835 goto err_init;
Samu Onkalo500fe142010-11-11 14:05:22 -0800836
837 dev_info(&client->dev, "%s programmable led chip found\n", id->name);
838
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900839 ret = lp5521_register_leds(old_chip);
Milo(Woogyom) Kimf6524802013-02-05 17:53:40 +0900840 if (ret)
841 goto fail2;
Samu Onkalo500fe142010-11-11 14:05:22 -0800842
843 ret = lp5521_register_sysfs(client);
844 if (ret) {
845 dev_err(&client->dev, "registering sysfs failed\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800846 goto fail2;
Samu Onkalo500fe142010-11-11 14:05:22 -0800847 }
848 return ret;
Bryan Wue430dc02012-07-04 11:16:09 +0800849fail2:
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900850 lp5521_unregister_leds(old_chip);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900851 lp55xx_deinit_device(chip);
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900852err_init:
Samu Onkalo500fe142010-11-11 14:05:22 -0800853 return ret;
854}
855
Bill Pemberton678e8a62012-11-19 13:26:00 -0500856static int lp5521_remove(struct i2c_client *client)
Samu Onkalo500fe142010-11-11 14:05:22 -0800857{
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900858 struct lp5521_chip *old_chip = i2c_get_clientdata(client);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900859 struct lp55xx_led *led = i2c_get_clientdata(client);
860 struct lp55xx_chip *chip = led->chip;
Samu Onkalo500fe142010-11-11 14:05:22 -0800861
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900862 lp5521_run_led_pattern(PATTERN_OFF, old_chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800863 lp5521_unregister_sysfs(client);
864
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900865 lp5521_unregister_leds(old_chip);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900866 lp55xx_deinit_device(chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800867
Samu Onkalo500fe142010-11-11 14:05:22 -0800868 return 0;
869}
870
871static const struct i2c_device_id lp5521_id[] = {
872 { "lp5521", 0 }, /* Three channel chip */
873 { }
874};
875MODULE_DEVICE_TABLE(i2c, lp5521_id);
876
877static struct i2c_driver lp5521_driver = {
878 .driver = {
879 .name = "lp5521",
880 },
881 .probe = lp5521_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500882 .remove = lp5521_remove,
Samu Onkalo500fe142010-11-11 14:05:22 -0800883 .id_table = lp5521_id,
884};
885
Axel Lin09a0d182012-01-10 15:09:27 -0800886module_i2c_driver(lp5521_driver);
Samu Onkalo500fe142010-11-11 14:05:22 -0800887
888MODULE_AUTHOR("Mathias Nyman, Yuri Zaporozhets, Samu Onkalo");
889MODULE_DESCRIPTION("LP5521 LED engine");
890MODULE_LICENSE("GPL v2");