idf_performance_target.h 1.8 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. // AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
  8. #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
  9. // SHA256 hardware throughput at 240MHz, threshold set lower than worst case
  10. #define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 8.0
  11. // esp_sha() time to process 32KB of input data from RAM
  12. #define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 5000
  13. #define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 4500
  14. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
  15. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 420000
  16. #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PUBLIC_OP 33000
  17. #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PRIVATE_OP 950000
  18. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 90000
  19. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 1700000
  20. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
  21. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
  22. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 34 // TODO: IDF-5180
  23. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 30 // TODO: IDF-5180
  24. // floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
  25. #define IDF_PERFORMANCE_MAX_CYCLES_PER_DIV 70
  26. #define IDF_PERFORMANCE_MAX_CYCLES_PER_SQRT 140