Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 1 | /* |
| 2 | * TI DaVinci GPIO Support |
| 3 | * |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 4 | * Copyright (c) 2006-2007 David Brownell |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 5 | * 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 King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 12 | #include <linux/gpio.h> |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 13 | #include <linux/errno.h> |
| 14 | #include <linux/kernel.h> |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 15 | #include <linux/clk.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/io.h> |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 18 | #include <linux/irq.h> |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 19 | #include <linux/irqdomain.h> |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 20 | #include <linux/module.h> |
| 21 | #include <linux/of.h> |
| 22 | #include <linux/of_device.h> |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/platform_data/gpio-davinci.h> |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 25 | #include <linux/irqchip/chained_irq.h> |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 26 | |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 27 | struct 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 Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 40 | typedef struct irq_chip *(*gpio_get_irq_chip_cb_t)(unsigned int irq); |
| 41 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 42 | #define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */ |
| 43 | |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 44 | static void __iomem *gpio_base; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 45 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 46 | static struct davinci_gpio_regs __iomem *gpio2regs(unsigned gpio) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 47 | { |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 48 | void __iomem *ptr; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 49 | |
| 50 | if (gpio < 32 * 1) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 51 | ptr = gpio_base + 0x10; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 52 | else if (gpio < 32 * 2) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 53 | ptr = gpio_base + 0x38; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 54 | else if (gpio < 32 * 3) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 55 | ptr = gpio_base + 0x60; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 56 | else if (gpio < 32 * 4) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 57 | ptr = gpio_base + 0x88; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 58 | else if (gpio < 32 * 5) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 59 | ptr = gpio_base + 0xb0; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 60 | else |
| 61 | ptr = NULL; |
| 62 | return ptr; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 63 | } |
| 64 | |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 65 | static inline struct davinci_gpio_regs __iomem *irq2regs(struct irq_data *d) |
Kevin Hilman | 21ce873 | 2010-02-25 16:49:56 -0800 | [diff] [blame] | 66 | { |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 67 | struct davinci_gpio_regs __iomem *g; |
Kevin Hilman | 21ce873 | 2010-02-25 16:49:56 -0800 | [diff] [blame] | 68 | |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 69 | g = (__force struct davinci_gpio_regs __iomem *)irq_data_get_irq_chip_data(d); |
Kevin Hilman | 21ce873 | 2010-02-25 16:49:56 -0800 | [diff] [blame] | 70 | |
| 71 | return g; |
| 72 | } |
| 73 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 74 | static int davinci_gpio_irq_setup(struct platform_device *pdev); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 75 | |
| 76 | /*--------------------------------------------------------------------------*/ |
| 77 | |
Cyril Chemparathy | 5b3a05c | 2010-05-01 18:38:27 -0400 | [diff] [blame] | 78 | /* board setup code *MUST* setup pinmux and enable the GPIO clock. */ |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 79 | static inline int __davinci_direction(struct gpio_chip *chip, |
| 80 | unsigned offset, bool out, int value) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 81 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 82 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 83 | struct davinci_gpio_regs __iomem *g = d->regs; |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 84 | unsigned long flags; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 85 | u32 temp; |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 86 | u32 mask = 1 << offset; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 87 | |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 88 | spin_lock_irqsave(&d->lock, flags); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 89 | temp = readl_relaxed(&g->dir); |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 90 | if (out) { |
| 91 | temp &= ~mask; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 92 | writel_relaxed(mask, value ? &g->set_data : &g->clr_data); |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 93 | } else { |
| 94 | temp |= mask; |
| 95 | } |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 96 | writel_relaxed(temp, &g->dir); |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 97 | spin_unlock_irqrestore(&d->lock, flags); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 98 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 99 | return 0; |
| 100 | } |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 101 | |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 102 | static int davinci_direction_in(struct gpio_chip *chip, unsigned offset) |
| 103 | { |
| 104 | return __davinci_direction(chip, offset, false, 0); |
| 105 | } |
| 106 | |
| 107 | static int |
| 108 | davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value) |
| 109 | { |
| 110 | return __davinci_direction(chip, offset, true, value); |
| 111 | } |
| 112 | |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 113 | /* |
| 114 | * Read the pin's value (works even if it's set up as output); |
| 115 | * returns zero/nonzero. |
| 116 | * |
| 117 | * Note that changes are synched to the GPIO clock, so reading values back |
| 118 | * right after you've set them may give old values. |
| 119 | */ |
| 120 | static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 121 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 122 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 123 | struct davinci_gpio_regs __iomem *g = d->regs; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 124 | |
Linus Walleij | 5b8d8fb | 2015-12-21 10:33:27 +0100 | [diff] [blame] | 125 | return !!((1 << offset) & readl_relaxed(&g->in_data)); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 128 | /* |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 129 | * Assuming the pin is muxed as a gpio output, set its output value. |
| 130 | */ |
| 131 | static void |
| 132 | davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 133 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 134 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 135 | struct davinci_gpio_regs __iomem *g = d->regs; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 136 | |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 137 | writel_relaxed((1 << offset), value ? &g->set_data : &g->clr_data); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 138 | } |
| 139 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 140 | static struct davinci_gpio_platform_data * |
| 141 | davinci_gpio_get_pdata(struct platform_device *pdev) |
| 142 | { |
| 143 | struct device_node *dn = pdev->dev.of_node; |
| 144 | struct davinci_gpio_platform_data *pdata; |
| 145 | int ret; |
| 146 | u32 val; |
| 147 | |
| 148 | if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node) |
Nizam Haider | ab128af | 2015-11-23 20:53:18 +0530 | [diff] [blame] | 149 | return dev_get_platdata(&pdev->dev); |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 150 | |
| 151 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 152 | if (!pdata) |
| 153 | return NULL; |
| 154 | |
| 155 | ret = of_property_read_u32(dn, "ti,ngpio", &val); |
| 156 | if (ret) |
| 157 | goto of_err; |
| 158 | |
| 159 | pdata->ngpio = val; |
| 160 | |
| 161 | ret = of_property_read_u32(dn, "ti,davinci-gpio-unbanked", &val); |
| 162 | if (ret) |
| 163 | goto of_err; |
| 164 | |
| 165 | pdata->gpio_unbanked = val; |
| 166 | |
| 167 | return pdata; |
| 168 | |
| 169 | of_err: |
| 170 | dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret); |
| 171 | return NULL; |
| 172 | } |
| 173 | |
Alexander Holler | 758afe4 | 2014-03-05 12:21:01 +0100 | [diff] [blame] | 174 | #ifdef CONFIG_OF_GPIO |
| 175 | static int davinci_gpio_of_xlate(struct gpio_chip *gc, |
| 176 | const struct of_phandle_args *gpiospec, |
| 177 | u32 *flags) |
| 178 | { |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 179 | struct davinci_gpio_controller *chips = dev_get_drvdata(gc->parent); |
| 180 | struct davinci_gpio_platform_data *pdata = dev_get_platdata(gc->parent); |
Alexander Holler | 758afe4 | 2014-03-05 12:21:01 +0100 | [diff] [blame] | 181 | |
| 182 | if (gpiospec->args[0] > pdata->ngpio) |
| 183 | return -EINVAL; |
| 184 | |
| 185 | if (gc != &chips[gpiospec->args[0] / 32].chip) |
| 186 | return -EINVAL; |
| 187 | |
| 188 | if (flags) |
| 189 | *flags = gpiospec->args[1]; |
| 190 | |
| 191 | return gpiospec->args[0] % 32; |
| 192 | } |
| 193 | #endif |
| 194 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 195 | static int davinci_gpio_probe(struct platform_device *pdev) |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 196 | { |
| 197 | int i, base; |
Lokesh Vutla | 6ec9249a | 2016-01-28 19:08:51 +0530 | [diff] [blame] | 198 | unsigned ngpio, nbank; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 199 | struct davinci_gpio_controller *chips; |
| 200 | struct davinci_gpio_platform_data *pdata; |
| 201 | struct davinci_gpio_regs __iomem *regs; |
| 202 | struct device *dev = &pdev->dev; |
| 203 | struct resource *res; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 204 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 205 | pdata = davinci_gpio_get_pdata(pdev); |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 206 | if (!pdata) { |
| 207 | dev_err(dev, "No platform data found\n"); |
| 208 | return -EINVAL; |
| 209 | } |
Cyril Chemparathy | 686b634 | 2010-05-01 18:37:54 -0400 | [diff] [blame] | 210 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 211 | dev->platform_data = pdata; |
| 212 | |
Mark A. Greer | a994955 | 2009-04-15 12:40:35 -0700 | [diff] [blame] | 213 | /* |
| 214 | * The gpio banks conceptually expose a segmented bitmap, |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 215 | * and "ngpio" is one more than the largest zero-based |
| 216 | * bit index that's valid. |
| 217 | */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 218 | ngpio = pdata->ngpio; |
Mark A. Greer | a994955 | 2009-04-15 12:40:35 -0700 | [diff] [blame] | 219 | if (ngpio == 0) { |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 220 | dev_err(dev, "How many GPIOs?\n"); |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 221 | return -EINVAL; |
| 222 | } |
| 223 | |
Grygorii Strashko | c21d500 | 2013-11-21 17:34:35 +0200 | [diff] [blame] | 224 | if (WARN_ON(ARCH_NR_GPIOS < ngpio)) |
| 225 | ngpio = ARCH_NR_GPIOS; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 226 | |
Lokesh Vutla | 6ec9249a | 2016-01-28 19:08:51 +0530 | [diff] [blame] | 227 | nbank = DIV_ROUND_UP(ngpio, 32); |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 228 | chips = devm_kzalloc(dev, |
Lokesh Vutla | 6ec9249a | 2016-01-28 19:08:51 +0530 | [diff] [blame] | 229 | nbank * sizeof(struct davinci_gpio_controller), |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 230 | GFP_KERNEL); |
Jingoo Han | 9ea9363c | 2014-04-29 17:33:26 +0900 | [diff] [blame] | 231 | if (!chips) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 232 | return -ENOMEM; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 233 | |
| 234 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 235 | gpio_base = devm_ioremap_resource(dev, res); |
| 236 | if (IS_ERR(gpio_base)) |
| 237 | return PTR_ERR(gpio_base); |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 238 | |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 239 | for (i = 0, base = 0; base < ngpio; i++, base += 32) { |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 240 | chips[i].chip.label = "DaVinci"; |
| 241 | |
| 242 | chips[i].chip.direction_input = davinci_direction_in; |
| 243 | chips[i].chip.get = davinci_gpio_get; |
| 244 | chips[i].chip.direction_output = davinci_direction_out; |
| 245 | chips[i].chip.set = davinci_gpio_set; |
| 246 | |
| 247 | chips[i].chip.base = base; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 248 | chips[i].chip.ngpio = ngpio - base; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 249 | if (chips[i].chip.ngpio > 32) |
| 250 | chips[i].chip.ngpio = 32; |
| 251 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 252 | #ifdef CONFIG_OF_GPIO |
Alexander Holler | 758afe4 | 2014-03-05 12:21:01 +0100 | [diff] [blame] | 253 | chips[i].chip.of_gpio_n_cells = 2; |
| 254 | chips[i].chip.of_xlate = davinci_gpio_of_xlate; |
Linus Walleij | 6ddbaed | 2015-12-04 14:13:59 +0100 | [diff] [blame] | 255 | chips[i].chip.parent = dev; |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 256 | chips[i].chip.of_node = dev->of_node; |
| 257 | #endif |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 258 | spin_lock_init(&chips[i].lock); |
| 259 | |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 260 | regs = gpio2regs(base); |
Nicholas Krause | d6f434e | 2016-02-02 19:17:59 -0500 | [diff] [blame] | 261 | if (!regs) |
| 262 | return -ENXIO; |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 263 | chips[i].regs = regs; |
| 264 | chips[i].set_data = ®s->set_data; |
| 265 | chips[i].clr_data = ®s->clr_data; |
| 266 | chips[i].in_data = ®s->in_data; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 267 | |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 268 | gpiochip_add_data(&chips[i].chip, &chips[i]); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 269 | } |
| 270 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 271 | platform_set_drvdata(pdev, chips); |
| 272 | davinci_gpio_irq_setup(pdev); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 273 | return 0; |
| 274 | } |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 275 | |
| 276 | /*--------------------------------------------------------------------------*/ |
| 277 | /* |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 278 | * We expect irqs will normally be set up as input pins, but they can also be |
| 279 | * used as output pins ... which is convenient for testing. |
| 280 | * |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 281 | * NOTE: The first few GPIOs also have direct INTC hookups in addition |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 282 | * to their GPIOBNK0 irq, with a bit less overhead. |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 283 | * |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 284 | * All those INTC hookups (direct, plus several IRQ banks) can also |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 285 | * serve as EDMA event triggers. |
| 286 | */ |
| 287 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 288 | static void gpio_irq_disable(struct irq_data *d) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 289 | { |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 290 | struct davinci_gpio_regs __iomem *g = irq2regs(d); |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 291 | u32 mask = (u32) irq_data_get_irq_handler_data(d); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 292 | |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 293 | writel_relaxed(mask, &g->clr_falling); |
| 294 | writel_relaxed(mask, &g->clr_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 295 | } |
| 296 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 297 | static void gpio_irq_enable(struct irq_data *d) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 298 | { |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 299 | struct davinci_gpio_regs __iomem *g = irq2regs(d); |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 300 | u32 mask = (u32) irq_data_get_irq_handler_data(d); |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 301 | unsigned status = irqd_get_trigger_type(d); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 302 | |
David Brownell | df4aab4 | 2009-05-04 13:14:27 -0700 | [diff] [blame] | 303 | status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING; |
| 304 | if (!status) |
| 305 | status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING; |
| 306 | |
| 307 | if (status & IRQ_TYPE_EDGE_FALLING) |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 308 | writel_relaxed(mask, &g->set_falling); |
David Brownell | df4aab4 | 2009-05-04 13:14:27 -0700 | [diff] [blame] | 309 | if (status & IRQ_TYPE_EDGE_RISING) |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 310 | writel_relaxed(mask, &g->set_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 311 | } |
| 312 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 313 | static int gpio_irq_type(struct irq_data *d, unsigned trigger) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 314 | { |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 315 | if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
| 316 | return -EINVAL; |
| 317 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static struct irq_chip gpio_irqchip = { |
| 322 | .name = "GPIO", |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 323 | .irq_enable = gpio_irq_enable, |
| 324 | .irq_disable = gpio_irq_disable, |
| 325 | .irq_set_type = gpio_irq_type, |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 326 | .flags = IRQCHIP_SET_TYPE_MASKED, |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 327 | }; |
| 328 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 329 | static void gpio_irq_handler(struct irq_desc *desc) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 330 | { |
Thomas Gleixner | c3ca1e6 | 2015-07-12 23:47:32 +0200 | [diff] [blame] | 331 | unsigned int irq = irq_desc_get_irq(desc); |
Thomas Gleixner | 7416401 | 2011-06-06 11:51:43 +0200 | [diff] [blame] | 332 | struct davinci_gpio_regs __iomem *g; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 333 | u32 mask = 0xffff; |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 334 | struct davinci_gpio_controller *d; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 335 | |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 336 | d = (struct davinci_gpio_controller *)irq_desc_get_handler_data(desc); |
| 337 | g = (struct davinci_gpio_regs __iomem *)d->regs; |
Thomas Gleixner | 7416401 | 2011-06-06 11:51:43 +0200 | [diff] [blame] | 338 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 339 | /* we only care about one bank */ |
| 340 | if (irq & 1) |
| 341 | mask <<= 16; |
| 342 | |
| 343 | /* temporarily mask (level sensitive) parent IRQ */ |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 344 | chained_irq_enter(irq_desc_get_chip(desc), desc); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 345 | while (1) { |
| 346 | u32 status; |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 347 | int bit; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 348 | |
| 349 | /* ack any irqs */ |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 350 | status = readl_relaxed(&g->intstat) & mask; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 351 | if (!status) |
| 352 | break; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 353 | writel_relaxed(status, &g->intstat); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 354 | |
| 355 | /* now demux them to the right lowlevel handler */ |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 356 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 357 | while (status) { |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 358 | bit = __ffs(status); |
| 359 | status &= ~BIT(bit); |
| 360 | generic_handle_irq( |
| 361 | irq_find_mapping(d->irq_domain, |
| 362 | d->chip.base + bit)); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 363 | } |
| 364 | } |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 365 | chained_irq_exit(irq_desc_get_chip(desc), desc); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 366 | /* now it may re-trigger */ |
| 367 | } |
| 368 | |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 369 | static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset) |
| 370 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 371 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 372 | |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 373 | if (d->irq_domain) |
| 374 | return irq_create_mapping(d->irq_domain, d->chip.base + offset); |
| 375 | else |
| 376 | return -ENXIO; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset) |
| 380 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 381 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 382 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 383 | /* |
| 384 | * NOTE: we assume for now that only irqs in the first gpio_chip |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 385 | * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs). |
| 386 | */ |
Lad, Prabhakar | 34af1ab | 2013-11-08 12:15:55 +0530 | [diff] [blame] | 387 | if (offset < d->gpio_unbanked) |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 388 | return d->gpio_irq + offset; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 389 | else |
| 390 | return -ENODEV; |
| 391 | } |
| 392 | |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 393 | static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 394 | { |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 395 | struct davinci_gpio_controller *d; |
| 396 | struct davinci_gpio_regs __iomem *g; |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 397 | u32 mask; |
| 398 | |
Jiang Liu | c16edb8 | 2015-06-01 16:05:19 +0800 | [diff] [blame] | 399 | d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data); |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 400 | g = (struct davinci_gpio_regs __iomem *)d->regs; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 401 | mask = __gpio_mask(data->irq - d->gpio_irq); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 402 | |
| 403 | if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
| 404 | return -EINVAL; |
| 405 | |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 406 | writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 407 | ? &g->set_falling : &g->clr_falling); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 408 | writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 409 | ? &g->set_rising : &g->clr_rising); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 414 | static int |
| 415 | davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq, |
| 416 | irq_hw_number_t hw) |
| 417 | { |
| 418 | struct davinci_gpio_regs __iomem *g = gpio2regs(hw); |
| 419 | |
| 420 | irq_set_chip_and_handler_name(irq, &gpio_irqchip, handle_simple_irq, |
| 421 | "davinci_gpio"); |
| 422 | irq_set_irq_type(irq, IRQ_TYPE_NONE); |
| 423 | irq_set_chip_data(irq, (__force void *)g); |
| 424 | irq_set_handler_data(irq, (void *)__gpio_mask(hw)); |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 425 | |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | static const struct irq_domain_ops davinci_gpio_irq_ops = { |
| 430 | .map = davinci_gpio_irq_map, |
| 431 | .xlate = irq_domain_xlate_onetwocell, |
| 432 | }; |
| 433 | |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 434 | static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq) |
| 435 | { |
| 436 | static struct irq_chip_type gpio_unbanked; |
| 437 | |
Geliang Tang | ccdbddf | 2015-12-30 22:16:38 +0800 | [diff] [blame] | 438 | gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq)); |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 439 | |
| 440 | return &gpio_unbanked.chip; |
| 441 | }; |
| 442 | |
| 443 | static struct irq_chip *keystone_gpio_get_irq_chip(unsigned int irq) |
| 444 | { |
| 445 | static struct irq_chip gpio_unbanked; |
| 446 | |
| 447 | gpio_unbanked = *irq_get_chip(irq); |
| 448 | return &gpio_unbanked; |
| 449 | }; |
| 450 | |
| 451 | static const struct of_device_id davinci_gpio_ids[]; |
| 452 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 453 | /* |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 454 | * NOTE: for suspend/resume, probably best to make a platform_device with |
| 455 | * suspend_late/resume_resume calls hooking into results of the set_wake() |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 456 | * calls ... so if no gpios are wakeup events the clock can be disabled, |
| 457 | * with outputs left at previously set levels, and so that VDD3P3V.IOPWDN0 |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 458 | * (dm6446) can be set appropriately for GPIOV33 pins. |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 459 | */ |
| 460 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 461 | static int davinci_gpio_irq_setup(struct platform_device *pdev) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 462 | { |
Alexander Shiyan | 58c0f5a | 2014-02-15 17:12:05 +0400 | [diff] [blame] | 463 | unsigned gpio, bank; |
| 464 | int irq; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 465 | struct clk *clk; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 466 | u32 binten = 0; |
Mark A. Greer | a994955 | 2009-04-15 12:40:35 -0700 | [diff] [blame] | 467 | unsigned ngpio, bank_irq; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 468 | struct device *dev = &pdev->dev; |
| 469 | struct resource *res; |
| 470 | struct davinci_gpio_controller *chips = platform_get_drvdata(pdev); |
| 471 | struct davinci_gpio_platform_data *pdata = dev->platform_data; |
| 472 | struct davinci_gpio_regs __iomem *g; |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 473 | struct irq_domain *irq_domain = NULL; |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 474 | const struct of_device_id *match; |
| 475 | struct irq_chip *irq_chip; |
| 476 | gpio_get_irq_chip_cb_t gpio_get_irq_chip; |
| 477 | |
| 478 | /* |
| 479 | * Use davinci_gpio_get_irq_chip by default to handle non DT cases |
| 480 | */ |
| 481 | gpio_get_irq_chip = davinci_gpio_get_irq_chip; |
| 482 | match = of_match_device(of_match_ptr(davinci_gpio_ids), |
| 483 | dev); |
| 484 | if (match) |
| 485 | gpio_get_irq_chip = (gpio_get_irq_chip_cb_t)match->data; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 486 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 487 | ngpio = pdata->ngpio; |
| 488 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 489 | if (!res) { |
| 490 | dev_err(dev, "Invalid IRQ resource\n"); |
| 491 | return -EBUSY; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 492 | } |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 493 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 494 | bank_irq = res->start; |
| 495 | |
| 496 | if (!bank_irq) { |
| 497 | dev_err(dev, "Invalid IRQ resource\n"); |
| 498 | return -ENODEV; |
| 499 | } |
| 500 | |
| 501 | clk = devm_clk_get(dev, "gpio"); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 502 | if (IS_ERR(clk)) { |
| 503 | printk(KERN_ERR "Error %ld getting gpio clock?\n", |
| 504 | PTR_ERR(clk)); |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 505 | return PTR_ERR(clk); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 506 | } |
Murali Karicheri | ce6b658 | 2012-08-30 14:03:57 -0400 | [diff] [blame] | 507 | clk_prepare_enable(clk); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 508 | |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 509 | if (!pdata->gpio_unbanked) { |
| 510 | irq = irq_alloc_descs(-1, 0, ngpio, 0); |
| 511 | if (irq < 0) { |
| 512 | dev_err(dev, "Couldn't allocate IRQ numbers\n"); |
| 513 | return irq; |
| 514 | } |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 515 | |
Keerthy | 310a7e6 | 2016-01-28 19:08:50 +0530 | [diff] [blame] | 516 | irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0, |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 517 | &davinci_gpio_irq_ops, |
| 518 | chips); |
| 519 | if (!irq_domain) { |
| 520 | dev_err(dev, "Couldn't register an IRQ domain\n"); |
| 521 | return -ENODEV; |
| 522 | } |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 523 | } |
| 524 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 525 | /* |
| 526 | * Arrange gpio_to_irq() support, handling either direct IRQs or |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 527 | * banked IRQs. Having GPIOs in the first GPIO bank use direct |
| 528 | * IRQs, while the others use banked IRQs, would need some setup |
| 529 | * tweaks to recognize hardware which can do that. |
| 530 | */ |
| 531 | for (gpio = 0, bank = 0; gpio < ngpio; bank++, gpio += 32) { |
| 532 | chips[bank].chip.to_irq = gpio_to_irq_banked; |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 533 | chips[bank].irq_domain = irq_domain; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | /* |
| 537 | * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO |
| 538 | * controller only handling trigger modes. We currently assume no |
| 539 | * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs. |
| 540 | */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 541 | if (pdata->gpio_unbanked) { |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 542 | /* pass "bank 0" GPIO IRQs to AINTC */ |
| 543 | chips[0].chip.to_irq = gpio_to_irq_unbanked; |
Lad, Prabhakar | 34af1ab | 2013-11-08 12:15:55 +0530 | [diff] [blame] | 544 | chips[0].gpio_irq = bank_irq; |
| 545 | chips[0].gpio_unbanked = pdata->gpio_unbanked; |
Vitaly Andrianov | 3685bbc | 2015-07-02 14:31:30 -0400 | [diff] [blame] | 546 | binten = GENMASK(pdata->gpio_unbanked / 16, 0); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 547 | |
| 548 | /* AINTC handles mask/unmask; GPIO handles triggering */ |
| 549 | irq = bank_irq; |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 550 | irq_chip = gpio_get_irq_chip(irq); |
| 551 | irq_chip->name = "GPIO-AINTC"; |
| 552 | irq_chip->irq_set_type = gpio_irq_type_unbanked; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 553 | |
| 554 | /* default trigger: both edges */ |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 555 | g = gpio2regs(0); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 556 | writel_relaxed(~0, &g->set_falling); |
| 557 | writel_relaxed(~0, &g->set_rising); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 558 | |
| 559 | /* set the direct IRQs up to use that irqchip */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 560 | for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) { |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 561 | irq_set_chip(irq, irq_chip); |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 562 | irq_set_handler_data(irq, &chips[gpio / 32]); |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 563 | irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | goto done; |
| 567 | } |
| 568 | |
| 569 | /* |
| 570 | * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we |
| 571 | * then chain through our own handler. |
| 572 | */ |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 573 | for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) { |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 574 | /* disabled by default, enabled only as needed */ |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 575 | g = gpio2regs(gpio); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 576 | writel_relaxed(~0, &g->clr_falling); |
| 577 | writel_relaxed(~0, &g->clr_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 578 | |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 579 | /* |
| 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 | */ |
Thomas Gleixner | bdac2b6 | 2015-07-13 23:22:44 +0200 | [diff] [blame] | 584 | irq_set_chained_handler_and_data(bank_irq, gpio_irq_handler, |
| 585 | &chips[gpio / 32]); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 586 | |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 587 | binten |= BIT(bank); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 588 | } |
| 589 | |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 590 | done: |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 591 | /* |
| 592 | * BINTEN -- per-bank interrupt enable. genirq would also let these |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 593 | * bits be set/cleared dynamically. |
| 594 | */ |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 595 | writel_relaxed(binten, gpio_base + BINTEN); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 596 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 597 | return 0; |
| 598 | } |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 599 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 600 | #if IS_ENABLED(CONFIG_OF) |
| 601 | static const struct of_device_id davinci_gpio_ids[] = { |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 602 | { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip}, |
| 603 | { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip}, |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 604 | { /* sentinel */ }, |
| 605 | }; |
| 606 | MODULE_DEVICE_TABLE(of, davinci_gpio_ids); |
| 607 | #endif |
| 608 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 609 | static struct platform_driver davinci_gpio_driver = { |
| 610 | .probe = davinci_gpio_probe, |
| 611 | .driver = { |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 612 | .name = "davinci_gpio", |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 613 | .of_match_table = of_match_ptr(davinci_gpio_ids), |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 614 | }, |
| 615 | }; |
| 616 | |
| 617 | /** |
| 618 | * GPIO driver registration needs to be done before machine_init functions |
| 619 | * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall. |
| 620 | */ |
| 621 | static int __init davinci_gpio_drv_reg(void) |
| 622 | { |
| 623 | return platform_driver_register(&davinci_gpio_driver); |
| 624 | } |
| 625 | postcore_initcall(davinci_gpio_drv_reg); |