diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2007-07-24 03:35:53 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-07-24 03:35:53 -0400 |
commit | 301af2952b35fa527c89b4c0c0c1003d50afc378 (patch) | |
tree | bd4f9fd33277cefa456aa57857c83674916b2fe4 /include/asm-blackfin/gpio.h | |
parent | bc8c84c947ad65cd2850c43f96bea825e426f9eb (diff) |
Blackfin arch: Finalize the generic gpio support - add gpio_to_irq and irq_to_gpio
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'include/asm-blackfin/gpio.h')
-rw-r--r-- | include/asm-blackfin/gpio.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-blackfin/gpio.h b/include/asm-blackfin/gpio.h index 7480cfa7e2d6..e714363bc4ed 100644 --- a/include/asm-blackfin/gpio.h +++ b/include/asm-blackfin/gpio.h | |||
@@ -421,6 +421,19 @@ unsigned short gpio_get_value(unsigned short gpio); | |||
421 | void gpio_direction_input(unsigned short gpio); | 421 | void gpio_direction_input(unsigned short gpio); |
422 | void gpio_direction_output(unsigned short gpio); | 422 | void gpio_direction_output(unsigned short gpio); |
423 | 423 | ||
424 | #include <asm-generic/gpio.h> /* cansleep wrappers */ | ||
425 | #include <asm/irq.h> | ||
426 | |||
427 | static inline int gpio_to_irq(unsigned gpio) | ||
428 | { | ||
429 | return (gpio + GPIO_IRQ_BASE); | ||
430 | } | ||
431 | |||
432 | static inline int irq_to_gpio(unsigned irq) | ||
433 | { | ||
434 | return (irq - GPIO_IRQ_BASE); | ||
435 | } | ||
436 | |||
424 | #endif /* __ASSEMBLY__ */ | 437 | #endif /* __ASSEMBLY__ */ |
425 | 438 | ||
426 | #endif /* __ARCH_BLACKFIN_GPIO_H__ */ | 439 | #endif /* __ARCH_BLACKFIN_GPIO_H__ */ |