blob: efc7c129016d1d748f9c9a837956ced99cee0471 [file] [log] [blame]
Richard Röjfors35570ac2009-12-15 16:46:18 -08001/*
Grant Likelyc103de22011-06-04 18:38:28 -06002 * Timberdale FPGA GPIO driver
Richard Röjfors35570ac2009-12-15 16:46:18 -08003 * Copyright (c) 2009 Intel Corporation
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,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19/* Supports:
20 * Timberdale FPGA GPIO
21 */
22
23#include <linux/module.h>
24#include <linux/gpio.h>
25#include <linux/platform_device.h>
David Millere3cb91c2010-03-05 13:41:36 -080026#include <linux/irq.h>
Richard Röjfors35570ac2009-12-15 16:46:18 -080027#include <linux/io.h>
28#include <linux/timb_gpio.h>
29#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Richard Röjfors35570ac2009-12-15 16:46:18 -080031
32#define DRIVER_NAME "timb-gpio"
33
34#define TGPIOVAL 0x00
35#define TGPIODIR 0x04
36#define TGPIO_IER 0x08
37#define TGPIO_ISR 0x0c
38#define TGPIO_IPR 0x10
39#define TGPIO_ICR 0x14
40#define TGPIO_FLR 0x18
41#define TGPIO_LVR 0x1c
Richard Röjfors8c35c892010-03-05 13:44:35 -080042#define TGPIO_VER 0x20
43#define TGPIO_BFLR 0x24
Richard Röjfors35570ac2009-12-15 16:46:18 -080044
45struct timbgpio {
46 void __iomem *membase;
47 spinlock_t lock; /* mutual exclusion */
48 struct gpio_chip gpio;
49 int irq_base;
Tomas Hallenberg76d800a2010-10-27 15:33:17 -070050 unsigned long last_ier;
Richard Röjfors35570ac2009-12-15 16:46:18 -080051};
52
53static int timbgpio_update_bit(struct gpio_chip *gpio, unsigned index,
54 unsigned offset, bool enabled)
55{
56 struct timbgpio *tgpio = container_of(gpio, struct timbgpio, gpio);
57 u32 reg;
58
59 spin_lock(&tgpio->lock);
60 reg = ioread32(tgpio->membase + offset);
61
62 if (enabled)
63 reg |= (1 << index);
64 else
65 reg &= ~(1 << index);
66
67 iowrite32(reg, tgpio->membase + offset);
68 spin_unlock(&tgpio->lock);
69
70 return 0;
71}
72
73static int timbgpio_gpio_direction_input(struct gpio_chip *gpio, unsigned nr)
74{
75 return timbgpio_update_bit(gpio, nr, TGPIODIR, true);
76}
77
78static int timbgpio_gpio_get(struct gpio_chip *gpio, unsigned nr)
79{
80 struct timbgpio *tgpio = container_of(gpio, struct timbgpio, gpio);
81 u32 value;
82
83 value = ioread32(tgpio->membase + TGPIOVAL);
84 return (value & (1 << nr)) ? 1 : 0;
85}
86
87static int timbgpio_gpio_direction_output(struct gpio_chip *gpio,
88 unsigned nr, int val)
89{
90 return timbgpio_update_bit(gpio, nr, TGPIODIR, false);
91}
92
93static void timbgpio_gpio_set(struct gpio_chip *gpio,
94 unsigned nr, int val)
95{
96 timbgpio_update_bit(gpio, nr, TGPIOVAL, val != 0);
97}
98
99static int timbgpio_to_irq(struct gpio_chip *gpio, unsigned offset)
100{
101 struct timbgpio *tgpio = container_of(gpio, struct timbgpio, gpio);
102
103 if (tgpio->irq_base <= 0)
104 return -EINVAL;
105
106 return tgpio->irq_base + offset;
107}
108
109/*
110 * GPIO IRQ
111 */
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800112static void timbgpio_irq_disable(struct irq_data *d)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800113{
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800114 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
115 int offset = d->irq - tgpio->irq_base;
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700116 unsigned long flags;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800117
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700118 spin_lock_irqsave(&tgpio->lock, flags);
Dan Carpenterd79550a2012-10-11 09:56:35 +0300119 tgpio->last_ier &= ~(1UL << offset);
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700120 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
121 spin_unlock_irqrestore(&tgpio->lock, flags);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800122}
123
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800124static void timbgpio_irq_enable(struct irq_data *d)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800125{
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800126 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
127 int offset = d->irq - tgpio->irq_base;
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700128 unsigned long flags;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800129
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700130 spin_lock_irqsave(&tgpio->lock, flags);
Dan Carpenterd79550a2012-10-11 09:56:35 +0300131 tgpio->last_ier |= 1UL << offset;
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700132 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
133 spin_unlock_irqrestore(&tgpio->lock, flags);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800134}
135
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800136static int timbgpio_irq_type(struct irq_data *d, unsigned trigger)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800137{
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800138 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
139 int offset = d->irq - tgpio->irq_base;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800140 unsigned long flags;
Richard Röjfors8c35c892010-03-05 13:44:35 -0800141 u32 lvr, flr, bflr = 0;
142 u32 ver;
Julia Lawall2a481802010-04-06 14:34:48 -0700143 int ret = 0;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800144
145 if (offset < 0 || offset > tgpio->gpio.ngpio)
146 return -EINVAL;
147
Richard Röjfors8c35c892010-03-05 13:44:35 -0800148 ver = ioread32(tgpio->membase + TGPIO_VER);
149
Richard Röjfors35570ac2009-12-15 16:46:18 -0800150 spin_lock_irqsave(&tgpio->lock, flags);
151
152 lvr = ioread32(tgpio->membase + TGPIO_LVR);
153 flr = ioread32(tgpio->membase + TGPIO_FLR);
Richard Röjfors8c35c892010-03-05 13:44:35 -0800154 if (ver > 2)
155 bflr = ioread32(tgpio->membase + TGPIO_BFLR);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800156
157 if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Richard Röjfors8c35c892010-03-05 13:44:35 -0800158 bflr &= ~(1 << offset);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800159 flr &= ~(1 << offset);
160 if (trigger & IRQ_TYPE_LEVEL_HIGH)
161 lvr |= 1 << offset;
162 else
163 lvr &= ~(1 << offset);
164 }
165
Richard Röjfors8c35c892010-03-05 13:44:35 -0800166 if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
Julia Lawall2a481802010-04-06 14:34:48 -0700167 if (ver < 3) {
168 ret = -EINVAL;
169 goto out;
Laurent Navet8a29a402013-03-20 13:16:03 +0100170 } else {
Richard Röjfors8c35c892010-03-05 13:44:35 -0800171 flr |= 1 << offset;
172 bflr |= 1 << offset;
173 }
174 } else {
175 bflr &= ~(1 << offset);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800176 flr |= 1 << offset;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800177 if (trigger & IRQ_TYPE_EDGE_FALLING)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800178 lvr &= ~(1 << offset);
Richard Röjfors8c35c892010-03-05 13:44:35 -0800179 else
180 lvr |= 1 << offset;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800181 }
182
183 iowrite32(lvr, tgpio->membase + TGPIO_LVR);
184 iowrite32(flr, tgpio->membase + TGPIO_FLR);
Richard Röjfors8c35c892010-03-05 13:44:35 -0800185 if (ver > 2)
186 iowrite32(bflr, tgpio->membase + TGPIO_BFLR);
187
Richard Röjfors35570ac2009-12-15 16:46:18 -0800188 iowrite32(1 << offset, tgpio->membase + TGPIO_ICR);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800189
Julia Lawall2a481802010-04-06 14:34:48 -0700190out:
191 spin_unlock_irqrestore(&tgpio->lock, flags);
192 return ret;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800193}
194
Lennert Buytenhek7f5db6a2011-01-14 09:44:19 +0100195static void timbgpio_irq(unsigned int irq, struct irq_desc *desc)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800196{
Thomas Gleixnerb51804b2011-03-24 21:27:36 +0000197 struct timbgpio *tgpio = irq_get_handler_data(irq);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800198 unsigned long ipr;
199 int offset;
200
Lennert Buytenhek7f5db6a2011-01-14 09:44:19 +0100201 desc->irq_data.chip->irq_ack(irq_get_irq_data(irq));
Richard Röjfors35570ac2009-12-15 16:46:18 -0800202 ipr = ioread32(tgpio->membase + TGPIO_IPR);
203 iowrite32(ipr, tgpio->membase + TGPIO_ICR);
204
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700205 /*
206 * Some versions of the hardware trash the IER register if more than
207 * one interrupt is received simultaneously.
208 */
209 iowrite32(0, tgpio->membase + TGPIO_IER);
210
Akinobu Mita984b3f52010-03-05 13:41:37 -0800211 for_each_set_bit(offset, &ipr, tgpio->gpio.ngpio)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800212 generic_handle_irq(timbgpio_to_irq(&tgpio->gpio, offset));
Tomas Hallenberg76d800a2010-10-27 15:33:17 -0700213
214 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800215}
216
217static struct irq_chip timbgpio_irqchip = {
218 .name = "GPIO",
Lennert Buytenheka1f5f222011-01-12 17:00:19 -0800219 .irq_enable = timbgpio_irq_enable,
220 .irq_disable = timbgpio_irq_disable,
221 .irq_set_type = timbgpio_irq_type,
Richard Röjfors35570ac2009-12-15 16:46:18 -0800222};
223
Bill Pemberton38363092012-11-19 13:22:34 -0500224static int timbgpio_probe(struct platform_device *pdev)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800225{
226 int err, i;
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200227 struct device *dev = &pdev->dev;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800228 struct gpio_chip *gc;
229 struct timbgpio *tgpio;
230 struct resource *iomem;
Jingoo Hane56aee12013-07-30 17:08:05 +0900231 struct timbgpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800232 int irq = platform_get_irq(pdev, 0);
233
234 if (!pdata || pdata->nr_pins > 32) {
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200235 dev_err(dev, "Invalid platform data\n");
236 return -EINVAL;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800237 }
238
239 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
240 if (!iomem) {
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200241 dev_err(dev, "Unable to get resource\n");
242 return -EINVAL;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800243 }
244
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200245 tgpio = devm_kzalloc(dev, sizeof(struct timbgpio), GFP_KERNEL);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800246 if (!tgpio) {
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200247 dev_err(dev, "Memory alloc failed\n");
248 return -EINVAL;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800249 }
250 tgpio->irq_base = pdata->irq_base;
251
252 spin_lock_init(&tgpio->lock);
253
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200254 if (!devm_request_mem_region(dev, iomem->start, resource_size(iomem),
255 DRIVER_NAME)) {
256 dev_err(dev, "Region already claimed\n");
257 return -EBUSY;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800258 }
259
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200260 tgpio->membase = devm_ioremap(dev, iomem->start, resource_size(iomem));
Richard Röjfors35570ac2009-12-15 16:46:18 -0800261 if (!tgpio->membase) {
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200262 dev_err(dev, "Cannot ioremap\n");
263 return -ENOMEM;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800264 }
265
266 gc = &tgpio->gpio;
267
268 gc->label = dev_name(&pdev->dev);
269 gc->owner = THIS_MODULE;
270 gc->dev = &pdev->dev;
271 gc->direction_input = timbgpio_gpio_direction_input;
272 gc->get = timbgpio_gpio_get;
273 gc->direction_output = timbgpio_gpio_direction_output;
274 gc->set = timbgpio_gpio_set;
275 gc->to_irq = (irq >= 0 && tgpio->irq_base > 0) ? timbgpio_to_irq : NULL;
276 gc->dbg_show = NULL;
277 gc->base = pdata->gpio_base;
278 gc->ngpio = pdata->nr_pins;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100279 gc->can_sleep = false;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800280
281 err = gpiochip_add(gc);
282 if (err)
abdoulaye berthe0ed33982014-05-13 03:21:42 +0200283 return err;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800284
285 platform_set_drvdata(pdev, tgpio);
286
287 /* make sure to disable interrupts */
288 iowrite32(0x0, tgpio->membase + TGPIO_IER);
289
290 if (irq < 0 || tgpio->irq_base <= 0)
291 return 0;
292
293 for (i = 0; i < pdata->nr_pins; i++) {
Linus Walleije5428a62013-11-26 14:28:32 +0100294 irq_set_chip_and_handler(tgpio->irq_base + i,
295 &timbgpio_irqchip, handle_simple_irq);
Thomas Gleixnerb51804b2011-03-24 21:27:36 +0000296 irq_set_chip_data(tgpio->irq_base + i, tgpio);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800297#ifdef CONFIG_ARM
298 set_irq_flags(tgpio->irq_base + i, IRQF_VALID | IRQF_PROBE);
299#endif
300 }
301
Thomas Gleixnerb51804b2011-03-24 21:27:36 +0000302 irq_set_handler_data(irq, tgpio);
303 irq_set_chained_handler(irq, timbgpio_irq);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800304
305 return 0;
Richard Röjfors35570ac2009-12-15 16:46:18 -0800306}
307
Bill Pemberton206210c2012-11-19 13:25:50 -0500308static int timbgpio_remove(struct platform_device *pdev)
Richard Röjfors35570ac2009-12-15 16:46:18 -0800309{
310 int err;
Jingoo Hane56aee12013-07-30 17:08:05 +0900311 struct timbgpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800312 struct timbgpio *tgpio = platform_get_drvdata(pdev);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800313 int irq = platform_get_irq(pdev, 0);
314
315 if (irq >= 0 && tgpio->irq_base > 0) {
316 int i;
Samuel Ortiz3271d382011-04-08 01:23:57 +0200317 for (i = 0; i < pdata->nr_pins; i++) {
Thomas Gleixnerb51804b2011-03-24 21:27:36 +0000318 irq_set_chip(tgpio->irq_base + i, NULL);
319 irq_set_chip_data(tgpio->irq_base + i, NULL);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800320 }
321
Thomas Gleixnerb51804b2011-03-24 21:27:36 +0000322 irq_set_handler(irq, NULL);
323 irq_set_handler_data(irq, NULL);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800324 }
325
326 err = gpiochip_remove(&tgpio->gpio);
327 if (err)
328 printk(KERN_ERR DRIVER_NAME": failed to remove gpio_chip\n");
329
Richard Röjfors35570ac2009-12-15 16:46:18 -0800330 return 0;
331}
332
333static struct platform_driver timbgpio_platform_driver = {
334 .driver = {
335 .name = DRIVER_NAME,
336 .owner = THIS_MODULE,
337 },
338 .probe = timbgpio_probe,
339 .remove = timbgpio_remove,
340};
341
342/*--------------------------------------------------------------------------*/
343
Mark Brown6f614152011-12-08 00:24:00 +0800344module_platform_driver(timbgpio_platform_driver);
Richard Röjfors35570ac2009-12-15 16:46:18 -0800345
346MODULE_DESCRIPTION("Timberdale GPIO driver");
347MODULE_LICENSE("GPL v2");
348MODULE_AUTHOR("Mocean Laboratories");
349MODULE_ALIAS("platform:"DRIVER_NAME);
350