summaryrefslogtreecommitdiff
path: root/src/arch/riscv/bootblock.S
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-04-17 22:40:53 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-04-18 09:21:08 +0200
commit7effaa4c02d974b59bd86307a54cefb7bb046a3a (patch)
tree477cdd17eba7b3c4706bf610f5effb232391556c /src/arch/riscv/bootblock.S
parent42001a7051e8fcfedccaba17438a032e1ac72ed1 (diff)
downloadcoreboot-7effaa4c02d974b59bd86307a54cefb7bb046a3a.tar.xz
riscv: use new-style CBFS header lookup
We recently restructured where the CBFS header is stored and how it is looked up, with less magic. The RISC-V port didn't get the memo, so have it follow the pack now. Change-Id: Ic27e3e7f9acd55027e357f2c4beddf960ea02c4d Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/9795 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch/riscv/bootblock.S')
-rw-r--r--src/arch/riscv/bootblock.S19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/arch/riscv/bootblock.S b/src/arch/riscv/bootblock.S
index 1461a9cbc5..8ddc8ec0f5 100644
--- a/src/arch/riscv/bootblock.S
+++ b/src/arch/riscv/bootblock.S
@@ -58,25 +58,6 @@ _start:
.stack_size:
.quad 0xf00
-.globl _cbfs_master_header
-_cbfs_master_header:
- .balignl 16,0xdeadbeef
- .align 8
- // this assembler SUCKS
- .long 0x4F524243
- .long 0xdeadbeef
- .long 0xdeadbeef
- .long 0xdeadbeef
- .long 0xdeadbeef
- .long 0xdeadbeef
- .long 0xdeadbeef
- /* The CBFS master header is inserted by cbfstool at the first
- * aligned offset after the above anchor string is found.
- * Hence, we leave some space for it.
- * Assumes 64-byte alignment.
- */
- .space 128
-
reset:
init_stack_loop: