From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Simon Glass <sjg@chromium.org>,
Heinrich Schuchardt <xypron.glpk@gmx.de>,
Mattijs Korpershoek <mkorpershoek@baylibre.com>,
Neha Malcom Francis <n-francis@ti.com>,
Tom Rini <trini@konsulko.com>
Subject: [PATCH 55/67] upl: Update and tidy writing of images
Date: Thu, 2 Jan 2025 11:09:41 +1300 [thread overview]
Message-ID: <20250101221003.1944600-56-sjg@chromium.org> (raw)
In-Reply-To: <20250101221003.1944600-1-sjg@chromium.org>
The current implementation of images does not cover all the requirements
of the current, updated UPL spec. Add support for an entry address, the
offset of the image within the FIT as well as the load address and size,
which are subsumed into the new 'reg' property.
Support writing this information out to the UPL handoff.
Update SPL to handle the struct change as well.
Signed-off-by: Simon Glass <sjg@chromium.org>
---
boot/upl_read.c | 51 +++++++++++--------------------------------
boot/upl_write.c | 52 ++++++++++++++++----------------------------
cmd/upl.c | 4 ++--
common/spl/spl_upl.c | 5 +++--
include/upl.h | 34 ++++++++++++++---------------
test/boot/upl.c | 36 +++++++++++++++---------------
6 files changed, 73 insertions(+), 109 deletions(-)
diff --git a/boot/upl_read.c b/boot/upl_read.c
index 8fcc5a77c15..99f7a83ff0a 100644
--- a/boot/upl_read.c
+++ b/boot/upl_read.c
@@ -46,39 +46,6 @@ static int read_addr(const struct upl *upl, ofnode node, const char *prop,
return ret;
}
-/**
- * read_size() - Read a size
- *
- * Reads a size in the correct format, either 32- or 64-bit
- *
- * @upl: UPL state
- * @node: Node to read from
- * @prop: Property name to read
- * @addr: Place to put the size
- * Return: 0 if OK, -ve on error
- */
-static int read_size(const struct upl *upl, ofnode node, const char *prop,
- ulong *sizep)
-{
- int ret;
-
- if (upl->size_cells == 1) {
- u32 val;
-
- ret = ofnode_read_u32(node, prop, &val);
- if (!ret)
- *sizep = val;
- } else {
- u64 val;
-
- ret = ofnode_read_u64(node, prop, &val);
- if (!ret)
- *sizep = val;
- }
-
- return ret;
-}
-
/**
* ofnode_read_bitmask() - Read a bit mask from a string list
*
@@ -332,11 +299,19 @@ static int decode_upl_images(struct upl *upl, ofnode options)
ofnode_for_each_subnode(node, images) {
struct upl_image img;
- ret = read_addr(upl, node, UPLP_LOAD, &img.load);
- if (!ret)
- ret = read_size(upl, node, UPLP_SIZE, &img.size);
- if (!ret)
- ret = read_uint(node, UPLP_OFFSET, &img.offset);
+ memset(&img, '\0', sizeof(img));
+ buf = ofnode_read_prop(node, UPLP_REG, &size);
+ if (!buf)
+ return log_msg_ret("dui", ret);
+ ret = decode_addr_size(upl, buf, size, &img.reg);
+ log_debug("node %s: ret=%d, base=%llx\n", ofnode_get_name(node),
+ ret, img.reg.base);
+ if (ret < 0)
+ return log_msg_ret("duI", ret);
+
+ read_addr(upl, node, UPLP_ENTRY, &img.entry);
+
+ ret = read_uint(node, UPLP_OFFSET, &img.offset);
img.description = ofnode_read_string(node, UPLP_DESCRIPTION);
if (!img.description)
return log_msg_ret("sim", ret);
diff --git a/boot/upl_write.c b/boot/upl_write.c
index 32c68308149..4b4232af6e5 100644
--- a/boot/upl_write.c
+++ b/boot/upl_write.c
@@ -37,30 +37,6 @@ static int write_addr(const struct upl *upl, ofnode node, const char *prop,
return ret;
}
-/**
- * write_size() - Write a size
- *
- * Writes a size in the correct format, either 32- or 64-bit
- *
- * @upl: UPL state
- * @node: Node to write to
- * @prop: Property name to write
- * @size: Size to write
- * Return: 0 if OK, -ve on error
- */
-static int write_size(const struct upl *upl, ofnode node, const char *prop,
- ulong size)
-{
- int ret;
-
- if (upl->size_cells == 1)
- ret = ofnode_write_u32(node, prop, size);
- else
- ret = ofnode_write_u64(node, prop, size);
-
- return ret;
-}
-
/**
* ofnode_write_bitmask() - Write a bit mask as a string list
*
@@ -309,24 +285,34 @@ static int add_upl_images(const struct upl *upl, ofnode options)
return log_msg_ret("upi", ret);
for (i = 0; i < upl->image.count; i++) {
- const struct upl_image *img = alist_get(&upl->image, i,
- struct upl_image);
+ const struct upl_image *img;
+ char buf[sizeof(u64) * 4];
ofnode subnode;
- char name[10];
+ char name[30];
+ int len;
- snprintf(name, sizeof(name), UPLN_IMAGE "-%d", i + 1);
+ img = alist_get(&upl->image, i, struct upl_image);
+ snprintf(name, sizeof(name), UPLN_IMAGE "@%llx", img->reg.base);
ret = ofnode_add_subnode(node, name, &subnode);
if (ret)
return log_msg_ret("sub", ret);
- ret = write_addr(upl, subnode, UPLP_LOAD, img->load);
- if (!ret)
- ret = write_size(upl, subnode, UPLP_SIZE, img->size);
+ len = encode_addr_size(upl, buf, sizeof(buf), &img->reg);
+ if (len < 0)
+ return log_msg_ret("rbf", len);
+ ret = ofnode_write_prop(subnode, UPLP_REG, buf, len, true);
+
+ if (!ret && img->entry) {
+ ret = write_addr(upl, subnode, UPLP_ENTRY, img->entry);
+ if (ret < 0)
+ return log_msg_ret("uwr", ret);
+ }
if (!ret && img->offset)
ret = ofnode_write_u32(subnode, UPLP_OFFSET,
img->offset);
- ret = ofnode_write_string(subnode, UPLP_DESCRIPTION,
- img->description);
+ if (!ret)
+ ret = ofnode_write_string(subnode, UPLP_DESCRIPTION,
+ img->description);
if (ret)
return log_msg_ret("sim", ret);
}
diff --git a/cmd/upl.c b/cmd/upl.c
index 676e8f1f9e2..461f8f4f0aa 100644
--- a/cmd/upl.c
+++ b/cmd/upl.c
@@ -37,8 +37,8 @@ static int do_upl_info(struct cmd_tbl *cmdtp, int flag, int argc,
const struct upl_image *img =
alist_get(&upl->image, i, struct upl_image);
- printf("image %d: load %lx size %lx offset %x: %s\n", i,
- img->load, img->size, img->offset,
+ printf("image %d: load %llx size %lx entry %lx offset %x: %s\n",
+ i, img->reg.base, img->reg.size, img->entry, img->offset,
img->description);
}
}
diff --git a/common/spl/spl_upl.c b/common/spl/spl_upl.c
index 5777148bbe4..71b699aed23 100644
--- a/common/spl/spl_upl.c
+++ b/common/spl/spl_upl.c
@@ -38,8 +38,9 @@ int _upl_add_image(int node, ulong load_addr, ulong size, const char *desc)
struct upl *upl = &s_upl;
struct upl_image img;
- img.load = load_addr;
- img.size = size;
+ memset(&img, '\0', sizeof(img));
+ img.reg.base = load_addr;
+ img.reg.size = size;
img.offset = node;
img.description = desc;
if (!alist_add(&upl->image, img))
diff --git a/include/upl.h b/include/upl.h
index cff3401a932..19fa78b108e 100644
--- a/include/upl.h
+++ b/include/upl.h
@@ -35,8 +35,7 @@ struct unit_test_state;
#define UPLN_IMAGE "image"
#define UPLP_FIT "fit"
#define UPLP_CONF_OFFSET "conf-offset"
-#define UPLP_LOAD "load"
-#define UPLP_SIZE "size"
+#define UPLP_ENTRY "entry"
#define UPLP_OFFSET "offset"
#define UPLP_DESCRIPTION "description"
@@ -91,21 +90,6 @@ enum upl_boot_mode {
UPLBM_COUNT,
};
-/**
- * struct upl_image - UPL image informaiton
- *
- * @load: Address image was loaded to
- * @size: Size of image in bytes
- * @offset: Offset of the image in the FIT (0=none)
- * @desc: Description of the iamge (taken from the FIT)
- */
-struct upl_image {
- ulong load;
- ulong size;
- uint offset;
- const char *description;
-};
-
/**
* struct memregion - Information about a region of memory
*
@@ -117,6 +101,22 @@ struct memregion {
ulong size;
};
+/**
+ * struct upl_image - UPL image informaiton
+ *
+ * @reg: address and size of image in memory (within FIT)
+ * @offset: Offset of the image in the FIT (0=none)
+ * @load: Address image should be loaded to
+ * @entry: Entry address to jump to (must be within the image), or 0 if none
+ * @desc: Description of the iamge (taken from the FIT)
+ */
+struct upl_image {
+ struct memregion reg;
+ uint offset;
+ ulong entry;
+ const char *description;
+};
+
/**
* struct upl_mem - Information about physical-memory layout
*
diff --git a/test/boot/upl.c b/test/boot/upl.c
index 8e1a016943a..264aab3038c 100644
--- a/test/boot/upl.c
+++ b/test/boot/upl.c
@@ -53,16 +53,18 @@ int upl_get_test_data(struct unit_test_state *uts, struct upl *upl)
upl->acpi_nvs_size = 0x100;
/* image[0] */
- img.load = 0x1;
- img.size = 0x2;
+ img.reg.base = 0x1;
+ img.reg.size = 0x2;
img.offset = 0x3;
+ img.entry = 0x4;
img.description = "U-Boot";
ut_assertnonnull(alist_add(&upl->image, img));
/* image[1] */
- img.load = 0x4;
- img.size = 0x5;
- img.offset = 0x6;
+ img.reg.base = 0x5;
+ img.reg.size = 0x6;
+ img.offset = 0x7;
+ img.entry = 0x8;
img.description = "ATF";
ut_assertnonnull(alist_add(&upl->image, img));
@@ -155,24 +157,24 @@ int upl_get_test_data(struct unit_test_state *uts, struct upl *upl)
return 0;
}
-static int compare_upl_image(struct unit_test_state *uts,
- const struct upl_image *base,
- const struct upl_image *cmp)
+static int compare_upl_memregion(struct unit_test_state *uts,
+ const struct memregion *base,
+ const struct memregion *cmp)
{
- ut_asserteq(base->load, cmp->load);
+ ut_asserteq(base->base, cmp->base);
ut_asserteq(base->size, cmp->size);
- ut_asserteq(base->offset, cmp->offset);
- ut_asserteq_str(base->description, cmp->description);
return 0;
}
-static int compare_upl_memregion(struct unit_test_state *uts,
- const struct memregion *base,
- const struct memregion *cmp)
+static int compare_upl_image(struct unit_test_state *uts,
+ const struct upl_image *base,
+ const struct upl_image *cmp)
{
- ut_asserteq(base->base, cmp->base);
- ut_asserteq(base->size, cmp->size);
+ ut_assertok(compare_upl_memregion(uts, &base->reg, &cmp->reg));
+ ut_asserteq(base->offset, cmp->offset);
+ ut_asserteq(base->entry, cmp->entry);
+ ut_asserteq_str(base->description, cmp->description);
return 0;
}
@@ -427,7 +429,7 @@ static int upl_test_info_norun(struct unit_test_state *uts)
img = alist_get(&upl->image, 1, struct upl_image);
ut_asserteq_str("firmware-1", fdt_get_name(fit, img->offset, NULL));
- ut_asserteq(CONFIG_TEXT_BASE, img->load);
+ ut_asserteq(CONFIG_TEXT_BASE, img->reg.base);
return 0;
}
--
2.43.0
next prev parent reply other threads:[~2025-01-01 22:24 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-01 22:08 [PATCH 00/67] upl: Align with the updated spec Simon Glass
2025-01-01 22:08 ` [PATCH 01/67] bloblist: Make BLOBLIST_ALLOC the default Simon Glass
2025-01-01 22:08 ` [PATCH 02/67] abuf: Provide a way to get the buffer address Simon Glass
2025-01-01 22:08 ` [PATCH 03/67] abuf: Allow use in host tools Simon Glass
2025-01-01 22:08 ` [PATCH 04/67] abuf: Provide a constant buffer Simon Glass
2025-01-01 22:08 ` [PATCH 05/67] cpu: Provide a way to get the physical-address size Simon Glass
2025-01-01 22:08 ` [PATCH 06/67] serial: Support info() method in ns16550 xPL with UPL Simon Glass
2025-01-01 22:08 ` [PATCH 07/67] mkimage: Update map_to_sysmem() to match its prototype Simon Glass
2025-01-01 22:08 ` [PATCH 08/67] x86: Emable meminfo command Simon Glass
2025-01-03 14:51 ` Heinrich Schuchardt
2025-01-04 19:30 ` Simon Glass
2025-01-01 22:08 ` [PATCH 09/67] x86: Show the timestamp counter with bdinfo Simon Glass
2025-01-01 22:08 ` [PATCH 10/67] ofnode: Use 4K for a default tree-size Simon Glass
2025-01-01 22:08 ` [PATCH 11/67] ofnode: Indicate when out of space in a few places Simon Glass
2025-01-01 22:08 ` [PATCH 12/67] ofnode: Update of_add_subnode() to indicate name is alloced Simon Glass
2025-01-01 22:08 ` [PATCH 13/67] boot: Rename fit_image_get_data() Simon Glass
2025-01-03 14:55 ` Heinrich Schuchardt
2025-01-01 22:09 ` [PATCH 14/67] boot: Rename fit_image_get_data_and_size() Simon Glass
2025-01-01 22:09 ` [PATCH 15/67] boot: Update fit_image_get_emb_data to use abuf Simon Glass
2025-01-01 22:09 ` [PATCH 16/67] boot: Use fit_image_get_data() to get data Simon Glass
2025-01-01 22:09 ` [PATCH 17/67] boot: Update fit_image_get_data() to use abuf Simon Glass
2025-01-01 22:09 ` [PATCH 18/67] test: Fix inpected typo in upl test Simon Glass
2025-01-01 22:09 ` [PATCH 19/67] emulation: fdt: Relax condition for OF_HAS_PRIOR_STAGE Simon Glass
2025-01-01 22:09 ` [PATCH 20/67] emulation: Use bloblist to hold tables Simon Glass
2025-01-01 22:09 ` [PATCH 21/67] x86: Create more space for SPL with qemu-x86_64 Simon Glass
2025-01-01 22:09 ` [PATCH 22/67] upl: Create a function to create a memory node Simon Glass
2025-01-01 22:09 ` [PATCH 23/67] upl: Update add_upl_memmap() to use write_mem_node() Simon Glass
2025-01-01 22:09 ` [PATCH 24/67] upl: Update add_upl_memres() " Simon Glass
2025-01-01 22:09 ` [PATCH 25/67] upl: Support writing a UPL only for testing Simon Glass
2025-01-01 22:09 ` [PATCH 26/67] upl: Drop enum upl_serial_access_type Simon Glass
2025-01-01 22:09 ` [PATCH 27/67] upl: Init serial and graphics alists in upl_init() Simon Glass
2025-01-01 22:09 ` [PATCH 28/67] upl: Move serial and graphics addition-code to upl_common Simon Glass
2025-01-01 22:09 ` [PATCH 29/67] pci: video: Set up the pixel-format field Simon Glass
2025-01-01 22:09 ` [PATCH 30/67] x86: Show an error if video fails Simon Glass
2025-01-01 22:09 ` [PATCH 31/67] x86: Support jumping to a UPL image Simon Glass
2025-01-01 22:09 ` [PATCH 32/67] x86: Enable UPL handoff for SPL Simon Glass
2025-01-01 22:09 ` [PATCH 33/67] x86: Align the SMBIOS table to a 4K boundary Simon Glass
2025-01-03 15:10 ` Heinrich Schuchardt
2025-01-01 22:09 ` [PATCH 34/67] upl: Require OFNODE_MULTI_TREE when writing a UPL handoff Simon Glass
2025-01-01 22:09 ` [PATCH 35/67] upl: Drop the argument to spl_write_upl_handoff() Simon Glass
2025-01-01 22:09 ` [PATCH 36/67] x86: emulation: Enable UPL Simon Glass
2025-01-01 22:09 ` [PATCH 37/67] upl: Correct comment and condition in add_upl_memres() Simon Glass
2025-01-01 22:09 ` [PATCH 38/67] upl: Add addr/size tags in the reserved-memory node Simon Glass
2025-01-01 22:09 ` [PATCH 39/67] upl: Update upl_add_graphics() to return framebuffer Simon Glass
2025-01-01 22:09 ` [PATCH 40/67] upl: Add a function to write a UPL handoff to an abuf Simon Glass
2025-01-01 22:09 ` [PATCH 41/67] upl: Use a 64-bit value for a memregion base-address Simon Glass
2025-01-01 22:09 ` [PATCH 42/67] upl: Set bit 32 of the address when using ISA Simon Glass
2025-01-01 22:09 ` [PATCH 43/67] upl: Add RAM to the memory region Simon Glass
2025-01-01 22:09 ` [PATCH 44/67] upl: Add a compatible string for the upl-params node Simon Glass
2025-01-01 22:09 ` [PATCH 45/67] upl: Move buffer_addr_size() higher and rename Simon Glass
2025-01-01 22:09 ` [PATCH 46/67] upl: Factor out part of encode_reg() to new function Simon Glass
2025-01-01 22:09 ` [PATCH 47/67] upl: Move decode_addr_size() higher and rename Simon Glass
2025-01-01 22:09 ` [PATCH 48/67] upl: Factor out part of decode_reg() to new function Simon Glass
2025-01-01 22:09 ` [PATCH 49/67] upl: Correct name of upl-images Simon Glass
2025-01-01 22:09 ` [PATCH 50/67] dm: core: Clarify behaviour of ofnode_name_eq() Simon Glass
2025-01-01 22:09 ` [PATCH 51/67] dm: core: Allow ofnode_name_eq() to accept a unit address Simon Glass
2025-01-01 22:09 ` [PATCH 52/67] dm: core: Rewrite ofnode_find_subnode() to use ofnode API Simon Glass
2025-01-01 22:09 ` [PATCH 53/67] upl: test: Show the handoff FDT when debugging Simon Glass
2025-01-01 22:09 ` [PATCH 54/67] upl: Use a reg property to specify the FIT address and size Simon Glass
2025-01-01 22:09 ` Simon Glass [this message]
2025-01-01 22:09 ` [PATCH 56/67] upl: Make use of alist_for_each() Simon Glass
2025-01-01 22:09 ` [PATCH 57/67] upl: Correct use of sizeof() Simon Glass
2025-01-01 22:09 ` [PATCH 58/67] upl: Drop acpi_nvs_size Simon Glass
2025-01-01 22:09 ` [PATCH 59/67] upl: Improve uniqueness of log_msg_ret() strings Simon Glass
2025-01-01 22:09 ` [PATCH 60/67] upl: Add PCI information Simon Glass
2025-01-01 22:09 ` [PATCH 61/67] upl: Handle serial on an ISA bus with /chosen node Simon Glass
2025-01-01 22:09 ` [PATCH 62/67] upl: Add missing word in comment for upl_write_handoff() Simon Glass
2025-01-01 22:09 ` [PATCH 63/67] upl: Add a command to execute a UPL payload Simon Glass
2025-01-01 22:09 ` [PATCH 64/67] scripts: Update qemu script to use 64-bit on x86 always Simon Glass
2025-01-01 22:09 ` [PATCH 65/67] scripts: Update qemu script to support specifying a UPL Simon Glass
2025-01-01 22:09 ` [PATCH 66/67] upl: Add reserved memory for the ACPI and SMBIOS tables Simon Glass
2025-01-01 22:09 ` [PATCH 67/67] upl: Add an 'addr' property for Tianocore Simon Glass
2025-01-02 14:44 ` [PATCH 00/67] upl: Align with the updated spec Tom Rini
2025-01-02 23:45 ` Simon Glass
2025-01-03 14:26 ` Tom Rini
2025-01-04 19:32 ` Simon Glass
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=20250101221003.1944600-56-sjg@chromium.org \
--to=sjg@chromium.org \
--cc=mkorpershoek@baylibre.com \
--cc=n-francis@ti.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=xypron.glpk@gmx.de \
/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 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.