blob: 987126c4c6f611630d35222e6577d1bc80c10281 [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 */
Linus Walleij7220c432018-01-14 02:05:38 +010012#include <linux/gpio/driver.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>
David Lechner3c87d7c2018-01-21 17:09:40 -060023#include <linux/pinctrl/consumer.h>
KV Sujith118150f2013-08-18 10:48:58 +053024#include <linux/platform_device.h>
25#include <linux/platform_data/gpio-davinci.h>
Grygorii Strashko0d978eb2013-11-26 21:40:09 +020026#include <linux/irqchip/chained_irq.h>
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010027
Cyril Chemparathyc12f4152010-05-01 18:37:53 -040028struct davinci_gpio_regs {
29 u32 dir;
30 u32 out_data;
31 u32 set_data;
32 u32 clr_data;
33 u32 in_data;
34 u32 set_rising;
35 u32 clr_rising;
36 u32 set_falling;
37 u32 clr_falling;
38 u32 intstat;
39};
40
Grygorii Strashko0c6feb02014-02-13 17:58:45 +020041typedef struct irq_chip *(*gpio_get_irq_chip_cb_t)(unsigned int irq);
42
Philip Avinash131a10a2013-08-18 10:48:57 +053043#define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */
Axel Haslame0275032016-11-03 12:34:10 +010044#define MAX_LABEL_SIZE 20
Philip Avinash131a10a2013-08-18 10:48:57 +053045
Cyril Chemparathyb8d44292010-05-07 17:06:32 -040046static void __iomem *gpio_base;
Keerthy8f7cf8c2017-01-17 21:49:11 +053047static unsigned int offset_array[5] = {0x10, 0x38, 0x60, 0x88, 0xb0};
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010048
Thomas Gleixner1765d672015-07-13 01:18:56 +020049static inline struct davinci_gpio_regs __iomem *irq2regs(struct irq_data *d)
Kevin Hilman21ce8732010-02-25 16:49:56 -080050{
Cyril Chemparathy99e9e522010-05-01 18:37:52 -040051 struct davinci_gpio_regs __iomem *g;
Kevin Hilman21ce8732010-02-25 16:49:56 -080052
Thomas Gleixner1765d672015-07-13 01:18:56 +020053 g = (__force struct davinci_gpio_regs __iomem *)irq_data_get_irq_chip_data(d);
Kevin Hilman21ce8732010-02-25 16:49:56 -080054
55 return g;
56}
57
KV Sujith118150f2013-08-18 10:48:58 +053058static int davinci_gpio_irq_setup(struct platform_device *pdev);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010059
60/*--------------------------------------------------------------------------*/
61
Cyril Chemparathy5b3a05c2010-05-01 18:38:27 -040062/* board setup code *MUST* setup pinmux and enable the GPIO clock. */
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040063static inline int __davinci_direction(struct gpio_chip *chip,
64 unsigned offset, bool out, int value)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010065{
Linus Walleij72a1ca22015-12-04 16:25:04 +010066 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +053067 struct davinci_gpio_regs __iomem *g;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040068 unsigned long flags;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010069 u32 temp;
Keerthyb5cf3fd2017-01-13 09:50:12 +053070 int bank = offset / 32;
71 u32 mask = __gpio_mask(offset);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010072
Keerthyb5cf3fd2017-01-13 09:50:12 +053073 g = d->regs[bank];
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040074 spin_lock_irqsave(&d->lock, flags);
Lad, Prabhakar388291c2013-12-11 23:22:07 +053075 temp = readl_relaxed(&g->dir);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040076 if (out) {
77 temp &= ~mask;
Lad, Prabhakar388291c2013-12-11 23:22:07 +053078 writel_relaxed(mask, value ? &g->set_data : &g->clr_data);
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040079 } else {
80 temp |= mask;
81 }
Lad, Prabhakar388291c2013-12-11 23:22:07 +053082 writel_relaxed(temp, &g->dir);
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -040083 spin_unlock_irqrestore(&d->lock, flags);
David Brownelldce11152008-09-07 23:41:04 -070084
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010085 return 0;
86}
Vladimir Barinov3d9edf02007-07-10 13:03:43 +010087
Cyril Chemparathyba4a9842010-05-01 18:37:51 -040088static int davinci_direction_in(struct gpio_chip *chip, unsigned offset)
89{
90 return __davinci_direction(chip, offset, false, 0);
91}
92
93static int
94davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value)
95{
96 return __davinci_direction(chip, offset, true, value);
97}
98
David Brownelldce11152008-09-07 23:41:04 -070099/*
100 * Read the pin's value (works even if it's set up as output);
101 * returns zero/nonzero.
102 *
103 * Note that changes are synched to the GPIO clock, so reading values back
104 * right after you've set them may give old values.
105 */
106static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100107{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100108 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530109 struct davinci_gpio_regs __iomem *g;
110 int bank = offset / 32;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100111
Keerthyb5cf3fd2017-01-13 09:50:12 +0530112 g = d->regs[bank];
113
114 return !!(__gpio_mask(offset) & readl_relaxed(&g->in_data));
David Brownelldce11152008-09-07 23:41:04 -0700115}
116
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100117/*
David Brownelldce11152008-09-07 23:41:04 -0700118 * Assuming the pin is muxed as a gpio output, set its output value.
119 */
120static void
121davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
122{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100123 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530124 struct davinci_gpio_regs __iomem *g;
125 int bank = offset / 32;
David Brownelldce11152008-09-07 23:41:04 -0700126
Keerthyb5cf3fd2017-01-13 09:50:12 +0530127 g = d->regs[bank];
128
129 writel_relaxed(__gpio_mask(offset),
130 value ? &g->set_data : &g->clr_data);
David Brownelldce11152008-09-07 23:41:04 -0700131}
132
KV Sujithc7708442013-11-21 23:45:29 +0530133static struct davinci_gpio_platform_data *
134davinci_gpio_get_pdata(struct platform_device *pdev)
135{
136 struct device_node *dn = pdev->dev.of_node;
137 struct davinci_gpio_platform_data *pdata;
138 int ret;
139 u32 val;
140
141 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
Nizam Haiderab128af2015-11-23 20:53:18 +0530142 return dev_get_platdata(&pdev->dev);
KV Sujithc7708442013-11-21 23:45:29 +0530143
144 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
145 if (!pdata)
146 return NULL;
147
148 ret = of_property_read_u32(dn, "ti,ngpio", &val);
149 if (ret)
150 goto of_err;
151
152 pdata->ngpio = val;
153
154 ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val);
155 if (ret)
156 goto of_err;
157
158 pdata->gpio_unbanked = val;
159
160 return pdata;
161
162of_err:
163 dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret);
164 return NULL;
165}
166
KV Sujith118150f2013-08-18 10:48:58 +0530167static int davinci_gpio_probe(struct platform_device *pdev)
David Brownelldce11152008-09-07 23:41:04 -0700168{
Keerthy8e110472017-01-17 21:49:14 +0530169 static int ctrl_num, bank_base;
Keerthy8327e1b2017-07-20 15:12:16 +0530170 int gpio, bank, ret = 0;
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530171 unsigned ngpio, nbank;
KV Sujith118150f2013-08-18 10:48:58 +0530172 struct davinci_gpio_controller *chips;
173 struct davinci_gpio_platform_data *pdata;
KV Sujith118150f2013-08-18 10:48:58 +0530174 struct device *dev = &pdev->dev;
175 struct resource *res;
Axel Haslame0275032016-11-03 12:34:10 +0100176 char label[MAX_LABEL_SIZE];
David Brownelldce11152008-09-07 23:41:04 -0700177
KV Sujithc7708442013-11-21 23:45:29 +0530178 pdata = davinci_gpio_get_pdata(pdev);
KV Sujith118150f2013-08-18 10:48:58 +0530179 if (!pdata) {
180 dev_err(dev, "No platform data found\n");
181 return -EINVAL;
182 }
Cyril Chemparathy686b6342010-05-01 18:37:54 -0400183
KV Sujithc7708442013-11-21 23:45:29 +0530184 dev->platform_data = pdata;
185
Mark A. Greera9949552009-04-15 12:40:35 -0700186 /*
187 * The gpio banks conceptually expose a segmented bitmap,
David Brownell474dad52008-12-07 11:46:23 -0800188 * and "ngpio" is one more than the largest zero-based
189 * bit index that's valid.
190 */
KV Sujith118150f2013-08-18 10:48:58 +0530191 ngpio = pdata->ngpio;
Mark A. Greera9949552009-04-15 12:40:35 -0700192 if (ngpio == 0) {
KV Sujith118150f2013-08-18 10:48:58 +0530193 dev_err(dev, "How many GPIOs?\n");
David Brownell474dad52008-12-07 11:46:23 -0800194 return -EINVAL;
195 }
196
Grygorii Strashkoc21d5002013-11-21 17:34:35 +0200197 if (WARN_ON(ARCH_NR_GPIOS < ngpio))
198 ngpio = ARCH_NR_GPIOS;
David Brownell474dad52008-12-07 11:46:23 -0800199
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530200 nbank = DIV_ROUND_UP(ngpio, 32);
KV Sujith118150f2013-08-18 10:48:58 +0530201 chips = devm_kzalloc(dev,
Lokesh Vutla6ec9249a2016-01-28 19:08:51 +0530202 nbank * sizeof(struct davinci_gpio_controller),
KV Sujith118150f2013-08-18 10:48:58 +0530203 GFP_KERNEL);
Jingoo Han9ea9363c2014-04-29 17:33:26 +0900204 if (!chips)
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400205 return -ENOMEM;
KV Sujith118150f2013-08-18 10:48:58 +0530206
207 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
KV Sujith118150f2013-08-18 10:48:58 +0530208 gpio_base = devm_ioremap_resource(dev, res);
209 if (IS_ERR(gpio_base))
210 return PTR_ERR(gpio_base);
Cyril Chemparathyb8d44292010-05-07 17:06:32 -0400211
Keerthyb5cf3fd2017-01-13 09:50:12 +0530212 snprintf(label, MAX_LABEL_SIZE, "davinci_gpio.%d", ctrl_num++);
213 chips->chip.label = devm_kstrdup(dev, label, GFP_KERNEL);
214 if (!chips->chip.label)
Axel Haslame0275032016-11-03 12:34:10 +0100215 return -ENOMEM;
David Brownelldce11152008-09-07 23:41:04 -0700216
Keerthyb5cf3fd2017-01-13 09:50:12 +0530217 chips->chip.direction_input = davinci_direction_in;
218 chips->chip.get = davinci_gpio_get;
219 chips->chip.direction_output = davinci_direction_out;
220 chips->chip.set = davinci_gpio_set;
David Brownelldce11152008-09-07 23:41:04 -0700221
Keerthyb5cf3fd2017-01-13 09:50:12 +0530222 chips->chip.ngpio = ngpio;
Keerthy8e110472017-01-17 21:49:14 +0530223 chips->chip.base = bank_base;
David Brownelldce11152008-09-07 23:41:04 -0700224
KV Sujithc7708442013-11-21 23:45:29 +0530225#ifdef CONFIG_OF_GPIO
Keerthyb5cf3fd2017-01-13 09:50:12 +0530226 chips->chip.of_gpio_n_cells = 2;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530227 chips->chip.parent = dev;
228 chips->chip.of_node = dev->of_node;
David Lechner3c87d7c2018-01-21 17:09:40 -0600229
230 if (of_property_read_bool(dev->of_node, "gpio-ranges")) {
231 chips->chip.request = gpiochip_generic_request;
232 chips->chip.free = gpiochip_generic_free;
233 }
KV Sujithc7708442013-11-21 23:45:29 +0530234#endif
Keerthyb5cf3fd2017-01-13 09:50:12 +0530235 spin_lock_init(&chips->lock);
Keerthy8e110472017-01-17 21:49:14 +0530236 bank_base += ngpio;
Cyril Chemparathyb27b6d02010-05-01 18:37:55 -0400237
Keerthyb5cf3fd2017-01-13 09:50:12 +0530238 for (gpio = 0, bank = 0; gpio < ngpio; gpio += 32, bank++)
239 chips->regs[bank] = gpio_base + offset_array[bank];
David Brownelldce11152008-09-07 23:41:04 -0700240
Keerthy8327e1b2017-07-20 15:12:16 +0530241 ret = devm_gpiochip_add_data(dev, &chips->chip, chips);
242 if (ret)
243 goto err;
244
KV Sujith118150f2013-08-18 10:48:58 +0530245 platform_set_drvdata(pdev, chips);
Keerthy5e7a0ce2017-07-20 15:12:17 +0530246 ret = davinci_gpio_irq_setup(pdev);
247 if (ret)
248 goto err;
249
David Brownelldce11152008-09-07 23:41:04 -0700250 return 0;
Keerthy8327e1b2017-07-20 15:12:16 +0530251
252err:
253 /* Revert the static variable increments */
254 ctrl_num--;
255 bank_base -= ngpio;
256
257 return ret;
David Brownelldce11152008-09-07 23:41:04 -0700258}
David Brownelldce11152008-09-07 23:41:04 -0700259
260/*--------------------------------------------------------------------------*/
261/*
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100262 * We expect irqs will normally be set up as input pins, but they can also be
263 * used as output pins ... which is convenient for testing.
264 *
David Brownell474dad52008-12-07 11:46:23 -0800265 * NOTE: The first few GPIOs also have direct INTC hookups in addition
David Brownell7a360712009-06-25 17:01:31 -0700266 * to their GPIOBNK0 irq, with a bit less overhead.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100267 *
David Brownell474dad52008-12-07 11:46:23 -0800268 * All those INTC hookups (direct, plus several IRQ banks) can also
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100269 * serve as EDMA event triggers.
270 */
271
Lennert Buytenhek23265442010-11-29 10:27:27 +0100272static void gpio_irq_disable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100273{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200274 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100275 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100276
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530277 writel_relaxed(mask, &g->clr_falling);
278 writel_relaxed(mask, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100279}
280
Lennert Buytenhek23265442010-11-29 10:27:27 +0100281static void gpio_irq_enable(struct irq_data *d)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100282{
Thomas Gleixner1765d672015-07-13 01:18:56 +0200283 struct davinci_gpio_regs __iomem *g = irq2regs(d);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100284 u32 mask = (u32) irq_data_get_irq_handler_data(d);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100285 unsigned status = irqd_get_trigger_type(d);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100286
David Brownelldf4aab42009-05-04 13:14:27 -0700287 status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
288 if (!status)
289 status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING;
290
291 if (status & IRQ_TYPE_EDGE_FALLING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530292 writel_relaxed(mask, &g->set_falling);
David Brownelldf4aab42009-05-04 13:14:27 -0700293 if (status & IRQ_TYPE_EDGE_RISING)
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530294 writel_relaxed(mask, &g->set_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100295}
296
Lennert Buytenhek23265442010-11-29 10:27:27 +0100297static int gpio_irq_type(struct irq_data *d, unsigned trigger)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100298{
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100299 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
300 return -EINVAL;
301
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100302 return 0;
303}
304
305static struct irq_chip gpio_irqchip = {
306 .name = "GPIO",
Lennert Buytenhek23265442010-11-29 10:27:27 +0100307 .irq_enable = gpio_irq_enable,
308 .irq_disable = gpio_irq_disable,
309 .irq_set_type = gpio_irq_type,
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100310 .flags = IRQCHIP_SET_TYPE_MASKED,
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100311};
312
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200313static void gpio_irq_handler(struct irq_desc *desc)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100314{
Thomas Gleixner74164012011-06-06 11:51:43 +0200315 struct davinci_gpio_regs __iomem *g;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100316 u32 mask = 0xffff;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530317 int bank_num;
Ido Yarivf299bb92011-07-12 00:03:11 +0300318 struct davinci_gpio_controller *d;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530319 struct davinci_gpio_irq_data *irqdata;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100320
Keerthyb5cf3fd2017-01-13 09:50:12 +0530321 irqdata = (struct davinci_gpio_irq_data *)irq_desc_get_handler_data(desc);
322 bank_num = irqdata->bank_num;
323 g = irqdata->regs;
324 d = irqdata->chip;
Thomas Gleixner74164012011-06-06 11:51:43 +0200325
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100326 /* we only care about one bank */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530327 if ((bank_num % 2) == 1)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100328 mask <<= 16;
329
330 /* temporarily mask (level sensitive) parent IRQ */
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200331 chained_irq_enter(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100332 while (1) {
333 u32 status;
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530334 int bit;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530335 irq_hw_number_t hw_irq;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100336
337 /* ack any irqs */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530338 status = readl_relaxed(&g->intstat) & mask;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100339 if (!status)
340 break;
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530341 writel_relaxed(status, &g->intstat);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100342
343 /* now demux them to the right lowlevel handler */
Ido Yarivf299bb92011-07-12 00:03:11 +0300344
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100345 while (status) {
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530346 bit = __ffs(status);
347 status &= ~BIT(bit);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530348 /* Max number of gpios per controller is 144 so
349 * hw_irq will be in [0..143]
350 */
351 hw_irq = (bank_num / 2) * 32 + bit;
352
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530353 generic_handle_irq(
Keerthyb5cf3fd2017-01-13 09:50:12 +0530354 irq_find_mapping(d->irq_domain, hw_irq));
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100355 }
356 }
Grygorii Strashko0d978eb2013-11-26 21:40:09 +0200357 chained_irq_exit(irq_desc_get_chip(desc), desc);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100358 /* now it may re-trigger */
359}
360
David Brownell7a360712009-06-25 17:01:31 -0700361static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset)
362{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100363 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700364
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200365 if (d->irq_domain)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530366 return irq_create_mapping(d->irq_domain, offset);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200367 else
368 return -ENXIO;
David Brownell7a360712009-06-25 17:01:31 -0700369}
370
371static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset)
372{
Linus Walleij72a1ca22015-12-04 16:25:04 +0100373 struct davinci_gpio_controller *d = gpiochip_get_data(chip);
David Brownell7a360712009-06-25 17:01:31 -0700374
Philip Avinash131a10a2013-08-18 10:48:57 +0530375 /*
376 * NOTE: we assume for now that only irqs in the first gpio_chip
David Brownell7a360712009-06-25 17:01:31 -0700377 * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs).
378 */
Lad, Prabhakar34af1ab2013-11-08 12:15:55 +0530379 if (offset < d->gpio_unbanked)
Keerthyb5cf3fd2017-01-13 09:50:12 +0530380 return d->base_irq + offset;
David Brownell7a360712009-06-25 17:01:31 -0700381 else
382 return -ENODEV;
383}
384
Sekhar Noriab2dde92012-03-11 18:16:11 +0530385static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)
David Brownell7a360712009-06-25 17:01:31 -0700386{
Sekhar Noriab2dde92012-03-11 18:16:11 +0530387 struct davinci_gpio_controller *d;
388 struct davinci_gpio_regs __iomem *g;
Sekhar Noriab2dde92012-03-11 18:16:11 +0530389 u32 mask;
390
Jiang Liuc16edb82015-06-01 16:05:19 +0800391 d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data);
Keerthy7f8e2a82017-11-10 16:43:17 +0530392 g = (struct davinci_gpio_regs __iomem *)d->regs[0];
Keerthyb5cf3fd2017-01-13 09:50:12 +0530393 mask = __gpio_mask(data->irq - d->base_irq);
David Brownell7a360712009-06-25 17:01:31 -0700394
395 if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
396 return -EINVAL;
397
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530398 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)
David Brownell7a360712009-06-25 17:01:31 -0700399 ? &g->set_falling : &g->clr_falling);
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530400 writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)
David Brownell7a360712009-06-25 17:01:31 -0700401 ? &g->set_rising : &g->clr_rising);
402
403 return 0;
404}
405
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530406static int
407davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq,
408 irq_hw_number_t hw)
409{
Keerthy8f7cf8c2017-01-17 21:49:11 +0530410 struct davinci_gpio_controller *chips =
411 (struct davinci_gpio_controller *)d->host_data;
Keerthyb5cf3fd2017-01-13 09:50:12 +0530412 struct davinci_gpio_regs __iomem *g = chips->regs[hw / 32];
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530413
414 irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq,
415 "davinci_gpio");
416 irq_set_irq_type(irq, IRQ_TYPE_NONE);
417 irq_set_chip_data(irq, (__force void *)g);
418 irq_set_handler_data(irq, (void *)__gpio_mask(hw));
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530419
420 return 0;
421}
422
423static const struct irq_domain_ops davinci_gpio_irq_ops = {
424 .map = davinci_gpio_irq_map,
425 .xlate = irq_domain_xlate_onetwocell,
426};
427
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200428static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq)
429{
430 static struct irq_chip_type gpio_unbanked;
431
Geliang Tangccdbddf2015-12-30 22:16:38 +0800432 gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq));
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200433
434 return &gpio_unbanked.chip;
435};
436
437static struct irq_chip *keystone_gpio_get_irq_chip(unsigned int irq)
438{
439 static struct irq_chip gpio_unbanked;
440
441 gpio_unbanked = *irq_get_chip(irq);
442 return &gpio_unbanked;
443};
444
445static const struct of_device_id davinci_gpio_ids[];
446
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100447/*
David Brownell474dad52008-12-07 11:46:23 -0800448 * NOTE: for suspend/resume, probably best to make a platform_device with
449 * suspend_late/resume_resume calls hooking into results of the set_wake()
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100450 * calls ... so if no gpios are wakeup events the clock can be disabled,
451 * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0
David Brownell474dad52008-12-07 11:46:23 -0800452 * (dm6446) can be set appropriately for GPIOV33 pins.
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100453 */
454
KV Sujith118150f2013-08-18 10:48:58 +0530455static int davinci_gpio_irq_setup(struct platform_device *pdev)
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100456{
Alexander Shiyan58c0f5a2014-02-15 17:12:05 +0400457 unsigned gpio, bank;
458 int irq;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530459 int ret;
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)) {
Keerthy1a9ef902017-07-20 15:12:18 +0530499 dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk));
David Brownell474dad52008-12-07 11:46:23 -0800500 return PTR_ERR(clk);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100501 }
Arvind Yadav6dc00482017-05-23 14:48:57 +0530502 ret = clk_prepare_enable(clk);
503 if (ret)
504 return ret;
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100505
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200506 if (!pdata->gpio_unbanked) {
Bartosz Golaszewskia1a3c2d2017-03-04 17:23:36 +0100507 irq = devm_irq_alloc_descs(dev, -1, 0, ngpio, 0);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200508 if (irq < 0) {
509 dev_err(dev, "Couldn't allocate IRQ numbers\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530510 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200511 return irq;
512 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530513
Keerthy310a7e62016-01-28 19:08:50 +0530514 irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0,
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200515 &davinci_gpio_irq_ops,
516 chips);
517 if (!irq_domain) {
518 dev_err(dev, "Couldn't register an IRQ domain\n");
Arvind Yadav6dc00482017-05-23 14:48:57 +0530519 clk_disable_unprepare(clk);
Grygorii Strashko6075a8b2013-12-18 12:07:51 +0200520 return -ENODEV;
521 }
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530522 }
523
Philip Avinash131a10a2013-08-18 10:48:57 +0530524 /*
525 * Arrange gpio_to_irq() support, handling either direct IRQs or
David Brownell7a360712009-06-25 17:01:31 -0700526 * banked IRQs. Having GPIOs in the first GPIO bank use direct
527 * IRQs, while the others use banked IRQs, would need some setup
528 * tweaks to recognize hardware which can do that.
529 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530530 chips->chip.to_irq = gpio_to_irq_banked;
531 chips->irq_domain = irq_domain;
David Brownell7a360712009-06-25 17:01:31 -0700532
533 /*
534 * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO
535 * controller only handling trigger modes. We currently assume no
536 * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs.
537 */
KV Sujith118150f2013-08-18 10:48:58 +0530538 if (pdata->gpio_unbanked) {
David Brownell7a360712009-06-25 17:01:31 -0700539 /* pass "bank 0" GPIO IRQs to AINTC */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530540 chips->chip.to_irq = gpio_to_irq_unbanked;
541 chips->base_irq = bank_irq;
542 chips->gpio_unbanked = pdata->gpio_unbanked;
Vitaly Andrianov3685bbc2015-07-02 14:31:30 -0400543 binten = GENMASK(pdata->gpio_unbanked / 16, 0);
David Brownell7a360712009-06-25 17:01:31 -0700544
545 /* AINTC handles mask/unmask; GPIO handles triggering */
546 irq = bank_irq;
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200547 irq_chip = gpio_get_irq_chip(irq);
548 irq_chip->name = "GPIO-AINTC";
549 irq_chip->irq_set_type = gpio_irq_type_unbanked;
David Brownell7a360712009-06-25 17:01:31 -0700550
551 /* default trigger: both edges */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530552 g = chips->regs[0];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530553 writel_relaxed(~0, &g->set_falling);
554 writel_relaxed(~0, &g->set_rising);
David Brownell7a360712009-06-25 17:01:31 -0700555
556 /* set the direct IRQs up to use that irqchip */
KV Sujith118150f2013-08-18 10:48:58 +0530557 for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200558 irq_set_chip(irq, irq_chip);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530559 irq_set_handler_data(irq, chips);
Thomas Gleixner5093aec2011-03-24 12:47:04 +0100560 irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH);
David Brownell7a360712009-06-25 17:01:31 -0700561 }
562
563 goto done;
564 }
565
566 /*
567 * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we
568 * then chain through our own handler.
569 */
Lad, Prabhakar9211ff32013-11-21 23:45:27 +0530570 for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) {
Keerthy8f7cf8c2017-01-17 21:49:11 +0530571 /* disabled by default, enabled only as needed
572 * There are register sets for 32 GPIOs. 2 banks of 16
573 * GPIOs are covered by each set of registers hence divide by 2
574 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530575 g = chips->regs[bank / 2];
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530576 writel_relaxed(~0, &g->clr_falling);
577 writel_relaxed(~0, &g->clr_rising);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100578
Ido Yarivf299bb92011-07-12 00:03:11 +0300579 /*
580 * Each chip handles 32 gpios, and each irq bank consists of 16
581 * gpio irqs. Pass the irq bank's corresponding controller to
582 * the chained irq handler.
583 */
Keerthyb5cf3fd2017-01-13 09:50:12 +0530584 irqdata = devm_kzalloc(&pdev->dev,
585 sizeof(struct
586 davinci_gpio_irq_data),
587 GFP_KERNEL);
Arvind Yadav6dc00482017-05-23 14:48:57 +0530588 if (!irqdata) {
589 clk_disable_unprepare(clk);
Keerthyb5cf3fd2017-01-13 09:50:12 +0530590 return -ENOMEM;
Arvind Yadav6dc00482017-05-23 14:48:57 +0530591 }
Keerthyb5cf3fd2017-01-13 09:50:12 +0530592
593 irqdata->regs = g;
594 irqdata->bank_num = bank;
595 irqdata->chip = chips;
596
Thomas Gleixnerbdac2b62015-07-13 23:22:44 +0200597 irq_set_chained_handler_and_data(bank_irq, gpio_irq_handler,
Keerthyb5cf3fd2017-01-13 09:50:12 +0530598 irqdata);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100599
David Brownell474dad52008-12-07 11:46:23 -0800600 binten |= BIT(bank);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100601 }
602
David Brownell7a360712009-06-25 17:01:31 -0700603done:
Philip Avinash131a10a2013-08-18 10:48:57 +0530604 /*
605 * BINTEN -- per-bank interrupt enable. genirq would also let these
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100606 * bits be set/cleared dynamically.
607 */
Lad, Prabhakar388291c2013-12-11 23:22:07 +0530608 writel_relaxed(binten, gpio_base + BINTEN);
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100609
Vladimir Barinov3d9edf02007-07-10 13:03:43 +0100610 return 0;
611}
KV Sujith118150f2013-08-18 10:48:58 +0530612
KV Sujithc7708442013-11-21 23:45:29 +0530613#if IS_ENABLED(CONFIG_OF)
614static const struct of_device_id davinci_gpio_ids[] = {
Grygorii Strashko0c6feb02014-02-13 17:58:45 +0200615 { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip},
616 { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip},
KV Sujithc7708442013-11-21 23:45:29 +0530617 { /* sentinel */ },
618};
619MODULE_DEVICE_TABLE(of, davinci_gpio_ids);
620#endif
621
KV Sujith118150f2013-08-18 10:48:58 +0530622static struct platform_driver davinci_gpio_driver = {
623 .probe = davinci_gpio_probe,
624 .driver = {
KV Sujithc7708442013-11-21 23:45:29 +0530625 .name = "davinci_gpio",
KV Sujithc7708442013-11-21 23:45:29 +0530626 .of_match_table = of_match_ptr(davinci_gpio_ids),
KV Sujith118150f2013-08-18 10:48:58 +0530627 },
628};
629
630/**
631 * GPIO driver registration needs to be done before machine_init functions
632 * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall.
633 */
634static int __init davinci_gpio_drv_reg(void)
635{
636 return platform_driver_register(&davinci_gpio_driver);
637}
638postcore_initcall(davinci_gpio_drv_reg);