1# ARM64 architecture configuration options 2 3# Copyright (c) 2014-2015 Wind River Systems, Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6menu "ARM64 Options" 7 depends on ARM64 8 9config ARCH 10 default "arm64" 11 12config CPU_CORTEX 13 bool 14 help 15 This option signifies the use of a CPU of the Cortex family. 16 17config ARM_CUSTOM_INTERRUPT_CONTROLLER 18 bool 19 help 20 This option indicates that the ARM CPU is connected to a custom (i.e. 21 non-GIC) interrupt controller. 22 23 A number of Cortex-A and Cortex-R cores (Cortex-A5, Cortex-R4/5, ...) 24 allow interfacing to a custom external interrupt controller and this 25 option must be selected when such cores are connected to an interrupt 26 controller that is not the ARM Generic Interrupt Controller (GIC). 27 28 When this option is selected, the architecture interrupt control 29 functions are mapped to the SoC interrupt control interface, which is 30 implemented at the SoC level. 31 32rsource "core/Kconfig" 33 34endmenu 35