projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a62b01d
)
xilinx: zynq: Generate dfu for SPI only when enabled
author
Michal Simek
<michal.simek@amd.com>
Mon, 13 Nov 2023 09:05:27 +0000
(10:05 +0100)
committer
Michal Simek
<michal.simek@amd.com>
Wed, 13 Dec 2023 07:58:06 +0000
(08:58 +0100)
Bitmain S9 board is not enabling SPI that's why CONFIG_SYS_SPI_U_BOOT_OFFS
symbol is not present which ends in build failure when EFI/DFU
infrastructure is enabled.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link:
https://lore.kernel.org/r/3ea0572dbda8f21270c00a77528eb6ec954c7c40.1699866313.git.michal.simek@amd.com
board/xilinx/zynq/board.c
patch
|
blob
|
history
diff --git
a/board/xilinx/zynq/board.c
b/board/xilinx/zynq/board.c
index 3b6581e3046232cbf833f13a26b37486a75b4f6e..6c365910011d916200c39ce26c885fb7b733a269 100644
(file)
--- a/
board/xilinx/zynq/board.c
+++ b/
board/xilinx/zynq/board.c
@@
-184,6
+184,7
@@
void set_dfu_alt_info(char *interface, char *devstr)
"mmc 0=boot.bin fat 0 1;"
"%s fat 0 1", CONFIG_SPL_FS_LOAD_PAYLOAD_NAME);
break;
+#if defined(CONFIG_SPL_SPI_LOAD)
case ZYNQ_BM_QSPI:
snprintf(buf, DFU_ALT_BUF_LEN,
"sf 0:0=boot.bin raw 0 0x1500000;"
@@
-191,6
+192,7
@@
void set_dfu_alt_info(char *interface, char *devstr)
CONFIG_SPL_FS_LOAD_PAYLOAD_NAME,
CONFIG_SYS_SPI_U_BOOT_OFFS);
break;
+#endif
default:
return;
}