Просмотр исходного кода

freertos-smp: Fix spi_speed test for FreeRTOS SMP

Updated performance thresholds for spi_speed test with FreeRTOS SMP is
enabled.
Sudeep Mohanty 3 лет назад
Родитель
Сommit
5ab7beea4a
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      components/idf_test/include/esp32c3/idf_performance_target.h

+ 13 - 0
components/idf_test/include/esp32c3/idf_performance_target.h

@@ -6,6 +6,8 @@
 
 #pragma once
 
+#include "sdkconfig.h"
+
 #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC                            43
 
 // SHA256 hardware throughput at 160 MHz, threshold set lower than worst case
@@ -18,10 +20,21 @@
 #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PUBLIC_OP                               45000
 #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PRIVATE_OP                              670000
 
+#if !CONFIG_FREERTOS_SMP // IDF-5223
 #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING                               15
 #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA                        15
+#else
+#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING                               17
+#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA                        17
+#endif
+
+#if !CONFIG_FREERTOS_SMP // IDF-5223
 #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING                            32
 #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA                     30
+#else
+#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING                            60
+#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA                     60
+#endif
 
 // floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
 #define IDF_PERFORMANCE_MAX_CYCLES_PER_DIV                                      70