]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/gpio/gpio-pca953x.c
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / drivers / gpio / gpio-pca953x.c
CommitLineData
b886d83c 1// SPDX-License-Identifier: GPL-2.0-only
9e60fdcf 2/*
1e191695 3 * PCA953x 4/8/16/24/40 bit I/O ports
9e60fdcf 4 *
5 * Copyright (C) 2005 Ben Gardner <bgardner@wabtec.com>
6 * Copyright (C) 2007 Marvell International Ltd.
7 *
8 * Derived from drivers/i2c/chips/pca9539.c
9e60fdcf 9 */
10
b413d7a0 11#include <linux/acpi.h>
35d13d94 12#include <linux/bitmap.h>
644f3da0 13#include <linux/gpio/driver.h>
054ccdef 14#include <linux/gpio/consumer.h>
9e60fdcf 15#include <linux/i2c.h>
b413d7a0
AS
16#include <linux/init.h>
17#include <linux/interrupt.h>
18#include <linux/module.h>
19#include <linux/of_platform.h>
5877457a 20#include <linux/platform_data/pca953x.h>
49427232 21#include <linux/regmap.h>
b413d7a0 22#include <linux/regulator/consumer.h>
5a0e3ad6 23#include <linux/slab.h>
b413d7a0 24
9b8e3ec3 25#include <asm/unaligned.h>
9e60fdcf 26
0950c19a
NS
27#define PCA953X_INPUT 0x00
28#define PCA953X_OUTPUT 0x01
29#define PCA953X_INVERT 0x02
30#define PCA953X_DIRECTION 0x03
33226ffd 31
63b484c2
AS
32#define REG_ADDR_MASK GENMASK(5, 0)
33#define REG_ADDR_EXT BIT(6)
34#define REG_ADDR_AI BIT(7)
ae79c190 35
0950c19a
NS
36#define PCA957X_IN 0x00
37#define PCA957X_INVRT 0x01
38#define PCA957X_BKEN 0x02
39#define PCA957X_PUPD 0x03
40#define PCA957X_CFG 0x04
41#define PCA957X_OUT 0x05
42#define PCA957X_MSK 0x06
43#define PCA957X_INTS 0x07
33226ffd 44
6315d231 45#define PCAL953X_OUT_STRENGTH 0x20
0950c19a 46#define PCAL953X_IN_LATCH 0x22
6315d231
NS
47#define PCAL953X_PULL_EN 0x23
48#define PCAL953X_PULL_SEL 0x24
0950c19a
NS
49#define PCAL953X_INT_MASK 0x25
50#define PCAL953X_INT_STAT 0x26
6315d231 51#define PCAL953X_OUT_CONF 0x27
44896bea 52
a0ecbccc
NS
53#define PCAL6524_INT_EDGE 0x28
54#define PCAL6524_INT_CLR 0x2a
55#define PCAL6524_IN_STATUS 0x2b
56#define PCAL6524_OUT_INDCONF 0x2c
57#define PCAL6524_DEBOUNCE 0x2d
58
63b484c2 59#define PCA_GPIO_MASK GENMASK(7, 0)
394aeef8 60
63b484c2
AS
61#define PCAL_GPIO_MASK GENMASK(4, 0)
62#define PCAL_PINCTRL_MASK GENMASK(6, 5)
394aeef8 63
63b484c2
AS
64#define PCA_INT BIT(8)
65#define PCA_PCAL BIT(9)
2870b3c5 66#define PCA_LATCH_INT (PCA_PCAL | PCA_INT)
63b484c2
AS
67#define PCA953X_TYPE BIT(12)
68#define PCA957X_TYPE BIT(13)
69#define PCA_TYPE_MASK GENMASK(15, 12)
c6664149
AS
70
71#define PCA_CHIP_TYPE(x) ((x) & PCA_TYPE_MASK)
89ea8bbe 72
3760f736 73static const struct i2c_device_id pca953x_id[] = {
12c7a4fc 74 { "pca6416", 16 | PCA953X_TYPE | PCA_INT, },
89f5df01 75 { "pca9505", 40 | PCA953X_TYPE | PCA_INT, },
33226ffd
HZ
76 { "pca9534", 8 | PCA953X_TYPE | PCA_INT, },
77 { "pca9535", 16 | PCA953X_TYPE | PCA_INT, },
78 { "pca9536", 4 | PCA953X_TYPE, },
79 { "pca9537", 4 | PCA953X_TYPE | PCA_INT, },
80 { "pca9538", 8 | PCA953X_TYPE | PCA_INT, },
81 { "pca9539", 16 | PCA953X_TYPE | PCA_INT, },
82 { "pca9554", 8 | PCA953X_TYPE | PCA_INT, },
83 { "pca9555", 16 | PCA953X_TYPE | PCA_INT, },
84 { "pca9556", 8 | PCA953X_TYPE, },
85 { "pca9557", 8 | PCA953X_TYPE, },
86 { "pca9574", 8 | PCA957X_TYPE | PCA_INT, },
87 { "pca9575", 16 | PCA957X_TYPE | PCA_INT, },
eb32b5aa 88 { "pca9698", 40 | PCA953X_TYPE, },
33226ffd 89
2870b3c5
AS
90 { "pcal6416", 16 | PCA953X_TYPE | PCA_LATCH_INT, },
91 { "pcal6524", 24 | PCA953X_TYPE | PCA_LATCH_INT, },
92 { "pcal9555a", 16 | PCA953X_TYPE | PCA_LATCH_INT, },
747e42a1 93
33226ffd
HZ
94 { "max7310", 8 | PCA953X_TYPE, },
95 { "max7312", 16 | PCA953X_TYPE | PCA_INT, },
96 { "max7313", 16 | PCA953X_TYPE | PCA_INT, },
97 { "max7315", 8 | PCA953X_TYPE | PCA_INT, },
1208c935 98 { "max7318", 16 | PCA953X_TYPE | PCA_INT, },
33226ffd
HZ
99 { "pca6107", 8 | PCA953X_TYPE | PCA_INT, },
100 { "tca6408", 8 | PCA953X_TYPE | PCA_INT, },
101 { "tca6416", 16 | PCA953X_TYPE | PCA_INT, },
ae79c190 102 { "tca6424", 24 | PCA953X_TYPE | PCA_INT, },
2db8aba8 103 { "tca9539", 16 | PCA953X_TYPE | PCA_INT, },
1b9a0c25 104 { "tca9554", 8 | PCA953X_TYPE | PCA_INT, },
e73760a6 105 { "xra1202", 8 | PCA953X_TYPE },
3760f736 106 { }
f5e8ff48 107};
3760f736 108MODULE_DEVICE_TABLE(i2c, pca953x_id);
9e60fdcf 109
f32517bf 110static const struct acpi_device_id pca953x_acpi_ids[] = {
2870b3c5 111 { "INT3491", 16 | PCA953X_TYPE | PCA_LATCH_INT, },
f32517bf
AS
112 { }
113};
114MODULE_DEVICE_TABLE(acpi, pca953x_acpi_ids);
115
f5f0b7aa
GC
116#define MAX_BANK 5
117#define BANK_SZ 8
35d13d94 118#define MAX_LINE (MAX_BANK * BANK_SZ)
f5f0b7aa 119
a246b819 120#define NBANK(chip) DIV_ROUND_UP(chip->gpio_chip.ngpio, BANK_SZ)
f5f0b7aa 121
53661f3b
BG
122struct pca953x_reg_config {
123 int direction;
124 int output;
125 int input;
7a04aaa3 126 int invert;
53661f3b
BG
127};
128
129static const struct pca953x_reg_config pca953x_regs = {
130 .direction = PCA953X_DIRECTION,
131 .output = PCA953X_OUTPUT,
132 .input = PCA953X_INPUT,
7a04aaa3 133 .invert = PCA953X_INVERT,
53661f3b
BG
134};
135
136static const struct pca953x_reg_config pca957x_regs = {
137 .direction = PCA957X_CFG,
138 .output = PCA957X_OUT,
139 .input = PCA957X_IN,
7a04aaa3 140 .invert = PCA957X_INVRT,
53661f3b
BG
141};
142
f3dc3630 143struct pca953x_chip {
9e60fdcf 144 unsigned gpio_start;
6e20fb18 145 struct mutex i2c_lock;
49427232 146 struct regmap *regmap;
9e60fdcf 147
89ea8bbe
MZ
148#ifdef CONFIG_GPIO_PCA953X_IRQ
149 struct mutex irq_lock;
35d13d94
AS
150 DECLARE_BITMAP(irq_mask, MAX_LINE);
151 DECLARE_BITMAP(irq_stat, MAX_LINE);
152 DECLARE_BITMAP(irq_trig_raise, MAX_LINE);
153 DECLARE_BITMAP(irq_trig_fall, MAX_LINE);
5c4fee63 154 struct irq_chip irq_chip;
89ea8bbe 155#endif
f70fbc15 156 atomic_t wakeup_path;
89ea8bbe 157
9e60fdcf 158 struct i2c_client *client;
159 struct gpio_chip gpio_chip;
62154991 160 const char *const *names;
c6664149 161 unsigned long driver_data;
e23efa31 162 struct regulator *regulator;
53661f3b
BG
163
164 const struct pca953x_reg_config *regs;
9e60fdcf 165};
166
873d1e8e 167static int pca953x_bank_shift(struct pca953x_chip *chip)
f5f0b7aa 168{
873d1e8e
MV
169 return fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
170}
f5f0b7aa 171
49427232
MV
172#define PCA953x_BANK_INPUT BIT(0)
173#define PCA953x_BANK_OUTPUT BIT(1)
174#define PCA953x_BANK_POLARITY BIT(2)
175#define PCA953x_BANK_CONFIG BIT(3)
f5f0b7aa 176
49427232
MV
177#define PCA957x_BANK_INPUT BIT(0)
178#define PCA957x_BANK_POLARITY BIT(1)
179#define PCA957x_BANK_BUSHOLD BIT(2)
180#define PCA957x_BANK_CONFIG BIT(4)
181#define PCA957x_BANK_OUTPUT BIT(5)
182
183#define PCAL9xxx_BANK_IN_LATCH BIT(8 + 2)
15add068
TP
184#define PCAL9xxx_BANK_PULL_EN BIT(8 + 3)
185#define PCAL9xxx_BANK_PULL_SEL BIT(8 + 4)
49427232
MV
186#define PCAL9xxx_BANK_IRQ_MASK BIT(8 + 5)
187#define PCAL9xxx_BANK_IRQ_STAT BIT(8 + 6)
188
189/*
190 * We care about the following registers:
191 * - Standard set, below 0x40, each port can be replicated up to 8 times
192 * - PCA953x standard
193 * Input port 0x00 + 0 * bank_size R
194 * Output port 0x00 + 1 * bank_size RW
195 * Polarity Inversion port 0x00 + 2 * bank_size RW
196 * Configuration port 0x00 + 3 * bank_size RW
197 * - PCA957x with mixed up registers
198 * Input port 0x00 + 0 * bank_size R
199 * Polarity Inversion port 0x00 + 1 * bank_size RW
200 * Bus hold port 0x00 + 2 * bank_size RW
201 * Configuration port 0x00 + 4 * bank_size RW
202 * Output port 0x00 + 5 * bank_size RW
203 *
204 * - Extended set, above 0x40, often chip specific.
205 * - PCAL6524/PCAL9555A with custom PCAL IRQ handling:
206 * Input latch register 0x40 + 2 * bank_size RW
15add068
TP
207 * Pull-up/pull-down enable reg 0x40 + 3 * bank_size RW
208 * Pull-up/pull-down select reg 0x40 + 4 * bank_size RW
49427232
MV
209 * Interrupt mask register 0x40 + 5 * bank_size RW
210 * Interrupt status register 0x40 + 6 * bank_size R
211 *
212 * - Registers with bit 0x80 set, the AI bit
213 * The bit is cleared and the registers fall into one of the
214 * categories above.
215 */
216
217static bool pca953x_check_register(struct pca953x_chip *chip, unsigned int reg,
218 u32 checkbank)
219{
220 int bank_shift = pca953x_bank_shift(chip);
221 int bank = (reg & REG_ADDR_MASK) >> bank_shift;
222 int offset = reg & (BIT(bank_shift) - 1);
223
224 /* Special PCAL extended register check. */
225 if (reg & REG_ADDR_EXT) {
226 if (!(chip->driver_data & PCA_PCAL))
227 return false;
228 bank += 8;
f5f0b7aa
GC
229 }
230
49427232
MV
231 /* Register is not in the matching bank. */
232 if (!(BIT(bank) & checkbank))
233 return false;
234
235 /* Register is not within allowed range of bank. */
236 if (offset >= NBANK(chip))
237 return false;
238
239 return true;
f5f0b7aa
GC
240}
241
49427232 242static bool pca953x_readable_register(struct device *dev, unsigned int reg)
f5f0b7aa 243{
49427232
MV
244 struct pca953x_chip *chip = dev_get_drvdata(dev);
245 u32 bank;
f5f0b7aa 246
49427232
MV
247 if (PCA_CHIP_TYPE(chip->driver_data) == PCA953X_TYPE) {
248 bank = PCA953x_BANK_INPUT | PCA953x_BANK_OUTPUT |
249 PCA953x_BANK_POLARITY | PCA953x_BANK_CONFIG;
250 } else {
251 bank = PCA957x_BANK_INPUT | PCA957x_BANK_OUTPUT |
252 PCA957x_BANK_POLARITY | PCA957x_BANK_CONFIG |
253 PCA957x_BANK_BUSHOLD;
254 }
f5f0b7aa 255
49427232 256 if (chip->driver_data & PCA_PCAL) {
15add068
TP
257 bank |= PCAL9xxx_BANK_IN_LATCH | PCAL9xxx_BANK_PULL_EN |
258 PCAL9xxx_BANK_PULL_SEL | PCAL9xxx_BANK_IRQ_MASK |
49427232 259 PCAL9xxx_BANK_IRQ_STAT;
f5f0b7aa
GC
260 }
261
49427232 262 return pca953x_check_register(chip, reg, bank);
f5f0b7aa
GC
263}
264
49427232 265static bool pca953x_writeable_register(struct device *dev, unsigned int reg)
9e60fdcf 266{
49427232
MV
267 struct pca953x_chip *chip = dev_get_drvdata(dev);
268 u32 bank;
f5e8ff48 269
49427232
MV
270 if (PCA_CHIP_TYPE(chip->driver_data) == PCA953X_TYPE) {
271 bank = PCA953x_BANK_OUTPUT | PCA953x_BANK_POLARITY |
272 PCA953x_BANK_CONFIG;
273 } else {
274 bank = PCA957x_BANK_OUTPUT | PCA957x_BANK_POLARITY |
275 PCA957x_BANK_CONFIG | PCA957x_BANK_BUSHOLD;
276 }
c4d1cbd7 277
49427232 278 if (chip->driver_data & PCA_PCAL)
15add068
TP
279 bank |= PCAL9xxx_BANK_IN_LATCH | PCAL9xxx_BANK_PULL_EN |
280 PCAL9xxx_BANK_PULL_SEL | PCAL9xxx_BANK_IRQ_MASK;
49427232
MV
281
282 return pca953x_check_register(chip, reg, bank);
7acc66e3
BG
283}
284
49427232 285static bool pca953x_volatile_register(struct device *dev, unsigned int reg)
7acc66e3 286{
49427232
MV
287 struct pca953x_chip *chip = dev_get_drvdata(dev);
288 u32 bank;
7acc66e3 289
49427232
MV
290 if (PCA_CHIP_TYPE(chip->driver_data) == PCA953X_TYPE)
291 bank = PCA953x_BANK_INPUT;
292 else
293 bank = PCA957x_BANK_INPUT;
294
295 if (chip->driver_data & PCA_PCAL)
296 bank |= PCAL9xxx_BANK_IRQ_STAT;
7acc66e3 297
49427232 298 return pca953x_check_register(chip, reg, bank);
7acc66e3 299}
f5e8ff48 300
d04e779f 301static const struct regmap_config pca953x_i2c_regmap = {
49427232
MV
302 .reg_bits = 8,
303 .val_bits = 8,
304
305 .readable_reg = pca953x_readable_register,
306 .writeable_reg = pca953x_writeable_register,
307 .volatile_reg = pca953x_volatile_register,
308
309 .cache_type = REGCACHE_RBTREE,
3b00691c
NS
310 /* REVISIT: should be 0x7f but some 24 bit chips use REG_ADDR_AI */
311 .max_register = 0xff,
49427232
MV
312};
313
b32cecb4
MV
314static u8 pca953x_recalc_addr(struct pca953x_chip *chip, int reg, int off,
315 bool write, bool addrinc)
7acc66e3 316{
b32cecb4 317 int bank_shift = pca953x_bank_shift(chip);
d5dbf9c2
NS
318 int addr = (reg & PCAL_GPIO_MASK) << bank_shift;
319 int pinctrl = (reg & PCAL_PINCTRL_MASK) << 1;
b32cecb4
MV
320 u8 regaddr = pinctrl | addr | (off / BANK_SZ);
321
322 /* Single byte read doesn't need AI bit set. */
323 if (!addrinc)
324 return regaddr;
325
326 /* Chips with 24 and more GPIOs always support Auto Increment */
327 if (write && NBANK(chip) > 2)
328 regaddr |= REG_ADDR_AI;
7acc66e3 329
b32cecb4
MV
330 /* PCA9575 needs address-increment on multi-byte writes */
331 if (PCA_CHIP_TYPE(chip->driver_data) == PCA957X_TYPE)
332 regaddr |= REG_ADDR_AI;
333
334 return regaddr;
7acc66e3
BG
335}
336
35d13d94 337static int pca953x_write_regs(struct pca953x_chip *chip, int reg, unsigned long *val)
7acc66e3 338{
b32cecb4 339 u8 regaddr = pca953x_recalc_addr(chip, reg, 0, true, true);
35d13d94
AS
340 u8 value[MAX_BANK];
341 int i, ret;
342
343 for (i = 0; i < NBANK(chip); i++)
344 value[i] = bitmap_get_value8(val, i * BANK_SZ);
7acc66e3 345
35d13d94 346 ret = regmap_bulk_write(chip->regmap, regaddr, value, NBANK(chip));
f5e8ff48
GL
347 if (ret < 0) {
348 dev_err(&chip->client->dev, "failed writing register\n");
ab5dc372 349 return ret;
f5e8ff48
GL
350 }
351
352 return 0;
9e60fdcf 353}
354
35d13d94 355static int pca953x_read_regs(struct pca953x_chip *chip, int reg, unsigned long *val)
c6e3cf01 356{
b32cecb4 357 u8 regaddr = pca953x_recalc_addr(chip, reg, 0, false, true);
35d13d94
AS
358 u8 value[MAX_BANK];
359 int i, ret;
c6e3cf01 360
35d13d94 361 ret = regmap_bulk_read(chip->regmap, regaddr, value, NBANK(chip));
9e60fdcf 362 if (ret < 0) {
363 dev_err(&chip->client->dev, "failed reading register\n");
ab5dc372 364 return ret;
9e60fdcf 365 }
366
35d13d94
AS
367 for (i = 0; i < NBANK(chip); i++)
368 bitmap_set_value8(val, value[i], i * BANK_SZ);
369
9e60fdcf 370 return 0;
371}
372
f3dc3630 373static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off)
9e60fdcf 374{
468e67f6 375 struct pca953x_chip *chip = gpiochip_get_data(gc);
0f25fda8
MV
376 u8 dirreg = pca953x_recalc_addr(chip, chip->regs->direction, off,
377 true, false);
378 u8 bit = BIT(off % BANK_SZ);
53661f3b 379 int ret;
9e60fdcf 380
6e20fb18 381 mutex_lock(&chip->i2c_lock);
0f25fda8 382 ret = regmap_write_bits(chip->regmap, dirreg, bit, bit);
6e20fb18
RS
383 mutex_unlock(&chip->i2c_lock);
384 return ret;
9e60fdcf 385}
386
f3dc3630 387static int pca953x_gpio_direction_output(struct gpio_chip *gc,
9e60fdcf 388 unsigned off, int val)
389{
468e67f6 390 struct pca953x_chip *chip = gpiochip_get_data(gc);
0f25fda8
MV
391 u8 dirreg = pca953x_recalc_addr(chip, chip->regs->direction, off,
392 true, false);
ec82d1eb
MV
393 u8 outreg = pca953x_recalc_addr(chip, chip->regs->output, off,
394 true, false);
0f25fda8 395 u8 bit = BIT(off % BANK_SZ);
53661f3b 396 int ret;
9e60fdcf 397
6e20fb18 398 mutex_lock(&chip->i2c_lock);
9e60fdcf 399 /* set output level */
ec82d1eb 400 ret = regmap_write_bits(chip->regmap, outreg, bit, val ? bit : 0);
9e60fdcf 401 if (ret)
6e20fb18 402 goto exit;
9e60fdcf 403
9e60fdcf 404 /* then direction */
0f25fda8 405 ret = regmap_write_bits(chip->regmap, dirreg, bit, 0);
6e20fb18
RS
406exit:
407 mutex_unlock(&chip->i2c_lock);
408 return ret;
9e60fdcf 409}
410
f3dc3630 411static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off)
9e60fdcf 412{
468e67f6 413 struct pca953x_chip *chip = gpiochip_get_data(gc);
87813cf3
MV
414 u8 inreg = pca953x_recalc_addr(chip, chip->regs->input, off,
415 true, false);
416 u8 bit = BIT(off % BANK_SZ);
ae79c190 417 u32 reg_val;
53661f3b 418 int ret;
9e60fdcf 419
6e20fb18 420 mutex_lock(&chip->i2c_lock);
87813cf3 421 ret = regmap_read(chip->regmap, inreg, &reg_val);
6e20fb18 422 mutex_unlock(&chip->i2c_lock);
9e60fdcf 423 if (ret < 0) {
b27d8517
AS
424 /*
425 * NOTE:
426 * diagnostic already emitted; that's all we should
9e60fdcf 427 * do unless gpio_*_value_cansleep() calls become different
428 * from their nonsleeping siblings (and report faults).
429 */
430 return 0;
431 }
432
87813cf3 433 return !!(reg_val & bit);
9e60fdcf 434}
435
f3dc3630 436static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val)
9e60fdcf 437{
468e67f6 438 struct pca953x_chip *chip = gpiochip_get_data(gc);
ec82d1eb
MV
439 u8 outreg = pca953x_recalc_addr(chip, chip->regs->output, off,
440 true, false);
441 u8 bit = BIT(off % BANK_SZ);
9e60fdcf 442
6e20fb18 443 mutex_lock(&chip->i2c_lock);
ec82d1eb 444 regmap_write_bits(chip->regmap, outreg, bit, val ? bit : 0);
6e20fb18 445 mutex_unlock(&chip->i2c_lock);
9e60fdcf 446}
447
66e57192
AS
448static int pca953x_gpio_get_direction(struct gpio_chip *gc, unsigned off)
449{
450 struct pca953x_chip *chip = gpiochip_get_data(gc);
0f25fda8
MV
451 u8 dirreg = pca953x_recalc_addr(chip, chip->regs->direction, off,
452 true, false);
453 u8 bit = BIT(off % BANK_SZ);
66e57192
AS
454 u32 reg_val;
455 int ret;
456
457 mutex_lock(&chip->i2c_lock);
0f25fda8 458 ret = regmap_read(chip->regmap, dirreg, &reg_val);
66e57192
AS
459 mutex_unlock(&chip->i2c_lock);
460 if (ret < 0)
461 return ret;
462
e42615ec
MV
463 if (reg_val & bit)
464 return GPIO_LINE_DIRECTION_IN;
465
466 return GPIO_LINE_DIRECTION_OUT;
66e57192
AS
467}
468
b4818afe 469static void pca953x_gpio_set_multiple(struct gpio_chip *gc,
ea3d579d 470 unsigned long *mask, unsigned long *bits)
b4818afe 471{
468e67f6 472 struct pca953x_chip *chip = gpiochip_get_data(gc);
35d13d94 473 DECLARE_BITMAP(reg_val, MAX_LINE);
53661f3b 474 int ret;
ea3d579d 475
b4818afe 476 mutex_lock(&chip->i2c_lock);
ec82d1eb
MV
477 ret = pca953x_read_regs(chip, chip->regs->output, reg_val);
478 if (ret)
479 goto exit;
480
35d13d94 481 bitmap_replace(reg_val, reg_val, bits, mask, gc->ngpio);
ea3d579d 482
ec82d1eb 483 pca953x_write_regs(chip, chip->regs->output, reg_val);
b4818afe
PR
484exit:
485 mutex_unlock(&chip->i2c_lock);
486}
487
15add068
TP
488static int pca953x_gpio_set_pull_up_down(struct pca953x_chip *chip,
489 unsigned int offset,
490 unsigned long config)
491{
492 u8 pull_en_reg = pca953x_recalc_addr(chip, PCAL953X_PULL_EN, offset,
493 true, false);
494 u8 pull_sel_reg = pca953x_recalc_addr(chip, PCAL953X_PULL_SEL, offset,
495 true, false);
496 u8 bit = BIT(offset % BANK_SZ);
497 int ret;
498
499 /*
500 * pull-up/pull-down configuration requires PCAL extended
501 * registers
502 */
503 if (!(chip->driver_data & PCA_PCAL))
504 return -ENOTSUPP;
505
506 mutex_lock(&chip->i2c_lock);
507
508 /* Disable pull-up/pull-down */
509 ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, 0);
510 if (ret)
511 goto exit;
512
513 /* Configure pull-up/pull-down */
514 if (config == PIN_CONFIG_BIAS_PULL_UP)
515 ret = regmap_write_bits(chip->regmap, pull_sel_reg, bit, bit);
516 else if (config == PIN_CONFIG_BIAS_PULL_DOWN)
517 ret = regmap_write_bits(chip->regmap, pull_sel_reg, bit, 0);
518 if (ret)
519 goto exit;
520
521 /* Enable pull-up/pull-down */
522 ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, bit);
523
524exit:
525 mutex_unlock(&chip->i2c_lock);
526 return ret;
527}
528
529static int pca953x_gpio_set_config(struct gpio_chip *gc, unsigned int offset,
530 unsigned long config)
531{
532 struct pca953x_chip *chip = gpiochip_get_data(gc);
533
dc87f6dd 534 switch (pinconf_to_config_param(config)) {
15add068
TP
535 case PIN_CONFIG_BIAS_PULL_UP:
536 case PIN_CONFIG_BIAS_PULL_DOWN:
537 return pca953x_gpio_set_pull_up_down(chip, offset, config);
538 default:
539 return -ENOTSUPP;
540 }
541}
542
f5e8ff48 543static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios)
9e60fdcf 544{
545 struct gpio_chip *gc;
546
547 gc = &chip->gpio_chip;
548
f3dc3630
GL
549 gc->direction_input = pca953x_gpio_direction_input;
550 gc->direction_output = pca953x_gpio_direction_output;
551 gc->get = pca953x_gpio_get_value;
552 gc->set = pca953x_gpio_set_value;
66e57192 553 gc->get_direction = pca953x_gpio_get_direction;
b4818afe 554 gc->set_multiple = pca953x_gpio_set_multiple;
15add068 555 gc->set_config = pca953x_gpio_set_config;
9fb1f39e 556 gc->can_sleep = true;
9e60fdcf 557
558 gc->base = chip->gpio_start;
f5e8ff48 559 gc->ngpio = gpios;
5128f8d4 560 gc->label = dev_name(&chip->client->dev);
58383c78 561 gc->parent = &chip->client->dev;
d72cbed0 562 gc->owner = THIS_MODULE;
77906a54 563 gc->names = chip->names;
9e60fdcf 564}
565
89ea8bbe 566#ifdef CONFIG_GPIO_PCA953X_IRQ
6f5cfc0e 567static void pca953x_irq_mask(struct irq_data *d)
89ea8bbe 568{
7bcbce55 569 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
468e67f6 570 struct pca953x_chip *chip = gpiochip_get_data(gc);
2688302b 571 irq_hw_number_t hwirq = irqd_to_hwirq(d);
89ea8bbe 572
2688302b 573 clear_bit(hwirq, chip->irq_mask);
89ea8bbe
MZ
574}
575
6f5cfc0e 576static void pca953x_irq_unmask(struct irq_data *d)
89ea8bbe 577{
7bcbce55 578 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
468e67f6 579 struct pca953x_chip *chip = gpiochip_get_data(gc);
2688302b 580 irq_hw_number_t hwirq = irqd_to_hwirq(d);
89ea8bbe 581
2688302b 582 set_bit(hwirq, chip->irq_mask);
89ea8bbe
MZ
583}
584
2a9a2f27
GU
585static int pca953x_irq_set_wake(struct irq_data *d, unsigned int on)
586{
587 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
588 struct pca953x_chip *chip = gpiochip_get_data(gc);
589
f70fbc15
GU
590 if (on)
591 atomic_inc(&chip->wakeup_path);
592 else
593 atomic_dec(&chip->wakeup_path);
594
2a9a2f27
GU
595 return irq_set_irq_wake(chip->client->irq, on);
596}
597
6f5cfc0e 598static void pca953x_irq_bus_lock(struct irq_data *d)
89ea8bbe 599{
7bcbce55 600 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
468e67f6 601 struct pca953x_chip *chip = gpiochip_get_data(gc);
89ea8bbe
MZ
602
603 mutex_lock(&chip->irq_lock);
604}
605
6f5cfc0e 606static void pca953x_irq_bus_sync_unlock(struct irq_data *d)
89ea8bbe 607{
7bcbce55 608 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
468e67f6 609 struct pca953x_chip *chip = gpiochip_get_data(gc);
35d13d94
AS
610 DECLARE_BITMAP(irq_mask, MAX_LINE);
611 DECLARE_BITMAP(reg_direction, MAX_LINE);
612 int level;
0f25fda8 613
438b6c20 614 pca953x_read_regs(chip, chip->regs->direction, reg_direction);
44896bea
YL
615
616 if (chip->driver_data & PCA_PCAL) {
617 /* Enable latch on interrupt-enabled inputs */
618 pca953x_write_regs(chip, PCAL953X_IN_LATCH, chip->irq_mask);
619
35d13d94 620 bitmap_complement(irq_mask, chip->irq_mask, gc->ngpio);
44896bea
YL
621
622 /* Unmask enabled interrupts */
35d13d94 623 pca953x_write_regs(chip, PCAL953X_INT_MASK, irq_mask);
44896bea 624 }
a2cb9aeb 625
35d13d94
AS
626 bitmap_or(irq_mask, chip->irq_trig_fall, chip->irq_trig_raise, gc->ngpio);
627 bitmap_and(irq_mask, irq_mask, reg_direction, gc->ngpio);
628
a2cb9aeb 629 /* Look for any newly setup interrupt */
35d13d94
AS
630 for_each_set_bit(level, irq_mask, gc->ngpio)
631 pca953x_gpio_direction_input(&chip->gpio_chip, level);
89ea8bbe
MZ
632
633 mutex_unlock(&chip->irq_lock);
634}
635
6f5cfc0e 636static int pca953x_irq_set_type(struct irq_data *d, unsigned int type)
89ea8bbe 637{
7bcbce55 638 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
468e67f6 639 struct pca953x_chip *chip = gpiochip_get_data(gc);
2688302b 640 irq_hw_number_t hwirq = irqd_to_hwirq(d);
89ea8bbe
MZ
641
642 if (!(type & IRQ_TYPE_EDGE_BOTH)) {
643 dev_err(&chip->client->dev, "irq %d: unsupported type %d\n",
6f5cfc0e 644 d->irq, type);
89ea8bbe
MZ
645 return -EINVAL;
646 }
647
2688302b
AS
648 assign_bit(hwirq, chip->irq_trig_fall, type & IRQ_TYPE_EDGE_FALLING);
649 assign_bit(hwirq, chip->irq_trig_raise, type & IRQ_TYPE_EDGE_RISING);
89ea8bbe 650
a2cb9aeb 651 return 0;
89ea8bbe
MZ
652}
653
0a70fe00
GD
654static void pca953x_irq_shutdown(struct irq_data *d)
655{
c378b3aa
MW
656 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
657 struct pca953x_chip *chip = gpiochip_get_data(gc);
2688302b 658 irq_hw_number_t hwirq = irqd_to_hwirq(d);
0a70fe00 659
2688302b
AS
660 clear_bit(hwirq, chip->irq_trig_raise);
661 clear_bit(hwirq, chip->irq_trig_fall);
0a70fe00
GD
662}
663
35d13d94 664static bool pca953x_irq_pending(struct pca953x_chip *chip, unsigned long *pending)
89ea8bbe 665{
35d13d94
AS
666 struct gpio_chip *gc = &chip->gpio_chip;
667 DECLARE_BITMAP(reg_direction, MAX_LINE);
668 DECLARE_BITMAP(old_stat, MAX_LINE);
669 DECLARE_BITMAP(cur_stat, MAX_LINE);
670 DECLARE_BITMAP(new_stat, MAX_LINE);
671 DECLARE_BITMAP(trigger, MAX_LINE);
672 int ret;
33226ffd 673
44896bea
YL
674 if (chip->driver_data & PCA_PCAL) {
675 /* Read the current interrupt status from the device */
676 ret = pca953x_read_regs(chip, PCAL953X_INT_STAT, trigger);
677 if (ret)
678 return false;
679
680 /* Check latched inputs and clear interrupt status */
0a0a0219 681 ret = pca953x_read_regs(chip, chip->regs->input, cur_stat);
44896bea
YL
682 if (ret)
683 return false;
684
35d13d94
AS
685 /* Apply filter for rising/falling edge selection */
686 bitmap_replace(new_stat, chip->irq_trig_fall, chip->irq_trig_raise, cur_stat, gc->ngpio);
687
688 bitmap_and(pending, new_stat, trigger, gc->ngpio);
44896bea 689
35d13d94 690 return !bitmap_empty(pending, gc->ngpio);
44896bea
YL
691 }
692
53661f3b 693 ret = pca953x_read_regs(chip, chip->regs->input, cur_stat);
89ea8bbe 694 if (ret)
b6ac1280 695 return false;
89ea8bbe
MZ
696
697 /* Remove output pins from the equation */
438b6c20 698 pca953x_read_regs(chip, chip->regs->direction, reg_direction);
89ea8bbe 699
35d13d94 700 bitmap_copy(old_stat, chip->irq_stat, gc->ngpio);
89ea8bbe 701
35d13d94
AS
702 bitmap_and(new_stat, cur_stat, reg_direction, gc->ngpio);
703 bitmap_xor(cur_stat, new_stat, old_stat, gc->ngpio);
704 bitmap_and(trigger, cur_stat, chip->irq_mask, gc->ngpio);
f5f0b7aa 705
35d13d94 706 if (bitmap_empty(trigger, gc->ngpio))
b6ac1280 707 return false;
89ea8bbe 708
35d13d94 709 bitmap_copy(chip->irq_stat, new_stat, gc->ngpio);
89ea8bbe 710
35d13d94
AS
711 bitmap_and(cur_stat, chip->irq_trig_fall, old_stat, gc->ngpio);
712 bitmap_and(old_stat, chip->irq_trig_raise, new_stat, gc->ngpio);
713 bitmap_or(new_stat, old_stat, cur_stat, gc->ngpio);
714 bitmap_and(pending, new_stat, trigger, gc->ngpio);
89ea8bbe 715
35d13d94 716 return !bitmap_empty(pending, gc->ngpio);
89ea8bbe
MZ
717}
718
719static irqreturn_t pca953x_irq_handler(int irq, void *devid)
720{
721 struct pca953x_chip *chip = devid;
35d13d94
AS
722 struct gpio_chip *gc = &chip->gpio_chip;
723 DECLARE_BITMAP(pending, MAX_LINE);
724 int level;
89ea8bbe 725
f5f0b7aa 726 if (!pca953x_irq_pending(chip, pending))
3275d072 727 return IRQ_NONE;
89ea8bbe 728
35d13d94
AS
729 for_each_set_bit(level, pending, gc->ngpio)
730 handle_nested_irq(irq_find_mapping(gc->irq.domain, level));
89ea8bbe 731
a97832f2 732 return IRQ_HANDLED;
89ea8bbe
MZ
733}
734
b27d8517 735static int pca953x_irq_setup(struct pca953x_chip *chip, int irq_base)
89ea8bbe
MZ
736{
737 struct i2c_client *client = chip->client;
5c4fee63 738 struct irq_chip *irq_chip = &chip->irq_chip;
35d13d94
AS
739 DECLARE_BITMAP(reg_direction, MAX_LINE);
740 DECLARE_BITMAP(irq_stat, MAX_LINE);
741 int ret;
89ea8bbe 742
7341fa7a
TP
743 if (!client->irq)
744 return 0;
89ea8bbe 745
7341fa7a
TP
746 if (irq_base == -1)
747 return 0;
89ea8bbe 748
7341fa7a
TP
749 if (!(chip->driver_data & PCA_INT))
750 return 0;
fdd50409 751
35d13d94 752 ret = pca953x_read_regs(chip, chip->regs->input, irq_stat);
7341fa7a
TP
753 if (ret)
754 return ret;
755
756 /*
757 * There is no way to know which GPIO line generated the
758 * interrupt. We have to rely on the previous read for
759 * this purpose.
760 */
438b6c20 761 pca953x_read_regs(chip, chip->regs->direction, reg_direction);
35d13d94 762 bitmap_and(chip->irq_stat, irq_stat, reg_direction, chip->gpio_chip.ngpio);
7341fa7a
TP
763 mutex_init(&chip->irq_lock);
764
765 ret = devm_request_threaded_irq(&client->dev, client->irq,
766 NULL, pca953x_irq_handler,
55f8bbb5 767 IRQF_ONESHOT | IRQF_SHARED,
7341fa7a
TP
768 dev_name(&client->dev), chip);
769 if (ret) {
770 dev_err(&client->dev, "failed to request irq %d\n",
771 client->irq);
772 return ret;
89ea8bbe
MZ
773 }
774
5c4fee63
TP
775 irq_chip->name = dev_name(&chip->client->dev);
776 irq_chip->irq_mask = pca953x_irq_mask;
777 irq_chip->irq_unmask = pca953x_irq_unmask;
2a9a2f27 778 irq_chip->irq_set_wake = pca953x_irq_set_wake;
5c4fee63
TP
779 irq_chip->irq_bus_lock = pca953x_irq_bus_lock;
780 irq_chip->irq_bus_sync_unlock = pca953x_irq_bus_sync_unlock;
781 irq_chip->irq_set_type = pca953x_irq_set_type;
782 irq_chip->irq_shutdown = pca953x_irq_shutdown;
783
b27d8517
AS
784 ret = gpiochip_irqchip_add_nested(&chip->gpio_chip, irq_chip,
785 irq_base, handle_simple_irq,
786 IRQ_TYPE_NONE);
7341fa7a
TP
787 if (ret) {
788 dev_err(&client->dev,
789 "could not connect irqchip to gpiochip\n");
790 return ret;
791 }
792
5c4fee63 793 gpiochip_set_nested_irqchip(&chip->gpio_chip, irq_chip, client->irq);
7341fa7a 794
89ea8bbe 795 return 0;
89ea8bbe
MZ
796}
797
89ea8bbe
MZ
798#else /* CONFIG_GPIO_PCA953X_IRQ */
799static int pca953x_irq_setup(struct pca953x_chip *chip,
c6dcf592 800 int irq_base)
89ea8bbe
MZ
801{
802 struct i2c_client *client = chip->client;
89ea8bbe 803
72b38caf 804 if (client->irq && irq_base != -1 && (chip->driver_data & PCA_INT))
89ea8bbe
MZ
805 dev_warn(&client->dev, "interrupt support not compiled in\n");
806
807 return 0;
808}
89ea8bbe
MZ
809#endif
810
7a04aaa3 811static int device_pca95xx_init(struct pca953x_chip *chip, u32 invert)
33226ffd 812{
35d13d94 813 DECLARE_BITMAP(val, MAX_LINE);
33226ffd
HZ
814 int ret;
815
ec82d1eb
MV
816 ret = regcache_sync_region(chip->regmap, chip->regs->output,
817 chip->regs->output + NBANK(chip));
6dd6a2d2 818 if (ret)
33226ffd
HZ
819 goto out;
820
0f25fda8
MV
821 ret = regcache_sync_region(chip->regmap, chip->regs->direction,
822 chip->regs->direction + NBANK(chip));
6dd6a2d2 823 if (ret)
33226ffd
HZ
824 goto out;
825
826 /* set platform specific polarity inversion */
f5f0b7aa 827 if (invert)
35d13d94 828 bitmap_fill(val, MAX_LINE);
f5f0b7aa 829 else
35d13d94 830 bitmap_zero(val, MAX_LINE);
f5f0b7aa 831
7a04aaa3 832 ret = pca953x_write_regs(chip, chip->regs->invert, val);
33226ffd
HZ
833out:
834 return ret;
835}
836
3836309d 837static int device_pca957x_init(struct pca953x_chip *chip, u32 invert)
33226ffd 838{
35d13d94 839 DECLARE_BITMAP(val, MAX_LINE);
33226ffd 840 int ret;
33226ffd 841
7a04aaa3 842 ret = device_pca95xx_init(chip, invert);
c75a3772
NK
843 if (ret)
844 goto out;
33226ffd 845
20a8a968 846 /* To enable register 6, 7 to control pull up and pull down */
f5f0b7aa 847 memset(val, 0x02, NBANK(chip));
c75a3772
NK
848 ret = pca953x_write_regs(chip, PCA957X_BKEN, val);
849 if (ret)
850 goto out;
33226ffd
HZ
851
852 return 0;
853out:
854 return ret;
855}
856
3836309d 857static int pca953x_probe(struct i2c_client *client,
b27d8517 858 const struct i2c_device_id *i2c_id)
9e60fdcf 859{
f3dc3630
GL
860 struct pca953x_platform_data *pdata;
861 struct pca953x_chip *chip;
6a7b36aa 862 int irq_base = 0;
7ea2aa20 863 int ret;
6a7b36aa 864 u32 invert = 0;
e23efa31 865 struct regulator *reg;
9e60fdcf 866
b27d8517 867 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
1965d303
NC
868 if (chip == NULL)
869 return -ENOMEM;
870
e56aee18 871 pdata = dev_get_platdata(&client->dev);
c6dcf592
DJ
872 if (pdata) {
873 irq_base = pdata->irq_base;
874 chip->gpio_start = pdata->gpio_base;
875 invert = pdata->invert;
876 chip->names = pdata->names;
877 } else {
054ccdef
SL
878 struct gpio_desc *reset_gpio;
879
4bb93349
MSP
880 chip->gpio_start = -1;
881 irq_base = 0;
054ccdef 882
96530b37
AS
883 /*
884 * See if we need to de-assert a reset pin.
885 *
886 * There is no known ACPI-enabled platforms that are
887 * using "reset" GPIO. Otherwise any of those platform
888 * must use _DSD method with corresponding property.
889 */
054ccdef
SL
890 reset_gpio = devm_gpiod_get_optional(&client->dev, "reset",
891 GPIOD_OUT_LOW);
892 if (IS_ERR(reset_gpio))
893 return PTR_ERR(reset_gpio);
1965d303 894 }
9e60fdcf 895
896 chip->client = client;
897
e23efa31
PR
898 reg = devm_regulator_get(&client->dev, "vcc");
899 if (IS_ERR(reg)) {
900 ret = PTR_ERR(reg);
901 if (ret != -EPROBE_DEFER)
902 dev_err(&client->dev, "reg get err: %d\n", ret);
903 return ret;
904 }
905 ret = regulator_enable(reg);
906 if (ret) {
907 dev_err(&client->dev, "reg en err: %d\n", ret);
908 return ret;
909 }
910 chip->regulator = reg;
911
6212e1d6
WS
912 if (i2c_id) {
913 chip->driver_data = i2c_id->driver_data;
f32517bf 914 } else {
8eeb467d
AS
915 const void *match;
916
917 match = device_get_match_data(&client->dev);
918 if (!match) {
919 ret = -ENODEV;
920 goto err_exit;
6f29c9af 921 }
8eeb467d
AS
922
923 chip->driver_data = (uintptr_t)match;
f32517bf
AS
924 }
925
49427232
MV
926 i2c_set_clientdata(client, chip);
927
928 chip->regmap = devm_regmap_init_i2c(client, &pca953x_i2c_regmap);
929 if (IS_ERR(chip->regmap)) {
930 ret = PTR_ERR(chip->regmap);
931 goto err_exit;
932 }
933
0f25fda8
MV
934 regcache_mark_dirty(chip->regmap);
935
6e20fb18 936 mutex_init(&chip->i2c_lock);
74f47f07
BG
937 /*
938 * In case we have an i2c-mux controlled by a GPIO provided by an
939 * expander using the same driver higher on the device tree, read the
940 * i2c adapter nesting depth and use the retrieved value as lockdep
941 * subclass for chip->i2c_lock.
942 *
943 * REVISIT: This solution is not complete. It protects us from lockdep
944 * false positives when the expander controlling the i2c-mux is on
945 * a different level on the device tree, but not when it's on the same
946 * level on a different branch (in which case the subclass number
947 * would be the same).
948 *
949 * TODO: Once a correct solution is developed, a similar fix should be
950 * applied to all other i2c-controlled GPIO expanders (and potentially
951 * regmap-i2c).
952 */
559b4699
BG
953 lockdep_set_subclass(&chip->i2c_lock,
954 i2c_adapter_depth(client->adapter));
6e20fb18 955
9e60fdcf 956 /* initialize cached registers from their original values.
957 * we can't share this chip with another i2c master.
958 */
c6664149 959 pca953x_setup_gpio(chip, chip->driver_data & PCA_GPIO_MASK);
f5e8ff48 960
7a04aaa3
MV
961 if (PCA_CHIP_TYPE(chip->driver_data) == PCA953X_TYPE) {
962 chip->regs = &pca953x_regs;
963 ret = device_pca95xx_init(chip, invert);
7acc66e3 964 } else {
7a04aaa3 965 chip->regs = &pca957x_regs;
7ea2aa20 966 ret = device_pca957x_init(chip, invert);
7a04aaa3 967 }
7ea2aa20 968 if (ret)
e23efa31 969 goto err_exit;
9e60fdcf 970
0ece84f5 971 ret = devm_gpiochip_add_data(&client->dev, &chip->gpio_chip, chip);
89ea8bbe 972 if (ret)
e23efa31 973 goto err_exit;
f5e8ff48 974
c6664149 975 ret = pca953x_irq_setup(chip, irq_base);
9e60fdcf 976 if (ret)
e23efa31 977 goto err_exit;
9e60fdcf 978
c6dcf592 979 if (pdata && pdata->setup) {
9e60fdcf 980 ret = pdata->setup(client, chip->gpio_chip.base,
b27d8517 981 chip->gpio_chip.ngpio, pdata->context);
9e60fdcf 982 if (ret < 0)
983 dev_warn(&client->dev, "setup failed, %d\n", ret);
984 }
985
9e60fdcf 986 return 0;
e23efa31
PR
987
988err_exit:
989 regulator_disable(chip->regulator);
990 return ret;
9e60fdcf 991}
992
f3dc3630 993static int pca953x_remove(struct i2c_client *client)
9e60fdcf 994{
e56aee18 995 struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev);
f3dc3630 996 struct pca953x_chip *chip = i2c_get_clientdata(client);
d147d548 997 int ret;
9e60fdcf 998
c6dcf592 999 if (pdata && pdata->teardown) {
9e60fdcf 1000 ret = pdata->teardown(client, chip->gpio_chip.base,
b27d8517 1001 chip->gpio_chip.ngpio, pdata->context);
e23efa31 1002 if (ret < 0)
f4160faa 1003 dev_err(&client->dev, "teardown failed, %d\n", ret);
bf62efeb
AB
1004 } else {
1005 ret = 0;
9e60fdcf 1006 }
1007
e23efa31
PR
1008 regulator_disable(chip->regulator);
1009
1010 return ret;
9e60fdcf 1011}
1012
b7657430
MV
1013#ifdef CONFIG_PM_SLEEP
1014static int pca953x_regcache_sync(struct device *dev)
1015{
1016 struct pca953x_chip *chip = dev_get_drvdata(dev);
1017 int ret;
1018
1019 /*
1020 * The ordering between direction and output is important,
1021 * sync these registers first and only then sync the rest.
1022 */
1023 ret = regcache_sync_region(chip->regmap, chip->regs->direction,
1024 chip->regs->direction + NBANK(chip));
6dd6a2d2 1025 if (ret) {
b7657430
MV
1026 dev_err(dev, "Failed to sync GPIO dir registers: %d\n", ret);
1027 return ret;
1028 }
1029
1030 ret = regcache_sync_region(chip->regmap, chip->regs->output,
1031 chip->regs->output + NBANK(chip));
6dd6a2d2 1032 if (ret) {
b7657430
MV
1033 dev_err(dev, "Failed to sync GPIO out registers: %d\n", ret);
1034 return ret;
1035 }
1036
1037#ifdef CONFIG_GPIO_PCA953X_IRQ
1038 if (chip->driver_data & PCA_PCAL) {
1039 ret = regcache_sync_region(chip->regmap, PCAL953X_IN_LATCH,
1040 PCAL953X_IN_LATCH + NBANK(chip));
6dd6a2d2 1041 if (ret) {
b7657430
MV
1042 dev_err(dev, "Failed to sync INT latch registers: %d\n",
1043 ret);
1044 return ret;
1045 }
1046
1047 ret = regcache_sync_region(chip->regmap, PCAL953X_INT_MASK,
1048 PCAL953X_INT_MASK + NBANK(chip));
6dd6a2d2 1049 if (ret) {
b7657430
MV
1050 dev_err(dev, "Failed to sync INT mask registers: %d\n",
1051 ret);
1052 return ret;
1053 }
1054 }
1055#endif
1056
1057 return 0;
1058}
1059
1060static int pca953x_suspend(struct device *dev)
1061{
1062 struct pca953x_chip *chip = dev_get_drvdata(dev);
1063
1064 regcache_cache_only(chip->regmap, true);
1065
f70fbc15
GU
1066 if (atomic_read(&chip->wakeup_path))
1067 device_set_wakeup_path(dev);
1068 else
1069 regulator_disable(chip->regulator);
b7657430
MV
1070
1071 return 0;
1072}
1073
1074static int pca953x_resume(struct device *dev)
1075{
1076 struct pca953x_chip *chip = dev_get_drvdata(dev);
1077 int ret;
1078
f70fbc15
GU
1079 if (!atomic_read(&chip->wakeup_path)) {
1080 ret = regulator_enable(chip->regulator);
6dd6a2d2 1081 if (ret) {
f70fbc15
GU
1082 dev_err(dev, "Failed to enable regulator: %d\n", ret);
1083 return 0;
1084 }
b7657430
MV
1085 }
1086
1087 regcache_cache_only(chip->regmap, false);
1088 regcache_mark_dirty(chip->regmap);
1089 ret = pca953x_regcache_sync(dev);
1090 if (ret)
1091 return ret;
1092
1093 ret = regcache_sync(chip->regmap);
6dd6a2d2 1094 if (ret) {
b7657430
MV
1095 dev_err(dev, "Failed to restore register map: %d\n", ret);
1096 return ret;
1097 }
1098
1099 return 0;
1100}
1101#endif
1102
6f29c9af
BD
1103/* convenience to stop overlong match-table lines */
1104#define OF_953X(__nrgpio, __int) (void *)(__nrgpio | PCA953X_TYPE | __int)
1105#define OF_957X(__nrgpio, __int) (void *)(__nrgpio | PCA957X_TYPE | __int)
1106
ed32620e 1107static const struct of_device_id pca953x_dt_ids[] = {
12c7a4fc 1108 { .compatible = "nxp,pca6416", .data = OF_953X(16, PCA_INT), },
6f29c9af
BD
1109 { .compatible = "nxp,pca9505", .data = OF_953X(40, PCA_INT), },
1110 { .compatible = "nxp,pca9534", .data = OF_953X( 8, PCA_INT), },
1111 { .compatible = "nxp,pca9535", .data = OF_953X(16, PCA_INT), },
1112 { .compatible = "nxp,pca9536", .data = OF_953X( 4, 0), },
1113 { .compatible = "nxp,pca9537", .data = OF_953X( 4, PCA_INT), },
1114 { .compatible = "nxp,pca9538", .data = OF_953X( 8, PCA_INT), },
1115 { .compatible = "nxp,pca9539", .data = OF_953X(16, PCA_INT), },
1116 { .compatible = "nxp,pca9554", .data = OF_953X( 8, PCA_INT), },
1117 { .compatible = "nxp,pca9555", .data = OF_953X(16, PCA_INT), },
1118 { .compatible = "nxp,pca9556", .data = OF_953X( 8, 0), },
1119 { .compatible = "nxp,pca9557", .data = OF_953X( 8, 0), },
1120 { .compatible = "nxp,pca9574", .data = OF_957X( 8, PCA_INT), },
1121 { .compatible = "nxp,pca9575", .data = OF_957X(16, PCA_INT), },
1122 { .compatible = "nxp,pca9698", .data = OF_953X(40, 0), },
1123
01769c47 1124 { .compatible = "nxp,pcal6416", .data = OF_953X(16, PCA_LATCH_INT), },
0cdf21b3
NS
1125 { .compatible = "nxp,pcal6524", .data = OF_953X(24, PCA_LATCH_INT), },
1126 { .compatible = "nxp,pcal9555a", .data = OF_953X(16, PCA_LATCH_INT), },
3a711e0d 1127
6f29c9af
BD
1128 { .compatible = "maxim,max7310", .data = OF_953X( 8, 0), },
1129 { .compatible = "maxim,max7312", .data = OF_953X(16, PCA_INT), },
1130 { .compatible = "maxim,max7313", .data = OF_953X(16, PCA_INT), },
1131 { .compatible = "maxim,max7315", .data = OF_953X( 8, PCA_INT), },
1208c935 1132 { .compatible = "maxim,max7318", .data = OF_953X(16, PCA_INT), },
6f29c9af
BD
1133
1134 { .compatible = "ti,pca6107", .data = OF_953X( 8, PCA_INT), },
353661df 1135 { .compatible = "ti,pca9536", .data = OF_953X( 4, 0), },
6f29c9af
BD
1136 { .compatible = "ti,tca6408", .data = OF_953X( 8, PCA_INT), },
1137 { .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
1138 { .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
8b74ae41 1139 { .compatible = "ti,tca9539", .data = OF_953X(16, PCA_INT), },
6f29c9af 1140
932002f0 1141 { .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), },
8a64e557 1142 { .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), },
6f29c9af
BD
1143
1144 { .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
ed32620e
MR
1145 { }
1146};
1147
1148MODULE_DEVICE_TABLE(of, pca953x_dt_ids);
1149
b7657430
MV
1150static SIMPLE_DEV_PM_OPS(pca953x_pm_ops, pca953x_suspend, pca953x_resume);
1151
f3dc3630 1152static struct i2c_driver pca953x_driver = {
9e60fdcf 1153 .driver = {
f3dc3630 1154 .name = "pca953x",
b7657430 1155 .pm = &pca953x_pm_ops,
ed32620e 1156 .of_match_table = pca953x_dt_ids,
f32517bf 1157 .acpi_match_table = ACPI_PTR(pca953x_acpi_ids),
9e60fdcf 1158 },
f3dc3630
GL
1159 .probe = pca953x_probe,
1160 .remove = pca953x_remove,
3760f736 1161 .id_table = pca953x_id,
9e60fdcf 1162};
1163
f3dc3630 1164static int __init pca953x_init(void)
9e60fdcf 1165{
f3dc3630 1166 return i2c_add_driver(&pca953x_driver);
9e60fdcf 1167}
2f8d1197
DB
1168/* register after i2c postcore initcall and before
1169 * subsys initcalls that may rely on these GPIOs
1170 */
1171subsys_initcall(pca953x_init);
9e60fdcf 1172
f3dc3630 1173static void __exit pca953x_exit(void)
9e60fdcf 1174{
f3dc3630 1175 i2c_del_driver(&pca953x_driver);
9e60fdcf 1176}
f3dc3630 1177module_exit(pca953x_exit);
9e60fdcf 1178
1179MODULE_AUTHOR("eric miao <eric.miao@marvell.com>");
f3dc3630 1180MODULE_DESCRIPTION("GPIO expander driver for PCA953x");
9e60fdcf 1181MODULE_LICENSE("GPL");