2021-11-17 04:43:22 -05:00
|
|
|
/*
|
2022-01-11 22:30:29 -05:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-17 04:43:22 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-12-22 06:37:59 -05:00
|
|
|
|
2020-07-29 01:13:51 -04:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-14 02:25:06 -05:00
|
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 43
|
2020-07-29 01:13:51 -04:00
|
|
|
|
|
|
|
// SHA256 hardware throughput at 240MHz, threshold set lower than worst case
|
2021-11-17 04:43:22 -05:00
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 90
|
2020-07-29 01:13:51 -04:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 1000
|
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 900
|
|
|
|
|
2020-08-19 02:39:12 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 18000
|
2022-04-18 23:35:42 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 490000
|
2020-12-22 06:37:59 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_3072KEY_PUBLIC_OP 45000
|
2022-04-18 23:35:42 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_3072KEY_PRIVATE_OP 1300000
|
2020-08-19 02:39:12 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 80000
|
2022-04-18 23:35:42 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 2500000
|
2020-07-29 01:13:51 -04:00
|
|
|
|
2022-01-11 22:30:29 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
|
2020-07-29 01:13:51 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 32
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 30
|
2020-08-12 23:56:52 -04:00
|
|
|
|
|
|
|
// floating point instructions per divide and per sqrt (configured for worst-case with PSRAM workaround)
|
|
|
|
#define IDF_PERFORMANCE_MAX_CYCLES_PER_DIV 70
|
|
|
|
#define IDF_PERFORMANCE_MAX_CYCLES_PER_SQRT 140
|