Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 4 | * (C) Copyright 2012-2021 Renesas Solutions Corp. |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 5 | */ |
Paul Barker | 93565cc | 2023-11-01 20:05:53 +0000 | [diff] [blame] | 6 | |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 8 | #include <asm/cache.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 10 | #include <asm/io.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 11 | #include <env.h> |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 12 | #include <linux/ctype.h> |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 13 | |
| 14 | #ifdef CONFIG_ARCH_CPU_INIT |
| 15 | int arch_cpu_init(void) |
| 16 | { |
| 17 | icache_enable(); |
| 18 | return 0; |
| 19 | } |
| 20 | #endif |
| 21 | |
Hai Pham | 5a3b074 | 2023-02-28 22:22:03 +0100 | [diff] [blame] | 22 | /* R-Car Gen3 and Gen4 D-cache is enabled in memmap-gen3.c */ |
| 23 | #ifndef CONFIG_RCAR_64 |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 24 | #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 25 | void enable_caches(void) |
| 26 | { |
| 27 | dcache_enable(); |
| 28 | } |
| 29 | #endif |
Marek Vasut | e5cb6bd | 2018-10-31 15:06:50 +0100 | [diff] [blame] | 30 | #endif |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 31 | |
| 32 | #ifdef CONFIG_DISPLAY_CPUINFO |
Ralph Siemsen | 2156327 | 2023-05-12 21:36:55 -0400 | [diff] [blame] | 33 | #if !defined(CONFIG_RZA1) && !defined(CONFIG_RZN1) |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 34 | __weak const u8 *rzg_get_cpu_name(void) |
| 35 | { |
| 36 | return 0; |
| 37 | } |
| 38 | |
Marek Vasut | 217d719 | 2024-02-27 17:05:50 +0100 | [diff] [blame] | 39 | __weak u32 renesas_get_cpu_type(void) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 40 | { |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 41 | return 0x0; |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 42 | } |
| 43 | |
Marek Vasut | 217d719 | 2024-02-27 17:05:50 +0100 | [diff] [blame] | 44 | __weak u32 renesas_get_cpu_rev_integer(void) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 45 | { |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 46 | return 0; |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 47 | } |
Tetsuyuki Kobayashi | 4f007b8 | 2012-07-25 18:24:21 +0000 | [diff] [blame] | 48 | |
Marek Vasut | 217d719 | 2024-02-27 17:05:50 +0100 | [diff] [blame] | 49 | __weak u32 renesas_get_cpu_rev_fraction(void) |
Tetsuyuki Kobayashi | 4f007b8 | 2012-07-25 18:24:21 +0000 | [diff] [blame] | 50 | { |
| 51 | return 0; |
| 52 | } |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 53 | |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 54 | /* CPU information table */ |
Nobuhiro Iwamatsu | 73ff680 | 2014-03-28 11:54:22 +0900 | [diff] [blame] | 55 | static const struct { |
| 56 | u16 cpu_type; |
| 57 | u8 cpu_name[10]; |
Marek Vasut | 18c3f3a | 2024-02-27 17:05:49 +0100 | [diff] [blame] | 58 | } renesas_cpuinfo[] = { |
Marek Vasut | c2cffb0 | 2024-02-27 17:05:47 +0100 | [diff] [blame] | 59 | { RENESAS_CPU_TYPE_R8A7790, "R8A7790" }, |
| 60 | { RENESAS_CPU_TYPE_R8A7791, "R8A7791" }, |
| 61 | { RENESAS_CPU_TYPE_R8A7792, "R8A7792" }, |
| 62 | { RENESAS_CPU_TYPE_R8A7793, "R8A7793" }, |
| 63 | { RENESAS_CPU_TYPE_R8A7794, "R8A7794" }, |
| 64 | { RENESAS_CPU_TYPE_R8A7795, "R8A7795" }, |
| 65 | { RENESAS_CPU_TYPE_R8A7796, "R8A7796" }, |
| 66 | { RENESAS_CPU_TYPE_R8A77965, "R8A77965" }, |
| 67 | { RENESAS_CPU_TYPE_R8A77970, "R8A77970" }, |
| 68 | { RENESAS_CPU_TYPE_R8A77980, "R8A77980" }, |
| 69 | { RENESAS_CPU_TYPE_R8A77990, "R8A77990" }, |
| 70 | { RENESAS_CPU_TYPE_R8A77995, "R8A77995" }, |
| 71 | { RENESAS_CPU_TYPE_R8A779A0, "R8A779A0" }, |
| 72 | { RENESAS_CPU_TYPE_R8A779F0, "R8A779F0" }, |
| 73 | { RENESAS_CPU_TYPE_R8A779G0, "R8A779G0" }, |
| 74 | { RENESAS_CPU_TYPE_R8A779H0, "R8A779H0" }, |
Nobuhiro Iwamatsu | 73ff680 | 2014-03-28 11:54:22 +0900 | [diff] [blame] | 75 | { 0x0, "CPU" }, |
| 76 | }; |
| 77 | |
Marek Vasut | 74215bb | 2024-02-27 17:05:48 +0100 | [diff] [blame] | 78 | static int renesas_cpuinfo_idx(void) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 79 | { |
Marek Vasut | 6bd3a95 | 2024-02-27 17:05:45 +0100 | [diff] [blame] | 80 | u32 cpu_type = renesas_get_cpu_type(); |
Marek Vasut | 96912a9 | 2023-08-19 16:39:13 +0200 | [diff] [blame] | 81 | int i; |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 82 | |
Marek Vasut | 18c3f3a | 2024-02-27 17:05:49 +0100 | [diff] [blame] | 83 | for (i = 0; i < ARRAY_SIZE(renesas_cpuinfo) - 1; i++) |
| 84 | if (renesas_cpuinfo[i].cpu_type == cpu_type) |
Marek Vasut | 96912a9 | 2023-08-19 16:39:13 +0200 | [diff] [blame] | 85 | return i; |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 86 | |
Marek Vasut | 96912a9 | 2023-08-19 16:39:13 +0200 | [diff] [blame] | 87 | /* Unknown "CPU" entry */ |
Marek Vasut | 18c3f3a | 2024-02-27 17:05:49 +0100 | [diff] [blame] | 88 | return ARRAY_SIZE(renesas_cpuinfo) - 1; |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 89 | } |
| 90 | |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 91 | static const u8 *get_cpu_name(int idx) |
| 92 | { |
| 93 | const u8 *cpu_name = rzg_get_cpu_name(); |
| 94 | |
Marek Vasut | 18c3f3a | 2024-02-27 17:05:49 +0100 | [diff] [blame] | 95 | return cpu_name ? cpu_name : renesas_cpuinfo[idx].cpu_name; |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 98 | #ifdef CONFIG_ARCH_MISC_INIT |
| 99 | int arch_misc_init(void) |
| 100 | { |
Marek Vasut | 74215bb | 2024-02-27 17:05:48 +0100 | [diff] [blame] | 101 | int i, idx = renesas_cpuinfo_idx(); |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 102 | const u8 *cpu_name = get_cpu_name(idx); |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 103 | char cpu[10] = { 0 }; |
| 104 | |
| 105 | for (i = 0; i < sizeof(cpu); i++) |
Biju Das | 3e5f3db | 2021-03-17 14:11:50 +0000 | [diff] [blame] | 106 | cpu[i] = tolower(cpu_name[i]); |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 107 | |
| 108 | env_set("platform", cpu); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | #endif |
| 113 | |
| 114 | int print_cpuinfo(void) |
| 115 | { |
Marek Vasut | 74215bb | 2024-02-27 17:05:48 +0100 | [diff] [blame] | 116 | int i = renesas_cpuinfo_idx(); |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 117 | |
Marek Vasut | 18c3f3a | 2024-02-27 17:05:49 +0100 | [diff] [blame] | 118 | if (renesas_cpuinfo[i].cpu_type == RENESAS_CPU_TYPE_R8A7796 && |
Marek Vasut | ca40ed6 | 2024-02-27 17:05:46 +0100 | [diff] [blame] | 119 | renesas_get_cpu_rev_integer() == 1 && |
| 120 | renesas_get_cpu_rev_fraction() == 1) { |
Hiroyuki Yokoyama | 08260ef | 2018-09-26 18:14:41 +0900 | [diff] [blame] | 121 | printf("CPU: Renesas Electronics %s rev 1.1/1.2\n", get_cpu_name(i)); |
| 122 | return 0; |
| 123 | } |
| 124 | |
Marek Vasut | 91c6a3a | 2021-07-04 17:27:27 +0200 | [diff] [blame] | 125 | printf("CPU: Renesas Electronics %s rev %d.%d\n", |
Marek Vasut | ca40ed6 | 2024-02-27 17:05:46 +0100 | [diff] [blame] | 126 | get_cpu_name(i), renesas_get_cpu_rev_integer(), |
| 127 | renesas_get_cpu_rev_fraction()); |
Marek Vasut | 00e4b57 | 2018-12-03 13:28:25 +0100 | [diff] [blame] | 128 | |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 129 | return 0; |
| 130 | } |
Ralph Siemsen | 2156327 | 2023-05-12 21:36:55 -0400 | [diff] [blame] | 131 | #elif defined(CONFIG_RZA1) |
Chris Brandt | 3529596 | 2017-08-23 14:53:59 -0500 | [diff] [blame] | 132 | int print_cpuinfo(void) |
| 133 | { |
| 134 | printf("CPU: Renesas Electronics RZ/A1\n"); |
| 135 | return 0; |
| 136 | } |
Ralph Siemsen | 2156327 | 2023-05-12 21:36:55 -0400 | [diff] [blame] | 137 | #else /* CONFIG_RZN1 */ |
| 138 | int print_cpuinfo(void) |
| 139 | { |
| 140 | printf("CPU: Renesas Electronics RZ/N1\n"); |
| 141 | return 0; |
| 142 | } |
Chris Brandt | 3529596 | 2017-08-23 14:53:59 -0500 | [diff] [blame] | 143 | #endif |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 144 | #endif /* CONFIG_DISPLAY_CPUINFO */ |