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