Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65980
b: refs/heads/master
c: 301af29
h: refs/heads/master
v: v3
  • Loading branch information
Michael Hennerich authored and Bryan Wu committed Jul 24, 2007
1 parent 3b5fda2 commit f3b2b99
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bc8c84c947ad65cd2850c43f96bea825e426f9eb
refs/heads/master: 301af2952b35fa527c89b4c0c0c1003d50afc378
13 changes: 13 additions & 0 deletions trunk/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 trunk/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 trunk/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 trunk/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 trunk/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 f3b2b99

Please sign in to comment.