Kconfig 1.6 KB
Newer Older
1 2 3 4 5 6
if ARCH_EXYNOS

choice
	prompt "EXYNOS board select"

config TARGET_SMDKV310
M
Masahiro Yamada 已提交
7
	select SUPPORT_SPL
8
	bool "Exynos4210 SMDKV310 board"
9
	select OF_CONTROL
10 11 12 13 14 15 16 17 18

config TARGET_TRATS
	bool "Exynos4210 Trats board"

config TARGET_S5PC210_UNIVERSAL
	bool "EXYNOS4210 Universal C210 board"

config TARGET_ORIGEN
	bool "Exynos4412 Origen board"
M
Masahiro Yamada 已提交
19
	select SUPPORT_SPL
20 21 22 23

config TARGET_TRATS2
	bool "Exynos4412 Trat2 board"

24 25 26
config TARGET_ODROID
	bool "Exynos4412 Odroid board"

27 28 29 30
config TARGET_ODROID_XU3
	bool "Exynos5422 Odroid board"
	select OF_CONTROL

31 32
config TARGET_ARNDALE
	bool "Exynos5250 Arndale board"
33 34
	select CPU_V7_HAS_NONSEC
	select CPU_V7_HAS_VIRT
M
Masahiro Yamada 已提交
35
	select SUPPORT_SPL
36
	select OF_CONTROL
37 38 39

config TARGET_SMDK5250
	bool "SMDK5250 board"
M
Masahiro Yamada 已提交
40
	select SUPPORT_SPL
41
	select OF_CONTROL
42 43 44

config TARGET_SNOW
	bool "Snow board"
M
Masahiro Yamada 已提交
45
	select SUPPORT_SPL
46
	select OF_CONTROL
47 48 49

config TARGET_SMDK5420
	bool "SMDK5420 board"
M
Masahiro Yamada 已提交
50
	select SUPPORT_SPL
51
	select OF_CONTROL
52

53
config TARGET_PEACH_PI
54
	bool "Peach Pi board"
M
Masahiro Yamada 已提交
55
	select SUPPORT_SPL
56
	select OF_CONTROL
57

58 59 60
config TARGET_PEACH_PIT
	bool "Peach Pit board"
	select SUPPORT_SPL
61
	select OF_CONTROL
62

63 64 65 66 67
endchoice

config SYS_SOC
	default "exynos"

68
config DM
69
	default y
70 71

config DM_SERIAL
72
	default y
73 74

config DM_SPI
75
	default y
76 77

config DM_SPI_FLASH
78
	default y
79 80

config DM_GPIO
81
	default y
82

83
config SYS_MALLOC_F
84
	default y
85

86 87 88 89 90
source "board/samsung/smdkv310/Kconfig"
source "board/samsung/trats/Kconfig"
source "board/samsung/universal_c210/Kconfig"
source "board/samsung/origen/Kconfig"
source "board/samsung/trats2/Kconfig"
91
source "board/samsung/odroid/Kconfig"
92 93 94 95 96
source "board/samsung/arndale/Kconfig"
source "board/samsung/smdk5250/Kconfig"
source "board/samsung/smdk5420/Kconfig"

endif