blob: 6efbb7ec0e2dea7cc0715b98b38a6c492f98b5ba [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
Samu Onkalo500fe142010-11-11 14:05:22 -0800154static inline int lp5521_write(struct i2c_client *client, u8 reg, u8 value)
155{
156 return i2c_smbus_write_byte_data(client, reg, value);
157}
158
159static int lp5521_read(struct i2c_client *client, u8 reg, u8 *buf)
160{
161 s32 ret;
162
163 ret = i2c_smbus_read_byte_data(client, reg);
164 if (ret < 0)
Sachin Kamat313e8b52012-11-20 01:59:00 -0800165 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800166
167 *buf = ret;
168 return 0;
169}
170
171static int lp5521_set_engine_mode(struct lp5521_engine *engine, u8 mode)
172{
173 struct lp5521_chip *chip = engine_to_lp5521(engine);
174 struct i2c_client *client = chip->client;
175 int ret;
176 u8 engine_state;
177
178 /* Only transition between RUN and DIRECT mode are handled here */
179 if (mode == LP5521_CMD_LOAD)
180 return 0;
181
182 if (mode == LP5521_CMD_DISABLED)
183 mode = LP5521_CMD_DIRECT;
184
185 ret = lp5521_read(client, LP5521_REG_OP_MODE, &engine_state);
Axel Linfa0ea0e2011-10-31 17:12:12 -0700186 if (ret < 0)
187 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800188
189 /* set mode only for this engine */
190 engine_state &= ~(engine->engine_mask);
191 mode &= engine->engine_mask;
192 engine_state |= mode;
Axel Linfa0ea0e2011-10-31 17:12:12 -0700193 return lp5521_write(client, LP5521_REG_OP_MODE, engine_state);
Samu Onkalo500fe142010-11-11 14:05:22 -0800194}
195
196static int lp5521_load_program(struct lp5521_engine *eng, const u8 *pattern)
197{
198 struct lp5521_chip *chip = engine_to_lp5521(eng);
199 struct i2c_client *client = chip->client;
200 int ret;
201 int addr;
202 u8 mode;
203
204 /* move current engine to direct mode and remember the state */
205 ret = lp5521_set_engine_mode(eng, LP5521_CMD_DIRECT);
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700206 if (ret)
207 return ret;
208
Samu Onkalo09c76b02010-11-24 12:57:03 -0800209 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
210 usleep_range(1000, 2000);
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700211 ret = lp5521_read(client, LP5521_REG_OP_MODE, &mode);
212 if (ret)
213 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800214
215 /* For loading, all the engines to load mode */
216 lp5521_write(client, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
Samu Onkalo09c76b02010-11-24 12:57:03 -0800217 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
218 usleep_range(1000, 2000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800219 lp5521_write(client, LP5521_REG_OP_MODE, LP5521_CMD_LOAD);
Samu Onkalo09c76b02010-11-24 12:57:03 -0800220 /* Mode change requires min 500 us delay. 1 - 2 ms with margin */
221 usleep_range(1000, 2000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800222
223 addr = LP5521_PROG_MEM_BASE + eng->prog_page * LP5521_PROG_MEM_SIZE;
224 i2c_smbus_write_i2c_block_data(client,
225 addr,
226 LP5521_PROG_MEM_SIZE,
227 pattern);
228
Dan Carpenter5bc9ad72012-05-29 15:07:26 -0700229 return lp5521_write(client, LP5521_REG_OP_MODE, mode);
Samu Onkalo500fe142010-11-11 14:05:22 -0800230}
231
232static int lp5521_set_led_current(struct lp5521_chip *chip, int led, u8 curr)
233{
234 return lp5521_write(chip->client,
235 LP5521_REG_LED_CURRENT_BASE + chip->leds[led].chan_nr,
236 curr);
237}
238
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900239static int lp5521_post_init_device(struct lp55xx_chip *chip)
Samu Onkalo500fe142010-11-11 14:05:22 -0800240{
Samu Onkalo500fe142010-11-11 14:05:22 -0800241 int ret;
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900242 u8 val;
Samu Onkalo500fe142010-11-11 14:05:22 -0800243
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900244 /*
245 * Make sure that the chip is reset by reading back the r channel
246 * current reg. This is dummy read is required on some platforms -
247 * otherwise further access to the R G B channels in the
248 * LP5521_REG_ENABLE register will not have any effect - strange!
249 */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900250 ret = lp55xx_read(chip, LP5521_REG_R_CURRENT, &val);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900251 if (ret) {
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900252 dev_err(&chip->cl->dev, "error in resetting chip\n");
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900253 return ret;
254 }
255 if (val != LP5521_REG_R_CURR_DEFAULT) {
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900256 dev_err(&chip->cl->dev,
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900257 "unexpected data in register (expected 0x%x got 0x%x)\n",
258 LP5521_REG_R_CURR_DEFAULT, val);
259 ret = -EINVAL;
260 return ret;
261 }
262 usleep_range(10000, 20000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800263
Samu Onkalo500fe142010-11-11 14:05:22 -0800264 /* Set all PWMs to direct control mode */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900265 ret = lp55xx_write(chip, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
Samu Onkalo500fe142010-11-11 14:05:22 -0800266
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900267 val = chip->pdata->update_config ?
Kim, Milo3b49aac2012-03-23 15:02:08 -0700268 : (LP5521_PWRSAVE_EN | LP5521_CP_MODE_AUTO | LP5521_R_TO_BATT);
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900269 ret = lp55xx_write(chip, LP5521_REG_CONFIG, val);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900270 if (ret)
271 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800272
273 /* Initialize all channels PWM to zero -> leds off */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900274 lp55xx_write(chip, LP5521_REG_R_PWM, 0);
275 lp55xx_write(chip, LP5521_REG_G_PWM, 0);
276 lp55xx_write(chip, LP5521_REG_B_PWM, 0);
Samu Onkalo500fe142010-11-11 14:05:22 -0800277
278 /* Set engines are set to run state when OP_MODE enables engines */
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900279 ret = lp55xx_write(chip, LP5521_REG_ENABLE, LP5521_ENABLE_RUN_PROGRAM);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900280 if (ret)
281 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800282
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900283 lp5521_wait_enable_done();
284
285 return 0;
Samu Onkalo500fe142010-11-11 14:05:22 -0800286}
287
288static int lp5521_run_selftest(struct lp5521_chip *chip, char *buf)
289{
290 int ret;
291 u8 status;
292
293 ret = lp5521_read(chip->client, LP5521_REG_STATUS, &status);
294 if (ret < 0)
295 return ret;
296
297 /* Check that ext clock is really in use if requested */
298 if (chip->pdata && chip->pdata->clock_mode == LP5521_CLOCK_EXT)
299 if ((status & LP5521_EXT_CLK_USED) == 0)
300 return -EIO;
301 return 0;
302}
303
Samu Onkalo500fe142010-11-11 14:05:22 -0800304static void lp5521_led_brightness_work(struct work_struct *work)
305{
Milo(Woogyom) Kima6e46792013-02-05 19:08:40 +0900306 struct lp55xx_led *led = container_of(work, struct lp55xx_led,
Samu Onkalo500fe142010-11-11 14:05:22 -0800307 brightness_work);
Milo(Woogyom) Kima6e46792013-02-05 19:08:40 +0900308 struct lp55xx_chip *chip = led->chip;
Samu Onkalo500fe142010-11-11 14:05:22 -0800309
310 mutex_lock(&chip->lock);
Milo(Woogyom) Kima6e46792013-02-05 19:08:40 +0900311 lp55xx_write(chip, LP5521_REG_LED_PWM_BASE + led->chan_nr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800312 led->brightness);
313 mutex_unlock(&chip->lock);
314}
315
Samu Onkalo500fe142010-11-11 14:05:22 -0800316/* Set engine mode and create appropriate sysfs attributes, if required. */
317static int lp5521_set_mode(struct lp5521_engine *engine, u8 mode)
318{
Samu Onkalo500fe142010-11-11 14:05:22 -0800319 int ret = 0;
320
321 /* if in that mode already do nothing, except for run */
322 if (mode == engine->mode && mode != LP5521_CMD_RUN)
323 return 0;
324
325 if (mode == LP5521_CMD_RUN) {
326 ret = lp5521_set_engine_mode(engine, LP5521_CMD_RUN);
327 } else if (mode == LP5521_CMD_LOAD) {
328 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
329 lp5521_set_engine_mode(engine, LP5521_CMD_LOAD);
Samu Onkalo500fe142010-11-11 14:05:22 -0800330 } else if (mode == LP5521_CMD_DISABLED) {
331 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
332 }
333
Samu Onkalo500fe142010-11-11 14:05:22 -0800334 engine->mode = mode;
335
336 return ret;
337}
338
339static int lp5521_do_store_load(struct lp5521_engine *engine,
340 const char *buf, size_t len)
341{
342 struct lp5521_chip *chip = engine_to_lp5521(engine);
343 struct i2c_client *client = chip->client;
344 int ret, nrchars, offset = 0, i = 0;
345 char c[3];
346 unsigned cmd;
347 u8 pattern[LP5521_PROGRAM_LENGTH] = {0};
348
349 while ((offset < len - 1) && (i < LP5521_PROGRAM_LENGTH)) {
350 /* separate sscanfs because length is working only for %s */
351 ret = sscanf(buf + offset, "%2s%n ", c, &nrchars);
Vasiliy Kulikov22602092011-01-12 16:59:14 -0800352 if (ret != 2)
353 goto fail;
Samu Onkalo500fe142010-11-11 14:05:22 -0800354 ret = sscanf(c, "%2x", &cmd);
355 if (ret != 1)
356 goto fail;
357 pattern[i] = (u8)cmd;
358
359 offset += nrchars;
360 i++;
361 }
362
363 /* Each instruction is 16bit long. Check that length is even */
364 if (i % 2)
365 goto fail;
366
367 mutex_lock(&chip->lock);
Samu Onkalod4e7ad02011-01-12 16:59:19 -0800368 if (engine->mode == LP5521_CMD_LOAD)
369 ret = lp5521_load_program(engine, pattern);
370 else
371 ret = -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800372 mutex_unlock(&chip->lock);
373
374 if (ret) {
375 dev_err(&client->dev, "failed loading pattern\n");
376 return ret;
377 }
378
379 return len;
380fail:
381 dev_err(&client->dev, "wrong pattern format\n");
382 return -EINVAL;
383}
384
385static ssize_t store_engine_load(struct device *dev,
386 struct device_attribute *attr,
387 const char *buf, size_t len, int nr)
388{
389 struct i2c_client *client = to_i2c_client(dev);
390 struct lp5521_chip *chip = i2c_get_clientdata(client);
391 return lp5521_do_store_load(&chip->engines[nr - 1], buf, len);
392}
393
394#define store_load(nr) \
395static ssize_t store_engine##nr##_load(struct device *dev, \
396 struct device_attribute *attr, \
397 const char *buf, size_t len) \
398{ \
399 return store_engine_load(dev, attr, buf, len, nr); \
400}
401store_load(1)
402store_load(2)
403store_load(3)
404
405static ssize_t show_engine_mode(struct device *dev,
406 struct device_attribute *attr,
407 char *buf, int nr)
408{
409 struct i2c_client *client = to_i2c_client(dev);
410 struct lp5521_chip *chip = i2c_get_clientdata(client);
411 switch (chip->engines[nr - 1].mode) {
412 case LP5521_CMD_RUN:
413 return sprintf(buf, "run\n");
414 case LP5521_CMD_LOAD:
415 return sprintf(buf, "load\n");
416 case LP5521_CMD_DISABLED:
417 return sprintf(buf, "disabled\n");
418 default:
419 return sprintf(buf, "disabled\n");
420 }
421}
422
423#define show_mode(nr) \
424static ssize_t show_engine##nr##_mode(struct device *dev, \
425 struct device_attribute *attr, \
426 char *buf) \
427{ \
428 return show_engine_mode(dev, attr, buf, nr); \
429}
430show_mode(1)
431show_mode(2)
432show_mode(3)
433
434static ssize_t store_engine_mode(struct device *dev,
435 struct device_attribute *attr,
436 const char *buf, size_t len, int nr)
437{
438 struct i2c_client *client = to_i2c_client(dev);
439 struct lp5521_chip *chip = i2c_get_clientdata(client);
440 struct lp5521_engine *engine = &chip->engines[nr - 1];
441 mutex_lock(&chip->lock);
442
443 if (!strncmp(buf, "run", 3))
444 lp5521_set_mode(engine, LP5521_CMD_RUN);
445 else if (!strncmp(buf, "load", 4))
446 lp5521_set_mode(engine, LP5521_CMD_LOAD);
447 else if (!strncmp(buf, "disabled", 8))
448 lp5521_set_mode(engine, LP5521_CMD_DISABLED);
449
450 mutex_unlock(&chip->lock);
451 return len;
452}
453
454#define store_mode(nr) \
455static ssize_t store_engine##nr##_mode(struct device *dev, \
456 struct device_attribute *attr, \
457 const char *buf, size_t len) \
458{ \
459 return store_engine_mode(dev, attr, buf, len, nr); \
460}
461store_mode(1)
462store_mode(2)
463store_mode(3)
464
465static ssize_t show_max_current(struct device *dev,
466 struct device_attribute *attr,
467 char *buf)
468{
469 struct led_classdev *led_cdev = dev_get_drvdata(dev);
470 struct lp5521_led *led = cdev_to_led(led_cdev);
471
472 return sprintf(buf, "%d\n", led->max_current);
473}
474
475static ssize_t show_current(struct device *dev,
476 struct device_attribute *attr,
477 char *buf)
478{
479 struct led_classdev *led_cdev = dev_get_drvdata(dev);
480 struct lp5521_led *led = cdev_to_led(led_cdev);
481
482 return sprintf(buf, "%d\n", led->led_current);
483}
484
485static ssize_t store_current(struct device *dev,
486 struct device_attribute *attr,
487 const char *buf, size_t len)
488{
489 struct led_classdev *led_cdev = dev_get_drvdata(dev);
490 struct lp5521_led *led = cdev_to_led(led_cdev);
491 struct lp5521_chip *chip = led_to_lp5521(led);
492 ssize_t ret;
493 unsigned long curr;
494
Kim, Milo011af7b2012-03-23 15:02:09 -0700495 if (kstrtoul(buf, 0, &curr))
Samu Onkalo500fe142010-11-11 14:05:22 -0800496 return -EINVAL;
497
498 if (curr > led->max_current)
499 return -EINVAL;
500
501 mutex_lock(&chip->lock);
502 ret = lp5521_set_led_current(chip, led->id, curr);
503 mutex_unlock(&chip->lock);
504
505 if (ret < 0)
506 return ret;
507
508 led->led_current = (u8)curr;
509
510 return len;
511}
512
513static ssize_t lp5521_selftest(struct device *dev,
514 struct device_attribute *attr,
515 char *buf)
516{
517 struct i2c_client *client = to_i2c_client(dev);
518 struct lp5521_chip *chip = i2c_get_clientdata(client);
519 int ret;
520
521 mutex_lock(&chip->lock);
522 ret = lp5521_run_selftest(chip, buf);
523 mutex_unlock(&chip->lock);
524 return sprintf(buf, "%s\n", ret ? "FAIL" : "OK");
525}
526
Kim, Milo011af7b2012-03-23 15:02:09 -0700527static void lp5521_clear_program_memory(struct i2c_client *cl)
528{
529 int i;
530 u8 rgb_mem[] = {
531 LP5521_REG_R_PROG_MEM,
532 LP5521_REG_G_PROG_MEM,
533 LP5521_REG_B_PROG_MEM,
534 };
535
536 for (i = 0; i < ARRAY_SIZE(rgb_mem); i++) {
537 lp5521_write(cl, rgb_mem[i], 0);
538 lp5521_write(cl, rgb_mem[i] + 1, 0);
539 }
540}
541
542static void lp5521_write_program_memory(struct i2c_client *cl,
543 u8 base, u8 *rgb, int size)
544{
545 int i;
546
547 if (!rgb || size <= 0)
548 return;
549
550 for (i = 0; i < size; i++)
551 lp5521_write(cl, base + i, *(rgb + i));
552
553 lp5521_write(cl, base + i, 0);
554 lp5521_write(cl, base + i + 1, 0);
555}
556
557static inline struct lp5521_led_pattern *lp5521_get_pattern
558 (struct lp5521_chip *chip, u8 offset)
559{
560 struct lp5521_led_pattern *ptn;
561 ptn = chip->pdata->patterns + (offset - 1);
562 return ptn;
563}
564
565static void lp5521_run_led_pattern(int mode, struct lp5521_chip *chip)
566{
567 struct lp5521_led_pattern *ptn;
568 struct i2c_client *cl = chip->client;
569 int num_patterns = chip->pdata->num_patterns;
570
571 if (mode > num_patterns || !(chip->pdata->patterns))
572 return;
573
574 if (mode == PATTERN_OFF) {
Kim, Milo32a2f742012-03-23 15:02:09 -0700575 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_DEFAULT);
Kim, Milo011af7b2012-03-23 15:02:09 -0700576 usleep_range(1000, 2000);
577 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
578 } else {
579 ptn = lp5521_get_pattern(chip, mode);
580 if (!ptn)
581 return;
582
583 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_LOAD);
584 usleep_range(1000, 2000);
585
586 lp5521_clear_program_memory(cl);
587
588 lp5521_write_program_memory(cl, LP5521_REG_R_PROG_MEM,
589 ptn->r, ptn->size_r);
590 lp5521_write_program_memory(cl, LP5521_REG_G_PROG_MEM,
591 ptn->g, ptn->size_g);
592 lp5521_write_program_memory(cl, LP5521_REG_B_PROG_MEM,
593 ptn->b, ptn->size_b);
594
595 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_RUN);
596 usleep_range(1000, 2000);
Kim, Milo32a2f742012-03-23 15:02:09 -0700597 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_RUN_PROGRAM);
Kim, Milo011af7b2012-03-23 15:02:09 -0700598 }
599}
600
601static ssize_t store_led_pattern(struct device *dev,
602 struct device_attribute *attr,
603 const char *buf, size_t len)
604{
605 struct lp5521_chip *chip = i2c_get_clientdata(to_i2c_client(dev));
606 unsigned long val;
607 int ret;
608
Jingoo Han69b44c12012-11-18 20:51:20 -0800609 ret = kstrtoul(buf, 16, &val);
Kim, Milo011af7b2012-03-23 15:02:09 -0700610 if (ret)
611 return ret;
612
613 lp5521_run_led_pattern(val, chip);
614
615 return len;
616}
617
Samu Onkalo500fe142010-11-11 14:05:22 -0800618/* led class device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700619static DEVICE_ATTR(led_current, S_IRUGO | S_IWUSR, show_current, store_current);
Samu Onkalo500fe142010-11-11 14:05:22 -0800620static DEVICE_ATTR(max_current, S_IRUGO , show_max_current, NULL);
621
622static struct attribute *lp5521_led_attributes[] = {
623 &dev_attr_led_current.attr,
624 &dev_attr_max_current.attr,
625 NULL,
626};
627
628static struct attribute_group lp5521_led_attribute_group = {
629 .attrs = lp5521_led_attributes
630};
631
632/* device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700633static DEVICE_ATTR(engine1_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800634 show_engine1_mode, store_engine1_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700635static DEVICE_ATTR(engine2_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800636 show_engine2_mode, store_engine2_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700637static DEVICE_ATTR(engine3_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800638 show_engine3_mode, store_engine3_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700639static DEVICE_ATTR(engine1_load, S_IWUSR, NULL, store_engine1_load);
640static DEVICE_ATTR(engine2_load, S_IWUSR, NULL, store_engine2_load);
641static DEVICE_ATTR(engine3_load, S_IWUSR, NULL, store_engine3_load);
Samu Onkalo500fe142010-11-11 14:05:22 -0800642static DEVICE_ATTR(selftest, S_IRUGO, lp5521_selftest, NULL);
Kim, Milo011af7b2012-03-23 15:02:09 -0700643static DEVICE_ATTR(led_pattern, S_IWUSR, NULL, store_led_pattern);
Samu Onkalo500fe142010-11-11 14:05:22 -0800644
645static struct attribute *lp5521_attributes[] = {
646 &dev_attr_engine1_mode.attr,
647 &dev_attr_engine2_mode.attr,
648 &dev_attr_engine3_mode.attr,
649 &dev_attr_selftest.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800650 &dev_attr_engine1_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800651 &dev_attr_engine2_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800652 &dev_attr_engine3_load.attr,
Kim, Milo011af7b2012-03-23 15:02:09 -0700653 &dev_attr_led_pattern.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800654 NULL
655};
656
657static const struct attribute_group lp5521_group = {
658 .attrs = lp5521_attributes,
659};
660
Samu Onkalo500fe142010-11-11 14:05:22 -0800661static int lp5521_register_sysfs(struct i2c_client *client)
662{
663 struct device *dev = &client->dev;
664 return sysfs_create_group(&dev->kobj, &lp5521_group);
665}
666
667static void lp5521_unregister_sysfs(struct i2c_client *client)
668{
669 struct lp5521_chip *chip = i2c_get_clientdata(client);
670 struct device *dev = &client->dev;
671 int i;
672
673 sysfs_remove_group(&dev->kobj, &lp5521_group);
674
Samu Onkalo500fe142010-11-11 14:05:22 -0800675 for (i = 0; i < chip->num_leds; i++)
676 sysfs_remove_group(&chip->leds[i].cdev.dev->kobj,
677 &lp5521_led_attribute_group);
678}
679
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900680static void lp5521_unregister_leds(struct lp5521_chip *chip)
681{
682 int i;
683
684 for (i = 0; i < chip->num_leds; i++) {
685 led_classdev_unregister(&chip->leds[i].cdev);
686 cancel_work_sync(&chip->leds[i].brightness_work);
687 }
688}
689
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900690/* Chip specific configurations */
691static struct lp55xx_device_config lp5521_cfg = {
692 .reset = {
693 .addr = LP5521_REG_RESET,
694 .val = LP5521_RESET,
695 },
Milo(Woogyom) Kime3a700d2013-02-05 18:09:56 +0900696 .enable = {
697 .addr = LP5521_REG_ENABLE,
698 .val = LP5521_ENABLE_DEFAULT,
699 },
Milo(Woogyom) Kim0e202342013-02-05 19:07:34 +0900700 .max_channel = LP5521_MAX_LEDS,
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +0900701 .post_init_device = lp5521_post_init_device,
Milo(Woogyom) Kima6e46792013-02-05 19:08:40 +0900702 .brightness_work_fn = lp5521_led_brightness_work,
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900703};
704
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500705static int lp5521_probe(struct i2c_client *client,
Samu Onkalo500fe142010-11-11 14:05:22 -0800706 const struct i2c_device_id *id)
707{
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900708 struct lp5521_chip *old_chip = NULL;
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900709 int ret;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900710 struct lp55xx_chip *chip;
711 struct lp55xx_led *led;
712 struct lp55xx_platform_data *pdata = client->dev.platform_data;
Samu Onkalo500fe142010-11-11 14:05:22 -0800713
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900714 if (!pdata) {
Samu Onkalo500fe142010-11-11 14:05:22 -0800715 dev_err(&client->dev, "no platform data\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800716 return -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800717 }
718
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900719 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
720 if (!chip)
721 return -ENOMEM;
Samu Onkalo500fe142010-11-11 14:05:22 -0800722
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900723 led = devm_kzalloc(&client->dev,
724 sizeof(*led) * pdata->num_channels, GFP_KERNEL);
725 if (!led)
726 return -ENOMEM;
727
728 chip->cl = client;
729 chip->pdata = pdata;
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900730 chip->cfg = &lp5521_cfg;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900731
732 mutex_init(&chip->lock);
733
734 i2c_set_clientdata(client, led);
Samu Onkalo500fe142010-11-11 14:05:22 -0800735
Milo(Woogyom) Kim22ebeb42013-02-05 18:58:35 +0900736 ret = lp55xx_init_device(chip);
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900737 if (ret)
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900738 goto err_init;
Samu Onkalo500fe142010-11-11 14:05:22 -0800739
740 dev_info(&client->dev, "%s programmable led chip found\n", id->name);
741
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +0900742 ret = lp55xx_register_leds(led, chip);
Milo(Woogyom) Kimf6524802013-02-05 17:53:40 +0900743 if (ret)
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +0900744 goto err_register_leds;
Samu Onkalo500fe142010-11-11 14:05:22 -0800745
746 ret = lp5521_register_sysfs(client);
747 if (ret) {
748 dev_err(&client->dev, "registering sysfs failed\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800749 goto fail2;
Samu Onkalo500fe142010-11-11 14:05:22 -0800750 }
751 return ret;
Bryan Wue430dc02012-07-04 11:16:09 +0800752fail2:
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900753 lp5521_unregister_leds(old_chip);
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +0900754err_register_leds:
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900755 lp55xx_deinit_device(chip);
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900756err_init:
Samu Onkalo500fe142010-11-11 14:05:22 -0800757 return ret;
758}
759
Bill Pemberton678e8a62012-11-19 13:26:00 -0500760static int lp5521_remove(struct i2c_client *client)
Samu Onkalo500fe142010-11-11 14:05:22 -0800761{
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900762 struct lp5521_chip *old_chip = i2c_get_clientdata(client);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900763 struct lp55xx_led *led = i2c_get_clientdata(client);
764 struct lp55xx_chip *chip = led->chip;
Samu Onkalo500fe142010-11-11 14:05:22 -0800765
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900766 lp5521_run_led_pattern(PATTERN_OFF, old_chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800767 lp5521_unregister_sysfs(client);
768
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900769 lp5521_unregister_leds(old_chip);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900770 lp55xx_deinit_device(chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800771
Samu Onkalo500fe142010-11-11 14:05:22 -0800772 return 0;
773}
774
775static const struct i2c_device_id lp5521_id[] = {
776 { "lp5521", 0 }, /* Three channel chip */
777 { }
778};
779MODULE_DEVICE_TABLE(i2c, lp5521_id);
780
781static struct i2c_driver lp5521_driver = {
782 .driver = {
783 .name = "lp5521",
784 },
785 .probe = lp5521_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500786 .remove = lp5521_remove,
Samu Onkalo500fe142010-11-11 14:05:22 -0800787 .id_table = lp5521_id,
788};
789
Axel Lin09a0d182012-01-10 15:09:27 -0800790module_i2c_driver(lp5521_driver);
Samu Onkalo500fe142010-11-11 14:05:22 -0800791
792MODULE_AUTHOR("Mathias Nyman, Yuri Zaporozhets, Samu Onkalo");
793MODULE_DESCRIPTION("LP5521 LED engine");
794MODULE_LICENSE("GPL v2");