2021-11-06 17:31:05 +08:00
|
|
|
/*
|
2022-01-12 11:30:29 +08:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:31:05 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-26 03:28:04 +08:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_XTAL_FREQ_26
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1900
|
|
|
|
#else
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1200
|
|
|
|
#endif
|
|
|
|
|
2021-11-06 17:31:05 +08:00
|
|
|
// SHA256 hardware throughput at 160 MHz, threshold set lower than worst case
|
2021-09-24 14:32:58 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 14
|
2021-11-06 17:31:05 +08:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
2021-09-24 14:32:58 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 2500
|
2021-11-06 17:31:05 +08:00
|
|
|
|
2022-09-29 17:55:19 +05:30
|
|
|
#define IDF_PERFORMANCE_MAX_ECP_P192_POINT_MULTIPLY_OP 9000
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECP_P192_POINT_VERIFY_OP 300
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECP_P256_POINT_MULTIPLY_OP 14000
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECP_P256_POINT_VERIFY_OP 300
|
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECDSA_P192_VERIFY_OP 32000
|
|
|
|
#define IDF_PERFORMANCE_MAX_ECDSA_P256_VERIFY_OP 49000
|
|
|
|
|
2023-02-17 12:00:16 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_CLK_FREQ 40*1000*1000
|
2022-01-12 11:30:29 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 20
|
2022-11-22 14:39:26 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 16
|
2022-01-12 11:30:29 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 45
|
2022-11-22 14:39:26 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 41
|
2021-11-06 17:31:05 +08: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
|
2023-02-07 16:01:26 +08:00
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_ADC_ONESHOT_STD_ATTEN3 3
|