From 2608c1ec1e3149bbab3fd9fcf444a7db03b98d85 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Wed, 29 Mar 2023 10:06:13 +0800 Subject: [PATCH] system: remove unused C2 cache kconfig option --- .../esp_system/port/soc/esp32c2/Kconfig.cache | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/components/esp_system/port/soc/esp32c2/Kconfig.cache b/components/esp_system/port/soc/esp32c2/Kconfig.cache index 03dd5558add..8cffc687203 100644 --- a/components/esp_system/port/soc/esp32c2/Kconfig.cache +++ b/components/esp_system/port/soc/esp32c2/Kconfig.cache @@ -1,20 +1,5 @@ menu "Cache config" - choice ESP32C2_MMU_PAGE_SIZE - # TODO: IDF-3821 - prompt "Cache page size" - default ESP32C2_MMU_PAGE_SIZE_64KB - help - Cache page size to be set on application startup - - config ESP32C2_MMU_PAGE_SIZE_16KB - bool "16KB" - config ESP32C2_MMU_PAGE_SIZE_32KB - bool "32KB" - config ESP32C2_MMU_PAGE_SIZE_64KB - bool "64KB" - endchoice - config ESP32C2_INSTRUCTION_CACHE_WRAP # TODO: IDF-4194 bool @@ -23,11 +8,4 @@ menu "Cache config" If enabled, instruction cache will use wrap mode to read spi flash. The wrap length is fixed to 32B - - config ESP32C2_MMU_PAGE_MODE - int - default 0 if ESP32C2_MMU_PAGE_SIZE_16KB - default 1 if ESP32C2_MMU_PAGE_SIZE_32KB - default 2 if ESP32C2_MMU_PAGE_SIZE_64KB - endmenu