]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/mx7/Kconfig
dd513842ead05c6a5e8d0ab0c5d8cce2da9af3d7
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / mx7 / Kconfig
1 if ARCH_MX7
2
3 config MX7
4 bool
5 select ROM_UNIFIED_SECTIONS
6 select CPU_V7_HAS_VIRT
7 select CPU_V7_HAS_NONSEC
8 default y
9
10 config MX7D
11 select ROM_UNIFIED_SECTIONS
12 bool
13
14 choice
15 prompt "MX7 board select"
16 optional
17
18 config TARGET_MX7DSABRESD
19 bool "mx7dsabresd"
20 select MX7D
21 select DM
22 select DM_THERMAL
23
24 config TARGET_WARP7
25 bool "warp7"
26 select MX7D
27 select DM
28 select DM_THERMAL
29
30 endchoice
31
32 config SYS_SOC
33 default "mx7"
34
35 source "board/freescale/mx7dsabresd/Kconfig"
36 source "board/warp7/Kconfig"
37
38 endif