[PATCH 16/18] arm64: versal-net: Do not print bootmode from spi_get_env_dev()
Michal Simek
michal.simek at amd.com
Tue Jun 23 14:53:41 CEST 2026
spi_get_bootseq() printed the QSPI/OSPI mode banner, which is noise when
called from spi_get_env_dev() during environment setup. The banner is
only meaningful for the "Bootmode:" announcement in boot_targets_setup().
Make spi_get_bootseq() a pure lookup that returns the banner string
through an optional output argument instead of printing it.
spi_get_env_dev() passes NULL and stays silent, while
boot_targets_setup() prints the returned mode name as before.
Signed-off-by: Michal Simek <michal.simek at amd.com>
---
board/xilinx/versal-net/board.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/board/xilinx/versal-net/board.c b/board/xilinx/versal-net/board.c
index 50dd49927be2..687d042d1062 100644
--- a/board/xilinx/versal-net/board.c
+++ b/board/xilinx/versal-net/board.c
@@ -68,7 +68,7 @@ int board_early_init_r(void)
return 0;
}
-static int spi_get_bootseq(u8 bootmode)
+static int spi_get_bootseq(u8 bootmode, const char **modename)
{
struct udevice *dev;
const char *name;
@@ -76,15 +76,18 @@ static int spi_get_bootseq(u8 bootmode)
switch (bootmode) {
case QSPI_MODE_24BIT:
- puts("QSPI_MODE_24\n");
+ if (modename)
+ *modename = "QSPI_MODE_24\n";
name = "spi at f1030000";
break;
case QSPI_MODE_32BIT:
- puts("QSPI_MODE_32\n");
+ if (modename)
+ *modename = "QSPI_MODE_32\n";
name = "spi at f1030000";
break;
case OSPI_MODE:
- puts("OSPI_MODE\n");
+ if (modename)
+ *modename = "OSPI_MODE\n";
name = "spi at f1010000";
break;
default:
@@ -104,7 +107,7 @@ static int spi_get_bootseq(u8 bootmode)
int spi_get_env_dev(void)
{
- return spi_get_bootseq(versal_net_get_bootmode());
+ return spi_get_bootseq(versal_net_get_bootmode(), NULL);
}
static int boot_targets_setup(void)
@@ -115,6 +118,7 @@ static int boot_targets_setup(void)
int bootseq_len = 0;
int env_targets_len = 0;
const char *mode = NULL;
+ const char *modename = NULL;
char *new_targets;
char *env_targets;
@@ -133,7 +137,9 @@ static int boot_targets_setup(void)
case QSPI_MODE_24BIT:
case QSPI_MODE_32BIT:
case OSPI_MODE:
- bootseq = spi_get_bootseq(bootmode);
+ bootseq = spi_get_bootseq(bootmode, &modename);
+ if (modename)
+ puts(modename);
if (bootseq >= 0)
mode = "xspi";
break;
--
2.43.0
More information about the U-Boot
mailing list