blob: e0b025689625080485b0116fbb6564c4762d6f55 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vladimir Barinov3d9edf02007-07-10 13:03:43 +01002/*
3 * TI DaVinci GPIO Support
4 *
David Brownelldce11152008-09-07 23:41:04 -07005 * Copyright (c) 2006-2007 David Brownell
Vladimir Barinov3d9edf02007-07-10 13:03:43 +01006 * Copyright (c) 2007, MontaVista Software, Inc. <source@mvista.com>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +01007 */
Andrew F. Davis79b73ff2018-08-31 14:13:26 -05008
Linus Walleij7220c432018-01-14 02:05:38 +01009#include <linux/gpio/driver.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010010#include <linux/errno.h>
11#include <linux/kernel.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010012#include <linux/clk.h>
13#include <linux/err.h>
14#include <linux/io.h>
KV Sujith118150f2013-08-18 10:48:58 +053015#include <linux/irq.h>
Lad, Prabhakar9211ff32013-11-21 23:45:27 +053016#include <linux/irqdomain.h>
KV Sujithc7708442013-11-21 23:45:29 +053017#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/of_device.h>
David Lechner3c87d7c2018-01-21 17:09:40 -060020#include <linux/pinctrl/consumer.h>
KV Sujith118150f2013-08-18 10:48:58 +053021#include <linux/platform_device.h>
22#include <linux/platform_data/gpio-davinci.h>
Grygorii Strashko0d978eb2013-11-26 21:40:09 +020023#include <linux/irqchip/chained_irq.h>
Andrew F. Davis79b73ff2018-08-31 14:13:26 -050024#include <linux/spinlock.h>
25
26#include <asm-generic/gpio.h>
27
28#define MAX_REGS_BANKS 5
29#define MAX_INT_PER_BANK 32
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010030
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040031struct davinci_gpio_regs {
32 u32 dir;
33 u32 out_data;
34 u32 set_data;
35 u32 clr_data;
36 u32 in_data;
37 u32 set_rising;
38 u32 clr_rising;
39 u32 set_falling;
40 u32 clr_falling;
41 u32 intstat;
42};
43
Grygorii Strashko0c6feb02014-02-13 17:58:45 +020044typedef struct irq_chip *(*gpio_get_irq_chip_cb_t)(unsigned int irq);
45
Philip Avinash131a10a2013-08-18 10:48:57 +053046#define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */
47
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040048static void __iomem *gpio_base;
Keerthy8f7cf8c2017-01-17 21:49:11 +053049static unsigned int offset_array[5] = {0x10, 0x38, 0x60, 0x88, 0xb0};
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010050
Andrew F. Davis79b73ff2018-08-31 14:13:26 -050051struct davinci_gpio_irq_data {
52 void __iomem *regs;
53 struct davinci_gpio_controller *chip;
54 int bank_num;
55};
56
57struct davinci_gpio_controller {
58 struct gpio_chip chip;
59 struct irq_domain *irq_domain;
60 /* Serialize access to GPIO registers */
61 spinlock_t lock;
62 void __iomem *regs[MAX_REGS_BANKS];
63 int gpio_unbanked;
64 int irqs[MAX_INT_PER_BANK];
65};
66
67static inline u32 __gpio_mask(unsigned gpio)
68{
69 return 1 << (gpio % 32);
70}
71
Thomas Gleixner1765d672015-07-13 01:18:56 +020072static inline struct davinci_gpio_regs __iomem *irq2regs(struct irq_data *d)
Kevin Hilman21ce8732010-02-25 16:49:56 -080073{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040074 struct davinci_gpio_regs __iomem *g;
Kevin Hilman21ce8732010-02-25 16:49:56 -080075
Thomas Gleixner1765d672015-07-13 01:18:56 +020076 g = (__force struct davinci_gpio_regs __iomem *)irq_data_get_irq_chip_data(d);
Kevin Hilman21ce8732010-02-25 16:49:56 -080077
78 return g;
79}
80
Keerthyeb3744a2018-06-13 09:10:37 +053081static int davinci_gpio_irq_setup(struct platform_device *pdev);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010082
83/*--------------------------------------------------------------------------*/
84
Cyril Chemparathy5b3a05c2010-05-01 18:38:27 -040085/* board setup code *MUST* setup pinmux and enable the GPIO clock. */
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040086static inline int __davinci_direction(struct gpio_chip *chip,
87 unsigned offset, bool out, int value)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010088{
Linus Walleij72a1ca22015-12-04 16:25:04 +010089 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +053090 struct davinci_gpio_regs __iomem *g;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040091 unsigned long flags;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010092 u32 temp;
Keerthyb5cf3fd2017-01-13 09:50:12 +053093 int bank = offset / 32;
94 u32 mask = __gpio_mask(offset);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010095
Keerthyb5cf3fd2017-01-13 09:50:12 +053096 g = d->regs[bank];
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040097 spin_lock_irqsave(&d->lock, flags);
Lad, Prabhakar388291c2013-12-11 23:22:07 +053098 temp = readl_relaxed(&g->dir);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040099 if (out) {
100 temp &= ~mask;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530101 writel_relaxed(mask, value ? &g->set_data : &g->clr_data);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -0400102 } else {
103 temp |= mask;
104 }
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530105 writel_relaxed(temp, &g->dir);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400106 spin_unlock_irqrestore(&d->lock, flags);
David Brownelldce11152008-09-07 23:41:04 -0700107
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100108 return 0;
109}
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100110
Cyril Chemparathyba4a9842010-05-01 18:37:51 -0400111static int davinci_direction_in(struct gpio_chip *chip, unsigned offset)
112{
113 return __davinci_direction(chip, offset, false, 0);
114}
115
116static int
117davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value)
118{
119 return __davinci_direction(chip, offset, true, value);
120}
121
David Brownelldce11152008-09-07 23:41:04 -0700122/*
123 * Read the pin's value (works even if it's set up as output);
124 * returns zero/nonzero.
125 *
126 * Note that changes are synched to the GPIO clock, so reading values back
127 * right after you've set them may give old values.
128 */
129static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100130{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100131 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530132 struct davinci_gpio_regs __iomem *g;
133 int bank = offset / 32;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100134
Keerthyb5cf3fd2017-01-13 09:50:12 +0530135 g = d->regs[bank];
136
137 return !!(__gpio_mask(offset) & readl_relaxed(&g->in_data));
David Brownelldce11152008-09-07 23:41:04 -0700138}
139
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100140/*
David Brownelldce11152008-09-07 23:41:04 -0700141 * Assuming the pin is muxed as a gpio output, set its output value.
142 */
143static void
144davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
145{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100146 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530147 struct davinci_gpio_regs __iomem *g;
148 int bank = offset / 32;
David Brownelldce11152008-09-07 23:41:04 -0700149
Keerthyb5cf3fd2017-01-13 09:50:12 +0530150 g = d->regs[bank];
151
152 writel_relaxed(__gpio_mask(offset),
153 value ? &g->set_data : &g->clr_data);
David Brownelldce11152008-09-07 23:41:04 -0700154}
155
KV Sujithc7708442013-11-21 23:45:29 +0530156static struct davinci_gpio_platform_data *
157davinci_gpio_get_pdata(struct platform_device *pdev)
158{
159 struct device_node *dn = pdev->dev.of_node;
160 struct davinci_gpio_platform_data *pdata;
161 int ret;
162 u32 val;
163
164 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
Nizam Haiderab128af2015-11-23 20:53:18 +0530165 return dev_get_platdata(&pdev->dev);
KV Sujithc7708442013-11-21 23:45:29 +0530166
167 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
168 if (!pdata)
169 return NULL;
170
171 ret = of_property_read_u32(dn, "ti,ngpio", &val);
172 if (ret)
173 goto of_err;
174
175 pdata->ngpio = val;
176
177 ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val);
178 if (ret)
179 goto of_err;
180
181 pdata->gpio_unbanked = val;
182
183 return pdata;
184
185of_err:
186 dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret);
187 return NULL;
188}
189
KV Sujith118150f2013-08-18 10:48:58 +0530190static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700191{
Andrew F. Davisc809e372018-08-31 14:13:24 -0500192 int bank, i, ret = 0;
Keerthyeb3744a2018-06-13 09:10:37 +0530193 unsigned int ngpio, nbank, nirq;
KV Sujith118150f2013-08-18 10:48:58 +0530194 struct davinci_gpio_controller *chips;
195 struct davinci_gpio_platform_data *pdata;
KV Sujith118150f2013-08-18 10:48:58 +0530196 struct device *dev = &pdev->dev;
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
Keerthyeb3744a2018-06-13 09:10:37 +0530220 /*
221 * If there are unbanked interrupts then the number of
222 * interrupts is equal to number of gpios else all are banked so
223 * number of interrupts is equal to number of banks(each with 16 gpios)
224 */
225 if (pdata->gpio_unbanked)
226 nirq = pdata->gpio_unbanked;
227 else
228 nirq = DIV_ROUND_UP(ngpio, 16);
229
Andrew F. Davisc809e372018-08-31 14:13:24 -0500230 chips = devm_kzalloc(dev, sizeof(*chips), GFP_KERNEL);
Jingoo Han9ea9363c2014-04-29 17:33:26 +0900231 if (!chips)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400232 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530233
Bartosz Golaszewskifa7569c2019-02-20 12:12:40 +0100234 gpio_base = devm_platform_ioremap_resource(pdev, 0);
KV Sujith118150f2013-08-18 10:48:58 +0530235 if (IS_ERR(gpio_base))
236 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400237
Keerthyeb3744a2018-06-13 09:10:37 +0530238 for (i = 0; i < nirq; i++) {
239 chips->irqs[i] = platform_get_irq(pdev, i);
240 if (chips->irqs[i] < 0) {
Keerthy541e4092019-07-08 14:19:04 +0530241 if (chips->irqs[i] != -EPROBE_DEFER)
242 dev_info(dev, "IRQ not populated, err = %d\n",
243 chips->irqs[i]);
Keerthyeb3744a2018-06-13 09:10:37 +0530244 return chips->irqs[i];
245 }
Keerthyc1d013a2018-06-13 09:10:36 +0530246 }
247
Andrew F. Davis587f7a62018-08-31 14:13:23 -0500248 chips->chip.label = dev_name(dev);
David Brownelldce11152008-09-07 23:41:04 -0700249
Keerthyb5cf3fd2017-01-13 09:50:12 +0530250 chips->chip.direction_input = davinci_direction_in;
251 chips->chip.get = davinci_gpio_get;
252 chips->chip.direction_output = davinci_direction_out;
253 chips->chip.set = davinci_gpio_set;
David Brownelldce11152008-09-07 23:41:04 -0700254
Keerthyb5cf3fd2017-01-13 09:50:12 +0530255 chips->chip.ngpio = ngpio;
Bartosz Golaszewski786a9ab2018-11-21 10:35:17 +0100256 chips->chip.base = pdata->no_auto_base ? pdata->base : -1;
David Brownelldce11152008-09-07 23:41:04 -0700257
KV Sujithc7708442013-11-21 23:45:29 +0530258#ifdef CONFIG_OF_GPIO
Keerthyb5cf3fd2017-01-13 09:50:12 +0530259 chips->chip.of_gpio_n_cells = 2;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530260 chips->chip.parent = dev;
261 chips->chip.of_node = dev->of_node;
David Lechner3c87d7c2018-01-21 17:09:40 -0600262
263 if (of_property_read_bool(dev->of_node, "gpio-ranges")) {
264 chips->chip.request = gpiochip_generic_request;
265 chips->chip.free = gpiochip_generic_free;
266 }
KV Sujithc7708442013-11-21 23:45:29 +0530267#endif
Keerthyb5cf3fd2017-01-13 09:50:12 +0530268 spin_lock_init(&chips->lock);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400269
Andrew F. Davisc809e372018-08-31 14:13:24 -0500270 nbank = DIV_ROUND_UP(ngpio, 32);
271 for (bank = 0; bank < nbank; bank++)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530272 chips->regs[bank] = gpio_base + offset_array[bank];
David Brownelldce11152008-09-07 23:41:04 -0700273
Keerthy8327e1b2017-07-20 15:12:16 +0530274 ret = devm_gpiochip_add_data(dev, &chips->chip, chips);
275 if (ret)
Andrew F. Davis587f7a62018-08-31 14:13:23 -0500276 return ret;
Keerthy8327e1b2017-07-20 15:12:16 +0530277
KV Sujith118150f2013-08-18 10:48:58 +0530278 platform_set_drvdata(pdev, chips);
Keerthyeb3744a2018-06-13 09:10:37 +0530279 ret = davinci_gpio_irq_setup(pdev);
Keerthy5e7a0ce2017-07-20 15:12:17 +0530280 if (ret)
Andrew F. Davis587f7a62018-08-31 14:13:23 -0500281 return ret;
Keerthy5e7a0ce2017-07-20 15:12:17 +0530282
David Brownelldce11152008-09-07 23:41:04 -0700283 return 0;
284}
David Brownelldce11152008-09-07 23:41:04 -0700285
286/*--------------------------------------------------------------------------*/
287/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100288 * We expect irqs will normally be set up as input pins, but they can also be
289 * used as output pins ... which is convenient for testing.
290 *
David Brownell474dad52008-12-07 11:46:23 -0800291 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700292 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100293 *
David Brownell474dad52008-12-07 11:46:23 -0800294 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100295 * serve as EDMA event triggers.
296 */
297
Lennert Buytenhek23265442010-11-29 10:27:27 +0100298static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100299{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200300 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Keerthy36c05512019-06-05 13:32:57 +0530301 uintptr_t mask = (uintptr_t)irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100302
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530303 writel_relaxed(mask, &g->clr_falling);
304 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100305}
306
Lennert Buytenhek23265442010-11-29 10:27:27 +0100307static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100308{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200309 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Keerthy36c05512019-06-05 13:32:57 +0530310 uintptr_t mask = (uintptr_t)irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100311 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100312
David Brownelldf4aab42009-05-04 13:14:27 -0700313 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
314 if (!status)
315 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
316
317 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530318 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700319 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530320 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100321}
322
Lennert Buytenhek23265442010-11-29 10:27:27 +0100323static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100324{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100325 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
326 return -EINVAL;
327
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100328 return 0;
329}
330
331static struct irq_chip gpio_irqchip = {
332 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100333 .irq_enable = gpio_irq_enable,
334 .irq_disable = gpio_irq_disable,
335 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100336 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100337};
338
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200339static void gpio_irq_handler(struct irq_desc *desc)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100340{
Thomas Gleixner74164012011-06-06 11:51:43 +0200341 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100342 u32 mask = 0xffff;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530343 int bank_num;
Ido Yarivf299bb92011-07-12 00:03:11 +0300344 struct davinci_gpio_controller *d;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530345 struct davinci_gpio_irq_data *irqdata;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100346
Keerthyb5cf3fd2017-01-13 09:50:12 +0530347 irqdata = (struct davinci_gpio_irq_data *)irq_desc_get_handler_data(desc);
348 bank_num = irqdata->bank_num;
349 g = irqdata->regs;
350 d = irqdata->chip;
Thomas Gleixner74164012011-06-06 11:51:43 +0200351
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100352 /* we only care about one bank */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530353 if ((bank_num % 2) == 1)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100354 mask <<= 16;
355
356 /* temporarily mask (level sensitive) parent IRQ */
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200357 chained_irq_enter(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100358 while (1) {
359 u32 status;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530360 int bit;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530361 irq_hw_number_t hw_irq;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100362
363 /* ack any irqs */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530364 status = readl_relaxed(&g->intstat) & mask;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100365 if (!status)
366 break;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530367 writel_relaxed(status, &g->intstat);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100368
369 /* now demux them to the right lowlevel handler */
Ido Yarivf299bb92011-07-12 00:03:11 +0300370
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100371 while (status) {
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530372 bit = __ffs(status);
373 status &= ~BIT(bit);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530374 /* Max number of gpios per controller is 144 so
375 * hw_irq will be in [0..143]
376 */
377 hw_irq = (bank_num / 2) * 32 + bit;
378
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530379 generic_handle_irq(
Keerthyb5cf3fd2017-01-13 09:50:12 +0530380 irq_find_mapping(d->irq_domain, hw_irq));
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100381 }
382 }
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200383 chained_irq_exit(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100384 /* now it may re-trigger */
385}
386
David Brownell7a360712009-06-25 17:01:31 -0700387static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset)
388{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100389 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700390
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200391 if (d->irq_domain)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530392 return irq_create_mapping(d->irq_domain, offset);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200393 else
394 return -ENXIO;
David Brownell7a360712009-06-25 17:01:31 -0700395}
396
397static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
398{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100399 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700400
Philip Avinash131a10a2013-08-18 10:48:57 +0530401 /*
402 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700403 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
404 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530405 if (offset < d->gpio_unbanked)
Keerthyeb3744a2018-06-13 09:10:37 +0530406 return d->irqs[offset];
David Brownell7a360712009-06-25 17:01:31 -0700407 else
408 return -ENODEV;
409}
410
Sekhar Noriab2dde92012-03-11 18:16:11 +0530411static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700412{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530413 struct davinci_gpio_controller *d;
414 struct davinci_gpio_regs __iomem *g;
Keerthyeb3744a2018-06-13 09:10:37 +0530415 u32 mask, i;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530416
Jiang Liuc16edb82015-06-01 16:05:19 +0800417 d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data);
Keerthy7f8e2a82017-11-10 16:43:17 +0530418 g = (struct davinci_gpio_regs __iomem *)d->regs[0];
Keerthyeb3744a2018-06-13 09:10:37 +0530419 for (i = 0; i < MAX_INT_PER_BANK; i++)
420 if (data->irq == d->irqs[i])
421 break;
422
423 if (i == MAX_INT_PER_BANK)
424 return -EINVAL;
425
426 mask = __gpio_mask(i);
David Brownell7a360712009-06-25 17:01:31 -0700427
428 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
429 return -EINVAL;
430
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530431 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700432 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530433 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700434 ? &g->set_rising : &g->clr_rising);
435
436 return 0;
437}
438
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530439static int
440davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
441 irq_hw_number_t hw)
442{
Keerthy8f7cf8c2017-01-17 21:49:11 +0530443 struct davinci_gpio_controller *chips =
444 (struct davinci_gpio_controller *)d->host_data;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530445 struct davinci_gpio_regs __iomem *g = chips->regs[hw / 32];
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530446
447 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
448 "davinci_gpio");
449 irq_set_irq_type(irq, IRQ_TYPE_NONE);
450 irq_set_chip_data(irq, (__force void *)g);
Keerthy36c05512019-06-05 13:32:57 +0530451 irq_set_handler_data(irq, (void *)(uintptr_t)__gpio_mask(hw));
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530452
453 return 0;
454}
455
456static const struct irq_domain_ops davinci_gpio_irq_ops = {
457 .map = davinci_gpio_irq_map,
458 .xlate = irq_domain_xlate_onetwocell,
459};
460
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200461static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq)
462{
463 static struct irq_chip_type gpio_unbanked;
464
Geliang Tangccdbddf2015-12-30 22:16:38 +0800465 gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq));
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200466
467 return &gpio_unbanked.chip;
468};
469
470static struct irq_chip *keystone_gpio_get_irq_chip(unsigned int irq)
471{
472 static struct irq_chip gpio_unbanked;
473
474 gpio_unbanked = *irq_get_chip(irq);
475 return &gpio_unbanked;
476};
477
478static const struct of_device_id davinci_gpio_ids[];
479
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100480/*
David Brownell474dad52008-12-07 11:46:23 -0800481 * NOTE: for suspend/resume, probably best to make a platform_device with
482 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100483 * calls ... so if no gpios are wakeup events the clock can be disabled,
484 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800485 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100486 */
487
Keerthyeb3744a2018-06-13 09:10:37 +0530488static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100489{
Alexander Shiyan58c0f5a2014-02-15 17:12:05 +0400490 unsigned gpio, bank;
491 int irq;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530492 int ret;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100493 struct clk *clk;
David Brownell474dad52008-12-07 11:46:23 -0800494 u32 binten = 0;
Keerthyc1d013a2018-06-13 09:10:36 +0530495 unsigned ngpio;
KV Sujith118150f2013-08-18 10:48:58 +0530496 struct device *dev = &pdev->dev;
KV Sujith118150f2013-08-18 10:48:58 +0530497 struct davinci_gpio_controller *chips = platform_get_drvdata(pdev);
498 struct davinci_gpio_platform_data *pdata = dev->platform_data;
499 struct davinci_gpio_regs __iomem *g;
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200500 struct irq_domain *irq_domain = NULL;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200501 const struct of_device_id *match;
502 struct irq_chip *irq_chip;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530503 struct davinci_gpio_irq_data *irqdata;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200504 gpio_get_irq_chip_cb_t gpio_get_irq_chip;
505
506 /*
507 * Use davinci_gpio_get_irq_chip by default to handle non DT cases
508 */
509 gpio_get_irq_chip = davinci_gpio_get_irq_chip;
510 match = of_match_device(of_match_ptr(davinci_gpio_ids),
511 dev);
512 if (match)
513 gpio_get_irq_chip = (gpio_get_irq_chip_cb_t)match->data;
David Brownell474dad52008-12-07 11:46:23 -0800514
KV Sujith118150f2013-08-18 10:48:58 +0530515 ngpio = pdata->ngpio;
KV Sujith118150f2013-08-18 10:48:58 +0530516
517 clk = devm_clk_get(dev, "gpio");
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100518 if (IS_ERR(clk)) {
Keerthy1a9ef902017-07-20 15:12:18 +0530519 dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800520 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100521 }
Keerthyeb3744a2018-06-13 09:10:37 +0530522
Arvind Yadav6dc00482017-05-23 14:48:57 +0530523 ret = clk_prepare_enable(clk);
524 if (ret)
525 return ret;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100526
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200527 if (!pdata->gpio_unbanked) {
Bartosz Golaszewskia1a3c2d2017-03-04 17:23:36 +0100528 irq = devm_irq_alloc_descs(dev, -1, 0, ngpio, 0);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200529 if (irq < 0) {
530 dev_err(dev, "Couldn't allocate IRQ numbers\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530531 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200532 return irq;
533 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530534
Keerthy310a7e62016-01-28 19:08:50 +0530535 irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0,
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200536 &davinci_gpio_irq_ops,
537 chips);
538 if (!irq_domain) {
539 dev_err(dev, "Couldn't register an IRQ domain\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530540 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200541 return -ENODEV;
542 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530543 }
544
Philip Avinash131a10a2013-08-18 10:48:57 +0530545 /*
546 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700547 * banked IRQs. Having GPIOs in the first GPIO bank use direct
548 * IRQs, while the others use banked IRQs, would need some setup
549 * tweaks to recognize hardware which can do that.
550 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530551 chips->chip.to_irq = gpio_to_irq_banked;
552 chips->irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700553
554 /*
555 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
556 * controller only handling trigger modes. We currently assume no
557 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
558 */
KV Sujith118150f2013-08-18 10:48:58 +0530559 if (pdata->gpio_unbanked) {
David Brownell7a360712009-06-25 17:01:31 -0700560 /* pass "bank 0" GPIO IRQs to AINTC */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530561 chips->chip.to_irq = gpio_to_irq_unbanked;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530562 chips->gpio_unbanked = pdata->gpio_unbanked;
Vitaly Andrianov3685bbc2015-07-02 14:31:30 -0400563 binten = GENMASK(pdata->gpio_unbanked / 16, 0);
David Brownell7a360712009-06-25 17:01:31 -0700564
565 /* AINTC handles mask/unmask; GPIO handles triggering */
Keerthyeb3744a2018-06-13 09:10:37 +0530566 irq = chips->irqs[0];
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200567 irq_chip = gpio_get_irq_chip(irq);
568 irq_chip->name = "GPIO-AINTC";
569 irq_chip->irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700570
571 /* default trigger: both edges */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530572 g = chips->regs[0];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530573 writel_relaxed(~0, &g->set_falling);
574 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700575
576 /* set the direct IRQs up to use that irqchip */
Keerthyeb3744a2018-06-13 09:10:37 +0530577 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++) {
578 irq_set_chip(chips->irqs[gpio], irq_chip);
579 irq_set_handler_data(chips->irqs[gpio], chips);
580 irq_set_status_flags(chips->irqs[gpio],
581 IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700582 }
583
584 goto done;
585 }
586
587 /*
588 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
589 * then chain through our own handler.
590 */
Keerthyeb3744a2018-06-13 09:10:37 +0530591 for (gpio = 0, bank = 0; gpio < ngpio; bank++, gpio += 16) {
Keerthy8f7cf8c2017-01-17 21:49:11 +0530592 /* disabled by default, enabled only as needed
593 * There are register sets for 32 GPIOs. 2 banks of 16
594 * GPIOs are covered by each set of registers hence divide by 2
595 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530596 g = chips->regs[bank / 2];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530597 writel_relaxed(~0, &g->clr_falling);
598 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100599
Ido Yarivf299bb92011-07-12 00:03:11 +0300600 /*
601 * Each chip handles 32 gpios, and each irq bank consists of 16
602 * gpio irqs. Pass the irq bank's corresponding controller to
603 * the chained irq handler.
604 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530605 irqdata = devm_kzalloc(&pdev->dev,
606 sizeof(struct
607 davinci_gpio_irq_data),
608 GFP_KERNEL);
Arvind Yadav6dc00482017-05-23 14:48:57 +0530609 if (!irqdata) {
610 clk_disable_unprepare(clk);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530611 return -ENOMEM;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530612 }
Keerthyb5cf3fd2017-01-13 09:50:12 +0530613
614 irqdata->regs = g;
615 irqdata->bank_num = bank;
616 irqdata->chip = chips;
617
Keerthyeb3744a2018-06-13 09:10:37 +0530618 irq_set_chained_handler_and_data(chips->irqs[bank],
619 gpio_irq_handler, irqdata);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100620
David Brownell474dad52008-12-07 11:46:23 -0800621 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100622 }
623
David Brownell7a360712009-06-25 17:01:31 -0700624done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530625 /*
626 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100627 * bits be set/cleared dynamically.
628 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530629 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100630
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100631 return 0;
632}
KV Sujith118150f2013-08-18 10:48:58 +0530633
KV Sujithc7708442013-11-21 23:45:29 +0530634static const struct of_device_id davinci_gpio_ids[] = {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200635 { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip},
Keerthy6a4d8b62019-06-05 13:32:58 +0530636 { .compatible = "ti,am654-gpio", keystone_gpio_get_irq_chip},
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200637 { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip},
KV Sujithc7708442013-11-21 23:45:29 +0530638 { /* sentinel */ },
639};
640MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
KV Sujithc7708442013-11-21 23:45:29 +0530641
KV Sujith118150f2013-08-18 10:48:58 +0530642static struct platform_driver davinci_gpio_driver = {
643 .probe = davinci_gpio_probe,
644 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530645 .name = "davinci_gpio",
KV Sujithc7708442013-11-21 23:45:29 +0530646 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530647 },
648};
649
650/**
651 * GPIO driver registration needs to be done before machine_init functions
652 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
653 */
654static int __init davinci_gpio_drv_reg(void)
655{
656 return platform_driver_register(&davinci_gpio_driver);
657}
658postcore_initcall(davinci_gpio_drv_reg);