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