diff options
| author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-07-20 13:06:54 +0900 |
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:25 +0200 |
| commit | cfa291b7b829aaee27a94da300bc7c974e15abdf (patch) | |
| tree | be74165178ba2df32c75a63f44aa66c72a433cbe /arch/arm/cpu/armv7/rmobile/cpu_info.c | |
| parent | eae6c8abd285ea81cb3c75255c231dce77346f78 (diff) | |
| download | olio-uboot-2014.01-cfa291b7b829aaee27a94da300bc7c974e15abdf.tar.xz olio-uboot-2014.01-cfa291b7b829aaee27a94da300bc7c974e15abdf.zip | |
arm: rmobile: Add support Renesas R8A7740
Renesas R8A7740 is CPU with Cortex-A9.
This supports the basic register definition and GPIO.
Signed-off-by: Hideyuki Sano <hideyuki.sano.dn@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/cpu/armv7/rmobile/cpu_info.c')
| -rw-r--r-- | arch/arm/cpu/armv7/rmobile/cpu_info.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/rmobile/cpu_info.c b/arch/arm/cpu/armv7/rmobile/cpu_info.c index 87287ce19..0e2b82ec5 100644 --- a/arch/arm/cpu/armv7/rmobile/cpu_info.c +++ b/arch/arm/cpu/armv7/rmobile/cpu_info.c @@ -68,6 +68,12 @@ int print_cpuinfo(void) rmobile_get_cpu_rev_integer(), rmobile_get_cpu_rev_fraction()); break; + case 0x40: + printf("CPU: Renesas Electronics R8A7740 rev %d.%d\n", + rmobile_get_cpu_rev_integer(), + rmobile_get_cpu_rev_fraction()); + break; + default: printf("CPU: Renesas Electronics CPU rev %d.%d\n", rmobile_get_cpu_rev_integer(), |