blob: 15c5155b1cdf44b81d8a66828f3037c7f584c410 [file] [log] [blame]
Hans de Goedeea624e12014-11-14 09:34:30 +01001if CPU_V7
2
3config CPU_V7_HAS_NONSEC
4 bool
5
6config CPU_V7_HAS_VIRT
7 bool
8
9config ARMV7_NONSEC
10 boolean "Enable support for booting in non-secure mode" if EXPERT
11 depends on CPU_V7_HAS_NONSEC
12 default y
13 ---help---
14 Say Y here to enable support for booting in non-secure / SVC mode.
15
16config ARMV7_VIRT
17 boolean "Enable support for hardware virtualization" if EXPERT
18 depends on CPU_V7_HAS_VIRT && ARMV7_NONSEC
19 default y
20 ---help---
21 Say Y here to boot in hypervisor (HYP) mode when booting non-secure.
22
23endif