From: Jaehoon Chung Date: Sun, 1 Nov 2020 23:43:07 +0000 (+0900) Subject: ARM: meson: Kconfig: Add Tizen specific configuration X-Git-Tag: accepted/tizen/unified/20231106.171643~259 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=448fb0b9b800c72ba939133beabdcf75c2dd6788;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig index 669ca09..31a5a5e 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/.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 d611124..44def03 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 60c4199..bd143e4 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"