diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2016-10-28 00:25:02 +0200 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2016-11-07 16:47:49 +0100 |
commit | 99f2f113ec397dd042dcaa23c47123f3def19ebc (patch) | |
tree | 38b8eb7e1ad90c2d5e2b2bb6ed32ddca99016214 /src/mainboard/lowrisc/nexys4ddr/Makefile.inc | |
parent | 7ca9b8ae5014a745855296903682ae803235cb35 (diff) |
riscv: Unify SBI call implementations under arch/riscv/
Note that currently, traps are only handled by the trap handler
installed in the bootblock. The romstage and ramstage don't override it.
TEST=Booted emulation/spike-qemu and lowrisc/nexys4ddr with a linux
payload. It worked as much as before (Linux didn't boot, but it
made some successful SBI calls)
Change-Id: Icce96ab3f41ae0f34bd86e30f9ff17c30317854e
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/17057
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard/lowrisc/nexys4ddr/Makefile.inc')
-rw-r--r-- | src/mainboard/lowrisc/nexys4ddr/Makefile.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/lowrisc/nexys4ddr/Makefile.inc b/src/mainboard/lowrisc/nexys4ddr/Makefile.inc index 69519b189e..abd341c5d7 100644 --- a/src/mainboard/lowrisc/nexys4ddr/Makefile.inc +++ b/src/mainboard/lowrisc/nexys4ddr/Makefile.inc @@ -13,14 +13,11 @@ ## GNU General Public License for more details. bootblock-y += uart.c -bootblock-y += util.c bootblock-y += rom_media.c romstage-y += romstage.c romstage-y += uart.c -romstage-y += util.c romstage-y += rom_media.c ramstage-y += uart.c -ramstage-y += util.c ramstage-y += rom_media.c bootblock-y += memlayout.ld |