2 * MCP23S08 SPI/I2C GPIO gpio expander driver
4 * The inputs and outputs of the mcp23s08, mcp23s17, mcp23008 and mcp23017 are
6 * For the I2C versions of the chips (mcp23008 and mcp23017) generation of
7 * interrupts is also supported.
8 * The hardware of the SPI versions of the chips (mcp23s08 and mcp23s17) is
9 * also capable of generating interrupts, but the linux driver does not
13 #include <linux/kernel.h>
14 #include <linux/device.h>
15 #include <linux/mutex.h>
16 #include <linux/module.h>
17 #include <linux/gpio.h>
18 #include <linux/i2c.h>
19 #include <linux/spi/spi.h>
20 #include <linux/spi/mcp23s08.h>
21 #include <linux/slab.h>
22 #include <asm/byteorder.h>
23 #include <linux/interrupt.h>
24 #include <linux/of_irq.h>
25 #include <linux/of_device.h>
28 * MCP types supported by driver
30 #define MCP_TYPE_S08 0
31 #define MCP_TYPE_S17 1
32 #define MCP_TYPE_008 2
33 #define MCP_TYPE_017 3
34 #define MCP_TYPE_S18 4
36 /* Registers are all 8 bits wide.
38 * The mcp23s17 has twice as many bits, and can be configured to work
39 * with either 16 bit registers or with two adjacent 8 bit banks.
41 #define MCP_IODIR 0x00 /* init/reset: all ones */
43 #define MCP_GPINTEN 0x02
44 #define MCP_DEFVAL 0x03
45 #define MCP_INTCON 0x04
46 #define MCP_IOCON 0x05
47 # define IOCON_MIRROR (1 << 6)
48 # define IOCON_SEQOP (1 << 5)
49 # define IOCON_HAEN (1 << 3)
50 # define IOCON_ODR (1 << 2)
51 # define IOCON_INTPOL (1 << 1)
52 # define IOCON_INTCC (1)
55 #define MCP_INTCAP 0x08
62 int (*read
)(struct mcp23s08
*mcp
, unsigned reg
);
63 int (*write
)(struct mcp23s08
*mcp
, unsigned reg
, unsigned val
);
64 int (*read_regs
)(struct mcp23s08
*mcp
, unsigned reg
,
65 u16
*vals
, unsigned n
);
77 /* lock protects the cached values */
79 struct mutex irq_lock
;
80 struct irq_domain
*irq_domain
;
82 struct gpio_chip chip
;
84 const struct mcp23s08_ops
*ops
;
85 void *data
; /* ops specific data */
88 /* A given spi_device can represent up to eight mcp23sxx chips
89 * sharing the same chipselect but using different addresses
90 * (e.g. chips #0 and #3 might be populated, but not #1 or $2).
91 * Driver data holds all the per-chip data.
93 struct mcp23s08_driver_data
{
95 struct mcp23s08
*mcp
[8];
96 struct mcp23s08 chip
[];
99 /* This lock class tells lockdep that GPIO irqs are in a different
100 * category than their parents, so it won't report false recursion.
102 static struct lock_class_key gpio_lock_class
;
104 /*----------------------------------------------------------------------*/
106 #if IS_ENABLED(CONFIG_I2C)
108 static int mcp23008_read(struct mcp23s08
*mcp
, unsigned reg
)
110 return i2c_smbus_read_byte_data(mcp
->data
, reg
);
113 static int mcp23008_write(struct mcp23s08
*mcp
, unsigned reg
, unsigned val
)
115 return i2c_smbus_write_byte_data(mcp
->data
, reg
, val
);
119 mcp23008_read_regs(struct mcp23s08
*mcp
, unsigned reg
, u16
*vals
, unsigned n
)
122 int ret
= mcp23008_read(mcp
, reg
++);
131 static int mcp23017_read(struct mcp23s08
*mcp
, unsigned reg
)
133 return i2c_smbus_read_word_data(mcp
->data
, reg
<< 1);
136 static int mcp23017_write(struct mcp23s08
*mcp
, unsigned reg
, unsigned val
)
138 return i2c_smbus_write_word_data(mcp
->data
, reg
<< 1, val
);
142 mcp23017_read_regs(struct mcp23s08
*mcp
, unsigned reg
, u16
*vals
, unsigned n
)
145 int ret
= mcp23017_read(mcp
, reg
++);
154 static const struct mcp23s08_ops mcp23008_ops
= {
155 .read
= mcp23008_read
,
156 .write
= mcp23008_write
,
157 .read_regs
= mcp23008_read_regs
,
160 static const struct mcp23s08_ops mcp23017_ops
= {
161 .read
= mcp23017_read
,
162 .write
= mcp23017_write
,
163 .read_regs
= mcp23017_read_regs
,
166 #endif /* CONFIG_I2C */
168 /*----------------------------------------------------------------------*/
170 #ifdef CONFIG_SPI_MASTER
172 static int mcp23s08_read(struct mcp23s08
*mcp
, unsigned reg
)
177 tx
[0] = mcp
->addr
| 0x01;
179 status
= spi_write_then_read(mcp
->data
, tx
, sizeof(tx
), rx
, sizeof(rx
));
180 return (status
< 0) ? status
: rx
[0];
183 static int mcp23s08_write(struct mcp23s08
*mcp
, unsigned reg
, unsigned val
)
190 return spi_write_then_read(mcp
->data
, tx
, sizeof(tx
), NULL
, 0);
194 mcp23s08_read_regs(struct mcp23s08
*mcp
, unsigned reg
, u16
*vals
, unsigned n
)
199 if ((n
+ reg
) > sizeof(mcp
->cache
))
201 tx
[0] = mcp
->addr
| 0x01;
205 status
= spi_write_then_read(mcp
->data
, tx
, sizeof(tx
), tmp
, n
);
208 vals
[n
] = tmp
[n
]; /* expand to 16bit */
213 static int mcp23s17_read(struct mcp23s08
*mcp
, unsigned reg
)
218 tx
[0] = mcp
->addr
| 0x01;
220 status
= spi_write_then_read(mcp
->data
, tx
, sizeof(tx
), rx
, sizeof(rx
));
221 return (status
< 0) ? status
: (rx
[0] | (rx
[1] << 8));
224 static int mcp23s17_write(struct mcp23s08
*mcp
, unsigned reg
, unsigned val
)
232 return spi_write_then_read(mcp
->data
, tx
, sizeof(tx
), NULL
, 0);
236 mcp23s17_read_regs(struct mcp23s08
*mcp
, unsigned reg
, u16
*vals
, unsigned n
)
241 if ((n
+ reg
) > sizeof(mcp
->cache
))
243 tx
[0] = mcp
->addr
| 0x01;
246 status
= spi_write_then_read(mcp
->data
, tx
, sizeof(tx
),
250 vals
[n
] = __le16_to_cpu((__le16
)vals
[n
]);
256 static const struct mcp23s08_ops mcp23s08_ops
= {
257 .read
= mcp23s08_read
,
258 .write
= mcp23s08_write
,
259 .read_regs
= mcp23s08_read_regs
,
262 static const struct mcp23s08_ops mcp23s17_ops
= {
263 .read
= mcp23s17_read
,
264 .write
= mcp23s17_write
,
265 .read_regs
= mcp23s17_read_regs
,
268 #endif /* CONFIG_SPI_MASTER */
270 /*----------------------------------------------------------------------*/
272 static int mcp23s08_direction_input(struct gpio_chip
*chip
, unsigned offset
)
274 struct mcp23s08
*mcp
= gpiochip_get_data(chip
);
277 mutex_lock(&mcp
->lock
);
278 mcp
->cache
[MCP_IODIR
] |= (1 << offset
);
279 status
= mcp
->ops
->write(mcp
, MCP_IODIR
, mcp
->cache
[MCP_IODIR
]);
280 mutex_unlock(&mcp
->lock
);
284 static int mcp23s08_get(struct gpio_chip
*chip
, unsigned offset
)
286 struct mcp23s08
*mcp
= gpiochip_get_data(chip
);
289 mutex_lock(&mcp
->lock
);
291 /* REVISIT reading this clears any IRQ ... */
292 status
= mcp
->ops
->read(mcp
, MCP_GPIO
);
296 mcp
->cache
[MCP_GPIO
] = status
;
297 status
= !!(status
& (1 << offset
));
299 mutex_unlock(&mcp
->lock
);
303 static int __mcp23s08_set(struct mcp23s08
*mcp
, unsigned mask
, int value
)
305 unsigned olat
= mcp
->cache
[MCP_OLAT
];
311 mcp
->cache
[MCP_OLAT
] = olat
;
312 return mcp
->ops
->write(mcp
, MCP_OLAT
, olat
);
315 static void mcp23s08_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
317 struct mcp23s08
*mcp
= gpiochip_get_data(chip
);
318 unsigned mask
= 1 << offset
;
320 mutex_lock(&mcp
->lock
);
321 __mcp23s08_set(mcp
, mask
, value
);
322 mutex_unlock(&mcp
->lock
);
326 mcp23s08_direction_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
328 struct mcp23s08
*mcp
= gpiochip_get_data(chip
);
329 unsigned mask
= 1 << offset
;
332 mutex_lock(&mcp
->lock
);
333 status
= __mcp23s08_set(mcp
, mask
, value
);
335 mcp
->cache
[MCP_IODIR
] &= ~mask
;
336 status
= mcp
->ops
->write(mcp
, MCP_IODIR
, mcp
->cache
[MCP_IODIR
]);
338 mutex_unlock(&mcp
->lock
);
342 /*----------------------------------------------------------------------*/
343 static irqreturn_t
mcp23s08_irq(int irq
, void *data
)
345 struct mcp23s08
*mcp
= data
;
347 unsigned int child_irq
;
349 mutex_lock(&mcp
->lock
);
350 intf
= mcp
->ops
->read(mcp
, MCP_INTF
);
352 mutex_unlock(&mcp
->lock
);
356 mcp
->cache
[MCP_INTF
] = intf
;
358 intcap
= mcp
->ops
->read(mcp
, MCP_INTCAP
);
360 mutex_unlock(&mcp
->lock
);
364 mcp
->cache
[MCP_INTCAP
] = intcap
;
365 mutex_unlock(&mcp
->lock
);
368 for (i
= 0; i
< mcp
->chip
.ngpio
; i
++) {
369 if ((BIT(i
) & mcp
->cache
[MCP_INTF
]) &&
370 ((BIT(i
) & intcap
& mcp
->irq_rise
) ||
371 (mcp
->irq_fall
& ~intcap
& BIT(i
)))) {
372 child_irq
= irq_find_mapping(mcp
->irq_domain
, i
);
373 handle_nested_irq(child_irq
);
380 static int mcp23s08_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
382 struct mcp23s08
*mcp
= gpiochip_get_data(chip
);
384 return irq_find_mapping(mcp
->irq_domain
, offset
);
387 static void mcp23s08_irq_mask(struct irq_data
*data
)
389 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
390 unsigned int pos
= data
->hwirq
;
392 mcp
->cache
[MCP_GPINTEN
] &= ~BIT(pos
);
395 static void mcp23s08_irq_unmask(struct irq_data
*data
)
397 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
398 unsigned int pos
= data
->hwirq
;
400 mcp
->cache
[MCP_GPINTEN
] |= BIT(pos
);
403 static int mcp23s08_irq_set_type(struct irq_data
*data
, unsigned int type
)
405 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
406 unsigned int pos
= data
->hwirq
;
409 if ((type
& IRQ_TYPE_EDGE_BOTH
) == IRQ_TYPE_EDGE_BOTH
) {
410 mcp
->cache
[MCP_INTCON
] &= ~BIT(pos
);
411 mcp
->irq_rise
|= BIT(pos
);
412 mcp
->irq_fall
|= BIT(pos
);
413 } else if (type
& IRQ_TYPE_EDGE_RISING
) {
414 mcp
->cache
[MCP_INTCON
] &= ~BIT(pos
);
415 mcp
->irq_rise
|= BIT(pos
);
416 mcp
->irq_fall
&= ~BIT(pos
);
417 } else if (type
& IRQ_TYPE_EDGE_FALLING
) {
418 mcp
->cache
[MCP_INTCON
] &= ~BIT(pos
);
419 mcp
->irq_rise
&= ~BIT(pos
);
420 mcp
->irq_fall
|= BIT(pos
);
427 static void mcp23s08_irq_bus_lock(struct irq_data
*data
)
429 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
431 mutex_lock(&mcp
->irq_lock
);
434 static void mcp23s08_irq_bus_unlock(struct irq_data
*data
)
436 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
438 mutex_lock(&mcp
->lock
);
439 mcp
->ops
->write(mcp
, MCP_GPINTEN
, mcp
->cache
[MCP_GPINTEN
]);
440 mcp
->ops
->write(mcp
, MCP_DEFVAL
, mcp
->cache
[MCP_DEFVAL
]);
441 mcp
->ops
->write(mcp
, MCP_INTCON
, mcp
->cache
[MCP_INTCON
]);
442 mutex_unlock(&mcp
->lock
);
443 mutex_unlock(&mcp
->irq_lock
);
446 static int mcp23s08_irq_reqres(struct irq_data
*data
)
448 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
450 if (gpiochip_lock_as_irq(&mcp
->chip
, data
->hwirq
)) {
451 dev_err(mcp
->chip
.parent
,
452 "unable to lock HW IRQ %lu for IRQ usage\n",
460 static void mcp23s08_irq_relres(struct irq_data
*data
)
462 struct mcp23s08
*mcp
= irq_data_get_irq_chip_data(data
);
464 gpiochip_unlock_as_irq(&mcp
->chip
, data
->hwirq
);
467 static struct irq_chip mcp23s08_irq_chip
= {
468 .name
= "gpio-mcp23xxx",
469 .irq_mask
= mcp23s08_irq_mask
,
470 .irq_unmask
= mcp23s08_irq_unmask
,
471 .irq_set_type
= mcp23s08_irq_set_type
,
472 .irq_bus_lock
= mcp23s08_irq_bus_lock
,
473 .irq_bus_sync_unlock
= mcp23s08_irq_bus_unlock
,
474 .irq_request_resources
= mcp23s08_irq_reqres
,
475 .irq_release_resources
= mcp23s08_irq_relres
,
478 static int mcp23s08_irq_setup(struct mcp23s08
*mcp
)
480 struct gpio_chip
*chip
= &mcp
->chip
;
482 unsigned long irqflags
= IRQF_ONESHOT
| IRQF_SHARED
;
484 mutex_init(&mcp
->irq_lock
);
486 mcp
->irq_domain
= irq_domain_add_linear(chip
->parent
->of_node
,
488 &irq_domain_simple_ops
, mcp
);
489 if (!mcp
->irq_domain
)
492 if (mcp
->irq_active_high
)
493 irqflags
|= IRQF_TRIGGER_HIGH
;
495 irqflags
|= IRQF_TRIGGER_LOW
;
497 err
= devm_request_threaded_irq(chip
->parent
, mcp
->irq
, NULL
,
499 irqflags
, dev_name(chip
->parent
), mcp
);
501 dev_err(chip
->parent
, "unable to request IRQ#%d: %d\n",
506 chip
->to_irq
= mcp23s08_gpio_to_irq
;
508 for (j
= 0; j
< mcp
->chip
.ngpio
; j
++) {
509 irq
= irq_create_mapping(mcp
->irq_domain
, j
);
510 irq_set_lockdep_class(irq
, &gpio_lock_class
);
511 irq_set_chip_data(irq
, mcp
);
512 irq_set_chip(irq
, &mcp23s08_irq_chip
);
513 irq_set_nested_thread(irq
, true);
514 irq_set_noprobe(irq
);
519 static void mcp23s08_irq_teardown(struct mcp23s08
*mcp
)
523 for (i
= 0; i
< mcp
->chip
.ngpio
; i
++) {
524 irq
= irq_find_mapping(mcp
->irq_domain
, i
);
526 irq_dispose_mapping(irq
);
529 irq_domain_remove(mcp
->irq_domain
);
532 /*----------------------------------------------------------------------*/
534 #ifdef CONFIG_DEBUG_FS
536 #include <linux/seq_file.h>
539 * This shows more info than the generic gpio dump code:
540 * pullups, deglitching, open drain drive.
542 static void mcp23s08_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
544 struct mcp23s08
*mcp
;
549 mcp
= gpiochip_get_data(chip
);
551 /* NOTE: we only handle one bank for now ... */
552 bank
= '0' + ((mcp
->addr
>> 1) & 0x7);
554 mutex_lock(&mcp
->lock
);
555 t
= mcp
->ops
->read_regs(mcp
, 0, mcp
->cache
, ARRAY_SIZE(mcp
->cache
));
557 seq_printf(s
, " I/O ERROR %d\n", t
);
561 for (t
= 0, mask
= 1; t
< chip
->ngpio
; t
++, mask
<<= 1) {
564 label
= gpiochip_is_requested(chip
, t
);
568 seq_printf(s
, " gpio-%-3d P%c.%d (%-12s) %s %s %s",
569 chip
->base
+ t
, bank
, t
, label
,
570 (mcp
->cache
[MCP_IODIR
] & mask
) ? "in " : "out",
571 (mcp
->cache
[MCP_GPIO
] & mask
) ? "hi" : "lo",
572 (mcp
->cache
[MCP_GPPU
] & mask
) ? "up" : " ");
573 /* NOTE: ignoring the irq-related registers */
577 mutex_unlock(&mcp
->lock
);
581 #define mcp23s08_dbg_show NULL
584 /*----------------------------------------------------------------------*/
586 static int mcp23s08_probe_one(struct mcp23s08
*mcp
, struct device
*dev
,
587 void *data
, unsigned addr
, unsigned type
,
588 struct mcp23s08_platform_data
*pdata
, int cs
)
593 mutex_init(&mcp
->lock
);
597 mcp
->irq_active_high
= false;
599 mcp
->chip
.direction_input
= mcp23s08_direction_input
;
600 mcp
->chip
.get
= mcp23s08_get
;
601 mcp
->chip
.direction_output
= mcp23s08_direction_output
;
602 mcp
->chip
.set
= mcp23s08_set
;
603 mcp
->chip
.dbg_show
= mcp23s08_dbg_show
;
605 mcp
->chip
.of_gpio_n_cells
= 2;
606 mcp
->chip
.of_node
= dev
->of_node
;
610 #ifdef CONFIG_SPI_MASTER
612 mcp
->ops
= &mcp23s08_ops
;
614 mcp
->chip
.label
= "mcp23s08";
618 mcp
->ops
= &mcp23s17_ops
;
619 mcp
->chip
.ngpio
= 16;
620 mcp
->chip
.label
= "mcp23s17";
624 mcp
->ops
= &mcp23s17_ops
;
625 mcp
->chip
.ngpio
= 16;
626 mcp
->chip
.label
= "mcp23s18";
628 #endif /* CONFIG_SPI_MASTER */
630 #if IS_ENABLED(CONFIG_I2C)
632 mcp
->ops
= &mcp23008_ops
;
634 mcp
->chip
.label
= "mcp23008";
638 mcp
->ops
= &mcp23017_ops
;
639 mcp
->chip
.ngpio
= 16;
640 mcp
->chip
.label
= "mcp23017";
642 #endif /* CONFIG_I2C */
645 dev_err(dev
, "invalid device type (%d)\n", type
);
649 mcp
->chip
.base
= pdata
->base
;
650 mcp
->chip
.can_sleep
= true;
651 mcp
->chip
.parent
= dev
;
652 mcp
->chip
.owner
= THIS_MODULE
;
654 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
655 * and MCP_IOCON.HAEN = 1, so we work with all chips.
658 status
= mcp
->ops
->read(mcp
, MCP_IOCON
);
662 mcp
->irq_controller
= pdata
->irq_controller
;
663 if (mcp
->irq
&& mcp
->irq_controller
) {
664 mcp
->irq_active_high
=
665 of_property_read_bool(mcp
->chip
.parent
->of_node
,
666 "microchip,irq-active-high");
668 mirror
= pdata
->mirror
;
671 if ((status
& IOCON_SEQOP
) || !(status
& IOCON_HAEN
) || mirror
||
672 mcp
->irq_active_high
) {
673 /* mcp23s17 has IOCON twice, make sure they are in sync */
674 status
&= ~(IOCON_SEQOP
| (IOCON_SEQOP
<< 8));
675 status
|= IOCON_HAEN
| (IOCON_HAEN
<< 8);
676 if (mcp
->irq_active_high
)
677 status
|= IOCON_INTPOL
| (IOCON_INTPOL
<< 8);
679 status
&= ~(IOCON_INTPOL
| (IOCON_INTPOL
<< 8));
682 status
|= IOCON_MIRROR
| (IOCON_MIRROR
<< 8);
684 if (type
== MCP_TYPE_S18
)
685 status
|= IOCON_INTCC
| (IOCON_INTCC
<< 8);
687 status
= mcp
->ops
->write(mcp
, MCP_IOCON
, status
);
692 /* configure ~100K pullups */
693 status
= mcp
->ops
->write(mcp
, MCP_GPPU
, pdata
->chip
[cs
].pullups
);
697 status
= mcp
->ops
->read_regs(mcp
, 0, mcp
->cache
, ARRAY_SIZE(mcp
->cache
));
701 /* disable inverter on input */
702 if (mcp
->cache
[MCP_IPOL
] != 0) {
703 mcp
->cache
[MCP_IPOL
] = 0;
704 status
= mcp
->ops
->write(mcp
, MCP_IPOL
, 0);
710 if (mcp
->cache
[MCP_GPINTEN
] != 0) {
711 mcp
->cache
[MCP_GPINTEN
] = 0;
712 status
= mcp
->ops
->write(mcp
, MCP_GPINTEN
, 0);
717 status
= gpiochip_add_data(&mcp
->chip
, mcp
);
721 if (mcp
->irq
&& mcp
->irq_controller
) {
722 status
= mcp23s08_irq_setup(mcp
);
724 mcp23s08_irq_teardown(mcp
);
730 dev_dbg(dev
, "can't setup chip %d, --> %d\n",
735 /*----------------------------------------------------------------------*/
738 #ifdef CONFIG_SPI_MASTER
739 static const struct of_device_id mcp23s08_spi_of_match
[] = {
741 .compatible
= "microchip,mcp23s08",
742 .data
= (void *) MCP_TYPE_S08
,
745 .compatible
= "microchip,mcp23s17",
746 .data
= (void *) MCP_TYPE_S17
,
749 .compatible
= "microchip,mcp23s18",
750 .data
= (void *) MCP_TYPE_S18
,
752 /* NOTE: The use of the mcp prefix is deprecated and will be removed. */
754 .compatible
= "mcp,mcp23s08",
755 .data
= (void *) MCP_TYPE_S08
,
758 .compatible
= "mcp,mcp23s17",
759 .data
= (void *) MCP_TYPE_S17
,
763 MODULE_DEVICE_TABLE(of
, mcp23s08_spi_of_match
);
766 #if IS_ENABLED(CONFIG_I2C)
767 static const struct of_device_id mcp23s08_i2c_of_match
[] = {
769 .compatible
= "microchip,mcp23008",
770 .data
= (void *) MCP_TYPE_008
,
773 .compatible
= "microchip,mcp23017",
774 .data
= (void *) MCP_TYPE_017
,
776 /* NOTE: The use of the mcp prefix is deprecated and will be removed. */
778 .compatible
= "mcp,mcp23008",
779 .data
= (void *) MCP_TYPE_008
,
782 .compatible
= "mcp,mcp23017",
783 .data
= (void *) MCP_TYPE_017
,
787 MODULE_DEVICE_TABLE(of
, mcp23s08_i2c_of_match
);
789 #endif /* CONFIG_OF */
792 #if IS_ENABLED(CONFIG_I2C)
794 static int mcp230xx_probe(struct i2c_client
*client
,
795 const struct i2c_device_id
*id
)
797 struct mcp23s08_platform_data
*pdata
, local_pdata
;
798 struct mcp23s08
*mcp
;
800 const struct of_device_id
*match
;
802 match
= of_match_device(of_match_ptr(mcp23s08_i2c_of_match
),
805 pdata
= &local_pdata
;
807 pdata
->chip
[0].pullups
= 0;
808 pdata
->irq_controller
= of_property_read_bool(
810 "interrupt-controller");
811 pdata
->mirror
= of_property_read_bool(client
->dev
.of_node
,
812 "microchip,irq-mirror");
813 client
->irq
= irq_of_parse_and_map(client
->dev
.of_node
, 0);
815 pdata
= dev_get_platdata(&client
->dev
);
817 pdata
= devm_kzalloc(&client
->dev
,
818 sizeof(struct mcp23s08_platform_data
),
826 mcp
= kzalloc(sizeof(*mcp
), GFP_KERNEL
);
830 mcp
->irq
= client
->irq
;
831 status
= mcp23s08_probe_one(mcp
, &client
->dev
, client
, client
->addr
,
832 id
->driver_data
, pdata
, 0);
836 i2c_set_clientdata(client
, mcp
);
846 static int mcp230xx_remove(struct i2c_client
*client
)
848 struct mcp23s08
*mcp
= i2c_get_clientdata(client
);
850 if (client
->irq
&& mcp
->irq_controller
)
851 mcp23s08_irq_teardown(mcp
);
853 gpiochip_remove(&mcp
->chip
);
859 static const struct i2c_device_id mcp230xx_id
[] = {
860 { "mcp23008", MCP_TYPE_008
},
861 { "mcp23017", MCP_TYPE_017
},
864 MODULE_DEVICE_TABLE(i2c
, mcp230xx_id
);
866 static struct i2c_driver mcp230xx_driver
= {
869 .of_match_table
= of_match_ptr(mcp23s08_i2c_of_match
),
871 .probe
= mcp230xx_probe
,
872 .remove
= mcp230xx_remove
,
873 .id_table
= mcp230xx_id
,
876 static int __init
mcp23s08_i2c_init(void)
878 return i2c_add_driver(&mcp230xx_driver
);
881 static void mcp23s08_i2c_exit(void)
883 i2c_del_driver(&mcp230xx_driver
);
888 static int __init
mcp23s08_i2c_init(void) { return 0; }
889 static void mcp23s08_i2c_exit(void) { }
891 #endif /* CONFIG_I2C */
893 /*----------------------------------------------------------------------*/
895 #ifdef CONFIG_SPI_MASTER
897 static int mcp23s08_probe(struct spi_device
*spi
)
899 struct mcp23s08_platform_data
*pdata
, local_pdata
;
902 struct mcp23s08_driver_data
*data
;
905 const struct of_device_id
*match
;
906 u32 spi_present_mask
= 0;
908 match
= of_match_device(of_match_ptr(mcp23s08_spi_of_match
), &spi
->dev
);
910 type
= (int)(uintptr_t)match
->data
;
911 status
= of_property_read_u32(spi
->dev
.of_node
,
912 "microchip,spi-present-mask", &spi_present_mask
);
914 status
= of_property_read_u32(spi
->dev
.of_node
,
915 "mcp,spi-present-mask", &spi_present_mask
);
918 "DT has no spi-present-mask\n");
922 if ((spi_present_mask
<= 0) || (spi_present_mask
>= 256)) {
923 dev_err(&spi
->dev
, "invalid spi-present-mask\n");
927 pdata
= &local_pdata
;
929 for (addr
= 0; addr
< ARRAY_SIZE(pdata
->chip
); addr
++) {
930 pdata
->chip
[addr
].pullups
= 0;
931 if (spi_present_mask
& (1 << addr
))
934 pdata
->irq_controller
= of_property_read_bool(
936 "interrupt-controller");
937 pdata
->mirror
= of_property_read_bool(spi
->dev
.of_node
,
938 "microchip,irq-mirror");
940 type
= spi_get_device_id(spi
)->driver_data
;
941 pdata
= dev_get_platdata(&spi
->dev
);
943 pdata
= devm_kzalloc(&spi
->dev
,
944 sizeof(struct mcp23s08_platform_data
),
949 for (addr
= 0; addr
< ARRAY_SIZE(pdata
->chip
); addr
++) {
950 if (!pdata
->chip
[addr
].is_present
)
953 if ((type
== MCP_TYPE_S08
) && (addr
> 3)) {
955 "mcp23s08 only supports address 0..3\n");
958 spi_present_mask
|= 1 << addr
;
965 data
= devm_kzalloc(&spi
->dev
,
966 sizeof(*data
) + chips
* sizeof(struct mcp23s08
),
971 spi_set_drvdata(spi
, data
);
973 spi
->irq
= irq_of_parse_and_map(spi
->dev
.of_node
, 0);
975 for (addr
= 0; addr
< ARRAY_SIZE(pdata
->chip
); addr
++) {
976 if (!(spi_present_mask
& (1 << addr
)))
979 data
->mcp
[addr
] = &data
->chip
[chips
];
980 data
->mcp
[addr
]->irq
= spi
->irq
;
981 status
= mcp23s08_probe_one(data
->mcp
[addr
], &spi
->dev
, spi
,
982 0x40 | (addr
<< 1), type
, pdata
,
987 if (pdata
->base
!= -1)
988 pdata
->base
+= data
->mcp
[addr
]->chip
.ngpio
;
989 ngpio
+= data
->mcp
[addr
]->chip
.ngpio
;
993 /* NOTE: these chips have a relatively sane IRQ framework, with
994 * per-signal masking and level/edge triggering. It's not yet
1001 for (addr
= 0; addr
< ARRAY_SIZE(data
->mcp
); addr
++) {
1003 if (!data
->mcp
[addr
])
1005 gpiochip_remove(&data
->mcp
[addr
]->chip
);
1010 static int mcp23s08_remove(struct spi_device
*spi
)
1012 struct mcp23s08_driver_data
*data
= spi_get_drvdata(spi
);
1015 for (addr
= 0; addr
< ARRAY_SIZE(data
->mcp
); addr
++) {
1017 if (!data
->mcp
[addr
])
1020 if (spi
->irq
&& data
->mcp
[addr
]->irq_controller
)
1021 mcp23s08_irq_teardown(data
->mcp
[addr
]);
1022 gpiochip_remove(&data
->mcp
[addr
]->chip
);
1028 static const struct spi_device_id mcp23s08_ids
[] = {
1029 { "mcp23s08", MCP_TYPE_S08
},
1030 { "mcp23s17", MCP_TYPE_S17
},
1031 { "mcp23s18", MCP_TYPE_S18
},
1034 MODULE_DEVICE_TABLE(spi
, mcp23s08_ids
);
1036 static struct spi_driver mcp23s08_driver
= {
1037 .probe
= mcp23s08_probe
,
1038 .remove
= mcp23s08_remove
,
1039 .id_table
= mcp23s08_ids
,
1042 .of_match_table
= of_match_ptr(mcp23s08_spi_of_match
),
1046 static int __init
mcp23s08_spi_init(void)
1048 return spi_register_driver(&mcp23s08_driver
);
1051 static void mcp23s08_spi_exit(void)
1053 spi_unregister_driver(&mcp23s08_driver
);
1058 static int __init
mcp23s08_spi_init(void) { return 0; }
1059 static void mcp23s08_spi_exit(void) { }
1061 #endif /* CONFIG_SPI_MASTER */
1063 /*----------------------------------------------------------------------*/
1065 static int __init
mcp23s08_init(void)
1069 ret
= mcp23s08_spi_init();
1073 ret
= mcp23s08_i2c_init();
1080 mcp23s08_spi_exit();
1084 /* register after spi/i2c postcore initcall and before
1085 * subsys initcalls that may rely on these GPIOs
1087 subsys_initcall(mcp23s08_init
);
1089 static void __exit
mcp23s08_exit(void)
1091 mcp23s08_spi_exit();
1092 mcp23s08_i2c_exit();
1094 module_exit(mcp23s08_exit
);
1096 MODULE_LICENSE("GPL");