diff options
author | Tom Rini <trini@konsulko.com> | 2023-04-07 15:55:50 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-07 15:55:50 -0400 |
commit | 965f74b5b3602fe681421bda5676c7300ee3975e (patch) | |
tree | b8b001d60dbeea07ad4fdda6950aa73a3114d2e9 /arch/arm/mach-rmobile/cpu_info.c | |
parent | 19d0c64f89ee5a0d5d3077e5d7ec7dafd74a0d45 (diff) | |
parent | 36b63c92c3ffb5a8673f58e2111f3ee3273e6952 (diff) |
Merge branch 'master_sh/gen4/initial' of https://source.denx.de/u-boot/custodians/u-boot-sh
- Initial R-Car Generation 4 support
Diffstat (limited to 'arch/arm/mach-rmobile/cpu_info.c')
-rw-r--r-- | arch/arm/mach-rmobile/cpu_info.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-rmobile/cpu_info.c b/arch/arm/mach-rmobile/cpu_info.c index 246029ac29..7e7465a2c8 100644 --- a/arch/arm/mach-rmobile/cpu_info.c +++ b/arch/arm/mach-rmobile/cpu_info.c @@ -19,8 +19,8 @@ int arch_cpu_init(void) } #endif -/* R-Car Gen3 D-cache is enabled in memmap-gen3.c */ -#ifndef CONFIG_RCAR_GEN3 +/* R-Car Gen3 and Gen4 D-cache is enabled in memmap-gen3.c */ +#ifndef CONFIG_RCAR_64 #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) void enable_caches(void) { @@ -76,6 +76,8 @@ static const struct { { RMOBILE_CPU_TYPE_R8A77990, "R8A77990" }, { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" }, { RMOBILE_CPU_TYPE_R8A779A0, "R8A779A0" }, + { RMOBILE_CPU_TYPE_R8A779F0, "R8A779F0" }, + { RMOBILE_CPU_TYPE_R8A779G0, "R8A779G0" }, { 0x0, "CPU" }, }; |