opensbi icon indicating copy to clipboard operation
opensbi copied to clipboard

What is the relationship between Coreboot and Opensbi

Open wjh-study opened this issue 1 year ago • 2 comments

When I start qemu-riscv,I want to know what is the relationship between coreboot and opensbi. Is coreboot as zsbl before opensbi?Has anyone followed Coreboot?

wjh-study avatar Jan 22 '24 05:01 wjh-study

This is documented one the first page of the coreboot risc-v documentation: https://doc.coreboot.org/arch/riscv/index.html#additional-payload-handoff-requirements

mateoconlechuga avatar Jan 24 '24 20:01 mateoconlechuga

coreboot is basically the ZSBL like you said and OpenSBI provides the runtime services (SBI interface). The bootflow is usually like this: ROM code -> coreboot -> OpenSBI -> Payload (Linux kernel, bootloader ...)

CodingVoid avatar Feb 26 '24 09:02 CodingVoid