public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] doc: board: fix OPTEE args for TI SoCs
@ 2026-03-12  9:32 Anshul Dalal
  2026-03-12  9:48 ` Francesco Dolcini
  0 siblings, 1 reply; 2+ messages in thread
From: Anshul Dalal @ 2026-03-12  9:32 UTC (permalink / raw)
  To: u-boot, upstream
  Cc: Nishanth Menon, Robert Nelson, Tom Rini, Wadim Egorov,
	Francesco Dolcini, Mattijs Korpershoek, Anshul Dalal

CFG_WITH_SOFTWARE_PRNG=y was added as an OPTEE argument to workaround
some bugs related to TRNG which have been fixed now[1]. Therefore this
patch drops the redundant argument from the documentation.

[1]: https://github.com/OP-TEE/optee_os/commit/e313f4765fd0478bb66985827441411793433773

Signed-off-by: Anshul Dalal <anshuld@ti.com>
---
 doc/board/beagle/am62x_beagleplay.rst | 3 ++-
 doc/board/phytec/phycore-am62x.rst    | 3 ++-
 doc/board/ti/am62px_sk.rst            | 4 +++-
 doc/board/ti/am62x_sk.rst             | 4 ++--
 doc/board/toradex/verdin-am62.rst     | 3 ++-
 5 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/doc/board/beagle/am62x_beagleplay.rst b/doc/board/beagle/am62x_beagleplay.rst
index bc71aabaac3..64a05549caf 100644
--- a/doc/board/beagle/am62x_beagleplay.rst
+++ b/doc/board/beagle/am62x_beagleplay.rst
@@ -67,7 +67,8 @@ Set the variables corresponding to this platform:
   # we dont use any extra TFA parameters
   unset TFA_EXTRA_ARGS
   export OPTEE_PLATFORM=k3-am62x
-  export OPTEE_EXTRA_ARGS="CFG_WITH_SOFTWARE_PRNG=y"
+  # we dont use any extra OPTEE parameters
+  unset OPTEE_EXTRA_ARGS
 
 .. include::  ../ti/am62x_sk.rst
     :start-after: .. am62x_evm_rst_include_start_build_steps
diff --git a/doc/board/phytec/phycore-am62x.rst b/doc/board/phytec/phycore-am62x.rst
index 36315b49931..bd61d0c16cf 100644
--- a/doc/board/phytec/phycore-am62x.rst
+++ b/doc/board/phytec/phycore-am62x.rst
@@ -60,7 +60,8 @@ Set the variables corresponding to this platform:
  $ # we don't use any extra TFA parameters
  $ unset TFA_EXTRA_ARGS
  $ export OPTEE_PLATFORM=k3-am62x
- $ export OPTEE_EXTRA_ARGS="CFG_WITH_SOFTWARE_PRNG=y"
+ $ # we dont use any extra OPTEE parameters
+ $ unset OPTEE_EXTRA_ARGS
 
 .. include::  ../ti/am62x_sk.rst
     :start-after: .. am62x_evm_rst_include_start_build_steps
diff --git a/doc/board/ti/am62px_sk.rst b/doc/board/ti/am62px_sk.rst
index da70cd58095..2fd00e88285 100644
--- a/doc/board/ti/am62px_sk.rst
+++ b/doc/board/ti/am62px_sk.rst
@@ -99,7 +99,9 @@ Set the variables corresponding to this platform:
    # we dont use any extra TFA parameters
    unset TFA_EXTRA_ARGS
    export OPTEE_PLATFORM=k3-am62x
-   export OPTEE_EXTRA_ARGS="CFG_WITH_SOFTWARE_PRNG=y"
+   # we dont use any extra OPTEE parameters
+   unset OPTEE_EXTRA_ARGS
+
 
 .. am62px_evm_rst_include_start_build_steps
 
diff --git a/doc/board/ti/am62x_sk.rst b/doc/board/ti/am62x_sk.rst
index b50fff87506..2480733e2da 100644
--- a/doc/board/ti/am62x_sk.rst
+++ b/doc/board/ti/am62x_sk.rst
@@ -87,8 +87,8 @@ Set the variables corresponding to this platform:
   export TFA_BOARD=lite
   # we dont use any extra TFA parameters
   unset TFA_EXTRA_ARGS
-  export OPTEE_PLATFORM=k3-am62x
-  export OPTEE_EXTRA_ARGS="CFG_WITH_SOFTWARE_PRNG=y"
+  # we dont use any extra OPTEE parameters
+  unset OPTEE_EXTRA_ARGS
 
 .. am62x_evm_rst_include_start_build_steps
 
diff --git a/doc/board/toradex/verdin-am62.rst b/doc/board/toradex/verdin-am62.rst
index 93912adc896..aaca6fd1a73 100644
--- a/doc/board/toradex/verdin-am62.rst
+++ b/doc/board/toradex/verdin-am62.rst
@@ -59,7 +59,8 @@ Set the variables corresponding to this platform:
  $ # we don't use any extra TFA parameters
  $ unset TFA_EXTRA_ARGS
  $ export OPTEE_PLATFORM=k3-am62x
- $ export OPTEE_EXTRA_ARGS="CFG_WITH_SOFTWARE_PRNG=y"
+ $ # we dont use any extra OPTEE parameters
+ $ unset OPTEE_EXTRA_ARGS
 
 .. include::  ../ti/am62x_sk.rst
     :start-after: .. am62x_evm_rst_include_start_build_steps

---
base-commit: 8bc2a5196c1c0bb5dbdaca073323da0015a0de37
change-id: 20260312-optee_args_fix-ba4ba0420f4d

Best regards,
-- 
Anshul Dalal <anshuld@ti.com>


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

* Re: [PATCH] doc: board: fix OPTEE args for TI SoCs
  2026-03-12  9:32 [PATCH] doc: board: fix OPTEE args for TI SoCs Anshul Dalal
@ 2026-03-12  9:48 ` Francesco Dolcini
  0 siblings, 0 replies; 2+ messages in thread
From: Francesco Dolcini @ 2026-03-12  9:48 UTC (permalink / raw)
  To: Anshul Dalal
  Cc: u-boot, upstream, Nishanth Menon, Robert Nelson, Tom Rini,
	Wadim Egorov, Francesco Dolcini, Mattijs Korpershoek

On Thu, Mar 12, 2026 at 03:02:49PM +0530, Anshul Dalal wrote:
> CFG_WITH_SOFTWARE_PRNG=y was added as an OPTEE argument to workaround
> some bugs related to TRNG which have been fixed now[1]. Therefore this
> patch drops the redundant argument from the documentation.
> 
> [1]: https://github.com/OP-TEE/optee_os/commit/e313f4765fd0478bb66985827441411793433773
> 
> Signed-off-by: Anshul Dalal <anshuld@ti.com>

Acked-by: Francesco Dolcini <francesco.dolcini@toradex.com> # Toradex Verdin AM62


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

end of thread, other threads:[~2026-03-12  9:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-12  9:32 [PATCH] doc: board: fix OPTEE args for TI SoCs Anshul Dalal
2026-03-12  9:48 ` Francesco Dolcini

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