2 * PCA953x 4/8/16/24/40 bit I/O ports
5 * Copyright (C) 2007 Marvell International Ltd.
7 * Derived from drivers/i2c/chips/pca9539.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/gpio.h>
17 #include <linux/interrupt.h>
18 #include <linux/i2c.h>
19 #include <linux/platform_data/pca953x.h>
20 #include <linux/slab.h>
21 #include <asm/unaligned.h>
22 #include <linux/of_platform.h>
23 #include <linux/acpi.h>
25 #define PCA953X_INPUT 0
26 #define PCA953X_OUTPUT 1
27 #define PCA953X_INVERT 2
28 #define PCA953X_DIRECTION 3
30 #define REG_ADDR_AI 0x80
33 #define PCA957X_INVRT 1
34 #define PCA957X_BKEN 2
35 #define PCA957X_PUPD 3
39 #define PCA957X_INTS 7
41 #define PCAL953X_IN_LATCH 34
42 #define PCAL953X_INT_MASK 37
43 #define PCAL953X_INT_STAT 38
45 #define PCA_GPIO_MASK 0x00FF
46 #define PCA_INT 0x0100
47 #define PCA_PCAL 0x0200
48 #define PCA953X_TYPE 0x1000
49 #define PCA957X_TYPE 0x2000
50 #define PCA_TYPE_MASK 0xF000
52 #define PCA_CHIP_TYPE(x) ((x) & PCA_TYPE_MASK)
54 static const struct i2c_device_id pca953x_id[] = {
55 { "pca9505", 40 | PCA953X_TYPE | PCA_INT, },
56 { "pca9534", 8 | PCA953X_TYPE | PCA_INT, },
57 { "pca9535", 16 | PCA953X_TYPE | PCA_INT, },
58 { "pca9536", 4 | PCA953X_TYPE, },
59 { "pca9537", 4 | PCA953X_TYPE | PCA_INT, },
60 { "pca9538", 8 | PCA953X_TYPE | PCA_INT, },
61 { "pca9539", 16 | PCA953X_TYPE | PCA_INT, },
62 { "pca9554", 8 | PCA953X_TYPE | PCA_INT, },
63 { "pca9555", 16 | PCA953X_TYPE | PCA_INT, },
64 { "pca9556", 8 | PCA953X_TYPE, },
65 { "pca9557", 8 | PCA953X_TYPE, },
66 { "pca9574", 8 | PCA957X_TYPE | PCA_INT, },
67 { "pca9575", 16 | PCA957X_TYPE | PCA_INT, },
68 { "pca9698", 40 | PCA953X_TYPE, },
70 { "pcal9555a", 16 | PCA953X_TYPE | PCA_INT | PCA_PCAL, },
72 { "max7310", 8 | PCA953X_TYPE, },
73 { "max7312", 16 | PCA953X_TYPE | PCA_INT, },
74 { "max7313", 16 | PCA953X_TYPE | PCA_INT, },
75 { "max7315", 8 | PCA953X_TYPE | PCA_INT, },
76 { "pca6107", 8 | PCA953X_TYPE | PCA_INT, },
77 { "tca6408", 8 | PCA953X_TYPE | PCA_INT, },
78 { "tca6416", 16 | PCA953X_TYPE | PCA_INT, },
79 { "tca6424", 24 | PCA953X_TYPE | PCA_INT, },
80 { "tca9539", 16 | PCA953X_TYPE | PCA_INT, },
81 { "xra1202", 8 | PCA953X_TYPE },
84 MODULE_DEVICE_TABLE(i2c, pca953x_id);
86 static const struct acpi_device_id pca953x_acpi_ids[] = {
87 { "INT3491", 16 | PCA953X_TYPE | PCA_INT | PCA_PCAL, },
90 MODULE_DEVICE_TABLE(acpi, pca953x_acpi_ids);
95 #define NBANK(chip) DIV_ROUND_UP(chip->gpio_chip.ngpio, BANK_SZ)
99 u8 reg_output[MAX_BANK];
100 u8 reg_direction[MAX_BANK];
101 struct mutex i2c_lock;
103 #ifdef CONFIG_GPIO_PCA953X_IRQ
104 struct mutex irq_lock;
105 u8 irq_mask[MAX_BANK];
106 u8 irq_stat[MAX_BANK];
107 u8 irq_trig_raise[MAX_BANK];
108 u8 irq_trig_fall[MAX_BANK];
111 struct i2c_client *client;
112 struct gpio_chip gpio_chip;
113 const char *const *names;
115 unsigned long driver_data;
118 static int pca953x_read_single(struct pca953x_chip *chip, int reg, u32 *val,
122 int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
123 int offset = off / BANK_SZ;
125 ret = i2c_smbus_read_byte_data(chip->client,
126 (reg << bank_shift) + offset);
130 dev_err(&chip->client->dev, "failed reading register\n");
137 static int pca953x_write_single(struct pca953x_chip *chip, int reg, u32 val,
141 int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
142 int offset = off / BANK_SZ;
144 ret = i2c_smbus_write_byte_data(chip->client,
145 (reg << bank_shift) + offset, val);
148 dev_err(&chip->client->dev, "failed writing register\n");
155 static int pca953x_write_regs(struct pca953x_chip *chip, int reg, u8 *val)
159 if (chip->gpio_chip.ngpio <= 8)
160 ret = i2c_smbus_write_byte_data(chip->client, reg, *val);
161 else if (chip->gpio_chip.ngpio >= 24) {
162 int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
163 ret = i2c_smbus_write_i2c_block_data(chip->client,
164 (reg << bank_shift) | REG_ADDR_AI,
167 switch (chip->chip_type) {
169 __le16 word = cpu_to_le16(get_unaligned((u16 *)val));
171 ret = i2c_smbus_write_word_data(chip->client, reg << 1,
176 ret = i2c_smbus_write_byte_data(chip->client, reg << 1,
180 ret = i2c_smbus_write_byte_data(chip->client,
188 dev_err(&chip->client->dev, "failed writing register\n");
195 static int pca953x_read_regs(struct pca953x_chip *chip, int reg, u8 *val)
199 if (chip->gpio_chip.ngpio <= 8) {
200 ret = i2c_smbus_read_byte_data(chip->client, reg);
202 } else if (chip->gpio_chip.ngpio >= 24) {
203 int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
205 ret = i2c_smbus_read_i2c_block_data(chip->client,
206 (reg << bank_shift) | REG_ADDR_AI,
209 ret = i2c_smbus_read_word_data(chip->client, reg << 1);
210 val[0] = (u16)ret & 0xFF;
211 val[1] = (u16)ret >> 8;
214 dev_err(&chip->client->dev, "failed reading register\n");
221 static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off)
223 struct pca953x_chip *chip = gpiochip_get_data(gc);
227 mutex_lock(&chip->i2c_lock);
228 reg_val = chip->reg_direction[off / BANK_SZ] | (1u << (off % BANK_SZ));
230 switch (chip->chip_type) {
232 offset = PCA953X_DIRECTION;
235 offset = PCA957X_CFG;
238 ret = pca953x_write_single(chip, offset, reg_val, off);
242 chip->reg_direction[off / BANK_SZ] = reg_val;
244 mutex_unlock(&chip->i2c_lock);
248 static int pca953x_gpio_direction_output(struct gpio_chip *gc,
249 unsigned off, int val)
251 struct pca953x_chip *chip = gpiochip_get_data(gc);
255 mutex_lock(&chip->i2c_lock);
256 /* set output level */
258 reg_val = chip->reg_output[off / BANK_SZ]
259 | (1u << (off % BANK_SZ));
261 reg_val = chip->reg_output[off / BANK_SZ]
262 & ~(1u << (off % BANK_SZ));
264 switch (chip->chip_type) {
266 offset = PCA953X_OUTPUT;
269 offset = PCA957X_OUT;
272 ret = pca953x_write_single(chip, offset, reg_val, off);
276 chip->reg_output[off / BANK_SZ] = reg_val;
279 reg_val = chip->reg_direction[off / BANK_SZ] & ~(1u << (off % BANK_SZ));
280 switch (chip->chip_type) {
282 offset = PCA953X_DIRECTION;
285 offset = PCA957X_CFG;
288 ret = pca953x_write_single(chip, offset, reg_val, off);
292 chip->reg_direction[off / BANK_SZ] = reg_val;
294 mutex_unlock(&chip->i2c_lock);
298 static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off)
300 struct pca953x_chip *chip = gpiochip_get_data(gc);
304 mutex_lock(&chip->i2c_lock);
305 switch (chip->chip_type) {
307 offset = PCA953X_INPUT;
313 ret = pca953x_read_single(chip, offset, ®_val, off);
314 mutex_unlock(&chip->i2c_lock);
316 /* NOTE: diagnostic already emitted; that's all we should
317 * do unless gpio_*_value_cansleep() calls become different
318 * from their nonsleeping siblings (and report faults).
323 return (reg_val & (1u << (off % BANK_SZ))) ? 1 : 0;
326 static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val)
328 struct pca953x_chip *chip = gpiochip_get_data(gc);
332 mutex_lock(&chip->i2c_lock);
334 reg_val = chip->reg_output[off / BANK_SZ]
335 | (1u << (off % BANK_SZ));
337 reg_val = chip->reg_output[off / BANK_SZ]
338 & ~(1u << (off % BANK_SZ));
340 switch (chip->chip_type) {
342 offset = PCA953X_OUTPUT;
345 offset = PCA957X_OUT;
348 ret = pca953x_write_single(chip, offset, reg_val, off);
352 chip->reg_output[off / BANK_SZ] = reg_val;
354 mutex_unlock(&chip->i2c_lock);
357 static void pca953x_gpio_set_multiple(struct gpio_chip *gc,
358 unsigned long *mask, unsigned long *bits)
360 struct pca953x_chip *chip = gpiochip_get_data(gc);
361 u8 reg_val[MAX_BANK];
363 int bank_shift = fls((chip->gpio_chip.ngpio - 1) / BANK_SZ);
366 switch (chip->chip_type) {
368 offset = PCA953X_OUTPUT;
371 offset = PCA957X_OUT;
375 memcpy(reg_val, chip->reg_output, NBANK(chip));
376 mutex_lock(&chip->i2c_lock);
377 for(bank=0; bank<NBANK(chip); bank++) {
378 unsigned bankmask = mask[bank / sizeof(*mask)] >>
379 ((bank % sizeof(*mask)) * 8);
381 unsigned bankval = bits[bank / sizeof(*bits)] >>
382 ((bank % sizeof(*bits)) * 8);
383 reg_val[bank] = (reg_val[bank] & ~bankmask) | bankval;
386 ret = i2c_smbus_write_i2c_block_data(chip->client, offset << bank_shift, NBANK(chip), reg_val);
390 memcpy(chip->reg_output, reg_val, NBANK(chip));
392 mutex_unlock(&chip->i2c_lock);
395 static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios)
397 struct gpio_chip *gc;
399 gc = &chip->gpio_chip;
401 gc->direction_input = pca953x_gpio_direction_input;
402 gc->direction_output = pca953x_gpio_direction_output;
403 gc->get = pca953x_gpio_get_value;
404 gc->set = pca953x_gpio_set_value;
405 gc->set_multiple = pca953x_gpio_set_multiple;
406 gc->can_sleep = true;
408 gc->base = chip->gpio_start;
410 gc->label = chip->client->name;
411 gc->parent = &chip->client->dev;
412 gc->owner = THIS_MODULE;
413 gc->names = chip->names;
416 #ifdef CONFIG_GPIO_PCA953X_IRQ
417 static void pca953x_irq_mask(struct irq_data *d)
419 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
420 struct pca953x_chip *chip = gpiochip_get_data(gc);
422 chip->irq_mask[d->hwirq / BANK_SZ] &= ~(1 << (d->hwirq % BANK_SZ));
425 static void pca953x_irq_unmask(struct irq_data *d)
427 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
428 struct pca953x_chip *chip = gpiochip_get_data(gc);
430 chip->irq_mask[d->hwirq / BANK_SZ] |= 1 << (d->hwirq % BANK_SZ);
433 static void pca953x_irq_bus_lock(struct irq_data *d)
435 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
436 struct pca953x_chip *chip = gpiochip_get_data(gc);
438 mutex_lock(&chip->irq_lock);
441 static void pca953x_irq_bus_sync_unlock(struct irq_data *d)
443 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
444 struct pca953x_chip *chip = gpiochip_get_data(gc);
447 u8 invert_irq_mask[MAX_BANK];
449 if (chip->driver_data & PCA_PCAL) {
450 /* Enable latch on interrupt-enabled inputs */
451 pca953x_write_regs(chip, PCAL953X_IN_LATCH, chip->irq_mask);
453 for (i = 0; i < NBANK(chip); i++)
454 invert_irq_mask[i] = ~chip->irq_mask[i];
456 /* Unmask enabled interrupts */
457 pca953x_write_regs(chip, PCAL953X_INT_MASK, invert_irq_mask);
460 /* Look for any newly setup interrupt */
461 for (i = 0; i < NBANK(chip); i++) {
462 new_irqs = chip->irq_trig_fall[i] | chip->irq_trig_raise[i];
463 new_irqs &= ~chip->reg_direction[i];
466 level = __ffs(new_irqs);
467 pca953x_gpio_direction_input(&chip->gpio_chip,
468 level + (BANK_SZ * i));
469 new_irqs &= ~(1 << level);
473 mutex_unlock(&chip->irq_lock);
476 static int pca953x_irq_set_type(struct irq_data *d, unsigned int type)
478 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
479 struct pca953x_chip *chip = gpiochip_get_data(gc);
480 int bank_nb = d->hwirq / BANK_SZ;
481 u8 mask = 1 << (d->hwirq % BANK_SZ);
483 if (!(type & IRQ_TYPE_EDGE_BOTH)) {
484 dev_err(&chip->client->dev, "irq %d: unsupported type %d\n",
489 if (type & IRQ_TYPE_EDGE_FALLING)
490 chip->irq_trig_fall[bank_nb] |= mask;
492 chip->irq_trig_fall[bank_nb] &= ~mask;
494 if (type & IRQ_TYPE_EDGE_RISING)
495 chip->irq_trig_raise[bank_nb] |= mask;
497 chip->irq_trig_raise[bank_nb] &= ~mask;
502 static struct irq_chip pca953x_irq_chip = {
504 .irq_mask = pca953x_irq_mask,
505 .irq_unmask = pca953x_irq_unmask,
506 .irq_bus_lock = pca953x_irq_bus_lock,
507 .irq_bus_sync_unlock = pca953x_irq_bus_sync_unlock,
508 .irq_set_type = pca953x_irq_set_type,
511 static bool pca953x_irq_pending(struct pca953x_chip *chip, u8 *pending)
513 u8 cur_stat[MAX_BANK];
514 u8 old_stat[MAX_BANK];
515 bool pending_seen = false;
516 bool trigger_seen = false;
517 u8 trigger[MAX_BANK];
518 int ret, i, offset = 0;
520 if (chip->driver_data & PCA_PCAL) {
521 /* Read the current interrupt status from the device */
522 ret = pca953x_read_regs(chip, PCAL953X_INT_STAT, trigger);
526 /* Check latched inputs and clear interrupt status */
527 ret = pca953x_read_regs(chip, PCA953X_INPUT, cur_stat);
531 for (i = 0; i < NBANK(chip); i++) {
532 /* Apply filter for rising/falling edge selection */
533 pending[i] = (~cur_stat[i] & chip->irq_trig_fall[i]) |
534 (cur_stat[i] & chip->irq_trig_raise[i]);
535 pending[i] &= trigger[i];
543 switch (chip->chip_type) {
545 offset = PCA953X_INPUT;
551 ret = pca953x_read_regs(chip, offset, cur_stat);
555 /* Remove output pins from the equation */
556 for (i = 0; i < NBANK(chip); i++)
557 cur_stat[i] &= chip->reg_direction[i];
559 memcpy(old_stat, chip->irq_stat, NBANK(chip));
561 for (i = 0; i < NBANK(chip); i++) {
562 trigger[i] = (cur_stat[i] ^ old_stat[i]) & chip->irq_mask[i];
570 memcpy(chip->irq_stat, cur_stat, NBANK(chip));
572 for (i = 0; i < NBANK(chip); i++) {
573 pending[i] = (old_stat[i] & chip->irq_trig_fall[i]) |
574 (cur_stat[i] & chip->irq_trig_raise[i]);
575 pending[i] &= trigger[i];
583 static irqreturn_t pca953x_irq_handler(int irq, void *devid)
585 struct pca953x_chip *chip = devid;
586 u8 pending[MAX_BANK];
588 unsigned nhandled = 0;
591 if (!pca953x_irq_pending(chip, pending))
594 for (i = 0; i < NBANK(chip); i++) {
596 level = __ffs(pending[i]);
597 handle_nested_irq(irq_find_mapping(chip->gpio_chip.irqdomain,
598 level + (BANK_SZ * i)));
599 pending[i] &= ~(1 << level);
604 return (nhandled > 0) ? IRQ_HANDLED : IRQ_NONE;
607 static int pca953x_irq_setup(struct pca953x_chip *chip,
610 struct i2c_client *client = chip->client;
611 int ret, i, offset = 0;
613 if (client->irq && irq_base != -1
614 && (chip->driver_data & PCA_INT)) {
616 switch (chip->chip_type) {
618 offset = PCA953X_INPUT;
624 ret = pca953x_read_regs(chip, offset, chip->irq_stat);
629 * There is no way to know which GPIO line generated the
630 * interrupt. We have to rely on the previous read for
633 for (i = 0; i < NBANK(chip); i++)
634 chip->irq_stat[i] &= chip->reg_direction[i];
635 mutex_init(&chip->irq_lock);
637 ret = devm_request_threaded_irq(&client->dev,
641 IRQF_TRIGGER_LOW | IRQF_ONESHOT |
643 dev_name(&client->dev), chip);
645 dev_err(&client->dev, "failed to request irq %d\n",
650 ret = gpiochip_irqchip_add(&chip->gpio_chip,
656 dev_err(&client->dev,
657 "could not connect irqchip to gpiochip\n");
661 gpiochip_set_chained_irqchip(&chip->gpio_chip,
669 #else /* CONFIG_GPIO_PCA953X_IRQ */
670 static int pca953x_irq_setup(struct pca953x_chip *chip,
673 struct i2c_client *client = chip->client;
675 if (irq_base != -1 && (chip->driver_data & PCA_INT))
676 dev_warn(&client->dev, "interrupt support not compiled in\n");
682 static int device_pca953x_init(struct pca953x_chip *chip, u32 invert)
687 ret = pca953x_read_regs(chip, PCA953X_OUTPUT, chip->reg_output);
691 ret = pca953x_read_regs(chip, PCA953X_DIRECTION,
692 chip->reg_direction);
696 /* set platform specific polarity inversion */
698 memset(val, 0xFF, NBANK(chip));
700 memset(val, 0, NBANK(chip));
702 ret = pca953x_write_regs(chip, PCA953X_INVERT, val);
707 static int device_pca957x_init(struct pca953x_chip *chip, u32 invert)
712 ret = pca953x_read_regs(chip, PCA957X_OUT, chip->reg_output);
715 ret = pca953x_read_regs(chip, PCA957X_CFG, chip->reg_direction);
719 /* set platform specific polarity inversion */
721 memset(val, 0xFF, NBANK(chip));
723 memset(val, 0, NBANK(chip));
724 ret = pca953x_write_regs(chip, PCA957X_INVRT, val);
728 /* To enable register 6, 7 to control pull up and pull down */
729 memset(val, 0x02, NBANK(chip));
730 ret = pca953x_write_regs(chip, PCA957X_BKEN, val);
739 static const struct of_device_id pca953x_dt_ids[];
741 static int pca953x_probe(struct i2c_client *client,
742 const struct i2c_device_id *id)
744 struct pca953x_platform_data *pdata;
745 struct pca953x_chip *chip;
750 chip = devm_kzalloc(&client->dev,
751 sizeof(struct pca953x_chip), GFP_KERNEL);
755 pdata = dev_get_platdata(&client->dev);
757 irq_base = pdata->irq_base;
758 chip->gpio_start = pdata->gpio_base;
759 invert = pdata->invert;
760 chip->names = pdata->names;
762 chip->gpio_start = -1;
766 chip->client = client;
769 chip->driver_data = id->driver_data;
771 const struct acpi_device_id *id;
772 const struct of_device_id *match;
774 match = of_match_device(pca953x_dt_ids, &client->dev);
776 chip->driver_data = (int)(uintptr_t)match->data;
778 id = acpi_match_device(pca953x_acpi_ids, &client->dev);
782 chip->driver_data = id->driver_data;
786 chip->chip_type = PCA_CHIP_TYPE(chip->driver_data);
788 mutex_init(&chip->i2c_lock);
790 /* initialize cached registers from their original values.
791 * we can't share this chip with another i2c master.
793 pca953x_setup_gpio(chip, chip->driver_data & PCA_GPIO_MASK);
795 if (chip->chip_type == PCA953X_TYPE)
796 ret = device_pca953x_init(chip, invert);
798 ret = device_pca957x_init(chip, invert);
802 ret = devm_gpiochip_add_data(&client->dev, &chip->gpio_chip, chip);
806 ret = pca953x_irq_setup(chip, irq_base);
810 if (pdata && pdata->setup) {
811 ret = pdata->setup(client, chip->gpio_chip.base,
812 chip->gpio_chip.ngpio, pdata->context);
814 dev_warn(&client->dev, "setup failed, %d\n", ret);
817 i2c_set_clientdata(client, chip);
821 static int pca953x_remove(struct i2c_client *client)
823 struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev);
824 struct pca953x_chip *chip = i2c_get_clientdata(client);
827 if (pdata && pdata->teardown) {
828 ret = pdata->teardown(client, chip->gpio_chip.base,
829 chip->gpio_chip.ngpio, pdata->context);
831 dev_err(&client->dev, "%s failed, %d\n",
840 /* convenience to stop overlong match-table lines */
841 #define OF_953X(__nrgpio, __int) (void *)(__nrgpio | PCA953X_TYPE | __int)
842 #define OF_957X(__nrgpio, __int) (void *)(__nrgpio | PCA957X_TYPE | __int)
844 static const struct of_device_id pca953x_dt_ids[] = {
845 { .compatible = "nxp,pca9505", .data = OF_953X(40, PCA_INT), },
846 { .compatible = "nxp,pca9534", .data = OF_953X( 8, PCA_INT), },
847 { .compatible = "nxp,pca9535", .data = OF_953X(16, PCA_INT), },
848 { .compatible = "nxp,pca9536", .data = OF_953X( 4, 0), },
849 { .compatible = "nxp,pca9537", .data = OF_953X( 4, PCA_INT), },
850 { .compatible = "nxp,pca9538", .data = OF_953X( 8, PCA_INT), },
851 { .compatible = "nxp,pca9539", .data = OF_953X(16, PCA_INT), },
852 { .compatible = "nxp,pca9554", .data = OF_953X( 8, PCA_INT), },
853 { .compatible = "nxp,pca9555", .data = OF_953X(16, PCA_INT), },
854 { .compatible = "nxp,pca9556", .data = OF_953X( 8, 0), },
855 { .compatible = "nxp,pca9557", .data = OF_953X( 8, 0), },
856 { .compatible = "nxp,pca9574", .data = OF_957X( 8, PCA_INT), },
857 { .compatible = "nxp,pca9575", .data = OF_957X(16, PCA_INT), },
858 { .compatible = "nxp,pca9698", .data = OF_953X(40, 0), },
860 { .compatible = "maxim,max7310", .data = OF_953X( 8, 0), },
861 { .compatible = "maxim,max7312", .data = OF_953X(16, PCA_INT), },
862 { .compatible = "maxim,max7313", .data = OF_953X(16, PCA_INT), },
863 { .compatible = "maxim,max7315", .data = OF_953X( 8, PCA_INT), },
865 { .compatible = "ti,pca6107", .data = OF_953X( 8, PCA_INT), },
866 { .compatible = "ti,pca9536", .data = OF_953X( 4, 0), },
867 { .compatible = "ti,tca6408", .data = OF_953X( 8, PCA_INT), },
868 { .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
869 { .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
871 { .compatible = "onsemi,pca9654", .data = OF_953X( 8, PCA_INT), },
873 { .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
877 MODULE_DEVICE_TABLE(of, pca953x_dt_ids);
879 static struct i2c_driver pca953x_driver = {
882 .of_match_table = pca953x_dt_ids,
883 .acpi_match_table = ACPI_PTR(pca953x_acpi_ids),
885 .probe = pca953x_probe,
886 .remove = pca953x_remove,
887 .id_table = pca953x_id,
890 static int __init pca953x_init(void)
892 return i2c_add_driver(&pca953x_driver);
894 /* register after i2c postcore initcall and before
895 * subsys initcalls that may rely on these GPIOs
897 subsys_initcall(pca953x_init);
899 static void __exit pca953x_exit(void)
901 i2c_del_driver(&pca953x_driver);
903 module_exit(pca953x_exit);
906 MODULE_DESCRIPTION("GPIO expander driver for PCA953x");
907 MODULE_LICENSE("GPL");