1 // SPDX-License-Identifier: GPL-2.0-only
3 * GPIO driver for the ACCES PCI-IDIO-16
4 * Copyright (C) 2017 William Breathitt Gray
6 #include <linux/bitmap.h>
7 #include <linux/bitops.h>
8 #include <linux/device.h>
9 #include <linux/errno.h>
10 #include <linux/gpio/driver.h>
11 #include <linux/interrupt.h>
12 #include <linux/irqdesc.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/pci.h>
16 #include <linux/spinlock.h>
17 #include <linux/types.h>
20 * struct idio_16_gpio_reg - GPIO device registers structure
21 * @out0_7: Read: FET Drive Outputs 0-7
22 * Write: FET Drive Outputs 0-7
23 * @in0_7: Read: Isolated Inputs 0-7
24 * Write: Clear Interrupt
25 * @irq_ctl: Read: Enable IRQ
27 * @filter_ctl: Read: Activate Input Filters 0-15
28 * Write: Deactivate Input Filters 0-15
29 * @out8_15: Read: FET Drive Outputs 8-15
30 * Write: FET Drive Outputs 8-15
31 * @in8_15: Read: Isolated Inputs 8-15
33 * @irq_status: Read: Interrupt status
36 struct idio_16_gpio_reg
{
47 * struct idio_16_gpio - GPIO device private data structure
48 * @chip: instance of the gpio_chip
49 * @lock: synchronization lock to prevent I/O race conditions
50 * @reg: I/O address offset for the GPIO device registers
51 * @irq_mask: I/O bits affected by interrupts
54 struct gpio_chip chip
;
56 struct idio_16_gpio_reg __iomem
*reg
;
57 unsigned long irq_mask
;
60 static int idio_16_gpio_get_direction(struct gpio_chip
*chip
,
64 return GPIO_LINE_DIRECTION_IN
;
66 return GPIO_LINE_DIRECTION_OUT
;
69 static int idio_16_gpio_direction_input(struct gpio_chip
*chip
,
75 static int idio_16_gpio_direction_output(struct gpio_chip
*chip
,
76 unsigned int offset
, int value
)
78 chip
->set(chip
, offset
, value
);
82 static int idio_16_gpio_get(struct gpio_chip
*chip
, unsigned int offset
)
84 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
85 unsigned long mask
= BIT(offset
);
88 return !!(ioread8(&idio16gpio
->reg
->out0_7
) & mask
);
91 return !!(ioread8(&idio16gpio
->reg
->out8_15
) & (mask
>> 8));
94 return !!(ioread8(&idio16gpio
->reg
->in0_7
) & (mask
>> 16));
96 return !!(ioread8(&idio16gpio
->reg
->in8_15
) & (mask
>> 24));
99 static int idio_16_gpio_get_multiple(struct gpio_chip
*chip
,
100 unsigned long *mask
, unsigned long *bits
)
102 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
103 unsigned long offset
;
104 unsigned long gpio_mask
;
105 void __iomem
*ports
[] = {
106 &idio16gpio
->reg
->out0_7
, &idio16gpio
->reg
->out8_15
,
107 &idio16gpio
->reg
->in0_7
, &idio16gpio
->reg
->in8_15
,
109 void __iomem
*port_addr
;
110 unsigned long port_state
;
112 /* clear bits array to a clean slate */
113 bitmap_zero(bits
, chip
->ngpio
);
115 for_each_set_clump8(offset
, gpio_mask
, mask
, ARRAY_SIZE(ports
) * 8) {
116 port_addr
= ports
[offset
/ 8];
117 port_state
= ioread8(port_addr
) & gpio_mask
;
119 bitmap_set_value8(bits
, port_state
, offset
);
125 static void idio_16_gpio_set(struct gpio_chip
*chip
, unsigned int offset
,
128 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
129 unsigned int mask
= BIT(offset
);
132 unsigned int out_state
;
139 base
= &idio16gpio
->reg
->out8_15
;
141 base
= &idio16gpio
->reg
->out0_7
;
143 raw_spin_lock_irqsave(&idio16gpio
->lock
, flags
);
146 out_state
= ioread8(base
) | mask
;
148 out_state
= ioread8(base
) & ~mask
;
150 iowrite8(out_state
, base
);
152 raw_spin_unlock_irqrestore(&idio16gpio
->lock
, flags
);
155 static void idio_16_gpio_set_multiple(struct gpio_chip
*chip
,
156 unsigned long *mask
, unsigned long *bits
)
158 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
159 unsigned long offset
;
160 unsigned long gpio_mask
;
161 void __iomem
*ports
[] = {
162 &idio16gpio
->reg
->out0_7
, &idio16gpio
->reg
->out8_15
,
165 void __iomem
*port_addr
;
166 unsigned long bitmask
;
168 unsigned long out_state
;
170 for_each_set_clump8(offset
, gpio_mask
, mask
, ARRAY_SIZE(ports
) * 8) {
172 port_addr
= ports
[index
];
174 bitmask
= bitmap_get_value8(bits
, offset
) & gpio_mask
;
176 raw_spin_lock_irqsave(&idio16gpio
->lock
, flags
);
178 out_state
= ioread8(port_addr
) & ~gpio_mask
;
179 out_state
|= bitmask
;
180 iowrite8(out_state
, port_addr
);
182 raw_spin_unlock_irqrestore(&idio16gpio
->lock
, flags
);
186 static void idio_16_irq_ack(struct irq_data
*data
)
190 static void idio_16_irq_mask(struct irq_data
*data
)
192 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
193 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
194 const unsigned long mask
= BIT(irqd_to_hwirq(data
));
197 idio16gpio
->irq_mask
&= ~mask
;
199 if (!idio16gpio
->irq_mask
) {
200 raw_spin_lock_irqsave(&idio16gpio
->lock
, flags
);
202 iowrite8(0, &idio16gpio
->reg
->irq_ctl
);
204 raw_spin_unlock_irqrestore(&idio16gpio
->lock
, flags
);
208 static void idio_16_irq_unmask(struct irq_data
*data
)
210 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(data
);
211 struct idio_16_gpio
*const idio16gpio
= gpiochip_get_data(chip
);
212 const unsigned long mask
= BIT(irqd_to_hwirq(data
));
213 const unsigned long prev_irq_mask
= idio16gpio
->irq_mask
;
216 idio16gpio
->irq_mask
|= mask
;
218 if (!prev_irq_mask
) {
219 raw_spin_lock_irqsave(&idio16gpio
->lock
, flags
);
221 ioread8(&idio16gpio
->reg
->irq_ctl
);
223 raw_spin_unlock_irqrestore(&idio16gpio
->lock
, flags
);
227 static int idio_16_irq_set_type(struct irq_data
*data
, unsigned int flow_type
)
229 /* The only valid irq types are none and both-edges */
230 if (flow_type
!= IRQ_TYPE_NONE
&&
231 (flow_type
& IRQ_TYPE_EDGE_BOTH
) != IRQ_TYPE_EDGE_BOTH
)
237 static struct irq_chip idio_16_irqchip
= {
238 .name
= "pci-idio-16",
239 .irq_ack
= idio_16_irq_ack
,
240 .irq_mask
= idio_16_irq_mask
,
241 .irq_unmask
= idio_16_irq_unmask
,
242 .irq_set_type
= idio_16_irq_set_type
245 static irqreturn_t
idio_16_irq_handler(int irq
, void *dev_id
)
247 struct idio_16_gpio
*const idio16gpio
= dev_id
;
248 unsigned int irq_status
;
249 struct gpio_chip
*const chip
= &idio16gpio
->chip
;
252 raw_spin_lock(&idio16gpio
->lock
);
254 irq_status
= ioread8(&idio16gpio
->reg
->irq_status
);
256 raw_spin_unlock(&idio16gpio
->lock
);
258 /* Make sure our device generated IRQ */
259 if (!(irq_status
& 0x3) || !(irq_status
& 0x4))
262 for_each_set_bit(gpio
, &idio16gpio
->irq_mask
, chip
->ngpio
)
263 generic_handle_irq(irq_find_mapping(chip
->irq
.domain
, gpio
));
265 raw_spin_lock(&idio16gpio
->lock
);
267 /* Clear interrupt */
268 iowrite8(0, &idio16gpio
->reg
->in0_7
);
270 raw_spin_unlock(&idio16gpio
->lock
);
275 #define IDIO_16_NGPIO 32
276 static const char *idio_16_names
[IDIO_16_NGPIO
] = {
277 "OUT0", "OUT1", "OUT2", "OUT3", "OUT4", "OUT5", "OUT6", "OUT7",
278 "OUT8", "OUT9", "OUT10", "OUT11", "OUT12", "OUT13", "OUT14", "OUT15",
279 "IIN0", "IIN1", "IIN2", "IIN3", "IIN4", "IIN5", "IIN6", "IIN7",
280 "IIN8", "IIN9", "IIN10", "IIN11", "IIN12", "IIN13", "IIN14", "IIN15"
283 static int idio_16_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
285 struct device
*const dev
= &pdev
->dev
;
286 struct idio_16_gpio
*idio16gpio
;
288 const size_t pci_bar_index
= 2;
289 const char *const name
= pci_name(pdev
);
291 idio16gpio
= devm_kzalloc(dev
, sizeof(*idio16gpio
), GFP_KERNEL
);
295 err
= pcim_enable_device(pdev
);
297 dev_err(dev
, "Failed to enable PCI device (%d)\n", err
);
301 err
= pcim_iomap_regions(pdev
, BIT(pci_bar_index
), name
);
303 dev_err(dev
, "Unable to map PCI I/O addresses (%d)\n", err
);
307 idio16gpio
->reg
= pcim_iomap_table(pdev
)[pci_bar_index
];
309 /* Deactivate input filters */
310 iowrite8(0, &idio16gpio
->reg
->filter_ctl
);
312 idio16gpio
->chip
.label
= name
;
313 idio16gpio
->chip
.parent
= dev
;
314 idio16gpio
->chip
.owner
= THIS_MODULE
;
315 idio16gpio
->chip
.base
= -1;
316 idio16gpio
->chip
.ngpio
= IDIO_16_NGPIO
;
317 idio16gpio
->chip
.names
= idio_16_names
;
318 idio16gpio
->chip
.get_direction
= idio_16_gpio_get_direction
;
319 idio16gpio
->chip
.direction_input
= idio_16_gpio_direction_input
;
320 idio16gpio
->chip
.direction_output
= idio_16_gpio_direction_output
;
321 idio16gpio
->chip
.get
= idio_16_gpio_get
;
322 idio16gpio
->chip
.get_multiple
= idio_16_gpio_get_multiple
;
323 idio16gpio
->chip
.set
= idio_16_gpio_set
;
324 idio16gpio
->chip
.set_multiple
= idio_16_gpio_set_multiple
;
326 raw_spin_lock_init(&idio16gpio
->lock
);
328 err
= devm_gpiochip_add_data(dev
, &idio16gpio
->chip
, idio16gpio
);
330 dev_err(dev
, "GPIO registering failed (%d)\n", err
);
334 /* Disable IRQ by default and clear any pending interrupt */
335 iowrite8(0, &idio16gpio
->reg
->irq_ctl
);
336 iowrite8(0, &idio16gpio
->reg
->in0_7
);
338 err
= gpiochip_irqchip_add(&idio16gpio
->chip
, &idio_16_irqchip
, 0,
339 handle_edge_irq
, IRQ_TYPE_NONE
);
341 dev_err(dev
, "Could not add irqchip (%d)\n", err
);
345 err
= devm_request_irq(dev
, pdev
->irq
, idio_16_irq_handler
, IRQF_SHARED
,
348 dev_err(dev
, "IRQ handler registering failed (%d)\n", err
);
355 static const struct pci_device_id idio_16_pci_dev_id
[] = {
356 { PCI_DEVICE(0x494F, 0x0DC8) }, { 0 }
358 MODULE_DEVICE_TABLE(pci
, idio_16_pci_dev_id
);
360 static struct pci_driver idio_16_driver
= {
361 .name
= "pci-idio-16",
362 .id_table
= idio_16_pci_dev_id
,
363 .probe
= idio_16_probe
366 module_pci_driver(idio_16_driver
);
368 MODULE_AUTHOR("William Breathitt Gray <vilhelm.gray@gmail.com>");
369 MODULE_DESCRIPTION("ACCES PCI-IDIO-16 GPIO driver");
370 MODULE_LICENSE("GPL v2");