summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2020-11-02 08:43:07 +0900
committerJaehoon Chung <jh80.chung@samsung.com>2023-10-17 13:19:24 +0900
commit448fb0b9b800c72ba939133beabdcf75c2dd6788 (patch)
tree4e6ea86e04d5cd3ee2a012e915e3cdf519c641df
parent47aaabd94b477c82a38913d9fac89497d4bd3413 (diff)
downloadu-boot-448fb0b9b800c72ba939133beabdcf75c2dd6788.tar.gz
u-boot-448fb0b9b800c72ba939133beabdcf75c2dd6788.tar.bz2
u-boot-448fb0b9b800c72ba939133beabdcf75c2dd6788.zip
ARM: meson: Kconfig: Add Tizen specific configuration
Add Tizen Specific configuratoin. - Enable tizen configuration to distinguish which board is used. Change-Id: I09329b59cb7c2c47f72198a4bebde6ee511ffc7b Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
-rw-r--r--arch/arm/mach-meson/Kconfig12
-rw-r--r--configs/khadas-vim3_defconfig1
-rw-r--r--configs/odroid-n2_defconfig1
3 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
index 669ca09a00..31a5a5ef81 100644
--- a/arch/arm/mach-meson/Kconfig
+++ b/arch/arm/mach-meson/Kconfig
@@ -95,4 +95,16 @@ config SYS_CONFIG_NAME
Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
will be used for board configuration.
+config TIZEN_KHADAS_VIM3
+ bool "KHADAS VIM3 for Tizen"
+ help
+ When boot on Tizen Platform, enable this configuration.
+ If you want to use mainline boot, disable this.
+
+config TIZEN_ODROID_N2
+ bool "Odroid N2 for Tizen"
+ help
+ When boot on Tizen Platform, enable this configuration.
+ If you want to use mainline boot, disable this.
+
endif
diff --git a/configs/khadas-vim3_defconfig b/configs/khadas-vim3_defconfig
index d611124325..44def037b6 100644
--- a/configs/khadas-vim3_defconfig
+++ b/configs/khadas-vim3_defconfig
@@ -11,6 +11,7 @@ CONFIG_DEFAULT_DEVICE_TREE="meson-g12b-a311d-khadas-vim3"
CONFIG_OF_LIBFDT_OVERLAY=y
CONFIG_DM_RESET=y
CONFIG_MESON_G12A=y
+CONFIG_TIZEN_KHADAS_VIM3=y
CONFIG_DEBUG_UART_BASE=0xff803000
CONFIG_DEBUG_UART_CLOCK=24000000
CONFIG_IDENT_STRING=" khadas-vim3"
diff --git a/configs/odroid-n2_defconfig b/configs/odroid-n2_defconfig
index 60c419919b..bd143e4e7d 100644
--- a/configs/odroid-n2_defconfig
+++ b/configs/odroid-n2_defconfig
@@ -11,6 +11,7 @@ CONFIG_DEFAULT_DEVICE_TREE="meson-g12b-odroid-n2"
CONFIG_OF_LIBFDT_OVERLAY=y
CONFIG_DM_RESET=y
CONFIG_MESON_G12A=y
+CONFIG_TIZEN_ODROID_N2=y
CONFIG_DEBUG_UART_BASE=0xff803000
CONFIG_DEBUG_UART_CLOCK=24000000
CONFIG_IDENT_STRING=" odroid-n2/n2-plus"