summaryrefslogtreecommitdiff
path: root/board/Synology
diff options
context:
space:
mode:
authorTony Dinh <mibodhi@gmail.com>2024-07-07 21:39:03 -0700
committerStefan Roese <sr@denx.de>2024-07-15 08:42:04 +0200
commit51d4eb8bbaf35d14d4e30b885863ae00fbc47258 (patch)
treee925e0d1fbed321c17ffae3ee46e8ae5d0bd6e62 /board/Synology
parentaa8769dc15a717059a7663817b4c33cacff24894 (diff)
downloadu-boot-51d4eb8bbaf35d14d4e30b885863ae00fbc47258.tar.gz
u-boot-51d4eb8bbaf35d14d4e30b885863ae00fbc47258.tar.bz2
u-boot-51d4eb8bbaf35d14d4e30b885863ae00fbc47258.zip
arm: mvebu: Enable bootstd and other modernization for Synology DS414 (Armada XP) board
- Switch to standard boot (in include/configs/ds414.h and configs/ds414_defconfig) - Implement board_late_init() to ensure successful enumeration of USB3 devices - Remove unnecessary checkboard() - Updated IDENT_STRING to indicate this u-boot supports both Synology DS414 and DS214+ boards - Add SYS_THUMB_BUILD to reduce binary size - Add NET_RANDOM_ETHADDR - Add CONFIG_LBA48 and CONFIG_SYS_64BIT_LBA to support >2TB HDD/SDD Signed-off-by: Tony Dinh <mibodhi@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de> Acked-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'board/Synology')
-rw-r--r--board/Synology/ds414/ds414.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/board/Synology/ds414/ds414.c b/board/Synology/ds414/ds414.c
index 8db810ad3e..1a4cea87e1 100644
--- a/board/Synology/ds414/ds414.c
+++ b/board/Synology/ds414/ds414.c
@@ -180,6 +180,13 @@ int board_init(void)
return 0;
}
+int board_late_init(void)
+{
+ /* Do late init to ensure successful enumeration of XHCI devices */
+ pci_init();
+ return 0;
+}
+
int misc_init_r(void)
{
if (!env_get("ethaddr")) {
@@ -188,10 +195,3 @@ int misc_init_r(void)
}
return 0;
}
-
-int checkboard(void)
-{
- puts("Board: DS414\n");
-
- return 0;
-}