summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-12-02 12:19:52 -0600
committerTom Rini <[email protected]>2025-12-02 13:00:44 -0600
commit30a9f675e562669de614b26956dcb1ec75837a64 (patch)
treeff7a3d60c3536c417c0cf9242b24afcb15c7a9e2 /arch
parentc6ee44b5573a90b0a3a36cf858954e04439ae632 (diff)
parent422b15bb5b693376e345d3f32d7cec4588f3bfba (diff)
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-samsung
- Assorted updates
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-exynos/Kconfig11
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
index 2cd67d02386..b084b7284aa 100644
--- a/arch/arm/mach-exynos/Kconfig
+++ b/arch/arm/mach-exynos/Kconfig
@@ -2,7 +2,7 @@ if ARCH_EXYNOS
config BOARD_COMMON
def_bool y
- depends on !TARGET_SMDKV310 && !TARGET_ARNDALE && !TARGET_E850_96
+ depends on !TARGET_SMDKV310 && !TARGET_ARNDALE && !TARGET_EXYNOS_MOBILE && !TARGET_E850_96
config SPI_BOOTING
bool
@@ -252,6 +252,14 @@ config TARGET_E850_96
endchoice
endif
+config TARGET_EXYNOS_MOBILE
+ bool "Samsung Exynos Generic Boards (for mobile devices)"
+ select ARM64
+ select BOARD_EARLY_INIT_F
+ select CLK_EXYNOS
+ select LINUX_KERNEL_IMAGE_HEADER
+ select OF_CONTROL
+
config SYS_SOC
default "exynos"
@@ -277,5 +285,6 @@ source "board/samsung/smdk5420/Kconfig"
source "board/samsung/espresso7420/Kconfig"
source "board/samsung/axy17lte/Kconfig"
source "board/samsung/e850-96/Kconfig"
+source "board/samsung/exynos-mobile/Kconfig"
endif