2 * linux/arch/arm/plat-pxa/gpio.c
4 * Generic PXA GPIO handling
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/init.h>
16 #include <linux/irq.h>
18 #include <linux/sysdev.h>
19 #include <linux/bootmem.h>
21 #include <mach/gpio.h>
25 struct pxa_gpio_chip {
26 struct gpio_chip chip;
27 void __iomem *regbase;
30 unsigned long irq_mask;
31 unsigned long irq_edge_rise;
32 unsigned long irq_edge_fall;
35 unsigned long saved_gplr;
36 unsigned long saved_gpdr;
37 unsigned long saved_grer;
38 unsigned long saved_gfer;
42 static DEFINE_SPINLOCK(gpio_lock);
43 static struct pxa_gpio_chip *pxa_gpio_chips;
45 #define for_each_gpio_chip(i, c) \
46 for (i = 0, c = &pxa_gpio_chips[0]; i <= pxa_last_gpio; i += 32, c++)
48 static inline void __iomem *gpio_chip_base(struct gpio_chip *c)
50 return container_of(c, struct pxa_gpio_chip, chip)->regbase;
53 static inline struct pxa_gpio_chip *gpio_to_chip(unsigned gpio)
55 return &pxa_gpio_chips[gpio_to_bank(gpio)];
58 static int pxa_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
60 void __iomem *base = gpio_chip_base(chip);
61 uint32_t value, mask = 1 << offset;
64 spin_lock_irqsave(&gpio_lock, flags);
66 value = __raw_readl(base + GPDR_OFFSET);
67 if (__gpio_is_inverted(chip->base + offset))
71 __raw_writel(value, base + GPDR_OFFSET);
73 spin_unlock_irqrestore(&gpio_lock, flags);
77 static int pxa_gpio_direction_output(struct gpio_chip *chip,
78 unsigned offset, int value)
80 void __iomem *base = gpio_chip_base(chip);
81 uint32_t tmp, mask = 1 << offset;
84 __raw_writel(mask, base + (value ? GPSR_OFFSET : GPCR_OFFSET));
86 spin_lock_irqsave(&gpio_lock, flags);
88 tmp = __raw_readl(base + GPDR_OFFSET);
89 if (__gpio_is_inverted(chip->base + offset))
93 __raw_writel(tmp, base + GPDR_OFFSET);
95 spin_unlock_irqrestore(&gpio_lock, flags);
99 static int pxa_gpio_get(struct gpio_chip *chip, unsigned offset)
101 return __raw_readl(gpio_chip_base(chip) + GPLR_OFFSET) & (1 << offset);
104 static void pxa_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
106 __raw_writel(1 << offset, gpio_chip_base(chip) +
107 (value ? GPSR_OFFSET : GPCR_OFFSET));
110 static int __init pxa_init_gpio_chip(int gpio_end)
112 int i, gpio, nbanks = gpio_to_bank(gpio_end) + 1;
113 struct pxa_gpio_chip *chips;
115 /* this is early, we have to use bootmem allocator, and we really
116 * want this to be allocated dynamically for different 'gpio_end'
118 chips = alloc_bootmem_low(nbanks * sizeof(struct pxa_gpio_chip));
120 pr_err("%s: failed to allocate GPIO chips\n", __func__);
124 for (i = 0, gpio = 0; i < nbanks; i++, gpio += 32) {
125 struct gpio_chip *c = &chips[i].chip;
127 sprintf(chips[i].label, "gpio-%d", i);
128 chips[i].regbase = (void __iomem *)GPIO_BANK(i);
131 c->label = chips[i].label;
133 c->direction_input = pxa_gpio_direction_input;
134 c->direction_output = pxa_gpio_direction_output;
135 c->get = pxa_gpio_get;
136 c->set = pxa_gpio_set;
138 /* number of GPIOs on last bank may be less than 32 */
139 c->ngpio = (gpio + 31 > gpio_end) ? (gpio_end - gpio + 1) : 32;
142 pxa_gpio_chips = chips;
146 static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
148 struct pxa_gpio_chip *c;
149 int gpio = irq_to_gpio(irq);
150 unsigned long gpdr, mask = GPIO_bit(gpio);
152 c = gpio_to_chip(gpio);
154 if (type == IRQ_TYPE_PROBE) {
155 /* Don't mess with enabled GPIOs using preconfigured edges or
156 * GPIOs set to alternate function or to output during probe
158 if ((c->irq_edge_rise | c->irq_edge_fall) & GPIO_bit(gpio))
161 if (__gpio_is_occupied(gpio))
164 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
167 gpdr = __raw_readl(c->regbase + GPDR_OFFSET);
169 if (__gpio_is_inverted(gpio))
170 __raw_writel(gpdr | mask, c->regbase + GPDR_OFFSET);
172 __raw_writel(gpdr & ~mask, c->regbase + GPDR_OFFSET);
174 if (type & IRQ_TYPE_EDGE_RISING)
175 c->irq_edge_rise |= mask;
177 c->irq_edge_rise &= ~mask;
179 if (type & IRQ_TYPE_EDGE_FALLING)
180 c->irq_edge_fall |= mask;
182 c->irq_edge_fall &= ~mask;
184 __raw_writel(c->irq_edge_rise & c->irq_mask, c->regbase + GRER_OFFSET);
185 __raw_writel(c->irq_edge_fall & c->irq_mask, c->regbase + GFER_OFFSET);
187 pr_debug("%s: IRQ%d (GPIO%d) - edge%s%s\n", __func__, irq, gpio,
188 ((type & IRQ_TYPE_EDGE_RISING) ? " rising" : ""),
189 ((type & IRQ_TYPE_EDGE_FALLING) ? " falling" : ""));
193 static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
195 struct pxa_gpio_chip *c;
196 int loop, gpio, gpio_base, n;
201 for_each_gpio_chip(gpio, c) {
202 gpio_base = c->chip.base;
204 gedr = __raw_readl(c->regbase + GEDR_OFFSET);
205 gedr = gedr & c->irq_mask;
206 __raw_writel(gedr, c->regbase + GEDR_OFFSET);
208 n = find_first_bit(&gedr, BITS_PER_LONG);
209 while (n < BITS_PER_LONG) {
212 generic_handle_irq(gpio_to_irq(gpio_base + n));
213 n = find_next_bit(&gedr, BITS_PER_LONG, n + 1);
219 static void pxa_ack_muxed_gpio(unsigned int irq)
221 int gpio = irq_to_gpio(irq);
222 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
224 __raw_writel(GPIO_bit(gpio), c->regbase + GEDR_OFFSET);
227 static void pxa_mask_muxed_gpio(unsigned int irq)
229 int gpio = irq_to_gpio(irq);
230 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
233 c->irq_mask &= ~GPIO_bit(gpio);
235 grer = __raw_readl(c->regbase + GRER_OFFSET) & ~GPIO_bit(gpio);
236 gfer = __raw_readl(c->regbase + GFER_OFFSET) & ~GPIO_bit(gpio);
237 __raw_writel(grer, c->regbase + GRER_OFFSET);
238 __raw_writel(gfer, c->regbase + GFER_OFFSET);
241 static void pxa_unmask_muxed_gpio(unsigned int irq)
243 int gpio = irq_to_gpio(irq);
244 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
246 c->irq_mask |= GPIO_bit(gpio);
247 __raw_writel(c->irq_edge_rise & c->irq_mask, c->regbase + GRER_OFFSET);
248 __raw_writel(c->irq_edge_fall & c->irq_mask, c->regbase + GFER_OFFSET);
251 static struct irq_chip pxa_muxed_gpio_chip = {
253 .ack = pxa_ack_muxed_gpio,
254 .mask = pxa_mask_muxed_gpio,
255 .unmask = pxa_unmask_muxed_gpio,
256 .set_type = pxa_gpio_irq_type,
259 void __init pxa_init_gpio(int mux_irq, int start, int end, set_wake_t fn)
261 struct pxa_gpio_chip *c;
266 /* Initialize GPIO chips */
267 pxa_init_gpio_chip(end);
269 /* clear all GPIO edge detects */
270 for_each_gpio_chip(gpio, c) {
271 __raw_writel(0, c->regbase + GFER_OFFSET);
272 __raw_writel(0, c->regbase + GRER_OFFSET);
273 __raw_writel(~0,c->regbase + GEDR_OFFSET);
276 for (irq = gpio_to_irq(start); irq <= gpio_to_irq(end); irq++) {
277 set_irq_chip(irq, &pxa_muxed_gpio_chip);
278 set_irq_handler(irq, handle_edge_irq);
279 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
282 /* Install handler for GPIO>=2 edge detect interrupts */
283 set_irq_chained_handler(mux_irq, pxa_gpio_demux_handler);
284 pxa_muxed_gpio_chip.set_wake = fn;
288 static int pxa_gpio_suspend(struct sys_device *dev, pm_message_t state)
290 struct pxa_gpio_chip *c;
293 for_each_gpio_chip(gpio, c) {
294 c->saved_gplr = __raw_readl(c->regbase + GPLR_OFFSET);
295 c->saved_gpdr = __raw_readl(c->regbase + GPDR_OFFSET);
296 c->saved_grer = __raw_readl(c->regbase + GRER_OFFSET);
297 c->saved_gfer = __raw_readl(c->regbase + GFER_OFFSET);
299 /* Clear GPIO transition detect bits */
300 __raw_writel(0xffffffff, c->regbase + GEDR_OFFSET);
305 static int pxa_gpio_resume(struct sys_device *dev)
307 struct pxa_gpio_chip *c;
310 for_each_gpio_chip(gpio, c) {
311 /* restore level with set/clear */
312 __raw_writel( c->saved_gplr, c->regbase + GPSR_OFFSET);
313 __raw_writel(~c->saved_gplr, c->regbase + GPCR_OFFSET);
315 __raw_writel(c->saved_grer, c->regbase + GRER_OFFSET);
316 __raw_writel(c->saved_gfer, c->regbase + GFER_OFFSET);
317 __raw_writel(c->saved_gpdr, c->regbase + GPDR_OFFSET);
322 #define pxa_gpio_suspend NULL
323 #define pxa_gpio_resume NULL
326 struct sysdev_class pxa_gpio_sysclass = {
328 .suspend = pxa_gpio_suspend,
329 .resume = pxa_gpio_resume,
332 static int __init pxa_gpio_init(void)
334 return sysdev_class_register(&pxa_gpio_sysclass);
337 core_initcall(pxa_gpio_init);