
Dear Tom,
The following changes since commit c98c401dfb485b39c7453a4147b17cd4b8d10c67:
Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2023-07-27 10:35:36 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2023-10-rc2
for you to fetch changes up to 6e8fa0611f19824e200fe4725f18bce7e2000071:
board: ti: k3: Convert boot flow ascii flow to svg (2023-07-28 11:36:38 +0200)
Gitlab CI showed no issues: https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/17105
@Nishanth Please, add SPDX headers to the SVG files in a follow up patch.
---------------------------------------------------------------- Pull request for efi-2023-10-rc2
Documentation:
* Update the documentation for TI K3 boards (use SVG images) * Update doc/sphinx/requirements.txt * Describe QEMU emulation of block devices
UEFI
* Fix device paths for special block devices
---------------------------------------------------------------- Dan Carpenter (1): efi_loader: fix uninitialized variable bug in efi_set_load_options()
Heinrich Schuchardt (5): doc: update doc/sphinx/requirements.txt efi_loader: device paths for special block devices efi_loader: simplify dp_fill() doc: fix typo device_compat/.h doc: describe QEMU emulation of block devices
Ilias Apalodimas (1): efi_loader: make efi_delete_handle() follow the EFI spec
Nishanth Menon (19): doc: board: ti: Optimize sources references doc: board: ti: am62x/j7200: Update with common boot flow diagram doc: board: ti: am65x: Update with boot flow diagram doc: board: ti: j721e: Update with boot flow diagram doc: board: ti: k3: Reuse build instructions doc: board: ti: j7200: Convert the image format to svg doc: board: ti: j721e: Convert the image format to svg doc: board: ti: am65x: Convert the image format to svg doc: board: ti: am62x: Convert the image format to svg doc: board: ti: am62x_sk: Add labels to reuse memory map doc: board: ti: am62x_sk: Convert switch settings to list tables doc: board: ti: j7200_evm: Convert switch settings to list tables doc: board: ti: am65x_evm: Convert the UART boot responsibility to list table doc: board: ti: am65/j721e: Convert OSPI memory map to svg doc: board: ti: am65x_evm: Convert the emmc layout to svg doc: board: ti: j7200_evm: Convert the emmc layout to svg doc: board: ti: *: Add platform information doc: board: ti: k3: Sort the boards in alphabetical order board: ti: k3: Convert boot flow ascii flow to svg
Tom Rini (1): doc: ti: Clarify required file names for K3 platforms
cmd/bootefi.c | 21 +- doc/board/emulation/blkdev.rst | 38 + doc/board/emulation/index.rst | 4 +- doc/board/ti/am62x_sk.rst | 246 +-- doc/board/ti/am65x_evm.rst | 301 +--- doc/board/ti/img/boot_diagram_am65.svg | 1779 +++++++++++++++++++++ doc/board/ti/img/boot_diagram_j721e.svg | 2012 ++++++++++++++++++++++++ doc/board/ti/img/boot_diagram_k3_current.svg | 1925 +++++++++++++++++++++++ doc/board/ti/img/boot_flow_01.svg | 220 +++ doc/board/ti/img/boot_flow_02.svg | 459 ++++++ doc/board/ti/img/boot_flow_03.svg | 583 +++++++ doc/board/ti/img/dm_tispl.bin.svg | 317 ++++ doc/board/ti/img/emmc_am65x_evm_boot0.svg | 748 +++++++++ doc/board/ti/img/emmc_j7200_evm_boot01.svg | 662 ++++++++ doc/board/ti/img/emmc_j7200_evm_udafs.svg | 505 ++++++ doc/board/ti/img/j7200_tiboot3.bin.svg | 447 ++++++ doc/board/ti/img/multi_cert_tiboot3.bin.svg | 287 ++++ doc/board/ti/img/no_multi_cert_tiboot3.bin.svg | 238 +++ doc/board/ti/img/nodm_tispl.bin.svg | 277 ++++ doc/board/ti/img/ospi_sysfw.svg | 721 +++++++++ doc/board/ti/img/sysfw.itb.svg | 317 ++++ doc/board/ti/j7200_evm.rst | 301 +--- doc/board/ti/j721e_evm.rst | 271 +--- doc/board/ti/k3.rst | 136 +- doc/develop/codingstyle.rst | 2 +- doc/sphinx/requirements.txt | 6 +- include/efi_loader.h | 2 +- lib/efi_driver/efi_uclass.c | 12 +- lib/efi_loader/efi_boottime.c | 20 +- lib/efi_loader/efi_device_path.c | 155 +- lib/efi_loader/efi_disk.c | 7 +- lib/efi_loader/efi_load_options.c | 2 +- 32 files changed, 12019 insertions(+), 1002 deletions(-) create mode 100644 doc/board/emulation/blkdev.rst create mode 100644 doc/board/ti/img/boot_diagram_am65.svg create mode 100644 doc/board/ti/img/boot_diagram_j721e.svg create mode 100644 doc/board/ti/img/boot_diagram_k3_current.svg create mode 100644 doc/board/ti/img/boot_flow_01.svg create mode 100644 doc/board/ti/img/boot_flow_02.svg create mode 100644 doc/board/ti/img/boot_flow_03.svg create mode 100644 doc/board/ti/img/dm_tispl.bin.svg create mode 100644 doc/board/ti/img/emmc_am65x_evm_boot0.svg create mode 100644 doc/board/ti/img/emmc_j7200_evm_boot01.svg create mode 100644 doc/board/ti/img/emmc_j7200_evm_udafs.svg create mode 100644 doc/board/ti/img/j7200_tiboot3.bin.svg create mode 100644 doc/board/ti/img/multi_cert_tiboot3.bin.svg create mode 100644 doc/board/ti/img/no_multi_cert_tiboot3.bin.svg create mode 100644 doc/board/ti/img/nodm_tispl.bin.svg create mode 100644 doc/board/ti/img/ospi_sysfw.svg create mode 100644 doc/board/ti/img/sysfw.itb.svg