blob: ce15741c41263ecc920b08876f069eff838f3e82 [file] [log] [blame]
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +09001/*
2 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
3 * (C) Copyright 2012 Renesas Solutions Corp.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +09006 */
7#include <common.h>
8#include <asm/io.h>
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +09009
10#ifdef CONFIG_ARCH_CPU_INIT
11int arch_cpu_init(void)
12{
13 icache_enable();
14 return 0;
15}
16#endif
17
18#ifndef CONFIG_SYS_DCACHE_OFF
19void enable_caches(void)
20{
21 dcache_enable();
22}
23#endif
24
25#ifdef CONFIG_DISPLAY_CPUINFO
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000026static u32 __rmobile_get_cpu_type(void)
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090027{
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000028 return 0x0;
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090029}
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000030u32 rmobile_get_cpu_type(void)
31 __attribute__((weak, alias("__rmobile_get_cpu_type")));
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090032
Tetsuyuki Kobayashi7811e542012-07-25 18:24:21 +000033static u32 __rmobile_get_cpu_rev_integer(void)
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090034{
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000035 return 0;
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090036}
Tetsuyuki Kobayashi7811e542012-07-25 18:24:21 +000037u32 rmobile_get_cpu_rev_integer(void)
38 __attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
39
40static u32 __rmobile_get_cpu_rev_fraction(void)
41{
42 return 0;
43}
44u32 rmobile_get_cpu_rev_fraction(void)
45 __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090046
Nobuhiro Iwamatsu524ed8b2014-03-28 11:54:22 +090047/* CPU infomation table */
48static const struct {
49 u16 cpu_type;
50 u8 cpu_name[10];
51} rmobile_cpuinfo[] = {
Marek Vasutb8f814b2017-11-25 23:54:10 +010052 { RMOBILE_CPU_TYPE_SH73A0, "SH73A0" },
53 { RMOBILE_CPU_TYPE_R8A7740, "R8A7740" },
54 { RMOBILE_CPU_TYPE_R8A7790, "R8A7790" },
55 { RMOBILE_CPU_TYPE_R8A7791, "R8A7791" },
56 { RMOBILE_CPU_TYPE_R8A7792, "R8A7792" },
57 { RMOBILE_CPU_TYPE_R8A7793, "R8A7793" },
58 { RMOBILE_CPU_TYPE_R8A7794, "R8A7794" },
59 { RMOBILE_CPU_TYPE_R8A7795, "R8A7795" },
60 { RMOBILE_CPU_TYPE_R8A7796, "R8A7796" },
Marek Vasut1ecc0bd2018-02-26 10:35:15 +010061 { RMOBILE_CPU_TYPE_R8A77965, "R8A77965" },
Marek Vasut46175fc2017-10-09 20:39:47 +020062 { RMOBILE_CPU_TYPE_R8A77970, "R8A77970" },
Marek Vasut04cd2e22017-10-08 20:52:52 +020063 { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
Nobuhiro Iwamatsu524ed8b2014-03-28 11:54:22 +090064 { 0x0, "CPU" },
65};
66
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090067int print_cpuinfo(void)
68{
Nobuhiro Iwamatsu524ed8b2014-03-28 11:54:22 +090069 int i = 0;
70 u32 cpu_type = rmobile_get_cpu_type();
71 for (; i < ARRAY_SIZE(rmobile_cpuinfo); i++) {
72 if (rmobile_cpuinfo[i].cpu_type == cpu_type) {
73 printf("CPU: Renesas Electronics %s rev %d.%d\n",
74 rmobile_cpuinfo[i].cpu_name,
75 rmobile_get_cpu_rev_integer(),
76 rmobile_get_cpu_rev_fraction());
77 break;
78 }
Nobuhiro Iwamatsuf3db9da2012-06-13 16:29:47 +090079 }
80 return 0;
81}
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000082#endif /* CONFIG_DISPLAY_CPUINFO */