diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-08-19 04:40:05 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:22 +0200 |
commit | 1cdf2482d11f30ad65b64cfcb02c194a5a440f75 (patch) | |
tree | 106cd0790030d375a2577ce34bb9470dd671d754 /arch/arm/include/asm/arch-rmobile/rmobile.h | |
parent | 4fb44e22ec3ddc48b730865cf2c00e98224cee99 (diff) | |
download | u-boot-imx-1cdf2482d11f30ad65b64cfcb02c194a5a440f75.zip u-boot-imx-1cdf2482d11f30ad65b64cfcb02c194a5a440f75.tar.gz u-boot-imx-1cdf2482d11f30ad65b64cfcb02c194a5a440f75.tar.bz2 |
arm: rmobile: Add support Renesas SH73A0
Renesas SH73A0 is CPU with Cortex-A9.
This supports the basic register definition and GPIO.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/include/asm/arch-rmobile/rmobile.h')
-rw-r--r-- | arch/arm/include/asm/arch-rmobile/rmobile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/rmobile.h b/arch/arm/include/asm/arch-rmobile/rmobile.h index bf5e22a..a3468e9 100644 --- a/arch/arm/include/asm/arch-rmobile/rmobile.h +++ b/arch/arm/include/asm/arch-rmobile/rmobile.h @@ -2,7 +2,11 @@ #define __ASM_ARCH_RMOBILE_H #if defined(CONFIG_RMOBILE) +#if defined(CONFIG_SH73A0) +#include <asm/arch/sh73a0.h> +#else #error "SOC Name not defined" +#endif #endif /* CONFIG_RMOBILE */ #endif /* __ASM_ARCH_RMOBILE_H */ |