diff options
author | Simon Glass <sjg@chromium.org> | 2023-01-17 10:48:03 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-23 18:11:41 -0500 |
commit | 0c1f4a9fb13a54780f550d6e5bc4cd37a58f879e (patch) | |
tree | 0195ba57f94d4fca102bf5677d494f2727aa9fe6 /include | |
parent | 081bdc52c158dd3a4f73910cde3d7e70a5932d56 (diff) |
bootstd: Add a SPI flash bootdev
Add a bootdev for SPI flash so that these devices can be used with
standard boot. It only supports loading a script.
Add a special case for the label, since we want to use "spi", not
"spi_flash".
Enable the new bootdev on sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/bootflow.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/bootflow.h b/include/bootflow.h index 735ed87a00..319dda8e0b 100644 --- a/include/bootflow.h +++ b/include/bootflow.h @@ -332,6 +332,15 @@ void bootflow_remove(struct bootflow *bflow); int bootflow_iter_check_blk(const struct bootflow_iter *iter); /** + * bootflow_iter_check_sf() - Check that a bootflow uses SPI FLASH + * + * This checks the bootdev in the bootflow to make sure it uses SPI flash + * + * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet) + */ +int bootflow_iter_check_sf(const struct bootflow_iter *iter); + +/** * bootflow_iter_check_net() - Check that a bootflow uses a network device * * This checks the bootdev in the bootflow to make sure it uses a network |