ARM: 6148/1: nomadik-gpio: add function to configure pullup/pulldown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / plat-nomadik / gpio.c
blob50c49fa9e01a4172596511d8997e85302dc5545d
1 /*
2 * Generic GPIO driver for logic cells found in the Nomadik SoC
4 * Copyright (C) 2008,2009 STMicroelectronics
5 * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it>
6 * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/device.h>
16 #include <linux/platform_device.h>
17 #include <linux/io.h>
18 #include <linux/clk.h>
19 #include <linux/err.h>
20 #include <linux/gpio.h>
21 #include <linux/spinlock.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/slab.h>
26 #include <mach/hardware.h>
27 #include <mach/gpio.h>
30 * The GPIO module in the Nomadik family of Systems-on-Chip is an
31 * AMBA device, managing 32 pins and alternate functions. The logic block
32 * is currently only used in the Nomadik.
34 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
37 #define NMK_GPIO_PER_CHIP 32
38 struct nmk_gpio_chip {
39 struct gpio_chip chip;
40 void __iomem *addr;
41 struct clk *clk;
42 unsigned int parent_irq;
43 spinlock_t lock;
44 /* Keep track of configured edges */
45 u32 edge_rising;
46 u32 edge_falling;
49 static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
50 unsigned offset, enum nmk_gpio_pull pull)
52 u32 bit = 1 << offset;
53 u32 pdis;
55 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
56 if (pull == NMK_GPIO_PULL_NONE)
57 pdis |= bit;
58 else
59 pdis &= ~bit;
60 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
62 if (pull == NMK_GPIO_PULL_UP)
63 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
64 else if (pull == NMK_GPIO_PULL_DOWN)
65 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
68 /**
69 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
70 * @gpio: pin number
71 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
73 * Enables/disables pull up/down on a specified pin. This only takes effect if
74 * the pin is configured as an input (either explicitly or by the alternate
75 * function).
77 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
78 * configured as an input. Otherwise, due to the way the controller registers
79 * work, this function will change the value output on the pin.
81 int nmk_gpio_set_pull(int gpio, enum nmk_gpio_pull pull)
83 struct nmk_gpio_chip *nmk_chip;
84 unsigned long flags;
86 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
87 if (!nmk_chip)
88 return -EINVAL;
90 spin_lock_irqsave(&nmk_chip->lock, flags);
91 __nmk_gpio_set_pull(nmk_chip, gpio - nmk_chip->chip.base, pull);
92 spin_unlock_irqrestore(&nmk_chip->lock, flags);
94 return 0;
97 /* Mode functions */
98 int nmk_gpio_set_mode(int gpio, int gpio_mode)
100 struct nmk_gpio_chip *nmk_chip;
101 unsigned long flags;
102 u32 afunc, bfunc, bit;
104 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
105 if (!nmk_chip)
106 return -EINVAL;
108 bit = 1 << (gpio - nmk_chip->chip.base);
110 spin_lock_irqsave(&nmk_chip->lock, flags);
111 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
112 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
113 if (gpio_mode & NMK_GPIO_ALT_A)
114 afunc |= bit;
115 if (gpio_mode & NMK_GPIO_ALT_B)
116 bfunc |= bit;
117 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
118 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
119 spin_unlock_irqrestore(&nmk_chip->lock, flags);
121 return 0;
123 EXPORT_SYMBOL(nmk_gpio_set_mode);
125 int nmk_gpio_get_mode(int gpio)
127 struct nmk_gpio_chip *nmk_chip;
128 u32 afunc, bfunc, bit;
130 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
131 if (!nmk_chip)
132 return -EINVAL;
134 bit = 1 << (gpio - nmk_chip->chip.base);
136 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
137 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
139 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
141 EXPORT_SYMBOL(nmk_gpio_get_mode);
144 /* IRQ functions */
145 static inline int nmk_gpio_get_bitmask(int gpio)
147 return 1 << (gpio % 32);
150 static void nmk_gpio_irq_ack(unsigned int irq)
152 int gpio;
153 struct nmk_gpio_chip *nmk_chip;
155 gpio = NOMADIK_IRQ_TO_GPIO(irq);
156 nmk_chip = get_irq_chip_data(irq);
157 if (!nmk_chip)
158 return;
159 writel(nmk_gpio_get_bitmask(gpio), nmk_chip->addr + NMK_GPIO_IC);
162 static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
163 int gpio, bool enable)
165 u32 bitmask = nmk_gpio_get_bitmask(gpio);
166 u32 reg;
168 /* we must individually set/clear the two edges */
169 if (nmk_chip->edge_rising & bitmask) {
170 reg = readl(nmk_chip->addr + NMK_GPIO_RIMSC);
171 if (enable)
172 reg |= bitmask;
173 else
174 reg &= ~bitmask;
175 writel(reg, nmk_chip->addr + NMK_GPIO_RIMSC);
177 if (nmk_chip->edge_falling & bitmask) {
178 reg = readl(nmk_chip->addr + NMK_GPIO_FIMSC);
179 if (enable)
180 reg |= bitmask;
181 else
182 reg &= ~bitmask;
183 writel(reg, nmk_chip->addr + NMK_GPIO_FIMSC);
187 static void nmk_gpio_irq_modify(unsigned int irq, bool enable)
189 int gpio;
190 struct nmk_gpio_chip *nmk_chip;
191 unsigned long flags;
192 u32 bitmask;
194 gpio = NOMADIK_IRQ_TO_GPIO(irq);
195 nmk_chip = get_irq_chip_data(irq);
196 bitmask = nmk_gpio_get_bitmask(gpio);
197 if (!nmk_chip)
198 return;
200 spin_lock_irqsave(&nmk_chip->lock, flags);
201 __nmk_gpio_irq_modify(nmk_chip, gpio, enable);
202 spin_unlock_irqrestore(&nmk_chip->lock, flags);
205 static void nmk_gpio_irq_mask(unsigned int irq)
207 nmk_gpio_irq_modify(irq, false);
210 static void nmk_gpio_irq_unmask(unsigned int irq)
212 nmk_gpio_irq_modify(irq, true);
215 static int nmk_gpio_irq_set_type(unsigned int irq, unsigned int type)
217 bool enabled = !(irq_to_desc(irq)->status & IRQ_DISABLED);
218 int gpio;
219 struct nmk_gpio_chip *nmk_chip;
220 unsigned long flags;
221 u32 bitmask;
223 gpio = NOMADIK_IRQ_TO_GPIO(irq);
224 nmk_chip = get_irq_chip_data(irq);
225 bitmask = nmk_gpio_get_bitmask(gpio);
226 if (!nmk_chip)
227 return -EINVAL;
229 if (type & IRQ_TYPE_LEVEL_HIGH)
230 return -EINVAL;
231 if (type & IRQ_TYPE_LEVEL_LOW)
232 return -EINVAL;
234 spin_lock_irqsave(&nmk_chip->lock, flags);
236 if (enabled)
237 __nmk_gpio_irq_modify(nmk_chip, gpio, false);
239 nmk_chip->edge_rising &= ~bitmask;
240 if (type & IRQ_TYPE_EDGE_RISING)
241 nmk_chip->edge_rising |= bitmask;
243 nmk_chip->edge_falling &= ~bitmask;
244 if (type & IRQ_TYPE_EDGE_FALLING)
245 nmk_chip->edge_falling |= bitmask;
247 if (enabled)
248 __nmk_gpio_irq_modify(nmk_chip, gpio, true);
250 spin_unlock_irqrestore(&nmk_chip->lock, flags);
252 return 0;
255 static struct irq_chip nmk_gpio_irq_chip = {
256 .name = "Nomadik-GPIO",
257 .ack = nmk_gpio_irq_ack,
258 .mask = nmk_gpio_irq_mask,
259 .unmask = nmk_gpio_irq_unmask,
260 .set_type = nmk_gpio_irq_set_type,
263 static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
265 struct nmk_gpio_chip *nmk_chip;
266 struct irq_chip *host_chip = get_irq_chip(irq);
267 unsigned int gpio_irq;
268 u32 pending;
269 unsigned int first_irq;
271 if (host_chip->mask_ack)
272 host_chip->mask_ack(irq);
273 else {
274 host_chip->mask(irq);
275 if (host_chip->ack)
276 host_chip->ack(irq);
279 nmk_chip = get_irq_data(irq);
280 first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base);
281 while ( (pending = readl(nmk_chip->addr + NMK_GPIO_IS)) ) {
282 gpio_irq = first_irq + __ffs(pending);
283 generic_handle_irq(gpio_irq);
286 host_chip->unmask(irq);
289 static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
291 unsigned int first_irq;
292 int i;
294 first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base);
295 for (i = first_irq; i < first_irq + NMK_GPIO_PER_CHIP; i++) {
296 set_irq_chip(i, &nmk_gpio_irq_chip);
297 set_irq_handler(i, handle_edge_irq);
298 set_irq_flags(i, IRQF_VALID);
299 set_irq_chip_data(i, nmk_chip);
300 set_irq_type(i, IRQ_TYPE_EDGE_FALLING);
302 set_irq_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
303 set_irq_data(nmk_chip->parent_irq, nmk_chip);
304 return 0;
307 /* I/O Functions */
308 static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
310 struct nmk_gpio_chip *nmk_chip =
311 container_of(chip, struct nmk_gpio_chip, chip);
313 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
314 return 0;
317 static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
319 struct nmk_gpio_chip *nmk_chip =
320 container_of(chip, struct nmk_gpio_chip, chip);
321 u32 bit = 1 << offset;
323 return (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
326 static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
327 int val)
329 struct nmk_gpio_chip *nmk_chip =
330 container_of(chip, struct nmk_gpio_chip, chip);
331 u32 bit = 1 << offset;
333 if (val)
334 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
335 else
336 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
339 static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
340 int val)
342 struct nmk_gpio_chip *nmk_chip =
343 container_of(chip, struct nmk_gpio_chip, chip);
345 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
346 nmk_gpio_set_output(chip, offset, val);
348 return 0;
351 /* This structure is replicated for each GPIO block allocated at probe time */
352 static struct gpio_chip nmk_gpio_template = {
353 .direction_input = nmk_gpio_make_input,
354 .get = nmk_gpio_get_input,
355 .direction_output = nmk_gpio_make_output,
356 .set = nmk_gpio_set_output,
357 .ngpio = NMK_GPIO_PER_CHIP,
358 .can_sleep = 0,
361 static int __init nmk_gpio_probe(struct platform_device *dev)
363 struct nmk_gpio_platform_data *pdata = dev->dev.platform_data;
364 struct nmk_gpio_chip *nmk_chip;
365 struct gpio_chip *chip;
366 struct resource *res;
367 struct clk *clk;
368 int irq;
369 int ret;
371 if (!pdata)
372 return -ENODEV;
374 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
375 if (!res) {
376 ret = -ENOENT;
377 goto out;
380 irq = platform_get_irq(dev, 0);
381 if (irq < 0) {
382 ret = irq;
383 goto out;
386 if (request_mem_region(res->start, resource_size(res),
387 dev_name(&dev->dev)) == NULL) {
388 ret = -EBUSY;
389 goto out;
392 clk = clk_get(&dev->dev, NULL);
393 if (IS_ERR(clk)) {
394 ret = PTR_ERR(clk);
395 goto out_release;
398 clk_enable(clk);
400 nmk_chip = kzalloc(sizeof(*nmk_chip), GFP_KERNEL);
401 if (!nmk_chip) {
402 ret = -ENOMEM;
403 goto out_clk;
406 * The virt address in nmk_chip->addr is in the nomadik register space,
407 * so we can simply convert the resource address, without remapping
409 nmk_chip->clk = clk;
410 nmk_chip->addr = io_p2v(res->start);
411 nmk_chip->chip = nmk_gpio_template;
412 nmk_chip->parent_irq = irq;
413 spin_lock_init(&nmk_chip->lock);
415 chip = &nmk_chip->chip;
416 chip->base = pdata->first_gpio;
417 chip->label = pdata->name;
418 chip->dev = &dev->dev;
419 chip->owner = THIS_MODULE;
421 ret = gpiochip_add(&nmk_chip->chip);
422 if (ret)
423 goto out_free;
425 platform_set_drvdata(dev, nmk_chip);
427 nmk_gpio_init_irq(nmk_chip);
429 dev_info(&dev->dev, "Bits %i-%i at address %p\n",
430 nmk_chip->chip.base, nmk_chip->chip.base+31, nmk_chip->addr);
431 return 0;
433 out_free:
434 kfree(nmk_chip);
435 out_clk:
436 clk_disable(clk);
437 clk_put(clk);
438 out_release:
439 release_mem_region(res->start, resource_size(res));
440 out:
441 dev_err(&dev->dev, "Failure %i for GPIO %i-%i\n", ret,
442 pdata->first_gpio, pdata->first_gpio+31);
443 return ret;
446 static int __exit nmk_gpio_remove(struct platform_device *dev)
448 struct nmk_gpio_chip *nmk_chip;
449 struct resource *res;
451 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
453 nmk_chip = platform_get_drvdata(dev);
454 gpiochip_remove(&nmk_chip->chip);
455 clk_disable(nmk_chip->clk);
456 clk_put(nmk_chip->clk);
457 kfree(nmk_chip);
458 release_mem_region(res->start, resource_size(res));
459 return 0;
463 static struct platform_driver nmk_gpio_driver = {
464 .driver = {
465 .owner = THIS_MODULE,
466 .name = "gpio",
468 .probe = nmk_gpio_probe,
469 .remove = __exit_p(nmk_gpio_remove),
470 .suspend = NULL, /* to be done */
471 .resume = NULL,
474 static int __init nmk_gpio_init(void)
476 return platform_driver_register(&nmk_gpio_driver);
479 arch_initcall(nmk_gpio_init);
481 MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
482 MODULE_DESCRIPTION("Nomadik GPIO Driver");
483 MODULE_LICENSE("GPL");