2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-06-13 07:29:47 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
|
|
* (C) Copyright 2012 Renesas Solutions Corp.
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2012-06-13 07:29:47 +00:00
|
|
|
#include <asm/io.h>
|
2019-08-01 15:46:51 +00:00
|
|
|
#include <env.h>
|
2018-12-03 12:28:25 +00:00
|
|
|
#include <linux/ctype.h>
|
2012-06-13 07:29:47 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_CPU_INIT
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
icache_enable();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-12-04 02:53:24 +00:00
|
|
|
/* R-Car Gen3 D-cache is enabled in memmap-gen3.c */
|
|
|
|
#ifndef CONFIG_RCAR_GEN3
|
2019-05-03 13:41:00 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
|
2012-06-13 07:29:47 +00:00
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
#endif
|
2018-10-31 14:06:50 +00:00
|
|
|
#endif
|
2012-06-13 07:29:47 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_DISPLAY_CPUINFO
|
2017-08-23 19:53:59 +00:00
|
|
|
#ifndef CONFIG_RZA1
|
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
|
|
|
|
2014-03-28 02:54:22 +00:00
|
|
|
/* CPU infomation table */
|
|
|
|
static const struct {
|
|
|
|
u16 cpu_type;
|
|
|
|
u8 cpu_name[10];
|
|
|
|
} rmobile_cpuinfo[] = {
|
2017-11-25 22:54:10 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_SH73A0, "SH73A0" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7740, "R8A7740" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7790, "R8A7790" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7791, "R8A7791" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7792, "R8A7792" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7793, "R8A7793" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7794, "R8A7794" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7795, "R8A7795" },
|
|
|
|
{ RMOBILE_CPU_TYPE_R8A7796, "R8A7796" },
|
2018-02-26 09:35:15 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_R8A77965, "R8A77965" },
|
2017-10-09 18:39:47 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_R8A77970, "R8A77970" },
|
2019-07-29 17:59:44 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_R8A77980, "R8A77980" },
|
2018-04-26 08:09:06 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_R8A77990, "R8A77990" },
|
2017-10-08 18:52:52 +00:00
|
|
|
{ RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
|
2014-03-28 02:54:22 +00:00
|
|
|
{ 0x0, "CPU" },
|
|
|
|
};
|
|
|
|
|
2018-12-03 12:28:25 +00:00
|
|
|
static int rmobile_cpuinfo_idx(void)
|
2012-06-13 07:29:47 +00:00
|
|
|
{
|
2014-03-28 02:54:22 +00:00
|
|
|
int i = 0;
|
|
|
|
u32 cpu_type = rmobile_get_cpu_type();
|
2018-12-03 12:28:25 +00:00
|
|
|
|
|
|
|
for (; i < ARRAY_SIZE(rmobile_cpuinfo); i++)
|
|
|
|
if (rmobile_cpuinfo[i].cpu_type == cpu_type)
|
2014-03-28 02:54:22 +00:00
|
|
|
break;
|
2018-12-03 12:28:25 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_MISC_INIT
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
|
|
|
int i, idx = rmobile_cpuinfo_idx();
|
|
|
|
char cpu[10] = { 0 };
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(cpu); i++)
|
|
|
|
cpu[i] = tolower(rmobile_cpuinfo[idx].cpu_name[i]);
|
|
|
|
|
|
|
|
env_set("platform", cpu);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
int i = rmobile_cpuinfo_idx();
|
|
|
|
|
|
|
|
printf("CPU: Renesas Electronics %s rev %d.%d\n",
|
|
|
|
rmobile_cpuinfo[i].cpu_name, rmobile_get_cpu_rev_integer(),
|
|
|
|
rmobile_get_cpu_rev_fraction());
|
|
|
|
|
2012-06-13 07:29:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-08-23 19:53:59 +00:00
|
|
|
#else
|
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
printf("CPU: Renesas Electronics RZ/A1\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2012-08-19 04:40:05 +00:00
|
|
|
#endif /* CONFIG_DISPLAY_CPUINFO */
|