blob: 37cf95254df14690e8f361cb589c6c61fa1f7b06 [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>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010025
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040026struct davinci_gpio_regs {
27 u32 dir;
28 u32 out_data;
29 u32 set_data;
30 u32 clr_data;
31 u32 in_data;
32 u32 set_rising;
33 u32 clr_rising;
34 u32 set_falling;
35 u32 clr_falling;
36 u32 intstat;
37};
38
Philip Avinash131a10a2013-08-18 10:48:57 +053039#define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */
40
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040041#define chip2controller(chip) \
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040042 container_of(chip, struct davinci_gpio_controller, chip)
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040043
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040044static void __iomem *gpio_base;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010045
KV Sujith118150f2013-08-18 10:48:58 +053046static struct davinci_gpio_regs __iomem *gpio2regs(unsigned gpio)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010047{
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040048 void __iomem *ptr;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040049
50 if (gpio < 32 * 1)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040051 ptr = gpio_base + 0x10;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040052 else if (gpio < 32 * 2)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040053 ptr = gpio_base + 0x38;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040054 else if (gpio < 32 * 3)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040055 ptr = gpio_base + 0x60;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040056 else if (gpio < 32 * 4)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040057 ptr = gpio_base + 0x88;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040058 else if (gpio < 32 * 5)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040059 ptr = gpio_base + 0xb0;
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040060 else
61 ptr = NULL;
62 return ptr;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010063}
64
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040065static inline struct davinci_gpio_regs __iomem *irq2regs(int irq)
Kevin Hilman21ce8732010-02-25 16:49:56 -080066{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040067 struct davinci_gpio_regs __iomem *g;
Kevin Hilman21ce8732010-02-25 16:49:56 -080068
Thomas Gleixner6845664a2011-03-24 13:25:22 +010069 g = (__force struct davinci_gpio_regs __iomem *)irq_get_chip_data(irq);
Kevin Hilman21ce8732010-02-25 16:49:56 -080070
71 return g;
72}
73
KV Sujith118150f2013-08-18 10:48:58 +053074static int davinci_gpio_irq_setup(struct platform_device *pdev);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010075
76/*--------------------------------------------------------------------------*/
77
Cyril Chemparathy5b3a05c2010-05-01 18:38:27 -040078/* board setup code *MUST* setup pinmux and enable the GPIO clock. */
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040079static inline int __davinci_direction(struct gpio_chip *chip,
80 unsigned offset, bool out, int value)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010081{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040082 struct davinci_gpio_controller *d = chip2controller(chip);
83 struct davinci_gpio_regs __iomem *g = d->regs;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040084 unsigned long flags;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010085 u32 temp;
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040086 u32 mask = 1 << offset;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010087
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040088 spin_lock_irqsave(&d->lock, flags);
Lad, Prabhakar388291c2013-12-11 23:22:07 +053089 temp = readl_relaxed(&g->dir);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040090 if (out) {
91 temp &= ~mask;
Lad, Prabhakar388291c2013-12-11 23:22:07 +053092 writel_relaxed(mask, value ? &g->set_data : &g->clr_data);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040093 } else {
94 temp |= mask;
95 }
Lad, Prabhakar388291c2013-12-11 23:22:07 +053096 writel_relaxed(temp, &g->dir);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040097 spin_unlock_irqrestore(&d->lock, flags);
David Brownelldce11152008-09-07 23:41:04 -070098
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010099 return 0;
100}
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100101
Cyril Chemparathyba4a9842010-05-01 18:37:51 -0400102static int davinci_direction_in(struct gpio_chip *chip, unsigned offset)
103{
104 return __davinci_direction(chip, offset, false, 0);
105}
106
107static int
108davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value)
109{
110 return __davinci_direction(chip, offset, true, value);
111}
112
David Brownelldce11152008-09-07 23:41:04 -0700113/*
114 * Read the pin's value (works even if it's set up as output);
115 * returns zero/nonzero.
116 *
117 * Note that changes are synched to the GPIO clock, so reading values back
118 * right after you've set them may give old values.
119 */
120static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100121{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400122 struct davinci_gpio_controller *d = chip2controller(chip);
123 struct davinci_gpio_regs __iomem *g = d->regs;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100124
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530125 return (1 << offset) & readl_relaxed(&g->in_data);
David Brownelldce11152008-09-07 23:41:04 -0700126}
127
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100128/*
David Brownelldce11152008-09-07 23:41:04 -0700129 * Assuming the pin is muxed as a gpio output, set its output value.
130 */
131static void
132davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
133{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400134 struct davinci_gpio_controller *d = chip2controller(chip);
135 struct davinci_gpio_regs __iomem *g = d->regs;
David Brownelldce11152008-09-07 23:41:04 -0700136
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530137 writel_relaxed((1 << offset), value ? &g->set_data : &g->clr_data);
David Brownelldce11152008-09-07 23:41:04 -0700138}
139
KV Sujithc7708442013-11-21 23:45:29 +0530140static struct davinci_gpio_platform_data *
141davinci_gpio_get_pdata(struct platform_device *pdev)
142{
143 struct device_node *dn = pdev->dev.of_node;
144 struct davinci_gpio_platform_data *pdata;
145 int ret;
146 u32 val;
147
148 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
149 return pdev->dev.platform_data;
150
151 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
152 if (!pdata)
153 return NULL;
154
155 ret = of_property_read_u32(dn, "ti,ngpio", &val);
156 if (ret)
157 goto of_err;
158
159 pdata->ngpio = val;
160
161 ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val);
162 if (ret)
163 goto of_err;
164
165 pdata->gpio_unbanked = val;
166
167 return pdata;
168
169of_err:
170 dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret);
171 return NULL;
172}
173
KV Sujith118150f2013-08-18 10:48:58 +0530174static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700175{
176 int i, base;
Mark A. Greera9949552009-04-15 12:40:35 -0700177 unsigned ngpio;
KV Sujith118150f2013-08-18 10:48:58 +0530178 struct davinci_gpio_controller *chips;
179 struct davinci_gpio_platform_data *pdata;
180 struct davinci_gpio_regs __iomem *regs;
181 struct device *dev = &pdev->dev;
182 struct resource *res;
David Brownelldce11152008-09-07 23:41:04 -0700183
KV Sujithc7708442013-11-21 23:45:29 +0530184 pdata = davinci_gpio_get_pdata(pdev);
KV Sujith118150f2013-08-18 10:48:58 +0530185 if (!pdata) {
186 dev_err(dev, "No platform data found\n");
187 return -EINVAL;
188 }
Cyril Chemparathy686b6342010-05-01 18:37:54 -0400189
KV Sujithc7708442013-11-21 23:45:29 +0530190 dev->platform_data = pdata;
191
Mark A. Greera9949552009-04-15 12:40:35 -0700192 /*
193 * The gpio banks conceptually expose a segmented bitmap,
David Brownell474dad52008-12-07 11:46:23 -0800194 * and "ngpio" is one more than the largest zero-based
195 * bit index that's valid.
196 */
KV Sujith118150f2013-08-18 10:48:58 +0530197 ngpio = pdata->ngpio;
Mark A. Greera9949552009-04-15 12:40:35 -0700198 if (ngpio == 0) {
KV Sujith118150f2013-08-18 10:48:58 +0530199 dev_err(dev, "How many GPIOs?\n");
David Brownell474dad52008-12-07 11:46:23 -0800200 return -EINVAL;
201 }
202
Grygorii Strashkoc21d5002013-11-21 17:34:35 +0200203 if (WARN_ON(ARCH_NR_GPIOS < ngpio))
204 ngpio = ARCH_NR_GPIOS;
David Brownell474dad52008-12-07 11:46:23 -0800205
KV Sujith118150f2013-08-18 10:48:58 +0530206 chips = devm_kzalloc(dev,
207 ngpio * sizeof(struct davinci_gpio_controller),
208 GFP_KERNEL);
209 if (!chips) {
210 dev_err(dev, "Memory allocation failed\n");
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400211 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530212 }
213
214 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
215 if (!res) {
216 dev_err(dev, "Invalid memory resource\n");
217 return -EBUSY;
218 }
219
220 gpio_base = devm_ioremap_resource(dev, res);
221 if (IS_ERR(gpio_base))
222 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400223
David Brownell474dad52008-12-07 11:46:23 -0800224 for (i = 0, base = 0; base < ngpio; i++, base += 32) {
David Brownelldce11152008-09-07 23:41:04 -0700225 chips[i].chip.label = "DaVinci";
226
227 chips[i].chip.direction_input = davinci_direction_in;
228 chips[i].chip.get = davinci_gpio_get;
229 chips[i].chip.direction_output = davinci_direction_out;
230 chips[i].chip.set = davinci_gpio_set;
231
232 chips[i].chip.base = base;
David Brownell474dad52008-12-07 11:46:23 -0800233 chips[i].chip.ngpio = ngpio - base;
David Brownelldce11152008-09-07 23:41:04 -0700234 if (chips[i].chip.ngpio > 32)
235 chips[i].chip.ngpio = 32;
236
KV Sujithc7708442013-11-21 23:45:29 +0530237#ifdef CONFIG_OF_GPIO
238 chips[i].chip.of_node = dev->of_node;
239#endif
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400240 spin_lock_init(&chips[i].lock);
241
Cyril Chemparathyc12f4152010-05-01 18:37:53 -0400242 regs = gpio2regs(base);
243 chips[i].regs = regs;
244 chips[i].set_data = &regs->set_data;
245 chips[i].clr_data = &regs->clr_data;
246 chips[i].in_data = &regs->in_data;
David Brownelldce11152008-09-07 23:41:04 -0700247
248 gpiochip_add(&chips[i].chip);
249 }
250
KV Sujith118150f2013-08-18 10:48:58 +0530251 platform_set_drvdata(pdev, chips);
252 davinci_gpio_irq_setup(pdev);
David Brownelldce11152008-09-07 23:41:04 -0700253 return 0;
254}
David Brownelldce11152008-09-07 23:41:04 -0700255
256/*--------------------------------------------------------------------------*/
257/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100258 * We expect irqs will normally be set up as input pins, but they can also be
259 * used as output pins ... which is convenient for testing.
260 *
David Brownell474dad52008-12-07 11:46:23 -0800261 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700262 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100263 *
David Brownell474dad52008-12-07 11:46:23 -0800264 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100265 * serve as EDMA event triggers.
266 */
267
Lennert Buytenhek23265442010-11-29 10:27:27 +0100268static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100269{
Lennert Buytenhek23265442010-11-29 10:27:27 +0100270 struct davinci_gpio_regs __iomem *g = irq2regs(d->irq);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100271 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100272
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530273 writel_relaxed(mask, &g->clr_falling);
274 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100275}
276
Lennert Buytenhek23265442010-11-29 10:27:27 +0100277static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100278{
Lennert Buytenhek23265442010-11-29 10:27:27 +0100279 struct davinci_gpio_regs __iomem *g = irq2regs(d->irq);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100280 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100281 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100282
David Brownelldf4aab42009-05-04 13:14:27 -0700283 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
284 if (!status)
285 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
286
287 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530288 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700289 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530290 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100291}
292
Lennert Buytenhek23265442010-11-29 10:27:27 +0100293static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100294{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100295 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
296 return -EINVAL;
297
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100298 return 0;
299}
300
301static struct irq_chip gpio_irqchip = {
302 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100303 .irq_enable = gpio_irq_enable,
304 .irq_disable = gpio_irq_disable,
305 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100306 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100307};
308
309static void
310gpio_irq_handler(unsigned irq, struct irq_desc *desc)
311{
Thomas Gleixner74164012011-06-06 11:51:43 +0200312 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100313 u32 mask = 0xffff;
Ido Yarivf299bb92011-07-12 00:03:11 +0300314 struct davinci_gpio_controller *d;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100315
Ido Yarivf299bb92011-07-12 00:03:11 +0300316 d = (struct davinci_gpio_controller *)irq_desc_get_handler_data(desc);
317 g = (struct davinci_gpio_regs __iomem *)d->regs;
Thomas Gleixner74164012011-06-06 11:51:43 +0200318
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100319 /* we only care about one bank */
320 if (irq & 1)
321 mask <<= 16;
322
323 /* temporarily mask (level sensitive) parent IRQ */
Lennert Buytenhek23265442010-11-29 10:27:27 +0100324 desc->irq_data.chip->irq_mask(&desc->irq_data);
325 desc->irq_data.chip->irq_ack(&desc->irq_data);
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 }
Lennert Buytenhek23265442010-11-29 10:27:27 +0100346 desc->irq_data.chip->irq_unmask(&desc->irq_data);
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
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530354 return irq_create_mapping(d->irq_domain, d->chip.base + offset);
David Brownell7a360712009-06-25 17:01:31 -0700355}
356
357static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
358{
KV Sujith118150f2013-08-18 10:48:58 +0530359 struct davinci_gpio_controller *d = chip2controller(chip);
David Brownell7a360712009-06-25 17:01:31 -0700360
Philip Avinash131a10a2013-08-18 10:48:57 +0530361 /*
362 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700363 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
364 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530365 if (offset < d->gpio_unbanked)
KV Sujith118150f2013-08-18 10:48:58 +0530366 return d->gpio_irq + offset;
David Brownell7a360712009-06-25 17:01:31 -0700367 else
368 return -ENODEV;
369}
370
Sekhar Noriab2dde92012-03-11 18:16:11 +0530371static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700372{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530373 struct davinci_gpio_controller *d;
374 struct davinci_gpio_regs __iomem *g;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530375 u32 mask;
376
377 d = (struct davinci_gpio_controller *)data->handler_data;
378 g = (struct davinci_gpio_regs __iomem *)d->regs;
KV Sujith118150f2013-08-18 10:48:58 +0530379 mask = __gpio_mask(data->irq - d->gpio_irq);
David Brownell7a360712009-06-25 17:01:31 -0700380
381 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
382 return -EINVAL;
383
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530384 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700385 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530386 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700387 ? &g->set_rising : &g->clr_rising);
388
389 return 0;
390}
391
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530392static int
393davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
394 irq_hw_number_t hw)
395{
396 struct davinci_gpio_regs __iomem *g = gpio2regs(hw);
397
398 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
399 "davinci_gpio");
400 irq_set_irq_type(irq, IRQ_TYPE_NONE);
401 irq_set_chip_data(irq, (__force void *)g);
402 irq_set_handler_data(irq, (void *)__gpio_mask(hw));
403 set_irq_flags(irq, IRQF_VALID);
404
405 return 0;
406}
407
408static const struct irq_domain_ops davinci_gpio_irq_ops = {
409 .map = davinci_gpio_irq_map,
410 .xlate = irq_domain_xlate_onetwocell,
411};
412
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100413/*
David Brownell474dad52008-12-07 11:46:23 -0800414 * NOTE: for suspend/resume, probably best to make a platform_device with
415 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100416 * calls ... so if no gpios are wakeup events the clock can be disabled,
417 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800418 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100419 */
420
KV Sujith118150f2013-08-18 10:48:58 +0530421static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100422{
423 unsigned gpio, irq, bank;
424 struct clk *clk;
David Brownell474dad52008-12-07 11:46:23 -0800425 u32 binten = 0;
Mark A. Greera9949552009-04-15 12:40:35 -0700426 unsigned ngpio, bank_irq;
KV Sujith118150f2013-08-18 10:48:58 +0530427 struct device *dev = &pdev->dev;
428 struct resource *res;
429 struct davinci_gpio_controller *chips = platform_get_drvdata(pdev);
430 struct davinci_gpio_platform_data *pdata = dev->platform_data;
431 struct davinci_gpio_regs __iomem *g;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530432 struct irq_domain *irq_domain;
David Brownell474dad52008-12-07 11:46:23 -0800433
KV Sujith118150f2013-08-18 10:48:58 +0530434 ngpio = pdata->ngpio;
435 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
436 if (!res) {
437 dev_err(dev, "Invalid IRQ resource\n");
438 return -EBUSY;
David Brownell474dad52008-12-07 11:46:23 -0800439 }
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100440
KV Sujith118150f2013-08-18 10:48:58 +0530441 bank_irq = res->start;
442
443 if (!bank_irq) {
444 dev_err(dev, "Invalid IRQ resource\n");
445 return -ENODEV;
446 }
447
448 clk = devm_clk_get(dev, "gpio");
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100449 if (IS_ERR(clk)) {
450 printk(KERN_ERR "Error %ld getting gpio clock?\n",
451 PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800452 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100453 }
Murali Karicherice6b6582012-08-30 14:03:57 -0400454 clk_prepare_enable(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100455
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530456 irq = irq_alloc_descs(-1, 0, ngpio, 0);
457 if (irq < 0) {
458 dev_err(dev, "Couldn't allocate IRQ numbers\n");
459 return irq;
460 }
461
462 irq_domain = irq_domain_add_legacy(NULL, ngpio, irq, 0,
463 &davinci_gpio_irq_ops,
464 chips);
465 if (!irq_domain) {
466 dev_err(dev, "Couldn't register an IRQ domain\n");
467 return -ENODEV;
468 }
469
Philip Avinash131a10a2013-08-18 10:48:57 +0530470 /*
471 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700472 * banked IRQs. Having GPIOs in the first GPIO bank use direct
473 * IRQs, while the others use banked IRQs, would need some setup
474 * tweaks to recognize hardware which can do that.
475 */
476 for (gpio = 0, bank = 0; gpio < ngpio; bank++, gpio += 32) {
477 chips[bank].chip.to_irq = gpio_to_irq_banked;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530478 if (!pdata->gpio_unbanked)
479 chips[bank].irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700480 }
481
482 /*
483 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
484 * controller only handling trigger modes. We currently assume no
485 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
486 */
KV Sujith118150f2013-08-18 10:48:58 +0530487 if (pdata->gpio_unbanked) {
Sekhar Nori81b279d2012-03-11 18:16:12 +0530488 static struct irq_chip_type gpio_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700489
490 /* pass "bank 0" GPIO IRQs to AINTC */
491 chips[0].chip.to_irq = gpio_to_irq_unbanked;
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530492 chips[0].gpio_irq = bank_irq;
493 chips[0].gpio_unbanked = pdata->gpio_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700494 binten = BIT(0);
495
496 /* AINTC handles mask/unmask; GPIO handles triggering */
497 irq = bank_irq;
Sekhar Nori81b279d2012-03-11 18:16:12 +0530498 gpio_unbanked = *container_of(irq_get_chip(irq),
499 struct irq_chip_type, chip);
500 gpio_unbanked.chip.name = "GPIO-AINTC";
501 gpio_unbanked.chip.irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700502
503 /* default trigger: both edges */
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400504 g = gpio2regs(0);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530505 writel_relaxed(~0, &g->set_falling);
506 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700507
508 /* set the direct IRQs up to use that irqchip */
KV Sujith118150f2013-08-18 10:48:58 +0530509 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) {
Sekhar Nori81b279d2012-03-11 18:16:12 +0530510 irq_set_chip(irq, &gpio_unbanked.chip);
Sekhar Noriab2dde92012-03-11 18:16:11 +0530511 irq_set_handler_data(irq, &chips[gpio / 32]);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100512 irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700513 }
514
515 goto done;
516 }
517
518 /*
519 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
520 * then chain through our own handler.
521 */
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530522 for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) {
David Brownell7a360712009-06-25 17:01:31 -0700523 /* disabled by default, enabled only as needed */
Cyril Chemparathy99e9e522010-05-01 18:37:52 -0400524 g = gpio2regs(gpio);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530525 writel_relaxed(~0, &g->clr_falling);
526 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100527
528 /* set up all irqs in this bank */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100529 irq_set_chained_handler(bank_irq, gpio_irq_handler);
Ido Yarivf299bb92011-07-12 00:03:11 +0300530
531 /*
532 * Each chip handles 32 gpios, and each irq bank consists of 16
533 * gpio irqs. Pass the irq bank's corresponding controller to
534 * the chained irq handler.
535 */
536 irq_set_handler_data(bank_irq, &chips[gpio / 32]);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100537
David Brownell474dad52008-12-07 11:46:23 -0800538 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100539 }
540
David Brownell7a360712009-06-25 17:01:31 -0700541done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530542 /*
543 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100544 * bits be set/cleared dynamically.
545 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530546 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100547
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100548 return 0;
549}
KV Sujith118150f2013-08-18 10:48:58 +0530550
KV Sujithc7708442013-11-21 23:45:29 +0530551#if IS_ENABLED(CONFIG_OF)
552static const struct of_device_id davinci_gpio_ids[] = {
553 { .compatible = "ti,dm6441-gpio", },
554 { /* sentinel */ },
555};
556MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
557#endif
558
KV Sujith118150f2013-08-18 10:48:58 +0530559static struct platform_driver davinci_gpio_driver = {
560 .probe = davinci_gpio_probe,
561 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530562 .name = "davinci_gpio",
563 .owner = THIS_MODULE,
564 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530565 },
566};
567
568/**
569 * GPIO driver registration needs to be done before machine_init functions
570 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
571 */
572static int __init davinci_gpio_drv_reg(void)
573{
574 return platform_driver_register(&davinci_gpio_driver);
575}
576postcore_initcall(davinci_gpio_drv_reg);