summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-07-31 00:52:22 +0300
committerTom Rini <trini@konsulko.com>2022-08-12 15:17:10 +0300
commit2662b54d70fc04f070f0e4a9742d4b3197c9f3ea (patch)
tree6569dd30d4ddc4b0af0f4216b9e7bf3ba0a3c1d0 /boot
parentbc06aa035d8f78a713a3d339d45f3d05ef0f0d67 (diff)
downloadu-boot-2662b54d70fc04f070f0e4a9742d4b3197c9f3ea.tar.xz
bootstd: Allow EFI bootmgr to support an invalid bootflow
For most testing we don't want this bootmeth to actually do anything. For the one test where we do, add a test hook to obtain the correct behaviour. This will allow us to bind the device always, rather than just doing it for this test. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot')
-rw-r--r--boot/bootmeth_efi_mgr.c32
1 files changed, 26 insertions, 6 deletions
diff --git a/boot/bootmeth_efi_mgr.c b/boot/bootmeth_efi_mgr.c
index 08d9328af4..2f327c1f8c 100644
--- a/boot/bootmeth_efi_mgr.c
+++ b/boot/bootmeth_efi_mgr.c
@@ -15,6 +15,22 @@
#include <command.h>
#include <dm.h>
+/**
+ * struct efi_mgr_priv - private info for the efi-mgr driver
+ *
+ * @fake_bootflow: Fake a valid bootflow for testing
+ */
+struct efi_mgr_priv {
+ bool fake_dev;
+};
+
+void sandbox_set_fake_efi_mgr_dev(struct udevice *dev, bool fake_dev)
+{
+ struct efi_mgr_priv *priv = dev_get_priv(dev);
+
+ priv->fake_dev = fake_dev;
+}
+
static int efi_mgr_check(struct udevice *dev, struct bootflow_iter *iter)
{
int ret;
@@ -29,13 +45,16 @@ static int efi_mgr_check(struct udevice *dev, struct bootflow_iter *iter)
static int efi_mgr_read_bootflow(struct udevice *dev, struct bootflow *bflow)
{
- /*
- * Just assume there is something to boot since we don't have any way
- * of knowing in advance
- */
- bflow->state = BOOTFLOWST_READY;
+ struct efi_mgr_priv *priv = dev_get_priv(dev);
- return 0;
+ if (priv->fake_dev) {
+ bflow->state = BOOTFLOWST_READY;
+ return 0;
+ }
+
+ /* To be implemented */
+
+ return -EINVAL;
}
static int efi_mgr_read_file(struct udevice *dev, struct bootflow *bflow,
@@ -84,4 +103,5 @@ U_BOOT_DRIVER(bootmeth_efi_mgr) = {
.of_match = efi_mgr_bootmeth_ids,
.ops = &efi_mgr_bootmeth_ops,
.bind = bootmeth_efi_mgr_bind,
+ .priv_auto = sizeof(struct efi_mgr_priv),
};