blob: 7629b4f12b7fd8fbeba71bc72e8768f6a41936f6 [file] [log] [blame]
Vladimir Barinov3d9edf02007-07-10 13:03:43 +01001/*
2 * TI DaVinci GPIO Support
3 *
David Brownelldce11152008-09-07 23:41:04 -07004 * Copyright (c) 2006-2007 David Brownell
Vladimir Barinov3d9edf02007-07-10 13:03:43 +01005 * Copyright (c) 2007, MontaVista Software, Inc. <source@mvista.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
Russell King2f8163b2011-07-26 10:53:52 +010012#include <linux/gpio.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010013#include <linux/errno.h>
14#include <linux/kernel.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010015#include <linux/clk.h>
16#include <linux/err.h>
17#include <linux/io.h>
KV Sujith118150f2013-08-18 10:48:58 +053018#include <linux/irq.h>
Lad, Prabhakar9211ff32013-11-21 23:45:27 +053019#include <linux/irqdomain.h>
KV Sujithc7708442013-11-21 23:45:29 +053020#include <linux/module.h>
21#include <linux/of.h>
22#include <linux/of_device.h>
KV Sujith118150f2013-08-18 10:48:58 +053023#include <linux/platform_device.h>
24#include <linux/platform_data/gpio-davinci.h>
Grygorii Strashko0d978eb2013-11-26 21:40:09 +020025#include <linux/irqchip/chained_irq.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010026
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040027struct davinci_gpio_regs {
28 u32 dir;
29 u32 out_data;
30 u32 set_data;
31 u32 clr_data;
32 u32 in_data;
33 u32 set_rising;
34 u32 clr_rising;
35 u32 set_falling;
36 u32 clr_falling;
37 u32 intstat;
38};
39
Philip Avinash131a10a2013-08-18 10:48:57 +053040#define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */
41
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040042#define chip2controller(chip) \
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040043 container_of(chip, struct davinci_gpio_controller, chip)
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040044
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040045static void __iomem *gpio_base;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010046
KV Sujith118150f2013-08-18 10:48:58 +053047static struct davinci_gpio_regs __iomem *gpio2regs(unsigned gpio)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010048{
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040049 void __iomem *ptr;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040050
51 if (gpio < 32 * 1)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040052 ptr = gpio_base + 0x10;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040053 else if (gpio < 32 * 2)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040054 ptr = gpio_base + 0x38;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040055 else if (gpio < 32 * 3)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040056 ptr = gpio_base + 0x60;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040057 else if (gpio < 32 * 4)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040058 ptr = gpio_base + 0x88;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040059 else if (gpio < 32 * 5)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040060 ptr = gpio_base + 0xb0;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040061 else
62 ptr = NULL;
63 return ptr;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010064}
65
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040066static inline struct davinci_gpio_regs __iomem *irq2regs(int irq)
Kevin Hilman21ce8732010-02-25 16:49:56 -080067{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040068 struct davinci_gpio_regs __iomem *g;
Kevin Hilman21ce8732010-02-25 16:49:56 -080069
Thomas Gleixner6845664a2011-03-24 13:25:22 +010070 g = (__force struct davinci_gpio_regs __iomem *)irq_get_chip_data(irq);
Kevin Hilman21ce8732010-02-25 16:49:56 -080071
72 return g;
73}
74
KV Sujith118150f2013-08-18 10:48:58 +053075static int davinci_gpio_irq_setup(struct platform_device *pdev);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010076
77/*--------------------------------------------------------------------------*/
78
Cyril Chemparathy5b3a05c2010-05-01 18:38:27 -040079/* board setup code *MUST* setup pinmux and enable the GPIO clock. */
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040080static inline int __davinci_direction(struct gpio_chip *chip,
81 unsigned offset, bool out, int value)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010082{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040083 struct davinci_gpio_controller *d = chip2controller(chip);
84 struct davinci_gpio_regs __iomem *g = d->regs;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040085 unsigned long flags;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010086 u32 temp;
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040087 u32 mask = 1 << offset;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010088
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040089 spin_lock_irqsave(&d->lock, flags);
Lad, Prabhakar388291c2013-12-11 23:22:07 +053090 temp = readl_relaxed(&g->dir);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040091 if (out) {
92 temp &= ~mask;
Lad, Prabhakar388291c2013-12-11 23:22:07 +053093 writel_relaxed(mask, value ? &g->set_data : &g->clr_data);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040094 } else {
95 temp |= mask;
96 }
Lad, Prabhakar388291c2013-12-11 23:22:07 +053097 writel_relaxed(temp, &g->dir);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040098 spin_unlock_irqrestore(&d->lock, flags);
David Brownelldce11152008-09-07 23:41:04 -070099
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100100 return 0;
101}
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100102
Cyril Chemparathyba4a9842010-05-01 18:37:51 -0400103static int davinci_direction_in(struct gpio_chip *chip, unsigned offset)
104{
105 return __davinci_direction(chip, offset, false, 0);
106}
107
108static int
109davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value)
110{
111 return __davinci_direction(chip, offset, true, value);
112}
113
David Brownelldce11152008-09-07 23:41:04 -0700114/*
115 * Read the pin's value (works even if it's set up as output);
116 * returns zero/nonzero.
117 *
118 * Note that changes are synched to the GPIO clock, so reading values back
119 * right after you've set them may give old values.
120 */
121static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100122{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400123 struct davinci_gpio_controller *d = chip2controller(chip);
124 struct davinci_gpio_regs __iomem *g = d->regs;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100125
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530126 return (1 << offset) & readl_relaxed(&g->in_data);
David Brownelldce11152008-09-07 23:41:04 -0700127}
128
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100129/*
David Brownelldce11152008-09-07 23:41:04 -0700130 * Assuming the pin is muxed as a gpio output, set its output value.
131 */
132static void
133davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
134{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400135 struct davinci_gpio_controller *d = chip2controller(chip);
136 struct davinci_gpio_regs __iomem *g = d->regs;
David Brownelldce11152008-09-07 23:41:04 -0700137
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530138 writel_relaxed((1 << offset), value ? &g->set_data : &g->clr_data);
David Brownelldce11152008-09-07 23:41:04 -0700139}
140
KV Sujithc7708442013-11-21 23:45:29 +0530141static struct davinci_gpio_platform_data *
142davinci_gpio_get_pdata(struct platform_device *pdev)
143{
144 struct device_node *dn = pdev->dev.of_node;
145 struct davinci_gpio_platform_data *pdata;
146 int ret;
147 u32 val;
148
149 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
150 return pdev->dev.platform_data;
151
152 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
153 if (!pdata)
154 return NULL;
155
156 ret = of_property_read_u32(dn, "ti,ngpio", &val);
157 if (ret)
158 goto of_err;
159
160 pdata->ngpio = val;
161
162 ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val);
163 if (ret)
164 goto of_err;
165
166 pdata->gpio_unbanked = val;
167
168 return pdata;
169
170of_err:
171 dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret);
172 return NULL;
173}
174
KV Sujith118150f2013-08-18 10:48:58 +0530175static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700176{
177 int i, base;
Mark A. Greera9949552009-04-15 12:40:35 -0700178 unsigned ngpio;
KV Sujith118150f2013-08-18 10:48:58 +0530179 struct davinci_gpio_controller *chips;
180 struct davinci_gpio_platform_data *pdata;
181 struct davinci_gpio_regs __iomem *regs;
182 struct device *dev = &pdev->dev;
183 struct resource *res;
David Brownelldce11152008-09-07 23:41:04 -0700184
KV Sujithc7708442013-11-21 23:45:29 +0530185 pdata = davinci_gpio_get_pdata(pdev);
KV Sujith118150f2013-08-18 10:48:58 +0530186 if (!pdata) {
187 dev_err(dev, "No platform data found\n");
188 return -EINVAL;
189 }
Cyril Chemparathy686b6342010-05-01 18:37:54 -0400190
KV Sujithc7708442013-11-21 23:45:29 +0530191 dev->platform_data = pdata;
192
Mark A. Greera9949552009-04-15 12:40:35 -0700193 /*
194 * The gpio banks conceptually expose a segmented bitmap,
David Brownell474dad52008-12-07 11:46:23 -0800195 * and "ngpio" is one more than the largest zero-based
196 * bit index that's valid.
197 */
KV Sujith118150f2013-08-18 10:48:58 +0530198 ngpio = pdata->ngpio;
Mark A. Greera9949552009-04-15 12:40:35 -0700199 if (ngpio == 0) {
KV Sujith118150f2013-08-18 10:48:58 +0530200 dev_err(dev, "How many GPIOs?\n");
David Brownell474dad52008-12-07 11:46:23 -0800201 return -EINVAL;
202 }
203
Grygorii Strashkoc21d5002013-11-21 17:34:35 +0200204 if (WARN_ON(ARCH_NR_GPIOS < ngpio))
205 ngpio = ARCH_NR_GPIOS;
David Brownell474dad52008-12-07 11:46:23 -0800206
KV Sujith118150f2013-08-18 10:48:58 +0530207 chips = devm_kzalloc(dev,
208 ngpio * sizeof(struct davinci_gpio_controller),
209 GFP_KERNEL);
210 if (!chips) {
211 dev_err(dev, "Memory allocation failed\n");
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400212 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530213 }
214
215 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
216 if (!res) {
217 dev_err(dev, "Invalid memory resource\n");
218 return -EBUSY;
219 }
220
221 gpio_base = devm_ioremap_resource(dev, res);
222 if (IS_ERR(gpio_base))
223 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400224
David Brownell474dad52008-12-07 11:46:23 -0800225 for (i = 0, base = 0; base < ngpio; i++, base += 32) {
David Brownelldce11152008-09-07 23:41:04 -0700226 chips[i].chip.label = "DaVinci";
227
228 chips[i].chip.direction_input = davinci_direction_in;
229 chips[i].chip.get = davinci_gpio_get;
230 chips[i].chip.direction_output = davinci_direction_out;
231 chips[i].chip.set = davinci_gpio_set;
232
233 chips[i].chip.base = base;
David Brownell474dad52008-12-07 11:46:23 -0800234 chips[i].chip.ngpio = ngpio - base;
David Brownelldce11152008-09-07 23:41:04 -0700235 if (chips[i].chip.ngpio > 32)
236 chips[i].chip.ngpio = 32;
237
KV Sujithc7708442013-11-21 23:45:29 +0530238#ifdef CONFIG_OF_GPIO
239 chips[i].chip.of_node = dev->of_node;
240#endif
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400241 spin_lock_init(&chips[i].lock);
242
Cyril Chemparathyc12f4152010-05-01 18:37:53 -0400243 regs = gpio2regs(base);
244 chips[i].regs = regs;
245 chips[i].set_data = &regs->set_data;
246 chips[i].clr_data = &regs->clr_data;
247 chips[i].in_data = &regs->in_data;
David Brownelldce11152008-09-07 23:41:04 -0700248
249 gpiochip_add(&chips[i].chip);
250 }
251
KV Sujith118150f2013-08-18 10:48:58 +0530252 platform_set_drvdata(pdev, chips);
253 davinci_gpio_irq_setup(pdev);
David Brownelldce11152008-09-07 23:41:04 -0700254 return 0;
255}
David Brownelldce11152008-09-07 23:41:04 -0700256
257/*--------------------------------------------------------------------------*/
258/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100259 * We expect irqs will normally be set up as input pins, but they can also be
260 * used as output pins ... which is convenient for testing.
261 *
David Brownell474dad52008-12-07 11:46:23 -0800262 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700263 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100264 *
David Brownell474dad52008-12-07 11:46:23 -0800265 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100266 * serve as EDMA event triggers.
267 */
268
Lennert Buytenhek23265442010-11-29 10:27:27 +0100269static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100270{
Lennert Buytenhek23265442010-11-29 10:27:27 +0100271 struct davinci_gpio_regs __iomem *g = irq2regs(d->irq);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100272 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100273
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530274 writel_relaxed(mask, &g->clr_falling);
275 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100276}
277
Lennert Buytenhek23265442010-11-29 10:27:27 +0100278static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100279{
Lennert Buytenhek23265442010-11-29 10:27:27 +0100280 struct davinci_gpio_regs __iomem *g = irq2regs(d->irq);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100281 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100282 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100283
David Brownelldf4aab42009-05-04 13:14:27 -0700284 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
285 if (!status)
286 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
287
288 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530289 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700290 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530291 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100292}
293
Lennert Buytenhek23265442010-11-29 10:27:27 +0100294static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100295{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100296 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
297 return -EINVAL;
298
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100299 return 0;
300}
301
302static struct irq_chip gpio_irqchip = {
303 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100304 .irq_enable = gpio_irq_enable,
305 .irq_disable = gpio_irq_disable,
306 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100307 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100308};
309
310static void
311gpio_irq_handler(unsigned irq, struct irq_desc *desc)
312{
Thomas Gleixner74164012011-06-06 11:51:43 +0200313 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100314 u32 mask = 0xffff;
Ido Yarivf299bb92011-07-12 00:03:11 +0300315 struct davinci_gpio_controller *d;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100316
Ido Yarivf299bb92011-07-12 00:03:11 +0300317 d = (struct davinci_gpio_controller *)irq_desc_get_handler_data(desc);
318 g = (struct davinci_gpio_regs __iomem *)d->regs;
Thomas Gleixner74164012011-06-06 11:51:43 +0200319
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100320 /* we only care about one bank */
321 if (irq & 1)
322 mask <<= 16;
323
324 /* temporarily mask (level sensitive) parent IRQ */
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200325 chained_irq_enter(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100326 while (1) {
327 u32 status;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530328 int bit;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100329
330 /* ack any irqs */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530331 status = readl_relaxed(&g->intstat) & mask;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100332 if (!status)
333 break;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530334 writel_relaxed(status, &g->intstat);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100335
336 /* now demux them to the right lowlevel handler */
Ido Yarivf299bb92011-07-12 00:03:11 +0300337
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100338 while (status) {
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530339 bit = __ffs(status);
340 status &= ~BIT(bit);
341 generic_handle_irq(
342 irq_find_mapping(d->irq_domain,
343 d->chip.base + bit));
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100344 }
345 }
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200346 chained_irq_exit(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100347 /* now it may re-trigger */
348}
349
David Brownell7a360712009-06-25 17:01:31 -0700350static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset)
351{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400352 struct davinci_gpio_controller *d = chip2controller(chip);
David Brownell7a360712009-06-25 17:01:31 -0700353
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200354 if (d->irq_domain)
355 return irq_create_mapping(d->irq_domain, d->chip.base + offset);
356 else
357 return -ENXIO;
David Brownell7a360712009-06-25 17:01:31 -0700358}
359
360static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
361{
KV Sujith118150f2013-08-18 10:48:58 +0530362 struct davinci_gpio_controller *d = chip2controller(chip);
David Brownell7a360712009-06-25 17:01:31 -0700363
Philip Avinash131a10a2013-08-18 10:48:57 +0530364 /*
365 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700366 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
367 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530368 if (offset < d->gpio_unbanked)
KV Sujith118150f2013-08-18 10:48:58 +0530369 return d->gpio_irq + offset;
David Brownell7a360712009-06-25 17:01:31 -0700370 else
371 return -ENODEV;
372}
373
Sekhar Noriab2dde92012-03-11 18:16:11 +0530374static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700375{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530376 struct davinci_gpio_controller *d;
377 struct davinci_gpio_regs __iomem *g;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530378 u32 mask;
379
380 d = (struct davinci_gpio_controller *)data->handler_data;
381 g = (struct davinci_gpio_regs __iomem *)d->regs;
KV Sujith118150f2013-08-18 10:48:58 +0530382 mask = __gpio_mask(data->irq - d->gpio_irq);
David Brownell7a360712009-06-25 17:01:31 -0700383
384 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
385 return -EINVAL;
386
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530387 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700388 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530389 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700390 ? &g->set_rising : &g->clr_rising);
391
392 return 0;
393}
394
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530395static int
396davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
397 irq_hw_number_t hw)
398{
399 struct davinci_gpio_regs __iomem *g = gpio2regs(hw);
400
401 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
402 "davinci_gpio");
403 irq_set_irq_type(irq, IRQ_TYPE_NONE);
404 irq_set_chip_data(irq, (__force void *)g);
405 irq_set_handler_data(irq, (void *)__gpio_mask(hw));
406 set_irq_flags(irq, IRQF_VALID);
407
408 return 0;
409}
410
411static const struct irq_domain_ops davinci_gpio_irq_ops = {
412 .map = davinci_gpio_irq_map,
413 .xlate = irq_domain_xlate_onetwocell,
414};
415
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100416/*
David Brownell474dad52008-12-07 11:46:23 -0800417 * NOTE: for suspend/resume, probably best to make a platform_device with
418 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100419 * calls ... so if no gpios are wakeup events the clock can be disabled,
420 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800421 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100422 */
423
KV Sujith118150f2013-08-18 10:48:58 +0530424static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100425{
426 unsigned gpio, irq, bank;
427 struct clk *clk;
David Brownell474dad52008-12-07 11:46:23 -0800428 u32 binten = 0;
Mark A. Greera9949552009-04-15 12:40:35 -0700429 unsigned ngpio, bank_irq;
KV Sujith118150f2013-08-18 10:48:58 +0530430 struct device *dev = &pdev->dev;
431 struct resource *res;
432 struct davinci_gpio_controller *chips = platform_get_drvdata(pdev);
433 struct davinci_gpio_platform_data *pdata = dev->platform_data;
434 struct davinci_gpio_regs __iomem *g;
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200435 struct irq_domain *irq_domain = NULL;
David Brownell474dad52008-12-07 11:46:23 -0800436
KV Sujith118150f2013-08-18 10:48:58 +0530437 ngpio = pdata->ngpio;
438 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
439 if (!res) {
440 dev_err(dev, "Invalid IRQ resource\n");
441 return -EBUSY;
David Brownell474dad52008-12-07 11:46:23 -0800442 }
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100443
KV Sujith118150f2013-08-18 10:48:58 +0530444 bank_irq = res->start;
445
446 if (!bank_irq) {
447 dev_err(dev, "Invalid IRQ resource\n");
448 return -ENODEV;
449 }
450
451 clk = devm_clk_get(dev, "gpio");
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100452 if (IS_ERR(clk)) {
453 printk(KERN_ERR "Error %ld getting gpio clock?\n",
454 PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800455 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100456 }
Murali Karicherice6b6582012-08-30 14:03:57 -0400457 clk_prepare_enable(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100458
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200459 if (!pdata->gpio_unbanked) {
460 irq = irq_alloc_descs(-1, 0, ngpio, 0);
461 if (irq < 0) {
462 dev_err(dev, "Couldn't allocate IRQ numbers\n");
463 return irq;
464 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530465
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200466 irq_domain = irq_domain_add_legacy(NULL, ngpio, irq, 0,
467 &davinci_gpio_irq_ops,
468 chips);
469 if (!irq_domain) {
470 dev_err(dev, "Couldn't register an IRQ domain\n");
471 return -ENODEV;
472 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530473 }
474
Philip Avinash131a10a2013-08-18 10:48:57 +0530475 /*
476 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700477 * banked IRQs. Having GPIOs in the first GPIO bank use direct
478 * IRQs, while the others use banked IRQs, would need some setup
479 * tweaks to recognize hardware which can do that.
480 */
481 for (gpio = 0, bank = 0; gpio < ngpio; bank++, gpio += 32) {
482 chips[bank].chip.to_irq = gpio_to_irq_banked;
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200483 chips[bank].irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700484 }
485
486 /*
487 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
488 * controller only handling trigger modes. We currently assume no
489 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
490 */
KV Sujith118150f2013-08-18 10:48:58 +0530491 if (pdata->gpio_unbanked) {
Sekhar Nori81b279d2012-03-11 18:16:12 +0530492 static struct irq_chip_type gpio_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700493
494 /* pass "bank 0" GPIO IRQs to AINTC */
495 chips[0].chip.to_irq = gpio_to_irq_unbanked;
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530496 chips[0].gpio_irq = bank_irq;
497 chips[0].gpio_unbanked = pdata->gpio_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700498 binten = BIT(0);
499
500 /* AINTC handles mask/unmask; GPIO handles triggering */
501 irq = bank_irq;
Sekhar Nori81b279d2012-03-11 18:16:12 +0530502 gpio_unbanked = *container_of(irq_get_chip(irq),
503 struct irq_chip_type, chip);
504 gpio_unbanked.chip.name = "GPIO-AINTC";
505 gpio_unbanked.chip.irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700506
507 /* default trigger: both edges */
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400508 g = gpio2regs(0);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530509 writel_relaxed(~0, &g->set_falling);
510 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700511
512 /* set the direct IRQs up to use that irqchip */
KV Sujith118150f2013-08-18 10:48:58 +0530513 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) {
Sekhar Nori81b279d2012-03-11 18:16:12 +0530514 irq_set_chip(irq, &gpio_unbanked.chip);
Sekhar Noriab2dde92012-03-11 18:16:11 +0530515 irq_set_handler_data(irq, &chips[gpio / 32]);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100516 irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700517 }
518
519 goto done;
520 }
521
522 /*
523 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
524 * then chain through our own handler.
525 */
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530526 for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) {
David Brownell7a360712009-06-25 17:01:31 -0700527 /* disabled by default, enabled only as needed */
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400528 g = gpio2regs(gpio);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530529 writel_relaxed(~0, &g->clr_falling);
530 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100531
532 /* set up all irqs in this bank */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100533 irq_set_chained_handler(bank_irq, gpio_irq_handler);
Ido Yarivf299bb92011-07-12 00:03:11 +0300534
535 /*
536 * Each chip handles 32 gpios, and each irq bank consists of 16
537 * gpio irqs. Pass the irq bank's corresponding controller to
538 * the chained irq handler.
539 */
540 irq_set_handler_data(bank_irq, &chips[gpio / 32]);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100541
David Brownell474dad52008-12-07 11:46:23 -0800542 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100543 }
544
David Brownell7a360712009-06-25 17:01:31 -0700545done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530546 /*
547 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100548 * bits be set/cleared dynamically.
549 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530550 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100551
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100552 return 0;
553}
KV Sujith118150f2013-08-18 10:48:58 +0530554
KV Sujithc7708442013-11-21 23:45:29 +0530555#if IS_ENABLED(CONFIG_OF)
556static const struct of_device_id davinci_gpio_ids[] = {
557 { .compatible = "ti,dm6441-gpio", },
558 { /* sentinel */ },
559};
560MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
561#endif
562
KV Sujith118150f2013-08-18 10:48:58 +0530563static struct platform_driver davinci_gpio_driver = {
564 .probe = davinci_gpio_probe,
565 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530566 .name = "davinci_gpio",
567 .owner = THIS_MODULE,
568 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530569 },
570};
571
572/**
573 * GPIO driver registration needs to be done before machine_init functions
574 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
575 */
576static int __init davinci_gpio_drv_reg(void)
577{
578 return platform_driver_register(&davinci_gpio_driver);
579}
580postcore_initcall(davinci_gpio_drv_reg);