blob: 0e27f7eb5d092c052a08a289e7a0097ec2b9b8ca [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
Samu Onkalod4e7ad02011-01-12 16:59:19 -0800241static int lp5521_configure(struct i2c_client *client)
Samu Onkalo500fe142010-11-11 14:05:22 -0800242{
243 struct lp5521_chip *chip = i2c_get_clientdata(client);
244 int ret;
Kim, Milo3b49aac2012-03-23 15:02:08 -0700245 u8 cfg;
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900246 u8 val;
Samu Onkalo500fe142010-11-11 14:05:22 -0800247
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900248 /*
249 * Make sure that the chip is reset by reading back the r channel
250 * current reg. This is dummy read is required on some platforms -
251 * otherwise further access to the R G B channels in the
252 * LP5521_REG_ENABLE register will not have any effect - strange!
253 */
254 ret = lp5521_read(client, LP5521_REG_R_CURRENT, &val);
255 if (ret) {
256 dev_err(&client->dev, "error in resetting chip\n");
257 return ret;
258 }
259 if (val != LP5521_REG_R_CURR_DEFAULT) {
260 dev_err(&client->dev,
261 "unexpected data in register (expected 0x%x got 0x%x)\n",
262 LP5521_REG_R_CURR_DEFAULT, val);
263 ret = -EINVAL;
264 return ret;
265 }
266 usleep_range(10000, 20000);
Samu Onkalo500fe142010-11-11 14:05:22 -0800267
Samu Onkalo500fe142010-11-11 14:05:22 -0800268 /* Set all PWMs to direct control mode */
Kim, Milo32a2f742012-03-23 15:02:09 -0700269 ret = lp5521_write(client, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
Samu Onkalo500fe142010-11-11 14:05:22 -0800270
Kim, Milo3b49aac2012-03-23 15:02:08 -0700271 cfg = chip->pdata->update_config ?
272 : (LP5521_PWRSAVE_EN | LP5521_CP_MODE_AUTO | LP5521_R_TO_BATT);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900273 ret = lp5521_write(client, LP5521_REG_CONFIG, cfg);
274 if (ret)
275 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800276
277 /* Initialize all channels PWM to zero -> leds off */
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900278 lp5521_write(client, LP5521_REG_R_PWM, 0);
279 lp5521_write(client, LP5521_REG_G_PWM, 0);
280 lp5521_write(client, LP5521_REG_B_PWM, 0);
Samu Onkalo500fe142010-11-11 14:05:22 -0800281
282 /* Set engines are set to run state when OP_MODE enables engines */
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900283 ret = lp5521_write(client, LP5521_REG_ENABLE,
Kim, Milo32a2f742012-03-23 15:02:09 -0700284 LP5521_ENABLE_RUN_PROGRAM);
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900285 if (ret)
286 return ret;
Samu Onkalo500fe142010-11-11 14:05:22 -0800287
Milo(Woogyom) Kim94482172013-02-05 18:03:55 +0900288 lp5521_wait_enable_done();
289
290 return 0;
Samu Onkalo500fe142010-11-11 14:05:22 -0800291}
292
293static int lp5521_run_selftest(struct lp5521_chip *chip, char *buf)
294{
295 int ret;
296 u8 status;
297
298 ret = lp5521_read(chip->client, LP5521_REG_STATUS, &status);
299 if (ret < 0)
300 return ret;
301
302 /* Check that ext clock is really in use if requested */
303 if (chip->pdata && chip->pdata->clock_mode == LP5521_CLOCK_EXT)
304 if ((status & LP5521_EXT_CLK_USED) == 0)
305 return -EIO;
306 return 0;
307}
308
309static void lp5521_set_brightness(struct led_classdev *cdev,
310 enum led_brightness brightness)
311{
312 struct lp5521_led *led = cdev_to_led(cdev);
313 led->brightness = (u8)brightness;
314 schedule_work(&led->brightness_work);
315}
316
317static void lp5521_led_brightness_work(struct work_struct *work)
318{
319 struct lp5521_led *led = container_of(work,
320 struct lp5521_led,
321 brightness_work);
322 struct lp5521_chip *chip = led_to_lp5521(led);
323 struct i2c_client *client = chip->client;
324
325 mutex_lock(&chip->lock);
326 lp5521_write(client, LP5521_REG_LED_PWM_BASE + led->chan_nr,
327 led->brightness);
328 mutex_unlock(&chip->lock);
329}
330
Samu Onkalo500fe142010-11-11 14:05:22 -0800331/* Set engine mode and create appropriate sysfs attributes, if required. */
332static int lp5521_set_mode(struct lp5521_engine *engine, u8 mode)
333{
Samu Onkalo500fe142010-11-11 14:05:22 -0800334 int ret = 0;
335
336 /* if in that mode already do nothing, except for run */
337 if (mode == engine->mode && mode != LP5521_CMD_RUN)
338 return 0;
339
340 if (mode == LP5521_CMD_RUN) {
341 ret = lp5521_set_engine_mode(engine, LP5521_CMD_RUN);
342 } else if (mode == LP5521_CMD_LOAD) {
343 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
344 lp5521_set_engine_mode(engine, LP5521_CMD_LOAD);
Samu Onkalo500fe142010-11-11 14:05:22 -0800345 } else if (mode == LP5521_CMD_DISABLED) {
346 lp5521_set_engine_mode(engine, LP5521_CMD_DISABLED);
347 }
348
Samu Onkalo500fe142010-11-11 14:05:22 -0800349 engine->mode = mode;
350
351 return ret;
352}
353
354static int lp5521_do_store_load(struct lp5521_engine *engine,
355 const char *buf, size_t len)
356{
357 struct lp5521_chip *chip = engine_to_lp5521(engine);
358 struct i2c_client *client = chip->client;
359 int ret, nrchars, offset = 0, i = 0;
360 char c[3];
361 unsigned cmd;
362 u8 pattern[LP5521_PROGRAM_LENGTH] = {0};
363
364 while ((offset < len - 1) && (i < LP5521_PROGRAM_LENGTH)) {
365 /* separate sscanfs because length is working only for %s */
366 ret = sscanf(buf + offset, "%2s%n ", c, &nrchars);
Vasiliy Kulikov22602092011-01-12 16:59:14 -0800367 if (ret != 2)
368 goto fail;
Samu Onkalo500fe142010-11-11 14:05:22 -0800369 ret = sscanf(c, "%2x", &cmd);
370 if (ret != 1)
371 goto fail;
372 pattern[i] = (u8)cmd;
373
374 offset += nrchars;
375 i++;
376 }
377
378 /* Each instruction is 16bit long. Check that length is even */
379 if (i % 2)
380 goto fail;
381
382 mutex_lock(&chip->lock);
Samu Onkalod4e7ad02011-01-12 16:59:19 -0800383 if (engine->mode == LP5521_CMD_LOAD)
384 ret = lp5521_load_program(engine, pattern);
385 else
386 ret = -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800387 mutex_unlock(&chip->lock);
388
389 if (ret) {
390 dev_err(&client->dev, "failed loading pattern\n");
391 return ret;
392 }
393
394 return len;
395fail:
396 dev_err(&client->dev, "wrong pattern format\n");
397 return -EINVAL;
398}
399
400static ssize_t store_engine_load(struct device *dev,
401 struct device_attribute *attr,
402 const char *buf, size_t len, int nr)
403{
404 struct i2c_client *client = to_i2c_client(dev);
405 struct lp5521_chip *chip = i2c_get_clientdata(client);
406 return lp5521_do_store_load(&chip->engines[nr - 1], buf, len);
407}
408
409#define store_load(nr) \
410static ssize_t store_engine##nr##_load(struct device *dev, \
411 struct device_attribute *attr, \
412 const char *buf, size_t len) \
413{ \
414 return store_engine_load(dev, attr, buf, len, nr); \
415}
416store_load(1)
417store_load(2)
418store_load(3)
419
420static ssize_t show_engine_mode(struct device *dev,
421 struct device_attribute *attr,
422 char *buf, int nr)
423{
424 struct i2c_client *client = to_i2c_client(dev);
425 struct lp5521_chip *chip = i2c_get_clientdata(client);
426 switch (chip->engines[nr - 1].mode) {
427 case LP5521_CMD_RUN:
428 return sprintf(buf, "run\n");
429 case LP5521_CMD_LOAD:
430 return sprintf(buf, "load\n");
431 case LP5521_CMD_DISABLED:
432 return sprintf(buf, "disabled\n");
433 default:
434 return sprintf(buf, "disabled\n");
435 }
436}
437
438#define show_mode(nr) \
439static ssize_t show_engine##nr##_mode(struct device *dev, \
440 struct device_attribute *attr, \
441 char *buf) \
442{ \
443 return show_engine_mode(dev, attr, buf, nr); \
444}
445show_mode(1)
446show_mode(2)
447show_mode(3)
448
449static ssize_t store_engine_mode(struct device *dev,
450 struct device_attribute *attr,
451 const char *buf, size_t len, int nr)
452{
453 struct i2c_client *client = to_i2c_client(dev);
454 struct lp5521_chip *chip = i2c_get_clientdata(client);
455 struct lp5521_engine *engine = &chip->engines[nr - 1];
456 mutex_lock(&chip->lock);
457
458 if (!strncmp(buf, "run", 3))
459 lp5521_set_mode(engine, LP5521_CMD_RUN);
460 else if (!strncmp(buf, "load", 4))
461 lp5521_set_mode(engine, LP5521_CMD_LOAD);
462 else if (!strncmp(buf, "disabled", 8))
463 lp5521_set_mode(engine, LP5521_CMD_DISABLED);
464
465 mutex_unlock(&chip->lock);
466 return len;
467}
468
469#define store_mode(nr) \
470static ssize_t store_engine##nr##_mode(struct device *dev, \
471 struct device_attribute *attr, \
472 const char *buf, size_t len) \
473{ \
474 return store_engine_mode(dev, attr, buf, len, nr); \
475}
476store_mode(1)
477store_mode(2)
478store_mode(3)
479
480static ssize_t show_max_current(struct device *dev,
481 struct device_attribute *attr,
482 char *buf)
483{
484 struct led_classdev *led_cdev = dev_get_drvdata(dev);
485 struct lp5521_led *led = cdev_to_led(led_cdev);
486
487 return sprintf(buf, "%d\n", led->max_current);
488}
489
490static ssize_t show_current(struct device *dev,
491 struct device_attribute *attr,
492 char *buf)
493{
494 struct led_classdev *led_cdev = dev_get_drvdata(dev);
495 struct lp5521_led *led = cdev_to_led(led_cdev);
496
497 return sprintf(buf, "%d\n", led->led_current);
498}
499
500static ssize_t store_current(struct device *dev,
501 struct device_attribute *attr,
502 const char *buf, size_t len)
503{
504 struct led_classdev *led_cdev = dev_get_drvdata(dev);
505 struct lp5521_led *led = cdev_to_led(led_cdev);
506 struct lp5521_chip *chip = led_to_lp5521(led);
507 ssize_t ret;
508 unsigned long curr;
509
Kim, Milo011af7b2012-03-23 15:02:09 -0700510 if (kstrtoul(buf, 0, &curr))
Samu Onkalo500fe142010-11-11 14:05:22 -0800511 return -EINVAL;
512
513 if (curr > led->max_current)
514 return -EINVAL;
515
516 mutex_lock(&chip->lock);
517 ret = lp5521_set_led_current(chip, led->id, curr);
518 mutex_unlock(&chip->lock);
519
520 if (ret < 0)
521 return ret;
522
523 led->led_current = (u8)curr;
524
525 return len;
526}
527
528static ssize_t lp5521_selftest(struct device *dev,
529 struct device_attribute *attr,
530 char *buf)
531{
532 struct i2c_client *client = to_i2c_client(dev);
533 struct lp5521_chip *chip = i2c_get_clientdata(client);
534 int ret;
535
536 mutex_lock(&chip->lock);
537 ret = lp5521_run_selftest(chip, buf);
538 mutex_unlock(&chip->lock);
539 return sprintf(buf, "%s\n", ret ? "FAIL" : "OK");
540}
541
Kim, Milo011af7b2012-03-23 15:02:09 -0700542static void lp5521_clear_program_memory(struct i2c_client *cl)
543{
544 int i;
545 u8 rgb_mem[] = {
546 LP5521_REG_R_PROG_MEM,
547 LP5521_REG_G_PROG_MEM,
548 LP5521_REG_B_PROG_MEM,
549 };
550
551 for (i = 0; i < ARRAY_SIZE(rgb_mem); i++) {
552 lp5521_write(cl, rgb_mem[i], 0);
553 lp5521_write(cl, rgb_mem[i] + 1, 0);
554 }
555}
556
557static void lp5521_write_program_memory(struct i2c_client *cl,
558 u8 base, u8 *rgb, int size)
559{
560 int i;
561
562 if (!rgb || size <= 0)
563 return;
564
565 for (i = 0; i < size; i++)
566 lp5521_write(cl, base + i, *(rgb + i));
567
568 lp5521_write(cl, base + i, 0);
569 lp5521_write(cl, base + i + 1, 0);
570}
571
572static inline struct lp5521_led_pattern *lp5521_get_pattern
573 (struct lp5521_chip *chip, u8 offset)
574{
575 struct lp5521_led_pattern *ptn;
576 ptn = chip->pdata->patterns + (offset - 1);
577 return ptn;
578}
579
580static void lp5521_run_led_pattern(int mode, struct lp5521_chip *chip)
581{
582 struct lp5521_led_pattern *ptn;
583 struct i2c_client *cl = chip->client;
584 int num_patterns = chip->pdata->num_patterns;
585
586 if (mode > num_patterns || !(chip->pdata->patterns))
587 return;
588
589 if (mode == PATTERN_OFF) {
Kim, Milo32a2f742012-03-23 15:02:09 -0700590 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_DEFAULT);
Kim, Milo011af7b2012-03-23 15:02:09 -0700591 usleep_range(1000, 2000);
592 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_DIRECT);
593 } else {
594 ptn = lp5521_get_pattern(chip, mode);
595 if (!ptn)
596 return;
597
598 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_LOAD);
599 usleep_range(1000, 2000);
600
601 lp5521_clear_program_memory(cl);
602
603 lp5521_write_program_memory(cl, LP5521_REG_R_PROG_MEM,
604 ptn->r, ptn->size_r);
605 lp5521_write_program_memory(cl, LP5521_REG_G_PROG_MEM,
606 ptn->g, ptn->size_g);
607 lp5521_write_program_memory(cl, LP5521_REG_B_PROG_MEM,
608 ptn->b, ptn->size_b);
609
610 lp5521_write(cl, LP5521_REG_OP_MODE, LP5521_CMD_RUN);
611 usleep_range(1000, 2000);
Kim, Milo32a2f742012-03-23 15:02:09 -0700612 lp5521_write(cl, LP5521_REG_ENABLE, LP5521_ENABLE_RUN_PROGRAM);
Kim, Milo011af7b2012-03-23 15:02:09 -0700613 }
614}
615
616static ssize_t store_led_pattern(struct device *dev,
617 struct device_attribute *attr,
618 const char *buf, size_t len)
619{
620 struct lp5521_chip *chip = i2c_get_clientdata(to_i2c_client(dev));
621 unsigned long val;
622 int ret;
623
Jingoo Han69b44c12012-11-18 20:51:20 -0800624 ret = kstrtoul(buf, 16, &val);
Kim, Milo011af7b2012-03-23 15:02:09 -0700625 if (ret)
626 return ret;
627
628 lp5521_run_led_pattern(val, chip);
629
630 return len;
631}
632
Samu Onkalo500fe142010-11-11 14:05:22 -0800633/* led class device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700634static DEVICE_ATTR(led_current, S_IRUGO | S_IWUSR, show_current, store_current);
Samu Onkalo500fe142010-11-11 14:05:22 -0800635static DEVICE_ATTR(max_current, S_IRUGO , show_max_current, NULL);
636
637static struct attribute *lp5521_led_attributes[] = {
638 &dev_attr_led_current.attr,
639 &dev_attr_max_current.attr,
640 NULL,
641};
642
643static struct attribute_group lp5521_led_attribute_group = {
644 .attrs = lp5521_led_attributes
645};
646
647/* device attributes */
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700648static DEVICE_ATTR(engine1_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800649 show_engine1_mode, store_engine1_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700650static DEVICE_ATTR(engine2_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800651 show_engine2_mode, store_engine2_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700652static DEVICE_ATTR(engine3_mode, S_IRUGO | S_IWUSR,
Samu Onkalo500fe142010-11-11 14:05:22 -0800653 show_engine3_mode, store_engine3_mode);
Vasiliy Kulikov67d1da72011-03-22 16:30:19 -0700654static DEVICE_ATTR(engine1_load, S_IWUSR, NULL, store_engine1_load);
655static DEVICE_ATTR(engine2_load, S_IWUSR, NULL, store_engine2_load);
656static DEVICE_ATTR(engine3_load, S_IWUSR, NULL, store_engine3_load);
Samu Onkalo500fe142010-11-11 14:05:22 -0800657static DEVICE_ATTR(selftest, S_IRUGO, lp5521_selftest, NULL);
Kim, Milo011af7b2012-03-23 15:02:09 -0700658static DEVICE_ATTR(led_pattern, S_IWUSR, NULL, store_led_pattern);
Samu Onkalo500fe142010-11-11 14:05:22 -0800659
660static struct attribute *lp5521_attributes[] = {
661 &dev_attr_engine1_mode.attr,
662 &dev_attr_engine2_mode.attr,
663 &dev_attr_engine3_mode.attr,
664 &dev_attr_selftest.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800665 &dev_attr_engine1_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800666 &dev_attr_engine2_load.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800667 &dev_attr_engine3_load.attr,
Kim, Milo011af7b2012-03-23 15:02:09 -0700668 &dev_attr_led_pattern.attr,
Samu Onkalo500fe142010-11-11 14:05:22 -0800669 NULL
670};
671
672static const struct attribute_group lp5521_group = {
673 .attrs = lp5521_attributes,
674};
675
Samu Onkalo500fe142010-11-11 14:05:22 -0800676static int lp5521_register_sysfs(struct i2c_client *client)
677{
678 struct device *dev = &client->dev;
679 return sysfs_create_group(&dev->kobj, &lp5521_group);
680}
681
682static void lp5521_unregister_sysfs(struct i2c_client *client)
683{
684 struct lp5521_chip *chip = i2c_get_clientdata(client);
685 struct device *dev = &client->dev;
686 int i;
687
688 sysfs_remove_group(&dev->kobj, &lp5521_group);
689
Samu Onkalo500fe142010-11-11 14:05:22 -0800690 for (i = 0; i < chip->num_leds; i++)
691 sysfs_remove_group(&chip->leds[i].cdev.dev->kobj,
692 &lp5521_led_attribute_group);
693}
694
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900695static void lp5521_deinit_device(struct lp5521_chip *chip);
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900696static int lp5521_init_device(struct lp5521_chip *chip)
697{
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900698 struct i2c_client *client = chip->client;
699 int ret;
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900700
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900701 ret = lp5521_configure(client);
702 if (ret < 0) {
703 dev_err(&client->dev, "error configuring chip\n");
704 goto err_config;
705 }
706
707 return 0;
708
709err_config:
710 lp5521_deinit_device(chip);
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900711 return ret;
712}
713
Milo(Woogyom) Kim1a991482013-02-05 17:50:36 +0900714static void lp5521_deinit_device(struct lp5521_chip *chip)
715{
716 struct lp5521_platform_data *pdata = chip->pdata;
717
718 if (pdata->enable)
719 pdata->enable(0);
720 if (pdata->release_resources)
721 pdata->release_resources();
722}
723
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500724static int lp5521_init_led(struct lp5521_led *led,
Samu Onkalo500fe142010-11-11 14:05:22 -0800725 struct i2c_client *client,
726 int chan, struct lp5521_platform_data *pdata)
727{
728 struct device *dev = &client->dev;
729 char name[32];
730 int res;
731
732 if (chan >= LP5521_MAX_LEDS)
733 return -EINVAL;
734
735 if (pdata->led_config[chan].led_current == 0)
736 return 0;
737
738 led->led_current = pdata->led_config[chan].led_current;
739 led->max_current = pdata->led_config[chan].max_current;
740 led->chan_nr = pdata->led_config[chan].chan_nr;
741
742 if (led->chan_nr >= LP5521_MAX_LEDS) {
743 dev_err(dev, "Use channel numbers between 0 and %d\n",
744 LP5521_MAX_LEDS - 1);
745 return -EINVAL;
746 }
747
Samu Onkalo500fe142010-11-11 14:05:22 -0800748 led->cdev.brightness_set = lp5521_set_brightness;
Kim, Milo5ae4e8a2012-03-23 15:02:08 -0700749 if (pdata->led_config[chan].name) {
750 led->cdev.name = pdata->led_config[chan].name;
751 } else {
752 snprintf(name, sizeof(name), "%s:channel%d",
753 pdata->label ?: client->name, chan);
754 led->cdev.name = name;
755 }
756
Samu Onkalo500fe142010-11-11 14:05:22 -0800757 res = led_classdev_register(dev, &led->cdev);
758 if (res < 0) {
759 dev_err(dev, "couldn't register led on channel %d\n", chan);
760 return res;
761 }
762
763 res = sysfs_create_group(&led->cdev.dev->kobj,
764 &lp5521_led_attribute_group);
765 if (res < 0) {
766 dev_err(dev, "couldn't register current attribute\n");
767 led_classdev_unregister(&led->cdev);
768 return res;
769 }
770 return 0;
771}
772
Milo(Woogyom) Kimf6524802013-02-05 17:53:40 +0900773static int lp5521_register_leds(struct lp5521_chip *chip)
774{
775 struct lp5521_platform_data *pdata = chip->pdata;
776 struct i2c_client *client = chip->client;
777 int i;
778 int led;
779 int ret;
780
781 /* Initialize leds */
782 chip->num_channels = pdata->num_channels;
783 chip->num_leds = 0;
784 led = 0;
785 for (i = 0; i < pdata->num_channels; i++) {
786 /* Do not initialize channels that are not connected */
787 if (pdata->led_config[i].led_current == 0)
788 continue;
789
790 ret = lp5521_init_led(&chip->leds[led], client, i, pdata);
791 if (ret) {
792 dev_err(&client->dev, "error initializing leds\n");
793 return ret;
794 }
795 chip->num_leds++;
796
797 chip->leds[led].id = led;
798 /* Set initial LED current */
799 lp5521_set_led_current(chip, led,
800 chip->leds[led].led_current);
801
802 INIT_WORK(&(chip->leds[led].brightness_work),
803 lp5521_led_brightness_work);
804
805 led++;
806 }
807
808 return 0;
809}
810
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900811static void lp5521_unregister_leds(struct lp5521_chip *chip)
812{
813 int i;
814
815 for (i = 0; i < chip->num_leds; i++) {
816 led_classdev_unregister(&chip->leds[i].cdev);
817 cancel_work_sync(&chip->leds[i].brightness_work);
818 }
819}
820
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900821/* Chip specific configurations */
822static struct lp55xx_device_config lp5521_cfg = {
823 .reset = {
824 .addr = LP5521_REG_RESET,
825 .val = LP5521_RESET,
826 },
Milo(Woogyom) Kime3a700d2013-02-05 18:09:56 +0900827 .enable = {
828 .addr = LP5521_REG_ENABLE,
829 .val = LP5521_ENABLE_DEFAULT,
830 },
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900831};
832
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500833static int lp5521_probe(struct i2c_client *client,
Samu Onkalo500fe142010-11-11 14:05:22 -0800834 const struct i2c_device_id *id)
835{
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900836 struct lp5521_chip *old_chip = NULL;
Milo(Woogyom) Kim1904f832013-02-05 17:56:23 +0900837 int ret;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900838 struct lp55xx_chip *chip;
839 struct lp55xx_led *led;
840 struct lp55xx_platform_data *pdata = client->dev.platform_data;
Samu Onkalo500fe142010-11-11 14:05:22 -0800841
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900842 if (!pdata) {
Samu Onkalo500fe142010-11-11 14:05:22 -0800843 dev_err(&client->dev, "no platform data\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800844 return -EINVAL;
Samu Onkalo500fe142010-11-11 14:05:22 -0800845 }
846
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900847 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
848 if (!chip)
849 return -ENOMEM;
Samu Onkalo500fe142010-11-11 14:05:22 -0800850
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900851 led = devm_kzalloc(&client->dev,
852 sizeof(*led) * pdata->num_channels, GFP_KERNEL);
853 if (!led)
854 return -ENOMEM;
855
856 chip->cl = client;
857 chip->pdata = pdata;
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +0900858 chip->cfg = &lp5521_cfg;
Milo(Woogyom) Kim6a0c9a42013-02-05 18:03:08 +0900859
860 mutex_init(&chip->lock);
861
862 i2c_set_clientdata(client, led);
Samu Onkalo500fe142010-11-11 14:05:22 -0800863
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900864 ret = lp5521_init_device(old_chip);
Milo(Woogyom) Kim944f7b12013-02-05 17:49:46 +0900865 if (ret)
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900866 goto err_init;
Samu Onkalo500fe142010-11-11 14:05:22 -0800867
868 dev_info(&client->dev, "%s programmable led chip found\n", id->name);
869
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900870 ret = lp5521_register_leds(old_chip);
Milo(Woogyom) Kimf6524802013-02-05 17:53:40 +0900871 if (ret)
872 goto fail2;
Samu Onkalo500fe142010-11-11 14:05:22 -0800873
874 ret = lp5521_register_sysfs(client);
875 if (ret) {
876 dev_err(&client->dev, "registering sysfs failed\n");
Bryan Wue430dc02012-07-04 11:16:09 +0800877 goto fail2;
Samu Onkalo500fe142010-11-11 14:05:22 -0800878 }
879 return ret;
Bryan Wue430dc02012-07-04 11:16:09 +0800880fail2:
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900881 lp5521_unregister_leds(old_chip);
882 lp5521_deinit_device(old_chip);
Milo(Woogyom) Kimf6c64c62013-02-05 17:58:01 +0900883err_init:
Samu Onkalo500fe142010-11-11 14:05:22 -0800884 return ret;
885}
886
Bill Pemberton678e8a62012-11-19 13:26:00 -0500887static int lp5521_remove(struct i2c_client *client)
Samu Onkalo500fe142010-11-11 14:05:22 -0800888{
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900889 struct lp5521_chip *old_chip = i2c_get_clientdata(client);
Samu Onkalo500fe142010-11-11 14:05:22 -0800890
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900891 lp5521_run_led_pattern(PATTERN_OFF, old_chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800892 lp5521_unregister_sysfs(client);
893
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900894 lp5521_unregister_leds(old_chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800895
Milo(Woogyom) Kim945c7002013-02-05 18:02:26 +0900896 lp5521_deinit_device(old_chip);
Samu Onkalo500fe142010-11-11 14:05:22 -0800897 return 0;
898}
899
900static const struct i2c_device_id lp5521_id[] = {
901 { "lp5521", 0 }, /* Three channel chip */
902 { }
903};
904MODULE_DEVICE_TABLE(i2c, lp5521_id);
905
906static struct i2c_driver lp5521_driver = {
907 .driver = {
908 .name = "lp5521",
909 },
910 .probe = lp5521_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500911 .remove = lp5521_remove,
Samu Onkalo500fe142010-11-11 14:05:22 -0800912 .id_table = lp5521_id,
913};
914
Axel Lin09a0d182012-01-10 15:09:27 -0800915module_i2c_driver(lp5521_driver);
Samu Onkalo500fe142010-11-11 14:05:22 -0800916
917MODULE_AUTHOR("Mathias Nyman, Yuri Zaporozhets, Samu Onkalo");
918MODULE_DESCRIPTION("LP5521 LED engine");
919MODULE_LICENSE("GPL v2");