mm, hotplug: fix error handling in mem_online_node()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-msm / gpio-v2.c
blob56a964e52ad3fa10f1a7d83f46b6958a38a64880
1 /* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
18 #define pr_fmt(fmt) "%s: " fmt, __func__
20 #include <linux/bitmap.h>
21 #include <linux/bitops.h>
22 #include <linux/gpio.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/io.h>
26 #include <linux/irq.h>
27 #include <linux/module.h>
28 #include <linux/platform_device.h>
29 #include <linux/spinlock.h>
30 #include <mach/msm_iomap.h>
31 #include "gpiomux.h"
33 /* Bits of interest in the GPIO_IN_OUT register.
35 enum {
36 GPIO_IN = 0,
37 GPIO_OUT = 1
40 /* Bits of interest in the GPIO_INTR_STATUS register.
42 enum {
43 INTR_STATUS = 0,
46 /* Bits of interest in the GPIO_CFG register.
48 enum {
49 GPIO_OE = 9,
52 /* Bits of interest in the GPIO_INTR_CFG register.
53 * When a GPIO triggers, two separate decisions are made, controlled
54 * by two separate flags.
56 * - First, INTR_RAW_STATUS_EN controls whether or not the GPIO_INTR_STATUS
57 * register for that GPIO will be updated to reflect the triggering of that
58 * gpio. If this bit is 0, this register will not be updated.
59 * - Second, INTR_ENABLE controls whether an interrupt is triggered.
61 * If INTR_ENABLE is set and INTR_RAW_STATUS_EN is NOT set, an interrupt
62 * can be triggered but the status register will not reflect it.
64 enum {
65 INTR_ENABLE = 0,
66 INTR_POL_CTL = 1,
67 INTR_DECT_CTL = 2,
68 INTR_RAW_STATUS_EN = 3,
71 /* Codes of interest in GPIO_INTR_CFG_SU.
73 enum {
74 TARGET_PROC_SCORPION = 4,
75 TARGET_PROC_NONE = 7,
79 #define GPIO_INTR_CFG_SU(gpio) (MSM_TLMM_BASE + 0x0400 + (0x04 * (gpio)))
80 #define GPIO_CONFIG(gpio) (MSM_TLMM_BASE + 0x1000 + (0x10 * (gpio)))
81 #define GPIO_IN_OUT(gpio) (MSM_TLMM_BASE + 0x1004 + (0x10 * (gpio)))
82 #define GPIO_INTR_CFG(gpio) (MSM_TLMM_BASE + 0x1008 + (0x10 * (gpio)))
83 #define GPIO_INTR_STATUS(gpio) (MSM_TLMM_BASE + 0x100c + (0x10 * (gpio)))
85 /**
86 * struct msm_gpio_dev: the MSM8660 SoC GPIO device structure
88 * @enabled_irqs: a bitmap used to optimize the summary-irq handler. By
89 * keeping track of which gpios are unmasked as irq sources, we avoid
90 * having to do readl calls on hundreds of iomapped registers each time
91 * the summary interrupt fires in order to locate the active interrupts.
93 * @wake_irqs: a bitmap for tracking which interrupt lines are enabled
94 * as wakeup sources. When the device is suspended, interrupts which are
95 * not wakeup sources are disabled.
97 * @dual_edge_irqs: a bitmap used to track which irqs are configured
98 * as dual-edge, as this is not supported by the hardware and requires
99 * some special handling in the driver.
101 struct msm_gpio_dev {
102 struct gpio_chip gpio_chip;
103 DECLARE_BITMAP(enabled_irqs, NR_GPIO_IRQS);
104 DECLARE_BITMAP(wake_irqs, NR_GPIO_IRQS);
105 DECLARE_BITMAP(dual_edge_irqs, NR_GPIO_IRQS);
108 static DEFINE_SPINLOCK(tlmm_lock);
110 static inline struct msm_gpio_dev *to_msm_gpio_dev(struct gpio_chip *chip)
112 return container_of(chip, struct msm_gpio_dev, gpio_chip);
115 static inline void set_gpio_bits(unsigned n, void __iomem *reg)
117 writel(readl(reg) | n, reg);
120 static inline void clear_gpio_bits(unsigned n, void __iomem *reg)
122 writel(readl(reg) & ~n, reg);
125 static int msm_gpio_get(struct gpio_chip *chip, unsigned offset)
127 return readl(GPIO_IN_OUT(offset)) & BIT(GPIO_IN);
130 static void msm_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
132 writel(val ? BIT(GPIO_OUT) : 0, GPIO_IN_OUT(offset));
135 static int msm_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
137 unsigned long irq_flags;
139 spin_lock_irqsave(&tlmm_lock, irq_flags);
140 clear_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
141 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
142 return 0;
145 static int msm_gpio_direction_output(struct gpio_chip *chip,
146 unsigned offset,
147 int val)
149 unsigned long irq_flags;
151 spin_lock_irqsave(&tlmm_lock, irq_flags);
152 msm_gpio_set(chip, offset, val);
153 set_gpio_bits(BIT(GPIO_OE), GPIO_CONFIG(offset));
154 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
155 return 0;
158 static int msm_gpio_request(struct gpio_chip *chip, unsigned offset)
160 return msm_gpiomux_get(chip->base + offset);
163 static void msm_gpio_free(struct gpio_chip *chip, unsigned offset)
165 msm_gpiomux_put(chip->base + offset);
168 static int msm_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
170 return MSM_GPIO_TO_INT(chip->base + offset);
173 static inline int msm_irq_to_gpio(struct gpio_chip *chip, unsigned irq)
175 return irq - MSM_GPIO_TO_INT(chip->base);
178 static struct msm_gpio_dev msm_gpio = {
179 .gpio_chip = {
180 .base = 0,
181 .ngpio = NR_GPIO_IRQS,
182 .direction_input = msm_gpio_direction_input,
183 .direction_output = msm_gpio_direction_output,
184 .get = msm_gpio_get,
185 .set = msm_gpio_set,
186 .to_irq = msm_gpio_to_irq,
187 .request = msm_gpio_request,
188 .free = msm_gpio_free,
192 /* For dual-edge interrupts in software, since the hardware has no
193 * such support:
195 * At appropriate moments, this function may be called to flip the polarity
196 * settings of both-edge irq lines to try and catch the next edge.
198 * The attempt is considered successful if:
199 * - the status bit goes high, indicating that an edge was caught, or
200 * - the input value of the gpio doesn't change during the attempt.
201 * If the value changes twice during the process, that would cause the first
202 * test to fail but would force the second, as two opposite
203 * transitions would cause a detection no matter the polarity setting.
205 * The do-loop tries to sledge-hammer closed the timing hole between
206 * the initial value-read and the polarity-write - if the line value changes
207 * during that window, an interrupt is lost, the new polarity setting is
208 * incorrect, and the first success test will fail, causing a retry.
210 * Algorithm comes from Google's msmgpio driver, see mach-msm/gpio.c.
212 static void msm_gpio_update_dual_edge_pos(unsigned gpio)
214 int loop_limit = 100;
215 unsigned val, val2, intstat;
217 do {
218 val = readl(GPIO_IN_OUT(gpio)) & BIT(GPIO_IN);
219 if (val)
220 clear_gpio_bits(BIT(INTR_POL_CTL), GPIO_INTR_CFG(gpio));
221 else
222 set_gpio_bits(BIT(INTR_POL_CTL), GPIO_INTR_CFG(gpio));
223 val2 = readl(GPIO_IN_OUT(gpio)) & BIT(GPIO_IN);
224 intstat = readl(GPIO_INTR_STATUS(gpio)) & BIT(INTR_STATUS);
225 if (intstat || val == val2)
226 return;
227 } while (loop_limit-- > 0);
228 pr_err("dual-edge irq failed to stabilize, "
229 "interrupts dropped. %#08x != %#08x\n",
230 val, val2);
233 static void msm_gpio_irq_ack(struct irq_data *d)
235 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
237 writel(BIT(INTR_STATUS), GPIO_INTR_STATUS(gpio));
238 if (test_bit(gpio, msm_gpio.dual_edge_irqs))
239 msm_gpio_update_dual_edge_pos(gpio);
242 static void msm_gpio_irq_mask(struct irq_data *d)
244 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
245 unsigned long irq_flags;
247 spin_lock_irqsave(&tlmm_lock, irq_flags);
248 writel(TARGET_PROC_NONE, GPIO_INTR_CFG_SU(gpio));
249 clear_gpio_bits(INTR_RAW_STATUS_EN | INTR_ENABLE, GPIO_INTR_CFG(gpio));
250 __clear_bit(gpio, msm_gpio.enabled_irqs);
251 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
254 static void msm_gpio_irq_unmask(struct irq_data *d)
256 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
257 unsigned long irq_flags;
259 spin_lock_irqsave(&tlmm_lock, irq_flags);
260 __set_bit(gpio, msm_gpio.enabled_irqs);
261 set_gpio_bits(INTR_RAW_STATUS_EN | INTR_ENABLE, GPIO_INTR_CFG(gpio));
262 writel(TARGET_PROC_SCORPION, GPIO_INTR_CFG_SU(gpio));
263 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
266 static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type)
268 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
269 unsigned long irq_flags;
270 uint32_t bits;
272 spin_lock_irqsave(&tlmm_lock, irq_flags);
274 bits = readl(GPIO_INTR_CFG(gpio));
276 if (flow_type & IRQ_TYPE_EDGE_BOTH) {
277 bits |= BIT(INTR_DECT_CTL);
278 __irq_set_handler_locked(d->irq, handle_edge_irq);
279 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
280 __set_bit(gpio, msm_gpio.dual_edge_irqs);
281 else
282 __clear_bit(gpio, msm_gpio.dual_edge_irqs);
283 } else {
284 bits &= ~BIT(INTR_DECT_CTL);
285 __irq_set_handler_locked(d->irq, handle_level_irq);
286 __clear_bit(gpio, msm_gpio.dual_edge_irqs);
289 if (flow_type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH))
290 bits |= BIT(INTR_POL_CTL);
291 else
292 bits &= ~BIT(INTR_POL_CTL);
294 writel(bits, GPIO_INTR_CFG(gpio));
296 if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
297 msm_gpio_update_dual_edge_pos(gpio);
299 spin_unlock_irqrestore(&tlmm_lock, irq_flags);
301 return 0;
305 * When the summary IRQ is raised, any number of GPIO lines may be high.
306 * It is the job of the summary handler to find all those GPIO lines
307 * which have been set as summary IRQ lines and which are triggered,
308 * and to call their interrupt handlers.
310 static void msm_summary_irq_handler(unsigned int irq, struct irq_desc *desc)
312 struct irq_data *data = irq_desc_get_irq_data(desc);
313 unsigned long i;
315 for (i = find_first_bit(msm_gpio.enabled_irqs, NR_GPIO_IRQS);
316 i < NR_GPIO_IRQS;
317 i = find_next_bit(msm_gpio.enabled_irqs, NR_GPIO_IRQS, i + 1)) {
318 if (readl(GPIO_INTR_STATUS(i)) & BIT(INTR_STATUS))
319 generic_handle_irq(msm_gpio_to_irq(&msm_gpio.gpio_chip,
320 i));
322 data->chip->irq_ack(data);
325 static int msm_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
327 int gpio = msm_irq_to_gpio(&msm_gpio.gpio_chip, d->irq);
329 if (on) {
330 if (bitmap_empty(msm_gpio.wake_irqs, NR_GPIO_IRQS))
331 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 1);
332 set_bit(gpio, msm_gpio.wake_irqs);
333 } else {
334 clear_bit(gpio, msm_gpio.wake_irqs);
335 if (bitmap_empty(msm_gpio.wake_irqs, NR_GPIO_IRQS))
336 irq_set_irq_wake(TLMM_SCSS_SUMMARY_IRQ, 0);
339 return 0;
342 static struct irq_chip msm_gpio_irq_chip = {
343 .name = "msmgpio",
344 .irq_mask = msm_gpio_irq_mask,
345 .irq_unmask = msm_gpio_irq_unmask,
346 .irq_ack = msm_gpio_irq_ack,
347 .irq_set_type = msm_gpio_irq_set_type,
348 .irq_set_wake = msm_gpio_irq_set_wake,
351 static int __devinit msm_gpio_probe(struct platform_device *dev)
353 int i, irq, ret;
355 bitmap_zero(msm_gpio.enabled_irqs, NR_GPIO_IRQS);
356 bitmap_zero(msm_gpio.wake_irqs, NR_GPIO_IRQS);
357 bitmap_zero(msm_gpio.dual_edge_irqs, NR_GPIO_IRQS);
358 msm_gpio.gpio_chip.label = dev->name;
359 ret = gpiochip_add(&msm_gpio.gpio_chip);
360 if (ret < 0)
361 return ret;
363 for (i = 0; i < msm_gpio.gpio_chip.ngpio; ++i) {
364 irq = msm_gpio_to_irq(&msm_gpio.gpio_chip, i);
365 irq_set_chip_and_handler(irq, &msm_gpio_irq_chip,
366 handle_level_irq);
367 set_irq_flags(irq, IRQF_VALID);
370 irq_set_chained_handler(TLMM_SCSS_SUMMARY_IRQ,
371 msm_summary_irq_handler);
372 return 0;
375 static int __devexit msm_gpio_remove(struct platform_device *dev)
377 int ret = gpiochip_remove(&msm_gpio.gpio_chip);
379 if (ret < 0)
380 return ret;
382 irq_set_handler(TLMM_SCSS_SUMMARY_IRQ, NULL);
384 return 0;
387 static struct platform_driver msm_gpio_driver = {
388 .probe = msm_gpio_probe,
389 .remove = __devexit_p(msm_gpio_remove),
390 .driver = {
391 .name = "msmgpio",
392 .owner = THIS_MODULE,
396 static struct platform_device msm_device_gpio = {
397 .name = "msmgpio",
398 .id = -1,
401 static int __init msm_gpio_init(void)
403 int rc;
405 rc = platform_driver_register(&msm_gpio_driver);
406 if (!rc) {
407 rc = platform_device_register(&msm_device_gpio);
408 if (rc)
409 platform_driver_unregister(&msm_gpio_driver);
412 return rc;
415 static void __exit msm_gpio_exit(void)
417 platform_device_unregister(&msm_device_gpio);
418 platform_driver_unregister(&msm_gpio_driver);
421 postcore_initcall(msm_gpio_init);
422 module_exit(msm_gpio_exit);
424 MODULE_AUTHOR("Gregory Bean <gbean@codeaurora.org>");
425 MODULE_DESCRIPTION("Driver for Qualcomm MSM TLMMv2 SoC GPIOs");
426 MODULE_LICENSE("GPL v2");
427 MODULE_ALIAS("platform:msmgpio");