blob: 9ec622bdb5101ab396a7aa34b42a1567131bf4b5 [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>
Biju Das3e5f3db2021-03-17 14:11:50 +00004 * (C) Copyright 2012-2021 Renesas Solutions Corp.
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +09005 */
6#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -07007#include <cpu_func.h>
Simon Glass90526e92020-05-10 11:39:56 -06008#include <asm/cache.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090010#include <asm/io.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060011#include <env.h>
Marek Vasut00e4b572018-12-03 13:28:25 +010012#include <linux/ctype.h>
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090013
14#ifdef CONFIG_ARCH_CPU_INIT
15int arch_cpu_init(void)
16{
17 icache_enable();
18 return 0;
19}
20#endif
21
Takeshi Kihara5055a4e2018-12-04 11:53:24 +090022/* R-Car Gen3 D-cache is enabled in memmap-gen3.c */
23#ifndef CONFIG_RCAR_GEN3
Trevor Woerner10015022019-05-03 09:41:00 -040024#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090025void enable_caches(void)
26{
27 dcache_enable();
28}
29#endif
Marek Vasute5cb6bd2018-10-31 15:06:50 +010030#endif
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090031
32#ifdef CONFIG_DISPLAY_CPUINFO
Chris Brandt35295962017-08-23 14:53:59 -050033#ifndef CONFIG_RZA1
Biju Das3e5f3db2021-03-17 14:11:50 +000034__weak const u8 *rzg_get_cpu_name(void)
35{
36 return 0;
37}
38
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000039static u32 __rmobile_get_cpu_type(void)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090040{
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000041 return 0x0;
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090042}
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000043u32 rmobile_get_cpu_type(void)
44 __attribute__((weak, alias("__rmobile_get_cpu_type")));
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090045
Tetsuyuki Kobayashi4f007b82012-07-25 18:24:21 +000046static u32 __rmobile_get_cpu_rev_integer(void)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090047{
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000048 return 0;
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090049}
Tetsuyuki Kobayashi4f007b82012-07-25 18:24:21 +000050u32 rmobile_get_cpu_rev_integer(void)
51 __attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
52
53static u32 __rmobile_get_cpu_rev_fraction(void)
54{
55 return 0;
56}
57u32 rmobile_get_cpu_rev_fraction(void)
58 __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090059
Biju Das3e5f3db2021-03-17 14:11:50 +000060/* CPU information table */
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090061static const struct {
62 u16 cpu_type;
63 u8 cpu_name[10];
64} rmobile_cpuinfo[] = {
Marek Vasut262e9152017-11-25 23:54:10 +010065 { RMOBILE_CPU_TYPE_SH73A0, "SH73A0" },
66 { RMOBILE_CPU_TYPE_R8A7740, "R8A7740" },
67 { RMOBILE_CPU_TYPE_R8A7790, "R8A7790" },
68 { RMOBILE_CPU_TYPE_R8A7791, "R8A7791" },
69 { RMOBILE_CPU_TYPE_R8A7792, "R8A7792" },
70 { RMOBILE_CPU_TYPE_R8A7793, "R8A7793" },
71 { RMOBILE_CPU_TYPE_R8A7794, "R8A7794" },
72 { RMOBILE_CPU_TYPE_R8A7795, "R8A7795" },
73 { RMOBILE_CPU_TYPE_R8A7796, "R8A7796" },
Marek Vasutf295a562018-02-26 10:35:15 +010074 { RMOBILE_CPU_TYPE_R8A77965, "R8A77965" },
Marek Vasut5cb19e72017-10-09 20:39:47 +020075 { RMOBILE_CPU_TYPE_R8A77970, "R8A77970" },
Marek Vasut57ede1a2019-07-29 19:59:44 +020076 { RMOBILE_CPU_TYPE_R8A77980, "R8A77980" },
Marek Vasuta0410a62018-04-26 10:09:06 +020077 { RMOBILE_CPU_TYPE_R8A77990, "R8A77990" },
Marek Vasut11545412017-10-08 20:52:52 +020078 { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090079 { 0x0, "CPU" },
80};
81
Marek Vasut00e4b572018-12-03 13:28:25 +010082static int rmobile_cpuinfo_idx(void)
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +090083{
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090084 int i = 0;
85 u32 cpu_type = rmobile_get_cpu_type();
Marek Vasut00e4b572018-12-03 13:28:25 +010086
87 for (; i < ARRAY_SIZE(rmobile_cpuinfo); i++)
88 if (rmobile_cpuinfo[i].cpu_type == cpu_type)
Nobuhiro Iwamatsu73ff6802014-03-28 11:54:22 +090089 break;
Marek Vasut00e4b572018-12-03 13:28:25 +010090
91 return i;
92}
93
Biju Das3e5f3db2021-03-17 14:11:50 +000094static const u8 *get_cpu_name(int idx)
95{
96 const u8 *cpu_name = rzg_get_cpu_name();
97
98 return cpu_name ? cpu_name : rmobile_cpuinfo[idx].cpu_name;
99}
100
Marek Vasut00e4b572018-12-03 13:28:25 +0100101#ifdef CONFIG_ARCH_MISC_INIT
102int arch_misc_init(void)
103{
104 int i, idx = rmobile_cpuinfo_idx();
Biju Das3e5f3db2021-03-17 14:11:50 +0000105 const u8 *cpu_name = get_cpu_name(idx);
Marek Vasut00e4b572018-12-03 13:28:25 +0100106 char cpu[10] = { 0 };
107
108 for (i = 0; i < sizeof(cpu); i++)
Biju Das3e5f3db2021-03-17 14:11:50 +0000109 cpu[i] = tolower(cpu_name[i]);
Marek Vasut00e4b572018-12-03 13:28:25 +0100110
111 env_set("platform", cpu);
112
113 return 0;
114}
115#endif
116
117int print_cpuinfo(void)
118{
119 int i = rmobile_cpuinfo_idx();
120
121 printf("CPU: Renesas Electronics %s rev %d.%d\n",
Biju Das3e5f3db2021-03-17 14:11:50 +0000122 get_cpu_name(i), rmobile_get_cpu_rev_integer(),
Marek Vasut00e4b572018-12-03 13:28:25 +0100123 rmobile_get_cpu_rev_fraction());
124
Nobuhiro Iwamatsu4fb44e22012-06-13 16:29:47 +0900125 return 0;
126}
Chris Brandt35295962017-08-23 14:53:59 -0500127#else
128int print_cpuinfo(void)
129{
130 printf("CPU: Renesas Electronics RZ/A1\n");
131 return 0;
132}
133#endif
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +0000134#endif /* CONFIG_DISPLAY_CPUINFO */