From 97dc98658ae54d45f98b383e655b0a08db9362f8 Mon Sep 17 00:00:00 2001 From: Jonathan Neuschäfer Date: Thu, 14 Jul 2016 20:24:25 +0200 Subject: arch/riscv: Move CBMEM into RAM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CBMEM should be placed at the top of RAM, which can be found by parsing the configuration string. Configuration string parsing isn't yet implemented, so I'll hard-code the CBMEM location for now. Change-Id: If4092d094a856f6783887c062d6682dd13a73b8f Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/15284 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/soc/ucb/riscv/cbmem.c | 2 +- 1 file changed, 1 insertion(+), 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 3aabf19b56..0e0eec196b 100644 --- a/src/soc/ucb/riscv/cbmem.c +++ b/src/soc/ucb/riscv/cbmem.c @@ -16,5 +16,5 @@ void *cbmem_top(void) { // TODO: find out how RISCV stores this. - return (void *)0x1fff000; + return (void *)((uintptr_t)3*GiB); } -- cgit v1.2.3