Kconfig 808 字节
Newer Older
W
wenjun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
config ARCH_ARM
   bool

source "arch/arm/Kconfig"

comment "Extra Configurations"

config ARCH_FPU_DISABLE
    bool "Disable Floating Pointer Unit"
    default n
    help
      This option will bypass floating procedure in system.

config ARCH_SECURE_MONITOR_MODE
    bool "Run On Secure Monitor Mode"
    default n
    depends on ARCH_ARM_AARCH64
    help
      This option will make the system run on EL3.

config ARCH_INTERRUPT_PREEMPTION
    bool "Enable Interrupt Preemption"
    default n
    depends on ARCH_ARM_AARCH64
    help
      This option will support high priority interrupt preemption.

config IRQ_USE_STANDALONE_STACK
    bool "Use Interrupt Stack"
    default y
    depends on ARCH_ARM_AARCH64 || ARCH_ARM_AARCH32
    help
      This option will support using standalone interrupt stack.