blob: 0180f584ef03d81cc432197e4a23f29eecc2f873 [file] [log] [blame]
Haavard Skinnemoen6a4e5222007-02-05 16:57:13 +01001#ifndef __ASM_AVR32_ARCH_GPIO_H
2#define __ASM_AVR32_ARCH_GPIO_H
3
4#include <linux/compiler.h>
5#include <asm/irq.h>
6
7
David Brownellb98348b2008-02-04 22:28:28 -08008/* Some GPIO chips can manage IRQs; some can't. The exact numbers can
9 * be changed if needed, but for the moment they're not configurable.
10 */
11#define ARCH_NR_GPIOS (NR_GPIO_IRQS + 2 * 32)
Haavard Skinnemoen6a4e5222007-02-05 16:57:13 +010012
Haavard Skinnemoen6a4e5222007-02-05 16:57:13 +010013
David Brownellb98348b2008-02-04 22:28:28 -080014/* Arch-neutral GPIO API, supporting both "native" and external GPIOs. */
15#include <asm-generic/gpio.h>
16
17static inline int gpio_get_value(unsigned int gpio)
18{
19 return __gpio_get_value(gpio);
20}
21
22static inline void gpio_set_value(unsigned int gpio, int value)
23{
24 __gpio_set_value(gpio, value);
25}
26
27static inline int gpio_cansleep(unsigned int gpio)
28{
29 return __gpio_cansleep(gpio);
30}
31
David Brownell2ae795b2007-05-24 13:52:08 -070032
Haavard Skinnemoen6a4e5222007-02-05 16:57:13 +010033static inline int gpio_to_irq(unsigned int gpio)
34{
David Brownellb98348b2008-02-04 22:28:28 -080035 if (gpio < NR_GPIO_IRQS)
36 return gpio + GPIO_IRQ_BASE;
37 return -EINVAL;
Haavard Skinnemoen6a4e5222007-02-05 16:57:13 +010038}
39
40static inline int irq_to_gpio(unsigned int irq)
41{
42 return irq - GPIO_IRQ_BASE;
43}
44
45#endif /* __ASM_AVR32_ARCH_GPIO_H */