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