2018-10-25 12:52:32 +08:00
|
|
|
#pragma once
|
2017-11-08 12:27:57 +08:00
|
|
|
|
2022-06-09 09:23:17 +02:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2020-02-28 16:12:11 +01:00
|
|
|
/* put target-specific macros into include/target/idf_performance_target.h */
|
|
|
|
#include "idf_performance_target.h"
|
|
|
|
|
|
|
|
/* Define default values in this file with #ifndef if the value could been overwritten in the target-specific headers
|
|
|
|
* above. Forgetting this will produce compile-time warnings.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP
|
2022-06-23 01:22:20 +04:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 215
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM
|
2018-06-27 14:47:31 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE
|
2017-11-08 12:27:57 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL
|
2017-11-08 12:27:57 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
2019-10-20 13:21:23 +08:00
|
|
|
|
2018-05-17 19:12:45 +08:00
|
|
|
/* Due to code size & linker layout differences interacting with cache, VFS
|
|
|
|
microbenchmark currently runs slower with PSRAM enabled. */
|
2022-06-09 09:23:17 +02:00
|
|
|
#if !CONFIG_FREERTOS_SMP // IDF-5224
|
2020-02-28 16:12:11 +01:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME
|
2022-06-23 01:22:20 +04:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM
|
2018-11-23 08:07:59 +01:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
2022-06-09 09:23:17 +02:00
|
|
|
#else
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME
|
2022-07-04 11:53:15 +02:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 62000
|
2022-06-09 09:23:17 +02:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM
|
2022-07-04 11:53:15 +02:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 66000
|
2022-06-09 09:23:17 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2020-02-28 16:12:11 +01:00
|
|
|
|
2018-01-07 20:28:09 +08:00
|
|
|
// throughput performance by iperf
|
2020-02-28 16:12:11 +01:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT
|
2022-06-23 01:22:20 +04:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT
|
2018-01-07 20:28:09 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT
|
2022-06-23 01:22:20 +04:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT
|
2018-01-07 20:28:09 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
|
2021-07-28 09:39:02 +08:00
|
|
|
// throughput performance by ethernet iperf
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_RX_ETH_THROUGHPUT
|
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_ETH_THROUGHPUT 20
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_TX_ETH_THROUGHPUT
|
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_ETH_THROUGHPUT 30
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_RX_ETH_THROUGHPUT
|
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_ETH_THROUGHPUT 50
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_TX_ETH_THROUGHPUT
|
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_ETH_THROUGHPUT 70
|
|
|
|
#endif
|
|
|
|
|
2018-10-26 13:14:19 +08:00
|
|
|
// events dispatched per second by event loop library
|
2022-06-09 09:23:17 +02:00
|
|
|
#if !CONFIG_FREERTOS_SMP // IDF-5112
|
2020-02-28 16:12:11 +01:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH
|
2018-11-01 11:01:35 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM
|
2018-11-01 11:01:35 +08:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
2022-06-09 09:23:17 +02:00
|
|
|
#else
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH
|
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 18000
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM
|
2022-07-04 11:31:43 +02:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 14000
|
2022-06-09 09:23:17 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2019-11-06 11:07:16 +08:00
|
|
|
|
2020-02-28 16:12:11 +01:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES
|
2019-11-06 11:07:16 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES 150
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES
|
2019-11-06 11:07:16 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES 290
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES
|
2019-11-06 11:07:16 +08:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES 565
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
2019-11-06 11:07:16 +08:00
|
|
|
|
2019-11-06 16:59:16 +08:00
|
|
|
//time to perform the task selection plus context switch (from task)
|
2020-02-28 16:12:11 +01:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SCHEDULING_TIME
|
2020-04-03 16:57:57 -03:00
|
|
|
#define IDF_PERFORMANCE_MAX_SCHEDULING_TIME 2000
|
2020-02-28 16:12:11 +01:00
|
|
|
#endif
|
2020-01-16 15:37:19 -03:00
|
|
|
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_MALLOC_DEFAULT_AVERAGE_TIME
|
|
|
|
#define IDF_PERFORMANCE_MAX_MALLOC_DEFAULT_AVERAGE_TIME 2600
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREE_DEFAULT_AVERAGE_TIME
|
|
|
|
#define IDF_PERFORMANCE_MAX_FREE_DEFAULT_AVERAGE_TIME 950
|
|
|
|
#endif
|