Initial commit.

This commit is contained in:
SiFive
2016-11-29 05:23:11 -08:00
commit 3cf8128a30
37 changed files with 3874 additions and 0 deletions

BIN
bootrom/e300artydevkit.img Executable file

Binary file not shown.

BIN
bootrom/u500vc707devkit.img Executable file

Binary file not shown.

26
bootrom/xip/xip.S Normal file
View File

@ -0,0 +1,26 @@
// See LICENSE for license details.
// Execute in place
// Jump directly to XIP_TARGET_ADDR
.text
.option norvc
.globl _start
_start:
j 1f
nop
nop
#ifdef CONFIG_STRING
.word cfg_string
#else
.word 0 // Filled in by GenerateBootROM in Chisel
#endif
1:
li t0, XIP_TARGET_ADDR
jr t0
.section .rodata
#ifdef CONFIG_STRING
cfg_string:
.incbin CONFIG_STRING
#endif