Linux Audio

Check our new training course

Loading...
v4.6
  1/*
  2 * GPIO driver for the WinSystems WS16C48
  3 * Copyright (C) 2016 William Breathitt Gray
  4 *
  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.
  8 *
  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.
 13 */
 14#include <linux/bitops.h>
 15#include <linux/device.h>
 16#include <linux/errno.h>
 17#include <linux/gpio/driver.h>
 18#include <linux/io.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>
 27
 28static unsigned ws16c48_base;
 29module_param(ws16c48_base, uint, 0);
 30MODULE_PARM_DESC(ws16c48_base, "WinSystems WS16C48 base address");
 31static unsigned ws16c48_irq;
 32module_param(ws16c48_irq, uint, 0);
 33MODULE_PARM_DESC(ws16c48_irq, "WinSystems WS16C48 interrupt line number");
 
 
 
 
 
 34
 35/**
 36 * struct ws16c48_gpio - GPIO device private data structure
 37 * @chip:	instance of the gpio_chip
 38 * @io_state:	bit I/O state (whether bit is set to input or output)
 39 * @out_state:	output bits state
 40 * @lock:	synchronization lock to prevent I/O race conditions
 41 * @irq_mask:	I/O bits affected by interrupts
 42 * @flow_mask:	IRQ flow type mask for the respective I/O bits
 43 * @base:	base port address of the GPIO device
 44 * @irq:	Interrupt line number
 45 */
 46struct ws16c48_gpio {
 47	struct gpio_chip chip;
 48	unsigned char io_state[6];
 49	unsigned char out_state[6];
 50	spinlock_t lock;
 51	unsigned long irq_mask;
 52	unsigned long flow_mask;
 53	unsigned base;
 54	unsigned irq;
 55};
 56
 57static int ws16c48_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
 58{
 59	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 60	const unsigned port = offset / 8;
 61	const unsigned mask = BIT(offset % 8);
 62
 63	return !!(ws16c48gpio->io_state[port] & mask);
 64}
 65
 66static int ws16c48_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
 67{
 68	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 69	const unsigned port = offset / 8;
 70	const unsigned mask = BIT(offset % 8);
 71	unsigned long flags;
 72
 73	spin_lock_irqsave(&ws16c48gpio->lock, flags);
 74
 75	ws16c48gpio->io_state[port] |= mask;
 76	ws16c48gpio->out_state[port] &= ~mask;
 77	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
 78
 79	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
 80
 81	return 0;
 82}
 83
 84static int ws16c48_gpio_direction_output(struct gpio_chip *chip,
 85	unsigned offset, int value)
 86{
 87	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 88	const unsigned port = offset / 8;
 89	const unsigned mask = BIT(offset % 8);
 90	unsigned long flags;
 91
 92	spin_lock_irqsave(&ws16c48gpio->lock, flags);
 93
 94	ws16c48gpio->io_state[port] &= ~mask;
 95	if (value)
 96		ws16c48gpio->out_state[port] |= mask;
 97	else
 98		ws16c48gpio->out_state[port] &= ~mask;
 99	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
100
101	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
102
103	return 0;
104}
105
106static int ws16c48_gpio_get(struct gpio_chip *chip, unsigned offset)
107{
108	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
109	const unsigned port = offset / 8;
110	const unsigned mask = BIT(offset % 8);
111	unsigned long flags;
112	unsigned port_state;
113
114	spin_lock_irqsave(&ws16c48gpio->lock, flags);
115
116	/* ensure that GPIO is set for input */
117	if (!(ws16c48gpio->io_state[port] & mask)) {
118		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
119		return -EINVAL;
120	}
121
122	port_state = inb(ws16c48gpio->base + port);
123
124	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
125
126	return !!(port_state & mask);
127}
128
129static void ws16c48_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
130{
131	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
132	const unsigned port = offset / 8;
133	const unsigned mask = BIT(offset % 8);
134	unsigned long flags;
135
136	spin_lock_irqsave(&ws16c48gpio->lock, flags);
137
138	/* ensure that GPIO is set for output */
139	if (ws16c48gpio->io_state[port] & mask) {
140		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
141		return;
142	}
143
144	if (value)
145		ws16c48gpio->out_state[port] |= mask;
146	else
147		ws16c48gpio->out_state[port] &= ~mask;
148	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
149
150	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
151}
152
153static void ws16c48_irq_ack(struct irq_data *data)
154{
155	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
156	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
157	const unsigned long offset = irqd_to_hwirq(data);
158	const unsigned port = offset / 8;
159	const unsigned mask = BIT(offset % 8);
160	unsigned long flags;
161	unsigned port_state;
162
163	/* only the first 3 ports support interrupts */
164	if (port > 2)
165		return;
166
167	spin_lock_irqsave(&ws16c48gpio->lock, flags);
168
169	port_state = ws16c48gpio->irq_mask >> (8*port);
170
171	outb(0x80, ws16c48gpio->base + 7);
172	outb(port_state & ~mask, ws16c48gpio->base + 8 + port);
173	outb(port_state | mask, ws16c48gpio->base + 8 + port);
174	outb(0xC0, ws16c48gpio->base + 7);
175
176	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
177}
178
179static void ws16c48_irq_mask(struct irq_data *data)
180{
181	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
182	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
183	const unsigned long offset = irqd_to_hwirq(data);
184	const unsigned long mask = BIT(offset);
185	const unsigned port = offset / 8;
186	unsigned long flags;
187
188	/* only the first 3 ports support interrupts */
189	if (port > 2)
190		return;
191
192	spin_lock_irqsave(&ws16c48gpio->lock, flags);
193
194	ws16c48gpio->irq_mask &= ~mask;
195
196	outb(0x80, ws16c48gpio->base + 7);
197	outb(ws16c48gpio->irq_mask >> (8*port), ws16c48gpio->base + 8 + port);
198	outb(0xC0, ws16c48gpio->base + 7);
199
200	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
201}
202
203static void ws16c48_irq_unmask(struct irq_data *data)
204{
205	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
206	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
207	const unsigned long offset = irqd_to_hwirq(data);
208	const unsigned long mask = BIT(offset);
209	const unsigned port = offset / 8;
210	unsigned long flags;
211
212	/* only the first 3 ports support interrupts */
213	if (port > 2)
214		return;
215
216	spin_lock_irqsave(&ws16c48gpio->lock, flags);
217
218	ws16c48gpio->irq_mask |= mask;
219
220	outb(0x80, ws16c48gpio->base + 7);
221	outb(ws16c48gpio->irq_mask >> (8*port), ws16c48gpio->base + 8 + port);
222	outb(0xC0, ws16c48gpio->base + 7);
223
224	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
225}
226
227static int ws16c48_irq_set_type(struct irq_data *data, unsigned flow_type)
228{
229	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
230	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
231	const unsigned long offset = irqd_to_hwirq(data);
232	const unsigned long mask = BIT(offset);
233	const unsigned port = offset / 8;
234	unsigned long flags;
235
236	/* only the first 3 ports support interrupts */
237	if (port > 2)
238		return -EINVAL;
239
240	spin_lock_irqsave(&ws16c48gpio->lock, flags);
241
242	switch (flow_type) {
243	case IRQ_TYPE_NONE:
244		break;
245	case IRQ_TYPE_EDGE_RISING:
246		ws16c48gpio->flow_mask |= mask;
247		break;
248	case IRQ_TYPE_EDGE_FALLING:
249		ws16c48gpio->flow_mask &= ~mask;
250		break;
251	default:
252		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
253		return -EINVAL;
254	}
255
256	outb(0x40, ws16c48gpio->base + 7);
257	outb(ws16c48gpio->flow_mask >> (8*port), ws16c48gpio->base + 8 + port);
258	outb(0xC0, ws16c48gpio->base + 7);
259
260	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
261
262	return 0;
263}
264
265static struct irq_chip ws16c48_irqchip = {
266	.name = "ws16c48",
267	.irq_ack = ws16c48_irq_ack,
268	.irq_mask = ws16c48_irq_mask,
269	.irq_unmask = ws16c48_irq_unmask,
270	.irq_set_type = ws16c48_irq_set_type
271};
272
273static irqreturn_t ws16c48_irq_handler(int irq, void *dev_id)
274{
275	struct ws16c48_gpio *const ws16c48gpio = dev_id;
276	struct gpio_chip *const chip = &ws16c48gpio->chip;
277	unsigned long int_pending;
278	unsigned long port;
279	unsigned long int_id;
280	unsigned long gpio;
281
282	int_pending = inb(ws16c48gpio->base + 6) & 0x7;
283	if (!int_pending)
284		return IRQ_NONE;
285
286	/* loop until all pending interrupts are handled */
287	do {
288		for_each_set_bit(port, &int_pending, 3) {
289			int_id = inb(ws16c48gpio->base + 8 + port);
290			for_each_set_bit(gpio, &int_id, 8)
291				generic_handle_irq(irq_find_mapping(
292					chip->irqdomain, gpio + 8*port));
293		}
294
295		int_pending = inb(ws16c48gpio->base + 6) & 0x7;
296	} while (int_pending);
297
298	return IRQ_HANDLED;
299}
300
301static int __init ws16c48_probe(struct platform_device *pdev)
302{
303	struct device *dev = &pdev->dev;
304	struct ws16c48_gpio *ws16c48gpio;
305	const unsigned base = ws16c48_base;
306	const unsigned extent = 16;
307	const char *const name = dev_name(dev);
308	int err;
309	const unsigned irq = ws16c48_irq;
310
311	ws16c48gpio = devm_kzalloc(dev, sizeof(*ws16c48gpio), GFP_KERNEL);
312	if (!ws16c48gpio)
313		return -ENOMEM;
314
315	if (!devm_request_region(dev, base, extent, name)) {
316		dev_err(dev, "Unable to lock port addresses (0x%X-0x%X)\n",
317			base, base + extent);
318		return -EBUSY;
319	}
320
321	ws16c48gpio->chip.label = name;
322	ws16c48gpio->chip.parent = dev;
323	ws16c48gpio->chip.owner = THIS_MODULE;
324	ws16c48gpio->chip.base = -1;
325	ws16c48gpio->chip.ngpio = 48;
326	ws16c48gpio->chip.get_direction = ws16c48_gpio_get_direction;
327	ws16c48gpio->chip.direction_input = ws16c48_gpio_direction_input;
328	ws16c48gpio->chip.direction_output = ws16c48_gpio_direction_output;
329	ws16c48gpio->chip.get = ws16c48_gpio_get;
330	ws16c48gpio->chip.set = ws16c48_gpio_set;
331	ws16c48gpio->base = base;
332	ws16c48gpio->irq = irq;
333
334	spin_lock_init(&ws16c48gpio->lock);
335
336	dev_set_drvdata(dev, ws16c48gpio);
337
338	err = gpiochip_add_data(&ws16c48gpio->chip, ws16c48gpio);
339	if (err) {
340		dev_err(dev, "GPIO registering failed (%d)\n", err);
341		return err;
342	}
343
344	/* Disable IRQ by default */
345	outb(0x80, base + 7);
346	outb(0, base + 8);
347	outb(0, base + 9);
348	outb(0, base + 10);
349	outb(0xC0, base + 7);
350
351	err = gpiochip_irqchip_add(&ws16c48gpio->chip, &ws16c48_irqchip, 0,
352		handle_edge_irq, IRQ_TYPE_NONE);
353	if (err) {
354		dev_err(dev, "Could not add irqchip (%d)\n", err);
355		goto err_gpiochip_remove;
356	}
357
358	err = request_irq(irq, ws16c48_irq_handler, IRQF_SHARED, name,
359		ws16c48gpio);
360	if (err) {
361		dev_err(dev, "IRQ handler registering failed (%d)\n", err);
362		goto err_gpiochip_remove;
363	}
364
365	return 0;
366
367err_gpiochip_remove:
368	gpiochip_remove(&ws16c48gpio->chip);
369	return err;
370}
371
372static int ws16c48_remove(struct platform_device *pdev)
373{
374	struct ws16c48_gpio *const ws16c48gpio = platform_get_drvdata(pdev);
375
376	free_irq(ws16c48gpio->irq, ws16c48gpio);
377	gpiochip_remove(&ws16c48gpio->chip);
378
379	return 0;
380}
381
382static struct platform_device *ws16c48_device;
383
384static struct platform_driver ws16c48_driver = {
385	.driver = {
386		.name = "ws16c48"
387	},
388	.remove = ws16c48_remove
389};
390
391static void __exit ws16c48_exit(void)
392{
393	platform_device_unregister(ws16c48_device);
394	platform_driver_unregister(&ws16c48_driver);
395}
396
397static int __init ws16c48_init(void)
398{
399	int err;
400
401	ws16c48_device = platform_device_alloc(ws16c48_driver.driver.name, -1);
402	if (!ws16c48_device)
403		return -ENOMEM;
404
405	err = platform_device_add(ws16c48_device);
406	if (err)
407		goto err_platform_device;
408
409	err = platform_driver_probe(&ws16c48_driver, ws16c48_probe);
410	if (err)
411		goto err_platform_driver;
412
413	return 0;
414
415err_platform_driver:
416	platform_device_del(ws16c48_device);
417err_platform_device:
418	platform_device_put(ws16c48_device);
419	return err;
420}
421
422module_init(ws16c48_init);
423module_exit(ws16c48_exit);
424
425MODULE_AUTHOR("William Breathitt Gray <vilhelm.gray@gmail.com>");
426MODULE_DESCRIPTION("WinSystems WS16C48 GPIO driver");
427MODULE_LICENSE("GPL v2");
v4.10.11
  1/*
  2 * GPIO driver for the WinSystems WS16C48
  3 * Copyright (C) 2016 William Breathitt Gray
  4 *
  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.
  8 *
  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.
 13 */
 14#include <linux/bitops.h>
 15#include <linux/device.h>
 16#include <linux/errno.h>
 17#include <linux/gpio/driver.h>
 18#include <linux/io.h>
 19#include <linux/ioport.h>
 20#include <linux/interrupt.h>
 21#include <linux/irqdesc.h>
 22#include <linux/isa.h>
 23#include <linux/kernel.h>
 24#include <linux/module.h>
 25#include <linux/moduleparam.h>
 
 26#include <linux/spinlock.h>
 27
 28#define WS16C48_EXTENT 16
 29#define MAX_NUM_WS16C48 max_num_isa_dev(WS16C48_EXTENT)
 30
 31static unsigned int base[MAX_NUM_WS16C48];
 32static unsigned int num_ws16c48;
 33module_param_array(base, uint, &num_ws16c48, 0);
 34MODULE_PARM_DESC(base, "WinSystems WS16C48 base addresses");
 35
 36static unsigned int irq[MAX_NUM_WS16C48];
 37module_param_array(irq, uint, NULL, 0);
 38MODULE_PARM_DESC(irq, "WinSystems WS16C48 interrupt line numbers");
 39
 40/**
 41 * struct ws16c48_gpio - GPIO device private data structure
 42 * @chip:	instance of the gpio_chip
 43 * @io_state:	bit I/O state (whether bit is set to input or output)
 44 * @out_state:	output bits state
 45 * @lock:	synchronization lock to prevent I/O race conditions
 46 * @irq_mask:	I/O bits affected by interrupts
 47 * @flow_mask:	IRQ flow type mask for the respective I/O bits
 48 * @base:	base port address of the GPIO device
 49 * @irq:	Interrupt line number
 50 */
 51struct ws16c48_gpio {
 52	struct gpio_chip chip;
 53	unsigned char io_state[6];
 54	unsigned char out_state[6];
 55	spinlock_t lock;
 56	unsigned long irq_mask;
 57	unsigned long flow_mask;
 58	unsigned base;
 59	unsigned irq;
 60};
 61
 62static int ws16c48_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
 63{
 64	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 65	const unsigned port = offset / 8;
 66	const unsigned mask = BIT(offset % 8);
 67
 68	return !!(ws16c48gpio->io_state[port] & mask);
 69}
 70
 71static int ws16c48_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
 72{
 73	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 74	const unsigned port = offset / 8;
 75	const unsigned mask = BIT(offset % 8);
 76	unsigned long flags;
 77
 78	spin_lock_irqsave(&ws16c48gpio->lock, flags);
 79
 80	ws16c48gpio->io_state[port] |= mask;
 81	ws16c48gpio->out_state[port] &= ~mask;
 82	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
 83
 84	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
 85
 86	return 0;
 87}
 88
 89static int ws16c48_gpio_direction_output(struct gpio_chip *chip,
 90	unsigned offset, int value)
 91{
 92	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
 93	const unsigned port = offset / 8;
 94	const unsigned mask = BIT(offset % 8);
 95	unsigned long flags;
 96
 97	spin_lock_irqsave(&ws16c48gpio->lock, flags);
 98
 99	ws16c48gpio->io_state[port] &= ~mask;
100	if (value)
101		ws16c48gpio->out_state[port] |= mask;
102	else
103		ws16c48gpio->out_state[port] &= ~mask;
104	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
105
106	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
107
108	return 0;
109}
110
111static int ws16c48_gpio_get(struct gpio_chip *chip, unsigned offset)
112{
113	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
114	const unsigned port = offset / 8;
115	const unsigned mask = BIT(offset % 8);
116	unsigned long flags;
117	unsigned port_state;
118
119	spin_lock_irqsave(&ws16c48gpio->lock, flags);
120
121	/* ensure that GPIO is set for input */
122	if (!(ws16c48gpio->io_state[port] & mask)) {
123		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
124		return -EINVAL;
125	}
126
127	port_state = inb(ws16c48gpio->base + port);
128
129	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
130
131	return !!(port_state & mask);
132}
133
134static void ws16c48_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
135{
136	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
137	const unsigned port = offset / 8;
138	const unsigned mask = BIT(offset % 8);
139	unsigned long flags;
140
141	spin_lock_irqsave(&ws16c48gpio->lock, flags);
142
143	/* ensure that GPIO is set for output */
144	if (ws16c48gpio->io_state[port] & mask) {
145		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
146		return;
147	}
148
149	if (value)
150		ws16c48gpio->out_state[port] |= mask;
151	else
152		ws16c48gpio->out_state[port] &= ~mask;
153	outb(ws16c48gpio->out_state[port], ws16c48gpio->base + port);
154
155	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
156}
157
158static void ws16c48_irq_ack(struct irq_data *data)
159{
160	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
161	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
162	const unsigned long offset = irqd_to_hwirq(data);
163	const unsigned port = offset / 8;
164	const unsigned mask = BIT(offset % 8);
165	unsigned long flags;
166	unsigned port_state;
167
168	/* only the first 3 ports support interrupts */
169	if (port > 2)
170		return;
171
172	spin_lock_irqsave(&ws16c48gpio->lock, flags);
173
174	port_state = ws16c48gpio->irq_mask >> (8*port);
175
176	outb(0x80, ws16c48gpio->base + 7);
177	outb(port_state & ~mask, ws16c48gpio->base + 8 + port);
178	outb(port_state | mask, ws16c48gpio->base + 8 + port);
179	outb(0xC0, ws16c48gpio->base + 7);
180
181	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
182}
183
184static void ws16c48_irq_mask(struct irq_data *data)
185{
186	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
187	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
188	const unsigned long offset = irqd_to_hwirq(data);
189	const unsigned long mask = BIT(offset);
190	const unsigned port = offset / 8;
191	unsigned long flags;
192
193	/* only the first 3 ports support interrupts */
194	if (port > 2)
195		return;
196
197	spin_lock_irqsave(&ws16c48gpio->lock, flags);
198
199	ws16c48gpio->irq_mask &= ~mask;
200
201	outb(0x80, ws16c48gpio->base + 7);
202	outb(ws16c48gpio->irq_mask >> (8*port), ws16c48gpio->base + 8 + port);
203	outb(0xC0, ws16c48gpio->base + 7);
204
205	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
206}
207
208static void ws16c48_irq_unmask(struct irq_data *data)
209{
210	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
211	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
212	const unsigned long offset = irqd_to_hwirq(data);
213	const unsigned long mask = BIT(offset);
214	const unsigned port = offset / 8;
215	unsigned long flags;
216
217	/* only the first 3 ports support interrupts */
218	if (port > 2)
219		return;
220
221	spin_lock_irqsave(&ws16c48gpio->lock, flags);
222
223	ws16c48gpio->irq_mask |= mask;
224
225	outb(0x80, ws16c48gpio->base + 7);
226	outb(ws16c48gpio->irq_mask >> (8*port), ws16c48gpio->base + 8 + port);
227	outb(0xC0, ws16c48gpio->base + 7);
228
229	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
230}
231
232static int ws16c48_irq_set_type(struct irq_data *data, unsigned flow_type)
233{
234	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
235	struct ws16c48_gpio *const ws16c48gpio = gpiochip_get_data(chip);
236	const unsigned long offset = irqd_to_hwirq(data);
237	const unsigned long mask = BIT(offset);
238	const unsigned port = offset / 8;
239	unsigned long flags;
240
241	/* only the first 3 ports support interrupts */
242	if (port > 2)
243		return -EINVAL;
244
245	spin_lock_irqsave(&ws16c48gpio->lock, flags);
246
247	switch (flow_type) {
248	case IRQ_TYPE_NONE:
249		break;
250	case IRQ_TYPE_EDGE_RISING:
251		ws16c48gpio->flow_mask |= mask;
252		break;
253	case IRQ_TYPE_EDGE_FALLING:
254		ws16c48gpio->flow_mask &= ~mask;
255		break;
256	default:
257		spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
258		return -EINVAL;
259	}
260
261	outb(0x40, ws16c48gpio->base + 7);
262	outb(ws16c48gpio->flow_mask >> (8*port), ws16c48gpio->base + 8 + port);
263	outb(0xC0, ws16c48gpio->base + 7);
264
265	spin_unlock_irqrestore(&ws16c48gpio->lock, flags);
266
267	return 0;
268}
269
270static struct irq_chip ws16c48_irqchip = {
271	.name = "ws16c48",
272	.irq_ack = ws16c48_irq_ack,
273	.irq_mask = ws16c48_irq_mask,
274	.irq_unmask = ws16c48_irq_unmask,
275	.irq_set_type = ws16c48_irq_set_type
276};
277
278static irqreturn_t ws16c48_irq_handler(int irq, void *dev_id)
279{
280	struct ws16c48_gpio *const ws16c48gpio = dev_id;
281	struct gpio_chip *const chip = &ws16c48gpio->chip;
282	unsigned long int_pending;
283	unsigned long port;
284	unsigned long int_id;
285	unsigned long gpio;
286
287	int_pending = inb(ws16c48gpio->base + 6) & 0x7;
288	if (!int_pending)
289		return IRQ_NONE;
290
291	/* loop until all pending interrupts are handled */
292	do {
293		for_each_set_bit(port, &int_pending, 3) {
294			int_id = inb(ws16c48gpio->base + 8 + port);
295			for_each_set_bit(gpio, &int_id, 8)
296				generic_handle_irq(irq_find_mapping(
297					chip->irqdomain, gpio + 8*port));
298		}
299
300		int_pending = inb(ws16c48gpio->base + 6) & 0x7;
301	} while (int_pending);
302
303	return IRQ_HANDLED;
304}
305
306static int ws16c48_probe(struct device *dev, unsigned int id)
307{
 
308	struct ws16c48_gpio *ws16c48gpio;
 
 
309	const char *const name = dev_name(dev);
310	int err;
 
311
312	ws16c48gpio = devm_kzalloc(dev, sizeof(*ws16c48gpio), GFP_KERNEL);
313	if (!ws16c48gpio)
314		return -ENOMEM;
315
316	if (!devm_request_region(dev, base[id], WS16C48_EXTENT, name)) {
317		dev_err(dev, "Unable to lock port addresses (0x%X-0x%X)\n",
318			base[id], base[id] + WS16C48_EXTENT);
319		return -EBUSY;
320	}
321
322	ws16c48gpio->chip.label = name;
323	ws16c48gpio->chip.parent = dev;
324	ws16c48gpio->chip.owner = THIS_MODULE;
325	ws16c48gpio->chip.base = -1;
326	ws16c48gpio->chip.ngpio = 48;
327	ws16c48gpio->chip.get_direction = ws16c48_gpio_get_direction;
328	ws16c48gpio->chip.direction_input = ws16c48_gpio_direction_input;
329	ws16c48gpio->chip.direction_output = ws16c48_gpio_direction_output;
330	ws16c48gpio->chip.get = ws16c48_gpio_get;
331	ws16c48gpio->chip.set = ws16c48_gpio_set;
332	ws16c48gpio->base = base[id];
333	ws16c48gpio->irq = irq[id];
334
335	spin_lock_init(&ws16c48gpio->lock);
336
337	dev_set_drvdata(dev, ws16c48gpio);
338
339	err = gpiochip_add_data(&ws16c48gpio->chip, ws16c48gpio);
340	if (err) {
341		dev_err(dev, "GPIO registering failed (%d)\n", err);
342		return err;
343	}
344
345	/* Disable IRQ by default */
346	outb(0x80, base[id] + 7);
347	outb(0, base[id] + 8);
348	outb(0, base[id] + 9);
349	outb(0, base[id] + 10);
350	outb(0xC0, base[id] + 7);
351
352	err = gpiochip_irqchip_add(&ws16c48gpio->chip, &ws16c48_irqchip, 0,
353		handle_edge_irq, IRQ_TYPE_NONE);
354	if (err) {
355		dev_err(dev, "Could not add irqchip (%d)\n", err);
356		goto err_gpiochip_remove;
357	}
358
359	err = request_irq(irq[id], ws16c48_irq_handler, IRQF_SHARED, name,
360		ws16c48gpio);
361	if (err) {
362		dev_err(dev, "IRQ handler registering failed (%d)\n", err);
363		goto err_gpiochip_remove;
364	}
365
366	return 0;
367
368err_gpiochip_remove:
369	gpiochip_remove(&ws16c48gpio->chip);
370	return err;
371}
372
373static int ws16c48_remove(struct device *dev, unsigned int id)
374{
375	struct ws16c48_gpio *const ws16c48gpio = dev_get_drvdata(dev);
376
377	free_irq(ws16c48gpio->irq, ws16c48gpio);
378	gpiochip_remove(&ws16c48gpio->chip);
379
380	return 0;
381}
382
383static struct isa_driver ws16c48_driver = {
384	.probe = ws16c48_probe,
 
385	.driver = {
386		.name = "ws16c48"
387	},
388	.remove = ws16c48_remove
389};
390
391module_isa_driver(ws16c48_driver, num_ws16c48);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
393MODULE_AUTHOR("William Breathitt Gray <vilhelm.gray@gmail.com>");
394MODULE_DESCRIPTION("WinSystems WS16C48 GPIO driver");
395MODULE_LICENSE("GPL v2");