summaryrefslogtreecommitdiff
path: root/include/configs/mt7623.h
diff options
context:
space:
mode:
authorMatthias Brugger <mbrugger@suse.com>2020-04-26 01:17:46 +0200
committerTom Rini <trini@konsulko.com>2020-05-01 11:34:01 -0400
commit37f2755a00c1b3223780d88c7a82e2f6af26a18e (patch)
tree8948bd75d837c175f84c7f41e0c1cd72f9d354fc /include/configs/mt7623.h
parent2ef35fcb34b97fefc693f638be2ad18be3298d08 (diff)
arm: enable distro boot for bananapi-r2
This patch enables distro boot for the bananapi-r2, based on a MediaTek mt7623n. Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'include/configs/mt7623.h')
-rw-r--r--include/configs/mt7623.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/include/configs/mt7623.h b/include/configs/mt7623.h
index faab0913fc..fe436cca38 100644
--- a/include/configs/mt7623.h
+++ b/include/configs/mt7623.h
@@ -45,11 +45,13 @@
#define CONFIG_SYS_SDRAM_BASE 0x80000000
/* This is needed for kernel booting */
-#define FDT_HIGH "fdt_high=0xac000000\0"
+#define FDT_HIGH "0xac000000"
-/* Extra environment variables */
-#define CONFIG_EXTRA_ENV_SETTINGS \
- FDT_HIGH
+#define ENV_MEM_LAYOUT_SETTINGS \
+ "fdt_high=" FDT_HIGH "\0" \
+ "kernel_addr_r=0x84000000\0" \
+ "fdt_addr_r=" FDT_HIGH "\0" \
+ "fdtfile=mt7623n-bananapi-bpi-r2.dtb" "\0"
/* Ethernet */
#define CONFIG_IPADDR 192.168.1.1
@@ -57,4 +59,18 @@
#define CONFIG_SYS_MMC_ENV_DEV 0
+#ifdef CONFIG_DISTRO_DEFAULTS
+
+#define BOOT_TARGET_DEVICES(func) \
+ func(MMC, mmc, 1)
+
+#include <config_distro_bootcmd.h>
+
+/* Extra environment variables */
+#define CONFIG_EXTRA_ENV_SETTINGS \
+ ENV_MEM_LAYOUT_SETTINGS \
+ BOOTENV
+
+#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
+
#endif