Maximilian Brune has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85852?usp=email )
Change subject: mb/emulation/spike-riscv/uart.c: Update UART address ......................................................................
mb/emulation/spike-riscv/uart.c: Update UART address
Spike Simualator commit 191634d2854d implemented a ns16550 serial device which puts the base address at 0x10000000.
Tested: Start Spike Simulator and see that coreboot prints onto the UART.
Signed-off-by: Maximilian Brune maximilian.brune@9elements.com Change-Id: I0e3db9d8b141c733bf609f906018096e3594ce83 --- M src/mainboard/emulation/spike-riscv/uart.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/85852/1
diff --git a/src/mainboard/emulation/spike-riscv/uart.c b/src/mainboard/emulation/spike-riscv/uart.c index 4ea2466..e93594c 100644 --- a/src/mainboard/emulation/spike-riscv/uart.c +++ b/src/mainboard/emulation/spike-riscv/uart.c @@ -5,5 +5,5 @@
uintptr_t uart_platform_base(unsigned int idx) { - return (uintptr_t)0x02100000; + return (uintptr_t)0x10000000; }