Support CMD_OPTEE_RPMB for SANDBOX configurations.
Test:

$ ./u-boot -d arch/sandbox/dts/test.dtb
...
=> optee_rpmb write_pvalue test_variable test_value
Wrote 11 bytes
=> optee_rpmb read_pvalue test_variable 11
Read 11 bytes, value = test_value

Reviewed-by: Mattijs Korpershoek <mkorpersh...@baylibre.com>
Tested-by: Mattijs Korpershoek <mkorpersh...@baylibre.com>
Signed-off-by: Igor Opaniuk <igor.opan...@gmail.com>
---

(no changes since v2)

Changes in v2:
- Applied R-b and T-b tags

 cmd/Kconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 61e280fb1a4..227d66a7eea 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1394,7 +1394,9 @@ config CMD_CLONE
 
 config CMD_OPTEE_RPMB
        bool "Enable read/write support on RPMB via OPTEE"
-       depends on SUPPORT_EMMC_RPMB && OPTEE
+       depends on (SUPPORT_EMMC_RPMB && OPTEE) || SANDBOX_TEE
+       default y if SANDBOX_TEE
+       select OPTEE_TA_AVB if SANDBOX_TEE
        help
          Enable the commands for reading, writing persistent named values
          in the Replay Protection Memory Block partition in eMMC by
-- 
2.34.1

Reply via email to