2018-04-26 12:51:26 +00:00
|
|
|
if CPU_V7A
|
2014-11-14 08:34:30 +00:00
|
|
|
|
|
|
|
config CPU_V7_HAS_NONSEC
|
|
|
|
bool
|
|
|
|
|
|
|
|
config CPU_V7_HAS_VIRT
|
|
|
|
bool
|
|
|
|
|
2016-08-30 07:22:22 +00:00
|
|
|
config ARCH_SUPPORT_PSCI
|
|
|
|
bool
|
|
|
|
|
2014-11-14 08:34:30 +00:00
|
|
|
config ARMV7_NONSEC
|
2016-08-12 01:26:50 +00:00
|
|
|
bool "Enable support for booting in non-secure mode" if EXPERT
|
2014-11-14 08:34:30 +00:00
|
|
|
depends on CPU_V7_HAS_NONSEC
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Say Y here to enable support for booting in non-secure / SVC mode.
|
|
|
|
|
2014-11-14 08:34:31 +00:00
|
|
|
config ARMV7_BOOT_SEC_DEFAULT
|
2016-08-12 01:26:50 +00:00
|
|
|
bool "Boot in secure mode by default" if EXPERT
|
2014-11-14 08:34:31 +00:00
|
|
|
depends on ARMV7_NONSEC
|
2015-04-21 05:18:39 +00:00
|
|
|
default y if TEGRA
|
2014-11-14 08:34:31 +00:00
|
|
|
---help---
|
|
|
|
Say Y here to boot in secure mode by default even if non-secure mode
|
|
|
|
is supported. This option is useful to boot kernels which do not
|
|
|
|
suppport booting in non-secure mode. Only set this if you need it.
|
2016-07-15 17:44:45 +00:00
|
|
|
This can be overridden at run-time by setting the bootm_boot_mode env.
|
2014-11-14 08:34:31 +00:00
|
|
|
variable to "sec" or "nonsec".
|
|
|
|
|
2014-11-14 08:34:30 +00:00
|
|
|
config ARMV7_VIRT
|
2016-08-12 01:26:50 +00:00
|
|
|
bool "Enable support for hardware virtualization" if EXPERT
|
2014-11-14 08:34:30 +00:00
|
|
|
depends on CPU_V7_HAS_VIRT && ARMV7_NONSEC
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Say Y here to boot in hypervisor (HYP) mode when booting non-secure.
|
|
|
|
|
2016-08-30 07:22:22 +00:00
|
|
|
config ARMV7_PSCI
|
|
|
|
bool "Enable PSCI support" if EXPERT
|
|
|
|
depends on ARMV7_NONSEC && ARCH_SUPPORT_PSCI
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Say Y here to enable PSCI support.
|
|
|
|
|
2016-08-30 07:22:23 +00:00
|
|
|
config ARMV7_PSCI_NR_CPUS
|
|
|
|
int "Maximum supported CPUs for PSCI"
|
|
|
|
depends on ARMV7_NONSEC
|
|
|
|
default 4
|
|
|
|
help
|
|
|
|
The maximum number of CPUs supported in the PSCI firmware.
|
|
|
|
It is no problem to set a larger value than the number of
|
|
|
|
CPUs in the actual hardware implementation.
|
|
|
|
|
2016-03-16 14:41:21 +00:00
|
|
|
config ARMV7_LPAE
|
2016-08-12 01:26:50 +00:00
|
|
|
bool "Use LPAE page table format" if EXPERT
|
2018-04-26 12:51:26 +00:00
|
|
|
depends on CPU_V7A
|
2018-06-15 21:47:14 +00:00
|
|
|
default y if ARMV7_VIRT
|
2016-03-16 14:41:21 +00:00
|
|
|
---help---
|
|
|
|
Say Y here to use the long descriptor page table format. This is
|
|
|
|
required if U-Boot runs in HYP mode.
|
|
|
|
|
2014-11-14 08:34:30 +00:00
|
|
|
endif
|