mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-25 14:25:44 +00:00
rcar_gen3: plat: Print DRAM bank size in MiB if below 1 GiB
Print the DRAM bank size in MiB instead of GiB in case the bank size is smaller than 1 GiB. This prevents printing zeroes on systems with small DRAM sizes. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
This commit is contained in:
parent
18ff0b61bb
commit
5b4f022be4
1 changed files with 4 additions and 2 deletions
|
@ -482,8 +482,10 @@ static void bl2_advertise_dram_entries(uint64_t dram_config[8])
|
|||
if (!size)
|
||||
continue;
|
||||
|
||||
NOTICE("BL2: CH%d: %llx - %llx, %lld GiB\n",
|
||||
chan, start, start + size - 1, size >> 30);
|
||||
NOTICE("BL2: CH%d: %llx - %llx, %lld %siB\n",
|
||||
chan, start, start + size - 1,
|
||||
(size >> 30) ? : size >> 20,
|
||||
(size >> 30) ? "G" : "M");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue