Linux 4.16.11
[linux/fpc-iii.git] / drivers / gpio / gpio-adnp.c
blob44c09904daa6adcbd261333986e4c09fbb627fc0
1 /*
2 * Copyright (C) 2011-2012 Avionic Design GmbH
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #include <linux/gpio/driver.h>
10 #include <linux/i2c.h>
11 #include <linux/interrupt.h>
12 #include <linux/module.h>
13 #include <linux/of_irq.h>
14 #include <linux/seq_file.h>
15 #include <linux/slab.h>
17 #define GPIO_DDR(gpio) (0x00 << (gpio)->reg_shift)
18 #define GPIO_PLR(gpio) (0x01 << (gpio)->reg_shift)
19 #define GPIO_IER(gpio) (0x02 << (gpio)->reg_shift)
20 #define GPIO_ISR(gpio) (0x03 << (gpio)->reg_shift)
21 #define GPIO_PTR(gpio) (0x04 << (gpio)->reg_shift)
23 struct adnp {
24 struct i2c_client *client;
25 struct gpio_chip gpio;
26 unsigned int reg_shift;
28 struct mutex i2c_lock;
29 struct mutex irq_lock;
31 u8 *irq_enable;
32 u8 *irq_level;
33 u8 *irq_rise;
34 u8 *irq_fall;
35 u8 *irq_high;
36 u8 *irq_low;
39 static int adnp_read(struct adnp *adnp, unsigned offset, uint8_t *value)
41 int err;
43 err = i2c_smbus_read_byte_data(adnp->client, offset);
44 if (err < 0) {
45 dev_err(adnp->gpio.parent, "%s failed: %d\n",
46 "i2c_smbus_read_byte_data()", err);
47 return err;
50 *value = err;
51 return 0;
54 static int adnp_write(struct adnp *adnp, unsigned offset, uint8_t value)
56 int err;
58 err = i2c_smbus_write_byte_data(adnp->client, offset, value);
59 if (err < 0) {
60 dev_err(adnp->gpio.parent, "%s failed: %d\n",
61 "i2c_smbus_write_byte_data()", err);
62 return err;
65 return 0;
68 static int adnp_gpio_get(struct gpio_chip *chip, unsigned offset)
70 struct adnp *adnp = gpiochip_get_data(chip);
71 unsigned int reg = offset >> adnp->reg_shift;
72 unsigned int pos = offset & 7;
73 u8 value;
74 int err;
76 err = adnp_read(adnp, GPIO_PLR(adnp) + reg, &value);
77 if (err < 0)
78 return err;
80 return (value & BIT(pos)) ? 1 : 0;
83 static void __adnp_gpio_set(struct adnp *adnp, unsigned offset, int value)
85 unsigned int reg = offset >> adnp->reg_shift;
86 unsigned int pos = offset & 7;
87 int err;
88 u8 val;
90 err = adnp_read(adnp, GPIO_PLR(adnp) + reg, &val);
91 if (err < 0)
92 return;
94 if (value)
95 val |= BIT(pos);
96 else
97 val &= ~BIT(pos);
99 adnp_write(adnp, GPIO_PLR(adnp) + reg, val);
102 static void adnp_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
104 struct adnp *adnp = gpiochip_get_data(chip);
106 mutex_lock(&adnp->i2c_lock);
107 __adnp_gpio_set(adnp, offset, value);
108 mutex_unlock(&adnp->i2c_lock);
111 static int adnp_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
113 struct adnp *adnp = gpiochip_get_data(chip);
114 unsigned int reg = offset >> adnp->reg_shift;
115 unsigned int pos = offset & 7;
116 u8 value;
117 int err;
119 mutex_lock(&adnp->i2c_lock);
121 err = adnp_read(adnp, GPIO_DDR(adnp) + reg, &value);
122 if (err < 0)
123 goto out;
125 value &= ~BIT(pos);
127 err = adnp_write(adnp, GPIO_DDR(adnp) + reg, value);
128 if (err < 0)
129 goto out;
131 err = adnp_read(adnp, GPIO_DDR(adnp) + reg, &value);
132 if (err < 0)
133 goto out;
135 if (err & BIT(pos))
136 err = -EACCES;
138 err = 0;
140 out:
141 mutex_unlock(&adnp->i2c_lock);
142 return err;
145 static int adnp_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
146 int value)
148 struct adnp *adnp = gpiochip_get_data(chip);
149 unsigned int reg = offset >> adnp->reg_shift;
150 unsigned int pos = offset & 7;
151 int err;
152 u8 val;
154 mutex_lock(&adnp->i2c_lock);
156 err = adnp_read(adnp, GPIO_DDR(adnp) + reg, &val);
157 if (err < 0)
158 goto out;
160 val |= BIT(pos);
162 err = adnp_write(adnp, GPIO_DDR(adnp) + reg, val);
163 if (err < 0)
164 goto out;
166 err = adnp_read(adnp, GPIO_DDR(adnp) + reg, &val);
167 if (err < 0)
168 goto out;
170 if (!(val & BIT(pos))) {
171 err = -EPERM;
172 goto out;
175 __adnp_gpio_set(adnp, offset, value);
176 err = 0;
178 out:
179 mutex_unlock(&adnp->i2c_lock);
180 return err;
183 static void adnp_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
185 struct adnp *adnp = gpiochip_get_data(chip);
186 unsigned int num_regs = 1 << adnp->reg_shift, i, j;
187 int err;
189 for (i = 0; i < num_regs; i++) {
190 u8 ddr, plr, ier, isr;
192 mutex_lock(&adnp->i2c_lock);
194 err = adnp_read(adnp, GPIO_DDR(adnp) + i, &ddr);
195 if (err < 0)
196 goto unlock;
198 err = adnp_read(adnp, GPIO_PLR(adnp) + i, &plr);
199 if (err < 0)
200 goto unlock;
202 err = adnp_read(adnp, GPIO_IER(adnp) + i, &ier);
203 if (err < 0)
204 goto unlock;
206 err = adnp_read(adnp, GPIO_ISR(adnp) + i, &isr);
207 if (err < 0)
208 goto unlock;
210 mutex_unlock(&adnp->i2c_lock);
212 for (j = 0; j < 8; j++) {
213 unsigned int bit = (i << adnp->reg_shift) + j;
214 const char *direction = "input ";
215 const char *level = "low ";
216 const char *interrupt = "disabled";
217 const char *pending = "";
219 if (ddr & BIT(j))
220 direction = "output";
222 if (plr & BIT(j))
223 level = "high";
225 if (ier & BIT(j))
226 interrupt = "enabled ";
228 if (isr & BIT(j))
229 pending = "pending";
231 seq_printf(s, "%2u: %s %s IRQ %s %s\n", bit,
232 direction, level, interrupt, pending);
236 return;
238 unlock:
239 mutex_unlock(&adnp->i2c_lock);
242 static int adnp_gpio_setup(struct adnp *adnp, unsigned int num_gpios)
244 struct gpio_chip *chip = &adnp->gpio;
245 int err;
247 adnp->reg_shift = get_count_order(num_gpios) - 3;
249 chip->direction_input = adnp_gpio_direction_input;
250 chip->direction_output = adnp_gpio_direction_output;
251 chip->get = adnp_gpio_get;
252 chip->set = adnp_gpio_set;
253 chip->can_sleep = true;
255 if (IS_ENABLED(CONFIG_DEBUG_FS))
256 chip->dbg_show = adnp_gpio_dbg_show;
258 chip->base = -1;
259 chip->ngpio = num_gpios;
260 chip->label = adnp->client->name;
261 chip->parent = &adnp->client->dev;
262 chip->of_node = chip->parent->of_node;
263 chip->owner = THIS_MODULE;
265 err = devm_gpiochip_add_data(&adnp->client->dev, chip, adnp);
266 if (err)
267 return err;
269 return 0;
272 static irqreturn_t adnp_irq(int irq, void *data)
274 struct adnp *adnp = data;
275 unsigned int num_regs, i;
277 num_regs = 1 << adnp->reg_shift;
279 for (i = 0; i < num_regs; i++) {
280 unsigned int base = i << adnp->reg_shift, bit;
281 u8 changed, level, isr, ier;
282 unsigned long pending;
283 int err;
285 mutex_lock(&adnp->i2c_lock);
287 err = adnp_read(adnp, GPIO_PLR(adnp) + i, &level);
288 if (err < 0) {
289 mutex_unlock(&adnp->i2c_lock);
290 continue;
293 err = adnp_read(adnp, GPIO_ISR(adnp) + i, &isr);
294 if (err < 0) {
295 mutex_unlock(&adnp->i2c_lock);
296 continue;
299 err = adnp_read(adnp, GPIO_IER(adnp) + i, &ier);
300 if (err < 0) {
301 mutex_unlock(&adnp->i2c_lock);
302 continue;
305 mutex_unlock(&adnp->i2c_lock);
307 /* determine pins that changed levels */
308 changed = level ^ adnp->irq_level[i];
310 /* compute edge-triggered interrupts */
311 pending = changed & ((adnp->irq_fall[i] & ~level) |
312 (adnp->irq_rise[i] & level));
314 /* add in level-triggered interrupts */
315 pending |= (adnp->irq_high[i] & level) |
316 (adnp->irq_low[i] & ~level);
318 /* mask out non-pending and disabled interrupts */
319 pending &= isr & ier;
321 for_each_set_bit(bit, &pending, 8) {
322 unsigned int child_irq;
323 child_irq = irq_find_mapping(adnp->gpio.irq.domain,
324 base + bit);
325 handle_nested_irq(child_irq);
329 return IRQ_HANDLED;
332 static void adnp_irq_mask(struct irq_data *d)
334 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
335 struct adnp *adnp = gpiochip_get_data(gc);
336 unsigned int reg = d->hwirq >> adnp->reg_shift;
337 unsigned int pos = d->hwirq & 7;
339 adnp->irq_enable[reg] &= ~BIT(pos);
342 static void adnp_irq_unmask(struct irq_data *d)
344 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
345 struct adnp *adnp = gpiochip_get_data(gc);
346 unsigned int reg = d->hwirq >> adnp->reg_shift;
347 unsigned int pos = d->hwirq & 7;
349 adnp->irq_enable[reg] |= BIT(pos);
352 static int adnp_irq_set_type(struct irq_data *d, unsigned int type)
354 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
355 struct adnp *adnp = gpiochip_get_data(gc);
356 unsigned int reg = d->hwirq >> adnp->reg_shift;
357 unsigned int pos = d->hwirq & 7;
359 if (type & IRQ_TYPE_EDGE_RISING)
360 adnp->irq_rise[reg] |= BIT(pos);
361 else
362 adnp->irq_rise[reg] &= ~BIT(pos);
364 if (type & IRQ_TYPE_EDGE_FALLING)
365 adnp->irq_fall[reg] |= BIT(pos);
366 else
367 adnp->irq_fall[reg] &= ~BIT(pos);
369 if (type & IRQ_TYPE_LEVEL_HIGH)
370 adnp->irq_high[reg] |= BIT(pos);
371 else
372 adnp->irq_high[reg] &= ~BIT(pos);
374 if (type & IRQ_TYPE_LEVEL_LOW)
375 adnp->irq_low[reg] |= BIT(pos);
376 else
377 adnp->irq_low[reg] &= ~BIT(pos);
379 return 0;
382 static void adnp_irq_bus_lock(struct irq_data *d)
384 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
385 struct adnp *adnp = gpiochip_get_data(gc);
387 mutex_lock(&adnp->irq_lock);
390 static void adnp_irq_bus_unlock(struct irq_data *d)
392 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
393 struct adnp *adnp = gpiochip_get_data(gc);
394 unsigned int num_regs = 1 << adnp->reg_shift, i;
396 mutex_lock(&adnp->i2c_lock);
398 for (i = 0; i < num_regs; i++)
399 adnp_write(adnp, GPIO_IER(adnp) + i, adnp->irq_enable[i]);
401 mutex_unlock(&adnp->i2c_lock);
402 mutex_unlock(&adnp->irq_lock);
405 static struct irq_chip adnp_irq_chip = {
406 .name = "gpio-adnp",
407 .irq_mask = adnp_irq_mask,
408 .irq_unmask = adnp_irq_unmask,
409 .irq_set_type = adnp_irq_set_type,
410 .irq_bus_lock = adnp_irq_bus_lock,
411 .irq_bus_sync_unlock = adnp_irq_bus_unlock,
414 static int adnp_irq_setup(struct adnp *adnp)
416 unsigned int num_regs = 1 << adnp->reg_shift, i;
417 struct gpio_chip *chip = &adnp->gpio;
418 int err;
420 mutex_init(&adnp->irq_lock);
423 * Allocate memory to keep track of the current level and trigger
424 * modes of the interrupts. To avoid multiple allocations, a single
425 * large buffer is allocated and pointers are setup to point at the
426 * corresponding offsets. For consistency, the layout of the buffer
427 * is chosen to match the register layout of the hardware in that
428 * each segment contains the corresponding bits for all interrupts.
430 adnp->irq_enable = devm_kzalloc(chip->parent, num_regs * 6,
431 GFP_KERNEL);
432 if (!adnp->irq_enable)
433 return -ENOMEM;
435 adnp->irq_level = adnp->irq_enable + (num_regs * 1);
436 adnp->irq_rise = adnp->irq_enable + (num_regs * 2);
437 adnp->irq_fall = adnp->irq_enable + (num_regs * 3);
438 adnp->irq_high = adnp->irq_enable + (num_regs * 4);
439 adnp->irq_low = adnp->irq_enable + (num_regs * 5);
441 for (i = 0; i < num_regs; i++) {
443 * Read the initial level of all pins to allow the emulation
444 * of edge triggered interrupts.
446 err = adnp_read(adnp, GPIO_PLR(adnp) + i, &adnp->irq_level[i]);
447 if (err < 0)
448 return err;
450 /* disable all interrupts */
451 err = adnp_write(adnp, GPIO_IER(adnp) + i, 0);
452 if (err < 0)
453 return err;
455 adnp->irq_enable[i] = 0x00;
458 err = devm_request_threaded_irq(chip->parent, adnp->client->irq,
459 NULL, adnp_irq,
460 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
461 dev_name(chip->parent), adnp);
462 if (err != 0) {
463 dev_err(chip->parent, "can't request IRQ#%d: %d\n",
464 adnp->client->irq, err);
465 return err;
468 err = gpiochip_irqchip_add_nested(chip,
469 &adnp_irq_chip,
471 handle_simple_irq,
472 IRQ_TYPE_NONE);
473 if (err) {
474 dev_err(chip->parent,
475 "could not connect irqchip to gpiochip\n");
476 return err;
479 gpiochip_set_nested_irqchip(chip, &adnp_irq_chip, adnp->client->irq);
481 return 0;
484 static int adnp_i2c_probe(struct i2c_client *client,
485 const struct i2c_device_id *id)
487 struct device_node *np = client->dev.of_node;
488 struct adnp *adnp;
489 u32 num_gpios;
490 int err;
492 err = of_property_read_u32(np, "nr-gpios", &num_gpios);
493 if (err < 0)
494 return err;
496 client->irq = irq_of_parse_and_map(np, 0);
497 if (!client->irq)
498 return -EPROBE_DEFER;
500 adnp = devm_kzalloc(&client->dev, sizeof(*adnp), GFP_KERNEL);
501 if (!adnp)
502 return -ENOMEM;
504 mutex_init(&adnp->i2c_lock);
505 adnp->client = client;
507 err = adnp_gpio_setup(adnp, num_gpios);
508 if (err)
509 return err;
511 if (of_find_property(np, "interrupt-controller", NULL)) {
512 err = adnp_irq_setup(adnp);
513 if (err)
514 return err;
517 i2c_set_clientdata(client, adnp);
519 return 0;
522 static const struct i2c_device_id adnp_i2c_id[] = {
523 { "gpio-adnp" },
524 { },
526 MODULE_DEVICE_TABLE(i2c, adnp_i2c_id);
528 static const struct of_device_id adnp_of_match[] = {
529 { .compatible = "ad,gpio-adnp", },
530 { },
532 MODULE_DEVICE_TABLE(of, adnp_of_match);
534 static struct i2c_driver adnp_i2c_driver = {
535 .driver = {
536 .name = "gpio-adnp",
537 .of_match_table = adnp_of_match,
539 .probe = adnp_i2c_probe,
540 .id_table = adnp_i2c_id,
542 module_i2c_driver(adnp_i2c_driver);
544 MODULE_DESCRIPTION("Avionic Design N-bit GPIO expander");
545 MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
546 MODULE_LICENSE("GPL");