From bbe23a467af6ae3cb8a9468177b41552e01fffb1 Mon Sep 17 00:00:00 2001 From: "C.S.M" Date: Sat, 11 May 2024 14:53:19 +0800 Subject: [PATCH] test(spi_flash): Disable flash wrap test on esp32p4 --- components/soc/esp32p4/include/soc/Kconfig.soc_caps.in | 4 ---- components/soc/esp32p4/include/soc/soc_caps.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/components/soc/esp32p4/include/soc/Kconfig.soc_caps.in b/components/soc/esp32p4/include/soc/Kconfig.soc_caps.in index 7fc01d249a..07884d6c48 100644 --- a/components/soc/esp32p4/include/soc/Kconfig.soc_caps.in +++ b/components/soc/esp32p4/include/soc/Kconfig.soc_caps.in @@ -1187,10 +1187,6 @@ config SOC_SPI_MEM_SUPPORT_CHECK_SUS bool default y -config SOC_SPI_MEM_SUPPORT_WRAP - bool - default y - config SOC_SPI_MEM_SUPPORT_TIMING_TUNING bool default y diff --git a/components/soc/esp32p4/include/soc/soc_caps.h b/components/soc/esp32p4/include/soc/soc_caps.h index 9c54eaaec5..bec09b47f4 100644 --- a/components/soc/esp32p4/include/soc/soc_caps.h +++ b/components/soc/esp32p4/include/soc/soc_caps.h @@ -484,7 +484,7 @@ #define SOC_SPI_MEM_SUPPORT_IDLE_INTR (1) #define SOC_SPI_MEM_SUPPORT_SW_SUSPEND (1) #define SOC_SPI_MEM_SUPPORT_CHECK_SUS (1) -#define SOC_SPI_MEM_SUPPORT_WRAP (1) +// #define SOC_SPI_MEM_SUPPORT_WRAP (1) // IDFCI-2073 The feature cannot be treated as supported on P4 #define SOC_SPI_MEM_SUPPORT_TIMING_TUNING (1) #define SOC_MEMSPI_TIMING_TUNING_BY_DQS (1)