aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Dureghello <angelo@kernel-space.org>2023-02-26 00:16:39 +0100
committerAngelo Dureghello <angelo@kernel-space.org>2023-03-15 01:45:19 +0100
commit36a5ebf84198e42614e0503b0dabf5eb3f5b21ee (patch)
tree0372bc18e2e5802a2745ec2a499db15a9fe800bd
parent7ff7b46e6ce44b2ee09647a928ce1021c3c8a66e (diff)
downloadu-boot-36a5ebf84198e42614e0503b0dabf5eb3f5b21ee.zip
u-boot-36a5ebf84198e42614e0503b0dabf5eb3f5b21ee.tar.gz
u-boot-36a5ebf84198e42614e0503b0dabf5eb3f5b21ee.tar.bz2
board: amcore: fix config options namespace
Remove CONFIG_ namespace options from .h, moving them to defconfig, while changing non-defconfig options to CFG_ namespace. Signed-off-by: Angelo Durgehello <angelo@kernel-space.org>
-rw-r--r--configs/amcore_defconfig3
-rw-r--r--include/configs/amcore.h13
2 files changed, 5 insertions, 11 deletions
diff --git a/configs/amcore_defconfig b/configs/amcore_defconfig
index 0b1a4e8..e618ca0 100644
--- a/configs/amcore_defconfig
+++ b/configs/amcore_defconfig
@@ -9,7 +9,7 @@ CONFIG_SYS_PROMPT="amcore $ "
CONFIG_SYS_LOAD_ADDR=0x20000
CONFIG_ENV_ADDR=0xFFC1F000
CONFIG_TARGET_AMCORE=y
-CONFIG_SYS_MONITOR_LEN=126976
+CONFIG_SYS_MONITOR_LEN=192512
CONFIG_SYS_MONITOR_BASE=0xFFC00400
CONFIG_BOOTDELAY=1
CONFIG_USE_BOOTCOMMAND=y
@@ -17,6 +17,7 @@ CONFIG_BOOTCOMMAND="bootm ffc20000"
CONFIG_SYS_CONSOLE_INFO_QUIET=y
# CONFIG_DISPLAY_BOARDINFO is not set
CONFIG_SYS_MALLOC_BOOTPARAMS=y
+CONFIG_SYS_BOOTPARAMS_LEN=65536
# CONFIG_CMDLINE_EDITING is not set
# CONFIG_SYS_LONGHELP is not set
CONFIG_SYS_PBSIZE=282
diff --git a/include/configs/amcore.h b/include/configs/amcore.h
index 35f09b4..ca8d17b 100644
--- a/include/configs/amcore.h
+++ b/include/configs/amcore.h
@@ -11,12 +11,10 @@
#define CFG_SYS_UART_PORT 0
#define CFG_MCFTMR
-#define CONFIG_MCFUART
-#define CONFIG_SYS_UART_PORT 0
-#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
+#define CFG_SYS_UART_PORT 0
+#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
-#define CONFIG_BOOTCOMMAND "bootm ffc30000"
-#define CONFIG_EXTRA_ENV_SETTINGS \
+#define CFG_EXTRA_ENV_SETTINGS \
"upgrade_uboot=loady; " \
"protect off 0xffc00000 0xffc2ffff; " \
"erase 0xffc00000 0xffc2ffff; " \
@@ -43,11 +41,6 @@
/* amcore design has flash data bytes wired swapped */
#define CFG_SYS_WRITE_SWAPPED_DATA
-/* reserve 128-4KB */
-#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE + 0x400)
-#define CONFIG_SYS_MONITOR_LEN ((192 - 4) * 1024)
-#define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024)
-#define CONFIG_SYS_BOOTPARAMS_LEN (64 * 1024)
#define LDS_BOARD_TEXT \
. = DEFINED(env_offset) ? env_offset : .; \