1menu "ARCH_RISCV" 2 config ARCH_RISCV 3 bool "Enable RISCV" 4 default n 5 6 config NEST_INT_SUPPORT 7 depends on ARCH_RISCV 8 bool "Support nest interrupt" 9 default n 10 11 config MEMDUMP_ALL 12 depends on ARCH_RISCV 13 bool "Dump all memory when exception happen" 14 default y 15 16 config SAVE_BOOT_TIME_POINT 17 depends on ARCH_RISCV 18 bool "Save boot time point" 19 default n 20 21 config CACHE_ENABLE 22 depends on ARCH_RISCV 23 bool "Enable Cache" 24 default n 25 26 config CACHE_CUSTOM_SRAM_MAPPING 27 depends on CACHE_ENABLE 28 bool "Custom defined sram mapping" 29 default n 30 31endmenu 32