|
@@ -49,6 +49,9 @@
|
|
|
#define LP5523_REG_RESET 0x3D
|
|
|
#define LP5523_REG_LED_TEST_CTRL 0x41
|
|
|
#define LP5523_REG_LED_TEST_ADC 0x42
|
|
|
+#define LP5523_REG_CH1_PROG_START 0x4C
|
|
|
+#define LP5523_REG_CH2_PROG_START 0x4D
|
|
|
+#define LP5523_REG_CH3_PROG_START 0x4E
|
|
|
#define LP5523_REG_PROG_PAGE_SEL 0x4F
|
|
|
#define LP5523_REG_PROG_MEM 0x50
|
|
|
|
|
@@ -65,11 +68,15 @@
|
|
|
#define LP5523_RESET 0xFF
|
|
|
#define LP5523_ADC_SHORTCIRC_LIM 80
|
|
|
#define LP5523_EXT_CLK_USED 0x08
|
|
|
+#define LP5523_ENG_STATUS_MASK 0x07
|
|
|
|
|
|
/* Memory Page Selection */
|
|
|
#define LP5523_PAGE_ENG1 0
|
|
|
#define LP5523_PAGE_ENG2 1
|
|
|
#define LP5523_PAGE_ENG3 2
|
|
|
+#define LP5523_PAGE_MUX1 3
|
|
|
+#define LP5523_PAGE_MUX2 4
|
|
|
+#define LP5523_PAGE_MUX3 5
|
|
|
|
|
|
/* Program Memory Operations */
|
|
|
#define LP5523_MODE_ENG1_M 0x30 /* Operation Mode Register */
|
|
@@ -94,11 +101,15 @@
|
|
|
#define LP5523_RUN_ENG2 0x08
|
|
|
#define LP5523_RUN_ENG3 0x02
|
|
|
|
|
|
+#define LED_ACTIVE(mux, led) (!!(mux & (0x0001 << led)))
|
|
|
+
|
|
|
enum lp5523_chip_id {
|
|
|
LP5523,
|
|
|
LP55231,
|
|
|
};
|
|
|
|
|
|
+static int lp5523_init_program_engine(struct lp55xx_chip *chip);
|
|
|
+
|
|
|
static inline void lp5523_wait_opmode_done(void)
|
|
|
{
|
|
|
usleep_range(1000, 2000);
|
|
@@ -134,7 +145,11 @@ static int lp5523_post_init_device(struct lp55xx_chip *chip)
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
|
- return lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_LSB, 0xff);
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_LSB, 0xff);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ return lp5523_init_program_engine(chip);
|
|
|
}
|
|
|
|
|
|
static void lp5523_load_engine(struct lp55xx_chip *chip)
|
|
@@ -152,15 +167,21 @@ static void lp5523_load_engine(struct lp55xx_chip *chip)
|
|
|
[LP55XX_ENGINE_3] = LP5523_LOAD_ENG3,
|
|
|
};
|
|
|
|
|
|
+ lp55xx_update_bits(chip, LP5523_REG_OP_MODE, mask[idx], val[idx]);
|
|
|
+
|
|
|
+ lp5523_wait_opmode_done();
|
|
|
+}
|
|
|
+
|
|
|
+static void lp5523_load_engine_and_select_page(struct lp55xx_chip *chip)
|
|
|
+{
|
|
|
+ enum lp55xx_engine_index idx = chip->engine_idx;
|
|
|
u8 page_sel[] = {
|
|
|
[LP55XX_ENGINE_1] = LP5523_PAGE_ENG1,
|
|
|
[LP55XX_ENGINE_2] = LP5523_PAGE_ENG2,
|
|
|
[LP55XX_ENGINE_3] = LP5523_PAGE_ENG3,
|
|
|
};
|
|
|
|
|
|
- lp55xx_update_bits(chip, LP5523_REG_OP_MODE, mask[idx], val[idx]);
|
|
|
-
|
|
|
- lp5523_wait_opmode_done();
|
|
|
+ lp5523_load_engine(chip);
|
|
|
|
|
|
lp55xx_write(chip, LP5523_REG_PROG_PAGE_SEL, page_sel[idx]);
|
|
|
}
|
|
@@ -227,23 +248,75 @@ static void lp5523_run_engine(struct lp55xx_chip *chip, bool start)
|
|
|
lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec);
|
|
|
}
|
|
|
|
|
|
+static int lp5523_init_program_engine(struct lp55xx_chip *chip)
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ int j;
|
|
|
+ int ret;
|
|
|
+ u8 status;
|
|
|
+ /* one pattern per engine setting LED MUX start and stop addresses */
|
|
|
+ static const u8 pattern[][LP5523_PROGRAM_LENGTH] = {
|
|
|
+ { 0x9c, 0x30, 0x9c, 0xb0, 0x9d, 0x80, 0xd8, 0x00, 0},
|
|
|
+ { 0x9c, 0x40, 0x9c, 0xc0, 0x9d, 0x80, 0xd8, 0x00, 0},
|
|
|
+ { 0x9c, 0x50, 0x9c, 0xd0, 0x9d, 0x80, 0xd8, 0x00, 0},
|
|
|
+ };
|
|
|
+
|
|
|
+ /* hardcode 32 bytes of memory for each engine from program memory */
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_CH1_PROG_START, 0x00);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_CH2_PROG_START, 0x10);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_CH3_PROG_START, 0x20);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ /* write LED MUX address space for each engine */
|
|
|
+ for (i = LP55XX_ENGINE_1; i <= LP55XX_ENGINE_3; i++) {
|
|
|
+ chip->engine_idx = i;
|
|
|
+ lp5523_load_engine_and_select_page(chip);
|
|
|
+
|
|
|
+ for (j = 0; j < LP5523_PROGRAM_LENGTH; j++) {
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_PROG_MEM + j,
|
|
|
+ pattern[i - 1][j]);
|
|
|
+ if (ret)
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ lp5523_run_engine(chip, true);
|
|
|
+
|
|
|
+ /* Let the programs run for couple of ms and check the engine status */
|
|
|
+ usleep_range(3000, 6000);
|
|
|
+ lp55xx_read(chip, LP5523_REG_STATUS, &status);
|
|
|
+ status &= LP5523_ENG_STATUS_MASK;
|
|
|
+
|
|
|
+ if (status != LP5523_ENG_STATUS_MASK) {
|
|
|
+ dev_err(&chip->cl->dev,
|
|
|
+ "cound not configure LED engine, status = 0x%.2x\n",
|
|
|
+ status);
|
|
|
+ ret = -1;
|
|
|
+ }
|
|
|
+
|
|
|
+out:
|
|
|
+ lp5523_stop_engine(chip);
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
static int lp5523_update_program_memory(struct lp55xx_chip *chip,
|
|
|
const u8 *data, size_t size)
|
|
|
{
|
|
|
u8 pattern[LP5523_PROGRAM_LENGTH] = {0};
|
|
|
unsigned cmd;
|
|
|
char c[3];
|
|
|
- int update_size;
|
|
|
int nrchars;
|
|
|
- int offset = 0;
|
|
|
int ret;
|
|
|
- int i;
|
|
|
-
|
|
|
- /* clear program memory before updating */
|
|
|
- for (i = 0; i < LP5523_PROGRAM_LENGTH; i++)
|
|
|
- lp55xx_write(chip, LP5523_REG_PROG_MEM + i, 0);
|
|
|
+ int offset = 0;
|
|
|
+ int i = 0;
|
|
|
|
|
|
- i = 0;
|
|
|
while ((offset < size - 1) && (i < LP5523_PROGRAM_LENGTH)) {
|
|
|
/* separate sscanfs because length is working only for %s */
|
|
|
ret = sscanf(data + offset, "%2s%n ", c, &nrchars);
|
|
@@ -263,11 +336,19 @@ static int lp5523_update_program_memory(struct lp55xx_chip *chip,
|
|
|
if (i % 2)
|
|
|
goto err;
|
|
|
|
|
|
- update_size = i;
|
|
|
- for (i = 0; i < update_size; i++)
|
|
|
- lp55xx_write(chip, LP5523_REG_PROG_MEM + i, pattern[i]);
|
|
|
+ mutex_lock(&chip->lock);
|
|
|
|
|
|
- return 0;
|
|
|
+ for (i = 0; i < LP5523_PROGRAM_LENGTH; i++) {
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_PROG_MEM + i, pattern[i]);
|
|
|
+ if (ret) {
|
|
|
+ mutex_unlock(&chip->lock);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ mutex_unlock(&chip->lock);
|
|
|
+
|
|
|
+ return size;
|
|
|
|
|
|
err:
|
|
|
dev_err(&chip->cl->dev, "wrong pattern format\n");
|
|
@@ -290,10 +371,196 @@ static void lp5523_firmware_loaded(struct lp55xx_chip *chip)
|
|
|
* 2) write firmware data into program memory
|
|
|
*/
|
|
|
|
|
|
- lp5523_load_engine(chip);
|
|
|
+ lp5523_load_engine_and_select_page(chip);
|
|
|
lp5523_update_program_memory(chip, fw->data, fw->size);
|
|
|
}
|
|
|
|
|
|
+static ssize_t show_engine_mode(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ char *buf, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
+ struct lp55xx_chip *chip = led->chip;
|
|
|
+ enum lp55xx_engine_mode mode = chip->engines[nr - 1].mode;
|
|
|
+
|
|
|
+ switch (mode) {
|
|
|
+ case LP55XX_ENGINE_RUN:
|
|
|
+ return sprintf(buf, "run\n");
|
|
|
+ case LP55XX_ENGINE_LOAD:
|
|
|
+ return sprintf(buf, "load\n");
|
|
|
+ case LP55XX_ENGINE_DISABLED:
|
|
|
+ default:
|
|
|
+ return sprintf(buf, "disabled\n");
|
|
|
+ }
|
|
|
+}
|
|
|
+show_mode(1)
|
|
|
+show_mode(2)
|
|
|
+show_mode(3)
|
|
|
+
|
|
|
+static ssize_t store_engine_mode(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ const char *buf, size_t len, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
+ struct lp55xx_chip *chip = led->chip;
|
|
|
+ struct lp55xx_engine *engine = &chip->engines[nr - 1];
|
|
|
+
|
|
|
+ mutex_lock(&chip->lock);
|
|
|
+
|
|
|
+ chip->engine_idx = nr;
|
|
|
+
|
|
|
+ if (!strncmp(buf, "run", 3)) {
|
|
|
+ lp5523_run_engine(chip, true);
|
|
|
+ engine->mode = LP55XX_ENGINE_RUN;
|
|
|
+ } else if (!strncmp(buf, "load", 4)) {
|
|
|
+ lp5523_stop_engine(chip);
|
|
|
+ lp5523_load_engine(chip);
|
|
|
+ engine->mode = LP55XX_ENGINE_LOAD;
|
|
|
+ } else if (!strncmp(buf, "disabled", 8)) {
|
|
|
+ lp5523_stop_engine(chip);
|
|
|
+ engine->mode = LP55XX_ENGINE_DISABLED;
|
|
|
+ }
|
|
|
+
|
|
|
+ mutex_unlock(&chip->lock);
|
|
|
+
|
|
|
+ return len;
|
|
|
+}
|
|
|
+store_mode(1)
|
|
|
+store_mode(2)
|
|
|
+store_mode(3)
|
|
|
+
|
|
|
+static int lp5523_mux_parse(const char *buf, u16 *mux, size_t len)
|
|
|
+{
|
|
|
+ u16 tmp_mux = 0;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ len = min_t(int, len, LP5523_MAX_LEDS);
|
|
|
+
|
|
|
+ for (i = 0; i < len; i++) {
|
|
|
+ switch (buf[i]) {
|
|
|
+ case '1':
|
|
|
+ tmp_mux |= (1 << i);
|
|
|
+ break;
|
|
|
+ case '0':
|
|
|
+ break;
|
|
|
+ case '\n':
|
|
|
+ i = len;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ *mux = tmp_mux;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void lp5523_mux_to_array(u16 led_mux, char *array)
|
|
|
+{
|
|
|
+ int i, pos = 0;
|
|
|
+ for (i = 0; i < LP5523_MAX_LEDS; i++)
|
|
|
+ pos += sprintf(array + pos, "%x", LED_ACTIVE(led_mux, i));
|
|
|
+
|
|
|
+ array[pos] = '\0';
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t show_engine_leds(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ char *buf, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
+ struct lp55xx_chip *chip = led->chip;
|
|
|
+ char mux[LP5523_MAX_LEDS + 1];
|
|
|
+
|
|
|
+ lp5523_mux_to_array(chip->engines[nr - 1].led_mux, mux);
|
|
|
+
|
|
|
+ return sprintf(buf, "%s\n", mux);
|
|
|
+}
|
|
|
+show_leds(1)
|
|
|
+show_leds(2)
|
|
|
+show_leds(3)
|
|
|
+
|
|
|
+static int lp5523_load_mux(struct lp55xx_chip *chip, u16 mux, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_engine *engine = &chip->engines[nr - 1];
|
|
|
+ int ret;
|
|
|
+ u8 mux_page[] = {
|
|
|
+ [LP55XX_ENGINE_1] = LP5523_PAGE_MUX1,
|
|
|
+ [LP55XX_ENGINE_2] = LP5523_PAGE_MUX2,
|
|
|
+ [LP55XX_ENGINE_3] = LP5523_PAGE_MUX3,
|
|
|
+ };
|
|
|
+
|
|
|
+ lp5523_load_engine(chip);
|
|
|
+
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_PROG_PAGE_SEL, mux_page[nr]);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_PROG_MEM , (u8)(mux >> 8));
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ ret = lp55xx_write(chip, LP5523_REG_PROG_MEM + 1, (u8)(mux));
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ engine->led_mux = mux;
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t store_engine_leds(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ const char *buf, size_t len, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
+ struct lp55xx_chip *chip = led->chip;
|
|
|
+ struct lp55xx_engine *engine = &chip->engines[nr - 1];
|
|
|
+ u16 mux = 0;
|
|
|
+ ssize_t ret;
|
|
|
+
|
|
|
+ if (lp5523_mux_parse(buf, &mux, len))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ mutex_lock(&chip->lock);
|
|
|
+
|
|
|
+ chip->engine_idx = nr;
|
|
|
+ ret = -EINVAL;
|
|
|
+
|
|
|
+ if (engine->mode != LP55XX_ENGINE_LOAD)
|
|
|
+ goto leave;
|
|
|
+
|
|
|
+ if (lp5523_load_mux(chip, mux, nr))
|
|
|
+ goto leave;
|
|
|
+
|
|
|
+ ret = len;
|
|
|
+leave:
|
|
|
+ mutex_unlock(&chip->lock);
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+store_leds(1)
|
|
|
+store_leds(2)
|
|
|
+store_leds(3)
|
|
|
+
|
|
|
+static ssize_t store_engine_load(struct device *dev,
|
|
|
+ struct device_attribute *attr,
|
|
|
+ const char *buf, size_t len, int nr)
|
|
|
+{
|
|
|
+ struct lp55xx_led *led = i2c_get_clientdata(to_i2c_client(dev));
|
|
|
+ struct lp55xx_chip *chip = led->chip;
|
|
|
+
|
|
|
+ mutex_lock(&chip->lock);
|
|
|
+
|
|
|
+ chip->engine_idx = nr;
|
|
|
+ lp5523_load_engine_and_select_page(chip);
|
|
|
+
|
|
|
+ mutex_unlock(&chip->lock);
|
|
|
+
|
|
|
+ return lp5523_update_program_memory(chip, buf, len);
|
|
|
+}
|
|
|
+store_load(1)
|
|
|
+store_load(2)
|
|
|
+store_load(3)
|
|
|
+
|
|
|
static ssize_t lp5523_selftest(struct device *dev,
|
|
|
struct device_attribute *attr,
|
|
|
char *buf)
|
|
@@ -393,9 +660,27 @@ static void lp5523_led_brightness_work(struct work_struct *work)
|
|
|
mutex_unlock(&chip->lock);
|
|
|
}
|
|
|
|
|
|
-static DEVICE_ATTR(selftest, S_IRUGO, lp5523_selftest, NULL);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine1_mode, show_engine1_mode, store_engine1_mode);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine2_mode, show_engine2_mode, store_engine2_mode);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine3_mode, show_engine3_mode, store_engine3_mode);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine1_leds, show_engine1_leds, store_engine1_leds);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine2_leds, show_engine2_leds, store_engine2_leds);
|
|
|
+static LP55XX_DEV_ATTR_RW(engine3_leds, show_engine3_leds, store_engine3_leds);
|
|
|
+static LP55XX_DEV_ATTR_WO(engine1_load, store_engine1_load);
|
|
|
+static LP55XX_DEV_ATTR_WO(engine2_load, store_engine2_load);
|
|
|
+static LP55XX_DEV_ATTR_WO(engine3_load, store_engine3_load);
|
|
|
+static LP55XX_DEV_ATTR_RO(selftest, lp5523_selftest);
|
|
|
|
|
|
static struct attribute *lp5523_attributes[] = {
|
|
|
+ &dev_attr_engine1_mode.attr,
|
|
|
+ &dev_attr_engine2_mode.attr,
|
|
|
+ &dev_attr_engine3_mode.attr,
|
|
|
+ &dev_attr_engine1_load.attr,
|
|
|
+ &dev_attr_engine2_load.attr,
|
|
|
+ &dev_attr_engine3_load.attr,
|
|
|
+ &dev_attr_engine1_leds.attr,
|
|
|
+ &dev_attr_engine2_leds.attr,
|
|
|
+ &dev_attr_engine3_leds.attr,
|
|
|
&dev_attr_selftest.attr,
|
|
|
NULL,
|
|
|
};
|
|
@@ -432,7 +717,7 @@ static int lp5523_probe(struct i2c_client *client,
|
|
|
struct lp55xx_platform_data *pdata;
|
|
|
struct device_node *np = client->dev.of_node;
|
|
|
|
|
|
- if (!client->dev.platform_data) {
|
|
|
+ if (!dev_get_platdata(&client->dev)) {
|
|
|
if (np) {
|
|
|
ret = lp55xx_of_populate_pdata(&client->dev, np);
|
|
|
if (ret < 0)
|
|
@@ -442,7 +727,7 @@ static int lp5523_probe(struct i2c_client *client,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
}
|
|
|
- pdata = client->dev.platform_data;
|
|
|
+ pdata = dev_get_platdata(&client->dev);
|
|
|
|
|
|
chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
|
|
|
if (!chip)
|