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