From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 11/16] block: fixup rootwait argument when needed by default
Date: Tue, 1 Apr 2025 12:48:01 +0200 [thread overview]
Message-ID: <20250401104806.3959859-12-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20250401104806.3959859-1-a.fatoum@pengutronix.de>
The rootwait command-line option is usually added to the bootloader spec
options line, which is a bit out-of-place in combination with
linux-appendroot as it hardcodes an assumption about what device the
bootloader spec entries are installed to.
Instead, allow barebox to fix it up on demand, when booting from SD/MMC,
USB or NFS.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
common/Kconfig | 11 +++++++++++
common/block.c | 5 +++++
common/bootargs.c | 12 ++++++++++++
common/bootm.c | 5 +++++
drivers/block/efi-block-io.c | 10 +++++++---
drivers/mci/mci-core.c | 1 +
drivers/usb/storage/usb.c | 1 +
fs/nfs.c | 4 ++++
include/block.h | 1 +
include/bootargs.h | 7 +++++++
10 files changed, 54 insertions(+), 3 deletions(-)
diff --git a/common/Kconfig b/common/Kconfig
index f0cd2f0729a4..4d2a2a73f39b 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -781,6 +781,17 @@ config FLEXIBLE_BOOTARGS
to replace parts of the bootargs string without reconstructing it
completely.
+config ROOTWAIT_BOOTARG
+ def_bool y
+ prompt "fixup 'rootwait' into kernel command-line when needed"
+ depends on FLEXIBLE_BOOTARGS
+ help
+ Adds a rootwait= argument into the kernel command-line argument
+ for boot media that requires it, like USB, SD/MMC or NFS.
+ The duration chosen is controlled by the linux.rootwait
+ parameter and defaults to 10 seconds. Setting the variable
+ to 0 will wait indefinitely.
+
config MMCBLKDEV_ROOTARG
bool
prompt "Support 'root=mmcblkXpN' cmdline appending"
diff --git a/common/block.c b/common/block.c
index 7066abc5f404..d401e979abff 100644
--- a/common/block.c
+++ b/common/block.c
@@ -12,6 +12,7 @@
#include <linux/list.h>
#include <dma.h>
#include <range.h>
+#include <bootargs.h>
#include <file-list.h>
LIST_HEAD(block_device_list);
@@ -609,5 +610,9 @@ char *cdev_get_linux_rootarg(const struct cdev *partcdev)
if (!rootarg && partcdev->partuuid[0] != 0)
rootarg = basprintf("root=PARTUUID=%s", partcdev->partuuid);
+ if (IS_ENABLED(CONFIG_ROOTWAIT_BOOTARG) && blk->rootwait)
+ rootarg = linux_bootargs_append_rootwait(rootarg);
+
return rootarg;
}
+
diff --git a/common/bootargs.c b/common/bootargs.c
index c49136609f48..ad8007d32a42 100644
--- a/common/bootargs.c
+++ b/common/bootargs.c
@@ -75,6 +75,18 @@ int linux_bootargs_overwrite(const char *bootargs)
return 0;
}
+char *linux_bootargs_append_rootwait(char *rootarg_old)
+{
+ char *rootarg = xasprintf("%s rootwait=%d",
+ rootarg_old, linux_rootwait_secs);
+ free(rootarg_old);
+ return rootarg;
+}
+
+
BAREBOX_MAGICVAR(global.linux.bootargs.*, "Linux bootargs variables");
BAREBOX_MAGICVAR(global.linux.mtdparts.*, "Linux mtdparts variables");
BAREBOX_MAGICVAR(global.linux.blkdevparts.*, "Linux blkdevparts variables");
+#ifdef CONFIG_ROOTWAIT_BOOTARG
+BAREBOX_MAGICVAR(global.linux.rootwait, "Argument (in seconds) for Linux rootwait= option if it's fixed up. A negative value waits indefinitely");
+#endif
diff --git a/common/bootm.c b/common/bootm.c
index e781b48b0e7d..db79e145c9f3 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -1096,6 +1096,8 @@ static struct image_handler zstd_bootm_handler = {
.filetype = filetype_zstd_compressed,
};
+int linux_rootwait_secs = 10;
+
static int bootm_init(void)
{
globalvar_add_simple("bootm.image", NULL);
@@ -1121,6 +1123,9 @@ static int bootm_init(void)
globalvar_add_simple_enum("bootm.verify", (unsigned int *)&bootm_verify_mode,
bootm_verify_names, ARRAY_SIZE(bootm_verify_names));
+ if (IS_ENABLED(CONFIG_ROOTWAIT_BOOTARG))
+ globalvar_add_simple_int("linux.rootwait",
+ &linux_rootwait_secs, "%d");
if (IS_ENABLED(CONFIG_BZLIB))
register_image_handler(&bzip2_bootm_handler);
diff --git a/drivers/block/efi-block-io.c b/drivers/block/efi-block-io.c
index 2f439d89419e..1c2d801a42ef 100644
--- a/drivers/block/efi-block-io.c
+++ b/drivers/block/efi-block-io.c
@@ -108,12 +108,12 @@ static void efi_bio_print_info(struct device *dev)
static bool is_bio_usbdev(struct efi_device *efidev)
{
- return IS_ENABLED(CONFIG_EFI_BLK_SEPARATE_USBDISK) &&
- efi_device_has_guid(efidev, EFI_USB_IO_PROTOCOL_GUID);
+ return efi_device_has_guid(efidev, EFI_USB_IO_PROTOCOL_GUID);
}
static int efi_bio_probe(struct efi_device *efidev)
{
+ bool is_usbdev;
int instance;
struct efi_bio_priv *priv;
struct efi_block_io_media *media;
@@ -134,7 +134,11 @@ static int efi_bio_probe(struct efi_device *efidev)
efi_bio_print_info(dev);
priv->dev = &efidev->dev;
- if (is_bio_usbdev(efidev)) {
+ is_usbdev = is_bio_usbdev(efidev);
+ if (is_usbdev)
+ priv->blk.rootwait = true;
+
+ if (IS_ENABLED(CONFIG_EFI_BLK_SEPARATE_USBDISK) && is_usbdev) {
instance = cdev_find_free_index("usbdisk");
priv->blk.cdev.name = xasprintf("usbdisk%d", instance);
} else {
diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
index aae63484a09b..2c82379b0d73 100644
--- a/drivers/mci/mci-core.c
+++ b/drivers/mci/mci-core.c
@@ -2659,6 +2659,7 @@ static int mci_register_partition(struct mci_part *part)
part->blk.dev = &mci->dev;
part->blk.ops = &mci_ops;
part->blk.type = IS_SD(mci) ? BLK_TYPE_SD : BLK_TYPE_MMC;
+ part->blk.rootwait = true;
if (part->area_type == MMC_BLK_DATA_AREA_RPMB)
return 0;
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index cc241e69be1b..e106174f37d8 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -422,6 +422,7 @@ static int usb_stor_add_blkdev(struct us_data *us, unsigned char lun)
pblk_dev->blk.cdev.name = basprintf("disk%d", result);
pblk_dev->blk.blockbits = SECTOR_SHIFT;
pblk_dev->blk.type = BLK_TYPE_USB;
+ pblk_dev->blk.rootwait = true;
result = blockdevice_register(&pblk_dev->blk);
if (result != 0) {
diff --git a/fs/nfs.c b/fs/nfs.c
index bc3ab3aa8e87..4311971c479d 100644
--- a/fs/nfs.c
+++ b/fs/nfs.c
@@ -34,6 +34,7 @@
#include <byteorder.h>
#include <globalvar.h>
#include <parseopt.h>
+#include <bootargs.h>
#include <magicvar.h>
#define SUNRPC_PORT 111
@@ -1423,6 +1424,9 @@ static void nfs_set_rootarg(struct nfs_priv *npriv, struct fs_device *fsdev)
str = tmp;
}
+ if (IS_ENABLED(CONFIG_ROOTWAIT_BOOTARG))
+ str = linux_bootargs_append_rootwait(str);
+
fsdev_set_linux_rootarg(fsdev, str);
free(str);
diff --git a/include/block.h b/include/block.h
index a992eba43191..0ca6c6aff6e9 100644
--- a/include/block.h
+++ b/include/block.h
@@ -44,6 +44,7 @@ struct block_device {
struct block_device_ops *ops;
u8 blockbits;
u8 type; /* holds enum blk_type */
+ u8 rootwait:1;
blkcnt_t num_blocks;
int rdbufsize;
int blkmask;
diff --git a/include/bootargs.h b/include/bootargs.h
index c85fd4c4a797..1cf88bd38056 100644
--- a/include/bootargs.h
+++ b/include/bootargs.h
@@ -4,9 +4,12 @@
#include <environment.h>
+extern int linux_rootwait_secs;
+
#ifdef CONFIG_FLEXIBLE_BOOTARGS
const char *linux_bootargs_get(void);
int linux_bootargs_overwrite(const char *bootargs);
+char *linux_bootargs_append_rootwait(char *rootarg_old);
#else
static inline const char *linux_bootargs_get(void)
{
@@ -17,6 +20,10 @@ static inline int linux_bootargs_overwrite(const char *bootargs)
{
return setenv("bootargs", bootargs);
}
+static inline char *linux_bootargs_append_rootwait(char *rootarg)
+{
+ return rootarg;
+}
#endif
#endif /* __BOOTARGS_H */
--
2.39.5
next prev parent reply other threads:[~2025-04-01 11:09 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-01 10:47 [PATCH 00/16] boot: implement generic bootsource target Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 01/16] boot: change bootentry_register_provider to take struct argument Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 02/16] boot: move nfs:// parsing out of bootloader spec code Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 03/16] blspec: remove unused blspec_scan_devices Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 04/16] blspec: don't export blspec functions Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 05/16] blspec: factor out generic parts into bootscan helper Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 06/16] common: bootscan: add scan_disk callback Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 07/16] blspec: support boot /dev/virtioblkX Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 08/16] bootm: associate bootm overrides with struct bootentry Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 09/16] boot: split off bootarg API into new bootargs.h header Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 10/16] block: add get_rootarg block op into block_device_ops Ahmad Fatoum
2025-04-01 10:48 ` Ahmad Fatoum [this message]
2025-04-01 10:48 ` [PATCH 12/16] of: implement stub for of_cdev_find Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 13/16] bootsource: implement bootsource_of_cdev_find Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 14/16] common: bootdef: add new boot entry provider Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 15/16] kconfig: implement IF_ENABLED helper Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 16/16] boot: make bootsource the default boot target if enabled Ahmad Fatoum
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=20250401104806.3959859-12-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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