blob: 4e6a191cb1e77893f76c3701ea3dadb82143e947 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09002/*
3 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
4 * (C) Copyright 2012 Renesas Solutions Corp.
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09005 */
6#include <common.h>
7#include <asm/io.h>
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09008
9#ifdef CONFIG_ARCH_CPU_INIT
10int arch_cpu_init(void)
11{
12 icache_enable();
13 return 0;
14}
15#endif
16
17#ifndef CONFIG_SYS_DCACHE_OFF
18void enable_caches(void)
19{
20 dcache_enable();
21}
22#endif
23
24#ifdef CONFIG_DISPLAY_CPUINFO
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000025static u32 __rmobile_get_cpu_type(void)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090026{
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000027 return 0x0;
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090028}
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000029u32 rmobile_get_cpu_type(void)
30 __attribute__((weak, alias("__rmobile_get_cpu_type")));
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090031
Tetsuyuki Kobayashi4f007b82012-07-25 18:24:21 +000032static u32 __rmobile_get_cpu_rev_integer(void)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090033{
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000034 return 0;
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090035}
Tetsuyuki Kobayashi4f007b82012-07-25 18:24:21 +000036u32 rmobile_get_cpu_rev_integer(void)
37 __attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
38
39static u32 __rmobile_get_cpu_rev_fraction(void)
40{
41 return 0;
42}
43u32 rmobile_get_cpu_rev_fraction(void)
44 __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090045
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090046/* CPU infomation table */
47static const struct {
48 u16 cpu_type;
49 u8 cpu_name[10];
50} rmobile_cpuinfo[] = {
Marek Vasut262e9152017-11-25 23:54:10 +010051 { RMOBILE_CPU_TYPE_SH73A0, "SH73A0" },
52 { RMOBILE_CPU_TYPE_R8A7740, "R8A7740" },
53 { RMOBILE_CPU_TYPE_R8A7790, "R8A7790" },
54 { RMOBILE_CPU_TYPE_R8A7791, "R8A7791" },
55 { RMOBILE_CPU_TYPE_R8A7792, "R8A7792" },
56 { RMOBILE_CPU_TYPE_R8A7793, "R8A7793" },
57 { RMOBILE_CPU_TYPE_R8A7794, "R8A7794" },
58 { RMOBILE_CPU_TYPE_R8A7795, "R8A7795" },
59 { RMOBILE_CPU_TYPE_R8A7796, "R8A7796" },
Marek Vasutf295a562018-02-26 10:35:15 +010060 { RMOBILE_CPU_TYPE_R8A77965, "R8A77965" },
Marek Vasut5cb19e72017-10-09 20:39:47 +020061 { RMOBILE_CPU_TYPE_R8A77970, "R8A77970" },
Marek Vasut11545412017-10-08 20:52:52 +020062 { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090063 { 0x0, "CPU" },
64};
65
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090066int print_cpuinfo(void)
67{
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090068 int i = 0;
69 u32 cpu_type = rmobile_get_cpu_type();
70 for (; i < ARRAY_SIZE(rmobile_cpuinfo); i++) {
71 if (rmobile_cpuinfo[i].cpu_type == cpu_type) {
72 printf("CPU: Renesas Electronics %s rev %d.%d\n",
73 rmobile_cpuinfo[i].cpu_name,
74 rmobile_get_cpu_rev_integer(),
75 rmobile_get_cpu_rev_fraction());
76 break;
77 }
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090078 }
79 return 0;
80}
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000081#endif /* CONFIG_DISPLAY_CPUINFO */