123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- config ARCH_CPU_64BIT
- bool
- config RT_USING_CACHE
- bool
- default n
- config RT_USING_HW_ATOMIC
- bool
- default n
- config ARCH_CPU_BIG_ENDIAN
- bool
- config ARCH_ARM_BOOTWITH_FLUSH_CACHE
- bool
- default n
- config ARCH_CPU_STACK_GROWS_UPWARD
- bool
- default n
- config RT_USING_CPU_FFS
- bool
- default n
- config ARCH_MM_MMU
- bool
- config ARCH_MM_MPU
- bool
- config ARCH_ARM
- bool
- config ARCH_ARM_CORTEX_M
- bool
- select ARCH_ARM
- config ARCH_ARM_CORTEX_FPU
- bool
- config ARCH_ARM_CORTEX_SECURE
- bool
- config ARCH_ARM_CORTEX_M0
- bool
- select ARCH_ARM_CORTEX_M
- config ARCH_ARM_CORTEX_M3
- bool
- select ARCH_ARM_CORTEX_M
- select RT_USING_CPU_FFS
- select RT_USING_HW_ATOMIC
- config ARCH_ARM_MPU
- bool
- depends on ARCH_ARM
- select ARCH_MM_MPU
- config ARCH_ARM_CORTEX_M4
- bool
- select ARCH_ARM_CORTEX_M
- select RT_USING_CPU_FFS
- select RT_USING_HW_ATOMIC
- config ARCH_ARM_CORTEX_M7
- bool
- select ARCH_ARM_CORTEX_M
- select RT_USING_CPU_FFS
- select RT_USING_CACHE
- select RT_USING_HW_ATOMIC
- config ARCH_ARM_CORTEX_M33
- bool
- select ARCH_ARM_CORTEX_M
- select RT_USING_CPU_FFS
- select RT_USING_HW_ATOMIC
- config ARCH_ARM_CORTEX_R
- bool
- select ARCH_ARM
- select RT_USING_HW_ATOMIC
- config ARCH_ARM_MMU
- bool
- select RT_USING_CACHE
- select ARCH_MM_MMU
- depends on ARCH_ARM
- if RT_USING_SMART
- config KERNEL_VADDR_START
- hex "The virtural address of kernel start"
- default 0xffff000000000000 if ARCH_ARMV8
- default 0xc0000000 if ARCH_ARM
- default 0x80000000 if ARCH_RISCV
- depends on ARCH_MM_MMU
- config RT_IOREMAP_LATE
- bool "Support to create IO mapping in the kernel address space after system initlalization."
- default n
- depends on ARCH_ARM_CORTEX_A
- depends on ARCH_MM_MMU
- endif
- config ARCH_ARM_ARM9
- bool
- select ARCH_ARM
- config ARCH_ARM_ARM11
- bool
- select ARCH_ARM
- config ARCH_ARM_CORTEX_A
- bool
- select ARCH_ARM
- select ARCH_ARM_MMU
- select RT_USING_CPU_FFS
- select RT_USING_HW_ATOMIC
- if ARCH_ARM_CORTEX_A
- config RT_SMP_AUTO_BOOT
- bool
- default n
- config RT_USING_GIC_V2
- bool
- default n
- config RT_USING_GIC_V3
- bool
- default n
- config RT_NO_USING_GIC
- bool
- default y if !RT_USING_GIC_V2 && !RT_USING_GIC_V3
- endif
- config ARCH_ARM_CORTEX_A5
- bool
- select ARCH_ARM_CORTEX_A
- config ARCH_ARM_CORTEX_A7
- bool
- select ARCH_ARM_CORTEX_A
- config ARCH_ARM_CORTEX_A8
- bool
- select ARCH_ARM_CORTEX_A
- config ARCH_ARM_CORTEX_A9
- bool
- select ARCH_ARM_CORTEX_A
- config ARCH_ARM_SECURE_MODE
- bool "Running in secure mode [ARM Cortex-A]"
- default n
- depends on ARCH_ARM_CORTEX_A
- config RT_BACKTRACE_FUNCTION_NAME
- bool "To show function name when backtrace."
- default n
- depends on ARCH_ARM_CORTEX_A
- config ARCH_ARMV8
- bool
- select ARCH_ARM
- select ARCH_ARM_MMU
- select RT_USING_HW_ATOMIC
- config ARCH_MIPS
- bool
- config ARCH_MIPS64
- bool
- select ARCH_CPU_64BIT
- config ARCH_MIPS_XBURST
- bool
- select ARCH_MIPS
- config ARCH_ANDES
- bool
- config ARCH_CSKY
- bool
- config ARCH_POWERPC
- bool
- config ARCH_RISCV
- bool
- config ARCH_RISCV_FPU
- bool
- config ARCH_RISCV_FPU_S
- select ARCH_RISCV_FPU
- bool
- config ARCH_RISCV_FPU_D
- select ARCH_RISCV_FPU
- bool
- config ARCH_RISCV32
- select ARCH_RISCV
- bool
- config ARCH_RISCV64
- select ARCH_RISCV
- select ARCH_CPU_64BIT
- bool
- config ARCH_IA32
- bool
- config ARCH_TIDSP
- bool
- config ARCH_TIDSP_C28X
- bool
- select ARCH_TIDSP
- select ARCH_CPU_STACK_GROWS_UPWARD
- config ARCH_HOST_SIMULATOR
- bool
- config ARCH_CPU_STACK_GROWS_UPWARD
- bool
- default n
|