diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-06-04 20:38:28 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-06 12:10:11 -0400 |
commit | c103de240439dfee24ac50eb99c8be3a30d13323 (patch) | |
tree | 014eeda779510d7d3dfabd1183ce7f1a288d367b /drivers/gpio/gpio-pca953x.c | |
parent | 8c31b1635b91e48f867e010cd7bcd06393e5858a (diff) |
gpio: reorganize drivers
Sort the gpio makefile and enforce the naming convention gpio-*.c for
gpio drivers.
v2: cleaned up filenames in Kconfig and comment blocks
v3: fixup use of BASIC_MMIO to GENERIC_GPIO for mxc
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/gpio/gpio-pca953x.c')
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 768 |
1 files changed, 768 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c new file mode 100644 index 000000000000..a610864b7e13 --- /dev/null +++ b/drivers/gpio/gpio-pca953x.c | |||
@@ -0,0 +1,768 @@ | |||
1 | /* | ||
2 | * PCA953x 4/8/16 bit I/O ports | ||
3 | * | ||
4 | * Copyright (C) 2005 Ben Gardner <bgardner@wabtec.com> | ||
5 | * Copyright (C) 2007 Marvell International Ltd. | ||
6 | * | ||
7 | * Derived from drivers/i2c/chips/pca9539.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; version 2 of the License. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/gpio.h> | ||
17 | #include <linux/interrupt.h> | ||
18 | #include <linux/irq.h> | ||
19 | #include <linux/i2c.h> | ||
20 | #include <linux/i2c/pca953x.h> | ||
21 | #include <linux/slab.h> | ||
22 | #ifdef CONFIG_OF_GPIO | ||
23 | #include <linux/of_platform.h> | ||
24 | #include <linux/of_gpio.h> | ||
25 | #endif | ||
26 | |||
27 | #define PCA953X_INPUT 0 | ||
28 | #define PCA953X_OUTPUT 1 | ||
29 | #define PCA953X_INVERT 2 | ||
30 | #define PCA953X_DIRECTION 3 | ||
31 | |||
32 | #define PCA957X_IN 0 | ||
33 | #define PCA957X_INVRT 1 | ||
34 | #define PCA957X_BKEN 2 | ||
35 | #define PCA957X_PUPD 3 | ||
36 | #define PCA957X_CFG 4 | ||
37 | #define PCA957X_OUT 5 | ||
38 | #define PCA957X_MSK 6 | ||
39 | #define PCA957X_INTS 7 | ||
40 | |||
41 | #define PCA_GPIO_MASK 0x00FF | ||
42 | #define PCA_INT 0x0100 | ||
43 | #define PCA953X_TYPE 0x1000 | ||
44 | #define PCA957X_TYPE 0x2000 | ||
45 | |||
46 | static const struct i2c_device_id pca953x_id[] = { | ||
47 | { "pca9534", 8 | PCA953X_TYPE | PCA_INT, }, | ||
48 | { "pca9535", 16 | PCA953X_TYPE | PCA_INT, }, | ||
49 | { "pca9536", 4 | PCA953X_TYPE, }, | ||
50 | { "pca9537", 4 | PCA953X_TYPE | PCA_INT, }, | ||
51 | { "pca9538", 8 | PCA953X_TYPE | PCA_INT, }, | ||
52 | { "pca9539", 16 | PCA953X_TYPE | PCA_INT, }, | ||
53 | { "pca9554", 8 | PCA953X_TYPE | PCA_INT, }, | ||
54 | { "pca9555", 16 | PCA953X_TYPE | PCA_INT, }, | ||
55 | { "pca9556", 8 | PCA953X_TYPE, }, | ||
56 | { "pca9557", 8 | PCA953X_TYPE, }, | ||
57 | { "pca9574", 8 | PCA957X_TYPE | PCA_INT, }, | ||
58 | { "pca9575", 16 | PCA957X_TYPE | PCA_INT, }, | ||
59 | |||
60 | { "max7310", 8 | PCA953X_TYPE, }, | ||
61 | { "max7312", 16 | PCA953X_TYPE | PCA_INT, }, | ||
62 | { "max7313", 16 | PCA953X_TYPE | PCA_INT, }, | ||
63 | { "max7315", 8 | PCA953X_TYPE | PCA_INT, }, | ||
64 | { "pca6107", 8 | PCA953X_TYPE | PCA_INT, }, | ||
65 | { "tca6408", 8 | PCA953X_TYPE | PCA_INT, }, | ||
66 | { "tca6416", 16 | PCA953X_TYPE | PCA_INT, }, | ||
67 | /* NYET: { "tca6424", 24, }, */ | ||
68 | { } | ||
69 | }; | ||
70 | MODULE_DEVICE_TABLE(i2c, pca953x_id); | ||
71 | |||
72 | struct pca953x_chip { | ||
73 | unsigned gpio_start; | ||
74 | uint16_t reg_output; | ||
75 | uint16_t reg_direction; | ||
76 | struct mutex i2c_lock; | ||
77 | |||
78 | #ifdef CONFIG_GPIO_PCA953X_IRQ | ||
79 | struct mutex irq_lock; | ||
80 | uint16_t irq_mask; | ||
81 | uint16_t irq_stat; | ||
82 | uint16_t irq_trig_raise; | ||
83 | uint16_t irq_trig_fall; | ||
84 | int irq_base; | ||
85 | #endif | ||
86 | |||
87 | struct i2c_client *client; | ||
88 | struct pca953x_platform_data *dyn_pdata; | ||
89 | struct gpio_chip gpio_chip; | ||
90 | const char *const *names; | ||
91 | int chip_type; | ||
92 | }; | ||
93 | |||
94 | static int pca953x_write_reg(struct pca953x_chip *chip, int reg, uint16_t val) | ||
95 | { | ||
96 | int ret = 0; | ||
97 | |||
98 | if (chip->gpio_chip.ngpio <= 8) | ||
99 | ret = i2c_smbus_write_byte_data(chip->client, reg, val); | ||
100 | else { | ||
101 | switch (chip->chip_type) { | ||
102 | case PCA953X_TYPE: | ||
103 | ret = i2c_smbus_write_word_data(chip->client, | ||
104 | reg << 1, val); | ||
105 | break; | ||
106 | case PCA957X_TYPE: | ||
107 | ret = i2c_smbus_write_byte_data(chip->client, reg << 1, | ||
108 | val & 0xff); | ||
109 | if (ret < 0) | ||
110 | break; | ||
111 | ret = i2c_smbus_write_byte_data(chip->client, | ||
112 | (reg << 1) + 1, | ||
113 | (val & 0xff00) >> 8); | ||
114 | break; | ||
115 | } | ||
116 | } | ||
117 | |||
118 | if (ret < 0) { | ||
119 | dev_err(&chip->client->dev, "failed writing register\n"); | ||
120 | return ret; | ||
121 | } | ||
122 | |||
123 | return 0; | ||
124 | } | ||
125 | |||
126 | static int pca953x_read_reg(struct pca953x_chip *chip, int reg, uint16_t *val) | ||
127 | { | ||
128 | int ret; | ||
129 | |||
130 | if (chip->gpio_chip.ngpio <= 8) | ||
131 | ret = i2c_smbus_read_byte_data(chip->client, reg); | ||
132 | else | ||
133 | ret = i2c_smbus_read_word_data(chip->client, reg << 1); | ||
134 | |||
135 | if (ret < 0) { | ||
136 | dev_err(&chip->client->dev, "failed reading register\n"); | ||
137 | return ret; | ||
138 | } | ||
139 | |||
140 | *val = (uint16_t)ret; | ||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off) | ||
145 | { | ||
146 | struct pca953x_chip *chip; | ||
147 | uint16_t reg_val; | ||
148 | int ret, offset = 0; | ||
149 | |||
150 | chip = container_of(gc, struct pca953x_chip, gpio_chip); | ||
151 | |||
152 | mutex_lock(&chip->i2c_lock); | ||
153 | reg_val = chip->reg_direction | (1u << off); | ||
154 | |||
155 | switch (chip->chip_type) { | ||
156 | case PCA953X_TYPE: | ||
157 | offset = PCA953X_DIRECTION; | ||
158 | break; | ||
159 | case PCA957X_TYPE: | ||
160 | offset = PCA957X_CFG; | ||
161 | break; | ||
162 | } | ||
163 | ret = pca953x_write_reg(chip, offset, reg_val); | ||
164 | if (ret) | ||
165 | goto exit; | ||
166 | |||
167 | chip->reg_direction = reg_val; | ||
168 | ret = 0; | ||
169 | exit: | ||
170 | mutex_unlock(&chip->i2c_lock); | ||
171 | return ret; | ||
172 | } | ||
173 | |||
174 | static int pca953x_gpio_direction_output(struct gpio_chip *gc, | ||
175 | unsigned off, int val) | ||
176 | { | ||
177 | struct pca953x_chip *chip; | ||
178 | uint16_t reg_val; | ||
179 | int ret, offset = 0; | ||
180 | |||
181 | chip = container_of(gc, struct pca953x_chip, gpio_chip); | ||
182 | |||
183 | mutex_lock(&chip->i2c_lock); | ||
184 | /* set output level */ | ||
185 | if (val) | ||
186 | reg_val = chip->reg_output | (1u << off); | ||
187 | else | ||
188 | reg_val = chip->reg_output & ~(1u << off); | ||
189 | |||
190 | switch (chip->chip_type) { | ||
191 | case PCA953X_TYPE: | ||
192 | offset = PCA953X_OUTPUT; | ||
193 | break; | ||
194 | case PCA957X_TYPE: | ||
195 | offset = PCA957X_OUT; | ||
196 | break; | ||
197 | } | ||
198 | ret = pca953x_write_reg(chip, offset, reg_val); | ||
199 | if (ret) | ||
200 | goto exit; | ||
201 | |||
202 | chip->reg_output = reg_val; | ||
203 | |||
204 | /* then direction */ | ||
205 | reg_val = chip->reg_direction & ~(1u << off); | ||
206 | switch (chip->chip_type) { | ||
207 | case PCA953X_TYPE: | ||
208 | offset = PCA953X_DIRECTION; | ||
209 | break; | ||
210 | case PCA957X_TYPE: | ||
211 | offset = PCA957X_CFG; | ||
212 | break; | ||
213 | } | ||
214 | ret = pca953x_write_reg(chip, offset, reg_val); | ||
215 | if (ret) | ||
216 | goto exit; | ||
217 | |||
218 | chip->reg_direction = reg_val; | ||
219 | ret = 0; | ||
220 | exit: | ||
221 | mutex_unlock(&chip->i2c_lock); | ||
222 | return ret; | ||
223 | } | ||
224 | |||
225 | static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off) | ||
226 | { | ||
227 | struct pca953x_chip *chip; | ||
228 | uint16_t reg_val; | ||
229 | int ret, offset = 0; | ||
230 | |||
231 | chip = container_of(gc, struct pca953x_chip, gpio_chip); | ||
232 | |||
233 | mutex_lock(&chip->i2c_lock); | ||
234 | switch (chip->chip_type) { | ||
235 | case PCA953X_TYPE: | ||
236 | offset = PCA953X_INPUT; | ||
237 | break; | ||
238 | case PCA957X_TYPE: | ||
239 | offset = PCA957X_IN; | ||
240 | break; | ||
241 | } | ||
242 | ret = pca953x_read_reg(chip, offset, ®_val); | ||
243 | mutex_unlock(&chip->i2c_lock); | ||
244 | if (ret < 0) { | ||
245 | /* NOTE: diagnostic already emitted; that's all we should | ||
246 | * do unless gpio_*_value_cansleep() calls become different | ||
247 | * from their nonsleeping siblings (and report faults). | ||
248 | */ | ||
249 | return 0; | ||
250 | } | ||
251 | |||
252 | return (reg_val & (1u << off)) ? 1 : 0; | ||
253 | } | ||
254 | |||
255 | static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val) | ||
256 | { | ||
257 | struct pca953x_chip *chip; | ||
258 | uint16_t reg_val; | ||
259 | int ret, offset = 0; | ||
260 | |||
261 | chip = container_of(gc, struct pca953x_chip, gpio_chip); | ||
262 | |||
263 | mutex_lock(&chip->i2c_lock); | ||
264 | if (val) | ||
265 | reg_val = chip->reg_output | (1u << off); | ||
266 | else | ||
267 | reg_val = chip->reg_output & ~(1u << off); | ||
268 | |||
269 | switch (chip->chip_type) { | ||
270 | case PCA953X_TYPE: | ||
271 | offset = PCA953X_OUTPUT; | ||
272 | break; | ||
273 | case PCA957X_TYPE: | ||
274 | offset = PCA957X_OUT; | ||
275 | break; | ||
276 | } | ||
277 | ret = pca953x_write_reg(chip, offset, reg_val); | ||
278 | if (ret) | ||
279 | goto exit; | ||
280 | |||
281 | chip->reg_output = reg_val; | ||
282 | exit: | ||
283 | mutex_unlock(&chip->i2c_lock); | ||
284 | } | ||
285 | |||
286 | static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios) | ||
287 | { | ||
288 | struct gpio_chip *gc; | ||
289 | |||
290 | gc = &chip->gpio_chip; | ||
291 | |||
292 | gc->direction_input = pca953x_gpio_direction_input; | ||
293 | gc->direction_output = pca953x_gpio_direction_output; | ||
294 | gc->get = pca953x_gpio_get_value; | ||
295 | gc->set = pca953x_gpio_set_value; | ||
296 | gc->can_sleep = 1; | ||
297 | |||
298 | gc->base = chip->gpio_start; | ||
299 | gc->ngpio = gpios; | ||
300 | gc->label = chip->client->name; | ||
301 | gc->dev = &chip->client->dev; | ||
302 | gc->owner = THIS_MODULE; | ||
303 | gc->names = chip->names; | ||
304 | } | ||
305 | |||
306 | #ifdef CONFIG_GPIO_PCA953X_IRQ | ||
307 | static int pca953x_gpio_to_irq(struct gpio_chip *gc, unsigned off) | ||
308 | { | ||
309 | struct pca953x_chip *chip; | ||
310 | |||
311 | chip = container_of(gc, struct pca953x_chip, gpio_chip); | ||
312 | return chip->irq_base + off; | ||
313 | } | ||
314 | |||
315 | static void pca953x_irq_mask(struct irq_data *d) | ||
316 | { | ||
317 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); | ||
318 | |||
319 | chip->irq_mask &= ~(1 << (d->irq - chip->irq_base)); | ||
320 | } | ||
321 | |||
322 | static void pca953x_irq_unmask(struct irq_data *d) | ||
323 | { | ||
324 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); | ||
325 | |||
326 | chip->irq_mask |= 1 << (d->irq - chip->irq_base); | ||
327 | } | ||
328 | |||
329 | static void pca953x_irq_bus_lock(struct irq_data *d) | ||
330 | { | ||
331 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); | ||
332 | |||
333 | mutex_lock(&chip->irq_lock); | ||
334 | } | ||
335 | |||
336 | static void pca953x_irq_bus_sync_unlock(struct irq_data *d) | ||
337 | { | ||
338 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); | ||
339 | uint16_t new_irqs; | ||
340 | uint16_t level; | ||
341 | |||
342 | /* Look for any newly setup interrupt */ | ||
343 | new_irqs = chip->irq_trig_fall | chip->irq_trig_raise; | ||
344 | new_irqs &= ~chip->reg_direction; | ||
345 | |||
346 | while (new_irqs) { | ||
347 | level = __ffs(new_irqs); | ||
348 | pca953x_gpio_direction_input(&chip->gpio_chip, level); | ||
349 | new_irqs &= ~(1 << level); | ||
350 | } | ||
351 | |||
352 | mutex_unlock(&chip->irq_lock); | ||
353 | } | ||
354 | |||
355 | static int pca953x_irq_set_type(struct irq_data *d, unsigned int type) | ||
356 | { | ||
357 | struct pca953x_chip *chip = irq_data_get_irq_chip_data(d); | ||
358 | uint16_t level = d->irq - chip->irq_base; | ||
359 | uint16_t mask = 1 << level; | ||
360 | |||
361 | if (!(type & IRQ_TYPE_EDGE_BOTH)) { | ||
362 | dev_err(&chip->client->dev, "irq %d: unsupported type %d\n", | ||
363 | d->irq, type); | ||
364 | return -EINVAL; | ||
365 | } | ||
366 | |||
367 | if (type & IRQ_TYPE_EDGE_FALLING) | ||
368 | chip->irq_trig_fall |= mask; | ||
369 | else | ||
370 | chip->irq_trig_fall &= ~mask; | ||
371 | |||
372 | if (type & IRQ_TYPE_EDGE_RISING) | ||
373 | chip->irq_trig_raise |= mask; | ||
374 | else | ||
375 | chip->irq_trig_raise &= ~mask; | ||
376 | |||
377 | return 0; | ||
378 | } | ||
379 | |||
380 | static struct irq_chip pca953x_irq_chip = { | ||
381 | .name = "pca953x", | ||
382 | .irq_mask = pca953x_irq_mask, | ||
383 | .irq_unmask = pca953x_irq_unmask, | ||
384 | .irq_bus_lock = pca953x_irq_bus_lock, | ||
385 | .irq_bus_sync_unlock = pca953x_irq_bus_sync_unlock, | ||
386 | .irq_set_type = pca953x_irq_set_type, | ||
387 | }; | ||
388 | |||
389 | static uint16_t pca953x_irq_pending(struct pca953x_chip *chip) | ||
390 | { | ||
391 | uint16_t cur_stat; | ||
392 | uint16_t old_stat; | ||
393 | uint16_t pending; | ||
394 | uint16_t trigger; | ||
395 | int ret, offset = 0; | ||
396 | |||
397 | switch (chip->chip_type) { | ||
398 | case PCA953X_TYPE: | ||
399 | offset = PCA953X_INPUT; | ||
400 | break; | ||
401 | case PCA957X_TYPE: | ||
402 | offset = PCA957X_IN; | ||
403 | break; | ||
404 | } | ||
405 | ret = pca953x_read_reg(chip, offset, &cur_stat); | ||
406 | if (ret) | ||
407 | return 0; | ||
408 | |||
409 | /* Remove output pins from the equation */ | ||
410 | cur_stat &= chip->reg_direction; | ||
411 | |||
412 | old_stat = chip->irq_stat; | ||
413 | trigger = (cur_stat ^ old_stat) & chip->irq_mask; | ||
414 | |||
415 | if (!trigger) | ||
416 | return 0; | ||
417 | |||
418 | chip->irq_stat = cur_stat; | ||
419 | |||
420 | pending = (old_stat & chip->irq_trig_fall) | | ||
421 | (cur_stat & chip->irq_trig_raise); | ||
422 | pending &= trigger; | ||
423 | |||
424 | return pending; | ||
425 | } | ||
426 | |||
427 | static irqreturn_t pca953x_irq_handler(int irq, void *devid) | ||
428 | { | ||
429 | struct pca953x_chip *chip = devid; | ||
430 | uint16_t pending; | ||
431 | uint16_t level; | ||
432 | |||
433 | pending = pca953x_irq_pending(chip); | ||
434 | |||
435 | if (!pending) | ||
436 | return IRQ_HANDLED; | ||
437 | |||
438 | do { | ||
439 | level = __ffs(pending); | ||
440 | generic_handle_irq(level + chip->irq_base); | ||
441 | |||
442 | pending &= ~(1 << level); | ||
443 | } while (pending); | ||
444 | |||
445 | return IRQ_HANDLED; | ||
446 | } | ||
447 | |||
448 | static int pca953x_irq_setup(struct pca953x_chip *chip, | ||
449 | const struct i2c_device_id *id) | ||
450 | { | ||
451 | struct i2c_client *client = chip->client; | ||
452 | struct pca953x_platform_data *pdata = client->dev.platform_data; | ||
453 | int ret, offset = 0; | ||
454 | |||
455 | if (pdata->irq_base != -1 | ||
456 | && (id->driver_data & PCA_INT)) { | ||
457 | int lvl; | ||
458 | |||
459 | switch (chip->chip_type) { | ||
460 | case PCA953X_TYPE: | ||
461 | offset = PCA953X_INPUT; | ||
462 | break; | ||
463 | case PCA957X_TYPE: | ||
464 | offset = PCA957X_IN; | ||
465 | break; | ||
466 | } | ||
467 | ret = pca953x_read_reg(chip, offset, &chip->irq_stat); | ||
468 | if (ret) | ||
469 | goto out_failed; | ||
470 | |||
471 | /* | ||
472 | * There is no way to know which GPIO line generated the | ||
473 | * interrupt. We have to rely on the previous read for | ||
474 | * this purpose. | ||
475 | */ | ||
476 | chip->irq_stat &= chip->reg_direction; | ||
477 | chip->irq_base = pdata->irq_base; | ||
478 | mutex_init(&chip->irq_lock); | ||
479 | |||
480 | for (lvl = 0; lvl < chip->gpio_chip.ngpio; lvl++) { | ||
481 | int irq = lvl + chip->irq_base; | ||
482 | |||
483 | irq_set_chip_data(irq, chip); | ||
484 | irq_set_chip_and_handler(irq, &pca953x_irq_chip, | ||
485 | handle_simple_irq); | ||
486 | #ifdef CONFIG_ARM | ||
487 | set_irq_flags(irq, IRQF_VALID); | ||
488 | #else | ||
489 | irq_set_noprobe(irq); | ||
490 | #endif | ||
491 | } | ||
492 | |||
493 | ret = request_threaded_irq(client->irq, | ||
494 | NULL, | ||
495 | pca953x_irq_handler, | ||
496 | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, | ||
497 | dev_name(&client->dev), chip); | ||
498 | if (ret) { | ||
499 | dev_err(&client->dev, "failed to request irq %d\n", | ||
500 | client->irq); | ||
501 | goto out_failed; | ||
502 | } | ||
503 | |||
504 | chip->gpio_chip.to_irq = pca953x_gpio_to_irq; | ||
505 | } | ||
506 | |||
507 | return 0; | ||
508 | |||
509 | out_failed: | ||
510 | chip->irq_base = -1; | ||
511 | return ret; | ||
512 | } | ||
513 | |||
514 | static void pca953x_irq_teardown(struct pca953x_chip *chip) | ||
515 | { | ||
516 | if (chip->irq_base != -1) | ||
517 | free_irq(chip->client->irq, chip); | ||
518 | } | ||
519 | #else /* CONFIG_GPIO_PCA953X_IRQ */ | ||
520 | static int pca953x_irq_setup(struct pca953x_chip *chip, | ||
521 | const struct i2c_device_id *id) | ||
522 | { | ||
523 | struct i2c_client *client = chip->client; | ||
524 | struct pca953x_platform_data *pdata = client->dev.platform_data; | ||
525 | |||
526 | if (pdata->irq_base != -1 && (id->driver_data & PCA_INT)) | ||
527 | dev_warn(&client->dev, "interrupt support not compiled in\n"); | ||
528 | |||
529 | return 0; | ||
530 | } | ||
531 | |||
532 | static void pca953x_irq_teardown(struct pca953x_chip *chip) | ||
533 | { | ||
534 | } | ||
535 | #endif | ||
536 | |||
537 | /* | ||
538 | * Handlers for alternative sources of platform_data | ||
539 | */ | ||
540 | #ifdef CONFIG_OF_GPIO | ||
541 | /* | ||
542 | * Translate OpenFirmware node properties into platform_data | ||
543 | */ | ||
544 | static struct pca953x_platform_data * | ||
545 | pca953x_get_alt_pdata(struct i2c_client *client) | ||
546 | { | ||
547 | struct pca953x_platform_data *pdata; | ||
548 | struct device_node *node; | ||
549 | const __be32 *val; | ||
550 | int size; | ||
551 | |||
552 | node = client->dev.of_node; | ||
553 | if (node == NULL) | ||
554 | return NULL; | ||
555 | |||
556 | pdata = kzalloc(sizeof(struct pca953x_platform_data), GFP_KERNEL); | ||
557 | if (pdata == NULL) { | ||
558 | dev_err(&client->dev, "Unable to allocate platform_data\n"); | ||
559 | return NULL; | ||
560 | } | ||
561 | |||
562 | pdata->gpio_base = -1; | ||
563 | val = of_get_property(node, "linux,gpio-base", &size); | ||
564 | if (val) { | ||
565 | if (size != sizeof(*val)) | ||
566 | dev_warn(&client->dev, "%s: wrong linux,gpio-base\n", | ||
567 | node->full_name); | ||
568 | else | ||
569 | pdata->gpio_base = be32_to_cpup(val); | ||
570 | } | ||
571 | |||
572 | val = of_get_property(node, "polarity", NULL); | ||
573 | if (val) | ||
574 | pdata->invert = *val; | ||
575 | |||
576 | return pdata; | ||
577 | } | ||
578 | #else | ||
579 | static struct pca953x_platform_data * | ||
580 | pca953x_get_alt_pdata(struct i2c_client *client) | ||
581 | { | ||
582 | return NULL; | ||
583 | } | ||
584 | #endif | ||
585 | |||
586 | static int __devinit device_pca953x_init(struct pca953x_chip *chip, int invert) | ||
587 | { | ||
588 | int ret; | ||
589 | |||
590 | ret = pca953x_read_reg(chip, PCA953X_OUTPUT, &chip->reg_output); | ||
591 | if (ret) | ||
592 | goto out; | ||
593 | |||
594 | ret = pca953x_read_reg(chip, PCA953X_DIRECTION, | ||
595 | &chip->reg_direction); | ||
596 | if (ret) | ||
597 | goto out; | ||
598 | |||
599 | /* set platform specific polarity inversion */ | ||
600 | ret = pca953x_write_reg(chip, PCA953X_INVERT, invert); | ||
601 | if (ret) | ||
602 | goto out; | ||
603 | return 0; | ||
604 | out: | ||
605 | return ret; | ||
606 | } | ||
607 | |||
608 | static int __devinit device_pca957x_init(struct pca953x_chip *chip, int invert) | ||
609 | { | ||
610 | int ret; | ||
611 | uint16_t val = 0; | ||
612 | |||
613 | /* Let every port in proper state, that could save power */ | ||
614 | pca953x_write_reg(chip, PCA957X_PUPD, 0x0); | ||
615 | pca953x_write_reg(chip, PCA957X_CFG, 0xffff); | ||
616 | pca953x_write_reg(chip, PCA957X_OUT, 0x0); | ||
617 | |||
618 | ret = pca953x_read_reg(chip, PCA957X_IN, &val); | ||
619 | if (ret) | ||
620 | goto out; | ||
621 | ret = pca953x_read_reg(chip, PCA957X_OUT, &chip->reg_output); | ||
622 | if (ret) | ||
623 | goto out; | ||
624 | ret = pca953x_read_reg(chip, PCA957X_CFG, &chip->reg_direction); | ||
625 | if (ret) | ||
626 | goto out; | ||
627 | |||
628 | /* set platform specific polarity inversion */ | ||
629 | pca953x_write_reg(chip, PCA957X_INVRT, invert); | ||
630 | |||
631 | /* To enable register 6, 7 to controll pull up and pull down */ | ||
632 | pca953x_write_reg(chip, PCA957X_BKEN, 0x202); | ||
633 | |||
634 | return 0; | ||
635 | out: | ||
636 | return ret; | ||
637 | } | ||
638 | |||
639 | static int __devinit pca953x_probe(struct i2c_client *client, | ||
640 | const struct i2c_device_id *id) | ||
641 | { | ||
642 | struct pca953x_platform_data *pdata; | ||
643 | struct pca953x_chip *chip; | ||
644 | int ret = 0; | ||
645 | |||
646 | chip = kzalloc(sizeof(struct pca953x_chip), GFP_KERNEL); | ||
647 | if (chip == NULL) | ||
648 | return -ENOMEM; | ||
649 | |||
650 | pdata = client->dev.platform_data; | ||
651 | if (pdata == NULL) { | ||
652 | pdata = pca953x_get_alt_pdata(client); | ||
653 | /* | ||
654 | * Unlike normal platform_data, this is allocated | ||
655 | * dynamically and must be freed in the driver | ||
656 | */ | ||
657 | chip->dyn_pdata = pdata; | ||
658 | } | ||
659 | |||
660 | if (pdata == NULL) { | ||
661 | dev_dbg(&client->dev, "no platform data\n"); | ||
662 | ret = -EINVAL; | ||
663 | goto out_failed; | ||
664 | } | ||
665 | |||
666 | chip->client = client; | ||
667 | |||
668 | chip->gpio_start = pdata->gpio_base; | ||
669 | |||
670 | chip->names = pdata->names; | ||
671 | chip->chip_type = id->driver_data & (PCA953X_TYPE | PCA957X_TYPE); | ||
672 | |||
673 | mutex_init(&chip->i2c_lock); | ||
674 | |||
675 | /* initialize cached registers from their original values. | ||
676 | * we can't share this chip with another i2c master. | ||
677 | */ | ||
678 | pca953x_setup_gpio(chip, id->driver_data & PCA_GPIO_MASK); | ||
679 | |||
680 | if (chip->chip_type == PCA953X_TYPE) | ||
681 | device_pca953x_init(chip, pdata->invert); | ||
682 | else if (chip->chip_type == PCA957X_TYPE) | ||
683 | device_pca957x_init(chip, pdata->invert); | ||
684 | else | ||
685 | goto out_failed; | ||
686 | |||
687 | ret = pca953x_irq_setup(chip, id); | ||
688 | if (ret) | ||
689 | goto out_failed; | ||
690 | |||
691 | ret = gpiochip_add(&chip->gpio_chip); | ||
692 | if (ret) | ||
693 | goto out_failed_irq; | ||
694 | |||
695 | if (pdata->setup) { | ||
696 | ret = pdata->setup(client, chip->gpio_chip.base, | ||
697 | chip->gpio_chip.ngpio, pdata->context); | ||
698 | if (ret < 0) | ||
699 | dev_warn(&client->dev, "setup failed, %d\n", ret); | ||
700 | } | ||
701 | |||
702 | i2c_set_clientdata(client, chip); | ||
703 | return 0; | ||
704 | |||
705 | out_failed_irq: | ||
706 | pca953x_irq_teardown(chip); | ||
707 | out_failed: | ||
708 | kfree(chip->dyn_pdata); | ||
709 | kfree(chip); | ||
710 | return ret; | ||
711 | } | ||
712 | |||
713 | static int pca953x_remove(struct i2c_client *client) | ||
714 | { | ||
715 | struct pca953x_platform_data *pdata = client->dev.platform_data; | ||
716 | struct pca953x_chip *chip = i2c_get_clientdata(client); | ||
717 | int ret = 0; | ||
718 | |||
719 | if (pdata->teardown) { | ||
720 | ret = pdata->teardown(client, chip->gpio_chip.base, | ||
721 | chip->gpio_chip.ngpio, pdata->context); | ||
722 | if (ret < 0) { | ||
723 | dev_err(&client->dev, "%s failed, %d\n", | ||
724 | "teardown", ret); | ||
725 | return ret; | ||
726 | } | ||
727 | } | ||
728 | |||
729 | ret = gpiochip_remove(&chip->gpio_chip); | ||
730 | if (ret) { | ||
731 | dev_err(&client->dev, "%s failed, %d\n", | ||
732 | "gpiochip_remove()", ret); | ||
733 | return ret; | ||
734 | } | ||
735 | |||
736 | pca953x_irq_teardown(chip); | ||
737 | kfree(chip->dyn_pdata); | ||
738 | kfree(chip); | ||
739 | return 0; | ||
740 | } | ||
741 | |||
742 | static struct i2c_driver pca953x_driver = { | ||
743 | .driver = { | ||
744 | .name = "pca953x", | ||
745 | }, | ||
746 | .probe = pca953x_probe, | ||
747 | .remove = pca953x_remove, | ||
748 | .id_table = pca953x_id, | ||
749 | }; | ||
750 | |||
751 | static int __init pca953x_init(void) | ||
752 | { | ||
753 | return i2c_add_driver(&pca953x_driver); | ||
754 | } | ||
755 | /* register after i2c postcore initcall and before | ||
756 | * subsys initcalls that may rely on these GPIOs | ||
757 | */ | ||
758 | subsys_initcall(pca953x_init); | ||
759 | |||
760 | static void __exit pca953x_exit(void) | ||
761 | { | ||
762 | i2c_del_driver(&pca953x_driver); | ||
763 | } | ||
764 | module_exit(pca953x_exit); | ||
765 | |||
766 | MODULE_AUTHOR("eric miao <eric.miao@marvell.com>"); | ||
767 | MODULE_DESCRIPTION("GPIO expander driver for PCA953x"); | ||
768 | MODULE_LICENSE("GPL"); | ||