2 * GPIO driver for the ACCES 104-IDI-48 family
3 * Copyright (C) 2015 William Breathitt Gray
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 #include <linux/bitops.h>
15 #include <linux/device.h>
16 #include <linux/errno.h>
17 #include <linux/gpio/driver.h>
19 #include <linux/ioport.h>
20 #include <linux/interrupt.h>
21 #include <linux/irqdesc.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/platform_device.h>
26 #include <linux/spinlock.h>
28 static unsigned idi_48_base
;
29 module_param(idi_48_base
, uint
, 0);
30 MODULE_PARM_DESC(idi_48_base
, "ACCES 104-IDI-48 base address");
31 static unsigned idi_48_irq
;
32 module_param(idi_48_irq
, uint
, 0);
33 MODULE_PARM_DESC(idi_48_irq
, "ACCES 104-IDI-48 interrupt line number");
36 * struct idi_48_gpio - GPIO device private data structure
37 * @chip: instance of the gpio_chip
38 * @lock: synchronization lock to prevent I/O race conditions
39 * @ack_lock: synchronization lock to prevent IRQ handler race conditions
40 * @irq_mask: input bits affected by interrupts
41 * @base: base port address of the GPIO device
42 * @irq: Interrupt line number
43 * @cos_enb: Change-Of-State IRQ enable boundaries mask
46 struct gpio_chip chip
;
49 unsigned char irq_mask
[6];
52 unsigned char cos_enb
;
55 static int idi_48_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
60 static int idi_48_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
65 static int idi_48_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
67 struct idi_48_gpio
*const idi48gpio
= gpiochip_get_data(chip
);
69 const unsigned register_offset
[6] = { 0, 1, 2, 4, 5, 6 };
73 for (i
= 0; i
< 48; i
+= 8)
75 base_offset
= register_offset
[i
/ 8];
76 mask
= BIT(offset
- i
);
78 return !!(inb(idi48gpio
->base
+ base_offset
) & mask
);
81 /* The following line should never execute since offset < 48 */
85 static void idi_48_irq_ack(struct irq_data
*data
)
89 static void idi_48_irq_mask(struct irq_data
*data
)
91 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
92 struct idi_48_gpio
*const idi48gpio
= gpiochip_get_data(chip
);
93 const unsigned offset
= irqd_to_hwirq(data
);
99 for (i
= 0; i
< 48; i
+= 8)
100 if (offset
< i
+ 8) {
101 mask
= BIT(offset
- i
);
104 idi48gpio
->irq_mask
[boundary
] &= ~mask
;
106 if (!idi48gpio
->irq_mask
[boundary
]) {
107 idi48gpio
->cos_enb
&= ~BIT(boundary
);
109 spin_lock_irqsave(&idi48gpio
->lock
, flags
);
111 outb(idi48gpio
->cos_enb
, idi48gpio
->base
+ 7);
113 spin_unlock_irqrestore(&idi48gpio
->lock
, flags
);
120 static void idi_48_irq_unmask(struct irq_data
*data
)
122 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
123 struct idi_48_gpio
*const idi48gpio
= gpiochip_get_data(chip
);
124 const unsigned offset
= irqd_to_hwirq(data
);
128 unsigned prev_irq_mask
;
131 for (i
= 0; i
< 48; i
+= 8)
132 if (offset
< i
+ 8) {
133 mask
= BIT(offset
- i
);
135 prev_irq_mask
= idi48gpio
->irq_mask
[boundary
];
137 idi48gpio
->irq_mask
[boundary
] |= mask
;
139 if (!prev_irq_mask
) {
140 idi48gpio
->cos_enb
|= BIT(boundary
);
142 spin_lock_irqsave(&idi48gpio
->lock
, flags
);
144 outb(idi48gpio
->cos_enb
, idi48gpio
->base
+ 7);
146 spin_unlock_irqrestore(&idi48gpio
->lock
, flags
);
153 static int idi_48_irq_set_type(struct irq_data
*data
, unsigned flow_type
)
155 /* The only valid irq types are none and both-edges */
156 if (flow_type
!= IRQ_TYPE_NONE
&&
157 (flow_type
& IRQ_TYPE_EDGE_BOTH
) != IRQ_TYPE_EDGE_BOTH
)
163 static struct irq_chip idi_48_irqchip
= {
164 .name
= "104-idi-48",
165 .irq_ack
= idi_48_irq_ack
,
166 .irq_mask
= idi_48_irq_mask
,
167 .irq_unmask
= idi_48_irq_unmask
,
168 .irq_set_type
= idi_48_irq_set_type
171 static irqreturn_t
idi_48_irq_handler(int irq
, void *dev_id
)
173 struct idi_48_gpio
*const idi48gpio
= dev_id
;
174 unsigned long cos_status
;
175 unsigned long boundary
;
176 unsigned long irq_mask
;
177 unsigned long bit_num
;
179 struct gpio_chip
*const chip
= &idi48gpio
->chip
;
181 spin_lock(&idi48gpio
->ack_lock
);
183 spin_lock(&idi48gpio
->lock
);
185 cos_status
= inb(idi48gpio
->base
+ 7);
187 spin_unlock(&idi48gpio
->lock
);
189 /* IRQ Status (bit 6) is active low (0 = IRQ generated by device) */
190 if (cos_status
& BIT(6)) {
191 spin_unlock(&idi48gpio
->ack_lock
);
195 /* Bit 0-5 indicate which Change-Of-State boundary triggered the IRQ */
198 for_each_set_bit(boundary
, &cos_status
, 6) {
199 irq_mask
= idi48gpio
->irq_mask
[boundary
];
201 for_each_set_bit(bit_num
, &irq_mask
, 8) {
202 gpio
= bit_num
+ boundary
* 8;
204 generic_handle_irq(irq_find_mapping(chip
->irqdomain
,
209 spin_unlock(&idi48gpio
->ack_lock
);
214 static int __init
idi_48_probe(struct platform_device
*pdev
)
216 struct device
*dev
= &pdev
->dev
;
217 struct idi_48_gpio
*idi48gpio
;
218 const unsigned base
= idi_48_base
;
219 const unsigned extent
= 8;
220 const char *const name
= dev_name(dev
);
222 const unsigned irq
= idi_48_irq
;
224 idi48gpio
= devm_kzalloc(dev
, sizeof(*idi48gpio
), GFP_KERNEL
);
228 if (!devm_request_region(dev
, base
, extent
, name
)) {
229 dev_err(dev
, "Unable to lock port addresses (0x%X-0x%X)\n",
230 base
, base
+ extent
);
234 idi48gpio
->chip
.label
= name
;
235 idi48gpio
->chip
.parent
= dev
;
236 idi48gpio
->chip
.owner
= THIS_MODULE
;
237 idi48gpio
->chip
.base
= -1;
238 idi48gpio
->chip
.ngpio
= 48;
239 idi48gpio
->chip
.get_direction
= idi_48_gpio_get_direction
;
240 idi48gpio
->chip
.direction_input
= idi_48_gpio_direction_input
;
241 idi48gpio
->chip
.get
= idi_48_gpio_get
;
242 idi48gpio
->base
= base
;
243 idi48gpio
->irq
= irq
;
245 spin_lock_init(&idi48gpio
->lock
);
247 dev_set_drvdata(dev
, idi48gpio
);
249 err
= gpiochip_add_data(&idi48gpio
->chip
, idi48gpio
);
251 dev_err(dev
, "GPIO registering failed (%d)\n", err
);
255 /* Disable IRQ by default */
259 err
= gpiochip_irqchip_add(&idi48gpio
->chip
, &idi_48_irqchip
, 0,
260 handle_edge_irq
, IRQ_TYPE_NONE
);
262 dev_err(dev
, "Could not add irqchip (%d)\n", err
);
263 goto err_gpiochip_remove
;
266 err
= request_irq(irq
, idi_48_irq_handler
, IRQF_SHARED
, name
,
269 dev_err(dev
, "IRQ handler registering failed (%d)\n", err
);
270 goto err_gpiochip_remove
;
276 gpiochip_remove(&idi48gpio
->chip
);
280 static int idi_48_remove(struct platform_device
*pdev
)
282 struct idi_48_gpio
*const idi48gpio
= platform_get_drvdata(pdev
);
284 free_irq(idi48gpio
->irq
, idi48gpio
);
285 gpiochip_remove(&idi48gpio
->chip
);
290 static struct platform_device
*idi_48_device
;
292 static struct platform_driver idi_48_driver
= {
296 .remove
= idi_48_remove
299 static void __exit
idi_48_exit(void)
301 platform_device_unregister(idi_48_device
);
302 platform_driver_unregister(&idi_48_driver
);
305 static int __init
idi_48_init(void)
309 idi_48_device
= platform_device_alloc(idi_48_driver
.driver
.name
, -1);
313 err
= platform_device_add(idi_48_device
);
315 goto err_platform_device
;
317 err
= platform_driver_probe(&idi_48_driver
, idi_48_probe
);
319 goto err_platform_driver
;
324 platform_device_del(idi_48_device
);
326 platform_device_put(idi_48_device
);
330 module_init(idi_48_init
);
331 module_exit(idi_48_exit
);
333 MODULE_AUTHOR("William Breathitt Gray <vilhelm.gray@gmail.com>");
334 MODULE_DESCRIPTION("ACCES 104-IDI-48 GPIO driver");
335 MODULE_LICENSE("GPL v2");