summaryrefslogtreecommitdiff
path: root/src/cpu/samsung/Kconfig
blob: c905b2af54230919cf92fb9ac200b4e3a3b16cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
config CPU_SAMSUNG_EXYNOS
	bool
	default n

config CPU_SAMSUNG_EXYNOS5
	depends on ARCH_ARMV7
	select CPU_SAMSUNG_EXYNOS
	select HAVE_UART_SPECIAL
	# TODO remove EARLY_CONSOLE when we can run ramstage without early UART
	# init.
	select EARLY_CONSOLE
	bool
	default n

config SKIP_LOWLEVEL_INIT
	bool "Skip low-level init"
	default n
	help
	  Certain functions (ie PLL init) and processor features may already be
	  handled by masked ROM code.

if CPU_SAMSUNG_EXYNOS5
source src/cpu/samsung/exynos5250/Kconfig
endif