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