blob: f75d8443ecaff631d07e8b474e2bdf769357adb0 [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
Grygorii Strashko0c6feb02014-02-13 17:58:45 +020040typedef struct irq_chip *(*gpio_get_irq_chip_cb_t)(unsigned int irq);
41
Philip Avinash131a10a2013-08-18 10:48:57 +053042#define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */
Axel Haslame0275032016-11-03 12:34:10 +010043#define MAX_LABEL_SIZE 20
Philip Avinash131a10a2013-08-18 10:48:57 +053044
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040045static void __iomem *gpio_base;
Keerthy8f7cf8c2017-01-17 21:49:11 +053046static unsigned int offset_array[5] = {0x10, 0x38, 0x60, 0x88, 0xb0};
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010047
Thomas Gleixner1765d672015-07-13 01:18:56 +020048static inline struct davinci_gpio_regs __iomem *irq2regs(struct irq_data *d)
Kevin Hilman21ce8732010-02-25 16:49:56 -080049{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040050 struct davinci_gpio_regs __iomem *g;
Kevin Hilman21ce8732010-02-25 16:49:56 -080051
Thomas Gleixner1765d672015-07-13 01:18:56 +020052 g = (__force struct davinci_gpio_regs __iomem *)irq_data_get_irq_chip_data(d);
Kevin Hilman21ce8732010-02-25 16:49:56 -080053
54 return g;
55}
56
KV Sujith118150f2013-08-18 10:48:58 +053057static int davinci_gpio_irq_setup(struct platform_device *pdev);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010058
59/*--------------------------------------------------------------------------*/
60
Cyril Chemparathy5b3a05c2010-05-01 18:38:27 -040061/* board setup code *MUST* setup pinmux and enable the GPIO clock. */
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040062static inline int __davinci_direction(struct gpio_chip *chip,
63 unsigned offset, bool out, int value)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010064{
Linus Walleij72a1ca22015-12-04 16:25:04 +010065 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +053066 struct davinci_gpio_regs __iomem *g;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040067 unsigned long flags;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010068 u32 temp;
Keerthyb5cf3fd2017-01-13 09:50:12 +053069 int bank = offset / 32;
70 u32 mask = __gpio_mask(offset);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010071
Keerthyb5cf3fd2017-01-13 09:50:12 +053072 g = d->regs[bank];
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040073 spin_lock_irqsave(&d->lock, flags);
Lad, Prabhakar388291c2013-12-11 23:22:07 +053074 temp = readl_relaxed(&g->dir);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040075 if (out) {
76 temp &= ~mask;
Lad, Prabhakar388291c2013-12-11 23:22:07 +053077 writel_relaxed(mask, value ? &g->set_data : &g->clr_data);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040078 } else {
79 temp |= mask;
80 }
Lad, Prabhakar388291c2013-12-11 23:22:07 +053081 writel_relaxed(temp, &g->dir);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040082 spin_unlock_irqrestore(&d->lock, flags);
David Brownelldce11152008-09-07 23:41:04 -070083
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010084 return 0;
85}
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010086
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040087static int davinci_direction_in(struct gpio_chip *chip, unsigned offset)
88{
89 return __davinci_direction(chip, offset, false, 0);
90}
91
92static int
93davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value)
94{
95 return __davinci_direction(chip, offset, true, value);
96}
97
David Brownelldce11152008-09-07 23:41:04 -070098/*
99 * Read the pin's value (works even if it's set up as output);
100 * returns zero/nonzero.
101 *
102 * Note that changes are synched to the GPIO clock, so reading values back
103 * right after you've set them may give old values.
104 */
105static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100106{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100107 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530108 struct davinci_gpio_regs __iomem *g;
109 int bank = offset / 32;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100110
Keerthyb5cf3fd2017-01-13 09:50:12 +0530111 g = d->regs[bank];
112
113 return !!(__gpio_mask(offset) & readl_relaxed(&g->in_data));
David Brownelldce11152008-09-07 23:41:04 -0700114}
115
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100116/*
David Brownelldce11152008-09-07 23:41:04 -0700117 * Assuming the pin is muxed as a gpio output, set its output value.
118 */
119static void
120davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
121{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100122 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530123 struct davinci_gpio_regs __iomem *g;
124 int bank = offset / 32;
David Brownelldce11152008-09-07 23:41:04 -0700125
Keerthyb5cf3fd2017-01-13 09:50:12 +0530126 g = d->regs[bank];
127
128 writel_relaxed(__gpio_mask(offset),
129 value ? &g->set_data : &g->clr_data);
David Brownelldce11152008-09-07 23:41:04 -0700130}
131
KV Sujithc7708442013-11-21 23:45:29 +0530132static struct davinci_gpio_platform_data *
133davinci_gpio_get_pdata(struct platform_device *pdev)
134{
135 struct device_node *dn = pdev->dev.of_node;
136 struct davinci_gpio_platform_data *pdata;
137 int ret;
138 u32 val;
139
140 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
Nizam Haiderab128af2015-11-23 20:53:18 +0530141 return dev_get_platdata(&pdev->dev);
KV Sujithc7708442013-11-21 23:45:29 +0530142
143 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
144 if (!pdata)
145 return NULL;
146
147 ret = of_property_read_u32(dn, "ti,ngpio", &val);
148 if (ret)
149 goto of_err;
150
151 pdata->ngpio = val;
152
153 ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val);
154 if (ret)
155 goto of_err;
156
157 pdata->gpio_unbanked = val;
158
159 return pdata;
160
161of_err:
162 dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret);
163 return NULL;
164}
165
KV Sujith118150f2013-08-18 10:48:58 +0530166static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700167{
Keerthy8e110472017-01-17 21:49:14 +0530168 static int ctrl_num, bank_base;
Keerthy8327e1b2017-07-20 15:12:16 +0530169 int gpio, bank, ret = 0;
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530170 unsigned ngpio, nbank;
KV Sujith118150f2013-08-18 10:48:58 +0530171 struct davinci_gpio_controller *chips;
172 struct davinci_gpio_platform_data *pdata;
KV Sujith118150f2013-08-18 10:48:58 +0530173 struct device *dev = &pdev->dev;
174 struct resource *res;
Axel Haslame0275032016-11-03 12:34:10 +0100175 char label[MAX_LABEL_SIZE];
David Brownelldce11152008-09-07 23:41:04 -0700176
KV Sujithc7708442013-11-21 23:45:29 +0530177 pdata = davinci_gpio_get_pdata(pdev);
KV Sujith118150f2013-08-18 10:48:58 +0530178 if (!pdata) {
179 dev_err(dev, "No platform data found\n");
180 return -EINVAL;
181 }
Cyril Chemparathy686b6342010-05-01 18:37:54 -0400182
KV Sujithc7708442013-11-21 23:45:29 +0530183 dev->platform_data = pdata;
184
Mark A. Greera9949552009-04-15 12:40:35 -0700185 /*
186 * The gpio banks conceptually expose a segmented bitmap,
David Brownell474dad52008-12-07 11:46:23 -0800187 * and "ngpio" is one more than the largest zero-based
188 * bit index that's valid.
189 */
KV Sujith118150f2013-08-18 10:48:58 +0530190 ngpio = pdata->ngpio;
Mark A. Greera9949552009-04-15 12:40:35 -0700191 if (ngpio == 0) {
KV Sujith118150f2013-08-18 10:48:58 +0530192 dev_err(dev, "How many GPIOs?\n");
David Brownell474dad52008-12-07 11:46:23 -0800193 return -EINVAL;
194 }
195
Grygorii Strashkoc21d5002013-11-21 17:34:35 +0200196 if (WARN_ON(ARCH_NR_GPIOS < ngpio))
197 ngpio = ARCH_NR_GPIOS;
David Brownell474dad52008-12-07 11:46:23 -0800198
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530199 nbank = DIV_ROUND_UP(ngpio, 32);
KV Sujith118150f2013-08-18 10:48:58 +0530200 chips = devm_kzalloc(dev,
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530201 nbank * sizeof(struct davinci_gpio_controller),
KV Sujith118150f2013-08-18 10:48:58 +0530202 GFP_KERNEL);
Jingoo Han9ea9363c2014-04-29 17:33:26 +0900203 if (!chips)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400204 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530205
206 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
KV Sujith118150f2013-08-18 10:48:58 +0530207 gpio_base = devm_ioremap_resource(dev, res);
208 if (IS_ERR(gpio_base))
209 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400210
Keerthyb5cf3fd2017-01-13 09:50:12 +0530211 snprintf(label, MAX_LABEL_SIZE, "davinci_gpio.%d", ctrl_num++);
212 chips->chip.label = devm_kstrdup(dev, label, GFP_KERNEL);
213 if (!chips->chip.label)
Axel Haslame0275032016-11-03 12:34:10 +0100214 return -ENOMEM;
David Brownelldce11152008-09-07 23:41:04 -0700215
Keerthyb5cf3fd2017-01-13 09:50:12 +0530216 chips->chip.direction_input = davinci_direction_in;
217 chips->chip.get = davinci_gpio_get;
218 chips->chip.direction_output = davinci_direction_out;
219 chips->chip.set = davinci_gpio_set;
David Brownelldce11152008-09-07 23:41:04 -0700220
Keerthyb5cf3fd2017-01-13 09:50:12 +0530221 chips->chip.ngpio = ngpio;
Keerthy8e110472017-01-17 21:49:14 +0530222 chips->chip.base = bank_base;
David Brownelldce11152008-09-07 23:41:04 -0700223
KV Sujithc7708442013-11-21 23:45:29 +0530224#ifdef CONFIG_OF_GPIO
Keerthyb5cf3fd2017-01-13 09:50:12 +0530225 chips->chip.of_gpio_n_cells = 2;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530226 chips->chip.parent = dev;
227 chips->chip.of_node = dev->of_node;
KV Sujithc7708442013-11-21 23:45:29 +0530228#endif
Keerthyb5cf3fd2017-01-13 09:50:12 +0530229 spin_lock_init(&chips->lock);
Keerthy8e110472017-01-17 21:49:14 +0530230 bank_base += ngpio;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400231
Keerthyb5cf3fd2017-01-13 09:50:12 +0530232 for (gpio = 0, bank = 0; gpio < ngpio; gpio += 32, bank++)
233 chips->regs[bank] = gpio_base + offset_array[bank];
David Brownelldce11152008-09-07 23:41:04 -0700234
Keerthy8327e1b2017-07-20 15:12:16 +0530235 ret = devm_gpiochip_add_data(dev, &chips->chip, chips);
236 if (ret)
237 goto err;
238
KV Sujith118150f2013-08-18 10:48:58 +0530239 platform_set_drvdata(pdev, chips);
Keerthy5e7a0ce2017-07-20 15:12:17 +0530240 ret = davinci_gpio_irq_setup(pdev);
241 if (ret)
242 goto err;
243
David Brownelldce11152008-09-07 23:41:04 -0700244 return 0;
Keerthy8327e1b2017-07-20 15:12:16 +0530245
246err:
247 /* Revert the static variable increments */
248 ctrl_num--;
249 bank_base -= ngpio;
250
251 return ret;
David Brownelldce11152008-09-07 23:41:04 -0700252}
David Brownelldce11152008-09-07 23:41:04 -0700253
254/*--------------------------------------------------------------------------*/
255/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100256 * We expect irqs will normally be set up as input pins, but they can also be
257 * used as output pins ... which is convenient for testing.
258 *
David Brownell474dad52008-12-07 11:46:23 -0800259 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700260 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100261 *
David Brownell474dad52008-12-07 11:46:23 -0800262 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100263 * serve as EDMA event triggers.
264 */
265
Lennert Buytenhek23265442010-11-29 10:27:27 +0100266static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100267{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200268 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100269 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100270
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530271 writel_relaxed(mask, &g->clr_falling);
272 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100273}
274
Lennert Buytenhek23265442010-11-29 10:27:27 +0100275static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100276{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200277 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100278 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100279 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100280
David Brownelldf4aab42009-05-04 13:14:27 -0700281 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
282 if (!status)
283 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
284
285 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530286 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700287 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530288 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100289}
290
Lennert Buytenhek23265442010-11-29 10:27:27 +0100291static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100292{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100293 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
294 return -EINVAL;
295
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100296 return 0;
297}
298
299static struct irq_chip gpio_irqchip = {
300 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100301 .irq_enable = gpio_irq_enable,
302 .irq_disable = gpio_irq_disable,
303 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100304 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100305};
306
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200307static void gpio_irq_handler(struct irq_desc *desc)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100308{
Thomas Gleixner74164012011-06-06 11:51:43 +0200309 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100310 u32 mask = 0xffff;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530311 int bank_num;
Ido Yarivf299bb92011-07-12 00:03:11 +0300312 struct davinci_gpio_controller *d;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530313 struct davinci_gpio_irq_data *irqdata;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100314
Keerthyb5cf3fd2017-01-13 09:50:12 +0530315 irqdata = (struct davinci_gpio_irq_data *)irq_desc_get_handler_data(desc);
316 bank_num = irqdata->bank_num;
317 g = irqdata->regs;
318 d = irqdata->chip;
Thomas Gleixner74164012011-06-06 11:51:43 +0200319
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100320 /* we only care about one bank */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530321 if ((bank_num % 2) == 1)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100322 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;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530329 irq_hw_number_t hw_irq;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100330
331 /* ack any irqs */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530332 status = readl_relaxed(&g->intstat) & mask;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100333 if (!status)
334 break;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530335 writel_relaxed(status, &g->intstat);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100336
337 /* now demux them to the right lowlevel handler */
Ido Yarivf299bb92011-07-12 00:03:11 +0300338
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100339 while (status) {
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530340 bit = __ffs(status);
341 status &= ~BIT(bit);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530342 /* Max number of gpios per controller is 144 so
343 * hw_irq will be in [0..143]
344 */
345 hw_irq = (bank_num / 2) * 32 + bit;
346
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530347 generic_handle_irq(
Keerthyb5cf3fd2017-01-13 09:50:12 +0530348 irq_find_mapping(d->irq_domain, hw_irq));
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100349 }
350 }
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200351 chained_irq_exit(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100352 /* now it may re-trigger */
353}
354
David Brownell7a360712009-06-25 17:01:31 -0700355static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset)
356{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100357 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700358
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200359 if (d->irq_domain)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530360 return irq_create_mapping(d->irq_domain, offset);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200361 else
362 return -ENXIO;
David Brownell7a360712009-06-25 17:01:31 -0700363}
364
365static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
366{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100367 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700368
Philip Avinash131a10a2013-08-18 10:48:57 +0530369 /*
370 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700371 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
372 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530373 if (offset < d->gpio_unbanked)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530374 return d->base_irq + offset;
David Brownell7a360712009-06-25 17:01:31 -0700375 else
376 return -ENODEV;
377}
378
Sekhar Noriab2dde92012-03-11 18:16:11 +0530379static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700380{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530381 struct davinci_gpio_controller *d;
382 struct davinci_gpio_regs __iomem *g;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530383 u32 mask;
384
Jiang Liuc16edb82015-06-01 16:05:19 +0800385 d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data);
Sekhar Noriab2dde92012-03-11 18:16:11 +0530386 g = (struct davinci_gpio_regs __iomem *)d->regs;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530387 mask = __gpio_mask(data->irq - d->base_irq);
David Brownell7a360712009-06-25 17:01:31 -0700388
389 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
390 return -EINVAL;
391
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530392 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700393 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530394 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700395 ? &g->set_rising : &g->clr_rising);
396
397 return 0;
398}
399
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530400static int
401davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
402 irq_hw_number_t hw)
403{
Keerthy8f7cf8c2017-01-17 21:49:11 +0530404 struct davinci_gpio_controller *chips =
405 (struct davinci_gpio_controller *)d->host_data;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530406 struct davinci_gpio_regs __iomem *g = chips->regs[hw / 32];
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530407
408 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
409 "davinci_gpio");
410 irq_set_irq_type(irq, IRQ_TYPE_NONE);
411 irq_set_chip_data(irq, (__force void *)g);
412 irq_set_handler_data(irq, (void *)__gpio_mask(hw));
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530413
414 return 0;
415}
416
417static const struct irq_domain_ops davinci_gpio_irq_ops = {
418 .map = davinci_gpio_irq_map,
419 .xlate = irq_domain_xlate_onetwocell,
420};
421
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200422static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq)
423{
424 static struct irq_chip_type gpio_unbanked;
425
Geliang Tangccdbddf2015-12-30 22:16:38 +0800426 gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq));
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200427
428 return &gpio_unbanked.chip;
429};
430
431static struct irq_chip *keystone_gpio_get_irq_chip(unsigned int irq)
432{
433 static struct irq_chip gpio_unbanked;
434
435 gpio_unbanked = *irq_get_chip(irq);
436 return &gpio_unbanked;
437};
438
439static const struct of_device_id davinci_gpio_ids[];
440
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100441/*
David Brownell474dad52008-12-07 11:46:23 -0800442 * NOTE: for suspend/resume, probably best to make a platform_device with
443 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100444 * calls ... so if no gpios are wakeup events the clock can be disabled,
445 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800446 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100447 */
448
KV Sujith118150f2013-08-18 10:48:58 +0530449static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100450{
Alexander Shiyan58c0f5a2014-02-15 17:12:05 +0400451 unsigned gpio, bank;
452 int irq;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530453 int ret;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100454 struct clk *clk;
David Brownell474dad52008-12-07 11:46:23 -0800455 u32 binten = 0;
Mark A. Greera9949552009-04-15 12:40:35 -0700456 unsigned ngpio, bank_irq;
KV Sujith118150f2013-08-18 10:48:58 +0530457 struct device *dev = &pdev->dev;
458 struct resource *res;
459 struct davinci_gpio_controller *chips = platform_get_drvdata(pdev);
460 struct davinci_gpio_platform_data *pdata = dev->platform_data;
461 struct davinci_gpio_regs __iomem *g;
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200462 struct irq_domain *irq_domain = NULL;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200463 const struct of_device_id *match;
464 struct irq_chip *irq_chip;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530465 struct davinci_gpio_irq_data *irqdata;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200466 gpio_get_irq_chip_cb_t gpio_get_irq_chip;
467
468 /*
469 * Use davinci_gpio_get_irq_chip by default to handle non DT cases
470 */
471 gpio_get_irq_chip = davinci_gpio_get_irq_chip;
472 match = of_match_device(of_match_ptr(davinci_gpio_ids),
473 dev);
474 if (match)
475 gpio_get_irq_chip = (gpio_get_irq_chip_cb_t)match->data;
David Brownell474dad52008-12-07 11:46:23 -0800476
KV Sujith118150f2013-08-18 10:48:58 +0530477 ngpio = pdata->ngpio;
478 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
479 if (!res) {
480 dev_err(dev, "Invalid IRQ resource\n");
481 return -EBUSY;
David Brownell474dad52008-12-07 11:46:23 -0800482 }
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100483
KV Sujith118150f2013-08-18 10:48:58 +0530484 bank_irq = res->start;
485
486 if (!bank_irq) {
487 dev_err(dev, "Invalid IRQ resource\n");
488 return -ENODEV;
489 }
490
491 clk = devm_clk_get(dev, "gpio");
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100492 if (IS_ERR(clk)) {
Keerthy1a9ef902017-07-20 15:12:18 +0530493 dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800494 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100495 }
Arvind Yadav6dc00482017-05-23 14:48:57 +0530496 ret = clk_prepare_enable(clk);
497 if (ret)
498 return ret;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100499
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200500 if (!pdata->gpio_unbanked) {
Bartosz Golaszewskia1a3c2d2017-03-04 17:23:36 +0100501 irq = devm_irq_alloc_descs(dev, -1, 0, ngpio, 0);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200502 if (irq < 0) {
503 dev_err(dev, "Couldn't allocate IRQ numbers\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530504 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200505 return irq;
506 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530507
Keerthy310a7e62016-01-28 19:08:50 +0530508 irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0,
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200509 &davinci_gpio_irq_ops,
510 chips);
511 if (!irq_domain) {
512 dev_err(dev, "Couldn't register an IRQ domain\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530513 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200514 return -ENODEV;
515 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530516 }
517
Philip Avinash131a10a2013-08-18 10:48:57 +0530518 /*
519 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700520 * banked IRQs. Having GPIOs in the first GPIO bank use direct
521 * IRQs, while the others use banked IRQs, would need some setup
522 * tweaks to recognize hardware which can do that.
523 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530524 chips->chip.to_irq = gpio_to_irq_banked;
525 chips->irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700526
527 /*
528 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
529 * controller only handling trigger modes. We currently assume no
530 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
531 */
KV Sujith118150f2013-08-18 10:48:58 +0530532 if (pdata->gpio_unbanked) {
David Brownell7a360712009-06-25 17:01:31 -0700533 /* pass "bank 0" GPIO IRQs to AINTC */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530534 chips->chip.to_irq = gpio_to_irq_unbanked;
535 chips->base_irq = bank_irq;
536 chips->gpio_unbanked = pdata->gpio_unbanked;
Vitaly Andrianov3685bbc2015-07-02 14:31:30 -0400537 binten = GENMASK(pdata->gpio_unbanked / 16, 0);
David Brownell7a360712009-06-25 17:01:31 -0700538
539 /* AINTC handles mask/unmask; GPIO handles triggering */
540 irq = bank_irq;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200541 irq_chip = gpio_get_irq_chip(irq);
542 irq_chip->name = "GPIO-AINTC";
543 irq_chip->irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700544
545 /* default trigger: both edges */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530546 g = chips->regs[0];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530547 writel_relaxed(~0, &g->set_falling);
548 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700549
550 /* set the direct IRQs up to use that irqchip */
KV Sujith118150f2013-08-18 10:48:58 +0530551 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200552 irq_set_chip(irq, irq_chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530553 irq_set_handler_data(irq, chips);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100554 irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700555 }
556
557 goto done;
558 }
559
560 /*
561 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
562 * then chain through our own handler.
563 */
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530564 for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) {
Keerthy8f7cf8c2017-01-17 21:49:11 +0530565 /* disabled by default, enabled only as needed
566 * There are register sets for 32 GPIOs. 2 banks of 16
567 * GPIOs are covered by each set of registers hence divide by 2
568 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530569 g = chips->regs[bank / 2];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530570 writel_relaxed(~0, &g->clr_falling);
571 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100572
Ido Yarivf299bb92011-07-12 00:03:11 +0300573 /*
574 * Each chip handles 32 gpios, and each irq bank consists of 16
575 * gpio irqs. Pass the irq bank's corresponding controller to
576 * the chained irq handler.
577 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530578 irqdata = devm_kzalloc(&pdev->dev,
579 sizeof(struct
580 davinci_gpio_irq_data),
581 GFP_KERNEL);
Arvind Yadav6dc00482017-05-23 14:48:57 +0530582 if (!irqdata) {
583 clk_disable_unprepare(clk);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530584 return -ENOMEM;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530585 }
Keerthyb5cf3fd2017-01-13 09:50:12 +0530586
587 irqdata->regs = g;
588 irqdata->bank_num = bank;
589 irqdata->chip = chips;
590
Thomas Gleixnerbdac2b62015-07-13 23:22:44 +0200591 irq_set_chained_handler_and_data(bank_irq, gpio_irq_handler,
Keerthyb5cf3fd2017-01-13 09:50:12 +0530592 irqdata);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100593
David Brownell474dad52008-12-07 11:46:23 -0800594 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100595 }
596
David Brownell7a360712009-06-25 17:01:31 -0700597done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530598 /*
599 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100600 * bits be set/cleared dynamically.
601 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530602 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100603
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100604 return 0;
605}
KV Sujith118150f2013-08-18 10:48:58 +0530606
KV Sujithc7708442013-11-21 23:45:29 +0530607#if IS_ENABLED(CONFIG_OF)
608static const struct of_device_id davinci_gpio_ids[] = {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200609 { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip},
610 { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip},
KV Sujithc7708442013-11-21 23:45:29 +0530611 { /* sentinel */ },
612};
613MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
614#endif
615
KV Sujith118150f2013-08-18 10:48:58 +0530616static struct platform_driver davinci_gpio_driver = {
617 .probe = davinci_gpio_probe,
618 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530619 .name = "davinci_gpio",
KV Sujithc7708442013-11-21 23:45:29 +0530620 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530621 },
622};
623
624/**
625 * GPIO driver registration needs to be done before machine_init functions
626 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
627 */
628static int __init davinci_gpio_drv_reg(void)
629{
630 return platform_driver_register(&davinci_gpio_driver);
631}
632postcore_initcall(davinci_gpio_drv_reg);