1config ARCH_CPU_64BIT 2 bool 3 4config ARCH_ARM 5 bool 6 7config ARCH_ARM_CORTEX_M 8 bool 9 select ARCH_ARM 10 11config ARCH_ARM_CORTEX_FPU 12 bool 13 14config ARCH_ARM_CORTEX_M0 15 bool 16 select ARCH_ARM_CORTEX_M 17 18config ARCH_ARM_CORTEX_M3 19 bool 20 select ARCH_ARM_CORTEX_M 21 22config ARCH_ARM_MPU 23 bool 24 depends on ARCH_ARM 25 26config ARCH_ARM_CORTEX_M4 27 bool 28 select ARCH_ARM_CORTEX_M 29 30config ARCH_ARM_CORTEX_M7 31 bool 32 select ARCH_ARM_CORTEX_M 33 34config ARCH_ARM_CORTEX_R 35 bool 36 select ARCH_ARM 37 38config ARCH_ARM_MMU 39 bool 40 depends on ARCH_ARM 41 42config ARCH_ARM_ARM9 43 bool 44 select ARCH_ARM 45 46config ARCH_ARM_ARM11 47 bool 48 select ARCH_ARM 49 50config ARCH_ARM_CORTEX_A 51 bool 52 select ARCH_ARM 53 54config ARCH_ARM_CORTEX_A5 55 bool 56 select ARCH_ARM_CORTEX_A 57 58config ARCH_ARM_CORTEX_A7 59 bool 60 select ARCH_ARM_CORTEX_A 61 62config ARCH_ARM_CORTEX_A8 63 bool 64 select ARCH_ARM_CORTEX_A 65 66config ARCH_ARM_CORTEX_A9 67 bool 68 select ARCH_ARM_CORTEX_A 69 70config ARCH_MIPS 71 bool 72 73config ARCH_MIPS_XBURST 74 bool 75 select ARCH_MIPS 76 77config ARCH_ANDES 78 bool 79 80config ARCH_CSKY 81 bool 82 83config ARCH_POWERPC 84 bool 85 86config ARCH_RISCV 87 bool 88 89config ARCH_RISCV_FPU 90 bool 91 92config ARCH_RISCV32 93 select ARCH_RISCV 94 bool 95 96config ARCH_RISCV64 97 select ARCH_RISCV 98 select ARCH_CPU_64BIT 99 bool 100 101config ARCH_IA32 102 bool 103 104config ARCH_TIDSP 105 bool 106 107config ARCH_TIDSP_C28X 108 bool 109 select ARCH_TIDSP 110 select ARCH_CPU_STACK_GROWS_UPWARD 111 112config ARCH_HOST_SIMULATOR 113 bool 114 115config ARCH_CPU_STACK_GROWS_UPWARD 116 bool 117 default n 118