Skip to content

Commit

Permalink
Blackfin arch: Finalize the generic gpio support - add gpio_to_irq an…
Browse files Browse the repository at this point in the history
…d irq_to_gpio

Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
  • Loading branch information
Michael Hennerich authored and Bryan Wu committed Jul 24, 2007
1 parent bc8c84c commit 301af29
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions include/asm-blackfin/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,19 @@ unsigned short gpio_get_value(unsigned short gpio);
void gpio_direction_input(unsigned short gpio);
void gpio_direction_output(unsigned short gpio);

#include <asm-generic/gpio.h> /* cansleep wrappers */
#include <asm/irq.h>

static inline int gpio_to_irq(unsigned gpio)
{
return (gpio + GPIO_IRQ_BASE);
}

static inline int irq_to_gpio(unsigned irq)
{
return (irq - GPIO_IRQ_BASE);
}

#endif /* __ASSEMBLY__ */

#endif /* __ARCH_BLACKFIN_GPIO_H__ */
2 changes: 2 additions & 0 deletions include/asm-blackfin/mach-bf533/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ Core Emulation **
#define IRQ_PF14 47
#define IRQ_PF15 48

#define GPIO_IRQ_BASE IRQ_PF0

#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
#define NR_IRQS (IRQ_PF15+1)
#else
Expand Down
2 changes: 2 additions & 0 deletions include/asm-blackfin/mach-bf537/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ Core Emulation **
#define IRQ_PH14 96
#define IRQ_PH15 97

#define GPIO_IRQ_BASE IRQ_PF0

#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
#define NR_IRQS (IRQ_PH15+1)
#else
Expand Down
2 changes: 2 additions & 0 deletions include/asm-blackfin/mach-bf548/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,8 @@ Events (highest priority) EMU 0
#define IRQ_PJ14 BFIN_PJ_IRQ(14) /* N/A */
#define IRQ_PJ15 BFIN_PJ_IRQ(15) /* N/A */

#define GPIO_IRQ_BASE IRQ_PA0

#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
#define NR_IRQS (IRQ_PJ15+1)
#else
Expand Down
2 changes: 2 additions & 0 deletions include/asm-blackfin/mach-bf561/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@
#define IRQ_PF46 119
#define IRQ_PF47 120

#define GPIO_IRQ_BASE IRQ_PF0

#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
#define NR_IRQS (IRQ_PF47 + 1)
#else
Expand Down

0 comments on commit 301af29

Please sign in to comment.