]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
upl: Add initial documentation
authorSimon Glass <sjg@chromium.org>
Wed, 7 Aug 2024 22:47:36 +0000 (16:47 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Aug 2024 22:03:20 +0000 (16:03 -0600)
Add some documentation to explain the basic concept along with a link
to the full spec.

Signed-off-by: Simon Glass <sjg@chromium.org>
MAINTAINERS
doc/usage/cmd/upl.rst
doc/usage/index.rst
doc/usage/upl.rst [new file with mode: 0644]

index 43d430c603acde87dc6e78c650547ae075510c28..215ffd02b45fbc551fd19fe334353f95a19abfb6 100644 (file)
@@ -1716,6 +1716,7 @@ T:        git https://source.denx.de/u-boot/custodians/u-boot-dm.git
 F:     boot/upl*
 F:     cmd/upl.c
 F:     common/spl/spl_upl.c
+F:     doc/usage/upl.rst
 F:     doc/usage/cmd/upl.rst
 F:     include/upl.h
 F:     test/boot/upl.c
index a64063d42d564f4364dafcc186ecea42e1a348f9..8d6ea5daa37c4162af8895ffcce7537e0c3bb3d8 100644 (file)
@@ -16,8 +16,8 @@ Description
 -----------
 
 The *upl* command is used to test U-Boot's support for the Universal Payload
-Specification (UPL) firmware standard. It allows creation of a fake handoff for
-use in testing.
+Specification (UPL) firmware standard (see :doc:`../upl`). It allows creation of
+a fake handoff for use in testing.
 
 
 upl write
index 4246c06d97d88d6a688933b3d6504c34ed13fe10..b058c2254fb9e7d2e97864e303660b041ce69e73 100644 (file)
@@ -15,6 +15,7 @@ Use U-Boot
    cmdline
    semihosting
    measured_boot
+   upl
 
 Shell commands
 --------------
diff --git a/doc/usage/upl.rst b/doc/usage/upl.rst
new file mode 100644 (file)
index 0000000..3c4a10c
--- /dev/null
@@ -0,0 +1,46 @@
+.. SPDX-License-Identifier: GPL-2.0-or-later
+
+Universal Payload
+-----------------
+
+`Universal Payload (UPL) <https://universalpayload.github.io/spec/index.html>`_
+is an Industry Standard for firmware components. UPL
+is designed to improve interoperability within the firmware industry, allowing
+mixing and matching of projects with less friction and fewer project-specific
+implementations. UPL is cross-platform, supporting ARM, x86 and RISC-V
+initially.
+
+UPL is defined in termns of two firmware components:
+
+`Platform Init`
+       Perhaps initial setup of the hardware and jumps to the payload.
+
+`Payload`
+       Selects the OS to boot
+
+In practice UPL can be used to handle any number of handoffs through the
+firmware startup process, with one program acting as platform init and another
+acting as the payload.
+
+UPL provides a standard for three main pieces:
+
+- file format for the payload, which may comprise multiple images to load
+- handoff format for the information the payload needs, such as serial port,
+  memory layout, etc.
+- machine state and register settings at the point of handoff
+
+See also the :doc:`cmd/upl`.
+
+UPL in U-Boot
+~~~~~~~~~~~~~
+
+U-Boot supports:
+
+- writing a UPL handoff (devicetree) in SPL
+- reading a UPL handoff in U-Boot proper
+- creating a FIT
+
+There are some new FIT features in UPL which are not yet supported in U-Boot.
+
+.. sectionauthor:: Simon Glass <sjg@chromium.org>
+.. July 2024