RISC-V: MAXPHYSMEM_2GB doesn't depend on CMODEL_MEDLOW
authorPalmer Dabbelt <palmer@rivosinc.com>
Fri, 19 Nov 2021 16:44:03 +0000 (08:44 -0800)
committerPalmer Dabbelt <palmer@rivosinc.com>
Thu, 6 Jan 2022 04:06:29 +0000 (20:06 -0800)
For non-relocatable kernels we need to be able to link the kernel at
approximately PAGE_OFFSET, thus requiring medany (as medlow requires the
code to be linked within 2GiB of 0).  The inverse doesn't apply, though:
since medany code can be linked anywhere it's fine to link it close to
0, so we can support the smaller memory config.

Fixes: de5f4b8f634b ("RISC-V: Define MAXPHYSMEM_1GB only for RV32")
Reviewed-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/Kconfig

index 821252b65f89065c4b5aa922e134a3f012d57f10..61f64512dcde3bbf43158c04630d12fb244b79e1 100644 (file)
@@ -280,7 +280,7 @@ choice
                depends on 32BIT
                bool "1GiB"
        config MAXPHYSMEM_2GB
-               depends on 64BIT && CMODEL_MEDLOW
+               depends on 64BIT
                bool "2GiB"
        config MAXPHYSMEM_128GB
                depends on 64BIT && CMODEL_MEDANY