2022-01-11 22:30:29 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-12-22 06:37:59 -05:00
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
#pragma once
|
|
|
|
|
2022-06-09 03:23:17 -04:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
// AES-CBC hardware throughput (accounts for worst-case performance with PSRAM workaround)
|
|
|
|
#define IDF_PERFORMANCE_MIN_AES_CBC_THROUGHPUT_MBSEC 8.2
|
|
|
|
|
|
|
|
// SHA256 hardware throughput at 240MHz, threshold set lower than worst case
|
2022-06-09 03:23:17 -04:00
|
|
|
#if CONFIG_FREERTOS_SMP // IDF-5222
|
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 6.0
|
|
|
|
#else
|
2020-03-10 01:53:09 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_SHA256_THROUGHPUT_MBSEC 8.0
|
2022-06-09 03:23:17 -04:00
|
|
|
#endif
|
2020-02-28 10:12:11 -05:00
|
|
|
// esp_sha() time to process 32KB of input data from RAM
|
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA1_32KB 5000
|
|
|
|
#define IDF_PERFORMANCE_MAX_TIME_SHA512_32KB 4500
|
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PUBLIC_OP 19000
|
2023-01-27 07:35:33 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_2048KEY_PRIVATE_OP 450000
|
2020-12-22 06:37:59 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_3072KEY_PUBLIC_OP 33000
|
2022-04-18 23:35:42 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_3072KEY_PRIVATE_OP 950000
|
2020-03-09 01:58:05 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PUBLIC_OP 90000
|
2023-01-27 07:35:33 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_RSA_4096KEY_PRIVATE_OP 1900000
|
2020-02-28 10:12:11 -05:00
|
|
|
|
2023-02-16 23:00:16 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_CLK_FREQ 16*1000*1000
|
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
|
2022-06-09 03:23:17 -04:00
|
|
|
#if !CONFIG_FREERTOS_SMP // IDF-5223
|
2022-06-01 22:49:15 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 34 // TODO: IDF-5180
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 30 // TODO: IDF-5180
|
2022-06-09 03:23:17 -04:00
|
|
|
#else
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 50
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 50
|
|
|
|
#endif
|
2020-02-28 10:12:11 -05: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 03:01:26 -05:00
|
|
|
|
|
|
|
#define IDF_PERFORMANCE_MAX_ADC_CONTINUOUS_STD_ATTEN3_NO_FILTER 3
|
|
|
|
#define IDF_PERFORMANCE_MAX_ADC_ONESHOT_STD_ATTEN3 3
|