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/20241126.175211~371 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a412975856a5adcc445e06f586db0db12f2898f;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 7570f48e25..243e256066 100644 --- a/arch/arm/mach-meson/Kconfig +++ b/arch/arm/mach-meson/Kconfig @@ -93,4 +93,16 @@ config SYS_BOARD Based on this option board// will be used. +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 32579b8ac3..d12363f766 100644 --- a/configs/khadas-vim3_defconfig +++ b/configs/khadas-vim3_defconfig @@ -11,6 +11,7 @@ CONFIG_DEFAULT_DEVICE_TREE="amlogic/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 0d1c9df769..1454fab1da 100644 --- a/configs/odroid-n2_defconfig +++ b/configs/odroid-n2_defconfig @@ -11,6 +11,7 @@ CONFIG_DEFAULT_DEVICE_TREE="amlogic/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"