blob: ef61234c0e0325b0b8bd61d67304c6ed86de99f6 [file] [log] [blame]
David Brownelle58b9e22008-02-04 22:28:25 -08001/*
Grant Likelyc103de22011-06-04 18:38:28 -06002 * MCP23S08 SPI 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>
H Hartley Sweetend120c172009-09-22 16:46:37 -07008#include <linux/gpio.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>
David Brownelle58b9e22008-02-04 22:28:25 -080013
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010014/**
15 * MCP types supported by driver
16 */
17#define MCP_TYPE_S08 0
18#define MCP_TYPE_S17 1
David Brownelle58b9e22008-02-04 22:28:25 -080019
20/* Registers are all 8 bits wide.
21 *
22 * The mcp23s17 has twice as many bits, and can be configured to work
23 * with either 16 bit registers or with two adjacent 8 bit banks.
24 *
25 * Also, there are I2C versions of both chips.
26 */
27#define MCP_IODIR 0x00 /* init/reset: all ones */
28#define MCP_IPOL 0x01
29#define MCP_GPINTEN 0x02
30#define MCP_DEFVAL 0x03
31#define MCP_INTCON 0x04
32#define MCP_IOCON 0x05
33# define IOCON_SEQOP (1 << 5)
34# define IOCON_HAEN (1 << 3)
35# define IOCON_ODR (1 << 2)
36# define IOCON_INTPOL (1 << 1)
37#define MCP_GPPU 0x06
38#define MCP_INTF 0x07
39#define MCP_INTCAP 0x08
40#define MCP_GPIO 0x09
41#define MCP_OLAT 0x0a
42
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010043struct mcp23s08;
44
45struct mcp23s08_ops {
46 int (*read)(struct mcp23s08 *mcp, unsigned reg);
47 int (*write)(struct mcp23s08 *mcp, unsigned reg, unsigned val);
48 int (*read_regs)(struct mcp23s08 *mcp, unsigned reg,
49 u16 *vals, unsigned n);
50};
51
David Brownelle58b9e22008-02-04 22:28:25 -080052struct mcp23s08 {
53 struct spi_device *spi;
54 u8 addr;
55
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010056 u16 cache[11];
David Brownelle58b9e22008-02-04 22:28:25 -080057 /* lock protects the cached values */
58 struct mutex lock;
David Brownelle58b9e22008-02-04 22:28:25 -080059
60 struct gpio_chip chip;
61
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010062 const struct mcp23s08_ops *ops;
David Brownelle58b9e22008-02-04 22:28:25 -080063};
64
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010065/* A given spi_device can represent up to eight mcp23sxx chips
David Brownell8f1cc3b2008-07-25 01:46:09 -070066 * sharing the same chipselect but using different addresses
67 * (e.g. chips #0 and #3 might be populated, but not #1 or $2).
68 * Driver data holds all the per-chip data.
69 */
70struct mcp23s08_driver_data {
71 unsigned ngpio;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010072 struct mcp23s08 *mcp[8];
David Brownell8f1cc3b2008-07-25 01:46:09 -070073 struct mcp23s08 chip[];
74};
75
David Brownelle58b9e22008-02-04 22:28:25 -080076static int mcp23s08_read(struct mcp23s08 *mcp, unsigned reg)
77{
78 u8 tx[2], rx[1];
79 int status;
80
81 tx[0] = mcp->addr | 0x01;
82 tx[1] = reg;
83 status = spi_write_then_read(mcp->spi, tx, sizeof tx, rx, sizeof rx);
84 return (status < 0) ? status : rx[0];
85}
86
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010087static int mcp23s08_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
David Brownelle58b9e22008-02-04 22:28:25 -080088{
89 u8 tx[3];
90
91 tx[0] = mcp->addr;
92 tx[1] = reg;
93 tx[2] = val;
94 return spi_write_then_read(mcp->spi, tx, sizeof tx, NULL, 0);
95}
96
97static int
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010098mcp23s08_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
David Brownelle58b9e22008-02-04 22:28:25 -080099{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100100 u8 tx[2], *tmp;
101 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800102
103 if ((n + reg) > sizeof mcp->cache)
104 return -EINVAL;
105 tx[0] = mcp->addr | 0x01;
106 tx[1] = reg;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100107
108 tmp = (u8 *)vals;
109 status = spi_write_then_read(mcp->spi, tx, sizeof tx, tmp, n);
110 if (status >= 0) {
111 while (n--)
112 vals[n] = tmp[n]; /* expand to 16bit */
113 }
114 return status;
David Brownelle58b9e22008-02-04 22:28:25 -0800115}
116
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100117static int mcp23s17_read(struct mcp23s08 *mcp, unsigned reg)
118{
119 u8 tx[2], rx[2];
120 int status;
121
122 tx[0] = mcp->addr | 0x01;
123 tx[1] = reg << 1;
124 status = spi_write_then_read(mcp->spi, tx, sizeof tx, rx, sizeof rx);
125 return (status < 0) ? status : (rx[0] | (rx[1] << 8));
126}
127
128static int mcp23s17_write(struct mcp23s08 *mcp, unsigned reg, unsigned val)
129{
130 u8 tx[4];
131
132 tx[0] = mcp->addr;
133 tx[1] = reg << 1;
134 tx[2] = val;
135 tx[3] = val >> 8;
136 return spi_write_then_read(mcp->spi, tx, sizeof tx, NULL, 0);
137}
138
139static int
140mcp23s17_read_regs(struct mcp23s08 *mcp, unsigned reg, u16 *vals, unsigned n)
141{
142 u8 tx[2];
143 int status;
144
145 if ((n + reg) > sizeof mcp->cache)
146 return -EINVAL;
147 tx[0] = mcp->addr | 0x01;
148 tx[1] = reg << 1;
149
150 status = spi_write_then_read(mcp->spi, tx, sizeof tx,
151 (u8 *)vals, n * 2);
152 if (status >= 0) {
153 while (n--)
154 vals[n] = __le16_to_cpu((__le16)vals[n]);
155 }
156
157 return status;
158}
159
160static const struct mcp23s08_ops mcp23s08_ops = {
161 .read = mcp23s08_read,
162 .write = mcp23s08_write,
163 .read_regs = mcp23s08_read_regs,
164};
165
166static const struct mcp23s08_ops mcp23s17_ops = {
167 .read = mcp23s17_read,
168 .write = mcp23s17_write,
169 .read_regs = mcp23s17_read_regs,
170};
171
172
David Brownelle58b9e22008-02-04 22:28:25 -0800173/*----------------------------------------------------------------------*/
174
175static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
176{
177 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
178 int status;
179
180 mutex_lock(&mcp->lock);
181 mcp->cache[MCP_IODIR] |= (1 << offset);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100182 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800183 mutex_unlock(&mcp->lock);
184 return status;
185}
186
187static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
188{
189 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
190 int status;
191
192 mutex_lock(&mcp->lock);
193
194 /* REVISIT reading this clears any IRQ ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100195 status = mcp->ops->read(mcp, MCP_GPIO);
David Brownelle58b9e22008-02-04 22:28:25 -0800196 if (status < 0)
197 status = 0;
198 else {
199 mcp->cache[MCP_GPIO] = status;
200 status = !!(status & (1 << offset));
201 }
202 mutex_unlock(&mcp->lock);
203 return status;
204}
205
206static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, int value)
207{
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100208 unsigned olat = mcp->cache[MCP_OLAT];
David Brownelle58b9e22008-02-04 22:28:25 -0800209
210 if (value)
211 olat |= mask;
212 else
213 olat &= ~mask;
214 mcp->cache[MCP_OLAT] = olat;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100215 return mcp->ops->write(mcp, MCP_OLAT, olat);
David Brownelle58b9e22008-02-04 22:28:25 -0800216}
217
218static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
219{
220 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100221 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800222
223 mutex_lock(&mcp->lock);
224 __mcp23s08_set(mcp, mask, value);
225 mutex_unlock(&mcp->lock);
226}
227
228static int
229mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
230{
231 struct mcp23s08 *mcp = container_of(chip, struct mcp23s08, chip);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100232 unsigned mask = 1 << offset;
David Brownelle58b9e22008-02-04 22:28:25 -0800233 int status;
234
235 mutex_lock(&mcp->lock);
236 status = __mcp23s08_set(mcp, mask, value);
237 if (status == 0) {
238 mcp->cache[MCP_IODIR] &= ~mask;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100239 status = mcp->ops->write(mcp, MCP_IODIR, mcp->cache[MCP_IODIR]);
David Brownelle58b9e22008-02-04 22:28:25 -0800240 }
241 mutex_unlock(&mcp->lock);
242 return status;
243}
244
245/*----------------------------------------------------------------------*/
246
247#ifdef CONFIG_DEBUG_FS
248
249#include <linux/seq_file.h>
250
251/*
252 * This shows more info than the generic gpio dump code:
253 * pullups, deglitching, open drain drive.
254 */
255static void mcp23s08_dbg_show(struct seq_file *s, struct gpio_chip *chip)
256{
257 struct mcp23s08 *mcp;
258 char bank;
Roel Kluin1d1c1d92008-05-23 13:04:43 -0700259 int t;
David Brownelle58b9e22008-02-04 22:28:25 -0800260 unsigned mask;
261
262 mcp = container_of(chip, struct mcp23s08, chip);
263
264 /* NOTE: we only handle one bank for now ... */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100265 bank = '0' + ((mcp->addr >> 1) & 0x7);
David Brownelle58b9e22008-02-04 22:28:25 -0800266
267 mutex_lock(&mcp->lock);
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100268 t = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800269 if (t < 0) {
270 seq_printf(s, " I/O ERROR %d\n", t);
271 goto done;
272 }
273
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100274 for (t = 0, mask = 1; t < chip->ngpio; t++, mask <<= 1) {
David Brownelle58b9e22008-02-04 22:28:25 -0800275 const char *label;
276
277 label = gpiochip_is_requested(chip, t);
278 if (!label)
279 continue;
280
281 seq_printf(s, " gpio-%-3d P%c.%d (%-12s) %s %s %s",
282 chip->base + t, bank, t, label,
283 (mcp->cache[MCP_IODIR] & mask) ? "in " : "out",
284 (mcp->cache[MCP_GPIO] & mask) ? "hi" : "lo",
285 (mcp->cache[MCP_GPPU] & mask) ? " " : "up");
286 /* NOTE: ignoring the irq-related registers */
287 seq_printf(s, "\n");
288 }
289done:
290 mutex_unlock(&mcp->lock);
291}
292
293#else
294#define mcp23s08_dbg_show NULL
295#endif
296
297/*----------------------------------------------------------------------*/
298
David Brownell8f1cc3b2008-07-25 01:46:09 -0700299static int mcp23s08_probe_one(struct spi_device *spi, unsigned addr,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100300 unsigned type, unsigned base, unsigned pullups)
David Brownelle58b9e22008-02-04 22:28:25 -0800301{
David Brownell8f1cc3b2008-07-25 01:46:09 -0700302 struct mcp23s08_driver_data *data = spi_get_drvdata(spi);
303 struct mcp23s08 *mcp = data->mcp[addr];
David Brownelle58b9e22008-02-04 22:28:25 -0800304 int status;
David Brownelle58b9e22008-02-04 22:28:25 -0800305
David Brownelle58b9e22008-02-04 22:28:25 -0800306 mutex_init(&mcp->lock);
307
308 mcp->spi = spi;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700309 mcp->addr = 0x40 | (addr << 1);
David Brownelle58b9e22008-02-04 22:28:25 -0800310
David Brownelle58b9e22008-02-04 22:28:25 -0800311 mcp->chip.direction_input = mcp23s08_direction_input;
312 mcp->chip.get = mcp23s08_get;
313 mcp->chip.direction_output = mcp23s08_direction_output;
314 mcp->chip.set = mcp23s08_set;
315 mcp->chip.dbg_show = mcp23s08_dbg_show;
316
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100317 if (type == MCP_TYPE_S17) {
318 mcp->ops = &mcp23s17_ops;
319 mcp->chip.ngpio = 16;
320 mcp->chip.label = "mcp23s17";
321 } else {
322 mcp->ops = &mcp23s08_ops;
323 mcp->chip.ngpio = 8;
324 mcp->chip.label = "mcp23s08";
325 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700326 mcp->chip.base = base;
David Brownelle58b9e22008-02-04 22:28:25 -0800327 mcp->chip.can_sleep = 1;
David Brownelld8f388d2008-07-25 01:46:07 -0700328 mcp->chip.dev = &spi->dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700329 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800330
David Brownell8f1cc3b2008-07-25 01:46:09 -0700331 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
332 * and MCP_IOCON.HAEN = 1, so we work with all chips.
333 */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100334 status = mcp->ops->read(mcp, MCP_IOCON);
David Brownelle58b9e22008-02-04 22:28:25 -0800335 if (status < 0)
336 goto fail;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700337 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN)) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100338 /* mcp23s17 has IOCON twice, make sure they are in sync */
339 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
340 status |= IOCON_HAEN | (IOCON_HAEN << 8);
341 status = mcp->ops->write(mcp, MCP_IOCON, status);
David Brownelle58b9e22008-02-04 22:28:25 -0800342 if (status < 0)
343 goto fail;
344 }
345
346 /* configure ~100K pullups */
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100347 status = mcp->ops->write(mcp, MCP_GPPU, pullups);
David Brownelle58b9e22008-02-04 22:28:25 -0800348 if (status < 0)
349 goto fail;
350
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100351 status = mcp->ops->read_regs(mcp, 0, mcp->cache, ARRAY_SIZE(mcp->cache));
David Brownelle58b9e22008-02-04 22:28:25 -0800352 if (status < 0)
353 goto fail;
354
355 /* disable inverter on input */
356 if (mcp->cache[MCP_IPOL] != 0) {
357 mcp->cache[MCP_IPOL] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100358 status = mcp->ops->write(mcp, MCP_IPOL, 0);
359 if (status < 0)
360 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800361 }
362
363 /* disable irqs */
364 if (mcp->cache[MCP_GPINTEN] != 0) {
365 mcp->cache[MCP_GPINTEN] = 0;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100366 status = mcp->ops->write(mcp, MCP_GPINTEN, 0);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700367 if (status < 0)
368 goto fail;
David Brownelle58b9e22008-02-04 22:28:25 -0800369 }
370
371 status = gpiochip_add(&mcp->chip);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700372fail:
373 if (status < 0)
374 dev_dbg(&spi->dev, "can't setup chip %d, --> %d\n",
375 addr, status);
376 return status;
377}
378
379static int mcp23s08_probe(struct spi_device *spi)
380{
381 struct mcp23s08_platform_data *pdata;
382 unsigned addr;
383 unsigned chips = 0;
384 struct mcp23s08_driver_data *data;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100385 int status, type;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700386 unsigned base;
387
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100388 type = spi_get_device_id(spi)->driver_data;
389
David Brownell8f1cc3b2008-07-25 01:46:09 -0700390 pdata = spi->dev.platform_data;
Ben Dooksa342d212009-01-15 13:50:45 -0800391 if (!pdata || !gpio_is_valid(pdata->base)) {
392 dev_dbg(&spi->dev, "invalid or missing platform data\n");
393 return -EINVAL;
394 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700395
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100396 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700397 if (!pdata->chip[addr].is_present)
398 continue;
399 chips++;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100400 if ((type == MCP_TYPE_S08) && (addr > 3)) {
401 dev_err(&spi->dev,
402 "mcp23s08 only supports address 0..3\n");
403 return -EINVAL;
404 }
David Brownell8f1cc3b2008-07-25 01:46:09 -0700405 }
406 if (!chips)
407 return -ENODEV;
408
409 data = kzalloc(sizeof *data + chips * sizeof(struct mcp23s08),
410 GFP_KERNEL);
411 if (!data)
412 return -ENOMEM;
413 spi_set_drvdata(spi, data);
414
415 base = pdata->base;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100416 for (addr = 0; addr < ARRAY_SIZE(pdata->chip); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700417 if (!pdata->chip[addr].is_present)
418 continue;
419 chips--;
420 data->mcp[addr] = &data->chip[chips];
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100421 status = mcp23s08_probe_one(spi, addr, type, base,
422 pdata->chip[addr].pullups);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700423 if (status < 0)
424 goto fail;
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100425
426 base += (type == MCP_TYPE_S17) ? 16 : 8;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700427 }
428 data->ngpio = base - pdata->base;
David Brownelle58b9e22008-02-04 22:28:25 -0800429
430 /* NOTE: these chips have a relatively sane IRQ framework, with
431 * per-signal masking and level/edge triggering. It's not yet
432 * handled here...
433 */
434
David Brownelle58b9e22008-02-04 22:28:25 -0800435 return 0;
436
437fail:
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100438 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700439 int tmp;
440
441 if (!data->mcp[addr])
442 continue;
443 tmp = gpiochip_remove(&data->mcp[addr]->chip);
444 if (tmp < 0)
445 dev_err(&spi->dev, "%s --> %d\n", "remove", tmp);
446 }
447 kfree(data);
David Brownelle58b9e22008-02-04 22:28:25 -0800448 return status;
449}
450
451static int mcp23s08_remove(struct spi_device *spi)
452{
David Brownell8f1cc3b2008-07-25 01:46:09 -0700453 struct mcp23s08_driver_data *data = spi_get_drvdata(spi);
David Brownell8f1cc3b2008-07-25 01:46:09 -0700454 unsigned addr;
David Brownelle58b9e22008-02-04 22:28:25 -0800455 int status = 0;
456
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100457 for (addr = 0; addr < ARRAY_SIZE(data->mcp); addr++) {
David Brownell8f1cc3b2008-07-25 01:46:09 -0700458 int tmp;
459
460 if (!data->mcp[addr])
461 continue;
462
463 tmp = gpiochip_remove(&data->mcp[addr]->chip);
464 if (tmp < 0) {
465 dev_err(&spi->dev, "%s --> %d\n", "remove", tmp);
466 status = tmp;
467 }
468 }
David Brownelle58b9e22008-02-04 22:28:25 -0800469 if (status == 0)
David Brownell8f1cc3b2008-07-25 01:46:09 -0700470 kfree(data);
David Brownelle58b9e22008-02-04 22:28:25 -0800471 return status;
472}
473
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100474static const struct spi_device_id mcp23s08_ids[] = {
475 { "mcp23s08", MCP_TYPE_S08 },
476 { "mcp23s17", MCP_TYPE_S17 },
477 { },
478};
479MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
480
David Brownelle58b9e22008-02-04 22:28:25 -0800481static struct spi_driver mcp23s08_driver = {
482 .probe = mcp23s08_probe,
483 .remove = mcp23s08_remove,
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100484 .id_table = mcp23s08_ids,
David Brownelle58b9e22008-02-04 22:28:25 -0800485 .driver = {
486 .name = "mcp23s08",
487 .owner = THIS_MODULE,
488 },
489};
490
491/*----------------------------------------------------------------------*/
492
493static int __init mcp23s08_init(void)
494{
495 return spi_register_driver(&mcp23s08_driver);
496}
David Brownell673c0c02008-10-15 22:02:46 -0700497/* register after spi postcore initcall and before
498 * subsys initcalls that may rely on these GPIOs
499 */
500subsys_initcall(mcp23s08_init);
David Brownelle58b9e22008-02-04 22:28:25 -0800501
502static void __exit mcp23s08_exit(void)
503{
504 spi_unregister_driver(&mcp23s08_driver);
505}
506module_exit(mcp23s08_exit);
507
508MODULE_LICENSE("GPL");