blob: 3e40d4245512e286166ac1b838567f6c55a881a0 [file] [log] [blame]
Sebastian Reicheld8f44942017-05-15 11:24:37 +02001/* MCP23S08 SPI/I2C GPIO driver */
David Brownelle58b9e22008-02-04 22:28:25 -08002
3#include <linux/kernel.h>
4#include <linux/device.h>
David Brownelle58b9e22008-02-04 22:28:25 -08005#include <linux/mutex.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -04006#include <linux/module.h>
H Hartley Sweetend120c172009-09-22 16:46:37 -07007#include <linux/gpio.h>
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02008#include <linux/i2c.h>
David Brownelle58b9e22008-02-04 22:28:25 -08009#include <linux/spi/spi.h>
10#include <linux/spi/mcp23s08.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010012#include <asm/byteorder.h>
Lars Poeschel4e47f912014-01-16 11:44:15 +010013#include <linux/interrupt.h>
Lars Poeschel97ddb1c2013-04-04 12:02:02 +020014#include <linux/of_device.h>
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010015#include <linux/regmap.h>
Sebastian Reichel82039d22017-05-15 11:24:26 +020016#include <linux/pinctrl/pinctrl.h>
17#include <linux/pinctrl/pinconf.h>
18#include <linux/pinctrl/pinconf-generic.h>
David Brownelle58b9e22008-02-04 22:28:25 -080019
Sebastian Reicheld8f44942017-05-15 11:24:37 +020020/*
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010021 * MCP types supported by driver
22 */
23#define MCP_TYPE_S08 0
24#define MCP_TYPE_S17 1
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020025#define MCP_TYPE_008 2
26#define MCP_TYPE_017 3
Phil Reid28c5a412016-03-01 14:25:41 +080027#define MCP_TYPE_S18 4
David Brownelle58b9e22008-02-04 22:28:25 -080028
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +020029#define MCP_MAX_DEV_PER_CS 8
30
David Brownelle58b9e22008-02-04 22:28:25 -080031/* 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.
David Brownelle58b9e22008-02-04 22:28:25 -080035 */
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
Lars Poeschel4e47f912014-01-16 11:44:15 +010042# define IOCON_MIRROR (1 << 6)
David Brownelle58b9e22008-02-04 22:28:25 -080043# define IOCON_SEQOP (1 << 5)
44# define IOCON_HAEN (1 << 3)
45# define IOCON_ODR (1 << 2)
46# define IOCON_INTPOL (1 << 1)
Phil Reid35396992016-03-15 15:46:30 +080047# define IOCON_INTCC (1)
David Brownelle58b9e22008-02-04 22:28:25 -080048#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
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010054struct mcp23s08;
55
David Brownelle58b9e22008-02-04 22:28:25 -080056struct mcp23s08 {
David Brownelle58b9e22008-02-04 22:28:25 -080057 u8 addr;
Alexander Steina4e63552014-12-01 08:26:00 +010058 bool irq_active_high;
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010059 bool reg_shift;
David Brownelle58b9e22008-02-04 22:28:25 -080060
Lars Poeschel4e47f912014-01-16 11:44:15 +010061 u16 irq_rise;
62 u16 irq_fall;
63 int irq;
64 bool irq_controller;
Sebastian Reichel8f389102017-05-15 11:24:28 +020065 int cached_gpio;
66 /* lock protects regmap access with bypass/cache flags */
David Brownelle58b9e22008-02-04 22:28:25 -080067 struct mutex lock;
David Brownelle58b9e22008-02-04 22:28:25 -080068
69 struct gpio_chip chip;
70
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010071 struct regmap *regmap;
72 struct device *dev;
Sebastian Reichel82039d22017-05-15 11:24:26 +020073
74 struct pinctrl_dev *pctldev;
75 struct pinctrl_desc pinctrl_desc;
David Brownelle58b9e22008-02-04 22:28:25 -080076};
77
Sebastian Reichel8f389102017-05-15 11:24:28 +020078static 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
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100109static const struct regmap_config mcp23x08_regmap = {
110 .reg_bits = 8,
111 .val_bits = 8,
112
113 .reg_stride = 1,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200114 .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,
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100119 .max_register = MCP_OLAT,
120};
121
Sebastian Reichel8f389102017-05-15 11:24:28 +0200122static 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
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100153static const struct regmap_config mcp23x17_regmap = {
154 .reg_bits = 8,
155 .val_bits = 16,
156
157 .reg_stride = 2,
158 .max_register = MCP_OLAT << 1,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200159 .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,
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100164 .val_format_endian = REGMAP_ENDIAN_LITTLE,
165};
166
Sebastian Reichel82039d22017-05-15 11:24:26 +0200167static 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
Sebastian Reichel8f389102017-05-15 11:24:28 +0200177static int mcp_set_mask(struct mcp23s08 *mcp, unsigned int reg,
178 unsigned int mask, bool enabled)
Sebastian Reichel82039d22017-05-15 11:24:26 +0200179{
180 u16 val = enabled ? 0xffff : 0x0000;
Sebastian Reichel82039d22017-05-15 11:24:26 +0200181 return regmap_update_bits(mcp->regmap, reg << mcp->reg_shift,
182 mask, val);
183}
184
Sebastian Reichel8f389102017-05-15 11:24:28 +0200185static int mcp_set_bit(struct mcp23s08 *mcp, unsigned int reg,
186 unsigned int pin, bool enabled)
Sebastian Reichel82039d22017-05-15 11:24:26 +0200187{
Sebastian Reichel8f389102017-05-15 11:24:28 +0200188 u16 mask = BIT(pin);
189 return mcp_set_mask(mcp, reg, mask, enabled);
Sebastian Reichel82039d22017-05-15 11:24:26 +0200190}
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
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100311/*----------------------------------------------------------------------*/
312
313#ifdef CONFIG_SPI_MASTER
314
315static int mcp23sxx_spi_write(void *context, const void *data, size_t count)
316{
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, }, };
322
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);
328}
329
330static int mcp23sxx_spi_gather_write(void *context,
331 const void *reg, size_t reg_size,
332 const void *val, size_t val_size)
333{
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);
347}
348
349static int mcp23sxx_spi_read(void *context, const void *reg, size_t reg_size,
350 void *val, size_t val_size)
351{
352 struct mcp23s08 *mcp = context;
353 struct spi_device *spi = to_spi_device(mcp->dev);
354 u8 tx[2];
355
356 if (reg_size != 1)
357 return -EINVAL;
358
359 tx[0] = mcp->addr | 0x01;
360 tx[1] = *((u8 *) reg);
361
362 return spi_write_then_read(spi, tx, sizeof(tx), val, val_size);
363}
364
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};
370
371#endif /* CONFIG_SPI_MASTER */
372
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100373/*----------------------------------------------------------------------*/
374
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100375/* A given spi_device can represent up to eight mcp23sxx chips
David Brownell8f1cc3b2008-07-25 01:46:09 -0700376 * 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;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100382 struct mcp23s08 *mcp[8];
David Brownell8f1cc3b2008-07-25 01:46:09 -0700383 struct mcp23s08 chip[];
384};
385
David Brownelle58b9e22008-02-04 22:28:25 -0800386
387static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
388{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100389 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800390 int status;
391
392 mutex_lock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200393 status = mcp_set_bit(mcp, MCP_IODIR, offset, true);
David Brownelle58b9e22008-02-04 22:28:25 -0800394 mutex_unlock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200395
David Brownelle58b9e22008-02-04 22:28:25 -0800396 return status;
397}
398
399static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
400{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100401 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100402 int status, ret;
David Brownelle58b9e22008-02-04 22:28:25 -0800403
404 mutex_lock(&mcp->lock);
405
406 /* REVISIT reading this clears any IRQ ... */
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100407 ret = mcp_read(mcp, MCP_GPIO, &status);
408 if (ret < 0)
David Brownelle58b9e22008-02-04 22:28:25 -0800409 status = 0;
Sebastian Reichel8f389102017-05-15 11:24:28 +0200410 else
David Brownelle58b9e22008-02-04 22:28:25 -0800411 status = !!(status & (1 << offset));
Sebastian Reichel8f389102017-05-15 11:24:28 +0200412
413 mcp->cached_gpio = status;
414
David Brownelle58b9e22008-02-04 22:28:25 -0800415 mutex_unlock(&mcp->lock);
416 return status;
417}
418
Sebastian Reichel8f389102017-05-15 11:24:28 +0200419static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, bool value)
David Brownelle58b9e22008-02-04 22:28:25 -0800420{
Sebastian Reichel8f389102017-05-15 11:24:28 +0200421 return mcp_set_mask(mcp, MCP_OLAT, mask, value);
David Brownelle58b9e22008-02-04 22:28:25 -0800422}
423
424static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
425{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100426 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200427 unsigned mask = BIT(offset);
David Brownelle58b9e22008-02-04 22:28:25 -0800428
429 mutex_lock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200430 __mcp23s08_set(mcp, mask, !!value);
David Brownelle58b9e22008-02-04 22:28:25 -0800431 mutex_unlock(&mcp->lock);
432}
433
434static int
435mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
436{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100437 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200438 unsigned mask = BIT(offset);
David Brownelle58b9e22008-02-04 22:28:25 -0800439 int status;
440
441 mutex_lock(&mcp->lock);
442 status = __mcp23s08_set(mcp, mask, value);
443 if (status == 0) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200444 status = mcp_set_mask(mcp, MCP_IODIR, mask, false);
David Brownelle58b9e22008-02-04 22:28:25 -0800445 }
446 mutex_unlock(&mcp->lock);
447 return status;
448}
449
450/*----------------------------------------------------------------------*/
Lars Poeschel4e47f912014-01-16 11:44:15 +0100451static irqreturn_t mcp23s08_irq(int irq, void *data)
452{
453 struct mcp23s08 *mcp = data;
Sebastian Reichel8f389102017-05-15 11:24:28 +0200454 int intcap, intcon, intf, i, gpio, gpio_orig, intcap_mask, defval;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100455 unsigned int child_irq;
Robert Middleton2cd29f22017-03-15 16:56:47 -0400456 bool intf_set, intcap_changed, gpio_bit_changed,
457 defval_changed, gpio_set;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100458
459 mutex_lock(&mcp->lock);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100460 if (mcp_read(mcp, MCP_INTF, &intf) < 0) {
Lars Poeschel4e47f912014-01-16 11:44:15 +0100461 mutex_unlock(&mcp->lock);
462 return IRQ_HANDLED;
463 }
464
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100465 if (mcp_read(mcp, MCP_INTCAP, &intcap) < 0) {
Lars Poeschel4e47f912014-01-16 11:44:15 +0100466 mutex_unlock(&mcp->lock);
467 return IRQ_HANDLED;
468 }
469
Sebastian Reichel8f389102017-05-15 11:24:28 +0200470 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 }
Robert Middleton2cd29f22017-03-15 16:56:47 -0400479
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 }
Sebastian Reichel8f389102017-05-15 11:24:28 +0200485 gpio_orig = mcp->cached_gpio;
486 mcp->cached_gpio = gpio;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100487 mutex_unlock(&mcp->lock);
488
Sebastian Reichel8f389102017-05-15 11:24:28 +0200489 if (intf == 0) {
Robert Middleton2cd29f22017-03-15 16:56:47 -0400490 /* 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);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100497
498 for (i = 0; i < mcp->chip.ngpio; i++) {
Robert Middleton2cd29f22017-03-15 16:56:47 -0400499 /* 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
Sebastian Reichel8f389102017-05-15 11:24:28 +0200517 intf_set = intf & BIT(i);
Robert Middleton2cd29f22017-03-15 16:56:47 -0400518 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 &
Sebastian Reichel8f389102017-05-15 11:24:28 +0200526 (intcap & BIT(i))) !=
Robert Middleton2cd29f22017-03-15 16:56:47 -0400527 (intcap_mask & (BIT(i) & gpio_orig));
Sebastian Reichel8f389102017-05-15 11:24:28 +0200528 gpio_set = BIT(i) & gpio;
Robert Middleton2cd29f22017-03-15 16:56:47 -0400529 gpio_bit_changed = (BIT(i) & gpio_orig) !=
Sebastian Reichel8f389102017-05-15 11:24:28 +0200530 (BIT(i) & gpio);
531 defval_changed = (BIT(i) & intcon) &&
532 ((BIT(i) & gpio) !=
533 (BIT(i) & defval));
Robert Middleton2cd29f22017-03-15 16:56:47 -0400534
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) {
Phil Reiddad3d272016-03-18 16:07:06 +0800540 child_irq = irq_find_mapping(mcp->chip.irqdomain, i);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100541 handle_nested_irq(child_irq);
542 }
543 }
544
545 return IRQ_HANDLED;
546}
547
Lars Poeschel4e47f912014-01-16 11:44:15 +0100548static void mcp23s08_irq_mask(struct irq_data *data)
549{
Phil Reiddad3d272016-03-18 16:07:06 +0800550 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
551 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100552 unsigned int pos = data->hwirq;
553
Sebastian Reichel8f389102017-05-15 11:24:28 +0200554 mcp_set_bit(mcp, MCP_GPINTEN, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100555}
556
557static void mcp23s08_irq_unmask(struct irq_data *data)
558{
Phil Reiddad3d272016-03-18 16:07:06 +0800559 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
560 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100561 unsigned int pos = data->hwirq;
562
Sebastian Reichel8f389102017-05-15 11:24:28 +0200563 mcp_set_bit(mcp, MCP_GPINTEN, pos, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100564}
565
566static int mcp23s08_irq_set_type(struct irq_data *data, unsigned int type)
567{
Phil Reiddad3d272016-03-18 16:07:06 +0800568 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
569 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100570 unsigned int pos = data->hwirq;
571 int status = 0;
572
573 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200574 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100575 mcp->irq_rise |= BIT(pos);
576 mcp->irq_fall |= BIT(pos);
577 } else if (type & IRQ_TYPE_EDGE_RISING) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200578 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100579 mcp->irq_rise |= BIT(pos);
580 mcp->irq_fall &= ~BIT(pos);
581 } else if (type & IRQ_TYPE_EDGE_FALLING) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200582 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100583 mcp->irq_rise &= ~BIT(pos);
584 mcp->irq_fall |= BIT(pos);
Alexander Stein16fe1ad2016-03-23 18:01:27 +0100585 } else if (type & IRQ_TYPE_LEVEL_HIGH) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200586 mcp_set_bit(mcp, MCP_INTCON, pos, true);
587 mcp_set_bit(mcp, MCP_DEFVAL, pos, false);
Alexander Stein16fe1ad2016-03-23 18:01:27 +0100588 } else if (type & IRQ_TYPE_LEVEL_LOW) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200589 mcp_set_bit(mcp, MCP_INTCON, pos, true);
590 mcp_set_bit(mcp, MCP_DEFVAL, pos, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100591 } else
592 return -EINVAL;
593
594 return status;
595}
596
597static void mcp23s08_irq_bus_lock(struct irq_data *data)
598{
Phil Reiddad3d272016-03-18 16:07:06 +0800599 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
600 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100601
Sebastian Reichel8f389102017-05-15 11:24:28 +0200602 mutex_lock(&mcp->lock);
603 regcache_cache_only(mcp->regmap, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100604}
605
606static void mcp23s08_irq_bus_unlock(struct irq_data *data)
607{
Phil Reiddad3d272016-03-18 16:07:06 +0800608 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
609 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100610
Sebastian Reichel8f389102017-05-15 11:24:28 +0200611 regcache_cache_only(mcp->regmap, false);
612 regcache_sync(mcp->regmap);
613
Lars Poeschel4e47f912014-01-16 11:44:15 +0100614 mutex_unlock(&mcp->lock);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100615}
616
Lars Poeschel4e47f912014-01-16 11:44:15 +0100617static 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,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100624};
625
626static int mcp23s08_irq_setup(struct mcp23s08 *mcp)
627{
628 struct gpio_chip *chip = &mcp->chip;
Phil Reiddad3d272016-03-18 16:07:06 +0800629 int err;
Alexander Steina4e63552014-12-01 08:26:00 +0100630 unsigned long irqflags = IRQF_ONESHOT | IRQF_SHARED;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100631
Alexander Steina4e63552014-12-01 08:26:00 +0100632 if (mcp->irq_active_high)
633 irqflags |= IRQF_TRIGGER_HIGH;
634 else
635 irqflags |= IRQF_TRIGGER_LOW;
636
Linus Walleij58383c782015-11-04 09:56:26 +0100637 err = devm_request_threaded_irq(chip->parent, mcp->irq, NULL,
638 mcp23s08_irq,
639 irqflags, dev_name(chip->parent), mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100640 if (err != 0) {
Linus Walleij58383c782015-11-04 09:56:26 +0100641 dev_err(chip->parent, "unable to request IRQ#%d: %d\n",
Lars Poeschel4e47f912014-01-16 11:44:15 +0100642 mcp->irq, err);
643 return err;
644 }
645
Linus Walleijd245b3f2016-11-24 10:57:25 +0100646 err = gpiochip_irqchip_add_nested(chip,
647 &mcp23s08_irq_chip,
648 0,
649 handle_simple_irq,
650 IRQ_TYPE_NONE);
Phil Reiddad3d272016-03-18 16:07:06 +0800651 if (err) {
652 dev_err(chip->parent,
653 "could not connect irqchip to gpiochip: %d\n", err);
654 return err;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100655 }
Phil Reiddad3d272016-03-18 16:07:06 +0800656
Linus Walleijd245b3f2016-11-24 10:57:25 +0100657 gpiochip_set_nested_irqchip(chip,
658 &mcp23s08_irq_chip,
659 mcp->irq);
Phil Reiddad3d272016-03-18 16:07:06 +0800660
Lars Poeschel4e47f912014-01-16 11:44:15 +0100661 return 0;
662}
663
Lars Poeschel4e47f912014-01-16 11:44:15 +0100664/*----------------------------------------------------------------------*/
David Brownelle58b9e22008-02-04 22:28:25 -0800665
666#ifdef CONFIG_DEBUG_FS
667
668#include <linux/seq_file.h>
669
670/*
Sebastian Reichel8f389102017-05-15 11:24:28 +0200671 * 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
711/*
David Brownelle58b9e22008-02-04 22:28:25 -0800712 * 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;
Roel Kluin1d1c1d92008-05-23 13:04:43 -0700719 int t;
David Brownelle58b9e22008-02-04 22:28:25 -0800720 unsigned mask;
Sebastian Reichel8f389102017-05-15 11:24:28 +0200721 int iodir, gpio, gppu;
David Brownelle58b9e22008-02-04 22:28:25 -0800722
Linus Walleij9e03cf02015-12-07 10:09:36 +0100723 mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800724
725 /* NOTE: we only handle one bank for now ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100726 bank = '0' + ((mcp->addr >> 1) & 0x7);
David Brownelle58b9e22008-02-04 22:28:25 -0800727
728 mutex_lock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200729
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");
David Brownelle58b9e22008-02-04 22:28:25 -0800748 goto done;
749 }
750
Sebastian Reichel8f389102017-05-15 11:24:28 +0200751 for (t = 0, mask = BIT(0); t < chip->ngpio; t++, mask <<= 1) {
752 const char *label;
David Brownelle58b9e22008-02-04 22:28:25 -0800753
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,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200760 (iodir & mask) ? "in " : "out",
761 (gpio & mask) ? "hi" : "lo",
762 (gppu & mask) ? "up" : " ");
David Brownelle58b9e22008-02-04 22:28:25 -0800763 /* NOTE: ignoring the irq-related registers */
Gary Servin33bc84112014-03-06 20:25:26 -0300764 seq_puts(s, "\n");
David Brownelle58b9e22008-02-04 22:28:25 -0800765 }
766done:
767 mutex_unlock(&mcp->lock);
768}
769
770#else
771#define mcp23s08_dbg_show NULL
772#endif
773
774/*----------------------------------------------------------------------*/
775
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200776static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
Lars Poeschel4e47f912014-01-16 11:44:15 +0100777 void *data, unsigned addr, unsigned type,
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200778 unsigned int base, int cs)
David Brownelle58b9e22008-02-04 22:28:25 -0800779{
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100780 int status, ret;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100781 bool mirror = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800782
David Brownelle58b9e22008-02-04 22:28:25 -0800783 mutex_init(&mcp->lock);
784
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100785 mcp->dev = dev;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200786 mcp->addr = addr;
Alexander Steina4e63552014-12-01 08:26:00 +0100787 mcp->irq_active_high = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800788
David Brownelle58b9e22008-02-04 22:28:25 -0800789 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;
Linus Walleij60f749f2016-09-07 23:13:20 +0200794#ifdef CONFIG_OF_GPIO
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200795 mcp->chip.of_gpio_n_cells = 2;
796 mcp->chip.of_node = dev->of_node;
797#endif
David Brownelle58b9e22008-02-04 22:28:25 -0800798
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200799 switch (type) {
800#ifdef CONFIG_SPI_MASTER
801 case MCP_TYPE_S08:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100802 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
803 &mcp23x08_regmap);
804 mcp->reg_shift = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100805 mcp->chip.ngpio = 8;
806 mcp->chip.label = "mcp23s08";
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200807 break;
808
809 case MCP_TYPE_S17:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100810 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
811 &mcp23x17_regmap);
812 mcp->reg_shift = 1;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200813 mcp->chip.ngpio = 16;
814 mcp->chip.label = "mcp23s17";
815 break;
Phil Reid28c5a412016-03-01 14:25:41 +0800816
817 case MCP_TYPE_S18:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100818 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
819 &mcp23x17_regmap);
820 mcp->reg_shift = 1;
Phil Reid28c5a412016-03-01 14:25:41 +0800821 mcp->chip.ngpio = 16;
822 mcp->chip.label = "mcp23s18";
823 break;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200824#endif /* CONFIG_SPI_MASTER */
825
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500826#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200827 case MCP_TYPE_008:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100828 mcp->regmap = devm_regmap_init_i2c(data, &mcp23x08_regmap);
829 mcp->reg_shift = 0;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200830 mcp->chip.ngpio = 8;
831 mcp->chip.label = "mcp23008";
832 break;
833
834 case MCP_TYPE_017:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100835 mcp->regmap = devm_regmap_init_i2c(data, &mcp23x17_regmap);
836 mcp->reg_shift = 1;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200837 mcp->chip.ngpio = 16;
838 mcp->chip.label = "mcp23017";
839 break;
840#endif /* CONFIG_I2C */
841
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200842 default:
843 dev_err(dev, "invalid device type (%d)\n", type);
844 return -EINVAL;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100845 }
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200846
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100847 if (IS_ERR(mcp->regmap))
848 return PTR_ERR(mcp->regmap);
849
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200850 mcp->chip.base = base;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100851 mcp->chip.can_sleep = true;
Linus Walleij58383c782015-11-04 09:56:26 +0100852 mcp->chip.parent = dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700853 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800854
David Brownell8f1cc3b2008-07-25 01:46:09 -0700855 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
856 * and MCP_IOCON.HAEN = 1, so we work with all chips.
857 */
Lars Poeschel4e47f912014-01-16 11:44:15 +0100858
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100859 ret = mcp_read(mcp, MCP_IOCON, &status);
860 if (ret < 0)
David Brownelle58b9e22008-02-04 22:28:25 -0800861 goto fail;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100862
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200863 mcp->irq_controller =
864 device_property_read_bool(dev, "interrupt-controller");
Alexander Steina4e63552014-12-01 08:26:00 +0100865 if (mcp->irq && mcp->irq_controller) {
Linus Walleij170680a2014-12-12 11:22:11 +0100866 mcp->irq_active_high =
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200867 device_property_read_bool(dev,
Linus Walleij170680a2014-12-12 11:22:11 +0100868 "microchip,irq-active-high");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100869
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200870 mirror = device_property_read_bool(dev, "microchip,irq-mirror");
Alexander Steina4e63552014-12-01 08:26:00 +0100871 }
872
873 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN) || mirror ||
874 mcp->irq_active_high) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100875 /* mcp23s17 has IOCON twice, make sure they are in sync */
876 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
877 status |= IOCON_HAEN | (IOCON_HAEN << 8);
Alexander Steina4e63552014-12-01 08:26:00 +0100878 if (mcp->irq_active_high)
879 status |= IOCON_INTPOL | (IOCON_INTPOL << 8);
880 else
881 status &= ~(IOCON_INTPOL | (IOCON_INTPOL << 8));
882
Lars Poeschel4e47f912014-01-16 11:44:15 +0100883 if (mirror)
884 status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
885
Phil Reid35396992016-03-15 15:46:30 +0800886 if (type == MCP_TYPE_S18)
887 status |= IOCON_INTCC | (IOCON_INTCC << 8);
888
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100889 ret = mcp_write(mcp, MCP_IOCON, status);
890 if (ret < 0)
David Brownelle58b9e22008-02-04 22:28:25 -0800891 goto fail;
892 }
893
Sebastian Reicheld0e49da2017-05-15 11:24:32 +0200894 ret = devm_gpiochip_add_data(dev, &mcp->chip, mcp);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100895 if (ret < 0)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100896 goto fail;
897
898 if (mcp->irq && mcp->irq_controller) {
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100899 ret = mcp23s08_irq_setup(mcp);
900 if (ret)
Lars Poeschel4e47f912014-01-16 11:44:15 +0100901 goto fail;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100902 }
Sebastian Reichel82039d22017-05-15 11:24:26 +0200903
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
David Brownell8f1cc3b2008-07-25 01:46:09 -0700920fail:
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100921 if (ret < 0)
922 dev_dbg(dev, "can't setup chip %d, --> %d\n", addr, ret);
923 return ret;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700924}
925
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200926/*----------------------------------------------------------------------*/
927
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200928#ifdef CONFIG_OF
929#ifdef CONFIG_SPI_MASTER
Jingoo Hanac791802014-05-07 18:05:17 +0900930static const struct of_device_id mcp23s08_spi_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200931 {
Lars Poeschel45971682013-08-28 10:38:50 +0200932 .compatible = "microchip,mcp23s08",
933 .data = (void *) MCP_TYPE_S08,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200934 },
935 {
Lars Poeschel45971682013-08-28 10:38:50 +0200936 .compatible = "microchip,mcp23s17",
937 .data = (void *) MCP_TYPE_S17,
938 },
Phil Reid28c5a412016-03-01 14:25:41 +0800939 {
940 .compatible = "microchip,mcp23s18",
941 .data = (void *) MCP_TYPE_S18,
942 },
Lars Poeschel45971682013-08-28 10:38:50 +0200943/* 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,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200951 },
952 { },
953};
954MODULE_DEVICE_TABLE(of, mcp23s08_spi_of_match);
955#endif
956
957#if IS_ENABLED(CONFIG_I2C)
Jingoo Hanac791802014-05-07 18:05:17 +0900958static const struct of_device_id mcp23s08_i2c_of_match[] = {
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200959 {
Lars Poeschel45971682013-08-28 10:38:50 +0200960 .compatible = "microchip,mcp23008",
961 .data = (void *) MCP_TYPE_008,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200962 },
963 {
Lars Poeschel45971682013-08-28 10:38:50 +0200964 .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,
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200975 },
976 { },
977};
978MODULE_DEVICE_TABLE(of, mcp23s08_i2c_of_match);
979#endif
980#endif /* CONFIG_OF */
981
982
Daniel M. Weekscbf24fa2012-11-06 23:51:05 -0500983#if IS_ENABLED(CONFIG_I2C)
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200984
Bill Pemberton38363092012-11-19 13:22:34 -0500985static int mcp230xx_probe(struct i2c_client *client,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200986 const struct i2c_device_id *id)
987{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800988 struct mcp23s08_platform_data *pdata, local_pdata;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200989 struct mcp23s08 *mcp;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800990 int status;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200991
Sebastian Reichel5f853ac2017-05-15 11:24:33 +0200992 pdata = dev_get_platdata(&client->dev);
993 if (!pdata) {
Sonic Zhang3af0dbd2014-09-01 11:19:52 +0800994 pdata = &local_pdata;
995 pdata->base = -1;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200996 }
997
Sebastian Reichel2f98e782017-05-15 11:24:31 +0200998 mcp = devm_kzalloc(&client->dev, sizeof(*mcp), GFP_KERNEL);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200999 if (!mcp)
1000 return -ENOMEM;
1001
Lars Poeschel4e47f912014-01-16 11:44:15 +01001002 mcp->irq = client->irq;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001003 status = mcp23s08_probe_one(mcp, &client->dev, client, client->addr,
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +02001004 id->driver_data, pdata->base, 0);
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001005 if (status)
Sebastian Reichel2f98e782017-05-15 11:24:31 +02001006 return status;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001007
1008 i2c_set_clientdata(client, mcp);
1009
1010 return 0;
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001011}
1012
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001013static 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",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001023 .of_match_table = of_match_ptr(mcp23s08_i2c_of_match),
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001024 },
1025 .probe = mcp230xx_probe,
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001026 .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
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001048#ifdef CONFIG_SPI_MASTER
1049
David Brownell8f1cc3b2008-07-25 01:46:09 -07001050static int mcp23s08_probe(struct spi_device *spi)
1051{
Sonic Zhang3af0dbd2014-09-01 11:19:52 +08001052 struct mcp23s08_platform_data *pdata, local_pdata;
David Brownell8f1cc3b2008-07-25 01:46:09 -07001053 unsigned addr;
Linus Walleij596a1c52014-05-28 09:14:06 +02001054 int chips = 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -07001055 struct mcp23s08_driver_data *data;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001056 int status, type;
Sonic Zhang3af0dbd2014-09-01 11:19:52 +08001057 unsigned ngpio = 0;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001058 const struct of_device_id *match;
David Brownell8f1cc3b2008-07-25 01:46:09 -07001059
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001060 match = of_match_device(of_match_ptr(mcp23s08_spi_of_match), &spi->dev);
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001061 if (match)
SeongJae Parkde755c32014-01-18 13:53:04 +09001062 type = (int)(uintptr_t)match->data;
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001063 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
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001071 status = device_property_read_u32(&spi->dev,
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +02001072 "microchip,spi-present-mask", &pdata->spi_present_mask);
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001073 if (status) {
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001074 status = device_property_read_u32(&spi->dev,
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +02001075 "mcp,spi-present-mask",
1076 &pdata->spi_present_mask);
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001077
Lars Poeschel45971682013-08-28 10:38:50 +02001078 if (status) {
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001079 dev_err(&spi->dev, "missing spi-present-mask");
Lars Poeschel45971682013-08-28 10:38:50 +02001080 return -ENODEV;
1081 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001082 }
David Brownell8f1cc3b2008-07-25 01:46:09 -07001083 }
David Brownell8f1cc3b2008-07-25 01:46:09 -07001084
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +02001085 if (!pdata->spi_present_mask || pdata->spi_present_mask > 0xff) {
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001086 dev_err(&spi->dev, "invalid spi-present-mask");
1087 return -ENODEV;
1088 }
1089
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +02001090 for (addr = 0; addr < MCP_MAX_DEV_PER_CS; addr++) {
1091 if (pdata->spi_present_mask & BIT(addr))
Sebastian Reichel0d7fcd52017-05-15 11:24:34 +02001092 chips++;
1093 }
1094
Michael Welling99e4b982014-04-16 20:00:24 -05001095 if (!chips)
1096 return -ENODEV;
1097
Varka Bhadram7898b312015-03-31 09:49:08 +05301098 data = devm_kzalloc(&spi->dev,
1099 sizeof(*data) + chips * sizeof(struct mcp23s08),
1100 GFP_KERNEL);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001101 if (!data)
1102 return -ENOMEM;
Varka Bhadram7898b312015-03-31 09:49:08 +05301103
David Brownell8f1cc3b2008-07-25 01:46:09 -07001104 spi_set_drvdata(spi, data);
1105
Sebastian Reichelce9bd0a2017-05-15 11:24:36 +02001106 for (addr = 0; addr < MCP_MAX_DEV_PER_CS; addr++) {
1107 if (!(pdata->spi_present_mask & BIT(addr)))
David Brownell8f1cc3b2008-07-25 01:46:09 -07001108 continue;
1109 chips--;
1110 data->mcp[addr] = &data->chip[chips];
Alexander Steina231b882014-11-17 09:38:10 +01001111 data->mcp[addr]->irq = spi->irq;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001112 status = mcp23s08_probe_one(data->mcp[addr], &spi->dev, spi,
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +02001113 0x40 | (addr << 1), type,
1114 pdata->base, addr);
David Brownell8f1cc3b2008-07-25 01:46:09 -07001115 if (status < 0)
Sebastian Reicheld0e49da2017-05-15 11:24:32 +02001116 return status;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001117
Sonic Zhang3af0dbd2014-09-01 11:19:52 +08001118 if (pdata->base != -1)
Phil Reid28c5a412016-03-01 14:25:41 +08001119 pdata->base += data->mcp[addr]->chip.ngpio;
1120 ngpio += data->mcp[addr]->chip.ngpio;
David Brownell8f1cc3b2008-07-25 01:46:09 -07001121 }
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001122 data->ngpio = ngpio;
David Brownelle58b9e22008-02-04 22:28:25 -08001123
David Brownelle58b9e22008-02-04 22:28:25 -08001124 return 0;
David Brownelle58b9e22008-02-04 22:28:25 -08001125}
1126
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001127static const struct spi_device_id mcp23s08_ids[] = {
1128 { "mcp23s08", MCP_TYPE_S08 },
1129 { "mcp23s17", MCP_TYPE_S17 },
Phil Reid28c5a412016-03-01 14:25:41 +08001130 { "mcp23s18", MCP_TYPE_S18 },
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001131 { },
1132};
1133MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
1134
David Brownelle58b9e22008-02-04 22:28:25 -08001135static struct spi_driver mcp23s08_driver = {
1136 .probe = mcp23s08_probe,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +01001137 .id_table = mcp23s08_ids,
David Brownelle58b9e22008-02-04 22:28:25 -08001138 .driver = {
1139 .name = "mcp23s08",
Lars Poeschel97ddb1c2013-04-04 12:02:02 +02001140 .of_match_table = of_match_ptr(mcp23s08_spi_of_match),
David Brownelle58b9e22008-02-04 22:28:25 -08001141 },
1142};
1143
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001144static 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
David Brownelle58b9e22008-02-04 22:28:25 -08001161/*----------------------------------------------------------------------*/
1162
1163static int __init mcp23s08_init(void)
1164{
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001165 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;
David Brownelle58b9e22008-02-04 22:28:25 -08001181}
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001182/* register after spi/i2c postcore initcall and before
David Brownell673c0c02008-10-15 22:02:46 -07001183 * subsys initcalls that may rely on these GPIOs
1184 */
1185subsys_initcall(mcp23s08_init);
David Brownelle58b9e22008-02-04 22:28:25 -08001186
1187static void __exit mcp23s08_exit(void)
1188{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +02001189 mcp23s08_spi_exit();
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02001190 mcp23s08_i2c_exit();
David Brownelle58b9e22008-02-04 22:28:25 -08001191}
1192module_exit(mcp23s08_exit);
1193
1194MODULE_LICENSE("GPL");