1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/bitmap.h>
15#include <linux/bitops.h>
16#include <linux/device.h>
17#include <linux/errno.h>
18#include <linux/gpio/driver.h>
19#include <linux/interrupt.h>
20#include <linux/irqdesc.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/pci.h>
24#include <linux/spinlock.h>
25#include <linux/types.h>
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44struct idio_16_gpio_reg {
45 u8 out0_7;
46 u8 in0_7;
47 u8 irq_ctl;
48 u8 filter_ctl;
49 u8 out8_15;
50 u8 in8_15;
51 u8 irq_status;
52};
53
54
55
56
57
58
59
60
61struct idio_16_gpio {
62 struct gpio_chip chip;
63 raw_spinlock_t lock;
64 struct idio_16_gpio_reg __iomem *reg;
65 unsigned long irq_mask;
66};
67
68static int idio_16_gpio_get_direction(struct gpio_chip *chip,
69 unsigned int offset)
70{
71 if (offset > 15)
72 return 1;
73
74 return 0;
75}
76
77static int idio_16_gpio_direction_input(struct gpio_chip *chip,
78 unsigned int offset)
79{
80 return 0;
81}
82
83static int idio_16_gpio_direction_output(struct gpio_chip *chip,
84 unsigned int offset, int value)
85{
86 chip->set(chip, offset, value);
87 return 0;
88}
89
90static int idio_16_gpio_get(struct gpio_chip *chip, unsigned int offset)
91{
92 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
93 unsigned long mask = BIT(offset);
94
95 if (offset < 8)
96 return !!(ioread8(&idio16gpio->reg->out0_7) & mask);
97
98 if (offset < 16)
99 return !!(ioread8(&idio16gpio->reg->out8_15) & (mask >> 8));
100
101 if (offset < 24)
102 return !!(ioread8(&idio16gpio->reg->in0_7) & (mask >> 16));
103
104 return !!(ioread8(&idio16gpio->reg->in8_15) & (mask >> 24));
105}
106
107static int idio_16_gpio_get_multiple(struct gpio_chip *chip,
108 unsigned long *mask, unsigned long *bits)
109{
110 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
111 size_t i;
112 const unsigned int gpio_reg_size = 8;
113 unsigned int bits_offset;
114 size_t word_index;
115 unsigned int word_offset;
116 unsigned long word_mask;
117 const unsigned long port_mask = GENMASK(gpio_reg_size - 1, 0);
118 unsigned long port_state;
119 void __iomem *ports[] = {
120 &idio16gpio->reg->out0_7, &idio16gpio->reg->out8_15,
121 &idio16gpio->reg->in0_7, &idio16gpio->reg->in8_15,
122 };
123
124
125 bitmap_zero(bits, chip->ngpio);
126
127
128 for (i = 0; i < ARRAY_SIZE(ports); i++) {
129
130 bits_offset = i * gpio_reg_size;
131
132
133 word_index = BIT_WORD(bits_offset);
134
135
136 word_offset = bits_offset % BITS_PER_LONG;
137
138
139 word_mask = mask[word_index] & (port_mask << word_offset);
140 if (!word_mask) {
141
142 continue;
143 }
144
145
146 port_state = ioread8(ports[i]);
147
148
149 bits[word_index] |= port_state << word_offset;
150 }
151
152 return 0;
153}
154
155static void idio_16_gpio_set(struct gpio_chip *chip, unsigned int offset,
156 int value)
157{
158 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
159 unsigned int mask = BIT(offset);
160 void __iomem *base;
161 unsigned long flags;
162 unsigned int out_state;
163
164 if (offset > 15)
165 return;
166
167 if (offset > 7) {
168 mask >>= 8;
169 base = &idio16gpio->reg->out8_15;
170 } else
171 base = &idio16gpio->reg->out0_7;
172
173 raw_spin_lock_irqsave(&idio16gpio->lock, flags);
174
175 if (value)
176 out_state = ioread8(base) | mask;
177 else
178 out_state = ioread8(base) & ~mask;
179
180 iowrite8(out_state, base);
181
182 raw_spin_unlock_irqrestore(&idio16gpio->lock, flags);
183}
184
185static void idio_16_gpio_set_multiple(struct gpio_chip *chip,
186 unsigned long *mask, unsigned long *bits)
187{
188 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
189 unsigned long flags;
190 unsigned int out_state;
191
192 raw_spin_lock_irqsave(&idio16gpio->lock, flags);
193
194
195 if (*mask & 0xFF) {
196 out_state = ioread8(&idio16gpio->reg->out0_7) & ~*mask;
197 out_state |= *mask & *bits;
198 iowrite8(out_state, &idio16gpio->reg->out0_7);
199 }
200
201
202 *mask >>= 8;
203
204
205 if (*mask & 0xFF) {
206 *bits >>= 8;
207 out_state = ioread8(&idio16gpio->reg->out8_15) & ~*mask;
208 out_state |= *mask & *bits;
209 iowrite8(out_state, &idio16gpio->reg->out8_15);
210 }
211
212 raw_spin_unlock_irqrestore(&idio16gpio->lock, flags);
213}
214
215static void idio_16_irq_ack(struct irq_data *data)
216{
217}
218
219static void idio_16_irq_mask(struct irq_data *data)
220{
221 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
222 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
223 const unsigned long mask = BIT(irqd_to_hwirq(data));
224 unsigned long flags;
225
226 idio16gpio->irq_mask &= ~mask;
227
228 if (!idio16gpio->irq_mask) {
229 raw_spin_lock_irqsave(&idio16gpio->lock, flags);
230
231 iowrite8(0, &idio16gpio->reg->irq_ctl);
232
233 raw_spin_unlock_irqrestore(&idio16gpio->lock, flags);
234 }
235}
236
237static void idio_16_irq_unmask(struct irq_data *data)
238{
239 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
240 struct idio_16_gpio *const idio16gpio = gpiochip_get_data(chip);
241 const unsigned long mask = BIT(irqd_to_hwirq(data));
242 const unsigned long prev_irq_mask = idio16gpio->irq_mask;
243 unsigned long flags;
244
245 idio16gpio->irq_mask |= mask;
246
247 if (!prev_irq_mask) {
248 raw_spin_lock_irqsave(&idio16gpio->lock, flags);
249
250 ioread8(&idio16gpio->reg->irq_ctl);
251
252 raw_spin_unlock_irqrestore(&idio16gpio->lock, flags);
253 }
254}
255
256static int idio_16_irq_set_type(struct irq_data *data, unsigned int flow_type)
257{
258
259 if (flow_type != IRQ_TYPE_NONE &&
260 (flow_type & IRQ_TYPE_EDGE_BOTH) != IRQ_TYPE_EDGE_BOTH)
261 return -EINVAL;
262
263 return 0;
264}
265
266static struct irq_chip idio_16_irqchip = {
267 .name = "pci-idio-16",
268 .irq_ack = idio_16_irq_ack,
269 .irq_mask = idio_16_irq_mask,
270 .irq_unmask = idio_16_irq_unmask,
271 .irq_set_type = idio_16_irq_set_type
272};
273
274static irqreturn_t idio_16_irq_handler(int irq, void *dev_id)
275{
276 struct idio_16_gpio *const idio16gpio = dev_id;
277 unsigned int irq_status;
278 struct gpio_chip *const chip = &idio16gpio->chip;
279 int gpio;
280
281 raw_spin_lock(&idio16gpio->lock);
282
283 irq_status = ioread8(&idio16gpio->reg->irq_status);
284
285 raw_spin_unlock(&idio16gpio->lock);
286
287
288 if (!(irq_status & 0x3) || !(irq_status & 0x4))
289 return IRQ_NONE;
290
291 for_each_set_bit(gpio, &idio16gpio->irq_mask, chip->ngpio)
292 generic_handle_irq(irq_find_mapping(chip->irq.domain, gpio));
293
294 raw_spin_lock(&idio16gpio->lock);
295
296
297 iowrite8(0, &idio16gpio->reg->in0_7);
298
299 raw_spin_unlock(&idio16gpio->lock);
300
301 return IRQ_HANDLED;
302}
303
304#define IDIO_16_NGPIO 32
305static const char *idio_16_names[IDIO_16_NGPIO] = {
306 "OUT0", "OUT1", "OUT2", "OUT3", "OUT4", "OUT5", "OUT6", "OUT7",
307 "OUT8", "OUT9", "OUT10", "OUT11", "OUT12", "OUT13", "OUT14", "OUT15",
308 "IIN0", "IIN1", "IIN2", "IIN3", "IIN4", "IIN5", "IIN6", "IIN7",
309 "IIN8", "IIN9", "IIN10", "IIN11", "IIN12", "IIN13", "IIN14", "IIN15"
310};
311
312static int idio_16_probe(struct pci_dev *pdev, const struct pci_device_id *id)
313{
314 struct device *const dev = &pdev->dev;
315 struct idio_16_gpio *idio16gpio;
316 int err;
317 const size_t pci_bar_index = 2;
318 const char *const name = pci_name(pdev);
319
320 idio16gpio = devm_kzalloc(dev, sizeof(*idio16gpio), GFP_KERNEL);
321 if (!idio16gpio)
322 return -ENOMEM;
323
324 err = pcim_enable_device(pdev);
325 if (err) {
326 dev_err(dev, "Failed to enable PCI device (%d)\n", err);
327 return err;
328 }
329
330 err = pcim_iomap_regions(pdev, BIT(pci_bar_index), name);
331 if (err) {
332 dev_err(dev, "Unable to map PCI I/O addresses (%d)\n", err);
333 return err;
334 }
335
336 idio16gpio->reg = pcim_iomap_table(pdev)[pci_bar_index];
337
338
339 iowrite8(0, &idio16gpio->reg->filter_ctl);
340
341 idio16gpio->chip.label = name;
342 idio16gpio->chip.parent = dev;
343 idio16gpio->chip.owner = THIS_MODULE;
344 idio16gpio->chip.base = -1;
345 idio16gpio->chip.ngpio = IDIO_16_NGPIO;
346 idio16gpio->chip.names = idio_16_names;
347 idio16gpio->chip.get_direction = idio_16_gpio_get_direction;
348 idio16gpio->chip.direction_input = idio_16_gpio_direction_input;
349 idio16gpio->chip.direction_output = idio_16_gpio_direction_output;
350 idio16gpio->chip.get = idio_16_gpio_get;
351 idio16gpio->chip.get_multiple = idio_16_gpio_get_multiple;
352 idio16gpio->chip.set = idio_16_gpio_set;
353 idio16gpio->chip.set_multiple = idio_16_gpio_set_multiple;
354
355 raw_spin_lock_init(&idio16gpio->lock);
356
357 err = devm_gpiochip_add_data(dev, &idio16gpio->chip, idio16gpio);
358 if (err) {
359 dev_err(dev, "GPIO registering failed (%d)\n", err);
360 return err;
361 }
362
363
364 iowrite8(0, &idio16gpio->reg->irq_ctl);
365 iowrite8(0, &idio16gpio->reg->in0_7);
366
367 err = gpiochip_irqchip_add(&idio16gpio->chip, &idio_16_irqchip, 0,
368 handle_edge_irq, IRQ_TYPE_NONE);
369 if (err) {
370 dev_err(dev, "Could not add irqchip (%d)\n", err);
371 return err;
372 }
373
374 err = devm_request_irq(dev, pdev->irq, idio_16_irq_handler, IRQF_SHARED,
375 name, idio16gpio);
376 if (err) {
377 dev_err(dev, "IRQ handler registering failed (%d)\n", err);
378 return err;
379 }
380
381 return 0;
382}
383
384static const struct pci_device_id idio_16_pci_dev_id[] = {
385 { PCI_DEVICE(0x494F, 0x0DC8) }, { 0 }
386};
387MODULE_DEVICE_TABLE(pci, idio_16_pci_dev_id);
388
389static struct pci_driver idio_16_driver = {
390 .name = "pci-idio-16",
391 .id_table = idio_16_pci_dev_id,
392 .probe = idio_16_probe
393};
394
395module_pci_driver(idio_16_driver);
396
397MODULE_AUTHOR("William Breathitt Gray <vilhelm.gray@gmail.com>");
398MODULE_DESCRIPTION("ACCES PCI-IDIO-16 GPIO driver");
399MODULE_LICENSE("GPL v2");
400