diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2016-04-01 03:51:35 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2016-08-17 10:25:35 +0900 |
commit | ee8f0cb3b03e34a75186ed9f9e3e3bf3f2f27d76 (patch) | |
tree | ff9906064c3127f6ffce09b7f8cf93abbedcf0a8 /arch/arm/mach-rmobile/include/mach/gpio.h | |
parent | 581183def6ec7e7695110ee75ea866b734c5e249 (diff) | |
download | u-boot-ee8f0cb3b03e34a75186ed9f9e3e3bf3f2f27d76.tar.gz u-boot-ee8f0cb3b03e34a75186ed9f9e3e3bf3f2f27d76.tar.xz u-boot-ee8f0cb3b03e34a75186ed9f9e3e3bf3f2f27d76.zip |
ARM: rmobile: Add support R8A7795
Renesas R8A7795 is CPU with Cortex-a57.
This supports the basic register definition and GPIO and
framework of PFC.
Signed-off-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/mach-rmobile/include/mach/gpio.h')
-rw-r--r-- | arch/arm/mach-rmobile/include/mach/gpio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-rmobile/include/mach/gpio.h b/arch/arm/mach-rmobile/include/mach/gpio.h index 93b20af7ea..d8703f5fc6 100644 --- a/arch/arm/mach-rmobile/include/mach/gpio.h +++ b/arch/arm/mach-rmobile/include/mach/gpio.h @@ -19,6 +19,9 @@ void r8a7793_pinmux_init(void); #elif defined(CONFIG_R8A7794) #include "r8a7794-gpio.h" void r8a7794_pinmux_init(void); +#elif defined(CONFIG_R8A7795) +#include "r8a7795-gpio.h" +void r8a7795_pinmux_init(void); #endif #endif /* __ASM_ARCH_GPIO_H */ |