u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: "Simon Glass" <sjg@chromium.org>,
	"Abdellatif El Khlifi" <abdellatif.elkhlifi@arm.com>,
	"Alexey Romanov" <avromanov@sberdevices.ru>,
	"Algapally Santosh Sagar" <santoshsagar.algapally@amd.com>,
	"Ashok Reddy Soma" <ashok.reddy.soma@amd.com>,
	"Bin Meng" <bmeng.cn@gmail.com>,
	"Dzmitry Sankouski" <dsankouski@gmail.com>,
	"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
	"Ilias Apalodimas" <ilias.apalodimas@linaro.org>,
	"Marek Vasut" <marek.vasut+renesas@mailbox.org>,
	"Marek Vasut" <marex@denx.de>,
	"Masahisa Kojima" <masahisa.kojima@linaro.org>,
	"Mayuresh Chitale" <mchitale@ventanamicro.com>,
	"Michal Suchanek" <msuchanek@suse.de>,
	"Nathan Barrett-Morrison" <nathan.morrison@timesys.com>,
	"Neil Armstrong" <neil.armstrong@linaro.org>,
	"Nikhil M Jain" <n-jain1@ti.com>,
	"Oleksandr Suvorov" <oleksandr.suvorov@foundries.io>,
	"Ovidiu Panait" <ovpanait@gmail.com>,
	"Pierre-Clément Tosi" <ptosi@google.com>,
	"Ramon Fried" <rfried.dev@gmail.com>,
	"Rasmus Villemoes" <rasmus.villemoes@prevas.dk>,
	"Roger Knecht" <rknecht@pm.me>,
	"Roger Quadros" <rogerq@kernel.org>,
	"Sean Edmond" <seanedmond@microsoft.com>,
	"Shiji Yang" <yangshiji66@outlook.com>,
	"Stefan Herbrechtsmeier" <stefan.herbrechtsmeier@weidmueller.com>,
	"Stefan Roese" <sr@denx.de>,
	"Sughosh Ganu" <sughosh.ganu@linaro.org>,
	"Tobias Waldekranz" <tobias@waldekranz.com>
Subject: [RFX PATCH 0/9] Universal Payload initial series
Date: Wed, 30 Aug 2023 17:28:37 -0600	[thread overview]
Message-ID: <20230830232856.2589218-1-sjg@chromium.org> (raw)

Universal Payload (UPL) is an upcoming 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.

This series provides some initial support for this, for comment only.


Simon Glass (9):
  upl: Add support for reading a upl handoff
  upl: Add support for writing a upl handoff
  upl: Add basic tests
  upl: Add a command
  upl: Add support for Universal Payload in SPL
  spl: Plumb in the Universal Payload handoff
  Plumb in universal payload to the init process
  sandbox_vpl: Enable Universal Payload
  upl: Add initial documentation

 boot/Kconfig                      |  72 +++-
 boot/Makefile                     |   4 +
 boot/upl_common.c                 |  51 +++
 boot/upl_common.h                 |  24 ++
 boot/upl_read.c                   | 607 +++++++++++++++++++++++++++++
 boot/upl_write.c                  | 623 ++++++++++++++++++++++++++++++
 cmd/Kconfig                       |   7 +
 cmd/Makefile                      |   1 +
 cmd/upl.c                         |  99 +++++
 common/board_f.c                  |  22 ++
 common/board_r.c                  |   2 +
 common/spl/Makefile               |   2 +
 common/spl/spl.c                  |   6 +
 common/spl/spl_fit.c              |  22 ++
 common/spl/spl_upl.c              | 153 ++++++++
 configs/sandbox_defconfig         |   6 +-
 configs/sandbox_vpl_defconfig     |   4 +
 doc/usage/cmd/upl.rst             | 149 +++++++
 doc/usage/index.rst               |   2 +
 doc/usage/upl.rst                 |  27 ++
 include/asm-generic/global_data.h |  15 +
 include/spl.h                     |  11 +
 include/upl.h                     | 361 +++++++++++++++++
 test/boot/Makefile                |   2 +
 test/boot/upl.c                   | 457 ++++++++++++++++++++++
 test/py/tests/test_upl.py         |  25 ++
 26 files changed, 2750 insertions(+), 4 deletions(-)
 create mode 100644 boot/upl_common.c
 create mode 100644 boot/upl_common.h
 create mode 100644 boot/upl_read.c
 create mode 100644 boot/upl_write.c
 create mode 100644 cmd/upl.c
 create mode 100644 common/spl/spl_upl.c
 create mode 100644 doc/usage/cmd/upl.rst
 create mode 100644 doc/usage/upl.rst
 create mode 100644 include/upl.h
 create mode 100644 test/boot/upl.c
 create mode 100644 test/py/tests/test_upl.py

-- 
2.42.0.rc2.253.gd59a3bf2b4-goog


             reply	other threads:[~2023-08-30 23:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-30 23:28 Simon Glass [this message]
2023-08-31  3:50 ` [RFX PATCH 0/9] Universal Payload initial series Heinrich Schuchardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230830232856.2589218-1-sjg@chromium.org \
    --to=sjg@chromium.org \
    --cc=abdellatif.elkhlifi@arm.com \
    --cc=ashok.reddy.soma@amd.com \
    --cc=avromanov@sberdevices.ru \
    --cc=bmeng.cn@gmail.com \
    --cc=dsankouski@gmail.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=marex@denx.de \
    --cc=masahisa.kojima@linaro.org \
    --cc=mchitale@ventanamicro.com \
    --cc=msuchanek@suse.de \
    --cc=n-jain1@ti.com \
    --cc=nathan.morrison@timesys.com \
    --cc=neil.armstrong@linaro.org \
    --cc=oleksandr.suvorov@foundries.io \
    --cc=ovpanait@gmail.com \
    --cc=ptosi@google.com \
    --cc=rasmus.villemoes@prevas.dk \
    --cc=rfried.dev@gmail.com \
    --cc=rknecht@pm.me \
    --cc=rogerq@kernel.org \
    --cc=santoshsagar.algapally@amd.com \
    --cc=seanedmond@microsoft.com \
    --cc=sr@denx.de \
    --cc=stefan.herbrechtsmeier@weidmueller.com \
    --cc=sughosh.ganu@linaro.org \
    --cc=tobias@waldekranz.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    --cc=yangshiji66@outlook.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).