blob: 446df4ece9150683933f0553aab68d85185f2000 [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
Alexander Holler758afe42014-03-05 12:21:01 +0100166#ifdef CONFIG_OF_GPIO
167static int davinci_gpio_of_xlate(struct gpio_chip *gc,
168 const struct of_phandle_args *gpiospec,
169 u32 *flags)
170{
Linus Walleij58383c782015-11-04 09:56:26 +0100171 struct davinci_gpio_controller *chips = dev_get_drvdata(gc->parent);
172 struct davinci_gpio_platform_data *pdata = dev_get_platdata(gc->parent);
Alexander Holler758afe42014-03-05 12:21:01 +0100173
174 if (gpiospec->args[0] > pdata->ngpio)
175 return -EINVAL;
176
Keerthyb5cf3fd2017-01-13 09:50:12 +0530177 if (gc != &chips->chip)
Alexander Holler758afe42014-03-05 12:21:01 +0100178 return -EINVAL;
179
180 if (flags)
181 *flags = gpiospec->args[1];
182
183 return gpiospec->args[0] % 32;
184}
185#endif
186
KV Sujith118150f2013-08-18 10:48:58 +0530187static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700188{
Keerthyb5cf3fd2017-01-13 09:50:12 +0530189 static int ctrl_num;
190 int gpio, bank;
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530191 unsigned ngpio, nbank;
KV Sujith118150f2013-08-18 10:48:58 +0530192 struct davinci_gpio_controller *chips;
193 struct davinci_gpio_platform_data *pdata;
KV Sujith118150f2013-08-18 10:48:58 +0530194 struct device *dev = &pdev->dev;
195 struct resource *res;
Axel Haslame0275032016-11-03 12:34:10 +0100196 char label[MAX_LABEL_SIZE];
David Brownelldce11152008-09-07 23:41:04 -0700197
KV Sujithc7708442013-11-21 23:45:29 +0530198 pdata = davinci_gpio_get_pdata(pdev);
KV Sujith118150f2013-08-18 10:48:58 +0530199 if (!pdata) {
200 dev_err(dev, "No platform data found\n");
201 return -EINVAL;
202 }
Cyril Chemparathy686b6342010-05-01 18:37:54 -0400203
KV Sujithc7708442013-11-21 23:45:29 +0530204 dev->platform_data = pdata;
205
Mark A. Greera9949552009-04-15 12:40:35 -0700206 /*
207 * The gpio banks conceptually expose a segmented bitmap,
David Brownell474dad52008-12-07 11:46:23 -0800208 * and "ngpio" is one more than the largest zero-based
209 * bit index that's valid.
210 */
KV Sujith118150f2013-08-18 10:48:58 +0530211 ngpio = pdata->ngpio;
Mark A. Greera9949552009-04-15 12:40:35 -0700212 if (ngpio == 0) {
KV Sujith118150f2013-08-18 10:48:58 +0530213 dev_err(dev, "How many GPIOs?\n");
David Brownell474dad52008-12-07 11:46:23 -0800214 return -EINVAL;
215 }
216
Grygorii Strashkoc21d5002013-11-21 17:34:35 +0200217 if (WARN_ON(ARCH_NR_GPIOS < ngpio))
218 ngpio = ARCH_NR_GPIOS;
David Brownell474dad52008-12-07 11:46:23 -0800219
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530220 nbank = DIV_ROUND_UP(ngpio, 32);
KV Sujith118150f2013-08-18 10:48:58 +0530221 chips = devm_kzalloc(dev,
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530222 nbank * sizeof(struct davinci_gpio_controller),
KV Sujith118150f2013-08-18 10:48:58 +0530223 GFP_KERNEL);
Jingoo Han9ea9363c2014-04-29 17:33:26 +0900224 if (!chips)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400225 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530226
227 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
KV Sujith118150f2013-08-18 10:48:58 +0530228 gpio_base = devm_ioremap_resource(dev, res);
229 if (IS_ERR(gpio_base))
230 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400231
Keerthyb5cf3fd2017-01-13 09:50:12 +0530232 snprintf(label, MAX_LABEL_SIZE, "davinci_gpio.%d", ctrl_num++);
233 chips->chip.label = devm_kstrdup(dev, label, GFP_KERNEL);
234 if (!chips->chip.label)
Axel Haslame0275032016-11-03 12:34:10 +0100235 return -ENOMEM;
David Brownelldce11152008-09-07 23:41:04 -0700236
Keerthyb5cf3fd2017-01-13 09:50:12 +0530237 chips->chip.direction_input = davinci_direction_in;
238 chips->chip.get = davinci_gpio_get;
239 chips->chip.direction_output = davinci_direction_out;
240 chips->chip.set = davinci_gpio_set;
David Brownelldce11152008-09-07 23:41:04 -0700241
Keerthyb5cf3fd2017-01-13 09:50:12 +0530242 chips->chip.ngpio = ngpio;
David Brownelldce11152008-09-07 23:41:04 -0700243
KV Sujithc7708442013-11-21 23:45:29 +0530244#ifdef CONFIG_OF_GPIO
Keerthyb5cf3fd2017-01-13 09:50:12 +0530245 chips->chip.of_gpio_n_cells = 2;
246 chips->chip.of_xlate = davinci_gpio_of_xlate;
247 chips->chip.parent = dev;
248 chips->chip.of_node = dev->of_node;
KV Sujithc7708442013-11-21 23:45:29 +0530249#endif
Keerthyb5cf3fd2017-01-13 09:50:12 +0530250 spin_lock_init(&chips->lock);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400251
Keerthyb5cf3fd2017-01-13 09:50:12 +0530252 for (gpio = 0, bank = 0; gpio < ngpio; gpio += 32, bank++)
253 chips->regs[bank] = gpio_base + offset_array[bank];
David Brownelldce11152008-09-07 23:41:04 -0700254
Keerthyb5cf3fd2017-01-13 09:50:12 +0530255 gpiochip_add_data(&chips->chip, chips);
KV Sujith118150f2013-08-18 10:48:58 +0530256 platform_set_drvdata(pdev, chips);
257 davinci_gpio_irq_setup(pdev);
David Brownelldce11152008-09-07 23:41:04 -0700258 return 0;
259}
David Brownelldce11152008-09-07 23:41:04 -0700260
261/*--------------------------------------------------------------------------*/
262/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100263 * We expect irqs will normally be set up as input pins, but they can also be
264 * used as output pins ... which is convenient for testing.
265 *
David Brownell474dad52008-12-07 11:46:23 -0800266 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700267 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100268 *
David Brownell474dad52008-12-07 11:46:23 -0800269 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100270 * serve as EDMA event triggers.
271 */
272
Lennert Buytenhek23265442010-11-29 10:27:27 +0100273static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100274{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200275 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100276 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100277
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530278 writel_relaxed(mask, &g->clr_falling);
279 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100280}
281
Lennert Buytenhek23265442010-11-29 10:27:27 +0100282static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100283{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200284 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100285 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100286 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100287
David Brownelldf4aab42009-05-04 13:14:27 -0700288 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
289 if (!status)
290 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
291
292 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530293 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700294 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530295 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100296}
297
Lennert Buytenhek23265442010-11-29 10:27:27 +0100298static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100299{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100300 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
301 return -EINVAL;
302
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100303 return 0;
304}
305
306static struct irq_chip gpio_irqchip = {
307 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100308 .irq_enable = gpio_irq_enable,
309 .irq_disable = gpio_irq_disable,
310 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100311 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100312};
313
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200314static void gpio_irq_handler(struct irq_desc *desc)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100315{
Thomas Gleixner74164012011-06-06 11:51:43 +0200316 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100317 u32 mask = 0xffff;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530318 int bank_num;
Ido Yarivf299bb92011-07-12 00:03:11 +0300319 struct davinci_gpio_controller *d;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530320 struct davinci_gpio_irq_data *irqdata;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100321
Keerthyb5cf3fd2017-01-13 09:50:12 +0530322 irqdata = (struct davinci_gpio_irq_data *)irq_desc_get_handler_data(desc);
323 bank_num = irqdata->bank_num;
324 g = irqdata->regs;
325 d = irqdata->chip;
Thomas Gleixner74164012011-06-06 11:51:43 +0200326
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100327 /* we only care about one bank */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530328 if ((bank_num % 2) == 1)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100329 mask <<= 16;
330
331 /* temporarily mask (level sensitive) parent IRQ */
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200332 chained_irq_enter(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100333 while (1) {
334 u32 status;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530335 int bit;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530336 irq_hw_number_t hw_irq;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100337
338 /* ack any irqs */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530339 status = readl_relaxed(&g->intstat) & mask;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100340 if (!status)
341 break;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530342 writel_relaxed(status, &g->intstat);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100343
344 /* now demux them to the right lowlevel handler */
Ido Yarivf299bb92011-07-12 00:03:11 +0300345
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100346 while (status) {
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530347 bit = __ffs(status);
348 status &= ~BIT(bit);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530349 /* Max number of gpios per controller is 144 so
350 * hw_irq will be in [0..143]
351 */
352 hw_irq = (bank_num / 2) * 32 + bit;
353
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530354 generic_handle_irq(
Keerthyb5cf3fd2017-01-13 09:50:12 +0530355 irq_find_mapping(d->irq_domain, hw_irq));
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100356 }
357 }
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200358 chained_irq_exit(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100359 /* now it may re-trigger */
360}
361
David Brownell7a360712009-06-25 17:01:31 -0700362static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset)
363{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100364 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700365
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200366 if (d->irq_domain)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530367 return irq_create_mapping(d->irq_domain, offset);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200368 else
369 return -ENXIO;
David Brownell7a360712009-06-25 17:01:31 -0700370}
371
372static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
373{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100374 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700375
Philip Avinash131a10a2013-08-18 10:48:57 +0530376 /*
377 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700378 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
379 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530380 if (offset < d->gpio_unbanked)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530381 return d->base_irq + offset;
David Brownell7a360712009-06-25 17:01:31 -0700382 else
383 return -ENODEV;
384}
385
Sekhar Noriab2dde92012-03-11 18:16:11 +0530386static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700387{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530388 struct davinci_gpio_controller *d;
389 struct davinci_gpio_regs __iomem *g;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530390 u32 mask;
391
Jiang Liuc16edb82015-06-01 16:05:19 +0800392 d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data);
Sekhar Noriab2dde92012-03-11 18:16:11 +0530393 g = (struct davinci_gpio_regs __iomem *)d->regs;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530394 mask = __gpio_mask(data->irq - d->base_irq);
David Brownell7a360712009-06-25 17:01:31 -0700395
396 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
397 return -EINVAL;
398
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530399 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700400 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530401 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700402 ? &g->set_rising : &g->clr_rising);
403
404 return 0;
405}
406
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530407static int
408davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
409 irq_hw_number_t hw)
410{
Keerthy8f7cf8c2017-01-17 21:49:11 +0530411 struct davinci_gpio_controller *chips =
412 (struct davinci_gpio_controller *)d->host_data;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530413 struct davinci_gpio_regs __iomem *g = chips->regs[hw / 32];
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530414
415 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
416 "davinci_gpio");
417 irq_set_irq_type(irq, IRQ_TYPE_NONE);
418 irq_set_chip_data(irq, (__force void *)g);
419 irq_set_handler_data(irq, (void *)__gpio_mask(hw));
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530420
421 return 0;
422}
423
424static const struct irq_domain_ops davinci_gpio_irq_ops = {
425 .map = davinci_gpio_irq_map,
426 .xlate = irq_domain_xlate_onetwocell,
427};
428
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200429static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq)
430{
431 static struct irq_chip_type gpio_unbanked;
432
Geliang Tangccdbddf2015-12-30 22:16:38 +0800433 gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq));
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200434
435 return &gpio_unbanked.chip;
436};
437
438static struct irq_chip *keystone_gpio_get_irq_chip(unsigned int irq)
439{
440 static struct irq_chip gpio_unbanked;
441
442 gpio_unbanked = *irq_get_chip(irq);
443 return &gpio_unbanked;
444};
445
446static const struct of_device_id davinci_gpio_ids[];
447
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100448/*
David Brownell474dad52008-12-07 11:46:23 -0800449 * NOTE: for suspend/resume, probably best to make a platform_device with
450 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100451 * calls ... so if no gpios are wakeup events the clock can be disabled,
452 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800453 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100454 */
455
KV Sujith118150f2013-08-18 10:48:58 +0530456static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100457{
Alexander Shiyan58c0f5a2014-02-15 17:12:05 +0400458 unsigned gpio, bank;
459 int irq;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100460 struct clk *clk;
David Brownell474dad52008-12-07 11:46:23 -0800461 u32 binten = 0;
Mark A. Greera9949552009-04-15 12:40:35 -0700462 unsigned ngpio, bank_irq;
KV Sujith118150f2013-08-18 10:48:58 +0530463 struct device *dev = &pdev->dev;
464 struct resource *res;
465 struct davinci_gpio_controller *chips = platform_get_drvdata(pdev);
466 struct davinci_gpio_platform_data *pdata = dev->platform_data;
467 struct davinci_gpio_regs __iomem *g;
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200468 struct irq_domain *irq_domain = NULL;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200469 const struct of_device_id *match;
470 struct irq_chip *irq_chip;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530471 struct davinci_gpio_irq_data *irqdata;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200472 gpio_get_irq_chip_cb_t gpio_get_irq_chip;
473
474 /*
475 * Use davinci_gpio_get_irq_chip by default to handle non DT cases
476 */
477 gpio_get_irq_chip = davinci_gpio_get_irq_chip;
478 match = of_match_device(of_match_ptr(davinci_gpio_ids),
479 dev);
480 if (match)
481 gpio_get_irq_chip = (gpio_get_irq_chip_cb_t)match->data;
David Brownell474dad52008-12-07 11:46:23 -0800482
KV Sujith118150f2013-08-18 10:48:58 +0530483 ngpio = pdata->ngpio;
484 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
485 if (!res) {
486 dev_err(dev, "Invalid IRQ resource\n");
487 return -EBUSY;
David Brownell474dad52008-12-07 11:46:23 -0800488 }
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100489
KV Sujith118150f2013-08-18 10:48:58 +0530490 bank_irq = res->start;
491
492 if (!bank_irq) {
493 dev_err(dev, "Invalid IRQ resource\n");
494 return -ENODEV;
495 }
496
497 clk = devm_clk_get(dev, "gpio");
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100498 if (IS_ERR(clk)) {
499 printk(KERN_ERR "Error %ld getting gpio clock?\n",
500 PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800501 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100502 }
Murali Karicherice6b6582012-08-30 14:03:57 -0400503 clk_prepare_enable(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100504
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200505 if (!pdata->gpio_unbanked) {
506 irq = irq_alloc_descs(-1, 0, ngpio, 0);
507 if (irq < 0) {
508 dev_err(dev, "Couldn't allocate IRQ numbers\n");
509 return irq;
510 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530511
Keerthy310a7e62016-01-28 19:08:50 +0530512 irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0,
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200513 &davinci_gpio_irq_ops,
514 chips);
515 if (!irq_domain) {
516 dev_err(dev, "Couldn't register an IRQ domain\n");
517 return -ENODEV;
518 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530519 }
520
Philip Avinash131a10a2013-08-18 10:48:57 +0530521 /*
522 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700523 * banked IRQs. Having GPIOs in the first GPIO bank use direct
524 * IRQs, while the others use banked IRQs, would need some setup
525 * tweaks to recognize hardware which can do that.
526 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530527 chips->chip.to_irq = gpio_to_irq_banked;
528 chips->irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700529
530 /*
531 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
532 * controller only handling trigger modes. We currently assume no
533 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
534 */
KV Sujith118150f2013-08-18 10:48:58 +0530535 if (pdata->gpio_unbanked) {
David Brownell7a360712009-06-25 17:01:31 -0700536 /* pass "bank 0" GPIO IRQs to AINTC */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530537 chips->chip.to_irq = gpio_to_irq_unbanked;
538 chips->base_irq = bank_irq;
539 chips->gpio_unbanked = pdata->gpio_unbanked;
Vitaly Andrianov3685bbc2015-07-02 14:31:30 -0400540 binten = GENMASK(pdata->gpio_unbanked / 16, 0);
David Brownell7a360712009-06-25 17:01:31 -0700541
542 /* AINTC handles mask/unmask; GPIO handles triggering */
543 irq = bank_irq;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200544 irq_chip = gpio_get_irq_chip(irq);
545 irq_chip->name = "GPIO-AINTC";
546 irq_chip->irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700547
548 /* default trigger: both edges */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530549 g = chips->regs[0];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530550 writel_relaxed(~0, &g->set_falling);
551 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700552
553 /* set the direct IRQs up to use that irqchip */
KV Sujith118150f2013-08-18 10:48:58 +0530554 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200555 irq_set_chip(irq, irq_chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530556 irq_set_handler_data(irq, chips);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100557 irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700558 }
559
560 goto done;
561 }
562
563 /*
564 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
565 * then chain through our own handler.
566 */
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530567 for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) {
Keerthy8f7cf8c2017-01-17 21:49:11 +0530568 /* disabled by default, enabled only as needed
569 * There are register sets for 32 GPIOs. 2 banks of 16
570 * GPIOs are covered by each set of registers hence divide by 2
571 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530572 g = chips->regs[bank / 2];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530573 writel_relaxed(~0, &g->clr_falling);
574 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100575
Ido Yarivf299bb92011-07-12 00:03:11 +0300576 /*
577 * Each chip handles 32 gpios, and each irq bank consists of 16
578 * gpio irqs. Pass the irq bank's corresponding controller to
579 * the chained irq handler.
580 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530581 irqdata = devm_kzalloc(&pdev->dev,
582 sizeof(struct
583 davinci_gpio_irq_data),
584 GFP_KERNEL);
585 if (!irqdata)
586 return -ENOMEM;
587
588 irqdata->regs = g;
589 irqdata->bank_num = bank;
590 irqdata->chip = chips;
591
Thomas Gleixnerbdac2b62015-07-13 23:22:44 +0200592 irq_set_chained_handler_and_data(bank_irq, gpio_irq_handler,
Keerthyb5cf3fd2017-01-13 09:50:12 +0530593 irqdata);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100594
David Brownell474dad52008-12-07 11:46:23 -0800595 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100596 }
597
David Brownell7a360712009-06-25 17:01:31 -0700598done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530599 /*
600 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100601 * bits be set/cleared dynamically.
602 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530603 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100604
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100605 return 0;
606}
KV Sujith118150f2013-08-18 10:48:58 +0530607
KV Sujithc7708442013-11-21 23:45:29 +0530608#if IS_ENABLED(CONFIG_OF)
609static const struct of_device_id davinci_gpio_ids[] = {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200610 { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip},
611 { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip},
KV Sujithc7708442013-11-21 23:45:29 +0530612 { /* sentinel */ },
613};
614MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
615#endif
616
KV Sujith118150f2013-08-18 10:48:58 +0530617static struct platform_driver davinci_gpio_driver = {
618 .probe = davinci_gpio_probe,
619 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530620 .name = "davinci_gpio",
KV Sujithc7708442013-11-21 23:45:29 +0530621 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530622 },
623};
624
625/**
626 * GPIO driver registration needs to be done before machine_init functions
627 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
628 */
629static int __init davinci_gpio_drv_reg(void)
630{
631 return platform_driver_register(&davinci_gpio_driver);
632}
633postcore_initcall(davinci_gpio_drv_reg);