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.
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)
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
;
39 static int adnp_read(struct adnp
*adnp
, unsigned offset
, uint8_t *value
)
43 err
= i2c_smbus_read_byte_data(adnp
->client
, offset
);
45 dev_err(adnp
->gpio
.parent
, "%s failed: %d\n",
46 "i2c_smbus_read_byte_data()", err
);
54 static int adnp_write(struct adnp
*adnp
, unsigned offset
, uint8_t value
)
58 err
= i2c_smbus_write_byte_data(adnp
->client
, offset
, value
);
60 dev_err(adnp
->gpio
.parent
, "%s failed: %d\n",
61 "i2c_smbus_write_byte_data()", err
);
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;
76 err
= adnp_read(adnp
, GPIO_PLR(adnp
) + reg
, &value
);
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;
90 err
= adnp_read(adnp
, GPIO_PLR(adnp
) + reg
, &val
);
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;
119 mutex_lock(&adnp
->i2c_lock
);
121 err
= adnp_read(adnp
, GPIO_DDR(adnp
) + reg
, &value
);
127 err
= adnp_write(adnp
, GPIO_DDR(adnp
) + reg
, value
);
131 err
= adnp_read(adnp
, GPIO_DDR(adnp
) + reg
, &value
);
135 if (value
& BIT(pos
)) {
143 mutex_unlock(&adnp
->i2c_lock
);
147 static int adnp_gpio_direction_output(struct gpio_chip
*chip
, unsigned offset
,
150 struct adnp
*adnp
= gpiochip_get_data(chip
);
151 unsigned int reg
= offset
>> adnp
->reg_shift
;
152 unsigned int pos
= offset
& 7;
156 mutex_lock(&adnp
->i2c_lock
);
158 err
= adnp_read(adnp
, GPIO_DDR(adnp
) + reg
, &val
);
164 err
= adnp_write(adnp
, GPIO_DDR(adnp
) + reg
, val
);
168 err
= adnp_read(adnp
, GPIO_DDR(adnp
) + reg
, &val
);
172 if (!(val
& BIT(pos
))) {
177 __adnp_gpio_set(adnp
, offset
, value
);
181 mutex_unlock(&adnp
->i2c_lock
);
185 static void adnp_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
187 struct adnp
*adnp
= gpiochip_get_data(chip
);
188 unsigned int num_regs
= 1 << adnp
->reg_shift
, i
, j
;
191 for (i
= 0; i
< num_regs
; i
++) {
192 u8 ddr
, plr
, ier
, isr
;
194 mutex_lock(&adnp
->i2c_lock
);
196 err
= adnp_read(adnp
, GPIO_DDR(adnp
) + i
, &ddr
);
200 err
= adnp_read(adnp
, GPIO_PLR(adnp
) + i
, &plr
);
204 err
= adnp_read(adnp
, GPIO_IER(adnp
) + i
, &ier
);
208 err
= adnp_read(adnp
, GPIO_ISR(adnp
) + i
, &isr
);
212 mutex_unlock(&adnp
->i2c_lock
);
214 for (j
= 0; j
< 8; j
++) {
215 unsigned int bit
= (i
<< adnp
->reg_shift
) + j
;
216 const char *direction
= "input ";
217 const char *level
= "low ";
218 const char *interrupt
= "disabled";
219 const char *pending
= "";
222 direction
= "output";
228 interrupt
= "enabled ";
233 seq_printf(s
, "%2u: %s %s IRQ %s %s\n", bit
,
234 direction
, level
, interrupt
, pending
);
241 mutex_unlock(&adnp
->i2c_lock
);
244 static int adnp_gpio_setup(struct adnp
*adnp
, unsigned int num_gpios
)
246 struct gpio_chip
*chip
= &adnp
->gpio
;
249 adnp
->reg_shift
= get_count_order(num_gpios
) - 3;
251 chip
->direction_input
= adnp_gpio_direction_input
;
252 chip
->direction_output
= adnp_gpio_direction_output
;
253 chip
->get
= adnp_gpio_get
;
254 chip
->set
= adnp_gpio_set
;
255 chip
->can_sleep
= true;
257 if (IS_ENABLED(CONFIG_DEBUG_FS
))
258 chip
->dbg_show
= adnp_gpio_dbg_show
;
261 chip
->ngpio
= num_gpios
;
262 chip
->label
= adnp
->client
->name
;
263 chip
->parent
= &adnp
->client
->dev
;
264 chip
->of_node
= chip
->parent
->of_node
;
265 chip
->owner
= THIS_MODULE
;
267 err
= devm_gpiochip_add_data(&adnp
->client
->dev
, chip
, adnp
);
274 static irqreturn_t
adnp_irq(int irq
, void *data
)
276 struct adnp
*adnp
= data
;
277 unsigned int num_regs
, i
;
279 num_regs
= 1 << adnp
->reg_shift
;
281 for (i
= 0; i
< num_regs
; i
++) {
282 unsigned int base
= i
<< adnp
->reg_shift
, bit
;
283 u8 changed
, level
, isr
, ier
;
284 unsigned long pending
;
287 mutex_lock(&adnp
->i2c_lock
);
289 err
= adnp_read(adnp
, GPIO_PLR(adnp
) + i
, &level
);
291 mutex_unlock(&adnp
->i2c_lock
);
295 err
= adnp_read(adnp
, GPIO_ISR(adnp
) + i
, &isr
);
297 mutex_unlock(&adnp
->i2c_lock
);
301 err
= adnp_read(adnp
, GPIO_IER(adnp
) + i
, &ier
);
303 mutex_unlock(&adnp
->i2c_lock
);
307 mutex_unlock(&adnp
->i2c_lock
);
309 /* determine pins that changed levels */
310 changed
= level
^ adnp
->irq_level
[i
];
312 /* compute edge-triggered interrupts */
313 pending
= changed
& ((adnp
->irq_fall
[i
] & ~level
) |
314 (adnp
->irq_rise
[i
] & level
));
316 /* add in level-triggered interrupts */
317 pending
|= (adnp
->irq_high
[i
] & level
) |
318 (adnp
->irq_low
[i
] & ~level
);
320 /* mask out non-pending and disabled interrupts */
321 pending
&= isr
& ier
;
323 for_each_set_bit(bit
, &pending
, 8) {
324 unsigned int child_irq
;
325 child_irq
= irq_find_mapping(adnp
->gpio
.irq
.domain
,
327 handle_nested_irq(child_irq
);
334 static void adnp_irq_mask(struct irq_data
*d
)
336 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
337 struct adnp
*adnp
= gpiochip_get_data(gc
);
338 unsigned int reg
= d
->hwirq
>> adnp
->reg_shift
;
339 unsigned int pos
= d
->hwirq
& 7;
341 adnp
->irq_enable
[reg
] &= ~BIT(pos
);
344 static void adnp_irq_unmask(struct irq_data
*d
)
346 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
347 struct adnp
*adnp
= gpiochip_get_data(gc
);
348 unsigned int reg
= d
->hwirq
>> adnp
->reg_shift
;
349 unsigned int pos
= d
->hwirq
& 7;
351 adnp
->irq_enable
[reg
] |= BIT(pos
);
354 static int adnp_irq_set_type(struct irq_data
*d
, unsigned int type
)
356 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
357 struct adnp
*adnp
= gpiochip_get_data(gc
);
358 unsigned int reg
= d
->hwirq
>> adnp
->reg_shift
;
359 unsigned int pos
= d
->hwirq
& 7;
361 if (type
& IRQ_TYPE_EDGE_RISING
)
362 adnp
->irq_rise
[reg
] |= BIT(pos
);
364 adnp
->irq_rise
[reg
] &= ~BIT(pos
);
366 if (type
& IRQ_TYPE_EDGE_FALLING
)
367 adnp
->irq_fall
[reg
] |= BIT(pos
);
369 adnp
->irq_fall
[reg
] &= ~BIT(pos
);
371 if (type
& IRQ_TYPE_LEVEL_HIGH
)
372 adnp
->irq_high
[reg
] |= BIT(pos
);
374 adnp
->irq_high
[reg
] &= ~BIT(pos
);
376 if (type
& IRQ_TYPE_LEVEL_LOW
)
377 adnp
->irq_low
[reg
] |= BIT(pos
);
379 adnp
->irq_low
[reg
] &= ~BIT(pos
);
384 static void adnp_irq_bus_lock(struct irq_data
*d
)
386 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
387 struct adnp
*adnp
= gpiochip_get_data(gc
);
389 mutex_lock(&adnp
->irq_lock
);
392 static void adnp_irq_bus_unlock(struct irq_data
*d
)
394 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
395 struct adnp
*adnp
= gpiochip_get_data(gc
);
396 unsigned int num_regs
= 1 << adnp
->reg_shift
, i
;
398 mutex_lock(&adnp
->i2c_lock
);
400 for (i
= 0; i
< num_regs
; i
++)
401 adnp_write(adnp
, GPIO_IER(adnp
) + i
, adnp
->irq_enable
[i
]);
403 mutex_unlock(&adnp
->i2c_lock
);
404 mutex_unlock(&adnp
->irq_lock
);
407 static struct irq_chip adnp_irq_chip
= {
409 .irq_mask
= adnp_irq_mask
,
410 .irq_unmask
= adnp_irq_unmask
,
411 .irq_set_type
= adnp_irq_set_type
,
412 .irq_bus_lock
= adnp_irq_bus_lock
,
413 .irq_bus_sync_unlock
= adnp_irq_bus_unlock
,
416 static int adnp_irq_setup(struct adnp
*adnp
)
418 unsigned int num_regs
= 1 << adnp
->reg_shift
, i
;
419 struct gpio_chip
*chip
= &adnp
->gpio
;
422 mutex_init(&adnp
->irq_lock
);
425 * Allocate memory to keep track of the current level and trigger
426 * modes of the interrupts. To avoid multiple allocations, a single
427 * large buffer is allocated and pointers are setup to point at the
428 * corresponding offsets. For consistency, the layout of the buffer
429 * is chosen to match the register layout of the hardware in that
430 * each segment contains the corresponding bits for all interrupts.
432 adnp
->irq_enable
= devm_kcalloc(chip
->parent
, num_regs
, 6,
434 if (!adnp
->irq_enable
)
437 adnp
->irq_level
= adnp
->irq_enable
+ (num_regs
* 1);
438 adnp
->irq_rise
= adnp
->irq_enable
+ (num_regs
* 2);
439 adnp
->irq_fall
= adnp
->irq_enable
+ (num_regs
* 3);
440 adnp
->irq_high
= adnp
->irq_enable
+ (num_regs
* 4);
441 adnp
->irq_low
= adnp
->irq_enable
+ (num_regs
* 5);
443 for (i
= 0; i
< num_regs
; i
++) {
445 * Read the initial level of all pins to allow the emulation
446 * of edge triggered interrupts.
448 err
= adnp_read(adnp
, GPIO_PLR(adnp
) + i
, &adnp
->irq_level
[i
]);
452 /* disable all interrupts */
453 err
= adnp_write(adnp
, GPIO_IER(adnp
) + i
, 0);
457 adnp
->irq_enable
[i
] = 0x00;
460 err
= devm_request_threaded_irq(chip
->parent
, adnp
->client
->irq
,
462 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
463 dev_name(chip
->parent
), adnp
);
465 dev_err(chip
->parent
, "can't request IRQ#%d: %d\n",
466 adnp
->client
->irq
, err
);
470 err
= gpiochip_irqchip_add_nested(chip
,
476 dev_err(chip
->parent
,
477 "could not connect irqchip to gpiochip\n");
481 gpiochip_set_nested_irqchip(chip
, &adnp_irq_chip
, adnp
->client
->irq
);
486 static int adnp_i2c_probe(struct i2c_client
*client
,
487 const struct i2c_device_id
*id
)
489 struct device_node
*np
= client
->dev
.of_node
;
494 err
= of_property_read_u32(np
, "nr-gpios", &num_gpios
);
498 client
->irq
= irq_of_parse_and_map(np
, 0);
500 return -EPROBE_DEFER
;
502 adnp
= devm_kzalloc(&client
->dev
, sizeof(*adnp
), GFP_KERNEL
);
506 mutex_init(&adnp
->i2c_lock
);
507 adnp
->client
= client
;
509 err
= adnp_gpio_setup(adnp
, num_gpios
);
513 if (of_find_property(np
, "interrupt-controller", NULL
)) {
514 err
= adnp_irq_setup(adnp
);
519 i2c_set_clientdata(client
, adnp
);
524 static const struct i2c_device_id adnp_i2c_id
[] = {
528 MODULE_DEVICE_TABLE(i2c
, adnp_i2c_id
);
530 static const struct of_device_id adnp_of_match
[] = {
531 { .compatible
= "ad,gpio-adnp", },
534 MODULE_DEVICE_TABLE(of
, adnp_of_match
);
536 static struct i2c_driver adnp_i2c_driver
= {
539 .of_match_table
= adnp_of_match
,
541 .probe
= adnp_i2c_probe
,
542 .id_table
= adnp_i2c_id
,
544 module_i2c_driver(adnp_i2c_driver
);
546 MODULE_DESCRIPTION("Avionic Design N-bit GPIO expander");
547 MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
548 MODULE_LICENSE("GPL");