blob: f8d4abcff5738aa4861a7e98e157f5528fca8920 [file] [log] [blame]
David Brownelle58b9e22008-02-04 22:28:25 -08001/*
Lars Poeschel4e47f912014-01-16 11:44:15 +01002 * MCP23S08 SPI/I2C GPIO gpio expander driver
3 *
4 * The inputs and outputs of the mcp23s08, mcp23s17, mcp23008 and mcp23017 are
5 * supported.
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
10 * support that yet.
David Brownelle58b9e22008-02-04 22:28:25 -080011 */
12
13#include <linux/kernel.h>
14#include <linux/device.h>
David Brownelle58b9e22008-02-04 22:28:25 -080015#include <linux/mutex.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -040016#include <linux/module.h>
H Hartley Sweetend120c172009-09-22 16:46:37 -070017#include <linux/gpio.h>
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020018#include <linux/i2c.h>
David Brownelle58b9e22008-02-04 22:28:25 -080019#include <linux/spi/spi.h>
20#include <linux/spi/mcp23s08.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010022#include <asm/byteorder.h>
Lars Poeschel4e47f912014-01-16 11:44:15 +010023#include <linux/interrupt.h>
24#include <linux/of_irq.h>
Lars Poeschel97ddb1c2013-04-04 12:02:02 +020025#include <linux/of_device.h>
David Brownelle58b9e22008-02-04 22:28:25 -080026
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010027/**
28 * MCP types supported by driver
29 */
30#define MCP_TYPE_S08 0
31#define MCP_TYPE_S17 1
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020032#define MCP_TYPE_008 2
33#define MCP_TYPE_017 3
David Brownelle58b9e22008-02-04 22:28:25 -080034
35/* Registers are all 8 bits wide.
36 *
37 * The mcp23s17 has twice as many bits, and can be configured to work
38 * with either 16 bit registers or with two adjacent 8 bit banks.
David Brownelle58b9e22008-02-04 22:28:25 -080039 */
40#define MCP_IODIR 0x00 /* init/reset: all ones */
41#define MCP_IPOL 0x01
42#define MCP_GPINTEN 0x02
43#define MCP_DEFVAL 0x03
44#define MCP_INTCON 0x04
45#define MCP_IOCON 0x05
Lars Poeschel4e47f912014-01-16 11:44:15 +010046# define IOCON_MIRROR (1 << 6)
David Brownelle58b9e22008-02-04 22:28:25 -080047# define IOCON_SEQOP (1 << 5)
48# define IOCON_HAEN (1 << 3)
49# define IOCON_ODR (1 << 2)
50# define IOCON_INTPOL (1 << 1)
51#define MCP_GPPU 0x06
52#define MCP_INTF 0x07
53#define MCP_INTCAP 0x08
54#define MCP_GPIO 0x09
55#define MCP_OLAT 0x0a
56
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010057struct mcp23s08;
58
59struct mcp23s08_ops {
60 int (*read)(struct mcp23s08 *mcp, unsigned reg);
61 int (*write)(struct mcp23s08 *mcp, unsigned reg, unsigned val);
62 int (*read_regs)(struct mcp23s08 *mcp, unsigned reg,
63 u16 *vals, unsigned n);
64};
65
David Brownelle58b9e22008-02-04 22:28:25 -080066struct mcp23s08 {
David Brownelle58b9e22008-02-04 22:28:25 -080067 u8 addr;
Alexander Steina4e63552014-12-01 08:26:00 +010068 bool irq_active_high;
David Brownelle58b9e22008-02-04 22:28:25 -080069
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010070 u16 cache[11];
Lars Poeschel4e47f912014-01-16 11:44:15 +010071 u16 irq_rise;
72 u16 irq_fall;
73 int irq;
74 bool irq_controller;
David Brownelle58b9e22008-02-04 22:28:25 -080075 /* lock protects the cached values */
76 struct mutex lock;
Lars Poeschel4e47f912014-01-16 11:44:15 +010077 struct mutex irq_lock;
78 struct irq_domain *irq_domain;
David Brownelle58b9e22008-02-04 22:28:25 -080079
80 struct gpio_chip chip;
81
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010082 const struct mcp23s08_ops *ops;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +020083 void *data; /* ops specific data */
David Brownelle58b9e22008-02-04 22:28:25 -080084};
85
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010086/* A given spi_device can represent up to eight mcp23sxx chips
David Brownell8f1cc3b2008-07-25 01:46:09 -070087 * sharing the same chipselect but using different addresses
88 * (e.g. chips #0 and #3 might be populated, but not #1 or $2).
89 * Driver data holds all the per-chip data.
90 */
91struct mcp23s08_driver_data {
92 unsigned ngpio;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010093 struct mcp23s08 *mcp[8];
David Brownell8f1cc3b2008-07-25 01:46:09 -070094 struct mcp23s08 chip[];
95};
96
Lars Poeschel4e47f912014-01-16 11:44:15 +010097/* This lock class tells lockdep that GPIO irqs are in a different
98 * category than their parents, so it won't report false recursion.
99 */
100static struct lock_class_key gpio_lock_class;
101
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200102/*----------------------------------------------------------------------*/
103
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500104#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200105
106static int mcp23008_read(struct mcp23s08 *mcp, unsigned reg)
107{
108 return i2c_smbus_read_byte_data(mcp->data, reg);
109}
110
111static int mcp23008_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
112{
113 return i2c_smbus_write_byte_data(mcp->data, reg, val);
114}
115
116static int
117mcp23008_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
118{
119 while (n--) {
120 int ret = mcp23008_read(mcp, reg++);
121 if (ret < 0)
122 return ret;
123 *vals++ = ret;
124 }
125
126 return 0;
127}
128
129static int mcp23017_read(struct mcp23s08 *mcp, unsigned reg)
130{
131 return i2c_smbus_read_word_data(mcp->data, reg << 1);
132}
133
134static int mcp23017_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
135{
136 return i2c_smbus_write_word_data(mcp->data, reg << 1, val);
137}
138
139static int
140mcp23017_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
141{
142 while (n--) {
143 int ret = mcp23017_read(mcp, reg++);
144 if (ret < 0)
145 return ret;
146 *vals++ = ret;
147 }
148
149 return 0;
150}
151
152static const struct mcp23s08_ops mcp23008_ops = {
153 .read = mcp23008_read,
154 .write = mcp23008_write,
155 .read_regs = mcp23008_read_regs,
156};
157
158static const struct mcp23s08_ops mcp23017_ops = {
159 .read = mcp23017_read,
160 .write = mcp23017_write,
161 .read_regs = mcp23017_read_regs,
162};
163
164#endif /* CONFIG_I2C */
165
166/*----------------------------------------------------------------------*/
167
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200168#ifdef CONFIG_SPI_MASTER
169
David Brownelle58b9e22008-02-04 22:28:25 -0800170static int mcp23s08_read(struct mcp23s08 *mcp, unsigned reg)
171{
172 u8 tx[2], rx[1];
173 int status;
174
175 tx[0] = mcp->addr | 0x01;
176 tx[1] = reg;
Gary Servin33bc8412014-03-06 20:25:26 -0300177 status = spi_write_then_read(mcp->data, tx, sizeof(tx), rx, sizeof(rx));
David Brownelle58b9e22008-02-04 22:28:25 -0800178 return (status < 0) ? status : rx[0];
179}
180
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100181static int mcp23s08_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
David Brownelle58b9e22008-02-04 22:28:25 -0800182{
183 u8 tx[3];
184
185 tx[0] = mcp->addr;
186 tx[1] = reg;
187 tx[2] = val;
Gary Servin33bc8412014-03-06 20:25:26 -0300188 return spi_write_then_read(mcp->data, tx, sizeof(tx), NULL, 0);
David Brownelle58b9e22008-02-04 22:28:25 -0800189}
190
191static int
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100192mcp23s08_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
David Brownelle58b9e22008-02-04 22:28:25 -0800193{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100194 u8 tx[2], *tmp;
195 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800196
Gary Servin33bc8412014-03-06 20:25:26 -0300197 if ((n + reg) > sizeof(mcp->cache))
David Brownelle58b9e22008-02-04 22:28:25 -0800198 return -EINVAL;
199 tx[0] = mcp->addr | 0x01;
200 tx[1] = reg;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100201
202 tmp = (u8 *)vals;
Gary Servin33bc8412014-03-06 20:25:26 -0300203 status = spi_write_then_read(mcp->data, tx, sizeof(tx), tmp, n);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100204 if (status >= 0) {
205 while (n--)
206 vals[n] = tmp[n]; /* expand to 16bit */
207 }
208 return status;
David Brownelle58b9e22008-02-04 22:28:25 -0800209}
210
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100211static int mcp23s17_read(struct mcp23s08 *mcp, unsigned reg)
212{
213 u8 tx[2], rx[2];
214 int status;
215
216 tx[0] = mcp->addr | 0x01;
217 tx[1] = reg << 1;
Gary Servin33bc8412014-03-06 20:25:26 -0300218 status = spi_write_then_read(mcp->data, tx, sizeof(tx), rx, sizeof(rx));
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100219 return (status < 0) ? status : (rx[0] | (rx[1] << 8));
220}
221
222static int mcp23s17_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
223{
224 u8 tx[4];
225
226 tx[0] = mcp->addr;
227 tx[1] = reg << 1;
228 tx[2] = val;
229 tx[3] = val >> 8;
Gary Servin33bc8412014-03-06 20:25:26 -0300230 return spi_write_then_read(mcp->data, tx, sizeof(tx), NULL, 0);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100231}
232
233static int
234mcp23s17_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
235{
236 u8 tx[2];
237 int status;
238
Gary Servin33bc8412014-03-06 20:25:26 -0300239 if ((n + reg) > sizeof(mcp->cache))
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100240 return -EINVAL;
241 tx[0] = mcp->addr | 0x01;
242 tx[1] = reg << 1;
243
Gary Servin33bc8412014-03-06 20:25:26 -0300244 status = spi_write_then_read(mcp->data, tx, sizeof(tx),
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100245 (u8 *)vals, n * 2);
246 if (status >= 0) {
247 while (n--)
248 vals[n] = __le16_to_cpu((__le16)vals[n]);
249 }
250
251 return status;
252}
253
254static const struct mcp23s08_ops mcp23s08_ops = {
255 .read = mcp23s08_read,
256 .write = mcp23s08_write,
257 .read_regs = mcp23s08_read_regs,
258};
259
260static const struct mcp23s08_ops mcp23s17_ops = {
261 .read = mcp23s17_read,
262 .write = mcp23s17_write,
263 .read_regs = mcp23s17_read_regs,
264};
265
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200266#endif /* CONFIG_SPI_MASTER */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100267
David Brownelle58b9e22008-02-04 22:28:25 -0800268/*----------------------------------------------------------------------*/
269
270static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
271{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100272 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800273 int status;
274
275 mutex_lock(&mcp->lock);
276 mcp->cache[MCP_IODIR] |= (1 << offset);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100277 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800278 mutex_unlock(&mcp->lock);
279 return status;
280}
281
282static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
283{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100284 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800285 int status;
286
287 mutex_lock(&mcp->lock);
288
289 /* REVISIT reading this clears any IRQ ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100290 status = mcp->ops->read(mcp, MCP_GPIO);
David Brownelle58b9e22008-02-04 22:28:25 -0800291 if (status < 0)
292 status = 0;
293 else {
294 mcp->cache[MCP_GPIO] = status;
295 status = !!(status & (1 << offset));
296 }
297 mutex_unlock(&mcp->lock);
298 return status;
299}
300
301static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, int value)
302{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100303 unsigned olat = mcp->cache[MCP_OLAT];
David Brownelle58b9e22008-02-04 22:28:25 -0800304
305 if (value)
306 olat |= mask;
307 else
308 olat &= ~mask;
309 mcp->cache[MCP_OLAT] = olat;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100310 return mcp->ops->write(mcp, MCP_OLAT, olat);
David Brownelle58b9e22008-02-04 22:28:25 -0800311}
312
313static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
314{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100315 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100316 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800317
318 mutex_lock(&mcp->lock);
319 __mcp23s08_set(mcp, mask, value);
320 mutex_unlock(&mcp->lock);
321}
322
323static int
324mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
325{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100326 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100327 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800328 int status;
329
330 mutex_lock(&mcp->lock);
331 status = __mcp23s08_set(mcp, mask, value);
332 if (status == 0) {
333 mcp->cache[MCP_IODIR] &= ~mask;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100334 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800335 }
336 mutex_unlock(&mcp->lock);
337 return status;
338}
339
340/*----------------------------------------------------------------------*/
Lars Poeschel4e47f912014-01-16 11:44:15 +0100341static irqreturn_t mcp23s08_irq(int irq, void *data)
342{
343 struct mcp23s08 *mcp = data;
344 int intcap, intf, i;
345 unsigned int child_irq;
346
347 mutex_lock(&mcp->lock);
348 intf = mcp->ops->read(mcp, MCP_INTF);
349 if (intf < 0) {
350 mutex_unlock(&mcp->lock);
351 return IRQ_HANDLED;
352 }
353
354 mcp->cache[MCP_INTF] = intf;
355
356 intcap = mcp->ops->read(mcp, MCP_INTCAP);
357 if (intcap < 0) {
358 mutex_unlock(&mcp->lock);
359 return IRQ_HANDLED;
360 }
361
362 mcp->cache[MCP_INTCAP] = intcap;
363 mutex_unlock(&mcp->lock);
364
365
366 for (i = 0; i < mcp->chip.ngpio; i++) {
367 if ((BIT(i) & mcp->cache[MCP_INTF]) &&
368 ((BIT(i) & intcap & mcp->irq_rise) ||
369 (mcp->irq_fall & ~intcap & BIT(i)))) {
370 child_irq = irq_find_mapping(mcp->irq_domain, i);
371 handle_nested_irq(child_irq);
372 }
373 }
374
375 return IRQ_HANDLED;
376}
377
378static int mcp23s08_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
379{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100380 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100381
382 return irq_find_mapping(mcp->irq_domain, offset);
383}
384
385static void mcp23s08_irq_mask(struct irq_data *data)
386{
387 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
388 unsigned int pos = data->hwirq;
389
390 mcp->cache[MCP_GPINTEN] &= ~BIT(pos);
391}
392
393static void mcp23s08_irq_unmask(struct irq_data *data)
394{
395 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
396 unsigned int pos = data->hwirq;
397
398 mcp->cache[MCP_GPINTEN] |= BIT(pos);
399}
400
401static int mcp23s08_irq_set_type(struct irq_data *data, unsigned int type)
402{
403 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
404 unsigned int pos = data->hwirq;
405 int status = 0;
406
407 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
408 mcp->cache[MCP_INTCON] &= ~BIT(pos);
409 mcp->irq_rise |= BIT(pos);
410 mcp->irq_fall |= BIT(pos);
411 } else if (type & IRQ_TYPE_EDGE_RISING) {
412 mcp->cache[MCP_INTCON] &= ~BIT(pos);
413 mcp->irq_rise |= BIT(pos);
414 mcp->irq_fall &= ~BIT(pos);
415 } else if (type & IRQ_TYPE_EDGE_FALLING) {
416 mcp->cache[MCP_INTCON] &= ~BIT(pos);
417 mcp->irq_rise &= ~BIT(pos);
418 mcp->irq_fall |= BIT(pos);
419 } else
420 return -EINVAL;
421
422 return status;
423}
424
425static void mcp23s08_irq_bus_lock(struct irq_data *data)
426{
427 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
428
429 mutex_lock(&mcp->irq_lock);
430}
431
432static void mcp23s08_irq_bus_unlock(struct irq_data *data)
433{
434 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
435
436 mutex_lock(&mcp->lock);
437 mcp->ops->write(mcp, MCP_GPINTEN, mcp->cache[MCP_GPINTEN]);
438 mcp->ops->write(mcp, MCP_DEFVAL, mcp->cache[MCP_DEFVAL]);
439 mcp->ops->write(mcp, MCP_INTCON, mcp->cache[MCP_INTCON]);
440 mutex_unlock(&mcp->lock);
441 mutex_unlock(&mcp->irq_lock);
442}
443
Linus Walleij57ef0422014-03-14 18:16:20 +0100444static int mcp23s08_irq_reqres(struct irq_data *data)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100445{
446 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
447
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900448 if (gpiochip_lock_as_irq(&mcp->chip, data->hwirq)) {
Linus Walleij58383c72015-11-04 09:56:26 +0100449 dev_err(mcp->chip.parent,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100450 "unable to lock HW IRQ %lu for IRQ usage\n",
451 data->hwirq);
Linus Walleij57ef0422014-03-14 18:16:20 +0100452 return -EINVAL;
453 }
Lars Poeschel4e47f912014-01-16 11:44:15 +0100454
Lars Poeschel4e47f912014-01-16 11:44:15 +0100455 return 0;
456}
457
Linus Walleij57ef0422014-03-14 18:16:20 +0100458static void mcp23s08_irq_relres(struct irq_data *data)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100459{
460 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
461
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900462 gpiochip_unlock_as_irq(&mcp->chip, data->hwirq);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100463}
464
465static struct irq_chip mcp23s08_irq_chip = {
466 .name = "gpio-mcp23xxx",
467 .irq_mask = mcp23s08_irq_mask,
468 .irq_unmask = mcp23s08_irq_unmask,
469 .irq_set_type = mcp23s08_irq_set_type,
470 .irq_bus_lock = mcp23s08_irq_bus_lock,
471 .irq_bus_sync_unlock = mcp23s08_irq_bus_unlock,
Linus Walleij57ef0422014-03-14 18:16:20 +0100472 .irq_request_resources = mcp23s08_irq_reqres,
473 .irq_release_resources = mcp23s08_irq_relres,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100474};
475
476static int mcp23s08_irq_setup(struct mcp23s08 *mcp)
477{
478 struct gpio_chip *chip = &mcp->chip;
479 int err, irq, j;
Alexander Steina4e63552014-12-01 08:26:00 +0100480 unsigned long irqflags = IRQF_ONESHOT | IRQF_SHARED;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100481
482 mutex_init(&mcp->irq_lock);
483
Linus Walleij58383c72015-11-04 09:56:26 +0100484 mcp->irq_domain = irq_domain_add_linear(chip->parent->of_node,
485 chip->ngpio,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100486 &irq_domain_simple_ops, mcp);
487 if (!mcp->irq_domain)
488 return -ENODEV;
489
Alexander Steina4e63552014-12-01 08:26:00 +0100490 if (mcp->irq_active_high)
491 irqflags |= IRQF_TRIGGER_HIGH;
492 else
493 irqflags |= IRQF_TRIGGER_LOW;
494
Linus Walleij58383c72015-11-04 09:56:26 +0100495 err = devm_request_threaded_irq(chip->parent, mcp->irq, NULL,
496 mcp23s08_irq,
497 irqflags, dev_name(chip->parent), mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100498 if (err != 0) {
Linus Walleij58383c72015-11-04 09:56:26 +0100499 dev_err(chip->parent, "unable to request IRQ#%d: %d\n",
Lars Poeschel4e47f912014-01-16 11:44:15 +0100500 mcp->irq, err);
501 return err;
502 }
503
504 chip->to_irq = mcp23s08_gpio_to_irq;
505
506 for (j = 0; j < mcp->chip.ngpio; j++) {
507 irq = irq_create_mapping(mcp->irq_domain, j);
508 irq_set_lockdep_class(irq, &gpio_lock_class);
509 irq_set_chip_data(irq, mcp);
510 irq_set_chip(irq, &mcp23s08_irq_chip);
511 irq_set_nested_thread(irq, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100512 irq_set_noprobe(irq);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100513 }
514 return 0;
515}
516
517static void mcp23s08_irq_teardown(struct mcp23s08 *mcp)
518{
519 unsigned int irq, i;
520
Lars Poeschel4e47f912014-01-16 11:44:15 +0100521 for (i = 0; i < mcp->chip.ngpio; i++) {
522 irq = irq_find_mapping(mcp->irq_domain, i);
523 if (irq > 0)
524 irq_dispose_mapping(irq);
525 }
526
527 irq_domain_remove(mcp->irq_domain);
528}
529
530/*----------------------------------------------------------------------*/
David Brownelle58b9e22008-02-04 22:28:25 -0800531
532#ifdef CONFIG_DEBUG_FS
533
534#include <linux/seq_file.h>
535
536/*
537 * This shows more info than the generic gpio dump code:
538 * pullups, deglitching, open drain drive.
539 */
540static void mcp23s08_dbg_show(struct seq_file *s, struct gpio_chip *chip)
541{
542 struct mcp23s08 *mcp;
543 char bank;
Roel Kluin1d1c1d92008-05-23 13:04:43 -0700544 int t;
David Brownelle58b9e22008-02-04 22:28:25 -0800545 unsigned mask;
546
Linus Walleij9e03cf02015-12-07 10:09:36 +0100547 mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800548
549 /* NOTE: we only handle one bank for now ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100550 bank = '0' + ((mcp->addr >> 1) & 0x7);
David Brownelle58b9e22008-02-04 22:28:25 -0800551
552 mutex_lock(&mcp->lock);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100553 t = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800554 if (t < 0) {
555 seq_printf(s, " I/O ERROR %d\n", t);
556 goto done;
557 }
558
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100559 for (t = 0, mask = 1; t < chip->ngpio; t++, mask <<= 1) {
David Brownelle58b9e22008-02-04 22:28:25 -0800560 const char *label;
561
562 label = gpiochip_is_requested(chip, t);
563 if (!label)
564 continue;
565
566 seq_printf(s, " gpio-%-3d P%c.%d (%-12s) %s %s %s",
567 chip->base + t, bank, t, label,
568 (mcp->cache[MCP_IODIR] & mask) ? "in " : "out",
569 (mcp->cache[MCP_GPIO] & mask) ? "hi" : "lo",
Peter Korsgaardeb1567f2012-04-25 11:51:53 +0200570 (mcp->cache[MCP_GPPU] & mask) ? "up" : " ");
David Brownelle58b9e22008-02-04 22:28:25 -0800571 /* NOTE: ignoring the irq-related registers */
Gary Servin33bc8412014-03-06 20:25:26 -0300572 seq_puts(s, "\n");
David Brownelle58b9e22008-02-04 22:28:25 -0800573 }
574done:
575 mutex_unlock(&mcp->lock);
576}
577
578#else
579#define mcp23s08_dbg_show NULL
580#endif
581
582/*----------------------------------------------------------------------*/
583
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200584static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100585 void *data, unsigned addr, unsigned type,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800586 struct mcp23s08_platform_data *pdata, int cs)
David Brownelle58b9e22008-02-04 22:28:25 -0800587{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200588 int status;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100589 bool mirror = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800590
David Brownelle58b9e22008-02-04 22:28:25 -0800591 mutex_init(&mcp->lock);
592
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200593 mcp->data = data;
594 mcp->addr = addr;
Alexander Steina4e63552014-12-01 08:26:00 +0100595 mcp->irq_active_high = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800596
David Brownelle58b9e22008-02-04 22:28:25 -0800597 mcp->chip.direction_input = mcp23s08_direction_input;
598 mcp->chip.get = mcp23s08_get;
599 mcp->chip.direction_output = mcp23s08_direction_output;
600 mcp->chip.set = mcp23s08_set;
601 mcp->chip.dbg_show = mcp23s08_dbg_show;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200602#ifdef CONFIG_OF
603 mcp->chip.of_gpio_n_cells = 2;
604 mcp->chip.of_node = dev->of_node;
605#endif
David Brownelle58b9e22008-02-04 22:28:25 -0800606
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200607 switch (type) {
608#ifdef CONFIG_SPI_MASTER
609 case MCP_TYPE_S08:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100610 mcp->ops = &mcp23s08_ops;
611 mcp->chip.ngpio = 8;
612 mcp->chip.label = "mcp23s08";
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200613 break;
614
615 case MCP_TYPE_S17:
616 mcp->ops = &mcp23s17_ops;
617 mcp->chip.ngpio = 16;
618 mcp->chip.label = "mcp23s17";
619 break;
620#endif /* CONFIG_SPI_MASTER */
621
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500622#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200623 case MCP_TYPE_008:
624 mcp->ops = &mcp23008_ops;
625 mcp->chip.ngpio = 8;
626 mcp->chip.label = "mcp23008";
627 break;
628
629 case MCP_TYPE_017:
630 mcp->ops = &mcp23017_ops;
631 mcp->chip.ngpio = 16;
632 mcp->chip.label = "mcp23017";
633 break;
634#endif /* CONFIG_I2C */
635
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200636 default:
637 dev_err(dev, "invalid device type (%d)\n", type);
638 return -EINVAL;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100639 }
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200640
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800641 mcp->chip.base = pdata->base;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100642 mcp->chip.can_sleep = true;
Linus Walleij58383c72015-11-04 09:56:26 +0100643 mcp->chip.parent = dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700644 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800645
David Brownell8f1cc3b2008-07-25 01:46:09 -0700646 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
647 * and MCP_IOCON.HAEN = 1, so we work with all chips.
648 */
Lars Poeschel4e47f912014-01-16 11:44:15 +0100649
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100650 status = mcp->ops->read(mcp, MCP_IOCON);
David Brownelle58b9e22008-02-04 22:28:25 -0800651 if (status < 0)
652 goto fail;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100653
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800654 mcp->irq_controller = pdata->irq_controller;
Alexander Steina4e63552014-12-01 08:26:00 +0100655 if (mcp->irq && mcp->irq_controller) {
Linus Walleij170680a2014-12-12 11:22:11 +0100656 mcp->irq_active_high =
Linus Walleij58383c72015-11-04 09:56:26 +0100657 of_property_read_bool(mcp->chip.parent->of_node,
Linus Walleij170680a2014-12-12 11:22:11 +0100658 "microchip,irq-active-high");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100659
Alexander Steina4e63552014-12-01 08:26:00 +0100660 if (type == MCP_TYPE_017)
661 mirror = pdata->mirror;
662 }
663
664 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN) || mirror ||
665 mcp->irq_active_high) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100666 /* mcp23s17 has IOCON twice, make sure they are in sync */
667 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
668 status |= IOCON_HAEN | (IOCON_HAEN << 8);
Alexander Steina4e63552014-12-01 08:26:00 +0100669 if (mcp->irq_active_high)
670 status |= IOCON_INTPOL | (IOCON_INTPOL << 8);
671 else
672 status &= ~(IOCON_INTPOL | (IOCON_INTPOL << 8));
673
Lars Poeschel4e47f912014-01-16 11:44:15 +0100674 if (mirror)
675 status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
676
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100677 status = mcp->ops->write(mcp, MCP_IOCON, status);
David Brownelle58b9e22008-02-04 22:28:25 -0800678 if (status < 0)
679 goto fail;
680 }
681
682 /* configure ~100K pullups */
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800683 status = mcp->ops->write(mcp, MCP_GPPU, pdata->chip[cs].pullups);
David Brownelle58b9e22008-02-04 22:28:25 -0800684 if (status < 0)
685 goto fail;
686
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100687 status = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800688 if (status < 0)
689 goto fail;
690
691 /* disable inverter on input */
692 if (mcp->cache[MCP_IPOL] != 0) {
693 mcp->cache[MCP_IPOL] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100694 status = mcp->ops->write(mcp, MCP_IPOL, 0);
695 if (status < 0)
696 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800697 }
698
699 /* disable irqs */
700 if (mcp->cache[MCP_GPINTEN] != 0) {
701 mcp->cache[MCP_GPINTEN] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100702 status = mcp->ops->write(mcp, MCP_GPINTEN, 0);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700703 if (status < 0)
704 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800705 }
706
Linus Walleij9e03cf02015-12-07 10:09:36 +0100707 status = gpiochip_add_data(&mcp->chip, mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100708 if (status < 0)
709 goto fail;
710
711 if (mcp->irq && mcp->irq_controller) {
712 status = mcp23s08_irq_setup(mcp);
713 if (status) {
714 mcp23s08_irq_teardown(mcp);
715 goto fail;
716 }
717 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700718fail:
719 if (status < 0)
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200720 dev_dbg(dev, "can't setup chip %d, --> %d\n",
721 addr, status);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700722 return status;
723}
724
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200725/*----------------------------------------------------------------------*/
726
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200727#ifdef CONFIG_OF
728#ifdef CONFIG_SPI_MASTER
Jingoo Hanac791802014-05-07 18:05:17 +0900729static const struct of_device_id mcp23s08_spi_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200730 {
Lars Poeschel45971682013-08-28 10:38:50 +0200731 .compatible = "microchip,mcp23s08",
732 .data = (void *) MCP_TYPE_S08,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200733 },
734 {
Lars Poeschel45971682013-08-28 10:38:50 +0200735 .compatible = "microchip,mcp23s17",
736 .data = (void *) MCP_TYPE_S17,
737 },
738/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
739 {
740 .compatible = "mcp,mcp23s08",
741 .data = (void *) MCP_TYPE_S08,
742 },
743 {
744 .compatible = "mcp,mcp23s17",
745 .data = (void *) MCP_TYPE_S17,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200746 },
747 { },
748};
749MODULE_DEVICE_TABLE(of, mcp23s08_spi_of_match);
750#endif
751
752#if IS_ENABLED(CONFIG_I2C)
Jingoo Hanac791802014-05-07 18:05:17 +0900753static const struct of_device_id mcp23s08_i2c_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200754 {
Lars Poeschel45971682013-08-28 10:38:50 +0200755 .compatible = "microchip,mcp23008",
756 .data = (void *) MCP_TYPE_008,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200757 },
758 {
Lars Poeschel45971682013-08-28 10:38:50 +0200759 .compatible = "microchip,mcp23017",
760 .data = (void *) MCP_TYPE_017,
761 },
762/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
763 {
764 .compatible = "mcp,mcp23008",
765 .data = (void *) MCP_TYPE_008,
766 },
767 {
768 .compatible = "mcp,mcp23017",
769 .data = (void *) MCP_TYPE_017,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200770 },
771 { },
772};
773MODULE_DEVICE_TABLE(of, mcp23s08_i2c_of_match);
774#endif
775#endif /* CONFIG_OF */
776
777
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500778#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200779
Bill Pemberton38363092012-11-19 13:22:34 -0500780static int mcp230xx_probe(struct i2c_client *client,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200781 const struct i2c_device_id *id)
782{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800783 struct mcp23s08_platform_data *pdata, local_pdata;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200784 struct mcp23s08 *mcp;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800785 int status;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200786 const struct of_device_id *match;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200787
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200788 match = of_match_device(of_match_ptr(mcp23s08_i2c_of_match),
789 &client->dev);
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800790 if (match) {
791 pdata = &local_pdata;
792 pdata->base = -1;
793 pdata->chip[0].pullups = 0;
794 pdata->irq_controller = of_property_read_bool(
795 client->dev.of_node,
796 "interrupt-controller");
797 pdata->mirror = of_property_read_bool(client->dev.of_node,
798 "microchip,irq-mirror");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100799 client->irq = irq_of_parse_and_map(client->dev.of_node, 0);
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200800 } else {
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800801 pdata = dev_get_platdata(&client->dev);
Sonic Zhangb184c382015-01-20 17:00:08 +0800802 if (!pdata) {
803 pdata = devm_kzalloc(&client->dev,
804 sizeof(struct mcp23s08_platform_data),
805 GFP_KERNEL);
Insu Yunaaf2b3a2016-02-15 21:19:57 -0500806 if (!pdata)
807 return -ENOMEM;
Sonic Zhangb184c382015-01-20 17:00:08 +0800808 pdata->base = -1;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200809 }
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200810 }
811
Gary Servin33bc8412014-03-06 20:25:26 -0300812 mcp = kzalloc(sizeof(*mcp), GFP_KERNEL);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200813 if (!mcp)
814 return -ENOMEM;
815
Lars Poeschel4e47f912014-01-16 11:44:15 +0100816 mcp->irq = client->irq;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200817 status = mcp23s08_probe_one(mcp, &client->dev, client, client->addr,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800818 id->driver_data, pdata, 0);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200819 if (status)
820 goto fail;
821
822 i2c_set_clientdata(client, mcp);
823
824 return 0;
825
826fail:
827 kfree(mcp);
828
829 return status;
830}
831
Bill Pemberton206210c2012-11-19 13:25:50 -0500832static int mcp230xx_remove(struct i2c_client *client)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200833{
834 struct mcp23s08 *mcp = i2c_get_clientdata(client);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200835
Lars Poeschel4e47f912014-01-16 11:44:15 +0100836 if (client->irq && mcp->irq_controller)
837 mcp23s08_irq_teardown(mcp);
838
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200839 gpiochip_remove(&mcp->chip);
840 kfree(mcp);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200841
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200842 return 0;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200843}
844
845static const struct i2c_device_id mcp230xx_id[] = {
846 { "mcp23008", MCP_TYPE_008 },
847 { "mcp23017", MCP_TYPE_017 },
848 { },
849};
850MODULE_DEVICE_TABLE(i2c, mcp230xx_id);
851
852static struct i2c_driver mcp230xx_driver = {
853 .driver = {
854 .name = "mcp230xx",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200855 .of_match_table = of_match_ptr(mcp23s08_i2c_of_match),
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200856 },
857 .probe = mcp230xx_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500858 .remove = mcp230xx_remove,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200859 .id_table = mcp230xx_id,
860};
861
862static int __init mcp23s08_i2c_init(void)
863{
864 return i2c_add_driver(&mcp230xx_driver);
865}
866
867static void mcp23s08_i2c_exit(void)
868{
869 i2c_del_driver(&mcp230xx_driver);
870}
871
872#else
873
874static int __init mcp23s08_i2c_init(void) { return 0; }
875static void mcp23s08_i2c_exit(void) { }
876
877#endif /* CONFIG_I2C */
878
879/*----------------------------------------------------------------------*/
880
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200881#ifdef CONFIG_SPI_MASTER
882
David Brownell8f1cc3b2008-07-25 01:46:09 -0700883static int mcp23s08_probe(struct spi_device *spi)
884{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800885 struct mcp23s08_platform_data *pdata, local_pdata;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700886 unsigned addr;
Linus Walleij596a1c52014-05-28 09:14:06 +0200887 int chips = 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700888 struct mcp23s08_driver_data *data;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100889 int status, type;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800890 unsigned ngpio = 0;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200891 const struct of_device_id *match;
892 u32 spi_present_mask = 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700893
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200894 match = of_match_device(of_match_ptr(mcp23s08_spi_of_match), &spi->dev);
895 if (match) {
SeongJae Parkde755c32014-01-18 13:53:04 +0900896 type = (int)(uintptr_t)match->data;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200897 status = of_property_read_u32(spi->dev.of_node,
Lars Poeschel45971682013-08-28 10:38:50 +0200898 "microchip,spi-present-mask", &spi_present_mask);
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200899 if (status) {
Lars Poeschel45971682013-08-28 10:38:50 +0200900 status = of_property_read_u32(spi->dev.of_node,
901 "mcp,spi-present-mask", &spi_present_mask);
902 if (status) {
903 dev_err(&spi->dev,
904 "DT has no spi-present-mask\n");
905 return -ENODEV;
906 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200907 }
908 if ((spi_present_mask <= 0) || (spi_present_mask >= 256)) {
909 dev_err(&spi->dev, "invalid spi-present-mask\n");
910 return -ENODEV;
911 }
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100912
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800913 pdata = &local_pdata;
914 pdata->base = -1;
Michael Welling99e4b982014-04-16 20:00:24 -0500915 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800916 pdata->chip[addr].pullups = 0;
Michael Stickel3e3bed92014-05-26 10:03:16 +0200917 if (spi_present_mask & (1 << addr))
918 chips++;
Michael Welling99e4b982014-04-16 20:00:24 -0500919 }
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800920 pdata->irq_controller = of_property_read_bool(
921 spi->dev.of_node,
922 "interrupt-controller");
923 pdata->mirror = of_property_read_bool(spi->dev.of_node,
924 "microchip,irq-mirror");
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200925 } else {
926 type = spi_get_device_id(spi)->driver_data;
Jingoo Hane56aee12013-07-30 17:08:05 +0900927 pdata = dev_get_platdata(&spi->dev);
Sonic Zhangb184c382015-01-20 17:00:08 +0800928 if (!pdata) {
929 pdata = devm_kzalloc(&spi->dev,
930 sizeof(struct mcp23s08_platform_data),
931 GFP_KERNEL);
932 pdata->base = -1;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100933 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200934
935 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
936 if (!pdata->chip[addr].is_present)
937 continue;
938 chips++;
939 if ((type == MCP_TYPE_S08) && (addr > 3)) {
940 dev_err(&spi->dev,
941 "mcp23s08 only supports address 0..3\n");
942 return -EINVAL;
943 }
944 spi_present_mask |= 1 << addr;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200945 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700946 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700947
Michael Welling99e4b982014-04-16 20:00:24 -0500948 if (!chips)
949 return -ENODEV;
950
Varka Bhadram7898b312015-03-31 09:49:08 +0530951 data = devm_kzalloc(&spi->dev,
952 sizeof(*data) + chips * sizeof(struct mcp23s08),
953 GFP_KERNEL);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700954 if (!data)
955 return -ENOMEM;
Varka Bhadram7898b312015-03-31 09:49:08 +0530956
David Brownell8f1cc3b2008-07-25 01:46:09 -0700957 spi_set_drvdata(spi, data);
958
Alexander Steina231b882014-11-17 09:38:10 +0100959 spi->irq = irq_of_parse_and_map(spi->dev.of_node, 0);
960
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100961 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200962 if (!(spi_present_mask & (1 << addr)))
David Brownell8f1cc3b2008-07-25 01:46:09 -0700963 continue;
964 chips--;
965 data->mcp[addr] = &data->chip[chips];
Alexander Steina231b882014-11-17 09:38:10 +0100966 data->mcp[addr]->irq = spi->irq;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200967 status = mcp23s08_probe_one(data->mcp[addr], &spi->dev, spi,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800968 0x40 | (addr << 1), type, pdata,
969 addr);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700970 if (status < 0)
971 goto fail;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100972
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800973 if (pdata->base != -1)
974 pdata->base += (type == MCP_TYPE_S17) ? 16 : 8;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200975 ngpio += (type == MCP_TYPE_S17) ? 16 : 8;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700976 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200977 data->ngpio = ngpio;
David Brownelle58b9e22008-02-04 22:28:25 -0800978
979 /* NOTE: these chips have a relatively sane IRQ framework, with
980 * per-signal masking and level/edge triggering. It's not yet
981 * handled here...
982 */
983
David Brownelle58b9e22008-02-04 22:28:25 -0800984 return 0;
985
986fail:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100987 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700988
989 if (!data->mcp[addr])
990 continue;
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200991 gpiochip_remove(&data->mcp[addr]->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700992 }
David Brownelle58b9e22008-02-04 22:28:25 -0800993 return status;
994}
995
996static int mcp23s08_remove(struct spi_device *spi)
997{
David Brownell8f1cc3b2008-07-25 01:46:09 -0700998 struct mcp23s08_driver_data *data = spi_get_drvdata(spi);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700999 unsigned addr;
David Brownelle58b9e22008-02-04 22:28:25 -08001000
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001001 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -07001002
1003 if (!data->mcp[addr])
1004 continue;
1005
Alexander Steina231b882014-11-17 09:38:10 +01001006 if (spi->irq && data->mcp[addr]->irq_controller)
1007 mcp23s08_irq_teardown(data->mcp[addr]);
abdoulaye berthe9f5132a2014-07-12 22:30:12 +02001008 gpiochip_remove(&data->mcp[addr]->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001009 }
Varka Bhadramc4941e02015-04-07 21:34:40 +05301010
abdoulaye berthe9f5132a2014-07-12 22:30:12 +02001011 return 0;
David Brownelle58b9e22008-02-04 22:28:25 -08001012}
1013
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001014static const struct spi_device_id mcp23s08_ids[] = {
1015 { "mcp23s08", MCP_TYPE_S08 },
1016 { "mcp23s17", MCP_TYPE_S17 },
1017 { },
1018};
1019MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
1020
David Brownelle58b9e22008-02-04 22:28:25 -08001021static struct spi_driver mcp23s08_driver = {
1022 .probe = mcp23s08_probe,
1023 .remove = mcp23s08_remove,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001024 .id_table = mcp23s08_ids,
David Brownelle58b9e22008-02-04 22:28:25 -08001025 .driver = {
1026 .name = "mcp23s08",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001027 .of_match_table = of_match_ptr(mcp23s08_spi_of_match),
David Brownelle58b9e22008-02-04 22:28:25 -08001028 },
1029};
1030
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001031static int __init mcp23s08_spi_init(void)
1032{
1033 return spi_register_driver(&mcp23s08_driver);
1034}
1035
1036static void mcp23s08_spi_exit(void)
1037{
1038 spi_unregister_driver(&mcp23s08_driver);
1039}
1040
1041#else
1042
1043static int __init mcp23s08_spi_init(void) { return 0; }
1044static void mcp23s08_spi_exit(void) { }
1045
1046#endif /* CONFIG_SPI_MASTER */
1047
David Brownelle58b9e22008-02-04 22:28:25 -08001048/*----------------------------------------------------------------------*/
1049
1050static int __init mcp23s08_init(void)
1051{
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001052 int ret;
1053
1054 ret = mcp23s08_spi_init();
1055 if (ret)
1056 goto spi_fail;
1057
1058 ret = mcp23s08_i2c_init();
1059 if (ret)
1060 goto i2c_fail;
1061
1062 return 0;
1063
1064 i2c_fail:
1065 mcp23s08_spi_exit();
1066 spi_fail:
1067 return ret;
David Brownelle58b9e22008-02-04 22:28:25 -08001068}
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001069/* register after spi/i2c postcore initcall and before
David Brownell673c0c02008-10-15 22:02:46 -07001070 * subsys initcalls that may rely on these GPIOs
1071 */
1072subsys_initcall(mcp23s08_init);
David Brownelle58b9e22008-02-04 22:28:25 -08001073
1074static void __exit mcp23s08_exit(void)
1075{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001076 mcp23s08_spi_exit();
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001077 mcp23s08_i2c_exit();
David Brownelle58b9e22008-02-04 22:28:25 -08001078}
1079module_exit(mcp23s08_exit);
1080
1081MODULE_LICENSE("GPL");