diff options
| author | Roger Quadros <[email protected]> | 2017-03-13 15:04:24 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-03-20 17:56:21 -0400 |
| commit | 080795b70ccf97d934676371288650cff5055ca7 (patch) | |
| tree | 78071852b3004feee875b6159636aad39a0f9e7d | |
| parent | 30719e2b92c014926c59b25d6d8736959da84219 (diff) | |
ARM: OMAP5+: GPIO: Add GPIO_TO_PIN() macro
GPIO_TO_PIN(bank, bank_gpio) returns the GPIO index
from the GPIO bank number and bank's GPIO offset number.
Signed-off-by: Roger Quadros <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Lokesh Vutla <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-omap5/gpio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-omap5/gpio.h b/arch/arm/include/asm/arch-omap5/gpio.h index 9dd03c9fa65..48e8ca50213 100644 --- a/arch/arm/include/asm/arch-omap5/gpio.h +++ b/arch/arm/include/asm/arch-omap5/gpio.h @@ -34,4 +34,8 @@ #define OMAP54XX_GPIO7_BASE 0x48051000 #define OMAP54XX_GPIO8_BASE 0x48053000 + +/* Get the GPIO index from the given bank number and bank gpio */ +#define GPIO_TO_PIN(bank, bank_gpio) (32 * (bank - 1) + (bank_gpio)) + #endif /* _GPIO_OMAP5_H */ |
