1config ARCH_ARM 2 bool 3 4source "arch/arm/Kconfig" 5 6comment "Extra Configurations" 7 8config ARCH_FPU_DISABLE 9 bool "Disable Floating Pointer Unit" 10 default n 11 help 12 This option will bypass floating procedure in system. 13 14config ARCH_SECURE_MONITOR_MODE 15 bool "Run On Secure Monitor Mode" 16 default n 17 depends on ARCH_ARM_AARCH64 18 help 19 This option will make the system run on EL3. 20 21config ARCH_INTERRUPT_PREEMPTION 22 bool "Enable Interrupt Preemption" 23 default n 24 depends on ARCH_ARM_AARCH64 25 help 26 This option will support high priority interrupt preemption. 27 28config IRQ_USE_STANDALONE_STACK 29 bool "Use Interrupt Stack" 30 default y 31 depends on ARCH_ARM_AARCH64 || ARCH_ARM_AARCH32 32 help 33 This option will support using standalone interrupt stack. 34