diff options
author | Asami Doi <d0iasm.pub@gmail.com> | 2019-08-22 14:11:17 +0900 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-08-26 07:15:06 +0000 |
commit | a5d9e7a62884d4a1121795f928232fe13431b769 (patch) | |
tree | 263b0a280f3a06141a15051f328a1ef2a3b18376 /src/mainboard/emulation/qemu-aarch64 | |
parent | 06993ee7295c81f71462616277624fbf8ebc8ec9 (diff) |
mainboard/emulation/qemu-aarch64: Update DRAM_SIZE_MB
DRAM_SIZE_MB should be the maximum size (255GiB / -m 261120M)
that’s possible with QEMU on AArch64 virt because it tries to search
the DRAM_SIZE_MB range to find the true memory size.
Signed-off-by: Asami Doi <d0iasm.pub@gmail.com>
Change-Id: Id479c0b18d1e1adceecdcca13e36119b95617e6d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35024
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/emulation/qemu-aarch64')
-rw-r--r-- | src/mainboard/emulation/qemu-aarch64/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/emulation/qemu-aarch64/Kconfig b/src/mainboard/emulation/qemu-aarch64/Kconfig index 7d8d7b2f00..ebdbf16e8c 100644 --- a/src/mainboard/emulation/qemu-aarch64/Kconfig +++ b/src/mainboard/emulation/qemu-aarch64/Kconfig @@ -46,6 +46,6 @@ config MAINBOARD_VENDOR config DRAM_SIZE_MB int - default 1024 + default 261120 # The maximum dram size is 255GiB. endif # BOARD_EMULATION_QEMU_AARCH64 |