2018-10-25 04:52:32 +00:00
|
|
|
#pragma once
|
2017-11-08 04:27:57 +00:00
|
|
|
|
|
|
|
/* declare the performance here */
|
2018-02-01 01:57:00 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 800
|
2017-11-08 04:27:57 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
2018-06-27 06:47:31 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
|
2017-11-08 04:27:57 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
2018-02-07 07:45:10 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
|
2018-01-31 03:15:23 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 27
|
2018-01-31 03:15:23 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
|
2018-05-17 11:12:45 +00:00
|
|
|
/* Due to code size & linker layout differences interacting with cache, VFS
|
|
|
|
microbenchmark currently runs slower with PSRAM enabled. */
|
2018-11-23 07:07:59 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
|
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
|
2018-01-07 12:28:09 +00:00
|
|
|
// throughput performance by iperf
|
2019-06-27 09:13:44 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
|
2018-01-07 12:28:09 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
|
2019-06-27 09:13:44 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
|
2018-01-07 12:28:09 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
2018-10-26 05:14:19 +00:00
|
|
|
// events dispatched per second by event loop library
|
2018-11-01 03:01:35 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
|
2019-03-11 07:24:32 +00:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
2019-05-19 23:44:42 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA1_32KB 5000
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_TIME_SHA512_32KB 4500
|
|
|
|
// AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
|
2019-05-21 08:12:42 +00:00
|
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
|
2019-05-16 03:19:32 +00:00
|
|
|
// floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_DIV 70
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP32_CYCLES_PER_SQRT 140
|
2019-10-11 05:57:26 +00:00
|
|
|
// SHA256 hardware throughput at 240MHz, threshold set lower than worst case
|
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 9.0
|
2019-10-15 02:32:31 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES 150
|
2019-10-24 19:49:59 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES 290
|
2019-10-24 20:08:21 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES 565
|
2019-10-24 19:49:59 +00:00
|
|
|
|
2019-05-19 23:44:42 +00:00
|
|
|
|
mbedtls: Add an UT for performance RSA key operations
(New) - Montgomery exponentiation: Z = X ^ Y mod M (HAC 14.94)
keysize = 2048 bits
RSA key operation (performance): public [21894 us], private [199119 us]
RSA key operation (performance): public [18768 us], private [189051 us]
RSA key operation (performance): public [16242 us], private [190821 us]
keysize = 3072 bits
RSA key operation (performance): public [39762 us], private [437480 us]
RSA key operation (performance): public [36550 us], private [449422 us]
RSA key operation (performance): public [40536 us], private [443451 us]
keysize = 4096 bits
RSA key operation (performance): public [65671 us], private [885215 us]
RSA key operation (performance): public [60770 us], private [880936 us]
RSA key operation (performance): public [68951 us], private [872027 us]
(Old) - Sliding-window exponentiation: Z = X ^ Y mod M (HAC 14.85)
keysize = 2048 bits
RSA key operation (performance): public [93206 us], private [280189 us]
RSA key operation (performance): public [93060 us], private [278893 us]
RSA key operation (performance): public [97520 us], private [283252 us]
keysize = 3072 bits
RSA key operation (performance): public [293614 us], private [858157 us]
RSA key operation (performance): public [289902 us], private [843701 us]
RSA key operation (performance): public [291495 us], private [845232 us]
keysize = 4096 bits
RSA key operation (performance): public [653192 us], private [1912126 us]
RSA key operation (performance): public [656661 us], private [1901792 us]
RSA key operation (performance): public [641390 us], private [1938911 us]
2019-10-22 10:22:02 +00:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 180000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 65000
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 850000
|
2019-09-28 08:49:23 +00:00
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_4BIT 13000
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_4BIT 13000
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_1BIT 4000
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_1BIT 4000
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_TOHOST_SPI 1000
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_MBSEC_FRHOST_SPI 1000
|
|
|
|
|