]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/pinctrl/pinctrl-mcp23s08.c
Merge tag 'gpio-v4.15-1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/linusw...
[mirror_ubuntu-bionic-kernel.git] / drivers / pinctrl / pinctrl-mcp23s08.c
CommitLineData
d8f4494e 1/* MCP23S08 SPI/I2C GPIO driver */
e58b9e27
DB
2
3#include <linux/kernel.h>
4#include <linux/device.h>
e58b9e27 5#include <linux/mutex.h>
bb207ef1 6#include <linux/module.h>
d120c17f 7#include <linux/gpio.h>
752ad5e8 8#include <linux/i2c.h>
e58b9e27
DB
9#include <linux/spi/spi.h>
10#include <linux/spi/mcp23s08.h>
5a0e3ad6 11#include <linux/slab.h>
0b7bb77f 12#include <asm/byteorder.h>
4e47f91b 13#include <linux/interrupt.h>
97ddb1c8 14#include <linux/of_device.h>
3d84fdb3 15#include <linux/regmap.h>
82039d24
SR
16#include <linux/pinctrl/pinctrl.h>
17#include <linux/pinctrl/pinconf.h>
18#include <linux/pinctrl/pinconf-generic.h>
e58b9e27 19
d8f4494e 20/*
0b7bb77f
PK
21 * MCP types supported by driver
22 */
23#define MCP_TYPE_S08 0
24#define MCP_TYPE_S17 1
752ad5e8
PK
25#define MCP_TYPE_008 2
26#define MCP_TYPE_017 3
28c5a41e 27#define MCP_TYPE_S18 4
e58b9e27 28
ce9bd0a0
SR
29#define MCP_MAX_DEV_PER_CS 8
30
e58b9e27
DB
31/* Registers are all 8 bits wide.
32 *
33 * The mcp23s17 has twice as many bits, and can be configured to work
34 * with either 16 bit registers or with two adjacent 8 bit banks.
e58b9e27
DB
35 */
36#define MCP_IODIR 0x00 /* init/reset: all ones */
37#define MCP_IPOL 0x01
38#define MCP_GPINTEN 0x02
39#define MCP_DEFVAL 0x03
40#define MCP_INTCON 0x04
41#define MCP_IOCON 0x05
4e47f91b 42# define IOCON_MIRROR (1 << 6)
e58b9e27
DB
43# define IOCON_SEQOP (1 << 5)
44# define IOCON_HAEN (1 << 3)
45# define IOCON_ODR (1 << 2)
46# define IOCON_INTPOL (1 << 1)
3539699c 47# define IOCON_INTCC (1)
e58b9e27
DB
48#define MCP_GPPU 0x06
49#define MCP_INTF 0x07
50#define MCP_INTCAP 0x08
51#define MCP_GPIO 0x09
52#define MCP_OLAT 0x0a
53
0b7bb77f
PK
54struct mcp23s08;
55
e58b9e27 56struct mcp23s08 {
e58b9e27 57 u8 addr;
a4e63554 58 bool irq_active_high;
3d84fdb3 59 bool reg_shift;
e58b9e27 60
4e47f91b
LP
61 u16 irq_rise;
62 u16 irq_fall;
63 int irq;
64 bool irq_controller;
8f38910b
SR
65 int cached_gpio;
66 /* lock protects regmap access with bypass/cache flags */
e58b9e27 67 struct mutex lock;
e58b9e27
DB
68
69 struct gpio_chip chip;
70
3d84fdb3
SR
71 struct regmap *regmap;
72 struct device *dev;
82039d24
SR
73
74 struct pinctrl_dev *pctldev;
75 struct pinctrl_desc pinctrl_desc;
8f1cc3b1
DB
76};
77
8f38910b
SR
78static const struct reg_default mcp23x08_defaults[] = {
79 {.reg = MCP_IODIR, .def = 0xff},
80 {.reg = MCP_IPOL, .def = 0x00},
81 {.reg = MCP_GPINTEN, .def = 0x00},
82 {.reg = MCP_DEFVAL, .def = 0x00},
83 {.reg = MCP_INTCON, .def = 0x00},
84 {.reg = MCP_IOCON, .def = 0x00},
85 {.reg = MCP_GPPU, .def = 0x00},
86 {.reg = MCP_OLAT, .def = 0x00},
87};
88
89static const struct regmap_range mcp23x08_volatile_range = {
90 .range_min = MCP_INTF,
91 .range_max = MCP_GPIO,
92};
93
94static const struct regmap_access_table mcp23x08_volatile_table = {
95 .yes_ranges = &mcp23x08_volatile_range,
96 .n_yes_ranges = 1,
97};
98
99static const struct regmap_range mcp23x08_precious_range = {
100 .range_min = MCP_GPIO,
101 .range_max = MCP_GPIO,
102};
103
104static const struct regmap_access_table mcp23x08_precious_table = {
105 .yes_ranges = &mcp23x08_precious_range,
106 .n_yes_ranges = 1,
107};
108
3d84fdb3
SR
109static const struct regmap_config mcp23x08_regmap = {
110 .reg_bits = 8,
111 .val_bits = 8,
752ad5e8 112
3d84fdb3 113 .reg_stride = 1,
8f38910b
SR
114 .volatile_table = &mcp23x08_volatile_table,
115 .precious_table = &mcp23x08_precious_table,
116 .reg_defaults = mcp23x08_defaults,
117 .num_reg_defaults = ARRAY_SIZE(mcp23x08_defaults),
118 .cache_type = REGCACHE_FLAT,
3d84fdb3 119 .max_register = MCP_OLAT,
752ad5e8
PK
120};
121
8f38910b
SR
122static const struct reg_default mcp23x16_defaults[] = {
123 {.reg = MCP_IODIR << 1, .def = 0xffff},
124 {.reg = MCP_IPOL << 1, .def = 0x0000},
125 {.reg = MCP_GPINTEN << 1, .def = 0x0000},
126 {.reg = MCP_DEFVAL << 1, .def = 0x0000},
127 {.reg = MCP_INTCON << 1, .def = 0x0000},
128 {.reg = MCP_IOCON << 1, .def = 0x0000},
129 {.reg = MCP_GPPU << 1, .def = 0x0000},
130 {.reg = MCP_OLAT << 1, .def = 0x0000},
131};
132
133static const struct regmap_range mcp23x16_volatile_range = {
134 .range_min = MCP_INTF << 1,
135 .range_max = MCP_GPIO << 1,
136};
137
138static const struct regmap_access_table mcp23x16_volatile_table = {
139 .yes_ranges = &mcp23x16_volatile_range,
140 .n_yes_ranges = 1,
141};
142
143static const struct regmap_range mcp23x16_precious_range = {
144 .range_min = MCP_GPIO << 1,
145 .range_max = MCP_GPIO << 1,
146};
147
148static const struct regmap_access_table mcp23x16_precious_table = {
149 .yes_ranges = &mcp23x16_precious_range,
150 .n_yes_ranges = 1,
151};
152
3d84fdb3
SR
153static const struct regmap_config mcp23x17_regmap = {
154 .reg_bits = 8,
155 .val_bits = 16,
752ad5e8 156
3d84fdb3
SR
157 .reg_stride = 2,
158 .max_register = MCP_OLAT << 1,
8f38910b
SR
159 .volatile_table = &mcp23x16_volatile_table,
160 .precious_table = &mcp23x16_precious_table,
161 .reg_defaults = mcp23x16_defaults,
162 .num_reg_defaults = ARRAY_SIZE(mcp23x16_defaults),
163 .cache_type = REGCACHE_FLAT,
3d84fdb3
SR
164 .val_format_endian = REGMAP_ENDIAN_LITTLE,
165};
752ad5e8 166
82039d24
SR
167static int mcp_read(struct mcp23s08 *mcp, unsigned int reg, unsigned int *val)
168{
169 return regmap_read(mcp->regmap, reg << mcp->reg_shift, val);
170}
171
172static int mcp_write(struct mcp23s08 *mcp, unsigned int reg, unsigned int val)
173{
174 return regmap_write(mcp->regmap, reg << mcp->reg_shift, val);
175}
176
8f38910b
SR
177static int mcp_set_mask(struct mcp23s08 *mcp, unsigned int reg,
178 unsigned int mask, bool enabled)
82039d24
SR
179{
180 u16 val = enabled ? 0xffff : 0x0000;
82039d24
SR
181 return regmap_update_bits(mcp->regmap, reg << mcp->reg_shift,
182 mask, val);
183}
184
8f38910b
SR
185static int mcp_set_bit(struct mcp23s08 *mcp, unsigned int reg,
186 unsigned int pin, bool enabled)
82039d24 187{
8f38910b
SR
188 u16 mask = BIT(pin);
189 return mcp_set_mask(mcp, reg, mask, enabled);
82039d24
SR
190}
191
192static const struct pinctrl_pin_desc mcp23x08_pins[] = {
193 PINCTRL_PIN(0, "gpio0"),
194 PINCTRL_PIN(1, "gpio1"),
195 PINCTRL_PIN(2, "gpio2"),
196 PINCTRL_PIN(3, "gpio3"),
197 PINCTRL_PIN(4, "gpio4"),
198 PINCTRL_PIN(5, "gpio5"),
199 PINCTRL_PIN(6, "gpio6"),
200 PINCTRL_PIN(7, "gpio7"),
201};
202
203static const struct pinctrl_pin_desc mcp23x17_pins[] = {
204 PINCTRL_PIN(0, "gpio0"),
205 PINCTRL_PIN(1, "gpio1"),
206 PINCTRL_PIN(2, "gpio2"),
207 PINCTRL_PIN(3, "gpio3"),
208 PINCTRL_PIN(4, "gpio4"),
209 PINCTRL_PIN(5, "gpio5"),
210 PINCTRL_PIN(6, "gpio6"),
211 PINCTRL_PIN(7, "gpio7"),
212 PINCTRL_PIN(8, "gpio8"),
213 PINCTRL_PIN(9, "gpio9"),
214 PINCTRL_PIN(10, "gpio10"),
215 PINCTRL_PIN(11, "gpio11"),
216 PINCTRL_PIN(12, "gpio12"),
217 PINCTRL_PIN(13, "gpio13"),
218 PINCTRL_PIN(14, "gpio14"),
219 PINCTRL_PIN(15, "gpio15"),
220};
221
222static int mcp_pinctrl_get_groups_count(struct pinctrl_dev *pctldev)
223{
224 return 0;
225}
226
227static const char *mcp_pinctrl_get_group_name(struct pinctrl_dev *pctldev,
228 unsigned int group)
229{
230 return NULL;
231}
232
233static int mcp_pinctrl_get_group_pins(struct pinctrl_dev *pctldev,
234 unsigned int group,
235 const unsigned int **pins,
236 unsigned int *num_pins)
237{
238 return -ENOTSUPP;
239}
240
241static const struct pinctrl_ops mcp_pinctrl_ops = {
242 .get_groups_count = mcp_pinctrl_get_groups_count,
243 .get_group_name = mcp_pinctrl_get_group_name,
244 .get_group_pins = mcp_pinctrl_get_group_pins,
245#ifdef CONFIG_OF
246 .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
247 .dt_free_map = pinconf_generic_dt_free_map,
248#endif
249};
250
251static int mcp_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
252 unsigned long *config)
253{
254 struct mcp23s08 *mcp = pinctrl_dev_get_drvdata(pctldev);
255 enum pin_config_param param = pinconf_to_config_param(*config);
256 unsigned int data, status;
257 int ret;
258
259 switch (param) {
260 case PIN_CONFIG_BIAS_PULL_UP:
261 ret = mcp_read(mcp, MCP_GPPU, &data);
262 if (ret < 0)
263 return ret;
264 status = (data & BIT(pin)) ? 1 : 0;
265 break;
266 default:
267 dev_err(mcp->dev, "Invalid config param %04x\n", param);
268 return -ENOTSUPP;
269 }
270
271 *config = 0;
272
273 return status ? 0 : -EINVAL;
274}
275
276static int mcp_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
277 unsigned long *configs, unsigned int num_configs)
278{
279 struct mcp23s08 *mcp = pinctrl_dev_get_drvdata(pctldev);
280 enum pin_config_param param;
281 u32 arg, mask;
282 u16 val;
283 int ret = 0;
284 int i;
285
286 for (i = 0; i < num_configs; i++) {
287 param = pinconf_to_config_param(configs[i]);
288 arg = pinconf_to_config_argument(configs[i]);
289
290 switch (param) {
291 case PIN_CONFIG_BIAS_PULL_UP:
292 val = arg ? 0xFFFF : 0x0000;
293 mask = BIT(pin);
294 ret = mcp_set_bit(mcp, MCP_GPPU, pin, arg);
295 break;
296 default:
297 dev_err(mcp->dev, "Invalid config param %04x\n", param);
298 return -ENOTSUPP;
299 }
300 }
301
302 return ret;
303}
304
305static const struct pinconf_ops mcp_pinconf_ops = {
306 .pin_config_get = mcp_pinconf_get,
307 .pin_config_set = mcp_pinconf_set,
308 .is_generic = true,
309};
310
752ad5e8
PK
311/*----------------------------------------------------------------------*/
312
d62b98f3
PK
313#ifdef CONFIG_SPI_MASTER
314
3d84fdb3 315static int mcp23sxx_spi_write(void *context, const void *data, size_t count)
e58b9e27 316{
3d84fdb3
SR
317 struct mcp23s08 *mcp = context;
318 struct spi_device *spi = to_spi_device(mcp->dev);
319 struct spi_message m;
320 struct spi_transfer t[2] = { { .tx_buf = &mcp->addr, .len = 1, },
321 { .tx_buf = data, .len = count, }, };
e58b9e27 322
3d84fdb3
SR
323 spi_message_init(&m);
324 spi_message_add_tail(&t[0], &m);
325 spi_message_add_tail(&t[1], &m);
326
327 return spi_sync(spi, &m);
e58b9e27
DB
328}
329
3d84fdb3
SR
330static int mcp23sxx_spi_gather_write(void *context,
331 const void *reg, size_t reg_size,
332 const void *val, size_t val_size)
e58b9e27 333{
3d84fdb3
SR
334 struct mcp23s08 *mcp = context;
335 struct spi_device *spi = to_spi_device(mcp->dev);
336 struct spi_message m;
337 struct spi_transfer t[3] = { { .tx_buf = &mcp->addr, .len = 1, },
338 { .tx_buf = reg, .len = reg_size, },
339 { .tx_buf = val, .len = val_size, }, };
340
341 spi_message_init(&m);
342 spi_message_add_tail(&t[0], &m);
343 spi_message_add_tail(&t[1], &m);
344 spi_message_add_tail(&t[2], &m);
345
346 return spi_sync(spi, &m);
e58b9e27
DB
347}
348
3d84fdb3
SR
349static int mcp23sxx_spi_read(void *context, const void *reg, size_t reg_size,
350 void *val, size_t val_size)
e58b9e27 351{
3d84fdb3
SR
352 struct mcp23s08 *mcp = context;
353 struct spi_device *spi = to_spi_device(mcp->dev);
354 u8 tx[2];
e58b9e27 355
3d84fdb3 356 if (reg_size != 1)
e58b9e27 357 return -EINVAL;
3d84fdb3 358
e58b9e27 359 tx[0] = mcp->addr | 0x01;
3d84fdb3 360 tx[1] = *((u8 *) reg);
0b7bb77f 361
3d84fdb3 362 return spi_write_then_read(spi, tx, sizeof(tx), val, val_size);
0b7bb77f
PK
363}
364
3d84fdb3
SR
365static const struct regmap_bus mcp23sxx_spi_regmap = {
366 .write = mcp23sxx_spi_write,
367 .gather_write = mcp23sxx_spi_gather_write,
368 .read = mcp23sxx_spi_read,
369};
0b7bb77f 370
3d84fdb3 371#endif /* CONFIG_SPI_MASTER */
0b7bb77f 372
3d84fdb3 373/*----------------------------------------------------------------------*/
0b7bb77f 374
3d84fdb3
SR
375/* A given spi_device can represent up to eight mcp23sxx chips
376 * sharing the same chipselect but using different addresses
377 * (e.g. chips #0 and #3 might be populated, but not #1 or $2).
378 * Driver data holds all the per-chip data.
379 */
380struct mcp23s08_driver_data {
381 unsigned ngpio;
382 struct mcp23s08 *mcp[8];
383 struct mcp23s08 chip[];
0b7bb77f
PK
384};
385
e58b9e27
DB
386
387static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
388{
9e03cf0b 389 struct mcp23s08 *mcp = gpiochip_get_data(chip);
e58b9e27
DB
390 int status;
391
392 mutex_lock(&mcp->lock);
8f38910b 393 status = mcp_set_bit(mcp, MCP_IODIR, offset, true);
e58b9e27 394 mutex_unlock(&mcp->lock);
8f38910b 395
e58b9e27
DB
396 return status;
397}
398
399static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
400{
9e03cf0b 401 struct mcp23s08 *mcp = gpiochip_get_data(chip);
3d84fdb3 402 int status, ret;
e58b9e27
DB
403
404 mutex_lock(&mcp->lock);
405
406 /* REVISIT reading this clears any IRQ ... */
3d84fdb3
SR
407 ret = mcp_read(mcp, MCP_GPIO, &status);
408 if (ret < 0)
e58b9e27 409 status = 0;
59861701
DM
410 else {
411 mcp->cached_gpio = status;
e58b9e27 412 status = !!(status & (1 << offset));
59861701 413 }
8f38910b 414
e58b9e27
DB
415 mutex_unlock(&mcp->lock);
416 return status;
417}
418
8f38910b 419static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, bool value)
e58b9e27 420{
8f38910b 421 return mcp_set_mask(mcp, MCP_OLAT, mask, value);
e58b9e27
DB
422}
423
424static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
425{
9e03cf0b 426 struct mcp23s08 *mcp = gpiochip_get_data(chip);
8f38910b 427 unsigned mask = BIT(offset);
e58b9e27
DB
428
429 mutex_lock(&mcp->lock);
8f38910b 430 __mcp23s08_set(mcp, mask, !!value);
e58b9e27
DB
431 mutex_unlock(&mcp->lock);
432}
433
434static int
435mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
436{
9e03cf0b 437 struct mcp23s08 *mcp = gpiochip_get_data(chip);
8f38910b 438 unsigned mask = BIT(offset);
e58b9e27
DB
439 int status;
440
441 mutex_lock(&mcp->lock);
442 status = __mcp23s08_set(mcp, mask, value);
443 if (status == 0) {
8f38910b 444 status = mcp_set_mask(mcp, MCP_IODIR, mask, false);
e58b9e27
DB
445 }
446 mutex_unlock(&mcp->lock);
447 return status;
448}
449
4e47f91b
LP
450/*----------------------------------------------------------------------*/
451static irqreturn_t mcp23s08_irq(int irq, void *data)
452{
453 struct mcp23s08 *mcp = data;
8f38910b 454 int intcap, intcon, intf, i, gpio, gpio_orig, intcap_mask, defval;
4e47f91b 455 unsigned int child_irq;
2cd29f23
RM
456 bool intf_set, intcap_changed, gpio_bit_changed,
457 defval_changed, gpio_set;
4e47f91b
LP
458
459 mutex_lock(&mcp->lock);
3d84fdb3 460 if (mcp_read(mcp, MCP_INTF, &intf) < 0) {
4e47f91b
LP
461 mutex_unlock(&mcp->lock);
462 return IRQ_HANDLED;
463 }
464
3d84fdb3 465 if (mcp_read(mcp, MCP_INTCAP, &intcap) < 0) {
4e47f91b
LP
466 mutex_unlock(&mcp->lock);
467 return IRQ_HANDLED;
468 }
469
8f38910b
SR
470 if (mcp_read(mcp, MCP_INTCON, &intcon) < 0) {
471 mutex_unlock(&mcp->lock);
472 return IRQ_HANDLED;
473 }
474
475 if (mcp_read(mcp, MCP_DEFVAL, &defval) < 0) {
476 mutex_unlock(&mcp->lock);
477 return IRQ_HANDLED;
478 }
2cd29f23
RM
479
480 /* This clears the interrupt(configurable on S18) */
481 if (mcp_read(mcp, MCP_GPIO, &gpio) < 0) {
482 mutex_unlock(&mcp->lock);
483 return IRQ_HANDLED;
484 }
8f38910b
SR
485 gpio_orig = mcp->cached_gpio;
486 mcp->cached_gpio = gpio;
4e47f91b
LP
487 mutex_unlock(&mcp->lock);
488
8f38910b 489 if (intf == 0) {
2cd29f23
RM
490 /* There is no interrupt pending */
491 return IRQ_HANDLED;
492 }
493
494 dev_dbg(mcp->chip.parent,
495 "intcap 0x%04X intf 0x%04X gpio_orig 0x%04X gpio 0x%04X\n",
496 intcap, intf, gpio_orig, gpio);
4e47f91b
LP
497
498 for (i = 0; i < mcp->chip.ngpio; i++) {
2cd29f23
RM
499 /* We must check all of the inputs on the chip,
500 * otherwise we may not notice a change on >=2 pins.
501 *
502 * On at least the mcp23s17, INTCAP is only updated
503 * one byte at a time(INTCAPA and INTCAPB are
504 * not written to at the same time - only on a per-bank
505 * basis).
506 *
507 * INTF only contains the single bit that caused the
508 * interrupt per-bank. On the mcp23s17, there is
509 * INTFA and INTFB. If two pins are changed on the A
510 * side at the same time, INTF will only have one bit
511 * set. If one pin on the A side and one pin on the B
512 * side are changed at the same time, INTF will have
513 * two bits set. Thus, INTF can't be the only check
514 * to see if the input has changed.
515 */
516
8f38910b 517 intf_set = intf & BIT(i);
2cd29f23
RM
518 if (i < 8 && intf_set)
519 intcap_mask = 0x00FF;
520 else if (i >= 8 && intf_set)
521 intcap_mask = 0xFF00;
522 else
523 intcap_mask = 0x00;
524
525 intcap_changed = (intcap_mask &
8f38910b 526 (intcap & BIT(i))) !=
2cd29f23 527 (intcap_mask & (BIT(i) & gpio_orig));
8f38910b 528 gpio_set = BIT(i) & gpio;
2cd29f23 529 gpio_bit_changed = (BIT(i) & gpio_orig) !=
8f38910b
SR
530 (BIT(i) & gpio);
531 defval_changed = (BIT(i) & intcon) &&
532 ((BIT(i) & gpio) !=
533 (BIT(i) & defval));
2cd29f23
RM
534
535 if (((gpio_bit_changed || intcap_changed) &&
536 (BIT(i) & mcp->irq_rise) && gpio_set) ||
537 ((gpio_bit_changed || intcap_changed) &&
538 (BIT(i) & mcp->irq_fall) && !gpio_set) ||
539 defval_changed) {
f0fbe7bc 540 child_irq = irq_find_mapping(mcp->chip.irq.domain, i);
4e47f91b
LP
541 handle_nested_irq(child_irq);
542 }
543 }
544
545 return IRQ_HANDLED;
546}
547
4e47f91b
LP
548static void mcp23s08_irq_mask(struct irq_data *data)
549{
dad3d272
PR
550 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
551 struct mcp23s08 *mcp = gpiochip_get_data(gc);
4e47f91b
LP
552 unsigned int pos = data->hwirq;
553
8f38910b 554 mcp_set_bit(mcp, MCP_GPINTEN, pos, false);
4e47f91b
LP
555}
556
557static void mcp23s08_irq_unmask(struct irq_data *data)
558{
dad3d272
PR
559 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
560 struct mcp23s08 *mcp = gpiochip_get_data(gc);
4e47f91b
LP
561 unsigned int pos = data->hwirq;
562
8f38910b 563 mcp_set_bit(mcp, MCP_GPINTEN, pos, true);
4e47f91b
LP
564}
565
566static int mcp23s08_irq_set_type(struct irq_data *data, unsigned int type)
567{
dad3d272
PR
568 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
569 struct mcp23s08 *mcp = gpiochip_get_data(gc);
4e47f91b
LP
570 unsigned int pos = data->hwirq;
571 int status = 0;
572
573 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
8f38910b 574 mcp_set_bit(mcp, MCP_INTCON, pos, false);
4e47f91b
LP
575 mcp->irq_rise |= BIT(pos);
576 mcp->irq_fall |= BIT(pos);
577 } else if (type & IRQ_TYPE_EDGE_RISING) {
8f38910b 578 mcp_set_bit(mcp, MCP_INTCON, pos, false);
4e47f91b
LP
579 mcp->irq_rise |= BIT(pos);
580 mcp->irq_fall &= ~BIT(pos);
581 } else if (type & IRQ_TYPE_EDGE_FALLING) {
8f38910b 582 mcp_set_bit(mcp, MCP_INTCON, pos, false);
4e47f91b
LP
583 mcp->irq_rise &= ~BIT(pos);
584 mcp->irq_fall |= BIT(pos);
16fe1ad2 585 } else if (type & IRQ_TYPE_LEVEL_HIGH) {
8f38910b
SR
586 mcp_set_bit(mcp, MCP_INTCON, pos, true);
587 mcp_set_bit(mcp, MCP_DEFVAL, pos, false);
16fe1ad2 588 } else if (type & IRQ_TYPE_LEVEL_LOW) {
8f38910b
SR
589 mcp_set_bit(mcp, MCP_INTCON, pos, true);
590 mcp_set_bit(mcp, MCP_DEFVAL, pos, true);
4e47f91b
LP
591 } else
592 return -EINVAL;
593
594 return status;
595}
596
597static void mcp23s08_irq_bus_lock(struct irq_data *data)
598{
dad3d272
PR
599 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
600 struct mcp23s08 *mcp = gpiochip_get_data(gc);
4e47f91b 601
8f38910b
SR
602 mutex_lock(&mcp->lock);
603 regcache_cache_only(mcp->regmap, true);
4e47f91b
LP
604}
605
606static void mcp23s08_irq_bus_unlock(struct irq_data *data)
607{
dad3d272
PR
608 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
609 struct mcp23s08 *mcp = gpiochip_get_data(gc);
4e47f91b 610
8f38910b
SR
611 regcache_cache_only(mcp->regmap, false);
612 regcache_sync(mcp->regmap);
613
4e47f91b 614 mutex_unlock(&mcp->lock);
4e47f91b
LP
615}
616
4e47f91b
LP
617static struct irq_chip mcp23s08_irq_chip = {
618 .name = "gpio-mcp23xxx",
619 .irq_mask = mcp23s08_irq_mask,
620 .irq_unmask = mcp23s08_irq_unmask,
621 .irq_set_type = mcp23s08_irq_set_type,
622 .irq_bus_lock = mcp23s08_irq_bus_lock,
623 .irq_bus_sync_unlock = mcp23s08_irq_bus_unlock,
4e47f91b
LP
624};
625
626static int mcp23s08_irq_setup(struct mcp23s08 *mcp)
627{
628 struct gpio_chip *chip = &mcp->chip;
dad3d272 629 int err;
a4e63554 630 unsigned long irqflags = IRQF_ONESHOT | IRQF_SHARED;
4e47f91b 631
a4e63554
AS
632 if (mcp->irq_active_high)
633 irqflags |= IRQF_TRIGGER_HIGH;
634 else
635 irqflags |= IRQF_TRIGGER_LOW;
636
58383c78
LW
637 err = devm_request_threaded_irq(chip->parent, mcp->irq, NULL,
638 mcp23s08_irq,
639 irqflags, dev_name(chip->parent), mcp);
4e47f91b 640 if (err != 0) {
58383c78 641 dev_err(chip->parent, "unable to request IRQ#%d: %d\n",
4e47f91b
LP
642 mcp->irq, err);
643 return err;
644 }
645
d245b3f9
LW
646 err = gpiochip_irqchip_add_nested(chip,
647 &mcp23s08_irq_chip,
648 0,
649 handle_simple_irq,
650 IRQ_TYPE_NONE);
dad3d272
PR
651 if (err) {
652 dev_err(chip->parent,
653 "could not connect irqchip to gpiochip: %d\n", err);
654 return err;
4e47f91b 655 }
4e47f91b 656
d245b3f9
LW
657 gpiochip_set_nested_irqchip(chip,
658 &mcp23s08_irq_chip,
659 mcp->irq);
4e47f91b 660
dad3d272 661 return 0;
4e47f91b
LP
662}
663
e58b9e27
DB
664/*----------------------------------------------------------------------*/
665
666#ifdef CONFIG_DEBUG_FS
667
668#include <linux/seq_file.h>
669
8f38910b
SR
670/*
671 * This compares the chip's registers with the register
672 * cache and corrects any incorrectly set register. This
673 * can be used to fix state for MCP23xxx, that temporary
674 * lost its power supply.
675 */
676#define MCP23S08_CONFIG_REGS 8
677static int __check_mcp23s08_reg_cache(struct mcp23s08 *mcp)
678{
679 int cached[MCP23S08_CONFIG_REGS];
680 int err = 0, i;
681
682 /* read cached config registers */
683 for (i = 0; i < MCP23S08_CONFIG_REGS; i++) {
684 err = mcp_read(mcp, i, &cached[i]);
685 if (err)
686 goto out;
687 }
688
689 regcache_cache_bypass(mcp->regmap, true);
690
691 for (i = 0; i < MCP23S08_CONFIG_REGS; i++) {
692 int uncached;
693 err = mcp_read(mcp, i, &uncached);
694 if (err)
695 goto out;
696
697 if (uncached != cached[i]) {
698 dev_err(mcp->dev, "restoring reg 0x%02x from 0x%04x to 0x%04x (power-loss?)\n",
699 i, uncached, cached[i]);
700 mcp_write(mcp, i, cached[i]);
701 }
702 }
703
704out:
705 if (err)
706 dev_err(mcp->dev, "read error: reg=%02x, err=%d", i, err);
707 regcache_cache_bypass(mcp->regmap, false);
708 return err;
709}
710
e58b9e27
DB
711/*
712 * This shows more info than the generic gpio dump code:
713 * pullups, deglitching, open drain drive.
714 */
715static void mcp23s08_dbg_show(struct seq_file *s, struct gpio_chip *chip)
716{
717 struct mcp23s08 *mcp;
718 char bank;
1d1c1d9b 719 int t;
e58b9e27 720 unsigned mask;
8f38910b 721 int iodir, gpio, gppu;
e58b9e27 722
9e03cf0b 723 mcp = gpiochip_get_data(chip);
e58b9e27
DB
724
725 /* NOTE: we only handle one bank for now ... */
0b7bb77f 726 bank = '0' + ((mcp->addr >> 1) & 0x7);
e58b9e27
DB
727
728 mutex_lock(&mcp->lock);
8f38910b
SR
729
730 t = __check_mcp23s08_reg_cache(mcp);
731 if (t) {
732 seq_printf(s, " I/O Error\n");
733 goto done;
734 }
735 t = mcp_read(mcp, MCP_IODIR, &iodir);
736 if (t) {
737 seq_printf(s, " I/O Error\n");
738 goto done;
739 }
740 t = mcp_read(mcp, MCP_GPIO, &gpio);
741 if (t) {
742 seq_printf(s, " I/O Error\n");
743 goto done;
744 }
745 t = mcp_read(mcp, MCP_GPPU, &gppu);
746 if (t) {
747 seq_printf(s, " I/O Error\n");
e58b9e27
DB
748 goto done;
749 }
750
8f38910b
SR
751 for (t = 0, mask = BIT(0); t < chip->ngpio; t++, mask <<= 1) {
752 const char *label;
e58b9e27
DB
753
754 label = gpiochip_is_requested(chip, t);
755 if (!label)
756 continue;
757
758 seq_printf(s, " gpio-%-3d P%c.%d (%-12s) %s %s %s",
759 chip->base + t, bank, t, label,
8f38910b
SR
760 (iodir & mask) ? "in " : "out",
761 (gpio & mask) ? "hi" : "lo",
762 (gppu & mask) ? "up" : " ");
e58b9e27 763 /* NOTE: ignoring the irq-related registers */
33bc8411 764 seq_puts(s, "\n");
e58b9e27
DB
765 }
766done:
767 mutex_unlock(&mcp->lock);
768}
769
770#else
771#define mcp23s08_dbg_show NULL
772#endif
773
774/*----------------------------------------------------------------------*/
775
d62b98f3 776static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
4e47f91b 777 void *data, unsigned addr, unsigned type,
5b1a7e80 778 unsigned int base, int cs)
e58b9e27 779{
3d84fdb3 780 int status, ret;
4e47f91b 781 bool mirror = false;
e58b9e27 782
e58b9e27
DB
783 mutex_init(&mcp->lock);
784
3d84fdb3 785 mcp->dev = dev;
d62b98f3 786 mcp->addr = addr;
a4e63554 787 mcp->irq_active_high = false;
e58b9e27 788
e58b9e27
DB
789 mcp->chip.direction_input = mcp23s08_direction_input;
790 mcp->chip.get = mcp23s08_get;
791 mcp->chip.direction_output = mcp23s08_direction_output;
792 mcp->chip.set = mcp23s08_set;
793 mcp->chip.dbg_show = mcp23s08_dbg_show;
60f749f8 794#ifdef CONFIG_OF_GPIO
97ddb1c8
LP
795 mcp->chip.of_gpio_n_cells = 2;
796 mcp->chip.of_node = dev->of_node;
797#endif
e58b9e27 798
d62b98f3
PK
799 switch (type) {
800#ifdef CONFIG_SPI_MASTER
801 case MCP_TYPE_S08:
3d84fdb3
SR
802 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
803 &mcp23x08_regmap);
804 mcp->reg_shift = 0;
0b7bb77f
PK
805 mcp->chip.ngpio = 8;
806 mcp->chip.label = "mcp23s08";
d62b98f3
PK
807 break;
808
809 case MCP_TYPE_S17:
3d84fdb3
SR
810 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
811 &mcp23x17_regmap);
812 mcp->reg_shift = 1;
d62b98f3
PK
813 mcp->chip.ngpio = 16;
814 mcp->chip.label = "mcp23s17";
815 break;
28c5a41e
PR
816
817 case MCP_TYPE_S18:
3d84fdb3
SR
818 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
819 &mcp23x17_regmap);
820 mcp->reg_shift = 1;
28c5a41e
PR
821 mcp->chip.ngpio = 16;
822 mcp->chip.label = "mcp23s18";
823 break;
d62b98f3
PK
824#endif /* CONFIG_SPI_MASTER */
825
cbf24fad 826#if IS_ENABLED(CONFIG_I2C)
752ad5e8 827 case MCP_TYPE_008:
3d84fdb3
SR
828 mcp->regmap = devm_regmap_init_i2c(data, &mcp23x08_regmap);
829 mcp->reg_shift = 0;
752ad5e8
PK
830 mcp->chip.ngpio = 8;
831 mcp->chip.label = "mcp23008";
832 break;
833
834 case MCP_TYPE_017:
3d84fdb3
SR
835 mcp->regmap = devm_regmap_init_i2c(data, &mcp23x17_regmap);
836 mcp->reg_shift = 1;
752ad5e8
PK
837 mcp->chip.ngpio = 16;
838 mcp->chip.label = "mcp23017";
839 break;
840#endif /* CONFIG_I2C */
841
d62b98f3
PK
842 default:
843 dev_err(dev, "invalid device type (%d)\n", type);
844 return -EINVAL;
0b7bb77f 845 }
d62b98f3 846
3d84fdb3
SR
847 if (IS_ERR(mcp->regmap))
848 return PTR_ERR(mcp->regmap);
849
5b1a7e80 850 mcp->chip.base = base;
9fb1f39e 851 mcp->chip.can_sleep = true;
58383c78 852 mcp->chip.parent = dev;
d72cbed0 853 mcp->chip.owner = THIS_MODULE;
e58b9e27 854
8f1cc3b1
DB
855 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
856 * and MCP_IOCON.HAEN = 1, so we work with all chips.
857 */
4e47f91b 858
3d84fdb3
SR
859 ret = mcp_read(mcp, MCP_IOCON, &status);
860 if (ret < 0)
e58b9e27 861 goto fail;
4e47f91b 862
5b1a7e80
SR
863 mcp->irq_controller =
864 device_property_read_bool(dev, "interrupt-controller");
a4e63554 865 if (mcp->irq && mcp->irq_controller) {
170680ab 866 mcp->irq_active_high =
5b1a7e80 867 device_property_read_bool(dev,
170680ab 868 "microchip,irq-active-high");
4e47f91b 869
5b1a7e80 870 mirror = device_property_read_bool(dev, "microchip,irq-mirror");
a4e63554
AS
871 }
872
873 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN) || mirror ||
874 mcp->irq_active_high) {
0b7bb77f
PK
875 /* mcp23s17 has IOCON twice, make sure they are in sync */
876 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
877 status |= IOCON_HAEN | (IOCON_HAEN << 8);
a4e63554
AS
878 if (mcp->irq_active_high)
879 status |= IOCON_INTPOL | (IOCON_INTPOL << 8);
880 else
881 status &= ~(IOCON_INTPOL | (IOCON_INTPOL << 8));
882
4e47f91b
LP
883 if (mirror)
884 status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
885
3539699c
PR
886 if (type == MCP_TYPE_S18)
887 status |= IOCON_INTCC | (IOCON_INTCC << 8);
888
3d84fdb3
SR
889 ret = mcp_write(mcp, MCP_IOCON, status);
890 if (ret < 0)
e58b9e27
DB
891 goto fail;
892 }
893
d0e49dab 894 ret = devm_gpiochip_add_data(dev, &mcp->chip, mcp);
3d84fdb3 895 if (ret < 0)
4e47f91b
LP
896 goto fail;
897
898 if (mcp->irq && mcp->irq_controller) {
3d84fdb3
SR
899 ret = mcp23s08_irq_setup(mcp);
900 if (ret)
4e47f91b 901 goto fail;
4e47f91b 902 }
82039d24
SR
903
904 mcp->pinctrl_desc.name = "mcp23xxx-pinctrl";
905 mcp->pinctrl_desc.pctlops = &mcp_pinctrl_ops;
906 mcp->pinctrl_desc.confops = &mcp_pinconf_ops;
907 mcp->pinctrl_desc.npins = mcp->chip.ngpio;
908 if (mcp->pinctrl_desc.npins == 8)
909 mcp->pinctrl_desc.pins = mcp23x08_pins;
910 else if (mcp->pinctrl_desc.npins == 16)
911 mcp->pinctrl_desc.pins = mcp23x17_pins;
912 mcp->pinctrl_desc.owner = THIS_MODULE;
913
914 mcp->pctldev = devm_pinctrl_register(dev, &mcp->pinctrl_desc, mcp);
915 if (IS_ERR(mcp->pctldev)) {
916 ret = PTR_ERR(mcp->pctldev);
917 goto fail;
918 }
919
8f1cc3b1 920fail:
3d84fdb3
SR
921 if (ret < 0)
922 dev_dbg(dev, "can't setup chip %d, --> %d\n", addr, ret);
923 return ret;
8f1cc3b1
DB
924}
925
752ad5e8
PK
926/*----------------------------------------------------------------------*/
927
97ddb1c8
LP
928#ifdef CONFIG_OF
929#ifdef CONFIG_SPI_MASTER
ac791804 930static const struct of_device_id mcp23s08_spi_of_match[] = {
97ddb1c8 931 {
45971686
LP
932 .compatible = "microchip,mcp23s08",
933 .data = (void *) MCP_TYPE_S08,
97ddb1c8
LP
934 },
935 {
45971686
LP
936 .compatible = "microchip,mcp23s17",
937 .data = (void *) MCP_TYPE_S17,
938 },
28c5a41e
PR
939 {
940 .compatible = "microchip,mcp23s18",
941 .data = (void *) MCP_TYPE_S18,
942 },
45971686
LP
943/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
944 {
945 .compatible = "mcp,mcp23s08",
946 .data = (void *) MCP_TYPE_S08,
947 },
948 {
949 .compatible = "mcp,mcp23s17",
950 .data = (void *) MCP_TYPE_S17,
97ddb1c8
LP
951 },
952 { },
953};
954MODULE_DEVICE_TABLE(of, mcp23s08_spi_of_match);
955#endif
956
957#if IS_ENABLED(CONFIG_I2C)
ac791804 958static const struct of_device_id mcp23s08_i2c_of_match[] = {
97ddb1c8 959 {
45971686
LP
960 .compatible = "microchip,mcp23008",
961 .data = (void *) MCP_TYPE_008,
97ddb1c8
LP
962 },
963 {
45971686
LP
964 .compatible = "microchip,mcp23017",
965 .data = (void *) MCP_TYPE_017,
966 },
967/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
968 {
969 .compatible = "mcp,mcp23008",
970 .data = (void *) MCP_TYPE_008,
971 },
972 {
973 .compatible = "mcp,mcp23017",
974 .data = (void *) MCP_TYPE_017,
97ddb1c8
LP
975 },
976 { },
977};
978MODULE_DEVICE_TABLE(of, mcp23s08_i2c_of_match);
979#endif
980#endif /* CONFIG_OF */
981
982
cbf24fad 983#if IS_ENABLED(CONFIG_I2C)
752ad5e8 984
3836309d 985static int mcp230xx_probe(struct i2c_client *client,
752ad5e8
PK
986 const struct i2c_device_id *id)
987{
3af0dbd5 988 struct mcp23s08_platform_data *pdata, local_pdata;
752ad5e8 989 struct mcp23s08 *mcp;
3af0dbd5 990 int status;
97ddb1c8 991
5f853acf
SR
992 pdata = dev_get_platdata(&client->dev);
993 if (!pdata) {
3af0dbd5
SZ
994 pdata = &local_pdata;
995 pdata->base = -1;
752ad5e8
PK
996 }
997
2f98e78b 998 mcp = devm_kzalloc(&client->dev, sizeof(*mcp), GFP_KERNEL);
752ad5e8
PK
999 if (!mcp)
1000 return -ENOMEM;
1001
4e47f91b 1002 mcp->irq = client->irq;
752ad5e8 1003 status = mcp23s08_probe_one(mcp, &client->dev, client, client->addr,
5b1a7e80 1004 id->driver_data, pdata->base, 0);
752ad5e8 1005 if (status)
2f98e78b 1006 return status;
752ad5e8
PK
1007
1008 i2c_set_clientdata(client, mcp);
1009
1010 return 0;
752ad5e8
PK
1011}
1012
752ad5e8
PK
1013static const struct i2c_device_id mcp230xx_id[] = {
1014 { "mcp23008", MCP_TYPE_008 },
1015 { "mcp23017", MCP_TYPE_017 },
1016 { },
1017};
1018MODULE_DEVICE_TABLE(i2c, mcp230xx_id);
1019
1020static struct i2c_driver mcp230xx_driver = {
1021 .driver = {
1022 .name = "mcp230xx",
97ddb1c8 1023 .of_match_table = of_match_ptr(mcp23s08_i2c_of_match),
752ad5e8
PK
1024 },
1025 .probe = mcp230xx_probe,
752ad5e8
PK
1026 .id_table = mcp230xx_id,
1027};
1028
1029static int __init mcp23s08_i2c_init(void)
1030{
1031 return i2c_add_driver(&mcp230xx_driver);
1032}
1033
1034static void mcp23s08_i2c_exit(void)
1035{
1036 i2c_del_driver(&mcp230xx_driver);
1037}
1038
1039#else
1040
1041static int __init mcp23s08_i2c_init(void) { return 0; }
1042static void mcp23s08_i2c_exit(void) { }
1043
1044#endif /* CONFIG_I2C */
1045
1046/*----------------------------------------------------------------------*/
1047
d62b98f3
PK
1048#ifdef CONFIG_SPI_MASTER
1049
8f1cc3b1
DB
1050static int mcp23s08_probe(struct spi_device *spi)
1051{
3af0dbd5 1052 struct mcp23s08_platform_data *pdata, local_pdata;
8f1cc3b1 1053 unsigned addr;
596a1c5f 1054 int chips = 0;
8f1cc3b1 1055 struct mcp23s08_driver_data *data;
0b7bb77f 1056 int status, type;
3af0dbd5 1057 unsigned ngpio = 0;
97ddb1c8 1058 const struct of_device_id *match;
97ddb1c8
LP
1059
1060 match = of_match_device(of_match_ptr(mcp23s08_spi_of_match), &spi->dev);
0d7fcd50 1061 if (match)
de755c33 1062 type = (int)(uintptr_t)match->data;
0d7fcd50
SR
1063 else
1064 type = spi_get_device_id(spi)->driver_data;
1065
1066 pdata = dev_get_platdata(&spi->dev);
1067 if (!pdata) {
1068 pdata = &local_pdata;
1069 pdata->base = -1;
1070
0d7fcd50 1071 status = device_property_read_u32(&spi->dev,
ce9bd0a0 1072 "microchip,spi-present-mask", &pdata->spi_present_mask);
97ddb1c8 1073 if (status) {
0d7fcd50 1074 status = device_property_read_u32(&spi->dev,
ce9bd0a0
SR
1075 "mcp,spi-present-mask",
1076 &pdata->spi_present_mask);
0d7fcd50 1077
45971686 1078 if (status) {
0d7fcd50 1079 dev_err(&spi->dev, "missing spi-present-mask");
45971686
LP
1080 return -ENODEV;
1081 }
97ddb1c8 1082 }
8f1cc3b1 1083 }
8f1cc3b1 1084
ce9bd0a0 1085 if (!pdata->spi_present_mask || pdata->spi_present_mask > 0xff) {
0d7fcd50
SR
1086 dev_err(&spi->dev, "invalid spi-present-mask");
1087 return -ENODEV;
1088 }
1089
ce9bd0a0
SR
1090 for (addr = 0; addr < MCP_MAX_DEV_PER_CS; addr++) {
1091 if (pdata->spi_present_mask & BIT(addr))
0d7fcd50
SR
1092 chips++;
1093 }
1094
99e4b98d
MW
1095 if (!chips)
1096 return -ENODEV;
1097
7898b31e
VB
1098 data = devm_kzalloc(&spi->dev,
1099 sizeof(*data) + chips * sizeof(struct mcp23s08),
1100 GFP_KERNEL);
8f1cc3b1
DB
1101 if (!data)
1102 return -ENOMEM;
7898b31e 1103
8f1cc3b1
DB
1104 spi_set_drvdata(spi, data);
1105
ce9bd0a0
SR
1106 for (addr = 0; addr < MCP_MAX_DEV_PER_CS; addr++) {
1107 if (!(pdata->spi_present_mask & BIT(addr)))
8f1cc3b1
DB
1108 continue;
1109 chips--;
1110 data->mcp[addr] = &data->chip[chips];
a231b88c 1111 data->mcp[addr]->irq = spi->irq;
d62b98f3 1112 status = mcp23s08_probe_one(data->mcp[addr], &spi->dev, spi,
5b1a7e80
SR
1113 0x40 | (addr << 1), type,
1114 pdata->base, addr);
8f1cc3b1 1115 if (status < 0)
d0e49dab 1116 return status;
0b7bb77f 1117
3af0dbd5 1118 if (pdata->base != -1)
28c5a41e
PR
1119 pdata->base += data->mcp[addr]->chip.ngpio;
1120 ngpio += data->mcp[addr]->chip.ngpio;
8f1cc3b1 1121 }
97ddb1c8 1122 data->ngpio = ngpio;
e58b9e27 1123
e58b9e27 1124 return 0;
e58b9e27
DB
1125}
1126
0b7bb77f
PK
1127static const struct spi_device_id mcp23s08_ids[] = {
1128 { "mcp23s08", MCP_TYPE_S08 },
1129 { "mcp23s17", MCP_TYPE_S17 },
28c5a41e 1130 { "mcp23s18", MCP_TYPE_S18 },
0b7bb77f
PK
1131 { },
1132};
1133MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
1134
e58b9e27
DB
1135static struct spi_driver mcp23s08_driver = {
1136 .probe = mcp23s08_probe,
0b7bb77f 1137 .id_table = mcp23s08_ids,
e58b9e27
DB
1138 .driver = {
1139 .name = "mcp23s08",
97ddb1c8 1140 .of_match_table = of_match_ptr(mcp23s08_spi_of_match),
e58b9e27
DB
1141 },
1142};
1143
d62b98f3
PK
1144static int __init mcp23s08_spi_init(void)
1145{
1146 return spi_register_driver(&mcp23s08_driver);
1147}
1148
1149static void mcp23s08_spi_exit(void)
1150{
1151 spi_unregister_driver(&mcp23s08_driver);
1152}
1153
1154#else
1155
1156static int __init mcp23s08_spi_init(void) { return 0; }
1157static void mcp23s08_spi_exit(void) { }
1158
1159#endif /* CONFIG_SPI_MASTER */
1160
e58b9e27
DB
1161/*----------------------------------------------------------------------*/
1162
1163static int __init mcp23s08_init(void)
1164{
752ad5e8
PK
1165 int ret;
1166
1167 ret = mcp23s08_spi_init();
1168 if (ret)
1169 goto spi_fail;
1170
1171 ret = mcp23s08_i2c_init();
1172 if (ret)
1173 goto i2c_fail;
1174
1175 return 0;
1176
1177 i2c_fail:
1178 mcp23s08_spi_exit();
1179 spi_fail:
1180 return ret;
e58b9e27 1181}
752ad5e8 1182/* register after spi/i2c postcore initcall and before
673c0c00
DB
1183 * subsys initcalls that may rely on these GPIOs
1184 */
1185subsys_initcall(mcp23s08_init);
e58b9e27
DB
1186
1187static void __exit mcp23s08_exit(void)
1188{
d62b98f3 1189 mcp23s08_spi_exit();
752ad5e8 1190 mcp23s08_i2c_exit();
e58b9e27
DB
1191}
1192module_exit(mcp23s08_exit);
1193
1194MODULE_LICENSE("GPL");