diff options
author | Sughosh Ganu <sughosh.ganu@linaro.org> | 2022-10-21 18:16:08 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 14:47:33 -0400 |
commit | 75f11c3bfdcfbadad0265eda74c372e52423ae4c (patch) | |
tree | 5ee0a5efa73f325b172a16db7551af87725fdb1f /doc/develop/uefi/uefi.rst | |
parent | f65ee99b9d574a5b7dcf1322eb13f0b79860bd6c (diff) | |
download | u-boot-75f11c3bfdcfbadad0265eda74c372e52423ae4c.tar.gz u-boot-75f11c3bfdcfbadad0265eda74c372e52423ae4c.tar.bz2 u-boot-75f11c3bfdcfbadad0265eda74c372e52423ae4c.zip |
FWU: doc: Add documentation for the FWU feature
Add documentation for the FWU Multi Bank Update feature. The document
describes the steps needed for setting up the platform for the
feature, as well as steps for enabling the feature on the platform.
Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'doc/develop/uefi/uefi.rst')
-rw-r--r-- | doc/develop/uefi/uefi.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/develop/uefi/uefi.rst b/doc/develop/uefi/uefi.rst index cd84706953..e0835beba4 100644 --- a/doc/develop/uefi/uefi.rst +++ b/doc/develop/uefi/uefi.rst @@ -277,6 +277,8 @@ Enable ``CONFIG_OPTEE``, ``CONFIG_CMD_OPTEE_RPMB`` and ``CONFIG_EFI_MM_COMM_TEE` [1] https://optee.readthedocs.io/en/latest/building/efi_vars/stmm.html +.. _uefi_capsule_update_ref: + Enabling UEFI Capsule Update feature ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -377,6 +379,16 @@ following command:: dfu list +When the FWU Multi Bank Update feature is enabled on the platform, the +image index is used only to identify the image index with the image +GUID. The image index would not correspond to the dfu alt number. This +is because the FWU feature supports multiple partitions(banks) of +updatable images, and the actual dfu alt number to which the image is +to be written to is determined at runtime, based on the value of the +update bank to which the image is to be written. For more information +on the FWU Multi Bank Update feature, please refer `doc +<doc/develop/uefi/fwu_updates.rst>`__. + When using the FMP for FIT images, the image index value needs to be set to 1. |