idf_performance.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #pragma once
  2. /* declare the performance here */
  3. #define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 900
  4. #define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
  5. #define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
  6. #define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
  7. #define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
  8. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_ESP32 30
  9. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA_ESP32 27
  10. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_ESP32S2 32
  11. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA_ESP32S2 30
  12. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
  13. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
  14. /* Due to code size & linker layout differences interacting with cache, VFS
  15. microbenchmark currently runs slower with PSRAM enabled. */
  16. #define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
  17. #define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
  18. // throughput performance by iperf
  19. #define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
  20. #define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
  21. #define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
  22. #define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
  23. // events dispatched per second by event loop library
  24. #define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
  25. #define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
  26. // floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
  27. #define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_DIV 70
  28. #define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_SQRT 140
  29. #define IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES 150
  30. #define IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES 290
  31. #define IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES 565
  32. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_4BIT 12200
  33. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_4BIT 12200
  34. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_1BIT 4000
  35. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_1BIT 4000
  36. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_SPI 1000
  37. #define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_SPI 1000
  38. /*
  39. * Flash Performance value
  40. * 4 subsections: legacy, normal (new driver after v4.0), SPI1 (external but on SPI1), external (SPI2)
  41. * These thresholds are set to about 70% of the average test data, under certain condition.
  42. * Contact Espressif for details.
  43. */
  44. //The single_core config is much faster than other configs. Use the value of other configs
  45. //Collect data and correct it later
  46. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_4B 0
  47. //The single_core config is much faster than other configs. Use the value of other configs
  48. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_4B 35300
  49. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_2KB (697*1000)
  50. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_2KB (6780*1000)
  51. //erase performance is highly depending on the chip vendor. Use 70% of the minimal value.
  52. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_ERASE 11200
  53. //The single_core config is much faster than other configs. Use the value of other configs
  54. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_4B 20100
  55. //The single_core config is much faster than other configs. Use the value of other configs
  56. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_4B 35200
  57. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_2KB (754*1000)
  58. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_2KB (6650*1000)
  59. //erase performance is highly depending on the chip vendor. Use 70% of the minimal value.
  60. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_ERASE 0
  61. //The single_core config is much faster than other configs. Use the value of other configs
  62. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_4B 16200
  63. //The single_core config is much faster than other configs. Use the value of other configs
  64. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_4B 33600
  65. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_2KB (484*1000)
  66. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_2KB (1512*1000)
  67. //erase performance is highly depending on the chip vendor. Use 70% of the minimal value.
  68. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_ERASE 49600
  69. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_4B 73500
  70. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_4B (261*1000)
  71. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_2KB (470*1000)
  72. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_2KB (261*1000)
  73. //erase performance is highly depending on the chip vendor. Use 70% of the minimal value.
  74. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_ERASE 30900
  75. #ifdef CONFIG_IDF_TARGET_ESP32
  76. // AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
  77. #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
  78. // SHA256 hardware throughput at 240MHz, threshold set lower than worst case
  79. #define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 9.0
  80. // esp_sha() time to process 32KB of input data from RAM
  81. #define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 5000
  82. #define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 4500
  83. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
  84. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 180000
  85. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 65000
  86. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 850000
  87. #elif defined CONFIG_IDF_TARGET_ESP32S2BETA
  88. #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 14.4
  89. // SHA256 hardware throughput at 240MHz, threshold set lower than worst case
  90. #define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 19.8
  91. // esp_sha() time to process 32KB of input data from RAM
  92. #define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 1000
  93. #define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 900
  94. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 14000
  95. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 100000
  96. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 60000
  97. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 600000
  98. #endif //CONFIG_IDF_TARGET_ESP32S2BETA