GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / plat-pxa / gpio.c
blob98548c6903a08aadff48196e2c4f6148968fc83d
1 /*
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>
17 #include <linux/io.h>
18 #include <linux/sysdev.h>
19 #include <linux/slab.h>
21 #include <mach/gpio.h>
23 int pxa_last_gpio;
25 struct pxa_gpio_chip {
26 struct gpio_chip chip;
27 void __iomem *regbase;
28 char label[10];
30 unsigned long irq_mask;
31 unsigned long irq_edge_rise;
32 unsigned long irq_edge_fall;
34 #ifdef CONFIG_PM
35 unsigned long saved_gplr;
36 unsigned long saved_gpdr;
37 unsigned long saved_grer;
38 unsigned long saved_gfer;
39 #endif
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;
62 unsigned long flags;
64 spin_lock_irqsave(&gpio_lock, flags);
66 value = __raw_readl(base + GPDR_OFFSET);
67 if (__gpio_is_inverted(chip->base + offset))
68 value |= mask;
69 else
70 value &= ~mask;
71 __raw_writel(value, base + GPDR_OFFSET);
73 spin_unlock_irqrestore(&gpio_lock, flags);
74 return 0;
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;
82 unsigned long flags;
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))
90 tmp &= ~mask;
91 else
92 tmp |= mask;
93 __raw_writel(tmp, base + GPDR_OFFSET);
95 spin_unlock_irqrestore(&gpio_lock, flags);
96 return 0;
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 chips = kzalloc(nbanks * sizeof(struct pxa_gpio_chip), GFP_KERNEL);
116 if (chips == NULL) {
117 pr_err("%s: failed to allocate GPIO chips\n", __func__);
118 return -ENOMEM;
121 for (i = 0, gpio = 0; i < nbanks; i++, gpio += 32) {
122 struct gpio_chip *c = &chips[i].chip;
124 sprintf(chips[i].label, "gpio-%d", i);
125 chips[i].regbase = (void __iomem *)GPIO_BANK(i);
127 c->base = gpio;
128 c->label = chips[i].label;
130 c->direction_input = pxa_gpio_direction_input;
131 c->direction_output = pxa_gpio_direction_output;
132 c->get = pxa_gpio_get;
133 c->set = pxa_gpio_set;
135 /* number of GPIOs on last bank may be less than 32 */
136 c->ngpio = (gpio + 31 > gpio_end) ? (gpio_end - gpio + 1) : 32;
137 gpiochip_add(c);
139 pxa_gpio_chips = chips;
140 return 0;
143 /* Update only those GRERx and GFERx edge detection register bits if those
144 * bits are set in c->irq_mask
146 static inline void update_edge_detect(struct pxa_gpio_chip *c)
148 uint32_t grer, gfer;
150 grer = __raw_readl(c->regbase + GRER_OFFSET) & ~c->irq_mask;
151 gfer = __raw_readl(c->regbase + GFER_OFFSET) & ~c->irq_mask;
152 grer |= c->irq_edge_rise & c->irq_mask;
153 gfer |= c->irq_edge_fall & c->irq_mask;
154 __raw_writel(grer, c->regbase + GRER_OFFSET);
155 __raw_writel(gfer, c->regbase + GFER_OFFSET);
158 static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
160 struct pxa_gpio_chip *c;
161 int gpio = irq_to_gpio(irq);
162 unsigned long gpdr, mask = GPIO_bit(gpio);
164 c = gpio_to_chip(gpio);
166 if (type == IRQ_TYPE_PROBE) {
167 /* Don't mess with enabled GPIOs using preconfigured edges or
168 * GPIOs set to alternate function or to output during probe
170 if ((c->irq_edge_rise | c->irq_edge_fall) & GPIO_bit(gpio))
171 return 0;
173 if (__gpio_is_occupied(gpio))
174 return 0;
176 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
179 gpdr = __raw_readl(c->regbase + GPDR_OFFSET);
181 if (__gpio_is_inverted(gpio))
182 __raw_writel(gpdr | mask, c->regbase + GPDR_OFFSET);
183 else
184 __raw_writel(gpdr & ~mask, c->regbase + GPDR_OFFSET);
186 if (type & IRQ_TYPE_EDGE_RISING)
187 c->irq_edge_rise |= mask;
188 else
189 c->irq_edge_rise &= ~mask;
191 if (type & IRQ_TYPE_EDGE_FALLING)
192 c->irq_edge_fall |= mask;
193 else
194 c->irq_edge_fall &= ~mask;
196 update_edge_detect(c);
198 pr_debug("%s: IRQ%d (GPIO%d) - edge%s%s\n", __func__, irq, gpio,
199 ((type & IRQ_TYPE_EDGE_RISING) ? " rising" : ""),
200 ((type & IRQ_TYPE_EDGE_FALLING) ? " falling" : ""));
201 return 0;
204 static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
206 struct pxa_gpio_chip *c;
207 int loop, gpio, gpio_base, n;
208 unsigned long gedr;
210 do {
211 loop = 0;
212 for_each_gpio_chip(gpio, c) {
213 gpio_base = c->chip.base;
215 gedr = __raw_readl(c->regbase + GEDR_OFFSET);
216 gedr = gedr & c->irq_mask;
217 __raw_writel(gedr, c->regbase + GEDR_OFFSET);
219 n = find_first_bit(&gedr, BITS_PER_LONG);
220 while (n < BITS_PER_LONG) {
221 loop = 1;
223 generic_handle_irq(gpio_to_irq(gpio_base + n));
224 n = find_next_bit(&gedr, BITS_PER_LONG, n + 1);
227 } while (loop);
230 static void pxa_ack_muxed_gpio(unsigned int irq)
232 int gpio = irq_to_gpio(irq);
233 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
235 __raw_writel(GPIO_bit(gpio), c->regbase + GEDR_OFFSET);
238 static void pxa_mask_muxed_gpio(unsigned int irq)
240 int gpio = irq_to_gpio(irq);
241 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
242 uint32_t grer, gfer;
244 c->irq_mask &= ~GPIO_bit(gpio);
246 grer = __raw_readl(c->regbase + GRER_OFFSET) & ~GPIO_bit(gpio);
247 gfer = __raw_readl(c->regbase + GFER_OFFSET) & ~GPIO_bit(gpio);
248 __raw_writel(grer, c->regbase + GRER_OFFSET);
249 __raw_writel(gfer, c->regbase + GFER_OFFSET);
252 static void pxa_unmask_muxed_gpio(unsigned int irq)
254 int gpio = irq_to_gpio(irq);
255 struct pxa_gpio_chip *c = gpio_to_chip(gpio);
257 c->irq_mask |= GPIO_bit(gpio);
258 update_edge_detect(c);
261 static struct irq_chip pxa_muxed_gpio_chip = {
262 .name = "GPIO",
263 .ack = pxa_ack_muxed_gpio,
264 .mask = pxa_mask_muxed_gpio,
265 .unmask = pxa_unmask_muxed_gpio,
266 .set_type = pxa_gpio_irq_type,
269 void __init pxa_init_gpio(int mux_irq, int start, int end, set_wake_t fn)
271 struct pxa_gpio_chip *c;
272 int gpio, irq;
274 pxa_last_gpio = end;
276 /* Initialize GPIO chips */
277 pxa_init_gpio_chip(end);
279 /* clear all GPIO edge detects */
280 for_each_gpio_chip(gpio, c) {
281 __raw_writel(0, c->regbase + GFER_OFFSET);
282 __raw_writel(0, c->regbase + GRER_OFFSET);
283 __raw_writel(~0,c->regbase + GEDR_OFFSET);
286 for (irq = gpio_to_irq(start); irq <= gpio_to_irq(end); irq++) {
287 set_irq_chip(irq, &pxa_muxed_gpio_chip);
288 set_irq_handler(irq, handle_edge_irq);
289 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
292 /* Install handler for GPIO>=2 edge detect interrupts */
293 set_irq_chained_handler(mux_irq, pxa_gpio_demux_handler);
294 pxa_muxed_gpio_chip.set_wake = fn;
297 #ifdef CONFIG_PM
298 static int pxa_gpio_suspend(struct sys_device *dev, pm_message_t state)
300 struct pxa_gpio_chip *c;
301 int gpio;
303 for_each_gpio_chip(gpio, c) {
304 c->saved_gplr = __raw_readl(c->regbase + GPLR_OFFSET);
305 c->saved_gpdr = __raw_readl(c->regbase + GPDR_OFFSET);
306 c->saved_grer = __raw_readl(c->regbase + GRER_OFFSET);
307 c->saved_gfer = __raw_readl(c->regbase + GFER_OFFSET);
309 /* Clear GPIO transition detect bits */
310 __raw_writel(0xffffffff, c->regbase + GEDR_OFFSET);
312 return 0;
315 static int pxa_gpio_resume(struct sys_device *dev)
317 struct pxa_gpio_chip *c;
318 int gpio;
320 for_each_gpio_chip(gpio, c) {
321 /* restore level with set/clear */
322 __raw_writel( c->saved_gplr, c->regbase + GPSR_OFFSET);
323 __raw_writel(~c->saved_gplr, c->regbase + GPCR_OFFSET);
325 __raw_writel(c->saved_grer, c->regbase + GRER_OFFSET);
326 __raw_writel(c->saved_gfer, c->regbase + GFER_OFFSET);
327 __raw_writel(c->saved_gpdr, c->regbase + GPDR_OFFSET);
329 return 0;
331 #else
332 #define pxa_gpio_suspend NULL
333 #define pxa_gpio_resume NULL
334 #endif
336 struct sysdev_class pxa_gpio_sysclass = {
337 .name = "gpio",
338 .suspend = pxa_gpio_suspend,
339 .resume = pxa_gpio_resume,
342 static int __init pxa_gpio_init(void)
344 return sysdev_class_register(&pxa_gpio_sysclass);
347 core_initcall(pxa_gpio_init);