configs: qemu-riscv raise CONFIG_NR_DRAM_BANKS
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 3 Apr 2025 14:28:16 +0000 (16:28 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 25 Apr 2025 15:31:44 +0000 (17:31 +0200)
commit4b6f71668cded9efe0fb629ca3d6f21c36996090
tree9c62e958c1114e3b46f8b28de23a154de6b85819
parent393123adadd5be8aa77628b887ada32f5862ca96
configs: qemu-riscv raise CONFIG_NR_DRAM_BANKS

The number of memory banks in QEMU is not bounded by 1.

In this example we have two banks:

    qemu-system-riscv64 \
    -machine virt \
    -nographic \
    -m 8192 \
    -smp 8,sockets=2,cores=4,threads=1 \
    -numa node,cpus=0-3,mem=4096 \
    -numa node,cpus=4-7,mem=4096 \
    -kernel u-boot

As we will see RISC-V NUMA systems using U-Boot
we should be able to emulate these.

Use the default value defined in /Kconfig as 4.

Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
configs/qemu-riscv32_defconfig
configs/qemu-riscv32_smode_defconfig
configs/qemu-riscv32_spl_defconfig
configs/qemu-riscv64_defconfig
configs/qemu-riscv64_smode_defconfig
configs/qemu-riscv64_spl_defconfig