Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> |
| 3 | * (C) Copyright 2012 Renesas Solutions Corp. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 6 | */ |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 9 | |
| 10 | #ifdef CONFIG_ARCH_CPU_INIT |
| 11 | int arch_cpu_init(void) |
| 12 | { |
| 13 | icache_enable(); |
| 14 | return 0; |
| 15 | } |
| 16 | #endif |
| 17 | |
| 18 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 19 | void enable_caches(void) |
| 20 | { |
| 21 | dcache_enable(); |
| 22 | } |
| 23 | #endif |
| 24 | |
| 25 | #ifdef CONFIG_DISPLAY_CPUINFO |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 26 | static u32 __rmobile_get_cpu_type(void) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 27 | { |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 28 | return 0x0; |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 29 | } |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 30 | u32 rmobile_get_cpu_type(void) |
| 31 | __attribute__((weak, alias("__rmobile_get_cpu_type"))); |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 32 | |
Tetsuyuki Kobayashi | 4f007b8 | 2012-07-25 18:24:21 +0000 | [diff] [blame] | 33 | static u32 __rmobile_get_cpu_rev_integer(void) |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 34 | { |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 35 | return 0; |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 36 | } |
Tetsuyuki Kobayashi | 4f007b8 | 2012-07-25 18:24:21 +0000 | [diff] [blame] | 37 | u32 rmobile_get_cpu_rev_integer(void) |
| 38 | __attribute__((weak, alias("__rmobile_get_cpu_rev_integer"))); |
| 39 | |
| 40 | static u32 __rmobile_get_cpu_rev_fraction(void) |
| 41 | { |
| 42 | return 0; |
| 43 | } |
| 44 | u32 rmobile_get_cpu_rev_fraction(void) |
| 45 | __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction"))); |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 46 | |
Nobuhiro Iwamatsu | 73ff680 | 2014-03-28 11:54:22 +0900 | [diff] [blame] | 47 | /* CPU infomation table */ |
| 48 | static const struct { |
| 49 | u16 cpu_type; |
| 50 | u8 cpu_name[10]; |
| 51 | } rmobile_cpuinfo[] = { |
| 52 | { 0x37, "SH73A0" }, |
| 53 | { 0x40, "R8A7740" }, |
| 54 | { 0x45, "R8A7790" }, |
| 55 | { 0x47, "R8A7791" }, |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 56 | { 0x4A, "R8A7792" }, |
Nobuhiro Iwamatsu | 062edd2 | 2014-11-05 06:50:06 +0900 | [diff] [blame] | 57 | { 0x4B, "R8A7793" }, |
Nobuhiro Iwamatsu | fafcfc5 | 2014-06-24 17:10:02 +0900 | [diff] [blame] | 58 | { 0x4C, "R8A7794" }, |
Nobuhiro Iwamatsu | 73ff680 | 2014-03-28 11:54:22 +0900 | [diff] [blame] | 59 | { 0x0, "CPU" }, |
| 60 | }; |
| 61 | |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 62 | int print_cpuinfo(void) |
| 63 | { |
Nobuhiro Iwamatsu | 73ff680 | 2014-03-28 11:54:22 +0900 | [diff] [blame] | 64 | int i = 0; |
| 65 | u32 cpu_type = rmobile_get_cpu_type(); |
| 66 | for (; i < ARRAY_SIZE(rmobile_cpuinfo); i++) { |
| 67 | if (rmobile_cpuinfo[i].cpu_type == cpu_type) { |
| 68 | printf("CPU: Renesas Electronics %s rev %d.%d\n", |
| 69 | rmobile_cpuinfo[i].cpu_name, |
| 70 | rmobile_get_cpu_rev_integer(), |
| 71 | rmobile_get_cpu_rev_fraction()); |
| 72 | break; |
| 73 | } |
Nobuhiro Iwamatsu | 4fb44e2 | 2012-06-13 16:29:47 +0900 | [diff] [blame] | 74 | } |
| 75 | return 0; |
| 76 | } |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 77 | #endif /* CONFIG_DISPLAY_CPUINFO */ |