include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpio / pca953x.c
CommitLineData
9e60fdcf 1/*
f5e8ff48 2 * pca953x.c - 4/8/16 bit I/O ports
9e60fdcf 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>
d120c17f 16#include <linux/gpio.h>
89ea8bbe
MZ
17#include <linux/interrupt.h>
18#include <linux/irq.h>
9e60fdcf 19#include <linux/i2c.h>
d1c057e3 20#include <linux/i2c/pca953x.h>
5a0e3ad6 21#include <linux/slab.h>
1965d303
NC
22#ifdef CONFIG_OF_GPIO
23#include <linux/of_platform.h>
24#include <linux/of_gpio.h>
25#endif
9e60fdcf 26
f5e8ff48
GL
27#define PCA953X_INPUT 0
28#define PCA953X_OUTPUT 1
29#define PCA953X_INVERT 2
30#define PCA953X_DIRECTION 3
9e60fdcf 31
89ea8bbe
MZ
32#define PCA953X_GPIOS 0x00FF
33#define PCA953X_INT 0x0100
34
3760f736 35static const struct i2c_device_id pca953x_id[] = {
89ea8bbe
MZ
36 { "pca9534", 8 | PCA953X_INT, },
37 { "pca9535", 16 | PCA953X_INT, },
f5e8ff48 38 { "pca9536", 4, },
89ea8bbe
MZ
39 { "pca9537", 4 | PCA953X_INT, },
40 { "pca9538", 8 | PCA953X_INT, },
41 { "pca9539", 16 | PCA953X_INT, },
42 { "pca9554", 8 | PCA953X_INT, },
43 { "pca9555", 16 | PCA953X_INT, },
10dfb54c 44 { "pca9556", 8, },
f39e5781 45 { "pca9557", 8, },
ab5dc372 46
7059d4b0 47 { "max7310", 8, },
89ea8bbe
MZ
48 { "max7312", 16 | PCA953X_INT, },
49 { "max7313", 16 | PCA953X_INT, },
50 { "max7315", 8 | PCA953X_INT, },
51 { "pca6107", 8 | PCA953X_INT, },
52 { "tca6408", 8 | PCA953X_INT, },
53 { "tca6416", 16 | PCA953X_INT, },
ab5dc372 54 /* NYET: { "tca6424", 24, }, */
3760f736 55 { }
f5e8ff48 56};
3760f736 57MODULE_DEVICE_TABLE(i2c, pca953x_id);
9e60fdcf 58
f3dc3630 59struct pca953x_chip {
9e60fdcf 60 unsigned gpio_start;
61 uint16_t reg_output;
62 uint16_t reg_direction;
63
89ea8bbe
MZ
64#ifdef CONFIG_GPIO_PCA953X_IRQ
65 struct mutex irq_lock;
66 uint16_t irq_mask;
67 uint16_t irq_stat;
68 uint16_t irq_trig_raise;
69 uint16_t irq_trig_fall;
70 int irq_base;
71#endif
72
9e60fdcf 73 struct i2c_client *client;
1965d303 74 struct pca953x_platform_data *dyn_pdata;
9e60fdcf 75 struct gpio_chip gpio_chip;
77906a54 76 char **names;
9e60fdcf 77};
78
f3dc3630 79static int pca953x_write_reg(struct pca953x_chip *chip, int reg, uint16_t val)
9e60fdcf 80{
f5e8ff48
GL
81 int ret;
82
83 if (chip->gpio_chip.ngpio <= 8)
84 ret = i2c_smbus_write_byte_data(chip->client, reg, val);
9e60fdcf 85 else
f5e8ff48
GL
86 ret = i2c_smbus_write_word_data(chip->client, reg << 1, val);
87
88 if (ret < 0) {
89 dev_err(&chip->client->dev, "failed writing register\n");
ab5dc372 90 return ret;
f5e8ff48
GL
91 }
92
93 return 0;
9e60fdcf 94}
95
f3dc3630 96static int pca953x_read_reg(struct pca953x_chip *chip, int reg, uint16_t *val)
9e60fdcf 97{
98 int ret;
99
f5e8ff48
GL
100 if (chip->gpio_chip.ngpio <= 8)
101 ret = i2c_smbus_read_byte_data(chip->client, reg);
102 else
103 ret = i2c_smbus_read_word_data(chip->client, reg << 1);
104
9e60fdcf 105 if (ret < 0) {
106 dev_err(&chip->client->dev, "failed reading register\n");
ab5dc372 107 return ret;
9e60fdcf 108 }
109
110 *val = (uint16_t)ret;
111 return 0;
112}
113
f3dc3630 114static int pca953x_gpio_direction_input(struct gpio_chip *gc, unsigned off)
9e60fdcf 115{
f3dc3630 116 struct pca953x_chip *chip;
9e60fdcf 117 uint16_t reg_val;
118 int ret;
119
f3dc3630 120 chip = container_of(gc, struct pca953x_chip, gpio_chip);
9e60fdcf 121
122 reg_val = chip->reg_direction | (1u << off);
f3dc3630 123 ret = pca953x_write_reg(chip, PCA953X_DIRECTION, reg_val);
9e60fdcf 124 if (ret)
125 return ret;
126
127 chip->reg_direction = reg_val;
128 return 0;
129}
130
f3dc3630 131static int pca953x_gpio_direction_output(struct gpio_chip *gc,
9e60fdcf 132 unsigned off, int val)
133{
f3dc3630 134 struct pca953x_chip *chip;
9e60fdcf 135 uint16_t reg_val;
136 int ret;
137
f3dc3630 138 chip = container_of(gc, struct pca953x_chip, gpio_chip);
9e60fdcf 139
140 /* set output level */
141 if (val)
142 reg_val = chip->reg_output | (1u << off);
143 else
144 reg_val = chip->reg_output & ~(1u << off);
145
f3dc3630 146 ret = pca953x_write_reg(chip, PCA953X_OUTPUT, reg_val);
9e60fdcf 147 if (ret)
148 return ret;
149
150 chip->reg_output = reg_val;
151
152 /* then direction */
153 reg_val = chip->reg_direction & ~(1u << off);
f3dc3630 154 ret = pca953x_write_reg(chip, PCA953X_DIRECTION, reg_val);
9e60fdcf 155 if (ret)
156 return ret;
157
158 chip->reg_direction = reg_val;
159 return 0;
160}
161
f3dc3630 162static int pca953x_gpio_get_value(struct gpio_chip *gc, unsigned off)
9e60fdcf 163{
f3dc3630 164 struct pca953x_chip *chip;
9e60fdcf 165 uint16_t reg_val;
166 int ret;
167
f3dc3630 168 chip = container_of(gc, struct pca953x_chip, gpio_chip);
9e60fdcf 169
f3dc3630 170 ret = pca953x_read_reg(chip, PCA953X_INPUT, &reg_val);
9e60fdcf 171 if (ret < 0) {
172 /* NOTE: diagnostic already emitted; that's all we should
173 * do unless gpio_*_value_cansleep() calls become different
174 * from their nonsleeping siblings (and report faults).
175 */
176 return 0;
177 }
178
179 return (reg_val & (1u << off)) ? 1 : 0;
180}
181
f3dc3630 182static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val)
9e60fdcf 183{
f3dc3630 184 struct pca953x_chip *chip;
9e60fdcf 185 uint16_t reg_val;
186 int ret;
187
f3dc3630 188 chip = container_of(gc, struct pca953x_chip, gpio_chip);
9e60fdcf 189
190 if (val)
191 reg_val = chip->reg_output | (1u << off);
192 else
193 reg_val = chip->reg_output & ~(1u << off);
194
f3dc3630 195 ret = pca953x_write_reg(chip, PCA953X_OUTPUT, reg_val);
9e60fdcf 196 if (ret)
197 return;
198
199 chip->reg_output = reg_val;
200}
201
f5e8ff48 202static void pca953x_setup_gpio(struct pca953x_chip *chip, int gpios)
9e60fdcf 203{
204 struct gpio_chip *gc;
205
206 gc = &chip->gpio_chip;
207
f3dc3630
GL
208 gc->direction_input = pca953x_gpio_direction_input;
209 gc->direction_output = pca953x_gpio_direction_output;
210 gc->get = pca953x_gpio_get_value;
211 gc->set = pca953x_gpio_set_value;
84207805 212 gc->can_sleep = 1;
9e60fdcf 213
214 gc->base = chip->gpio_start;
f5e8ff48
GL
215 gc->ngpio = gpios;
216 gc->label = chip->client->name;
d8f388d8 217 gc->dev = &chip->client->dev;
d72cbed0 218 gc->owner = THIS_MODULE;
77906a54 219 gc->names = chip->names;
9e60fdcf 220}
221
89ea8bbe
MZ
222#ifdef CONFIG_GPIO_PCA953X_IRQ
223static int pca953x_gpio_to_irq(struct gpio_chip *gc, unsigned off)
224{
225 struct pca953x_chip *chip;
226
227 chip = container_of(gc, struct pca953x_chip, gpio_chip);
228 return chip->irq_base + off;
229}
230
231static void pca953x_irq_mask(unsigned int irq)
232{
233 struct pca953x_chip *chip = get_irq_chip_data(irq);
234
235 chip->irq_mask &= ~(1 << (irq - chip->irq_base));
236}
237
238static void pca953x_irq_unmask(unsigned int irq)
239{
240 struct pca953x_chip *chip = get_irq_chip_data(irq);
241
242 chip->irq_mask |= 1 << (irq - chip->irq_base);
243}
244
245static void pca953x_irq_bus_lock(unsigned int irq)
246{
247 struct pca953x_chip *chip = get_irq_chip_data(irq);
248
249 mutex_lock(&chip->irq_lock);
250}
251
252static void pca953x_irq_bus_sync_unlock(unsigned int irq)
253{
254 struct pca953x_chip *chip = get_irq_chip_data(irq);
255
256 mutex_unlock(&chip->irq_lock);
257}
258
259static int pca953x_irq_set_type(unsigned int irq, unsigned int type)
260{
261 struct pca953x_chip *chip = get_irq_chip_data(irq);
262 uint16_t level = irq - chip->irq_base;
263 uint16_t mask = 1 << level;
264
265 if (!(type & IRQ_TYPE_EDGE_BOTH)) {
266 dev_err(&chip->client->dev, "irq %d: unsupported type %d\n",
267 irq, type);
268 return -EINVAL;
269 }
270
271 if (type & IRQ_TYPE_EDGE_FALLING)
272 chip->irq_trig_fall |= mask;
273 else
274 chip->irq_trig_fall &= ~mask;
275
276 if (type & IRQ_TYPE_EDGE_RISING)
277 chip->irq_trig_raise |= mask;
278 else
279 chip->irq_trig_raise &= ~mask;
280
281 return pca953x_gpio_direction_input(&chip->gpio_chip, level);
282}
283
284static struct irq_chip pca953x_irq_chip = {
285 .name = "pca953x",
286 .mask = pca953x_irq_mask,
287 .unmask = pca953x_irq_unmask,
288 .bus_lock = pca953x_irq_bus_lock,
289 .bus_sync_unlock = pca953x_irq_bus_sync_unlock,
290 .set_type = pca953x_irq_set_type,
291};
292
293static uint16_t pca953x_irq_pending(struct pca953x_chip *chip)
294{
295 uint16_t cur_stat;
296 uint16_t old_stat;
297 uint16_t pending;
298 uint16_t trigger;
299 int ret;
300
301 ret = pca953x_read_reg(chip, PCA953X_INPUT, &cur_stat);
302 if (ret)
303 return 0;
304
305 /* Remove output pins from the equation */
306 cur_stat &= chip->reg_direction;
307
308 old_stat = chip->irq_stat;
309 trigger = (cur_stat ^ old_stat) & chip->irq_mask;
310
311 if (!trigger)
312 return 0;
313
314 chip->irq_stat = cur_stat;
315
316 pending = (old_stat & chip->irq_trig_fall) |
317 (cur_stat & chip->irq_trig_raise);
318 pending &= trigger;
319
320 return pending;
321}
322
323static irqreturn_t pca953x_irq_handler(int irq, void *devid)
324{
325 struct pca953x_chip *chip = devid;
326 uint16_t pending;
327 uint16_t level;
328
329 pending = pca953x_irq_pending(chip);
330
331 if (!pending)
332 return IRQ_HANDLED;
333
334 do {
335 level = __ffs(pending);
336 handle_nested_irq(level + chip->irq_base);
337
338 pending &= ~(1 << level);
339 } while (pending);
340
341 return IRQ_HANDLED;
342}
343
344static int pca953x_irq_setup(struct pca953x_chip *chip,
345 const struct i2c_device_id *id)
346{
347 struct i2c_client *client = chip->client;
348 struct pca953x_platform_data *pdata = client->dev.platform_data;
349 int ret;
350
351 if (pdata->irq_base && (id->driver_data & PCA953X_INT)) {
352 int lvl;
353
354 ret = pca953x_read_reg(chip, PCA953X_INPUT,
355 &chip->irq_stat);
356 if (ret)
357 goto out_failed;
358
359 /*
360 * There is no way to know which GPIO line generated the
361 * interrupt. We have to rely on the previous read for
362 * this purpose.
363 */
364 chip->irq_stat &= chip->reg_direction;
365 chip->irq_base = pdata->irq_base;
366 mutex_init(&chip->irq_lock);
367
368 for (lvl = 0; lvl < chip->gpio_chip.ngpio; lvl++) {
369 int irq = lvl + chip->irq_base;
370
371 set_irq_chip_data(irq, chip);
372 set_irq_chip_and_handler(irq, &pca953x_irq_chip,
373 handle_edge_irq);
374 set_irq_nested_thread(irq, 1);
375#ifdef CONFIG_ARM
376 set_irq_flags(irq, IRQF_VALID);
377#else
378 set_irq_noprobe(irq);
379#endif
380 }
381
382 ret = request_threaded_irq(client->irq,
383 NULL,
384 pca953x_irq_handler,
385 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
386 dev_name(&client->dev), chip);
387 if (ret) {
388 dev_err(&client->dev, "failed to request irq %d\n",
389 client->irq);
390 goto out_failed;
391 }
392
393 chip->gpio_chip.to_irq = pca953x_gpio_to_irq;
394 }
395
396 return 0;
397
398out_failed:
399 chip->irq_base = 0;
400 return ret;
401}
402
403static void pca953x_irq_teardown(struct pca953x_chip *chip)
404{
405 if (chip->irq_base)
406 free_irq(chip->client->irq, chip);
407}
408#else /* CONFIG_GPIO_PCA953X_IRQ */
409static int pca953x_irq_setup(struct pca953x_chip *chip,
410 const struct i2c_device_id *id)
411{
412 struct i2c_client *client = chip->client;
413 struct pca953x_platform_data *pdata = client->dev.platform_data;
414
415 if (pdata->irq_base && (id->driver_data & PCA953X_INT))
416 dev_warn(&client->dev, "interrupt support not compiled in\n");
417
418 return 0;
419}
420
421static void pca953x_irq_teardown(struct pca953x_chip *chip)
422{
423}
424#endif
425
1965d303
NC
426/*
427 * Handlers for alternative sources of platform_data
428 */
429#ifdef CONFIG_OF_GPIO
430/*
431 * Translate OpenFirmware node properties into platform_data
432 */
433static struct pca953x_platform_data *
434pca953x_get_alt_pdata(struct i2c_client *client)
435{
436 struct pca953x_platform_data *pdata;
437 struct device_node *node;
438 const uint16_t *val;
439
440 node = dev_archdata_get_node(&client->dev.archdata);
441 if (node == NULL)
442 return NULL;
443
444 pdata = kzalloc(sizeof(struct pca953x_platform_data), GFP_KERNEL);
445 if (pdata == NULL) {
446 dev_err(&client->dev, "Unable to allocate platform_data\n");
447 return NULL;
448 }
449
450 pdata->gpio_base = -1;
451 val = of_get_property(node, "linux,gpio-base", NULL);
452 if (val) {
453 if (*val < 0)
454 dev_warn(&client->dev,
455 "invalid gpio-base in device tree\n");
456 else
457 pdata->gpio_base = *val;
458 }
459
460 val = of_get_property(node, "polarity", NULL);
461 if (val)
462 pdata->invert = *val;
463
464 return pdata;
465}
466#else
467static struct pca953x_platform_data *
468pca953x_get_alt_pdata(struct i2c_client *client)
469{
470 return NULL;
471}
472#endif
473
d2653e92 474static int __devinit pca953x_probe(struct i2c_client *client,
3760f736 475 const struct i2c_device_id *id)
9e60fdcf 476{
f3dc3630
GL
477 struct pca953x_platform_data *pdata;
478 struct pca953x_chip *chip;
f39e5781 479 int ret;
9e60fdcf 480
1965d303
NC
481 chip = kzalloc(sizeof(struct pca953x_chip), GFP_KERNEL);
482 if (chip == NULL)
483 return -ENOMEM;
484
9e60fdcf 485 pdata = client->dev.platform_data;
a342d215 486 if (pdata == NULL) {
1965d303
NC
487 pdata = pca953x_get_alt_pdata(client);
488 /*
489 * Unlike normal platform_data, this is allocated
490 * dynamically and must be freed in the driver
491 */
492 chip->dyn_pdata = pdata;
a342d215 493 }
9e60fdcf 494
1965d303
NC
495 if (pdata == NULL) {
496 dev_dbg(&client->dev, "no platform data\n");
497 ret = -EINVAL;
498 goto out_failed;
499 }
9e60fdcf 500
501 chip->client = client;
502
503 chip->gpio_start = pdata->gpio_base;
504
77906a54
DS
505 chip->names = pdata->names;
506
9e60fdcf 507 /* initialize cached registers from their original values.
508 * we can't share this chip with another i2c master.
509 */
89ea8bbe 510 pca953x_setup_gpio(chip, id->driver_data & PCA953X_GPIOS);
f5e8ff48 511
f3dc3630 512 ret = pca953x_read_reg(chip, PCA953X_OUTPUT, &chip->reg_output);
9e60fdcf 513 if (ret)
514 goto out_failed;
515
f3dc3630 516 ret = pca953x_read_reg(chip, PCA953X_DIRECTION, &chip->reg_direction);
9e60fdcf 517 if (ret)
518 goto out_failed;
519
520 /* set platform specific polarity inversion */
f3dc3630 521 ret = pca953x_write_reg(chip, PCA953X_INVERT, pdata->invert);
9e60fdcf 522 if (ret)
523 goto out_failed;
524
89ea8bbe
MZ
525 ret = pca953x_irq_setup(chip, id);
526 if (ret)
527 goto out_failed;
f5e8ff48
GL
528
529 ret = gpiochip_add(&chip->gpio_chip);
9e60fdcf 530 if (ret)
531 goto out_failed;
532
533 if (pdata->setup) {
534 ret = pdata->setup(client, chip->gpio_chip.base,
535 chip->gpio_chip.ngpio, pdata->context);
536 if (ret < 0)
537 dev_warn(&client->dev, "setup failed, %d\n", ret);
538 }
539
540 i2c_set_clientdata(client, chip);
541 return 0;
542
543out_failed:
89ea8bbe 544 pca953x_irq_teardown(chip);
1965d303 545 kfree(chip->dyn_pdata);
9e60fdcf 546 kfree(chip);
547 return ret;
548}
549
f3dc3630 550static int pca953x_remove(struct i2c_client *client)
9e60fdcf 551{
f3dc3630
GL
552 struct pca953x_platform_data *pdata = client->dev.platform_data;
553 struct pca953x_chip *chip = i2c_get_clientdata(client);
9e60fdcf 554 int ret = 0;
555
556 if (pdata->teardown) {
557 ret = pdata->teardown(client, chip->gpio_chip.base,
558 chip->gpio_chip.ngpio, pdata->context);
559 if (ret < 0) {
560 dev_err(&client->dev, "%s failed, %d\n",
561 "teardown", ret);
562 return ret;
563 }
564 }
565
566 ret = gpiochip_remove(&chip->gpio_chip);
567 if (ret) {
568 dev_err(&client->dev, "%s failed, %d\n",
569 "gpiochip_remove()", ret);
570 return ret;
571 }
572
89ea8bbe 573 pca953x_irq_teardown(chip);
1965d303 574 kfree(chip->dyn_pdata);
9e60fdcf 575 kfree(chip);
576 return 0;
577}
578
f3dc3630 579static struct i2c_driver pca953x_driver = {
9e60fdcf 580 .driver = {
f3dc3630 581 .name = "pca953x",
9e60fdcf 582 },
f3dc3630
GL
583 .probe = pca953x_probe,
584 .remove = pca953x_remove,
3760f736 585 .id_table = pca953x_id,
9e60fdcf 586};
587
f3dc3630 588static int __init pca953x_init(void)
9e60fdcf 589{
f3dc3630 590 return i2c_add_driver(&pca953x_driver);
9e60fdcf 591}
2f8d1197
DB
592/* register after i2c postcore initcall and before
593 * subsys initcalls that may rely on these GPIOs
594 */
595subsys_initcall(pca953x_init);
9e60fdcf 596
f3dc3630 597static void __exit pca953x_exit(void)
9e60fdcf 598{
f3dc3630 599 i2c_del_driver(&pca953x_driver);
9e60fdcf 600}
f3dc3630 601module_exit(pca953x_exit);
9e60fdcf 602
603MODULE_AUTHOR("eric miao <eric.miao@marvell.com>");
f3dc3630 604MODULE_DESCRIPTION("GPIO expander driver for PCA953x");
9e60fdcf 605MODULE_LICENSE("GPL");