Commit 3fb787e5 authored by Ben Dooks's avatar Ben Dooks Committed by Palmer Dabbelt

soc: sifive: ccache: reduce printing on init

The driver prints out 6 lines on startup, which can easily be redcued
to two lines without losing any information.

Note, to make the types work better, uint64_t has been replaced with
ULL to make the unsigned long long match the format in the print
statement.
Signed-off-by: default avatarBen Dooks <ben.dooks@sifive.com>
Signed-off-by: default avatarZong Li <zong.li@sifive.com>
Reviewed-by: default avatarConor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20220913061817.22564-5-zong.li@sifive.comSigned-off-by: default avatarPalmer Dabbelt <palmer@rivosinc.com>
parent 95f196f3
...@@ -81,20 +81,17 @@ static void setup_sifive_debug(void) ...@@ -81,20 +81,17 @@ static void setup_sifive_debug(void)
static void ccache_config_read(void) static void ccache_config_read(void)
{ {
u32 regval, val; u32 cfg;
regval = readl(ccache_base + SIFIVE_CCACHE_CONFIG); cfg = readl(ccache_base + SIFIVE_CCACHE_CONFIG);
val = regval & 0xFF;
pr_info("CCACHE: No. of Banks in the cache: %d\n", val); pr_info("CCACHE: %u banks, %u ways, sets/bank=%llu, bytes/block=%llu\n",
val = (regval & 0xFF00) >> 8; (cfg & 0xff), (cfg >> 8) & 0xff,
pr_info("CCACHE: No. of ways per bank: %d\n", val); BIT_ULL((cfg >> 16) & 0xff),
val = (regval & 0xFF0000) >> 16; BIT_ULL((cfg >> 24) & 0xff));
pr_info("CCACHE: Sets per bank: %llu\n", (uint64_t)1 << val);
val = (regval & 0xFF000000) >> 24; cfg = readl(ccache_base + SIFIVE_CCACHE_WAYENABLE);
pr_info("CCACHE: Bytes per cache block: %llu\n", (uint64_t)1 << val); pr_info("CCACHE: Index of the largest way enabled: %u\n", cfg);
regval = readl(ccache_base + SIFIVE_CCACHE_WAYENABLE);
pr_info("CCACHE: Index of the largest way enabled: %d\n", regval);
} }
static const struct of_device_id sifive_ccache_ids[] = { static const struct of_device_id sifive_ccache_ids[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment