blob: 7087ca4592fc964989cc1bf440bdb4fe9faf30e5 [file] [log] [blame]
Thomas Gleixner36edc932019-05-29 16:57:44 -07001// SPDX-License-Identifier: GPL-2.0-only
Nate Casef46e9202008-07-16 22:49:55 +01002/*
3 * Copyright 2007-2008 Extreme Engineering Solutions, Inc.
4 *
5 * Author: Nate Case <ncase@xes-inc.com>
6 *
Nate Casef46e9202008-07-16 22:49:55 +01007 * LED driver for various PCA955x I2C LED drivers
8 *
9 * Supported devices:
10 *
11 * Device Description 7-bit slave address
12 * ------ ----------- -------------------
13 * PCA9550 2-bit driver 0x60 .. 0x61
14 * PCA9551 8-bit driver 0x60 .. 0x67
15 * PCA9552 16-bit driver 0x60 .. 0x67
16 * PCA9553/01 4-bit driver 0x62
17 * PCA9553/02 4-bit driver 0x63
18 *
19 * Philips PCA955x LED driver chips follow a register map as shown below:
20 *
21 * Control Register Description
22 * ---------------- -----------
23 * 0x0 Input register 0
24 * ..
25 * NUM_INPUT_REGS - 1 Last Input register X
26 *
27 * NUM_INPUT_REGS Frequency prescaler 0
28 * NUM_INPUT_REGS + 1 PWM register 0
29 * NUM_INPUT_REGS + 2 Frequency prescaler 1
30 * NUM_INPUT_REGS + 3 PWM register 1
31 *
32 * NUM_INPUT_REGS + 4 LED selector 0
33 * NUM_INPUT_REGS + 4
34 * + NUM_LED_REGS - 1 Last LED selector
35 *
36 * where NUM_INPUT_REGS and NUM_LED_REGS vary depending on how many
37 * bits the chip supports.
38 */
39
Nate Casef46e9202008-07-16 22:49:55 +010040#include <linux/ctype.h>
Cédric Le Goatered1f4b92017-08-08 15:42:37 +020041#include <linux/delay.h>
Nate Casef46e9202008-07-16 22:49:55 +010042#include <linux/err.h>
Linus Walleij0987c7d2020-06-27 00:47:35 +020043#include <linux/gpio/driver.h>
Nate Casef46e9202008-07-16 22:49:55 +010044#include <linux/i2c.h>
Cédric Le Goatered1f4b92017-08-08 15:42:37 +020045#include <linux/leds.h>
46#include <linux/module.h>
Cédric Le Goatered1f4b92017-08-08 15:42:37 +020047#include <linux/of.h>
Andy Shevchenko967f69d2019-03-25 16:05:00 +020048#include <linux/property.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Cédric Le Goatered1f4b92017-08-08 15:42:37 +020050#include <linux/string.h>
Nate Casef46e9202008-07-16 22:49:55 +010051
Cédric Le Goater561099a12017-08-08 15:42:39 +020052#include <dt-bindings/leds/leds-pca955x.h>
53
Nate Casef46e9202008-07-16 22:49:55 +010054/* LED select registers determine the source that drives LED outputs */
55#define PCA955X_LS_LED_ON 0x0 /* Output LOW */
56#define PCA955X_LS_LED_OFF 0x1 /* Output HI-Z */
57#define PCA955X_LS_BLINK0 0x2 /* Blink at PWM0 rate */
58#define PCA955X_LS_BLINK1 0x3 /* Blink at PWM1 rate */
59
Andrew Jeffery52ca7d02017-09-01 15:08:58 +093060#define PCA955X_GPIO_INPUT LED_OFF
61#define PCA955X_GPIO_HIGH LED_OFF
62#define PCA955X_GPIO_LOW LED_FULL
63
Nate Casef46e9202008-07-16 22:49:55 +010064enum pca955x_type {
65 pca9550,
66 pca9551,
67 pca9552,
Eddie James46de3ad2020-08-03 09:50:55 -050068 ibm_pca9552,
Nate Casef46e9202008-07-16 22:49:55 +010069 pca9553,
70};
71
72struct pca955x_chipdef {
73 int bits;
74 u8 slv_addr; /* 7-bit slave address mask */
75 int slv_addr_shift; /* Number of bits to ignore */
76};
77
78static struct pca955x_chipdef pca955x_chipdefs[] = {
79 [pca9550] = {
80 .bits = 2,
81 .slv_addr = /* 110000x */ 0x60,
82 .slv_addr_shift = 1,
83 },
84 [pca9551] = {
85 .bits = 8,
86 .slv_addr = /* 1100xxx */ 0x60,
87 .slv_addr_shift = 3,
88 },
89 [pca9552] = {
90 .bits = 16,
91 .slv_addr = /* 1100xxx */ 0x60,
92 .slv_addr_shift = 3,
93 },
Eddie James46de3ad2020-08-03 09:50:55 -050094 [ibm_pca9552] = {
95 .bits = 16,
96 .slv_addr = /* 0110xxx */ 0x30,
97 .slv_addr_shift = 3,
98 },
Nate Casef46e9202008-07-16 22:49:55 +010099 [pca9553] = {
100 .bits = 4,
101 .slv_addr = /* 110001x */ 0x62,
102 .slv_addr_shift = 1,
103 },
104};
105
106static const struct i2c_device_id pca955x_id[] = {
107 { "pca9550", pca9550 },
108 { "pca9551", pca9551 },
109 { "pca9552", pca9552 },
Eddie James46de3ad2020-08-03 09:50:55 -0500110 { "ibm-pca9552", ibm_pca9552 },
Nate Casef46e9202008-07-16 22:49:55 +0100111 { "pca9553", pca9553 },
112 { }
113};
114MODULE_DEVICE_TABLE(i2c, pca955x_id);
115
Alexander Steine7e11d82012-05-29 15:07:30 -0700116struct pca955x {
117 struct mutex lock;
118 struct pca955x_led *leds;
Nate Casef46e9202008-07-16 22:49:55 +0100119 struct pca955x_chipdef *chipdef;
120 struct i2c_client *client;
Cédric Le Goater561099a12017-08-08 15:42:39 +0200121#ifdef CONFIG_LEDS_PCA955X_GPIO
122 struct gpio_chip gpio;
123#endif
Alexander Steine7e11d82012-05-29 15:07:30 -0700124};
125
126struct pca955x_led {
127 struct pca955x *pca955x;
Nate Casef46e9202008-07-16 22:49:55 +0100128 struct led_classdev led_cdev;
129 int led_num; /* 0 .. 15 potentially */
130 char name[32];
Cédric Le Goater561099a12017-08-08 15:42:39 +0200131 u32 type;
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200132 const char *default_trigger;
133};
134
135struct pca955x_platform_data {
136 struct pca955x_led *leds;
137 int num_leds;
Nate Casef46e9202008-07-16 22:49:55 +0100138};
139
140/* 8 bits per input register */
141static inline int pca95xx_num_input_regs(int bits)
142{
143 return (bits + 7) / 8;
144}
145
146/* 4 bits per LED selector register */
147static inline int pca95xx_num_led_regs(int bits)
148{
149 return (bits + 3) / 4;
150}
151
152/*
153 * Return an LED selector register value based on an existing one, with
154 * the appropriate 2-bit state value set for the given LED number (0-3).
155 */
156static inline u8 pca955x_ledsel(u8 oldval, int led_num, int state)
157{
158 return (oldval & (~(0x3 << (led_num << 1)))) |
159 ((state & 0x3) << (led_num << 1));
160}
161
162/*
163 * Write to frequency prescaler register, used to program the
164 * period of the PWM output. period = (PSCx + 1) / 38
165 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200166static int pca955x_write_psc(struct i2c_client *client, int n, u8 val)
Nate Casef46e9202008-07-16 22:49:55 +0100167{
Alexander Steine7e11d82012-05-29 15:07:30 -0700168 struct pca955x *pca955x = i2c_get_clientdata(client);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200169 int ret;
Nate Casef46e9202008-07-16 22:49:55 +0100170
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200171 ret = i2c_smbus_write_byte_data(client,
Nate Casef46e9202008-07-16 22:49:55 +0100172 pca95xx_num_input_regs(pca955x->chipdef->bits) + 2*n,
173 val);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200174 if (ret < 0)
175 dev_err(&client->dev, "%s: reg 0x%x, val 0x%x, err %d\n",
176 __func__, n, val, ret);
177 return ret;
Nate Casef46e9202008-07-16 22:49:55 +0100178}
179
180/*
181 * Write to PWM register, which determines the duty cycle of the
182 * output. LED is OFF when the count is less than the value of this
183 * register, and ON when it is greater. If PWMx == 0, LED is always OFF.
184 *
185 * Duty cycle is (256 - PWMx) / 256
186 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200187static int pca955x_write_pwm(struct i2c_client *client, int n, u8 val)
Nate Casef46e9202008-07-16 22:49:55 +0100188{
Alexander Steine7e11d82012-05-29 15:07:30 -0700189 struct pca955x *pca955x = i2c_get_clientdata(client);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200190 int ret;
Nate Casef46e9202008-07-16 22:49:55 +0100191
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200192 ret = i2c_smbus_write_byte_data(client,
Nate Casef46e9202008-07-16 22:49:55 +0100193 pca95xx_num_input_regs(pca955x->chipdef->bits) + 1 + 2*n,
194 val);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200195 if (ret < 0)
196 dev_err(&client->dev, "%s: reg 0x%x, val 0x%x, err %d\n",
197 __func__, n, val, ret);
198 return ret;
Nate Casef46e9202008-07-16 22:49:55 +0100199}
200
201/*
202 * Write to LED selector register, which determines the source that
203 * drives the LED output.
204 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200205static int pca955x_write_ls(struct i2c_client *client, int n, u8 val)
Nate Casef46e9202008-07-16 22:49:55 +0100206{
Alexander Steine7e11d82012-05-29 15:07:30 -0700207 struct pca955x *pca955x = i2c_get_clientdata(client);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200208 int ret;
Nate Casef46e9202008-07-16 22:49:55 +0100209
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200210 ret = i2c_smbus_write_byte_data(client,
Nate Casef46e9202008-07-16 22:49:55 +0100211 pca95xx_num_input_regs(pca955x->chipdef->bits) + 4 + n,
212 val);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200213 if (ret < 0)
214 dev_err(&client->dev, "%s: reg 0x%x, val 0x%x, err %d\n",
215 __func__, n, val, ret);
216 return ret;
Nate Casef46e9202008-07-16 22:49:55 +0100217}
218
219/*
220 * Read the LED selector register, which determines the source that
221 * drives the LED output.
222 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200223static int pca955x_read_ls(struct i2c_client *client, int n, u8 *val)
Nate Casef46e9202008-07-16 22:49:55 +0100224{
Alexander Steine7e11d82012-05-29 15:07:30 -0700225 struct pca955x *pca955x = i2c_get_clientdata(client);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200226 int ret;
Nate Casef46e9202008-07-16 22:49:55 +0100227
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200228 ret = i2c_smbus_read_byte_data(client,
Nate Casef46e9202008-07-16 22:49:55 +0100229 pca95xx_num_input_regs(pca955x->chipdef->bits) + 4 + n);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200230 if (ret < 0) {
231 dev_err(&client->dev, "%s: reg 0x%x, err %d\n",
232 __func__, n, ret);
233 return ret;
234 }
235 *val = (u8)ret;
236 return 0;
Nate Casef46e9202008-07-16 22:49:55 +0100237}
238
Andrew Lunnc3482b82015-08-20 12:32:35 +0200239static int pca955x_led_set(struct led_classdev *led_cdev,
240 enum led_brightness value)
Nate Casef46e9202008-07-16 22:49:55 +0100241{
Alexander Steine7e11d82012-05-29 15:07:30 -0700242 struct pca955x_led *pca955x_led;
243 struct pca955x *pca955x;
Nate Casef46e9202008-07-16 22:49:55 +0100244 u8 ls;
245 int chip_ls; /* which LSx to use (0-3 potentially) */
246 int ls_led; /* which set of bits within LSx to use (0-3) */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200247 int ret;
Nate Casef46e9202008-07-16 22:49:55 +0100248
Andrew Lunnc3482b82015-08-20 12:32:35 +0200249 pca955x_led = container_of(led_cdev, struct pca955x_led, led_cdev);
Alexander Steine7e11d82012-05-29 15:07:30 -0700250 pca955x = pca955x_led->pca955x;
251
252 chip_ls = pca955x_led->led_num / 4;
253 ls_led = pca955x_led->led_num % 4;
254
255 mutex_lock(&pca955x->lock);
Nate Casef46e9202008-07-16 22:49:55 +0100256
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200257 ret = pca955x_read_ls(pca955x->client, chip_ls, &ls);
258 if (ret)
259 goto out;
Nate Casef46e9202008-07-16 22:49:55 +0100260
Andrew Lunnc3482b82015-08-20 12:32:35 +0200261 switch (value) {
Nate Casef46e9202008-07-16 22:49:55 +0100262 case LED_FULL:
263 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_LED_ON);
264 break;
265 case LED_OFF:
266 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_LED_OFF);
267 break;
268 case LED_HALF:
269 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_BLINK0);
270 break;
271 default:
272 /*
273 * Use PWM1 for all other values. This has the unwanted
274 * side effect of making all LEDs on the chip share the
275 * same brightness level if set to a value other than
276 * OFF, HALF, or FULL. But, this is probably better than
277 * just turning off for all other values.
278 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200279 ret = pca955x_write_pwm(pca955x->client, 1, 255 - value);
280 if (ret)
281 goto out;
Nate Casef46e9202008-07-16 22:49:55 +0100282 ls = pca955x_ledsel(ls, ls_led, PCA955X_LS_BLINK1);
283 break;
284 }
285
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200286 ret = pca955x_write_ls(pca955x->client, chip_ls, ls);
Alexander Steine7e11d82012-05-29 15:07:30 -0700287
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200288out:
Alexander Steine7e11d82012-05-29 15:07:30 -0700289 mutex_unlock(&pca955x->lock);
Nate Casef46e9202008-07-16 22:49:55 +0100290
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200291 return ret;
Nate Casef46e9202008-07-16 22:49:55 +0100292}
293
Cédric Le Goater561099a12017-08-08 15:42:39 +0200294#ifdef CONFIG_LEDS_PCA955X_GPIO
295/*
296 * Read the INPUT register, which contains the state of LEDs.
297 */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200298static int pca955x_read_input(struct i2c_client *client, int n, u8 *val)
Cédric Le Goater561099a12017-08-08 15:42:39 +0200299{
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200300 int ret = i2c_smbus_read_byte_data(client, n);
301
302 if (ret < 0) {
303 dev_err(&client->dev, "%s: reg 0x%x, err %d\n",
304 __func__, n, ret);
305 return ret;
306 }
307 *val = (u8)ret;
308 return 0;
309
Cédric Le Goater561099a12017-08-08 15:42:39 +0200310}
311
312static int pca955x_gpio_request_pin(struct gpio_chip *gc, unsigned int offset)
313{
314 struct pca955x *pca955x = gpiochip_get_data(gc);
315 struct pca955x_led *led = &pca955x->leds[offset];
316
317 if (led->type == PCA955X_TYPE_GPIO)
318 return 0;
319
320 return -EBUSY;
321}
322
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200323static int pca955x_set_value(struct gpio_chip *gc, unsigned int offset,
324 int val)
Cédric Le Goater561099a12017-08-08 15:42:39 +0200325{
326 struct pca955x *pca955x = gpiochip_get_data(gc);
327 struct pca955x_led *led = &pca955x->leds[offset];
328
329 if (val)
Andrew Jeffery52ca7d02017-09-01 15:08:58 +0930330 return pca955x_led_set(&led->led_cdev, PCA955X_GPIO_HIGH);
331
332 return pca955x_led_set(&led->led_cdev, PCA955X_GPIO_LOW);
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200333}
334
335static void pca955x_gpio_set_value(struct gpio_chip *gc, unsigned int offset,
336 int val)
337{
338 pca955x_set_value(gc, offset, val);
Cédric Le Goater561099a12017-08-08 15:42:39 +0200339}
340
341static int pca955x_gpio_get_value(struct gpio_chip *gc, unsigned int offset)
342{
343 struct pca955x *pca955x = gpiochip_get_data(gc);
344 struct pca955x_led *led = &pca955x->leds[offset];
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200345 u8 reg = 0;
346
347 /* There is nothing we can do about errors */
348 pca955x_read_input(pca955x->client, led->led_num / 8, &reg);
Cédric Le Goater561099a12017-08-08 15:42:39 +0200349
350 return !!(reg & (1 << (led->led_num % 8)));
351}
352
353static int pca955x_gpio_direction_input(struct gpio_chip *gc,
354 unsigned int offset)
355{
Andrew Jeffery52ca7d02017-09-01 15:08:58 +0930356 struct pca955x *pca955x = gpiochip_get_data(gc);
357 struct pca955x_led *led = &pca955x->leds[offset];
358
359 /* To use as input ensure pin is not driven. */
360 return pca955x_led_set(&led->led_cdev, PCA955X_GPIO_INPUT);
Cédric Le Goater561099a12017-08-08 15:42:39 +0200361}
362
363static int pca955x_gpio_direction_output(struct gpio_chip *gc,
364 unsigned int offset, int val)
365{
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200366 return pca955x_set_value(gc, offset, val);
Cédric Le Goater561099a12017-08-08 15:42:39 +0200367}
368#endif /* CONFIG_LEDS_PCA955X_GPIO */
369
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200370static struct pca955x_platform_data *
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200371pca955x_get_pdata(struct i2c_client *client, struct pca955x_chipdef *chip)
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200372{
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200373 struct pca955x_platform_data *pdata;
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200374 struct fwnode_handle *child;
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200375 int count;
376
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200377 count = device_get_child_node_count(&client->dev);
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200378 if (!count || count > chip->bits)
379 return ERR_PTR(-ENODEV);
380
381 pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL);
382 if (!pdata)
383 return ERR_PTR(-ENOMEM);
384
Kees Cooka86854d2018-06-12 14:07:58 -0700385 pdata->leds = devm_kcalloc(&client->dev,
386 chip->bits, sizeof(struct pca955x_led),
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200387 GFP_KERNEL);
388 if (!pdata->leds)
389 return ERR_PTR(-ENOMEM);
390
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200391 device_for_each_child_node(&client->dev, child) {
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200392 const char *name;
393 u32 reg;
394 int res;
395
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200396 res = fwnode_property_read_u32(child, "reg", &reg);
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200397 if ((res != 0) || (reg >= chip->bits))
398 continue;
399
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200400 res = fwnode_property_read_string(child, "label", &name);
401 if ((res != 0) && is_of_node(child))
402 name = to_of_node(child)->name;
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200403
404 snprintf(pdata->leds[reg].name, sizeof(pdata->leds[reg].name),
405 "%s", name);
406
Cédric Le Goater561099a12017-08-08 15:42:39 +0200407 pdata->leds[reg].type = PCA955X_TYPE_LED;
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200408 fwnode_property_read_u32(child, "type", &pdata->leds[reg].type);
409 fwnode_property_read_string(child, "linux,default-trigger",
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200410 &pdata->leds[reg].default_trigger);
411 }
412
413 pdata->num_leds = chip->bits;
414
415 return pdata;
416}
417
418static const struct of_device_id of_pca955x_match[] = {
419 { .compatible = "nxp,pca9550", .data = (void *)pca9550 },
420 { .compatible = "nxp,pca9551", .data = (void *)pca9551 },
421 { .compatible = "nxp,pca9552", .data = (void *)pca9552 },
Eddie James46de3ad2020-08-03 09:50:55 -0500422 { .compatible = "ibm,pca9552", .data = (void *)ibm_pca9552 },
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200423 { .compatible = "nxp,pca9553", .data = (void *)pca9553 },
424 {},
425};
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200426MODULE_DEVICE_TABLE(of, of_pca955x_match);
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200427
Bill Pemberton98ea1ea2012-11-19 13:23:02 -0500428static int pca955x_probe(struct i2c_client *client,
Nate Casef46e9202008-07-16 22:49:55 +0100429 const struct i2c_device_id *id)
430{
Alexander Steine7e11d82012-05-29 15:07:30 -0700431 struct pca955x *pca955x;
432 struct pca955x_led *pca955x_led;
Nate Casef46e9202008-07-16 22:49:55 +0100433 struct pca955x_chipdef *chip;
434 struct i2c_adapter *adapter;
Sven Wegener95bf14b2008-10-03 15:23:48 -0700435 int i, err;
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200436 struct pca955x_platform_data *pdata;
Cédric Le Goater561099a12017-08-08 15:42:39 +0200437 int ngpios = 0;
Nate Casef46e9202008-07-16 22:49:55 +0100438
Andy Shevchenko5b6cd442019-03-15 21:13:42 +0200439 chip = &pca955x_chipdefs[id->driver_data];
Wolfram Sang1c57d9b2019-06-08 12:55:43 +0200440 adapter = client->adapter;
Jingoo Han87aae1e2013-07-30 01:07:35 -0700441 pdata = dev_get_platdata(&client->dev);
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200442 if (!pdata) {
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200443 pdata = pca955x_get_pdata(client, chip);
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200444 if (IS_ERR(pdata))
445 return PTR_ERR(pdata);
446 }
Nate Casef46e9202008-07-16 22:49:55 +0100447
448 /* Make sure the slave address / chip type combo given is possible */
449 if ((client->addr & ~((1 << chip->slv_addr_shift) - 1)) !=
450 chip->slv_addr) {
451 dev_err(&client->dev, "invalid slave address %02x\n",
452 client->addr);
453 return -ENODEV;
454 }
455
Sachin Kamatb40b0c12012-11-25 12:21:47 +0530456 dev_info(&client->dev, "leds-pca955x: Using %s %d-bit LED driver at "
Nate Casef46e9202008-07-16 22:49:55 +0100457 "slave address 0x%02x\n",
Tin Huynh44b3e312016-12-02 11:39:13 +0700458 client->name, chip->bits, client->addr);
Nate Casef46e9202008-07-16 22:49:55 +0100459
Tin Huynhaace34c2017-05-22 16:19:20 +0700460 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Nate Casef46e9202008-07-16 22:49:55 +0100461 return -EIO;
462
Cédric Le Goatered1f4b92017-08-08 15:42:37 +0200463 if (pdata->num_leds != chip->bits) {
464 dev_err(&client->dev,
465 "board info claims %d LEDs on a %d-bit chip\n",
466 pdata->num_leds, chip->bits);
467 return -ENODEV;
Nate Casef46e9202008-07-16 22:49:55 +0100468 }
469
Bryan Wu73759f62012-07-04 12:09:05 +0800470 pca955x = devm_kzalloc(&client->dev, sizeof(*pca955x), GFP_KERNEL);
Sven Wegener95bf14b2008-10-03 15:23:48 -0700471 if (!pca955x)
472 return -ENOMEM;
Nate Casef46e9202008-07-16 22:49:55 +0100473
Kees Cooka86854d2018-06-12 14:07:58 -0700474 pca955x->leds = devm_kcalloc(&client->dev,
475 chip->bits, sizeof(*pca955x_led), GFP_KERNEL);
Bryan Wu73759f62012-07-04 12:09:05 +0800476 if (!pca955x->leds)
477 return -ENOMEM;
Alexander Steine7e11d82012-05-29 15:07:30 -0700478
Sven Wegener95bf14b2008-10-03 15:23:48 -0700479 i2c_set_clientdata(client, pca955x);
480
Alexander Steine7e11d82012-05-29 15:07:30 -0700481 mutex_init(&pca955x->lock);
482 pca955x->client = client;
483 pca955x->chipdef = chip;
484
Sven Wegener95bf14b2008-10-03 15:23:48 -0700485 for (i = 0; i < chip->bits; i++) {
Alexander Steine7e11d82012-05-29 15:07:30 -0700486 pca955x_led = &pca955x->leds[i];
487 pca955x_led->led_num = i;
488 pca955x_led->pca955x = pca955x;
Cédric Le Goater561099a12017-08-08 15:42:39 +0200489 pca955x_led->type = pdata->leds[i].type;
Sven Wegener95bf14b2008-10-03 15:23:48 -0700490
Cédric Le Goater561099a12017-08-08 15:42:39 +0200491 switch (pca955x_led->type) {
492 case PCA955X_TYPE_NONE:
493 break;
494 case PCA955X_TYPE_GPIO:
495 ngpios++;
496 break;
497 case PCA955X_TYPE_LED:
498 /*
499 * Platform data can specify LED names and
500 * default triggers
501 */
Jacek Anaszewski390c97d2017-08-17 22:16:48 +0200502 if (pdata->leds[i].name[0] == '\0')
503 snprintf(pdata->leds[i].name,
504 sizeof(pdata->leds[i].name), "%d", i);
505
506 snprintf(pca955x_led->name,
507 sizeof(pca955x_led->name), "pca955x:%s",
508 pdata->leds[i].name);
509
Nate Casef46e9202008-07-16 22:49:55 +0100510 if (pdata->leds[i].default_trigger)
Alexander Steine7e11d82012-05-29 15:07:30 -0700511 pca955x_led->led_cdev.default_trigger =
Nate Casef46e9202008-07-16 22:49:55 +0100512 pdata->leds[i].default_trigger;
Cédric Le Goater561099a12017-08-08 15:42:39 +0200513
514 pca955x_led->led_cdev.name = pca955x_led->name;
515 pca955x_led->led_cdev.brightness_set_blocking =
516 pca955x_led_set;
517
518 err = devm_led_classdev_register(&client->dev,
519 &pca955x_led->led_cdev);
520 if (err)
521 return err;
522
523 /* Turn off LED */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200524 err = pca955x_led_set(&pca955x_led->led_cdev, LED_OFF);
525 if (err)
526 return err;
Nate Casef46e9202008-07-16 22:49:55 +0100527 }
Nate Casef46e9202008-07-16 22:49:55 +0100528 }
529
Nate Casef46e9202008-07-16 22:49:55 +0100530 /* PWM0 is used for half brightness or 50% duty cycle */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200531 err = pca955x_write_pwm(client, 0, 255 - LED_HALF);
532 if (err)
533 return err;
Nate Casef46e9202008-07-16 22:49:55 +0100534
535 /* PWM1 is used for variable brightness, default to OFF */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200536 err = pca955x_write_pwm(client, 1, 0);
537 if (err)
538 return err;
Nate Casef46e9202008-07-16 22:49:55 +0100539
540 /* Set to fast frequency so we do not see flashing */
Cédric Le Goater1591caf2017-08-30 13:25:51 +0200541 err = pca955x_write_psc(client, 0, 0);
542 if (err)
543 return err;
544 err = pca955x_write_psc(client, 1, 0);
545 if (err)
546 return err;
Nate Casef46e9202008-07-16 22:49:55 +0100547
Cédric Le Goater561099a12017-08-08 15:42:39 +0200548#ifdef CONFIG_LEDS_PCA955X_GPIO
549 if (ngpios) {
550 pca955x->gpio.label = "gpio-pca955x";
551 pca955x->gpio.direction_input = pca955x_gpio_direction_input;
552 pca955x->gpio.direction_output = pca955x_gpio_direction_output;
553 pca955x->gpio.set = pca955x_gpio_set_value;
554 pca955x->gpio.get = pca955x_gpio_get_value;
555 pca955x->gpio.request = pca955x_gpio_request_pin;
556 pca955x->gpio.can_sleep = 1;
557 pca955x->gpio.base = -1;
558 pca955x->gpio.ngpio = ngpios;
559 pca955x->gpio.parent = &client->dev;
560 pca955x->gpio.owner = THIS_MODULE;
561
562 err = devm_gpiochip_add_data(&client->dev, &pca955x->gpio,
563 pca955x);
564 if (err) {
565 /* Use data->gpio.dev as a flag for freeing gpiochip */
566 pca955x->gpio.parent = NULL;
567 dev_warn(&client->dev, "could not add gpiochip\n");
568 return err;
569 }
570 dev_info(&client->dev, "gpios %i...%i\n",
571 pca955x->gpio.base, pca955x->gpio.base +
572 pca955x->gpio.ngpio - 1);
573 }
574#endif
575
Nate Casef46e9202008-07-16 22:49:55 +0100576 return 0;
Nate Casef46e9202008-07-16 22:49:55 +0100577}
578
579static struct i2c_driver pca955x_driver = {
580 .driver = {
581 .name = "leds-pca955x",
Andy Shevchenko967f69d2019-03-25 16:05:00 +0200582 .of_match_table = of_pca955x_match,
Nate Casef46e9202008-07-16 22:49:55 +0100583 },
584 .probe = pca955x_probe,
Nate Casef46e9202008-07-16 22:49:55 +0100585 .id_table = pca955x_id,
586};
587
Axel Lin09a0d182012-01-10 15:09:27 -0800588module_i2c_driver(pca955x_driver);
Nate Casef46e9202008-07-16 22:49:55 +0100589
590MODULE_AUTHOR("Nate Case <ncase@xes-inc.com>");
591MODULE_DESCRIPTION("PCA955x LED driver");
592MODULE_LICENSE("GPL v2");