From 599ee0458c6ef346fd2e6c11ee8476e7700bcd97 Mon Sep 17 00:00:00 2001 From: Hoegeun Kwon Date: Tue, 11 Jul 2023 15:51:37 +0900 Subject: [PATCH] soc: sifive: ccache: Fix to use soc starfive jh7110 addr Fix to use jh7110 address when using jh110 soc. Change-Id: Id282ec6f67b73336f89118f4e3446e953a27f270 Signed-off-by: Hoegeun Kwon --- drivers/soc/sifive/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/soc/sifive/Kconfig b/drivers/soc/sifive/Kconfig index d37cfc6..c6e356e 100644 --- a/drivers/soc/sifive/Kconfig +++ b/drivers/soc/sifive/Kconfig @@ -14,13 +14,13 @@ if SIFIVE_FLUSH config SIFIVE_FLUSH_START hex "Level 2 Cache Flush operation start" + default 0x40000000 if SOC_STARFIVE default 0x80000000 - default 0x40000000 if SOC_STARFIVE_JH7110 config SIFIVE_FLUSH_SIZE hex "Level 2 Cache Flush operation size" + default 0x400000000 if SOC_STARFIVE default 0x800000000 - default 0x400000000 if SOC_STARFIVE_JH7110 endif # SIFIVE_FLUSH endif -- 2.7.4