From 38742c748562d0faee9f6831858322e7b5feb670 Mon Sep 17 00:00:00 2001 From: Oliver Gaskell Date: Thu, 12 Sep 2024 16:50:54 +0100 Subject: arm: SC598-SOM-EZKIT initial support Adds support for Analog Devices' SC598-SOM-EZKIT board. Includes: - CONFIG options common to all SC5xx SoCs - SoC specific configs in mach-sc5xx/Kconfig - SPL config options in common/spl/Kconfig - Memory Map for SPL - Necessary board-specific init functions - Board-specific Kconfig and environment in board/adi/ - Memory configuration Co-developed-by: Greg Malysa Signed-off-by: Greg Malysa Co-developed-by: Nathan Barrett-Morrison Signed-off-by: Nathan Barrett-Morrison Co-developed-by: Trevor Woerner Signed-off-by: Trevor Woerner Signed-off-by: Oliver Gaskell --- Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Kconfig') diff --git a/Kconfig b/Kconfig index 82df59f176e..15961391609 100644 --- a/Kconfig +++ b/Kconfig @@ -208,7 +208,7 @@ config ENV_VARS_UBOOT_CONFIG config NR_DRAM_BANKS int "Number of DRAM banks" - default 1 if ARCH_SUNXI || ARCH_OWL + default 1 if ARCH_SC5XX || ARCH_SUNXI || ARCH_OWL default 4 help This defines the number of DRAM banks. @@ -545,6 +545,7 @@ config SYS_LOAD_ADDR default 0x12000000 if ARCH_MX6 && !(MX6SL || MX6SLL || MX6SX || MX6UL || MX6ULL) default 0x80800000 if ARCH_MX7 default 0x90000000 if FSL_LSCH2 || FSL_LSCH3 + default 0x0 if ARCH_SC5XX help Address in memory to use as the default safe load address. @@ -644,6 +645,7 @@ config TEXT_BASE default 0x2a000000 if MACH_SUN9I default 0x4a000000 if SUNXI_MINIMUM_DRAM_MB >= 256 default 0x42e00000 if SUNXI_MINIMUM_DRAM_MB >= 64 + default 0x96000000 if ARCH_SC5XX && SC59X_64 hex "Text Base" help The address in memory that U-Boot will be copied and executed from -- cgit v1.2.3