kasan: enable instrumentation of global variables
[linux-2.6/btrfs-unstable.git] / drivers / gpio / gpio-sa1100.c
blobbec397a60204ba294262241aed46ffeae17dab7f
1 /*
2 * linux/arch/arm/mach-sa1100/gpio.c
4 * Generic SA-1100 GPIO handling
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/gpio.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/io.h>
14 #include <linux/syscore_ops.h>
15 #include <mach/hardware.h>
16 #include <mach/irqs.h>
18 static int sa1100_gpio_get(struct gpio_chip *chip, unsigned offset)
20 return GPLR & GPIO_GPIO(offset);
23 static void sa1100_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
25 if (value)
26 GPSR = GPIO_GPIO(offset);
27 else
28 GPCR = GPIO_GPIO(offset);
31 static int sa1100_direction_input(struct gpio_chip *chip, unsigned offset)
33 unsigned long flags;
35 local_irq_save(flags);
36 GPDR &= ~GPIO_GPIO(offset);
37 local_irq_restore(flags);
38 return 0;
41 static int sa1100_direction_output(struct gpio_chip *chip, unsigned offset, int value)
43 unsigned long flags;
45 local_irq_save(flags);
46 sa1100_gpio_set(chip, offset, value);
47 GPDR |= GPIO_GPIO(offset);
48 local_irq_restore(flags);
49 return 0;
52 static int sa1100_to_irq(struct gpio_chip *chip, unsigned offset)
54 return IRQ_GPIO0 + offset;
57 static struct gpio_chip sa1100_gpio_chip = {
58 .label = "gpio",
59 .direction_input = sa1100_direction_input,
60 .direction_output = sa1100_direction_output,
61 .set = sa1100_gpio_set,
62 .get = sa1100_gpio_get,
63 .to_irq = sa1100_to_irq,
64 .base = 0,
65 .ngpio = GPIO_MAX + 1,
69 * SA1100 GPIO edge detection for IRQs:
70 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
71 * Use this instead of directly setting GRER/GFER.
73 static int GPIO_IRQ_rising_edge;
74 static int GPIO_IRQ_falling_edge;
75 static int GPIO_IRQ_mask;
77 static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
79 unsigned int mask;
81 mask = BIT(d->hwirq);
83 if (type == IRQ_TYPE_PROBE) {
84 if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask)
85 return 0;
86 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
89 if (type & IRQ_TYPE_EDGE_RISING)
90 GPIO_IRQ_rising_edge |= mask;
91 else
92 GPIO_IRQ_rising_edge &= ~mask;
93 if (type & IRQ_TYPE_EDGE_FALLING)
94 GPIO_IRQ_falling_edge |= mask;
95 else
96 GPIO_IRQ_falling_edge &= ~mask;
98 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
99 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
101 return 0;
105 * GPIO IRQs must be acknowledged.
107 static void sa1100_gpio_ack(struct irq_data *d)
109 GEDR = BIT(d->hwirq);
112 static void sa1100_gpio_mask(struct irq_data *d)
114 unsigned int mask = BIT(d->hwirq);
116 GPIO_IRQ_mask &= ~mask;
118 GRER &= ~mask;
119 GFER &= ~mask;
122 static void sa1100_gpio_unmask(struct irq_data *d)
124 unsigned int mask = BIT(d->hwirq);
126 GPIO_IRQ_mask |= mask;
128 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
129 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
132 static int sa1100_gpio_wake(struct irq_data *d, unsigned int on)
134 if (on)
135 PWER |= BIT(d->hwirq);
136 else
137 PWER &= ~BIT(d->hwirq);
138 return 0;
142 * This is for GPIO IRQs
144 static struct irq_chip sa1100_gpio_irq_chip = {
145 .name = "GPIO",
146 .irq_ack = sa1100_gpio_ack,
147 .irq_mask = sa1100_gpio_mask,
148 .irq_unmask = sa1100_gpio_unmask,
149 .irq_set_type = sa1100_gpio_type,
150 .irq_set_wake = sa1100_gpio_wake,
153 static int sa1100_gpio_irqdomain_map(struct irq_domain *d,
154 unsigned int irq, irq_hw_number_t hwirq)
156 irq_set_chip_and_handler(irq, &sa1100_gpio_irq_chip,
157 handle_edge_irq);
158 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
160 return 0;
163 static struct irq_domain_ops sa1100_gpio_irqdomain_ops = {
164 .map = sa1100_gpio_irqdomain_map,
165 .xlate = irq_domain_xlate_onetwocell,
168 static struct irq_domain *sa1100_gpio_irqdomain;
171 * IRQ 0-11 (GPIO) handler. We enter here with the
172 * irq_controller_lock held, and IRQs disabled. Decode the IRQ
173 * and call the handler.
175 static void
176 sa1100_gpio_handler(unsigned int irq, struct irq_desc *desc)
178 unsigned int mask;
180 mask = GEDR;
181 do {
183 * clear down all currently active IRQ sources.
184 * We will be processing them all.
186 GEDR = mask;
188 irq = IRQ_GPIO0;
189 do {
190 if (mask & 1)
191 generic_handle_irq(irq);
192 mask >>= 1;
193 irq++;
194 } while (mask);
196 mask = GEDR;
197 } while (mask);
200 static int sa1100_gpio_suspend(void)
203 * Set the appropriate edges for wakeup.
205 GRER = PWER & GPIO_IRQ_rising_edge;
206 GFER = PWER & GPIO_IRQ_falling_edge;
209 * Clear any pending GPIO interrupts.
211 GEDR = GEDR;
213 return 0;
216 static void sa1100_gpio_resume(void)
218 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
219 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
222 static struct syscore_ops sa1100_gpio_syscore_ops = {
223 .suspend = sa1100_gpio_suspend,
224 .resume = sa1100_gpio_resume,
227 static int __init sa1100_gpio_init_devicefs(void)
229 register_syscore_ops(&sa1100_gpio_syscore_ops);
230 return 0;
233 device_initcall(sa1100_gpio_init_devicefs);
235 void __init sa1100_init_gpio(void)
237 /* clear all GPIO edge detects */
238 GFER = 0;
239 GRER = 0;
240 GEDR = -1;
242 gpiochip_add(&sa1100_gpio_chip);
244 sa1100_gpio_irqdomain = irq_domain_add_simple(NULL,
245 28, IRQ_GPIO0,
246 &sa1100_gpio_irqdomain_ops, NULL);
249 * Install handlers for GPIO 0-10 edge detect interrupts
251 irq_set_chained_handler(IRQ_GPIO0_SC, sa1100_gpio_handler);
252 irq_set_chained_handler(IRQ_GPIO1_SC, sa1100_gpio_handler);
253 irq_set_chained_handler(IRQ_GPIO2_SC, sa1100_gpio_handler);
254 irq_set_chained_handler(IRQ_GPIO3_SC, sa1100_gpio_handler);
255 irq_set_chained_handler(IRQ_GPIO4_SC, sa1100_gpio_handler);
256 irq_set_chained_handler(IRQ_GPIO5_SC, sa1100_gpio_handler);
257 irq_set_chained_handler(IRQ_GPIO6_SC, sa1100_gpio_handler);
258 irq_set_chained_handler(IRQ_GPIO7_SC, sa1100_gpio_handler);
259 irq_set_chained_handler(IRQ_GPIO8_SC, sa1100_gpio_handler);
260 irq_set_chained_handler(IRQ_GPIO9_SC, sa1100_gpio_handler);
261 irq_set_chained_handler(IRQ_GPIO10_SC, sa1100_gpio_handler);
263 * Install handler for GPIO 11-27 edge detect interrupts
265 irq_set_chained_handler(IRQ_GPIO11_27, sa1100_gpio_handler);