idf_performance_target.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. #pragma once
  14. // AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
  15. #define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
  16. // SHA256 hardware throughput at 240MHz, threshold set lower than worst case
  17. #define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 8.0
  18. // esp_sha() time to process 32KB of input data from RAM
  19. #define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 5000
  20. #define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 4500
  21. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
  22. #define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 190000
  23. #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PUBLIC_OP 33000
  24. #define IDF_PERFORMANCE_MAX_RSA_3072KEY_PRIVATE_OP 360000
  25. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 90000
  26. #define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 870000
  27. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
  28. #define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 27
  29. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_4B
  30. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_4B 50600
  31. #endif
  32. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_2KB
  33. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_2KB (695*1000)
  34. #endif
  35. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_4B
  36. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_4B 24300
  37. #endif
  38. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_4B
  39. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_4B 50300
  40. #endif
  41. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_ERASE
  42. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_ERASE 44300
  43. #endif
  44. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_4B
  45. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_4B 23100
  46. #endif
  47. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_4B
  48. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_4B 68900
  49. #endif
  50. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_4B
  51. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_4B (338*1000)
  52. #endif
  53. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_2KB
  54. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_2KB (1697*1000)
  55. #endif
  56. #ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_ERASE
  57. #define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_ERASE 76600
  58. #endif
  59. // floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
  60. #define IDF_PERFORMANCE_MAX_CYCLES_PER_DIV 70
  61. #define IDF_PERFORMANCE_MAX_CYCLES_PER_SQRT 140