[PATCH v2] configs: mediatek: enable boot via extlinux

2022-10-28 Thread Julien STEPHAN
From: Alexandre Mergnat 

Enable FAT and SYSBOOT to use extlinux boot script

Signed-off-by: Jerome Brunet 
Signed-off-by: Alexandre Mergnat 
Signed-off-by: Julien STEPHAN 

---
V1 -> V2: adding missing CONFIG_ENV_OFFSET config
---
 configs/mt8183_pumpkin_defconfig | 3 +++
 configs/mt8516_pumpkin_defconfig | 7 +++
 2 files changed, 10 insertions(+)

diff --git a/configs/mt8183_pumpkin_defconfig b/configs/mt8183_pumpkin_defconfig
index 3c96d4eacb..9a7ad160d1 100644
--- a/configs/mt8183_pumpkin_defconfig
+++ b/configs/mt8183_pumpkin_defconfig
@@ -48,8 +48,11 @@ CONFIG_CMD_PART=y
 # CONFIG_CMD_ITEST is not set
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_BLOCK_CACHE is not set
+CONFIG_CMD_SYSBOOT=y
 CONFIG_CMD_EXT4=y
+CONFIG_CMD_FAT=y
 CONFIG_CMD_FS_GENERIC=y
+# CONFIG_DOS_PARTITION is not set
 CONFIG_ENV_IS_IN_MMC=y
 CONFIG_SYS_MMC_ENV_PART=2
 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
diff --git a/configs/mt8516_pumpkin_defconfig b/configs/mt8516_pumpkin_defconfig
index 0425ffd0f9..86b7b84970 100644
--- a/configs/mt8516_pumpkin_defconfig
+++ b/configs/mt8516_pumpkin_defconfig
@@ -6,6 +6,7 @@ CONFIG_SYS_TEXT_BASE=0x4C00
 CONFIG_SYS_MALLOC_F_LEN=0x4000
 CONFIG_NR_DRAM_BANKS=1
 CONFIG_ENV_SIZE=0x1000
+CONFIG_ENV_OFFSET=0x0
 CONFIG_DM_GPIO=y
 CONFIG_DEFAULT_DEVICE_TREE="mt8516-pumpkin"
 CONFIG_TARGET_MT8516=y
@@ -49,6 +50,12 @@ CONFIG_CMD_PART=y
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_BLOCK_CACHE is not set
 # CONFIG_CMD_SLEEP is not set
+CONFIG_CMD_SYSBOOT=y
+CONFIG_CMD_EXT4=y
+CONFIG_CMD_FAT=y
+CONFIG_CMD_FS_GENERIC=y
+# CONFIG_DOS_PARTITION is not set
+CONFIG_ENV_IS_IN_MMC=y
 CONFIG_SYS_RELOC_GD_ENV_ADDR=y
 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
 CONFIG_CLK=y
-- 
2.38.1



[PATCH 2/2] configs: mediatek: enable boot via extlinux

2022-09-07 Thread Julien STEPHAN
From: Alexandre Mergnat 

Enable FAT and SYSBOOT to use extlinux boot script

Signed-off-by: Jerome Brunet 
Signed-off-by: Alexandre Mergnat 
Signed-off-by: Julien STEPHAN 
---
 configs/mt8183_pumpkin_defconfig | 3 +++
 configs/mt8516_pumpkin_defconfig | 6 ++
 2 files changed, 9 insertions(+)

diff --git a/configs/mt8183_pumpkin_defconfig b/configs/mt8183_pumpkin_defconfig
index 3c96d4eacb..9a7ad160d1 100644
--- a/configs/mt8183_pumpkin_defconfig
+++ b/configs/mt8183_pumpkin_defconfig
@@ -48,8 +48,11 @@ CONFIG_CMD_PART=y
 # CONFIG_CMD_ITEST is not set
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_BLOCK_CACHE is not set
+CONFIG_CMD_SYSBOOT=y
 CONFIG_CMD_EXT4=y
+CONFIG_CMD_FAT=y
 CONFIG_CMD_FS_GENERIC=y
+# CONFIG_DOS_PARTITION is not set
 CONFIG_ENV_IS_IN_MMC=y
 CONFIG_SYS_MMC_ENV_PART=2
 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
diff --git a/configs/mt8516_pumpkin_defconfig b/configs/mt8516_pumpkin_defconfig
index 0425ffd0f9..97212ea6bb 100644
--- a/configs/mt8516_pumpkin_defconfig
+++ b/configs/mt8516_pumpkin_defconfig
@@ -49,6 +49,12 @@ CONFIG_CMD_PART=y
 # CONFIG_CMD_SETEXPR is not set
 # CONFIG_CMD_BLOCK_CACHE is not set
 # CONFIG_CMD_SLEEP is not set
+CONFIG_CMD_SYSBOOT=y
+CONFIG_CMD_EXT4=y
+CONFIG_CMD_FAT=y
+CONFIG_CMD_FS_GENERIC=y
+# CONFIG_DOS_PARTITION is not set
+CONFIG_ENV_IS_IN_MMC=y
 CONFIG_SYS_RELOC_GD_ENV_ADDR=y
 CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
 CONFIG_CLK=y
-- 
2.37.1



[PATCH 1/2] configs: mediatek: define default variables

2022-09-07 Thread Julien STEPHAN
From: Jerome Brunet 

define some default addresses and variables to help distro boot

Signed-off-by: Jerome Brunet 
Signed-off-by: Alexandre Mergnat 
Signed-off-by: Julien STEPHAN 
---
 include/configs/mt8183.h | 5 +
 include/configs/mt8516.h | 5 +
 2 files changed, 10 insertions(+)

diff --git a/include/configs/mt8183.h b/include/configs/mt8183.h
index c93d70ddf1..f2a0d71556 100644
--- a/include/configs/mt8183.h
+++ b/include/configs/mt8183.h
@@ -26,6 +26,11 @@
 
 #define CONFIG_EXTRA_ENV_SETTINGS \
"scriptaddr=0x4000\0" \
+   "fdt_addr_r=0x4400\0" \
+   "fdtoverlay_addr_r=0x44c0\0" \
+   "kernel_addr_r=0x4500\0" \
+   "ramdisk_addr_r=0x4600\0" \
+   "fdtfile=" CONFIG_DEFAULT_FDT_FILE ".dtb\0" \
BOOTENV
 
 #endif
diff --git a/include/configs/mt8516.h b/include/configs/mt8516.h
index 7228f3e428..a9041aed46 100644
--- a/include/configs/mt8516.h
+++ b/include/configs/mt8516.h
@@ -26,6 +26,11 @@
 
 #define CONFIG_EXTRA_ENV_SETTINGS \
"scriptaddr=0x4000\0" \
+   "fdt_addr_r=0x4400\0" \
+   "fdtoverlay_addr_r=0x44c0\0" \
+   "kernel_addr_r=0x4500\0" \
+   "ramdisk_addr_r=0x4600\0" \
+   "fdtfile=" CONFIG_DEFAULT_FDT_FILE ".dtb\0" \
BOOTENV
 
 #endif
-- 
2.37.1