2012-06-13 07:29:47 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
|
|
* (C) Copyright 2012 Renesas Solutions Corp.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-06-13 07:29:47 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_CPU_INIT
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
icache_enable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_SYS_DCACHE_OFF
|
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_DISPLAY_CPUINFO
|
2012-08-19 04:40:05 +00:00
|
|
|
static u32 __rmobile_get_cpu_type(void)
|
2012-06-13 07:29:47 +00:00
|
|
|
{
|
2012-08-19 04:40:05 +00:00
|
|
|
return 0x0;
|
2012-06-13 07:29:47 +00:00
|
|
|
}
|
2012-08-19 04:40:05 +00:00
|
|
|
u32 rmobile_get_cpu_type(void)
|
|
|
|
__attribute__((weak, alias("__rmobile_get_cpu_type")));
|
2012-06-13 07:29:47 +00:00
|
|
|
|
2012-07-25 18:24:21 +00:00
|
|
|
static u32 __rmobile_get_cpu_rev_integer(void)
|
2012-06-13 07:29:47 +00:00
|
|
|
{
|
2012-08-19 04:40:05 +00:00
|
|
|
return 0;
|
2012-06-13 07:29:47 +00:00
|
|
|
}
|
2012-07-25 18:24:21 +00:00
|
|
|
u32 rmobile_get_cpu_rev_integer(void)
|
|
|
|
__attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
|
|
|
|
|
|
|
|
static u32 __rmobile_get_cpu_rev_fraction(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
u32 rmobile_get_cpu_rev_fraction(void)
|
|
|
|
__attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
|
2012-06-13 07:29:47 +00:00
|
|
|
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
2012-08-19 04:40:05 +00:00
|
|
|
switch (rmobile_get_cpu_type()) {
|
|
|
|
case 0x37:
|
2012-07-25 18:24:21 +00:00
|
|
|
printf("CPU: Renesas Electronics SH73A0 rev %d.%d\n",
|
|
|
|
rmobile_get_cpu_rev_integer(),
|
|
|
|
rmobile_get_cpu_rev_fraction());
|
2012-08-19 04:40:05 +00:00
|
|
|
break;
|
2012-07-20 04:06:54 +00:00
|
|
|
case 0x40:
|
|
|
|
printf("CPU: Renesas Electronics R8A7740 rev %d.%d\n",
|
|
|
|
rmobile_get_cpu_rev_integer(),
|
|
|
|
rmobile_get_cpu_rev_fraction());
|
|
|
|
break;
|
|
|
|
|
2013-11-21 08:06:45 +00:00
|
|
|
case 0x45:
|
|
|
|
printf("CPU: Renesas Electronics R8A7790 rev %d\n",
|
|
|
|
rmobile_get_cpu_rev_integer());
|
|
|
|
break;
|
|
|
|
|
2012-06-13 07:29:47 +00:00
|
|
|
default:
|
2012-07-25 18:24:21 +00:00
|
|
|
printf("CPU: Renesas Electronics CPU rev %d.%d\n",
|
|
|
|
rmobile_get_cpu_rev_integer(),
|
|
|
|
rmobile_get_cpu_rev_fraction());
|
2012-06-13 07:29:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-19 04:40:05 +00:00
|
|
|
#endif /* CONFIG_DISPLAY_CPUINFO */
|