diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-06-13 16:29:47 +0900 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:22 +0200 |
commit | 4fb44e22ec3ddc48b730865cf2c00e98224cee99 (patch) | |
tree | c2dee998eb600b18f52175117512a8ccbd2a63d0 /arch/arm/include | |
parent | a6cd85aad24cce354c5248190841dfcbc4574750 (diff) | |
download | u-boot-imx-4fb44e22ec3ddc48b730865cf2c00e98224cee99.zip u-boot-imx-4fb44e22ec3ddc48b730865cf2c00e98224cee99.tar.gz u-boot-imx-4fb44e22ec3ddc48b730865cf2c00e98224cee99.tar.bz2 |
arm: rmobile: Add basic support for Renesas R-Mobile
This patch adds minimum support for R-Mobile. Only minimal support with timer.
This CPU can uses the peripheral of Renesas SuperH.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/arch-rmobile/rmobile.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/rmobile.h b/arch/arm/include/asm/arch-rmobile/rmobile.h new file mode 100644 index 0000000..bf5e22a --- /dev/null +++ b/arch/arm/include/asm/arch-rmobile/rmobile.h @@ -0,0 +1,8 @@ +#ifndef __ASM_ARCH_RMOBILE_H +#define __ASM_ARCH_RMOBILE_H + +#if defined(CONFIG_RMOBILE) +#error "SOC Name not defined" +#endif /* CONFIG_RMOBILE */ + +#endif /* __ASM_ARCH_RMOBILE_H */ |