aboutsummaryrefslogtreecommitdiff
path: root/include/configs/ds414.h
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2021-03-07 22:22:27 +0100
committerStefan Roese <sr@denx.de>2021-04-08 08:50:17 +0200
commite471ddf0f3472423e8cdf8cc7d06a0b8e2abfebc (patch)
tree84b99594186f00155aa207add68976c0d5aa07f1 /include/configs/ds414.h
parentc57f92050429779ae04357f88e1c7e5d02c6d315 (diff)
downloadu-boot-e471ddf0f3472423e8cdf8cc7d06a0b8e2abfebc.zip
u-boot-e471ddf0f3472423e8cdf8cc7d06a0b8e2abfebc.tar.gz
u-boot-e471ddf0f3472423e8cdf8cc7d06a0b8e2abfebc.tar.bz2
arm: mvebu: board/Synology: Unify legacy kernel support
Move the relevant bits from ds109.{c,h} into common/ and adjust the code to fit both DS109 and DS414. Moreover: * Introduce syno_board_id() which translates CONFIG_MACH_TYPE into the expected board ID tag value. * Properly initialize isusbhost, mac and mtu fields from env variables. * Set the right bootargs/bootcmd to correctly boot legacy kernel out of the (DS414) box. Getting the ramdisk location right is a bit tedious. Cc: Walter Schweizer <swwa@users.sourceforge.net> Signed-off-by: Phil Sutter <phil@nwl.cc> Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs/ds414.h')
-rw-r--r--include/configs/ds414.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/include/configs/ds414.h b/include/configs/ds414.h
index 8aa2d47..a2248cf 100644
--- a/include/configs/ds414.h
+++ b/include/configs/ds414.h
@@ -6,6 +6,9 @@
#ifndef _CONFIG_SYNOLOGY_DS414_H
#define _CONFIG_SYNOLOGY_DS414_H
+/* Vendor kernel expects this MACH_TYPE */
+#define CONFIG_MACH_TYPE 3036
+
/*
* High Level Configuration Options (easy to change)
*/
@@ -74,8 +77,18 @@
#define CONFIG_DDR_32BIT
/* Default Environment */
-#define CONFIG_BOOTCOMMAND "sf read ${loadaddr} 0xd0000 0x700000; bootm"
#define CONFIG_LOADADDR 0x80000
+#define CONFIG_BOOTCOMMAND \
+ "sf probe; " \
+ "sf read ${loadaddr} 0xd0000 0x2d0000; " \
+ "sf read ${ramdisk_addr_r} 0x3a0000 0x430000; " \
+ "bootm ${loadaddr} ${ramdisk_addr_r}"
+
+#define CONFIG_EXTRA_ENV_SETTINGS \
+ "initrd_high=0xffffffff\0" \
+ "ramdisk_addr_r=0x8000000\0" \
+ "usb0Mode=host\0usb1Mode=host\0usb2Mode=device\0" \
+ "ethmtu=1500\0eth1mtu=1500\0"
/* increase autoneg timeout, my NIC sucks */
#define PHY_ANEG_TIMEOUT 16000