* [RFC PATCH 0/2] Integrate OP-TEE into the RISC-V boot flow
@ 2025-01-11 1:55 Yu-Chien Peter Lin
2025-01-11 1:55 ` [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR Yu-Chien Peter Lin
2025-01-11 1:55 ` [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image Yu-Chien Peter Lin
0 siblings, 2 replies; 5+ messages in thread
From: Yu-Chien Peter Lin @ 2025-01-11 1:55 UTC (permalink / raw)
To: ycliang, trini, xypron.glpk, seashell11234455, dan.carpenter,
mchitale, ben.dooks, u-boot
Cc: Yu-Chien Peter Lin
This patch series adds support for integrating OP-TEE OS into
the RISC-V boot flow. It allows specifying the load address
of the OP-TEE binary and updates binman to include the OP-TEE
OS image.
Yu-Chien Peter Lin (2):
riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR
riscv: dts: binman.dtsi: Include OP-TEE OS image
arch/riscv/Kconfig | 6 ++++++
arch/riscv/dts/binman.dtsi | 26 ++++++++++++++++++++++++--
2 files changed, 30 insertions(+), 2 deletions(-)
--
2.39.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR
2025-01-11 1:55 [RFC PATCH 0/2] Integrate OP-TEE into the RISC-V boot flow Yu-Chien Peter Lin
@ 2025-01-11 1:55 ` Yu-Chien Peter Lin
2025-02-03 3:58 ` Leo Liang
2025-01-11 1:55 ` [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image Yu-Chien Peter Lin
1 sibling, 1 reply; 5+ messages in thread
From: Yu-Chien Peter Lin @ 2025-01-11 1:55 UTC (permalink / raw)
To: ycliang, trini, xypron.glpk, seashell11234455, dan.carpenter,
mchitale, ben.dooks, u-boot
Cc: Yu-Chien Peter Lin
Allow specifying load address of OP-TEE binary. It is
recommended that the specified address aligns with the
base address of an PMP-protected NAPOT region and matches
the CFG_TDDRAM_START configuration in OP-TEE.
Signed-off-by: Yu-Chien Peter Lin <peter.lin@sifive.com>
---
arch/riscv/Kconfig | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index a160d24fb03..9a9458026d3 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -582,4 +582,10 @@ config SPL_LOAD_FIT_OPENSBI_OS_BOOT
This is a shortcut boot flow, from u-boot SPL -> OpenSBI -> u-boot proper
-> linux to u-boot SPL -> OpenSBI -> linux.
+config SPL_OPTEE_LOAD_ADDR
+ hex "OP-TEE Trusted OS image load address"
+ depends on OPTEE
+ help
+ Load address of the OP-TEE binary.
+
endmenu
--
2.39.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image
2025-01-11 1:55 [RFC PATCH 0/2] Integrate OP-TEE into the RISC-V boot flow Yu-Chien Peter Lin
2025-01-11 1:55 ` [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR Yu-Chien Peter Lin
@ 2025-01-11 1:55 ` Yu-Chien Peter Lin
2025-02-03 3:59 ` Leo Liang
1 sibling, 1 reply; 5+ messages in thread
From: Yu-Chien Peter Lin @ 2025-01-11 1:55 UTC (permalink / raw)
To: ycliang, trini, xypron.glpk, seashell11234455, dan.carpenter,
mchitale, ben.dooks, u-boot
Cc: Yu-Chien Peter Lin
The following diagram illustrates the boot flow for OP-TEE OS
initialization on RISC-V.
(1)-----------+
| U-Boot SPL |
+------------+
|
v
(2)-------------------------------------------------------------+
| OpenSBI (fw_dynamic.bin) |
| (4)------------------------+ |
| | optee dispatcher driver | |
+-----------------+-------^---------|-------+------------------+
M-mode | | |
---------+--[trusted domain]---+----.----+--[untrusted domain]-------
S-mode | (coldboot domain) | | |
v | | v
(3)---------------------------+ |(5)----------------------------+
| OP-TEE OS (tee.bin) | | | U-Boot (u-boot-nodtb.bin) |
+----------------------------+ | +-----------------------------+
| |
| v
|(6)----------------------------+
| | Linux |
| +-----------------------------+
This patch enables the inclusion of the OP-TEE binary within the
U-Boot ITB, allowing it to be loaded to a platform defined address
by U-Boot SPL.
Signed-off-by: Yu-Chien Peter Lin <peter.lin@sifive.com>
---
arch/riscv/dts/binman.dtsi | 26 ++++++++++++++++++++++++--
1 file changed, 24 insertions(+), 2 deletions(-)
diff --git a/arch/riscv/dts/binman.dtsi b/arch/riscv/dts/binman.dtsi
index 9271de0ddfc..0405faca574 100644
--- a/arch/riscv/dts/binman.dtsi
+++ b/arch/riscv/dts/binman.dtsi
@@ -53,6 +53,19 @@
};
};
#endif
+#ifdef CONFIG_OPTEE
+ tee {
+ description = "OP-TEE";
+ type = "tee";
+ arch = "riscv";
+ compression = "none";
+ os = "tee";
+ load = /bits/ 64 <CONFIG_SPL_OPTEE_LOAD_ADDR>;
+ tee_blob: tee-os {
+ filename = "tee.bin";
+ };
+ };
+#endif
opensbi {
description = "OpenSBI fw_dynamic Firmware";
@@ -88,11 +101,20 @@
#endif
description = "NAME";
firmware = "opensbi";
-#ifndef CONFIG_SPL_LOAD_FIT_OPENSBI_OS_BOOT
- loadables = "uboot";
+#ifdef CONFIG_OPTEE
+#ifdef CONFIG_SPL_LOAD_FIT_OPENSBI_OS_BOOT
+ loadables = "linux", "tee";
#else
+ loadables = "uboot", "tee";
+#endif
+#else /* !CONFIG_OPTEEE */
+#ifdef CONFIG_SPL_LOAD_FIT_OPENSBI_OS_BOOT
loadables = "linux";
+#else
+ loadables = "uboot";
#endif
+#endif /* CONFIG_OPTEE */
+
#ifndef CONFIG_OF_BOARD
fdt = "fdt-SEQ";
#endif
--
2.39.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR
2025-01-11 1:55 ` [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR Yu-Chien Peter Lin
@ 2025-02-03 3:58 ` Leo Liang
0 siblings, 0 replies; 5+ messages in thread
From: Leo Liang @ 2025-02-03 3:58 UTC (permalink / raw)
To: Yu-Chien Peter Lin
Cc: trini, xypron.glpk, seashell11234455, dan.carpenter, mchitale,
ben.dooks, u-boot
On Sat, Jan 11, 2025 at 09:55:26AM +0800, Yu-Chien Peter Lin wrote:
> Allow specifying load address of OP-TEE binary. It is
> recommended that the specified address aligns with the
> base address of an PMP-protected NAPOT region and matches
> the CFG_TDDRAM_START configuration in OP-TEE.
>
> Signed-off-by: Yu-Chien Peter Lin <peter.lin@sifive.com>
> ---
> arch/riscv/Kconfig | 6 ++++++
> 1 file changed, 6 insertions(+)
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image
2025-01-11 1:55 ` [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image Yu-Chien Peter Lin
@ 2025-02-03 3:59 ` Leo Liang
0 siblings, 0 replies; 5+ messages in thread
From: Leo Liang @ 2025-02-03 3:59 UTC (permalink / raw)
To: Yu-Chien Peter Lin
Cc: trini, xypron.glpk, seashell11234455, dan.carpenter, mchitale,
ben.dooks, u-boot
On Sat, Jan 11, 2025 at 09:55:27AM +0800, Yu-Chien Peter Lin wrote:
> The following diagram illustrates the boot flow for OP-TEE OS
> initialization on RISC-V.
>
> (1)-----------+
> | U-Boot SPL |
> +------------+
> |
> v
> (2)-------------------------------------------------------------+
> | OpenSBI (fw_dynamic.bin) |
> | (4)------------------------+ |
> | | optee dispatcher driver | |
> +-----------------+-------^---------|-------+------------------+
> M-mode | | |
> ---------+--[trusted domain]---+----.----+--[untrusted domain]-------
> S-mode | (coldboot domain) | | |
> v | | v
> (3)---------------------------+ |(5)----------------------------+
> | OP-TEE OS (tee.bin) | | | U-Boot (u-boot-nodtb.bin) |
> +----------------------------+ | +-----------------------------+
> | |
> | v
> |(6)----------------------------+
> | | Linux |
> | +-----------------------------+
>
> This patch enables the inclusion of the OP-TEE binary within the
> U-Boot ITB, allowing it to be loaded to a platform defined address
> by U-Boot SPL.
>
> Signed-off-by: Yu-Chien Peter Lin <peter.lin@sifive.com>
> ---
> arch/riscv/dts/binman.dtsi | 26 ++++++++++++++++++++++++--
> 1 file changed, 24 insertions(+), 2 deletions(-)
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-02-03 4:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-11 1:55 [RFC PATCH 0/2] Integrate OP-TEE into the RISC-V boot flow Yu-Chien Peter Lin
2025-01-11 1:55 ` [RFC PATCH 1/2] riscv: Add CONFIG_SPL_OPTEE_LOAD_ADDR Yu-Chien Peter Lin
2025-02-03 3:58 ` Leo Liang
2025-01-11 1:55 ` [RFC PATCH 2/2] riscv: dts: binman.dtsi: Include OP-TEE OS image Yu-Chien Peter Lin
2025-02-03 3:59 ` Leo Liang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.