idf_performance_target.h 1.4 KB

1234567891011121314151617181920212223
  1. #pragma once
  2. // AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
  3. #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
  4. #define IDF_PERFORMANCE_MIN_AES_GCM_THROUGHPUT_MBSEC 0.5
  5. // SHA256 hardware throughput at 240MHz, threshold set lower than worst case
  6. #define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 8.0
  7. // esp_sha() time to process 32KB of input data from RAM
  8. #define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 5000
  9. #define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 4500
  10. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
  11. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 190000
  12. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 90000
  13. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 870000
  14. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
  15. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 27
  16. // floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
  17. #define IDF_PERFORMANCE_MAX_CYCLES_PER_DIV 70
  18. #define IDF_PERFORMANCE_MAX_CYCLES_PER_SQRT 140