blob: 17ad567c190d96ff909fafa06e7ba57a9a497107 [file] [log] [blame]
Masahiro Yamada72df68c2014-08-31 07:11:00 +09001if ARCH_EXYNOS
2
3choice
4 prompt "EXYNOS board select"
5
6config TARGET_SMDKV310
Masahiro Yamada02627352014-10-20 17:45:56 +09007 select SUPPORT_SPL
Masahiro Yamada72df68c2014-08-31 07:11:00 +09008 bool "Exynos4210 SMDKV310 board"
Simon Glass1d551102014-10-07 22:01:49 -06009 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090010
11config TARGET_TRATS
12 bool "Exynos4210 Trats board"
13
14config TARGET_S5PC210_UNIVERSAL
15 bool "EXYNOS4210 Universal C210 board"
16
17config TARGET_ORIGEN
18 bool "Exynos4412 Origen board"
Masahiro Yamada02627352014-10-20 17:45:56 +090019 select SUPPORT_SPL
Masahiro Yamada72df68c2014-08-31 07:11:00 +090020
21config TARGET_TRATS2
22 bool "Exynos4412 Trat2 board"
23
Przemyslaw Marczak73eca212014-09-01 13:50:53 +020024config TARGET_ODROID
25 bool "Exynos4412 Odroid board"
26
Hyungwon Hwang62076042014-12-12 14:45:45 +090027config TARGET_ODROID_XU3
28 bool "Exynos5422 Odroid board"
29 select OF_CONTROL
30
Masahiro Yamada72df68c2014-08-31 07:11:00 +090031config TARGET_ARNDALE
32 bool "Exynos5250 Arndale board"
Hans de Goedeea624e12014-11-14 09:34:30 +010033 select CPU_V7_HAS_NONSEC
34 select CPU_V7_HAS_VIRT
Masahiro Yamada02627352014-10-20 17:45:56 +090035 select SUPPORT_SPL
Masahiro Yamada783e6a72014-09-22 19:59:05 +090036 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090037
38config TARGET_SMDK5250
39 bool "SMDK5250 board"
Masahiro Yamada02627352014-10-20 17:45:56 +090040 select SUPPORT_SPL
Masahiro Yamada783e6a72014-09-22 19:59:05 +090041 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090042
43config TARGET_SNOW
44 bool "Snow board"
Masahiro Yamada02627352014-10-20 17:45:56 +090045 select SUPPORT_SPL
Masahiro Yamada783e6a72014-09-22 19:59:05 +090046 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090047
48config TARGET_SMDK5420
49 bool "SMDK5420 board"
Masahiro Yamada02627352014-10-20 17:45:56 +090050 select SUPPORT_SPL
Masahiro Yamada783e6a72014-09-22 19:59:05 +090051 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090052
Akshay Saraswat79043d82014-11-13 22:38:17 +053053config TARGET_PEACH_PI
Masahiro Yamada72df68c2014-08-31 07:11:00 +090054 bool "Peach Pi board"
Masahiro Yamada02627352014-10-20 17:45:56 +090055 select SUPPORT_SPL
Masahiro Yamada783e6a72014-09-22 19:59:05 +090056 select OF_CONTROL if !SPL_BUILD
Masahiro Yamada72df68c2014-08-31 07:11:00 +090057
Akshay Saraswat79043d82014-11-13 22:38:17 +053058config TARGET_PEACH_PIT
59 bool "Peach Pit board"
60 select SUPPORT_SPL
61 select OF_CONTROL if !SPL_BUILD
62
Masahiro Yamada72df68c2014-08-31 07:11:00 +090063endchoice
64
Masahiro Yamada72df68c2014-08-31 07:11:00 +090065config SYS_SOC
Masahiro Yamada72df68c2014-08-31 07:11:00 +090066 default "exynos"
67
Simon Glassaab7e802015-02-05 21:41:40 -070068config DM
69 default y if !SPL_BUILD
70
71config DM_SERIAL
72 default y if !SPL_BUILD
73
74config DM_SPI
75 default y if !SPL_BUILD
76
77config DM_SPI_FLASH
78 default y if !SPL_BUILD
79
80config DM_GPIO
81 default y if !SPL_BUILD
82
Masahiro Yamada72df68c2014-08-31 07:11:00 +090083source "board/samsung/smdkv310/Kconfig"
84source "board/samsung/trats/Kconfig"
85source "board/samsung/universal_c210/Kconfig"
86source "board/samsung/origen/Kconfig"
87source "board/samsung/trats2/Kconfig"
Przemyslaw Marczak73eca212014-09-01 13:50:53 +020088source "board/samsung/odroid/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +090089source "board/samsung/arndale/Kconfig"
90source "board/samsung/smdk5250/Kconfig"
91source "board/samsung/smdk5420/Kconfig"
92
93endif