All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/19] EFI: ti: Enable EFI capsule updates
@ 2024-05-09 16:41 Jonathan Humphreys
  2024-05-09 16:41 ` [PATCH v4 01/19] doc: uefi: capsules: Add Capsule Update porting section Jonathan Humphreys
                   ` (18 more replies)
  0 siblings, 19 replies; 30+ messages in thread
From: Jonathan Humphreys @ 2024-05-09 16:41 UTC (permalink / raw)
  To: Mattijs Korpershoek, Kamlesh Gurudasani, Manorit Chawdhry,
	Heinrich Schuchardt, Judith Mendez, Christian Gmeiner,
	Devarsh Thakkar, Simon Glass, Nikhil M Jain, Neha Malcom Francis,
	Andrew Davis, Maxime Ripard, Siddharth Vadapalli, Roger Quadros,
	Bryan Brattlof, Vignesh Raghavendra, Robert Nelson,
	Nishanth Menon, Tom Rini, Sughosh Ganu, Masahisa Kojima,
	Marcel Ziswiler, Ilias Apalodimas
  Cc: u-boot, Jonathan Humphreys

Enable on disk capsule updates, which includes defining the firmware
components (tiboot3, spl, u-boot) and enabling processing of raw capsule
updates.

This is enabled for several TI SoC based platforms: AM64, AM62, AM62p,
BeaglePlay, J7, and BeagleboneAI.

This series also includes enabling seral flash DFU for AM62 and MMC DFU for
beagleplay.

Changes from v1:
- Added sysfw.itb capsule definition to beagleboneai64
- removed extra commas in structure definitions

Changes from v2:
- Added documentation on OSPI flash layouts
- Improved comments for capsule GUIDs definitions
- Defined board unique capsule GUIDs and put definitions in board specific
  files
- Added a Capsule Update porting section to the documentation

Changes from v3:
- Added better commit messages based upon checkpatch warnings.
- Remove conditional inclusion of capsule update firmware info
- Converted OSPI layout diagram to svg format
Link to v3: https://lore.kernel.org/r/20240419205701.163821-1-j-humphreys@ti.com

Jonathan Humphreys (19):
  doc: uefi: capsules: Add Capsule Update porting section
  board: am64x: Define capsule update firmware info
  configs: am64x: Enable EFI capsule update
  doc: board: ti: am64x: document OSPI layout
  board: j721e: Define capsule update firmware info
  configs: j721e: Enable EFI capsule update
  doc: board: ti: j721e: document OSPI layout
  board: beagleplay: Define capsule update firmware info
  configs: beagleplay: Enable DFU for MMC
  configs: beagleplay: Enable EFI capsule update
  configs: am62x: Enable serial flash DFU
  board: am62x: Define capsule update firmware info
  configs: am62x: Enable EFI capsule update
  doc: board: ti: am62x: document OSPI layout
  board: am62px: Define capsule update firmware info
  configs: am62px: Enable EFI capsule update
  doc: board: ti: am62px: document OSPI layout
  board: beagleboneai64: Define capsule update firmware info
  configs: beagleboneai64: Enable EFI capsule update

 board/beagle/beagleboneai64/Kconfig          |    4 +-
 board/beagle/beagleboneai64/beagleboneai64.c |   37 +
 board/beagle/beagleplay/Kconfig              |    4 +-
 board/beagle/beagleplay/beagleplay.c         |   32 +
 board/ti/am62px/evm.c                        |   32 +
 board/ti/am62x/evm.c                         |   32 +
 board/ti/am64x/evm.c                         |   32 +
 board/ti/j721e/evm.c                         |   38 +
 configs/am62px_evm_a53_defconfig             |    2 +
 configs/am62x_beagleplay_a53_defconfig       |    5 +
 configs/am62x_evm_a53_defconfig              |    3 +
 configs/am64x_evm_a53_defconfig              |    2 +
 configs/j721e_beagleboneai64_a72_defconfig   |    2 +
 configs/j721e_evm_a72_defconfig              |    2 +
 doc/board/ti/am62px_sk.rst                   |   24 +
 doc/board/ti/am62x_sk.rst                    |   24 +
 doc/board/ti/am64x_evm.rst                   |   24 +
 doc/board/ti/img/ospi_sysfw-am64.svg         |  802 ++++++++++
 doc/board/ti/img/ospi_sysfw.svg              | 1464 ++++++++++--------
 doc/board/ti/img/ospi_sysfw2.svg             |  802 ++++++++++
 doc/board/ti/j721e_evm.rst                   |   58 +-
 doc/develop/uefi/uefi.rst                    |   12 +
 include/configs/am62px_evm.h                 |   24 +
 include/configs/am62x_evm.h                  |   24 +
 include/configs/am64x_evm.h                  |   24 +
 include/configs/beagleboneai64.h             |   55 +
 include/configs/beagleplay.h                 |   41 +
 include/configs/j721e_evm.h                  |   29 +
 28 files changed, 2955 insertions(+), 679 deletions(-)
 create mode 100644 doc/board/ti/img/ospi_sysfw-am64.svg
 create mode 100644 doc/board/ti/img/ospi_sysfw2.svg
 create mode 100644 include/configs/beagleboneai64.h
 create mode 100644 include/configs/beagleplay.h

-- 
2.34.1


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

end of thread, other threads:[~2024-05-31  9:30 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-09 16:41 [PATCH v4 00/19] EFI: ti: Enable EFI capsule updates Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 01/19] doc: uefi: capsules: Add Capsule Update porting section Jonathan Humphreys
2024-05-10  5:35   ` Ilias Apalodimas
2024-05-09 16:41 ` [PATCH v4 02/19] board: am64x: Define capsule update firmware info Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 03/19] configs: am64x: Enable EFI capsule update Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 04/19] doc: board: ti: am64x: document OSPI layout Jonathan Humphreys
2024-05-09 22:23   ` Tom Rini
2024-05-09 16:41 ` [PATCH v4 05/19] board: j721e: Define capsule update firmware info Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 06/19] configs: j721e: Enable EFI capsule update Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 07/19] doc: board: ti: j721e: document OSPI layout Jonathan Humphreys
2024-05-09 22:23   ` Tom Rini
2024-05-09 16:41 ` [PATCH v4 08/19] board: beagleplay: Define capsule update firmware info Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 09/19] configs: beagleplay: Enable DFU for MMC Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 10/19] configs: beagleplay: Enable EFI capsule update Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 11/19] configs: am62x: Enable serial flash DFU Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 12/19] board: am62x: Define capsule update firmware info Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 13/19] configs: am62x: Enable EFI capsule update Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 14/19] doc: board: ti: am62x: document OSPI layout Jonathan Humphreys
2024-05-09 22:23   ` Tom Rini
2024-05-09 16:41 ` [PATCH v4 15/19] board: am62px: Define capsule update firmware info Jonathan Humphreys
2024-05-23 22:08   ` Ilias Apalodimas
2024-05-24 15:38     ` Jon Humphreys
2024-05-30 16:04       ` Ilias Apalodimas
2024-05-31  4:09         ` Jon Humphreys
2024-05-31  9:30           ` Ilias Apalodimas
2024-05-09 16:41 ` [PATCH v4 16/19] configs: am62px: Enable EFI capsule update Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 17/19] doc: board: ti: am62px: document OSPI layout Jonathan Humphreys
2024-05-09 22:23   ` Tom Rini
2024-05-09 16:41 ` [PATCH v4 18/19] board: beagleboneai64: Define capsule update firmware info Jonathan Humphreys
2024-05-09 16:41 ` [PATCH v4 19/19] configs: beagleboneai64: Enable EFI capsule update Jonathan Humphreys

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.