diff options
| author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2013-11-21 17:07:45 +0900 | 
|---|---|---|
| committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2013-12-03 09:46:45 +0900 | 
| commit | bd0550fc5fcc0d7de38c56adba9e8b3e383213d0 (patch) | |
| tree | 68ddf44c76e4f192932e63454cef1d79c9721413 /arch/arm/include/asm/arch-rmobile/gpio.h | |
| parent | f4ec45229709323b1f58a096fa4ce6a67f3b9c10 (diff) | |
| download | olio-uboot-2014.01-bd0550fc5fcc0d7de38c56adba9e8b3e383213d0.tar.xz olio-uboot-2014.01-bd0550fc5fcc0d7de38c56adba9e8b3e383213d0.zip | |
arm: rmobile: Add support R8A7791
Renesas R8A7791 is CPU with Cortex-A15.
This supports the basic register definition and GPIO and
framework of PFC.
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
CC: Albert Aribaud <albert.u.boot@aribaud.net>
Diffstat (limited to 'arch/arm/include/asm/arch-rmobile/gpio.h')
| -rw-r--r-- | arch/arm/include/asm/arch-rmobile/gpio.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/arch-rmobile/gpio.h b/arch/arm/include/asm/arch-rmobile/gpio.h index 877b394b0..560e9f42d 100644 --- a/arch/arm/include/asm/arch-rmobile/gpio.h +++ b/arch/arm/include/asm/arch-rmobile/gpio.h @@ -10,6 +10,9 @@ void r8a7740_pinmux_init(void);  #elif defined(CONFIG_R8A7790)  #include "r8a7790-gpio.h"  void r8a7790_pinmux_init(void); +#elif defined(CONFIG_R8A7791) +#include "r8a7791-gpio.h" +void r8a7791_pinmux_init(void);  #endif  #endif /* __ASM_ARCH_GPIO_H */ |