public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH V2 0/7] riscv: spl: OpenSBI OS boot mode
@ 2023-10-12  6:35 Randolph
  2023-10-12  6:35 ` [PATCH V2 1/7] spl: riscv: opensbi: change the default os_type as varible Randolph
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Randolph @ 2023-10-12  6:35 UTC (permalink / raw)
  To: u-boot; +Cc: randolph.sklin, dylan, tim609, peterlin, Randolph

Introduce a shortcut boot mode for RISC-V. 

As we know, in ARM architecture has the Falcon mode to do the shortcut
boot to the Linux kernel. (by enabling CONFIG_SPL_OS_BOOT)
ARM Falcon mode boot flow would be as follows:
u-boot SPL -> Linux kernel

But for RISC-V, OpenSBI is required to allows the supervisor to execute
some privileged operations.
The RISC-V Normal boot flow as follows:
u-boot SPL -> OpenSBI -> u-boot proper -> Linux kernel

Quoting the same ideas as ARM's Falcon mode,
OpenSBI OS boot flow as follows:
u-boot SPL -> OpenSBI -> Linux kernel

An important part of OpenSBI OS boot mode is to prepare the device tree. 
A normal U-Boot does FDT fixups when booting Linux. 
For OpenSBI OS boot mode, Linux boots directly from SPL, 
skipping the normal U-Boot. 
The device tree has to be prepared in advance.
The device tree in memory is the one needed for OpenSBI OS boot mode.

The Linux kernel image will also need to be provided for the generation
of the FIT file.

Changes in v2:
- change the order from Patch 3/7 in V1 to Patch 1/7 in V2
- merge the OPENSBI_OS_BOOT related logic into binman.dtsi
- change by suggestions 
- add a new patch to delete the output file when make clean.

Randolph (7):
  spl: riscv: opensbi: change the default os_type as varible
  riscv: kconfig: introduce SPL_LOAD_FIT_OPENSBI_OS_BOOT symbol
  riscv: dts: binman: add condition for opensbi os boot
  Makefile: delete file *.itb when make clean
  spl: riscv: add os type for next booting stage
  andes: config: add riscv falcon mode for ae350 platform
  riscv: spl: andes: Move the DTB in front of kernel

 Makefile                                |  2 +-
 arch/riscv/Kconfig                      |  8 ++++
 arch/riscv/dts/binman.dtsi              | 24 ++++++++++
 board/AndesTech/ae350/ae350.c           | 25 ++++++++++
 common/spl/spl_fit.c                    |  3 +-
 common/spl/spl_opensbi.c                | 31 +++++++++----
 configs/ae350_rv32_falcon_defconfig     | 60 ++++++++++++++++++++++++
 configs/ae350_rv32_falcon_xip_defconfig | 61 +++++++++++++++++++++++++
 configs/ae350_rv64_falcon_defconfig     | 60 ++++++++++++++++++++++++
 configs/ae350_rv64_falcon_xip_defconfig | 61 +++++++++++++++++++++++++
 10 files changed, 323 insertions(+), 12 deletions(-)
 create mode 100644 configs/ae350_rv32_falcon_defconfig
 create mode 100644 configs/ae350_rv32_falcon_xip_defconfig
 create mode 100644 configs/ae350_rv64_falcon_defconfig
 create mode 100644 configs/ae350_rv64_falcon_xip_defconfig

-- 
2.34.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-10-17  7:23 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-12  6:35 [PATCH V2 0/7] riscv: spl: OpenSBI OS boot mode Randolph
2023-10-12  6:35 ` [PATCH V2 1/7] spl: riscv: opensbi: change the default os_type as varible Randolph
2023-10-12  6:35 ` [PATCH V2 2/7] riscv: kconfig: introduce SPL_LOAD_FIT_OPENSBI_OS_BOOT symbol Randolph
2023-10-12 15:28   ` Simon Glass
2023-10-12  6:35 ` [PATCH V2 3/7] riscv: dts: binman: add condition for opensbi os boot Randolph
2023-10-12 15:28   ` Simon Glass
2023-10-12  6:35 ` [PATCH V2 4/7] Makefile: delete file *.itb when make clean Randolph
2023-10-12 15:28   ` Simon Glass
2023-10-12  6:35 ` [PATCH V2 5/7] spl: riscv: add os type for next booting stage Randolph
2023-10-12 15:28   ` Simon Glass
2023-10-12  6:35 ` [PATCH V2 6/7] andes: config: add riscv falcon mode for ae350 platform Randolph
2023-10-17  7:19   ` Leo Liang
2023-10-12  6:35 ` [PATCH V2 7/7] riscv: spl: andes: Move the DTB in front of kernel Randolph
2023-10-17  7:20   ` Leo Liang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox