From 67b3268fac933c33a00a036dab4dfa366ffc3639 Mon Sep 17 00:00:00 2001 From: Jonathan Neuschäfer Date: Fri, 29 Sep 2017 06:29:38 +0200 Subject: RISC-V boards: Stop using the config string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RISC-V is moving towards OpenFirmware-derived device trees, and the old functions to read the config string don't work anymore. Use dummy values for the memory base and size until we can query the device tree. Change-Id: Ice13feae4da2085ee56bac4ac2864268da18d8fe Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/21690 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/soc/ucb/riscv/cbmem.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/soc/ucb/riscv/cbmem.c') diff --git a/src/soc/ucb/riscv/cbmem.c b/src/soc/ucb/riscv/cbmem.c index 44ffa26939..f8f4098d75 100644 --- a/src/soc/ucb/riscv/cbmem.c +++ b/src/soc/ucb/riscv/cbmem.c @@ -19,7 +19,10 @@ void *cbmem_top(void) uintptr_t base; size_t size; - query_mem(configstring(), &base, &size); + /* Use dummy values until we can query the memory size again */ + //query_mem(configstring(), &base, &size); + base = 0x80000000; + size = 128 * MiB; return (void *)(base + size); } -- cgit v1.2.3