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 | */ |
Linus Walleij | 7220c43 | 2018-01-14 02:05:38 +0100 | [diff] [blame] | 12 | #include <linux/gpio/driver.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> |
David Lechner | 3c87d7c | 2018-01-21 17:09:40 -0600 | [diff] [blame] | 23 | #include <linux/pinctrl/consumer.h> |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/platform_data/gpio-davinci.h> |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 26 | #include <linux/irqchip/chained_irq.h> |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 27 | |
Cyril Chemparathy | c12f415 | 2010-05-01 18:37:53 -0400 | [diff] [blame] | 28 | struct 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 Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 41 | typedef struct irq_chip *(*gpio_get_irq_chip_cb_t)(unsigned int irq); |
| 42 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 43 | #define BINTEN 0x8 /* GPIO Interrupt Per-Bank Enable Register */ |
Axel Haslam | e027503 | 2016-11-03 12:34:10 +0100 | [diff] [blame] | 44 | #define MAX_LABEL_SIZE 20 |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 45 | |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 46 | static void __iomem *gpio_base; |
Keerthy | 8f7cf8c | 2017-01-17 21:49:11 +0530 | [diff] [blame] | 47 | static unsigned int offset_array[5] = {0x10, 0x38, 0x60, 0x88, 0xb0}; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 48 | |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 49 | static inline struct davinci_gpio_regs __iomem *irq2regs(struct irq_data *d) |
Kevin Hilman | 21ce873 | 2010-02-25 16:49:56 -0800 | [diff] [blame] | 50 | { |
Cyril Chemparathy | 99e9e52 | 2010-05-01 18:37:52 -0400 | [diff] [blame] | 51 | struct davinci_gpio_regs __iomem *g; |
Kevin Hilman | 21ce873 | 2010-02-25 16:49:56 -0800 | [diff] [blame] | 52 | |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 53 | 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] | 54 | |
| 55 | return g; |
| 56 | } |
| 57 | |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 58 | static int davinci_gpio_irq_setup(struct platform_device *pdev, int bank_irq); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 59 | |
| 60 | /*--------------------------------------------------------------------------*/ |
| 61 | |
Cyril Chemparathy | 5b3a05c | 2010-05-01 18:38:27 -0400 | [diff] [blame] | 62 | /* board setup code *MUST* setup pinmux and enable the GPIO clock. */ |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 63 | static inline int __davinci_direction(struct gpio_chip *chip, |
| 64 | unsigned offset, bool out, int value) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 65 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 66 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 67 | struct davinci_gpio_regs __iomem *g; |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 68 | unsigned long flags; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 69 | u32 temp; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 70 | int bank = offset / 32; |
| 71 | u32 mask = __gpio_mask(offset); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 72 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 73 | g = d->regs[bank]; |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 74 | spin_lock_irqsave(&d->lock, flags); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 75 | temp = readl_relaxed(&g->dir); |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 76 | if (out) { |
| 77 | temp &= ~mask; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 78 | writel_relaxed(mask, value ? &g->set_data : &g->clr_data); |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 79 | } else { |
| 80 | temp |= mask; |
| 81 | } |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 82 | writel_relaxed(temp, &g->dir); |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 83 | spin_unlock_irqrestore(&d->lock, flags); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 84 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 85 | return 0; |
| 86 | } |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 87 | |
Cyril Chemparathy | ba4a984 | 2010-05-01 18:37:51 -0400 | [diff] [blame] | 88 | static int davinci_direction_in(struct gpio_chip *chip, unsigned offset) |
| 89 | { |
| 90 | return __davinci_direction(chip, offset, false, 0); |
| 91 | } |
| 92 | |
| 93 | static int |
| 94 | davinci_direction_out(struct gpio_chip *chip, unsigned offset, int value) |
| 95 | { |
| 96 | return __davinci_direction(chip, offset, true, value); |
| 97 | } |
| 98 | |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 99 | /* |
| 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 | */ |
| 106 | static int davinci_gpio_get(struct gpio_chip *chip, unsigned offset) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 107 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 108 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 109 | struct davinci_gpio_regs __iomem *g; |
| 110 | int bank = offset / 32; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 111 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 112 | g = d->regs[bank]; |
| 113 | |
| 114 | return !!(__gpio_mask(offset) & readl_relaxed(&g->in_data)); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 117 | /* |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 118 | * Assuming the pin is muxed as a gpio output, set its output value. |
| 119 | */ |
| 120 | static void |
| 121 | davinci_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 122 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 123 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 124 | struct davinci_gpio_regs __iomem *g; |
| 125 | int bank = offset / 32; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 126 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 127 | g = d->regs[bank]; |
| 128 | |
| 129 | writel_relaxed(__gpio_mask(offset), |
| 130 | value ? &g->set_data : &g->clr_data); |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 131 | } |
| 132 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 133 | static struct davinci_gpio_platform_data * |
| 134 | davinci_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 Haider | ab128af | 2015-11-23 20:53:18 +0530 | [diff] [blame] | 142 | return dev_get_platdata(&pdev->dev); |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 143 | |
| 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 | |
| 162 | of_err: |
| 163 | dev_err(&pdev->dev, "Populating pdata from DT failed: err %d\n", ret); |
| 164 | return NULL; |
| 165 | } |
| 166 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 167 | static int davinci_gpio_probe(struct platform_device *pdev) |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 168 | { |
Keerthy | 8e11047 | 2017-01-17 21:49:14 +0530 | [diff] [blame] | 169 | static int ctrl_num, bank_base; |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 170 | int gpio, bank, bank_irq, ret = 0; |
Lokesh Vutla | 6ec9249a | 2016-01-28 19:08:51 +0530 | [diff] [blame] | 171 | unsigned ngpio, nbank; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 172 | struct davinci_gpio_controller *chips; |
| 173 | struct davinci_gpio_platform_data *pdata; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 174 | struct device *dev = &pdev->dev; |
| 175 | struct resource *res; |
Axel Haslam | e027503 | 2016-11-03 12:34:10 +0100 | [diff] [blame] | 176 | char label[MAX_LABEL_SIZE]; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 177 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 178 | pdata = davinci_gpio_get_pdata(pdev); |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 179 | if (!pdata) { |
| 180 | dev_err(dev, "No platform data found\n"); |
| 181 | return -EINVAL; |
| 182 | } |
Cyril Chemparathy | 686b634 | 2010-05-01 18:37:54 -0400 | [diff] [blame] | 183 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 184 | dev->platform_data = pdata; |
| 185 | |
Mark A. Greer | a994955 | 2009-04-15 12:40:35 -0700 | [diff] [blame] | 186 | /* |
| 187 | * The gpio banks conceptually expose a segmented bitmap, |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 188 | * and "ngpio" is one more than the largest zero-based |
| 189 | * bit index that's valid. |
| 190 | */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 191 | ngpio = pdata->ngpio; |
Mark A. Greer | a994955 | 2009-04-15 12:40:35 -0700 | [diff] [blame] | 192 | if (ngpio == 0) { |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 193 | dev_err(dev, "How many GPIOs?\n"); |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 194 | return -EINVAL; |
| 195 | } |
| 196 | |
Grygorii Strashko | c21d500 | 2013-11-21 17:34:35 +0200 | [diff] [blame] | 197 | if (WARN_ON(ARCH_NR_GPIOS < ngpio)) |
| 198 | ngpio = ARCH_NR_GPIOS; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 199 | |
Lokesh Vutla | 6ec9249a | 2016-01-28 19:08:51 +0530 | [diff] [blame] | 200 | nbank = DIV_ROUND_UP(ngpio, 32); |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 201 | chips = devm_kcalloc(dev, |
| 202 | nbank, sizeof(struct davinci_gpio_controller), |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 203 | GFP_KERNEL); |
Jingoo Han | 9ea9363c | 2014-04-29 17:33:26 +0900 | [diff] [blame] | 204 | if (!chips) |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 205 | return -ENOMEM; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 206 | |
| 207 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 208 | gpio_base = devm_ioremap_resource(dev, res); |
| 209 | if (IS_ERR(gpio_base)) |
| 210 | return PTR_ERR(gpio_base); |
Cyril Chemparathy | b8d4429 | 2010-05-07 17:06:32 -0400 | [diff] [blame] | 211 | |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 212 | bank_irq = platform_get_irq(pdev, 0); |
| 213 | if (bank_irq < 0) { |
| 214 | dev_dbg(dev, "IRQ not populated\n"); |
| 215 | return bank_irq; |
| 216 | } |
| 217 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 218 | snprintf(label, MAX_LABEL_SIZE, "davinci_gpio.%d", ctrl_num++); |
| 219 | chips->chip.label = devm_kstrdup(dev, label, GFP_KERNEL); |
| 220 | if (!chips->chip.label) |
Axel Haslam | e027503 | 2016-11-03 12:34:10 +0100 | [diff] [blame] | 221 | return -ENOMEM; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 222 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 223 | chips->chip.direction_input = davinci_direction_in; |
| 224 | chips->chip.get = davinci_gpio_get; |
| 225 | chips->chip.direction_output = davinci_direction_out; |
| 226 | chips->chip.set = davinci_gpio_set; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 227 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 228 | chips->chip.ngpio = ngpio; |
Keerthy | 8e11047 | 2017-01-17 21:49:14 +0530 | [diff] [blame] | 229 | chips->chip.base = bank_base; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 230 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 231 | #ifdef CONFIG_OF_GPIO |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 232 | chips->chip.of_gpio_n_cells = 2; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 233 | chips->chip.parent = dev; |
| 234 | chips->chip.of_node = dev->of_node; |
David Lechner | 3c87d7c | 2018-01-21 17:09:40 -0600 | [diff] [blame] | 235 | |
| 236 | if (of_property_read_bool(dev->of_node, "gpio-ranges")) { |
| 237 | chips->chip.request = gpiochip_generic_request; |
| 238 | chips->chip.free = gpiochip_generic_free; |
| 239 | } |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 240 | #endif |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 241 | spin_lock_init(&chips->lock); |
Keerthy | 8e11047 | 2017-01-17 21:49:14 +0530 | [diff] [blame] | 242 | bank_base += ngpio; |
Cyril Chemparathy | b27b6d0 | 2010-05-01 18:37:55 -0400 | [diff] [blame] | 243 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 244 | for (gpio = 0, bank = 0; gpio < ngpio; gpio += 32, bank++) |
| 245 | chips->regs[bank] = gpio_base + offset_array[bank]; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 246 | |
Keerthy | 8327e1b | 2017-07-20 15:12:16 +0530 | [diff] [blame] | 247 | ret = devm_gpiochip_add_data(dev, &chips->chip, chips); |
| 248 | if (ret) |
| 249 | goto err; |
| 250 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 251 | platform_set_drvdata(pdev, chips); |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 252 | ret = davinci_gpio_irq_setup(pdev, bank_irq); |
Keerthy | 5e7a0ce | 2017-07-20 15:12:17 +0530 | [diff] [blame] | 253 | if (ret) |
| 254 | goto err; |
| 255 | |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 256 | return 0; |
Keerthy | 8327e1b | 2017-07-20 15:12:16 +0530 | [diff] [blame] | 257 | |
| 258 | err: |
| 259 | /* Revert the static variable increments */ |
| 260 | ctrl_num--; |
| 261 | bank_base -= ngpio; |
| 262 | |
| 263 | return ret; |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 264 | } |
David Brownell | dce1115 | 2008-09-07 23:41:04 -0700 | [diff] [blame] | 265 | |
| 266 | /*--------------------------------------------------------------------------*/ |
| 267 | /* |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 268 | * We expect irqs will normally be set up as input pins, but they can also be |
| 269 | * used as output pins ... which is convenient for testing. |
| 270 | * |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 271 | * NOTE: The first few GPIOs also have direct INTC hookups in addition |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 272 | * to their GPIOBNK0 irq, with a bit less overhead. |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 273 | * |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 274 | * All those INTC hookups (direct, plus several IRQ banks) can also |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 275 | * serve as EDMA event triggers. |
| 276 | */ |
| 277 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 278 | static void gpio_irq_disable(struct irq_data *d) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 279 | { |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 280 | struct davinci_gpio_regs __iomem *g = irq2regs(d); |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 281 | u32 mask = (u32) irq_data_get_irq_handler_data(d); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 282 | |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 283 | writel_relaxed(mask, &g->clr_falling); |
| 284 | writel_relaxed(mask, &g->clr_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 287 | static void gpio_irq_enable(struct irq_data *d) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 288 | { |
Thomas Gleixner | 1765d67 | 2015-07-13 01:18:56 +0200 | [diff] [blame] | 289 | struct davinci_gpio_regs __iomem *g = irq2regs(d); |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 290 | u32 mask = (u32) irq_data_get_irq_handler_data(d); |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 291 | unsigned status = irqd_get_trigger_type(d); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 292 | |
David Brownell | df4aab4 | 2009-05-04 13:14:27 -0700 | [diff] [blame] | 293 | status &= IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING; |
| 294 | if (!status) |
| 295 | status = IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING; |
| 296 | |
| 297 | if (status & IRQ_TYPE_EDGE_FALLING) |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 298 | writel_relaxed(mask, &g->set_falling); |
David Brownell | df4aab4 | 2009-05-04 13:14:27 -0700 | [diff] [blame] | 299 | if (status & IRQ_TYPE_EDGE_RISING) |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 300 | writel_relaxed(mask, &g->set_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 303 | static int gpio_irq_type(struct irq_data *d, unsigned trigger) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 304 | { |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 305 | if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
| 306 | return -EINVAL; |
| 307 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | static struct irq_chip gpio_irqchip = { |
| 312 | .name = "GPIO", |
Lennert Buytenhek | 2326544 | 2010-11-29 10:27:27 +0100 | [diff] [blame] | 313 | .irq_enable = gpio_irq_enable, |
| 314 | .irq_disable = gpio_irq_disable, |
| 315 | .irq_set_type = gpio_irq_type, |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 316 | .flags = IRQCHIP_SET_TYPE_MASKED, |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 317 | }; |
| 318 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 319 | static void gpio_irq_handler(struct irq_desc *desc) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 320 | { |
Thomas Gleixner | 7416401 | 2011-06-06 11:51:43 +0200 | [diff] [blame] | 321 | struct davinci_gpio_regs __iomem *g; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 322 | u32 mask = 0xffff; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 323 | int bank_num; |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 324 | struct davinci_gpio_controller *d; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 325 | struct davinci_gpio_irq_data *irqdata; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 326 | |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 327 | irqdata = (struct davinci_gpio_irq_data *)irq_desc_get_handler_data(desc); |
| 328 | bank_num = irqdata->bank_num; |
| 329 | g = irqdata->regs; |
| 330 | d = irqdata->chip; |
Thomas Gleixner | 7416401 | 2011-06-06 11:51:43 +0200 | [diff] [blame] | 331 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 332 | /* we only care about one bank */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 333 | if ((bank_num % 2) == 1) |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 334 | mask <<= 16; |
| 335 | |
| 336 | /* temporarily mask (level sensitive) parent IRQ */ |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 337 | chained_irq_enter(irq_desc_get_chip(desc), desc); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 338 | while (1) { |
| 339 | u32 status; |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 340 | int bit; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 341 | irq_hw_number_t hw_irq; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 342 | |
| 343 | /* ack any irqs */ |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 344 | status = readl_relaxed(&g->intstat) & mask; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 345 | if (!status) |
| 346 | break; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 347 | writel_relaxed(status, &g->intstat); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 348 | |
| 349 | /* now demux them to the right lowlevel handler */ |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 350 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 351 | while (status) { |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 352 | bit = __ffs(status); |
| 353 | status &= ~BIT(bit); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 354 | /* Max number of gpios per controller is 144 so |
| 355 | * hw_irq will be in [0..143] |
| 356 | */ |
| 357 | hw_irq = (bank_num / 2) * 32 + bit; |
| 358 | |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 359 | generic_handle_irq( |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 360 | irq_find_mapping(d->irq_domain, hw_irq)); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 361 | } |
| 362 | } |
Grygorii Strashko | 0d978eb | 2013-11-26 21:40:09 +0200 | [diff] [blame] | 363 | chained_irq_exit(irq_desc_get_chip(desc), desc); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 364 | /* now it may re-trigger */ |
| 365 | } |
| 366 | |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 367 | static int gpio_to_irq_banked(struct gpio_chip *chip, unsigned offset) |
| 368 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 369 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 370 | |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 371 | if (d->irq_domain) |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 372 | return irq_create_mapping(d->irq_domain, offset); |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 373 | else |
| 374 | return -ENXIO; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | static int gpio_to_irq_unbanked(struct gpio_chip *chip, unsigned offset) |
| 378 | { |
Linus Walleij | 72a1ca2 | 2015-12-04 16:25:04 +0100 | [diff] [blame] | 379 | struct davinci_gpio_controller *d = gpiochip_get_data(chip); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 380 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 381 | /* |
| 382 | * 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] | 383 | * can provide direct-mapped IRQs to AINTC (up to 32 GPIOs). |
| 384 | */ |
Lad, Prabhakar | 34af1ab | 2013-11-08 12:15:55 +0530 | [diff] [blame] | 385 | if (offset < d->gpio_unbanked) |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 386 | return d->base_irq + offset; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 387 | else |
| 388 | return -ENODEV; |
| 389 | } |
| 390 | |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 391 | static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 392 | { |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 393 | struct davinci_gpio_controller *d; |
| 394 | struct davinci_gpio_regs __iomem *g; |
Sekhar Nori | ab2dde9 | 2012-03-11 18:16:11 +0530 | [diff] [blame] | 395 | u32 mask; |
| 396 | |
Jiang Liu | c16edb8 | 2015-06-01 16:05:19 +0800 | [diff] [blame] | 397 | d = (struct davinci_gpio_controller *)irq_data_get_irq_handler_data(data); |
Keerthy | 7f8e2a8 | 2017-11-10 16:43:17 +0530 | [diff] [blame] | 398 | g = (struct davinci_gpio_regs __iomem *)d->regs[0]; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 399 | mask = __gpio_mask(data->irq - d->base_irq); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 400 | |
| 401 | if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
| 402 | return -EINVAL; |
| 403 | |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 404 | writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 405 | ? &g->set_falling : &g->clr_falling); |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 406 | writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING) |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 407 | ? &g->set_rising : &g->clr_rising); |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 412 | static int |
| 413 | davinci_gpio_irq_map(struct irq_domain *d, unsigned int irq, |
| 414 | irq_hw_number_t hw) |
| 415 | { |
Keerthy | 8f7cf8c | 2017-01-17 21:49:11 +0530 | [diff] [blame] | 416 | struct davinci_gpio_controller *chips = |
| 417 | (struct davinci_gpio_controller *)d->host_data; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 418 | struct davinci_gpio_regs __iomem *g = chips->regs[hw / 32]; |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 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 | |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 461 | static int davinci_gpio_irq_setup(struct platform_device *pdev, int bank_irq) |
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; |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 465 | int ret; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 466 | struct clk *clk; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 467 | u32 binten = 0; |
Keerthy | c1d013a | 2018-06-13 09:10:36 +0530 | [diff] [blame^] | 468 | unsigned ngpio; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 469 | struct device *dev = &pdev->dev; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 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; |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 476 | struct davinci_gpio_irq_data *irqdata; |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 477 | gpio_get_irq_chip_cb_t gpio_get_irq_chip; |
| 478 | |
| 479 | /* |
| 480 | * Use davinci_gpio_get_irq_chip by default to handle non DT cases |
| 481 | */ |
| 482 | gpio_get_irq_chip = davinci_gpio_get_irq_chip; |
| 483 | match = of_match_device(of_match_ptr(davinci_gpio_ids), |
| 484 | dev); |
| 485 | if (match) |
| 486 | gpio_get_irq_chip = (gpio_get_irq_chip_cb_t)match->data; |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 487 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 488 | ngpio = pdata->ngpio; |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 489 | |
| 490 | clk = devm_clk_get(dev, "gpio"); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 491 | if (IS_ERR(clk)) { |
Keerthy | 1a9ef90 | 2017-07-20 15:12:18 +0530 | [diff] [blame] | 492 | dev_err(dev, "Error %ld getting gpio clock\n", PTR_ERR(clk)); |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 493 | return PTR_ERR(clk); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 494 | } |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 495 | ret = clk_prepare_enable(clk); |
| 496 | if (ret) |
| 497 | return ret; |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 498 | |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 499 | if (!pdata->gpio_unbanked) { |
Bartosz Golaszewski | a1a3c2d | 2017-03-04 17:23:36 +0100 | [diff] [blame] | 500 | irq = devm_irq_alloc_descs(dev, -1, 0, ngpio, 0); |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 501 | if (irq < 0) { |
| 502 | dev_err(dev, "Couldn't allocate IRQ numbers\n"); |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 503 | clk_disable_unprepare(clk); |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 504 | return irq; |
| 505 | } |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 506 | |
Keerthy | 310a7e6 | 2016-01-28 19:08:50 +0530 | [diff] [blame] | 507 | irq_domain = irq_domain_add_legacy(dev->of_node, ngpio, irq, 0, |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 508 | &davinci_gpio_irq_ops, |
| 509 | chips); |
| 510 | if (!irq_domain) { |
| 511 | dev_err(dev, "Couldn't register an IRQ domain\n"); |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 512 | clk_disable_unprepare(clk); |
Grygorii Strashko | 6075a8b | 2013-12-18 12:07:51 +0200 | [diff] [blame] | 513 | return -ENODEV; |
| 514 | } |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 515 | } |
| 516 | |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 517 | /* |
| 518 | * Arrange gpio_to_irq() support, handling either direct IRQs or |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 519 | * banked IRQs. Having GPIOs in the first GPIO bank use direct |
| 520 | * IRQs, while the others use banked IRQs, would need some setup |
| 521 | * tweaks to recognize hardware which can do that. |
| 522 | */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 523 | chips->chip.to_irq = gpio_to_irq_banked; |
| 524 | chips->irq_domain = irq_domain; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 525 | |
| 526 | /* |
| 527 | * AINTC can handle direct/unbanked IRQs for GPIOs, with the GPIO |
| 528 | * controller only handling trigger modes. We currently assume no |
| 529 | * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs. |
| 530 | */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 531 | if (pdata->gpio_unbanked) { |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 532 | /* pass "bank 0" GPIO IRQs to AINTC */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 533 | chips->chip.to_irq = gpio_to_irq_unbanked; |
| 534 | chips->base_irq = bank_irq; |
| 535 | chips->gpio_unbanked = pdata->gpio_unbanked; |
Vitaly Andrianov | 3685bbc | 2015-07-02 14:31:30 -0400 | [diff] [blame] | 536 | binten = GENMASK(pdata->gpio_unbanked / 16, 0); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 537 | |
| 538 | /* AINTC handles mask/unmask; GPIO handles triggering */ |
| 539 | irq = bank_irq; |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 540 | irq_chip = gpio_get_irq_chip(irq); |
| 541 | irq_chip->name = "GPIO-AINTC"; |
| 542 | irq_chip->irq_set_type = gpio_irq_type_unbanked; |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 543 | |
| 544 | /* default trigger: both edges */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 545 | g = chips->regs[0]; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 546 | writel_relaxed(~0, &g->set_falling); |
| 547 | writel_relaxed(~0, &g->set_rising); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 548 | |
| 549 | /* set the direct IRQs up to use that irqchip */ |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 550 | for (gpio = 0; gpio < pdata->gpio_unbanked; gpio++, irq++) { |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 551 | irq_set_chip(irq, irq_chip); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 552 | irq_set_handler_data(irq, chips); |
Thomas Gleixner | 5093aec | 2011-03-24 12:47:04 +0100 | [diff] [blame] | 553 | irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH); |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | goto done; |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * Or, AINTC can handle IRQs for banks of 16 GPIO IRQs, which we |
| 561 | * then chain through our own handler. |
| 562 | */ |
Lad, Prabhakar | 9211ff3 | 2013-11-21 23:45:27 +0530 | [diff] [blame] | 563 | for (gpio = 0, bank = 0; gpio < ngpio; bank++, bank_irq++, gpio += 16) { |
Keerthy | 8f7cf8c | 2017-01-17 21:49:11 +0530 | [diff] [blame] | 564 | /* disabled by default, enabled only as needed |
| 565 | * There are register sets for 32 GPIOs. 2 banks of 16 |
| 566 | * GPIOs are covered by each set of registers hence divide by 2 |
| 567 | */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 568 | g = chips->regs[bank / 2]; |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 569 | writel_relaxed(~0, &g->clr_falling); |
| 570 | writel_relaxed(~0, &g->clr_rising); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 571 | |
Ido Yariv | f299bb9 | 2011-07-12 00:03:11 +0300 | [diff] [blame] | 572 | /* |
| 573 | * Each chip handles 32 gpios, and each irq bank consists of 16 |
| 574 | * gpio irqs. Pass the irq bank's corresponding controller to |
| 575 | * the chained irq handler. |
| 576 | */ |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 577 | irqdata = devm_kzalloc(&pdev->dev, |
| 578 | sizeof(struct |
| 579 | davinci_gpio_irq_data), |
| 580 | GFP_KERNEL); |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 581 | if (!irqdata) { |
| 582 | clk_disable_unprepare(clk); |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 583 | return -ENOMEM; |
Arvind Yadav | 6dc0048 | 2017-05-23 14:48:57 +0530 | [diff] [blame] | 584 | } |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 585 | |
| 586 | irqdata->regs = g; |
| 587 | irqdata->bank_num = bank; |
| 588 | irqdata->chip = chips; |
| 589 | |
Thomas Gleixner | bdac2b6 | 2015-07-13 23:22:44 +0200 | [diff] [blame] | 590 | irq_set_chained_handler_and_data(bank_irq, gpio_irq_handler, |
Keerthy | b5cf3fd | 2017-01-13 09:50:12 +0530 | [diff] [blame] | 591 | irqdata); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 592 | |
David Brownell | 474dad5 | 2008-12-07 11:46:23 -0800 | [diff] [blame] | 593 | binten |= BIT(bank); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 594 | } |
| 595 | |
David Brownell | 7a36071 | 2009-06-25 17:01:31 -0700 | [diff] [blame] | 596 | done: |
Philip Avinash | 131a10a | 2013-08-18 10:48:57 +0530 | [diff] [blame] | 597 | /* |
| 598 | * BINTEN -- per-bank interrupt enable. genirq would also let these |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 599 | * bits be set/cleared dynamically. |
| 600 | */ |
Lad, Prabhakar | 388291c | 2013-12-11 23:22:07 +0530 | [diff] [blame] | 601 | writel_relaxed(binten, gpio_base + BINTEN); |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 602 | |
Vladimir Barinov | 3d9edf0 | 2007-07-10 13:03:43 +0100 | [diff] [blame] | 603 | return 0; |
| 604 | } |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 605 | |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 606 | static const struct of_device_id davinci_gpio_ids[] = { |
Grygorii Strashko | 0c6feb0 | 2014-02-13 17:58:45 +0200 | [diff] [blame] | 607 | { .compatible = "ti,keystone-gpio", keystone_gpio_get_irq_chip}, |
| 608 | { .compatible = "ti,dm6441-gpio", davinci_gpio_get_irq_chip}, |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 609 | { /* sentinel */ }, |
| 610 | }; |
| 611 | MODULE_DEVICE_TABLE(of, davinci_gpio_ids); |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 612 | |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 613 | static struct platform_driver davinci_gpio_driver = { |
| 614 | .probe = davinci_gpio_probe, |
| 615 | .driver = { |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 616 | .name = "davinci_gpio", |
KV Sujith | c770844 | 2013-11-21 23:45:29 +0530 | [diff] [blame] | 617 | .of_match_table = of_match_ptr(davinci_gpio_ids), |
KV Sujith | 118150f | 2013-08-18 10:48:58 +0530 | [diff] [blame] | 618 | }, |
| 619 | }; |
| 620 | |
| 621 | /** |
| 622 | * GPIO driver registration needs to be done before machine_init functions |
| 623 | * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall. |
| 624 | */ |
| 625 | static int __init davinci_gpio_drv_reg(void) |
| 626 | { |
| 627 | return platform_driver_register(&davinci_gpio_driver); |
| 628 | } |
| 629 | postcore_initcall(davinci_gpio_drv_reg); |