blob: c5d83a8a91c2a81710d8790eb208104ab5735ff2 [file] [log] [blame]
David Brownelle58b9e22008-02-04 22:28:25 -08001/*
Peter Korsgaard752ad5e2011-07-15 10:25:32 +02002 * MCP23S08 SPI/GPIO gpio expander driver
David Brownelle58b9e22008-02-04 22:28:25 -08003 */
4
5#include <linux/kernel.h>
6#include <linux/device.h>
David Brownelle58b9e22008-02-04 22:28:25 -08007#include <linux/mutex.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -04008#include <linux/module.h>
H Hartley Sweetend120c172009-09-22 16:46:37 -07009#include <linux/gpio.h>
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020010#include <linux/i2c.h>
David Brownelle58b9e22008-02-04 22:28:25 -080011#include <linux/spi/spi.h>
12#include <linux/spi/mcp23s08.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010014#include <asm/byteorder.h>
David Brownelle58b9e22008-02-04 22:28:25 -080015
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010016/**
17 * MCP types supported by driver
18 */
19#define MCP_TYPE_S08 0
20#define MCP_TYPE_S17 1
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020021#define MCP_TYPE_008 2
22#define MCP_TYPE_017 3
David Brownelle58b9e22008-02-04 22:28:25 -080023
24/* Registers are all 8 bits wide.
25 *
26 * The mcp23s17 has twice as many bits, and can be configured to work
27 * with either 16 bit registers or with two adjacent 8 bit banks.
David Brownelle58b9e22008-02-04 22:28:25 -080028 */
29#define MCP_IODIR 0x00 /* init/reset: all ones */
30#define MCP_IPOL 0x01
31#define MCP_GPINTEN 0x02
32#define MCP_DEFVAL 0x03
33#define MCP_INTCON 0x04
34#define MCP_IOCON 0x05
35# define IOCON_SEQOP (1 << 5)
36# define IOCON_HAEN (1 << 3)
37# define IOCON_ODR (1 << 2)
38# define IOCON_INTPOL (1 << 1)
39#define MCP_GPPU 0x06
40#define MCP_INTF 0x07
41#define MCP_INTCAP 0x08
42#define MCP_GPIO 0x09
43#define MCP_OLAT 0x0a
44
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010045struct mcp23s08;
46
47struct mcp23s08_ops {
48 int (*read)(struct mcp23s08 *mcp, unsigned reg);
49 int (*write)(struct mcp23s08 *mcp, unsigned reg, unsigned val);
50 int (*read_regs)(struct mcp23s08 *mcp, unsigned reg,
51 u16 *vals, unsigned n);
52};
53
David Brownelle58b9e22008-02-04 22:28:25 -080054struct mcp23s08 {
David Brownelle58b9e22008-02-04 22:28:25 -080055 u8 addr;
56
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010057 u16 cache[11];
David Brownelle58b9e22008-02-04 22:28:25 -080058 /* lock protects the cached values */
59 struct mutex lock;
David Brownelle58b9e22008-02-04 22:28:25 -080060
61 struct gpio_chip chip;
62
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010063 const struct mcp23s08_ops *ops;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +020064 void *data; /* ops specific data */
David Brownelle58b9e22008-02-04 22:28:25 -080065};
66
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010067/* A given spi_device can represent up to eight mcp23sxx chips
David Brownell8f1cc3b2008-07-25 01:46:09 -070068 * sharing the same chipselect but using different addresses
69 * (e.g. chips #0 and #3 might be populated, but not #1 or $2).
70 * Driver data holds all the per-chip data.
71 */
72struct mcp23s08_driver_data {
73 unsigned ngpio;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010074 struct mcp23s08 *mcp[8];
David Brownell8f1cc3b2008-07-25 01:46:09 -070075 struct mcp23s08 chip[];
76};
77
Peter Korsgaard752ad5e2011-07-15 10:25:32 +020078/*----------------------------------------------------------------------*/
79
80#ifdef CONFIG_I2C
81
82static int mcp23008_read(struct mcp23s08 *mcp, unsigned reg)
83{
84 return i2c_smbus_read_byte_data(mcp->data, reg);
85}
86
87static int mcp23008_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
88{
89 return i2c_smbus_write_byte_data(mcp->data, reg, val);
90}
91
92static int
93mcp23008_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
94{
95 while (n--) {
96 int ret = mcp23008_read(mcp, reg++);
97 if (ret < 0)
98 return ret;
99 *vals++ = ret;
100 }
101
102 return 0;
103}
104
105static int mcp23017_read(struct mcp23s08 *mcp, unsigned reg)
106{
107 return i2c_smbus_read_word_data(mcp->data, reg << 1);
108}
109
110static int mcp23017_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
111{
112 return i2c_smbus_write_word_data(mcp->data, reg << 1, val);
113}
114
115static int
116mcp23017_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
117{
118 while (n--) {
119 int ret = mcp23017_read(mcp, reg++);
120 if (ret < 0)
121 return ret;
122 *vals++ = ret;
123 }
124
125 return 0;
126}
127
128static const struct mcp23s08_ops mcp23008_ops = {
129 .read = mcp23008_read,
130 .write = mcp23008_write,
131 .read_regs = mcp23008_read_regs,
132};
133
134static const struct mcp23s08_ops mcp23017_ops = {
135 .read = mcp23017_read,
136 .write = mcp23017_write,
137 .read_regs = mcp23017_read_regs,
138};
139
140#endif /* CONFIG_I2C */
141
142/*----------------------------------------------------------------------*/
143
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200144#ifdef CONFIG_SPI_MASTER
145
David Brownelle58b9e22008-02-04 22:28:25 -0800146static int mcp23s08_read(struct mcp23s08 *mcp, unsigned reg)
147{
148 u8 tx[2], rx[1];
149 int status;
150
151 tx[0] = mcp->addr | 0x01;
152 tx[1] = reg;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200153 status = spi_write_then_read(mcp->data, tx, sizeof tx, rx, sizeof rx);
David Brownelle58b9e22008-02-04 22:28:25 -0800154 return (status < 0) ? status : rx[0];
155}
156
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100157static int mcp23s08_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
David Brownelle58b9e22008-02-04 22:28:25 -0800158{
159 u8 tx[3];
160
161 tx[0] = mcp->addr;
162 tx[1] = reg;
163 tx[2] = val;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200164 return spi_write_then_read(mcp->data, tx, sizeof tx, NULL, 0);
David Brownelle58b9e22008-02-04 22:28:25 -0800165}
166
167static int
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100168mcp23s08_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
David Brownelle58b9e22008-02-04 22:28:25 -0800169{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100170 u8 tx[2], *tmp;
171 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800172
173 if ((n + reg) > sizeof mcp->cache)
174 return -EINVAL;
175 tx[0] = mcp->addr | 0x01;
176 tx[1] = reg;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100177
178 tmp = (u8 *)vals;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200179 status = spi_write_then_read(mcp->data, tx, sizeof tx, tmp, n);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100180 if (status >= 0) {
181 while (n--)
182 vals[n] = tmp[n]; /* expand to 16bit */
183 }
184 return status;
David Brownelle58b9e22008-02-04 22:28:25 -0800185}
186
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100187static int mcp23s17_read(struct mcp23s08 *mcp, unsigned reg)
188{
189 u8 tx[2], rx[2];
190 int status;
191
192 tx[0] = mcp->addr | 0x01;
193 tx[1] = reg << 1;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200194 status = spi_write_then_read(mcp->data, tx, sizeof tx, rx, sizeof rx);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100195 return (status < 0) ? status : (rx[0] | (rx[1] << 8));
196}
197
198static int mcp23s17_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
199{
200 u8 tx[4];
201
202 tx[0] = mcp->addr;
203 tx[1] = reg << 1;
204 tx[2] = val;
205 tx[3] = val >> 8;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200206 return spi_write_then_read(mcp->data, tx, sizeof tx, NULL, 0);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100207}
208
209static int
210mcp23s17_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
211{
212 u8 tx[2];
213 int status;
214
215 if ((n + reg) > sizeof mcp->cache)
216 return -EINVAL;
217 tx[0] = mcp->addr | 0x01;
218 tx[1] = reg << 1;
219
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200220 status = spi_write_then_read(mcp->data, tx, sizeof tx,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100221 (u8 *)vals, n * 2);
222 if (status >= 0) {
223 while (n--)
224 vals[n] = __le16_to_cpu((__le16)vals[n]);
225 }
226
227 return status;
228}
229
230static const struct mcp23s08_ops mcp23s08_ops = {
231 .read = mcp23s08_read,
232 .write = mcp23s08_write,
233 .read_regs = mcp23s08_read_regs,
234};
235
236static const struct mcp23s08_ops mcp23s17_ops = {
237 .read = mcp23s17_read,
238 .write = mcp23s17_write,
239 .read_regs = mcp23s17_read_regs,
240};
241
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200242#endif /* CONFIG_SPI_MASTER */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100243
David Brownelle58b9e22008-02-04 22:28:25 -0800244/*----------------------------------------------------------------------*/
245
246static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
247{
248 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
249 int status;
250
251 mutex_lock(&mcp->lock);
252 mcp->cache[MCP_IODIR] |= (1 << offset);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100253 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800254 mutex_unlock(&mcp->lock);
255 return status;
256}
257
258static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
259{
260 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
261 int status;
262
263 mutex_lock(&mcp->lock);
264
265 /* REVISIT reading this clears any IRQ ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100266 status = mcp->ops->read(mcp, MCP_GPIO);
David Brownelle58b9e22008-02-04 22:28:25 -0800267 if (status < 0)
268 status = 0;
269 else {
270 mcp->cache[MCP_GPIO] = status;
271 status = !!(status & (1 << offset));
272 }
273 mutex_unlock(&mcp->lock);
274 return status;
275}
276
277static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, int value)
278{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100279 unsigned olat = mcp->cache[MCP_OLAT];
David Brownelle58b9e22008-02-04 22:28:25 -0800280
281 if (value)
282 olat |= mask;
283 else
284 olat &= ~mask;
285 mcp->cache[MCP_OLAT] = olat;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100286 return mcp->ops->write(mcp, MCP_OLAT, olat);
David Brownelle58b9e22008-02-04 22:28:25 -0800287}
288
289static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
290{
291 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100292 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800293
294 mutex_lock(&mcp->lock);
295 __mcp23s08_set(mcp, mask, value);
296 mutex_unlock(&mcp->lock);
297}
298
299static int
300mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
301{
302 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100303 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800304 int status;
305
306 mutex_lock(&mcp->lock);
307 status = __mcp23s08_set(mcp, mask, value);
308 if (status == 0) {
309 mcp->cache[MCP_IODIR] &= ~mask;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100310 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800311 }
312 mutex_unlock(&mcp->lock);
313 return status;
314}
315
316/*----------------------------------------------------------------------*/
317
318#ifdef CONFIG_DEBUG_FS
319
320#include <linux/seq_file.h>
321
322/*
323 * This shows more info than the generic gpio dump code:
324 * pullups, deglitching, open drain drive.
325 */
326static void mcp23s08_dbg_show(struct seq_file *s, struct gpio_chip *chip)
327{
328 struct mcp23s08 *mcp;
329 char bank;
Roel Kluin1d1c1d92008-05-23 13:04:43 -0700330 int t;
David Brownelle58b9e22008-02-04 22:28:25 -0800331 unsigned mask;
332
333 mcp = container_of(chip, struct mcp23s08, chip);
334
335 /* NOTE: we only handle one bank for now ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100336 bank = '0' + ((mcp->addr >> 1) & 0x7);
David Brownelle58b9e22008-02-04 22:28:25 -0800337
338 mutex_lock(&mcp->lock);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100339 t = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800340 if (t < 0) {
341 seq_printf(s, " I/O ERROR %d\n", t);
342 goto done;
343 }
344
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100345 for (t = 0, mask = 1; t < chip->ngpio; t++, mask <<= 1) {
David Brownelle58b9e22008-02-04 22:28:25 -0800346 const char *label;
347
348 label = gpiochip_is_requested(chip, t);
349 if (!label)
350 continue;
351
352 seq_printf(s, " gpio-%-3d P%c.%d (%-12s) %s %s %s",
353 chip->base + t, bank, t, label,
354 (mcp->cache[MCP_IODIR] & mask) ? "in " : "out",
355 (mcp->cache[MCP_GPIO] & mask) ? "hi" : "lo",
356 (mcp->cache[MCP_GPPU] & mask) ? " " : "up");
357 /* NOTE: ignoring the irq-related registers */
358 seq_printf(s, "\n");
359 }
360done:
361 mutex_unlock(&mcp->lock);
362}
363
364#else
365#define mcp23s08_dbg_show NULL
366#endif
367
368/*----------------------------------------------------------------------*/
369
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200370static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
371 void *data, unsigned addr,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100372 unsigned type, unsigned base, unsigned pullups)
David Brownelle58b9e22008-02-04 22:28:25 -0800373{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200374 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800375
David Brownelle58b9e22008-02-04 22:28:25 -0800376 mutex_init(&mcp->lock);
377
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200378 mcp->data = data;
379 mcp->addr = addr;
David Brownelle58b9e22008-02-04 22:28:25 -0800380
David Brownelle58b9e22008-02-04 22:28:25 -0800381 mcp->chip.direction_input = mcp23s08_direction_input;
382 mcp->chip.get = mcp23s08_get;
383 mcp->chip.direction_output = mcp23s08_direction_output;
384 mcp->chip.set = mcp23s08_set;
385 mcp->chip.dbg_show = mcp23s08_dbg_show;
386
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200387 switch (type) {
388#ifdef CONFIG_SPI_MASTER
389 case MCP_TYPE_S08:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100390 mcp->ops = &mcp23s08_ops;
391 mcp->chip.ngpio = 8;
392 mcp->chip.label = "mcp23s08";
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200393 break;
394
395 case MCP_TYPE_S17:
396 mcp->ops = &mcp23s17_ops;
397 mcp->chip.ngpio = 16;
398 mcp->chip.label = "mcp23s17";
399 break;
400#endif /* CONFIG_SPI_MASTER */
401
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200402#ifdef CONFIG_I2C
403 case MCP_TYPE_008:
404 mcp->ops = &mcp23008_ops;
405 mcp->chip.ngpio = 8;
406 mcp->chip.label = "mcp23008";
407 break;
408
409 case MCP_TYPE_017:
410 mcp->ops = &mcp23017_ops;
411 mcp->chip.ngpio = 16;
412 mcp->chip.label = "mcp23017";
413 break;
414#endif /* CONFIG_I2C */
415
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200416 default:
417 dev_err(dev, "invalid device type (%d)\n", type);
418 return -EINVAL;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100419 }
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200420
David Brownell8f1cc3b2008-07-25 01:46:09 -0700421 mcp->chip.base = base;
David Brownelle58b9e22008-02-04 22:28:25 -0800422 mcp->chip.can_sleep = 1;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200423 mcp->chip.dev = dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700424 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800425
David Brownell8f1cc3b2008-07-25 01:46:09 -0700426 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
427 * and MCP_IOCON.HAEN = 1, so we work with all chips.
428 */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100429 status = mcp->ops->read(mcp, MCP_IOCON);
David Brownelle58b9e22008-02-04 22:28:25 -0800430 if (status < 0)
431 goto fail;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700432 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN)) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100433 /* mcp23s17 has IOCON twice, make sure they are in sync */
434 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
435 status |= IOCON_HAEN | (IOCON_HAEN << 8);
436 status = mcp->ops->write(mcp, MCP_IOCON, status);
David Brownelle58b9e22008-02-04 22:28:25 -0800437 if (status < 0)
438 goto fail;
439 }
440
441 /* configure ~100K pullups */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100442 status = mcp->ops->write(mcp, MCP_GPPU, pullups);
David Brownelle58b9e22008-02-04 22:28:25 -0800443 if (status < 0)
444 goto fail;
445
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100446 status = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800447 if (status < 0)
448 goto fail;
449
450 /* disable inverter on input */
451 if (mcp->cache[MCP_IPOL] != 0) {
452 mcp->cache[MCP_IPOL] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100453 status = mcp->ops->write(mcp, MCP_IPOL, 0);
454 if (status < 0)
455 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800456 }
457
458 /* disable irqs */
459 if (mcp->cache[MCP_GPINTEN] != 0) {
460 mcp->cache[MCP_GPINTEN] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100461 status = mcp->ops->write(mcp, MCP_GPINTEN, 0);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700462 if (status < 0)
463 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800464 }
465
466 status = gpiochip_add(&mcp->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700467fail:
468 if (status < 0)
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200469 dev_dbg(dev, "can't setup chip %d, --> %d\n",
470 addr, status);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700471 return status;
472}
473
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200474/*----------------------------------------------------------------------*/
475
476#ifdef CONFIG_I2C
477
478static int __devinit mcp230xx_probe(struct i2c_client *client,
479 const struct i2c_device_id *id)
480{
481 struct mcp23s08_platform_data *pdata;
482 struct mcp23s08 *mcp;
483 int status;
484
485 pdata = client->dev.platform_data;
486 if (!pdata || !gpio_is_valid(pdata->base)) {
487 dev_dbg(&client->dev, "invalid or missing platform data\n");
488 return -EINVAL;
489 }
490
491 mcp = kzalloc(sizeof *mcp, GFP_KERNEL);
492 if (!mcp)
493 return -ENOMEM;
494
495 status = mcp23s08_probe_one(mcp, &client->dev, client, client->addr,
496 id->driver_data, pdata->base,
497 pdata->chip[0].pullups);
498 if (status)
499 goto fail;
500
501 i2c_set_clientdata(client, mcp);
502
503 return 0;
504
505fail:
506 kfree(mcp);
507
508 return status;
509}
510
511static int __devexit mcp230xx_remove(struct i2c_client *client)
512{
513 struct mcp23s08 *mcp = i2c_get_clientdata(client);
514 int status;
515
516 status = gpiochip_remove(&mcp->chip);
517 if (status == 0)
518 kfree(mcp);
519
520 return status;
521}
522
523static const struct i2c_device_id mcp230xx_id[] = {
524 { "mcp23008", MCP_TYPE_008 },
525 { "mcp23017", MCP_TYPE_017 },
526 { },
527};
528MODULE_DEVICE_TABLE(i2c, mcp230xx_id);
529
530static struct i2c_driver mcp230xx_driver = {
531 .driver = {
532 .name = "mcp230xx",
533 .owner = THIS_MODULE,
534 },
535 .probe = mcp230xx_probe,
536 .remove = __devexit_p(mcp230xx_remove),
537 .id_table = mcp230xx_id,
538};
539
540static int __init mcp23s08_i2c_init(void)
541{
542 return i2c_add_driver(&mcp230xx_driver);
543}
544
545static void mcp23s08_i2c_exit(void)
546{
547 i2c_del_driver(&mcp230xx_driver);
548}
549
550#else
551
552static int __init mcp23s08_i2c_init(void) { return 0; }
553static void mcp23s08_i2c_exit(void) { }
554
555#endif /* CONFIG_I2C */
556
557/*----------------------------------------------------------------------*/
558
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200559#ifdef CONFIG_SPI_MASTER
560
David Brownell8f1cc3b2008-07-25 01:46:09 -0700561static int mcp23s08_probe(struct spi_device *spi)
562{
563 struct mcp23s08_platform_data *pdata;
564 unsigned addr;
565 unsigned chips = 0;
566 struct mcp23s08_driver_data *data;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100567 int status, type;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700568 unsigned base;
569
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100570 type = spi_get_device_id(spi)->driver_data;
571
David Brownell8f1cc3b2008-07-25 01:46:09 -0700572 pdata = spi->dev.platform_data;
Ben Dooksa342d212009-01-15 13:50:45 -0800573 if (!pdata || !gpio_is_valid(pdata->base)) {
574 dev_dbg(&spi->dev, "invalid or missing platform data\n");
575 return -EINVAL;
576 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700577
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100578 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700579 if (!pdata->chip[addr].is_present)
580 continue;
581 chips++;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100582 if ((type == MCP_TYPE_S08) && (addr > 3)) {
583 dev_err(&spi->dev,
584 "mcp23s08 only supports address 0..3\n");
585 return -EINVAL;
586 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700587 }
588 if (!chips)
589 return -ENODEV;
590
591 data = kzalloc(sizeof *data + chips * sizeof(struct mcp23s08),
592 GFP_KERNEL);
593 if (!data)
594 return -ENOMEM;
595 spi_set_drvdata(spi, data);
596
597 base = pdata->base;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100598 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700599 if (!pdata->chip[addr].is_present)
600 continue;
601 chips--;
602 data->mcp[addr] = &data->chip[chips];
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200603 status = mcp23s08_probe_one(data->mcp[addr], &spi->dev, spi,
604 0x40 | (addr << 1), type, base,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100605 pdata->chip[addr].pullups);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700606 if (status < 0)
607 goto fail;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100608
609 base += (type == MCP_TYPE_S17) ? 16 : 8;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700610 }
611 data->ngpio = base - pdata->base;
David Brownelle58b9e22008-02-04 22:28:25 -0800612
613 /* NOTE: these chips have a relatively sane IRQ framework, with
614 * per-signal masking and level/edge triggering. It's not yet
615 * handled here...
616 */
617
David Brownelle58b9e22008-02-04 22:28:25 -0800618 return 0;
619
620fail:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100621 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700622 int tmp;
623
624 if (!data->mcp[addr])
625 continue;
626 tmp = gpiochip_remove(&data->mcp[addr]->chip);
627 if (tmp < 0)
628 dev_err(&spi->dev, "%s --> %d\n", "remove", tmp);
629 }
630 kfree(data);
David Brownelle58b9e22008-02-04 22:28:25 -0800631 return status;
632}
633
634static int mcp23s08_remove(struct spi_device *spi)
635{
David Brownell8f1cc3b2008-07-25 01:46:09 -0700636 struct mcp23s08_driver_data *data = spi_get_drvdata(spi);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700637 unsigned addr;
David Brownelle58b9e22008-02-04 22:28:25 -0800638 int status = 0;
639
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100640 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700641 int tmp;
642
643 if (!data->mcp[addr])
644 continue;
645
646 tmp = gpiochip_remove(&data->mcp[addr]->chip);
647 if (tmp < 0) {
648 dev_err(&spi->dev, "%s --> %d\n", "remove", tmp);
649 status = tmp;
650 }
651 }
David Brownelle58b9e22008-02-04 22:28:25 -0800652 if (status == 0)
David Brownell8f1cc3b2008-07-25 01:46:09 -0700653 kfree(data);
David Brownelle58b9e22008-02-04 22:28:25 -0800654 return status;
655}
656
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100657static const struct spi_device_id mcp23s08_ids[] = {
658 { "mcp23s08", MCP_TYPE_S08 },
659 { "mcp23s17", MCP_TYPE_S17 },
660 { },
661};
662MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
663
David Brownelle58b9e22008-02-04 22:28:25 -0800664static struct spi_driver mcp23s08_driver = {
665 .probe = mcp23s08_probe,
666 .remove = mcp23s08_remove,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100667 .id_table = mcp23s08_ids,
David Brownelle58b9e22008-02-04 22:28:25 -0800668 .driver = {
669 .name = "mcp23s08",
670 .owner = THIS_MODULE,
671 },
672};
673
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200674static int __init mcp23s08_spi_init(void)
675{
676 return spi_register_driver(&mcp23s08_driver);
677}
678
679static void mcp23s08_spi_exit(void)
680{
681 spi_unregister_driver(&mcp23s08_driver);
682}
683
684#else
685
686static int __init mcp23s08_spi_init(void) { return 0; }
687static void mcp23s08_spi_exit(void) { }
688
689#endif /* CONFIG_SPI_MASTER */
690
David Brownelle58b9e22008-02-04 22:28:25 -0800691/*----------------------------------------------------------------------*/
692
693static int __init mcp23s08_init(void)
694{
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200695 int ret;
696
697 ret = mcp23s08_spi_init();
698 if (ret)
699 goto spi_fail;
700
701 ret = mcp23s08_i2c_init();
702 if (ret)
703 goto i2c_fail;
704
705 return 0;
706
707 i2c_fail:
708 mcp23s08_spi_exit();
709 spi_fail:
710 return ret;
David Brownelle58b9e22008-02-04 22:28:25 -0800711}
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200712/* register after spi/i2c postcore initcall and before
David Brownell673c0c02008-10-15 22:02:46 -0700713 * subsys initcalls that may rely on these GPIOs
714 */
715subsys_initcall(mcp23s08_init);
David Brownelle58b9e22008-02-04 22:28:25 -0800716
717static void __exit mcp23s08_exit(void)
718{
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200719 mcp23s08_spi_exit();
Peter Korsgaard752ad5e2011-07-15 10:25:32 +0200720 mcp23s08_i2c_exit();
David Brownelle58b9e22008-02-04 22:28:25 -0800721}
722module_exit(mcp23s08_exit);
723
724MODULE_LICENSE("GPL");