blob: 47e486910aab8c92238f1bffed9e8e189c9a633b [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
Phil Reid28c5a412016-03-01 14:25:41 +080034#define MCP_TYPE_S18 4
David Brownelle58b9e22008-02-04 22:28:25 -080035
36/* Registers are all 8 bits wide.
37 *
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.
David Brownelle58b9e22008-02-04 22:28:25 -080040 */
41#define MCP_IODIR 0x00 /* init/reset: all ones */
42#define MCP_IPOL 0x01
43#define MCP_GPINTEN 0x02
44#define MCP_DEFVAL 0x03
45#define MCP_INTCON 0x04
46#define MCP_IOCON 0x05
Lars Poeschel4e47f912014-01-16 11:44:15 +010047# define IOCON_MIRROR (1 << 6)
David Brownelle58b9e22008-02-04 22:28:25 -080048# define IOCON_SEQOP (1 << 5)
49# define IOCON_HAEN (1 << 3)
50# define IOCON_ODR (1 << 2)
51# define IOCON_INTPOL (1 << 1)
Phil Reid35396992016-03-15 15:46:30 +080052# define IOCON_INTCC (1)
David Brownelle58b9e22008-02-04 22:28:25 -080053#define MCP_GPPU 0x06
54#define MCP_INTF 0x07
55#define MCP_INTCAP 0x08
56#define MCP_GPIO 0x09
57#define MCP_OLAT 0x0a
58
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010059struct mcp23s08;
60
61struct mcp23s08_ops {
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);
66};
67
David Brownelle58b9e22008-02-04 22:28:25 -080068struct mcp23s08 {
David Brownelle58b9e22008-02-04 22:28:25 -080069 u8 addr;
Alexander Steina4e63552014-12-01 08:26:00 +010070 bool irq_active_high;
David Brownelle58b9e22008-02-04 22:28:25 -080071
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010072 u16 cache[11];
Lars Poeschel4e47f912014-01-16 11:44:15 +010073 u16 irq_rise;
74 u16 irq_fall;
75 int irq;
76 bool irq_controller;
David Brownelle58b9e22008-02-04 22:28:25 -080077 /* lock protects the cached values */
78 struct mutex lock;
Lars Poeschel4e47f912014-01-16 11:44:15 +010079 struct mutex irq_lock;
80 struct irq_domain *irq_domain;
David Brownelle58b9e22008-02-04 22:28:25 -080081
82 struct gpio_chip chip;
83
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010084 const struct mcp23s08_ops *ops;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +020085 void *data; /* ops specific data */
David Brownelle58b9e22008-02-04 22:28:25 -080086};
87
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010088/* A given spi_device can represent up to eight mcp23sxx chips
David Brownell8f1cc3b2008-07-25 01:46:09 -070089 * 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.
92 */
93struct mcp23s08_driver_data {
94 unsigned ngpio;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010095 struct mcp23s08 *mcp[8];
David Brownell8f1cc3b2008-07-25 01:46:09 -070096 struct mcp23s08 chip[];
97};
98
Lars Poeschel4e47f912014-01-16 11:44:15 +010099/* This lock class tells lockdep that GPIO irqs are in a different
100 * category than their parents, so it won't report false recursion.
101 */
102static struct lock_class_key gpio_lock_class;
103
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200104/*----------------------------------------------------------------------*/
105
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500106#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200107
108static int mcp23008_read(struct mcp23s08 *mcp, unsigned reg)
109{
110 return i2c_smbus_read_byte_data(mcp->data, reg);
111}
112
113static int mcp23008_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
114{
115 return i2c_smbus_write_byte_data(mcp->data, reg, val);
116}
117
118static int
119mcp23008_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
120{
121 while (n--) {
122 int ret = mcp23008_read(mcp, reg++);
123 if (ret < 0)
124 return ret;
125 *vals++ = ret;
126 }
127
128 return 0;
129}
130
131static int mcp23017_read(struct mcp23s08 *mcp, unsigned reg)
132{
133 return i2c_smbus_read_word_data(mcp->data, reg << 1);
134}
135
136static int mcp23017_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
137{
138 return i2c_smbus_write_word_data(mcp->data, reg << 1, val);
139}
140
141static int
142mcp23017_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
143{
144 while (n--) {
145 int ret = mcp23017_read(mcp, reg++);
146 if (ret < 0)
147 return ret;
148 *vals++ = ret;
149 }
150
151 return 0;
152}
153
154static const struct mcp23s08_ops mcp23008_ops = {
155 .read = mcp23008_read,
156 .write = mcp23008_write,
157 .read_regs = mcp23008_read_regs,
158};
159
160static const struct mcp23s08_ops mcp23017_ops = {
161 .read = mcp23017_read,
162 .write = mcp23017_write,
163 .read_regs = mcp23017_read_regs,
164};
165
166#endif /* CONFIG_I2C */
167
168/*----------------------------------------------------------------------*/
169
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200170#ifdef CONFIG_SPI_MASTER
171
David Brownelle58b9e22008-02-04 22:28:25 -0800172static int mcp23s08_read(struct mcp23s08 *mcp, unsigned reg)
173{
174 u8 tx[2], rx[1];
175 int status;
176
177 tx[0] = mcp->addr | 0x01;
178 tx[1] = reg;
Gary Servin33bc8412014-03-06 20:25:26 -0300179 status = spi_write_then_read(mcp->data, tx, sizeof(tx), rx, sizeof(rx));
David Brownelle58b9e22008-02-04 22:28:25 -0800180 return (status < 0) ? status : rx[0];
181}
182
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100183static int mcp23s08_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
David Brownelle58b9e22008-02-04 22:28:25 -0800184{
185 u8 tx[3];
186
187 tx[0] = mcp->addr;
188 tx[1] = reg;
189 tx[2] = val;
Gary Servin33bc8412014-03-06 20:25:26 -0300190 return spi_write_then_read(mcp->data, tx, sizeof(tx), NULL, 0);
David Brownelle58b9e22008-02-04 22:28:25 -0800191}
192
193static int
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100194mcp23s08_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
David Brownelle58b9e22008-02-04 22:28:25 -0800195{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100196 u8 tx[2], *tmp;
197 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800198
Gary Servin33bc8412014-03-06 20:25:26 -0300199 if ((n + reg) > sizeof(mcp->cache))
David Brownelle58b9e22008-02-04 22:28:25 -0800200 return -EINVAL;
201 tx[0] = mcp->addr | 0x01;
202 tx[1] = reg;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100203
204 tmp = (u8 *)vals;
Gary Servin33bc8412014-03-06 20:25:26 -0300205 status = spi_write_then_read(mcp->data, tx, sizeof(tx), tmp, n);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100206 if (status >= 0) {
207 while (n--)
208 vals[n] = tmp[n]; /* expand to 16bit */
209 }
210 return status;
David Brownelle58b9e22008-02-04 22:28:25 -0800211}
212
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100213static int mcp23s17_read(struct mcp23s08 *mcp, unsigned reg)
214{
215 u8 tx[2], rx[2];
216 int status;
217
218 tx[0] = mcp->addr | 0x01;
219 tx[1] = reg << 1;
Gary Servin33bc8412014-03-06 20:25:26 -0300220 status = spi_write_then_read(mcp->data, tx, sizeof(tx), rx, sizeof(rx));
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100221 return (status < 0) ? status : (rx[0] | (rx[1] << 8));
222}
223
224static int mcp23s17_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
225{
226 u8 tx[4];
227
228 tx[0] = mcp->addr;
229 tx[1] = reg << 1;
230 tx[2] = val;
231 tx[3] = val >> 8;
Gary Servin33bc8412014-03-06 20:25:26 -0300232 return spi_write_then_read(mcp->data, tx, sizeof(tx), NULL, 0);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100233}
234
235static int
236mcp23s17_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
237{
238 u8 tx[2];
239 int status;
240
Gary Servin33bc8412014-03-06 20:25:26 -0300241 if ((n + reg) > sizeof(mcp->cache))
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100242 return -EINVAL;
243 tx[0] = mcp->addr | 0x01;
244 tx[1] = reg << 1;
245
Gary Servin33bc8412014-03-06 20:25:26 -0300246 status = spi_write_then_read(mcp->data, tx, sizeof(tx),
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100247 (u8 *)vals, n * 2);
248 if (status >= 0) {
249 while (n--)
250 vals[n] = __le16_to_cpu((__le16)vals[n]);
251 }
252
253 return status;
254}
255
256static const struct mcp23s08_ops mcp23s08_ops = {
257 .read = mcp23s08_read,
258 .write = mcp23s08_write,
259 .read_regs = mcp23s08_read_regs,
260};
261
262static const struct mcp23s08_ops mcp23s17_ops = {
263 .read = mcp23s17_read,
264 .write = mcp23s17_write,
265 .read_regs = mcp23s17_read_regs,
266};
267
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200268#endif /* CONFIG_SPI_MASTER */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100269
David Brownelle58b9e22008-02-04 22:28:25 -0800270/*----------------------------------------------------------------------*/
271
272static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
273{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100274 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800275 int status;
276
277 mutex_lock(&mcp->lock);
278 mcp->cache[MCP_IODIR] |= (1 << offset);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100279 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800280 mutex_unlock(&mcp->lock);
281 return status;
282}
283
284static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
285{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100286 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800287 int status;
288
289 mutex_lock(&mcp->lock);
290
291 /* REVISIT reading this clears any IRQ ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100292 status = mcp->ops->read(mcp, MCP_GPIO);
David Brownelle58b9e22008-02-04 22:28:25 -0800293 if (status < 0)
294 status = 0;
295 else {
296 mcp->cache[MCP_GPIO] = status;
297 status = !!(status & (1 << offset));
298 }
299 mutex_unlock(&mcp->lock);
300 return status;
301}
302
303static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, int value)
304{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100305 unsigned olat = mcp->cache[MCP_OLAT];
David Brownelle58b9e22008-02-04 22:28:25 -0800306
307 if (value)
308 olat |= mask;
309 else
310 olat &= ~mask;
311 mcp->cache[MCP_OLAT] = olat;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100312 return mcp->ops->write(mcp, MCP_OLAT, olat);
David Brownelle58b9e22008-02-04 22:28:25 -0800313}
314
315static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
316{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100317 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100318 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800319
320 mutex_lock(&mcp->lock);
321 __mcp23s08_set(mcp, mask, value);
322 mutex_unlock(&mcp->lock);
323}
324
325static int
326mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
327{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100328 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100329 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800330 int status;
331
332 mutex_lock(&mcp->lock);
333 status = __mcp23s08_set(mcp, mask, value);
334 if (status == 0) {
335 mcp->cache[MCP_IODIR] &= ~mask;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100336 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800337 }
338 mutex_unlock(&mcp->lock);
339 return status;
340}
341
342/*----------------------------------------------------------------------*/
Lars Poeschel4e47f912014-01-16 11:44:15 +0100343static irqreturn_t mcp23s08_irq(int irq, void *data)
344{
345 struct mcp23s08 *mcp = data;
346 int intcap, intf, i;
347 unsigned int child_irq;
348
349 mutex_lock(&mcp->lock);
350 intf = mcp->ops->read(mcp, MCP_INTF);
351 if (intf < 0) {
352 mutex_unlock(&mcp->lock);
353 return IRQ_HANDLED;
354 }
355
356 mcp->cache[MCP_INTF] = intf;
357
358 intcap = mcp->ops->read(mcp, MCP_INTCAP);
359 if (intcap < 0) {
360 mutex_unlock(&mcp->lock);
361 return IRQ_HANDLED;
362 }
363
364 mcp->cache[MCP_INTCAP] = intcap;
365 mutex_unlock(&mcp->lock);
366
367
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);
374 }
375 }
376
377 return IRQ_HANDLED;
378}
379
380static int mcp23s08_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
381{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100382 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100383
384 return irq_find_mapping(mcp->irq_domain, offset);
385}
386
387static void mcp23s08_irq_mask(struct irq_data *data)
388{
389 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
390 unsigned int pos = data->hwirq;
391
392 mcp->cache[MCP_GPINTEN] &= ~BIT(pos);
393}
394
395static void mcp23s08_irq_unmask(struct irq_data *data)
396{
397 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
398 unsigned int pos = data->hwirq;
399
400 mcp->cache[MCP_GPINTEN] |= BIT(pos);
401}
402
403static int mcp23s08_irq_set_type(struct irq_data *data, unsigned int type)
404{
405 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
406 unsigned int pos = data->hwirq;
407 int status = 0;
408
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);
421 } else
422 return -EINVAL;
423
424 return status;
425}
426
427static void mcp23s08_irq_bus_lock(struct irq_data *data)
428{
429 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
430
431 mutex_lock(&mcp->irq_lock);
432}
433
434static void mcp23s08_irq_bus_unlock(struct irq_data *data)
435{
436 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
437
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);
444}
445
Linus Walleij57ef0422014-03-14 18:16:20 +0100446static int mcp23s08_irq_reqres(struct irq_data *data)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100447{
448 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
449
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900450 if (gpiochip_lock_as_irq(&mcp->chip, data->hwirq)) {
Linus Walleij58383c72015-11-04 09:56:26 +0100451 dev_err(mcp->chip.parent,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100452 "unable to lock HW IRQ %lu for IRQ usage\n",
453 data->hwirq);
Linus Walleij57ef0422014-03-14 18:16:20 +0100454 return -EINVAL;
455 }
Lars Poeschel4e47f912014-01-16 11:44:15 +0100456
Lars Poeschel4e47f912014-01-16 11:44:15 +0100457 return 0;
458}
459
Linus Walleij57ef0422014-03-14 18:16:20 +0100460static void mcp23s08_irq_relres(struct irq_data *data)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100461{
462 struct mcp23s08 *mcp = irq_data_get_irq_chip_data(data);
463
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900464 gpiochip_unlock_as_irq(&mcp->chip, data->hwirq);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100465}
466
467static 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,
Linus Walleij57ef0422014-03-14 18:16:20 +0100474 .irq_request_resources = mcp23s08_irq_reqres,
475 .irq_release_resources = mcp23s08_irq_relres,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100476};
477
478static int mcp23s08_irq_setup(struct mcp23s08 *mcp)
479{
480 struct gpio_chip *chip = &mcp->chip;
481 int err, irq, j;
Alexander Steina4e63552014-12-01 08:26:00 +0100482 unsigned long irqflags = IRQF_ONESHOT | IRQF_SHARED;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100483
484 mutex_init(&mcp->irq_lock);
485
Linus Walleij58383c72015-11-04 09:56:26 +0100486 mcp->irq_domain = irq_domain_add_linear(chip->parent->of_node,
487 chip->ngpio,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100488 &irq_domain_simple_ops, mcp);
489 if (!mcp->irq_domain)
490 return -ENODEV;
491
Alexander Steina4e63552014-12-01 08:26:00 +0100492 if (mcp->irq_active_high)
493 irqflags |= IRQF_TRIGGER_HIGH;
494 else
495 irqflags |= IRQF_TRIGGER_LOW;
496
Linus Walleij58383c72015-11-04 09:56:26 +0100497 err = devm_request_threaded_irq(chip->parent, mcp->irq, NULL,
498 mcp23s08_irq,
499 irqflags, dev_name(chip->parent), mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100500 if (err != 0) {
Linus Walleij58383c72015-11-04 09:56:26 +0100501 dev_err(chip->parent, "unable to request IRQ#%d: %d\n",
Lars Poeschel4e47f912014-01-16 11:44:15 +0100502 mcp->irq, err);
503 return err;
504 }
505
506 chip->to_irq = mcp23s08_gpio_to_irq;
507
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);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100514 irq_set_noprobe(irq);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100515 }
516 return 0;
517}
518
519static void mcp23s08_irq_teardown(struct mcp23s08 *mcp)
520{
521 unsigned int irq, i;
522
Lars Poeschel4e47f912014-01-16 11:44:15 +0100523 for (i = 0; i < mcp->chip.ngpio; i++) {
524 irq = irq_find_mapping(mcp->irq_domain, i);
525 if (irq > 0)
526 irq_dispose_mapping(irq);
527 }
528
529 irq_domain_remove(mcp->irq_domain);
530}
531
532/*----------------------------------------------------------------------*/
David Brownelle58b9e22008-02-04 22:28:25 -0800533
534#ifdef CONFIG_DEBUG_FS
535
536#include <linux/seq_file.h>
537
538/*
539 * This shows more info than the generic gpio dump code:
540 * pullups, deglitching, open drain drive.
541 */
542static void mcp23s08_dbg_show(struct seq_file *s, struct gpio_chip *chip)
543{
544 struct mcp23s08 *mcp;
545 char bank;
Roel Kluin1d1c1d92008-05-23 13:04:43 -0700546 int t;
David Brownelle58b9e22008-02-04 22:28:25 -0800547 unsigned mask;
548
Linus Walleij9e03cf02015-12-07 10:09:36 +0100549 mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800550
551 /* NOTE: we only handle one bank for now ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100552 bank = '0' + ((mcp->addr >> 1) & 0x7);
David Brownelle58b9e22008-02-04 22:28:25 -0800553
554 mutex_lock(&mcp->lock);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100555 t = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800556 if (t < 0) {
557 seq_printf(s, " I/O ERROR %d\n", t);
558 goto done;
559 }
560
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100561 for (t = 0, mask = 1; t < chip->ngpio; t++, mask <<= 1) {
David Brownelle58b9e22008-02-04 22:28:25 -0800562 const char *label;
563
564 label = gpiochip_is_requested(chip, t);
565 if (!label)
566 continue;
567
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",
Peter Korsgaardeb1567f2012-04-25 11:51:53 +0200572 (mcp->cache[MCP_GPPU] & mask) ? "up" : " ");
David Brownelle58b9e22008-02-04 22:28:25 -0800573 /* NOTE: ignoring the irq-related registers */
Gary Servin33bc8412014-03-06 20:25:26 -0300574 seq_puts(s, "\n");
David Brownelle58b9e22008-02-04 22:28:25 -0800575 }
576done:
577 mutex_unlock(&mcp->lock);
578}
579
580#else
581#define mcp23s08_dbg_show NULL
582#endif
583
584/*----------------------------------------------------------------------*/
585
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200586static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100587 void *data, unsigned addr, unsigned type,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800588 struct mcp23s08_platform_data *pdata, int cs)
David Brownelle58b9e22008-02-04 22:28:25 -0800589{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200590 int status;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100591 bool mirror = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800592
David Brownelle58b9e22008-02-04 22:28:25 -0800593 mutex_init(&mcp->lock);
594
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200595 mcp->data = data;
596 mcp->addr = addr;
Alexander Steina4e63552014-12-01 08:26:00 +0100597 mcp->irq_active_high = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800598
David Brownelle58b9e22008-02-04 22:28:25 -0800599 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;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200604#ifdef CONFIG_OF
605 mcp->chip.of_gpio_n_cells = 2;
606 mcp->chip.of_node = dev->of_node;
607#endif
David Brownelle58b9e22008-02-04 22:28:25 -0800608
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200609 switch (type) {
610#ifdef CONFIG_SPI_MASTER
611 case MCP_TYPE_S08:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100612 mcp->ops = &mcp23s08_ops;
613 mcp->chip.ngpio = 8;
614 mcp->chip.label = "mcp23s08";
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200615 break;
616
617 case MCP_TYPE_S17:
618 mcp->ops = &mcp23s17_ops;
619 mcp->chip.ngpio = 16;
620 mcp->chip.label = "mcp23s17";
621 break;
Phil Reid28c5a412016-03-01 14:25:41 +0800622
623 case MCP_TYPE_S18:
624 mcp->ops = &mcp23s17_ops;
625 mcp->chip.ngpio = 16;
626 mcp->chip.label = "mcp23s18";
627 break;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200628#endif /* CONFIG_SPI_MASTER */
629
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500630#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200631 case MCP_TYPE_008:
632 mcp->ops = &mcp23008_ops;
633 mcp->chip.ngpio = 8;
634 mcp->chip.label = "mcp23008";
635 break;
636
637 case MCP_TYPE_017:
638 mcp->ops = &mcp23017_ops;
639 mcp->chip.ngpio = 16;
640 mcp->chip.label = "mcp23017";
641 break;
642#endif /* CONFIG_I2C */
643
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200644 default:
645 dev_err(dev, "invalid device type (%d)\n", type);
646 return -EINVAL;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100647 }
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200648
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800649 mcp->chip.base = pdata->base;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100650 mcp->chip.can_sleep = true;
Linus Walleij58383c72015-11-04 09:56:26 +0100651 mcp->chip.parent = dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700652 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800653
David Brownell8f1cc3b2008-07-25 01:46:09 -0700654 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
655 * and MCP_IOCON.HAEN = 1, so we work with all chips.
656 */
Lars Poeschel4e47f912014-01-16 11:44:15 +0100657
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100658 status = mcp->ops->read(mcp, MCP_IOCON);
David Brownelle58b9e22008-02-04 22:28:25 -0800659 if (status < 0)
660 goto fail;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100661
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800662 mcp->irq_controller = pdata->irq_controller;
Alexander Steina4e63552014-12-01 08:26:00 +0100663 if (mcp->irq && mcp->irq_controller) {
Linus Walleij170680a2014-12-12 11:22:11 +0100664 mcp->irq_active_high =
Linus Walleij58383c72015-11-04 09:56:26 +0100665 of_property_read_bool(mcp->chip.parent->of_node,
Linus Walleij170680a2014-12-12 11:22:11 +0100666 "microchip,irq-active-high");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100667
Phil Reid28c5a412016-03-01 14:25:41 +0800668 mirror = pdata->mirror;
Alexander Steina4e63552014-12-01 08:26:00 +0100669 }
670
671 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN) || mirror ||
672 mcp->irq_active_high) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100673 /* mcp23s17 has IOCON twice, make sure they are in sync */
674 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
675 status |= IOCON_HAEN | (IOCON_HAEN << 8);
Alexander Steina4e63552014-12-01 08:26:00 +0100676 if (mcp->irq_active_high)
677 status |= IOCON_INTPOL | (IOCON_INTPOL << 8);
678 else
679 status &= ~(IOCON_INTPOL | (IOCON_INTPOL << 8));
680
Lars Poeschel4e47f912014-01-16 11:44:15 +0100681 if (mirror)
682 status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
683
Phil Reid35396992016-03-15 15:46:30 +0800684 if (type == MCP_TYPE_S18)
685 status |= IOCON_INTCC | (IOCON_INTCC << 8);
686
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100687 status = mcp->ops->write(mcp, MCP_IOCON, status);
David Brownelle58b9e22008-02-04 22:28:25 -0800688 if (status < 0)
689 goto fail;
690 }
691
692 /* configure ~100K pullups */
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800693 status = mcp->ops->write(mcp, MCP_GPPU, pdata->chip[cs].pullups);
David Brownelle58b9e22008-02-04 22:28:25 -0800694 if (status < 0)
695 goto fail;
696
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100697 status = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800698 if (status < 0)
699 goto fail;
700
701 /* disable inverter on input */
702 if (mcp->cache[MCP_IPOL] != 0) {
703 mcp->cache[MCP_IPOL] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100704 status = mcp->ops->write(mcp, MCP_IPOL, 0);
705 if (status < 0)
706 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800707 }
708
709 /* disable irqs */
710 if (mcp->cache[MCP_GPINTEN] != 0) {
711 mcp->cache[MCP_GPINTEN] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100712 status = mcp->ops->write(mcp, MCP_GPINTEN, 0);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700713 if (status < 0)
714 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800715 }
716
Linus Walleij9e03cf02015-12-07 10:09:36 +0100717 status = gpiochip_add_data(&mcp->chip, mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100718 if (status < 0)
719 goto fail;
720
721 if (mcp->irq && mcp->irq_controller) {
722 status = mcp23s08_irq_setup(mcp);
723 if (status) {
724 mcp23s08_irq_teardown(mcp);
725 goto fail;
726 }
727 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700728fail:
729 if (status < 0)
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200730 dev_dbg(dev, "can't setup chip %d, --> %d\n",
731 addr, status);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700732 return status;
733}
734
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200735/*----------------------------------------------------------------------*/
736
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200737#ifdef CONFIG_OF
738#ifdef CONFIG_SPI_MASTER
Jingoo Hanac791802014-05-07 18:05:17 +0900739static const struct of_device_id mcp23s08_spi_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200740 {
Lars Poeschel45971682013-08-28 10:38:50 +0200741 .compatible = "microchip,mcp23s08",
742 .data = (void *) MCP_TYPE_S08,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200743 },
744 {
Lars Poeschel45971682013-08-28 10:38:50 +0200745 .compatible = "microchip,mcp23s17",
746 .data = (void *) MCP_TYPE_S17,
747 },
Phil Reid28c5a412016-03-01 14:25:41 +0800748 {
749 .compatible = "microchip,mcp23s18",
750 .data = (void *) MCP_TYPE_S18,
751 },
Lars Poeschel45971682013-08-28 10:38:50 +0200752/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
753 {
754 .compatible = "mcp,mcp23s08",
755 .data = (void *) MCP_TYPE_S08,
756 },
757 {
758 .compatible = "mcp,mcp23s17",
759 .data = (void *) MCP_TYPE_S17,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200760 },
761 { },
762};
763MODULE_DEVICE_TABLE(of, mcp23s08_spi_of_match);
764#endif
765
766#if IS_ENABLED(CONFIG_I2C)
Jingoo Hanac791802014-05-07 18:05:17 +0900767static const struct of_device_id mcp23s08_i2c_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200768 {
Lars Poeschel45971682013-08-28 10:38:50 +0200769 .compatible = "microchip,mcp23008",
770 .data = (void *) MCP_TYPE_008,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200771 },
772 {
Lars Poeschel45971682013-08-28 10:38:50 +0200773 .compatible = "microchip,mcp23017",
774 .data = (void *) MCP_TYPE_017,
775 },
776/* NOTE: The use of the mcp prefix is deprecated and will be removed. */
777 {
778 .compatible = "mcp,mcp23008",
779 .data = (void *) MCP_TYPE_008,
780 },
781 {
782 .compatible = "mcp,mcp23017",
783 .data = (void *) MCP_TYPE_017,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200784 },
785 { },
786};
787MODULE_DEVICE_TABLE(of, mcp23s08_i2c_of_match);
788#endif
789#endif /* CONFIG_OF */
790
791
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500792#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200793
Bill Pemberton38363092012-11-19 13:22:34 -0500794static int mcp230xx_probe(struct i2c_client *client,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200795 const struct i2c_device_id *id)
796{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800797 struct mcp23s08_platform_data *pdata, local_pdata;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200798 struct mcp23s08 *mcp;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800799 int status;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200800 const struct of_device_id *match;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200801
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200802 match = of_match_device(of_match_ptr(mcp23s08_i2c_of_match),
803 &client->dev);
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800804 if (match) {
805 pdata = &local_pdata;
806 pdata->base = -1;
807 pdata->chip[0].pullups = 0;
808 pdata->irq_controller = of_property_read_bool(
809 client->dev.of_node,
810 "interrupt-controller");
811 pdata->mirror = of_property_read_bool(client->dev.of_node,
812 "microchip,irq-mirror");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100813 client->irq = irq_of_parse_and_map(client->dev.of_node, 0);
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200814 } else {
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800815 pdata = dev_get_platdata(&client->dev);
Sonic Zhangb184c382015-01-20 17:00:08 +0800816 if (!pdata) {
817 pdata = devm_kzalloc(&client->dev,
818 sizeof(struct mcp23s08_platform_data),
819 GFP_KERNEL);
Insu Yunaaf2b3a2016-02-15 21:19:57 -0500820 if (!pdata)
821 return -ENOMEM;
Sonic Zhangb184c382015-01-20 17:00:08 +0800822 pdata->base = -1;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200823 }
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200824 }
825
Gary Servin33bc8412014-03-06 20:25:26 -0300826 mcp = kzalloc(sizeof(*mcp), GFP_KERNEL);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200827 if (!mcp)
828 return -ENOMEM;
829
Lars Poeschel4e47f912014-01-16 11:44:15 +0100830 mcp->irq = client->irq;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200831 status = mcp23s08_probe_one(mcp, &client->dev, client, client->addr,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800832 id->driver_data, pdata, 0);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200833 if (status)
834 goto fail;
835
836 i2c_set_clientdata(client, mcp);
837
838 return 0;
839
840fail:
841 kfree(mcp);
842
843 return status;
844}
845
Bill Pemberton206210c2012-11-19 13:25:50 -0500846static int mcp230xx_remove(struct i2c_client *client)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200847{
848 struct mcp23s08 *mcp = i2c_get_clientdata(client);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200849
Lars Poeschel4e47f912014-01-16 11:44:15 +0100850 if (client->irq && mcp->irq_controller)
851 mcp23s08_irq_teardown(mcp);
852
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200853 gpiochip_remove(&mcp->chip);
854 kfree(mcp);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200855
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200856 return 0;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200857}
858
859static const struct i2c_device_id mcp230xx_id[] = {
860 { "mcp23008", MCP_TYPE_008 },
861 { "mcp23017", MCP_TYPE_017 },
862 { },
863};
864MODULE_DEVICE_TABLE(i2c, mcp230xx_id);
865
866static struct i2c_driver mcp230xx_driver = {
867 .driver = {
868 .name = "mcp230xx",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200869 .of_match_table = of_match_ptr(mcp23s08_i2c_of_match),
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200870 },
871 .probe = mcp230xx_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500872 .remove = mcp230xx_remove,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200873 .id_table = mcp230xx_id,
874};
875
876static int __init mcp23s08_i2c_init(void)
877{
878 return i2c_add_driver(&mcp230xx_driver);
879}
880
881static void mcp23s08_i2c_exit(void)
882{
883 i2c_del_driver(&mcp230xx_driver);
884}
885
886#else
887
888static int __init mcp23s08_i2c_init(void) { return 0; }
889static void mcp23s08_i2c_exit(void) { }
890
891#endif /* CONFIG_I2C */
892
893/*----------------------------------------------------------------------*/
894
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200895#ifdef CONFIG_SPI_MASTER
896
David Brownell8f1cc3b2008-07-25 01:46:09 -0700897static int mcp23s08_probe(struct spi_device *spi)
898{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800899 struct mcp23s08_platform_data *pdata, local_pdata;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700900 unsigned addr;
Linus Walleij596a1c52014-05-28 09:14:06 +0200901 int chips = 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700902 struct mcp23s08_driver_data *data;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100903 int status, type;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800904 unsigned ngpio = 0;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200905 const struct of_device_id *match;
906 u32 spi_present_mask = 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700907
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200908 match = of_match_device(of_match_ptr(mcp23s08_spi_of_match), &spi->dev);
909 if (match) {
SeongJae Parkde755c32014-01-18 13:53:04 +0900910 type = (int)(uintptr_t)match->data;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200911 status = of_property_read_u32(spi->dev.of_node,
Lars Poeschel45971682013-08-28 10:38:50 +0200912 "microchip,spi-present-mask", &spi_present_mask);
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200913 if (status) {
Lars Poeschel45971682013-08-28 10:38:50 +0200914 status = of_property_read_u32(spi->dev.of_node,
915 "mcp,spi-present-mask", &spi_present_mask);
916 if (status) {
917 dev_err(&spi->dev,
918 "DT has no spi-present-mask\n");
919 return -ENODEV;
920 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200921 }
922 if ((spi_present_mask <= 0) || (spi_present_mask >= 256)) {
923 dev_err(&spi->dev, "invalid spi-present-mask\n");
924 return -ENODEV;
925 }
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100926
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800927 pdata = &local_pdata;
928 pdata->base = -1;
Michael Welling99e4b982014-04-16 20:00:24 -0500929 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800930 pdata->chip[addr].pullups = 0;
Michael Stickel3e3bed92014-05-26 10:03:16 +0200931 if (spi_present_mask & (1 << addr))
932 chips++;
Michael Welling99e4b982014-04-16 20:00:24 -0500933 }
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800934 pdata->irq_controller = of_property_read_bool(
935 spi->dev.of_node,
936 "interrupt-controller");
937 pdata->mirror = of_property_read_bool(spi->dev.of_node,
938 "microchip,irq-mirror");
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200939 } else {
940 type = spi_get_device_id(spi)->driver_data;
Jingoo Hane56aee12013-07-30 17:08:05 +0900941 pdata = dev_get_platdata(&spi->dev);
Sonic Zhangb184c382015-01-20 17:00:08 +0800942 if (!pdata) {
943 pdata = devm_kzalloc(&spi->dev,
944 sizeof(struct mcp23s08_platform_data),
945 GFP_KERNEL);
946 pdata->base = -1;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100947 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200948
949 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
950 if (!pdata->chip[addr].is_present)
951 continue;
952 chips++;
953 if ((type == MCP_TYPE_S08) && (addr > 3)) {
954 dev_err(&spi->dev,
955 "mcp23s08 only supports address 0..3\n");
956 return -EINVAL;
957 }
958 spi_present_mask |= 1 << addr;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200959 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700960 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700961
Michael Welling99e4b982014-04-16 20:00:24 -0500962 if (!chips)
963 return -ENODEV;
964
Varka Bhadram7898b312015-03-31 09:49:08 +0530965 data = devm_kzalloc(&spi->dev,
966 sizeof(*data) + chips * sizeof(struct mcp23s08),
967 GFP_KERNEL);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700968 if (!data)
969 return -ENOMEM;
Varka Bhadram7898b312015-03-31 09:49:08 +0530970
David Brownell8f1cc3b2008-07-25 01:46:09 -0700971 spi_set_drvdata(spi, data);
972
Alexander Steina231b882014-11-17 09:38:10 +0100973 spi->irq = irq_of_parse_and_map(spi->dev.of_node, 0);
974
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100975 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200976 if (!(spi_present_mask & (1 << addr)))
David Brownell8f1cc3b2008-07-25 01:46:09 -0700977 continue;
978 chips--;
979 data->mcp[addr] = &data->chip[chips];
Alexander Steina231b882014-11-17 09:38:10 +0100980 data->mcp[addr]->irq = spi->irq;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200981 status = mcp23s08_probe_one(data->mcp[addr], &spi->dev, spi,
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800982 0x40 | (addr << 1), type, pdata,
983 addr);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700984 if (status < 0)
985 goto fail;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100986
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800987 if (pdata->base != -1)
Phil Reid28c5a412016-03-01 14:25:41 +0800988 pdata->base += data->mcp[addr]->chip.ngpio;
989 ngpio += data->mcp[addr]->chip.ngpio;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700990 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200991 data->ngpio = ngpio;
David Brownelle58b9e22008-02-04 22:28:25 -0800992
993 /* NOTE: these chips have a relatively sane IRQ framework, with
994 * per-signal masking and level/edge triggering. It's not yet
995 * handled here...
996 */
997
David Brownelle58b9e22008-02-04 22:28:25 -0800998 return 0;
999
1000fail:
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;
abdoulaye berthe9f5132a2014-07-12 22:30:12 +02001005 gpiochip_remove(&data->mcp[addr]->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001006 }
David Brownelle58b9e22008-02-04 22:28:25 -08001007 return status;
1008}
1009
1010static int mcp23s08_remove(struct spi_device *spi)
1011{
David Brownell8f1cc3b2008-07-25 01:46:09 -07001012 struct mcp23s08_driver_data *data = spi_get_drvdata(spi);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001013 unsigned addr;
David Brownelle58b9e22008-02-04 22:28:25 -08001014
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001015 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -07001016
1017 if (!data->mcp[addr])
1018 continue;
1019
Alexander Steina231b882014-11-17 09:38:10 +01001020 if (spi->irq && data->mcp[addr]->irq_controller)
1021 mcp23s08_irq_teardown(data->mcp[addr]);
abdoulaye berthe9f5132a2014-07-12 22:30:12 +02001022 gpiochip_remove(&data->mcp[addr]->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001023 }
Varka Bhadramc4941e02015-04-07 21:34:40 +05301024
abdoulaye berthe9f5132a2014-07-12 22:30:12 +02001025 return 0;
David Brownelle58b9e22008-02-04 22:28:25 -08001026}
1027
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001028static const struct spi_device_id mcp23s08_ids[] = {
1029 { "mcp23s08", MCP_TYPE_S08 },
1030 { "mcp23s17", MCP_TYPE_S17 },
Phil Reid28c5a412016-03-01 14:25:41 +08001031 { "mcp23s18", MCP_TYPE_S18 },
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001032 { },
1033};
1034MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
1035
David Brownelle58b9e22008-02-04 22:28:25 -08001036static struct spi_driver mcp23s08_driver = {
1037 .probe = mcp23s08_probe,
1038 .remove = mcp23s08_remove,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001039 .id_table = mcp23s08_ids,
David Brownelle58b9e22008-02-04 22:28:25 -08001040 .driver = {
1041 .name = "mcp23s08",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001042 .of_match_table = of_match_ptr(mcp23s08_spi_of_match),
David Brownelle58b9e22008-02-04 22:28:25 -08001043 },
1044};
1045
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001046static int __init mcp23s08_spi_init(void)
1047{
1048 return spi_register_driver(&mcp23s08_driver);
1049}
1050
1051static void mcp23s08_spi_exit(void)
1052{
1053 spi_unregister_driver(&mcp23s08_driver);
1054}
1055
1056#else
1057
1058static int __init mcp23s08_spi_init(void) { return 0; }
1059static void mcp23s08_spi_exit(void) { }
1060
1061#endif /* CONFIG_SPI_MASTER */
1062
David Brownelle58b9e22008-02-04 22:28:25 -08001063/*----------------------------------------------------------------------*/
1064
1065static int __init mcp23s08_init(void)
1066{
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001067 int ret;
1068
1069 ret = mcp23s08_spi_init();
1070 if (ret)
1071 goto spi_fail;
1072
1073 ret = mcp23s08_i2c_init();
1074 if (ret)
1075 goto i2c_fail;
1076
1077 return 0;
1078
1079 i2c_fail:
1080 mcp23s08_spi_exit();
1081 spi_fail:
1082 return ret;
David Brownelle58b9e22008-02-04 22:28:25 -08001083}
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001084/* register after spi/i2c postcore initcall and before
David Brownell673c0c02008-10-15 22:02:46 -07001085 * subsys initcalls that may rely on these GPIOs
1086 */
1087subsys_initcall(mcp23s08_init);
David Brownelle58b9e22008-02-04 22:28:25 -08001088
1089static void __exit mcp23s08_exit(void)
1090{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001091 mcp23s08_spi_exit();
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001092 mcp23s08_i2c_exit();
David Brownelle58b9e22008-02-04 22:28:25 -08001093}
1094module_exit(mcp23s08_exit);
1095
1096MODULE_LICENSE("GPL");