2018-10-25 00:52:32 -04:00
|
|
|
#pragma once
|
2017-11-07 23:27:57 -05:00
|
|
|
|
2020-02-28 10:12:11 -05: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
|
2017-11-07 23:27:57 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM
|
2018-06-27 02:47:31 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 300
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE
|
2017-11-07 23:27:57 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL
|
2017-11-07 23:27:57 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2019-10-20 01:21:23 -04:00
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING
|
2018-01-30 22:15:23 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING 15
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA
|
2018-01-30 22:15:23 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_POLLING_NO_DMA 15
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2019-10-20 01:21:23 -04:00
|
|
|
|
2018-05-17 07:12:45 -04:00
|
|
|
/* Due to code size & linker layout differences interacting with cache, VFS
|
|
|
|
microbenchmark currently runs slower with PSRAM enabled. */
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME
|
2018-11-23 02:07:59 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME 20000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM
|
2018-11-23 02:07:59 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_VFS_OPEN_WRITE_CLOSE_TIME_PSRAM 25000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
|
2018-01-07 07:28:09 -05:00
|
|
|
// throughput performance by iperf
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT
|
2019-06-27 05:13:44 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_RX_THROUGHPUT 45
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT
|
2018-01-07 07:28:09 -05:00
|
|
|
#define IDF_PERFORMANCE_MIN_TCP_TX_THROUGHPUT 40
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT
|
2019-06-27 05:13:44 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_RX_THROUGHPUT 64
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT
|
2018-01-07 07:28:09 -05:00
|
|
|
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
|
2018-10-26 01:14:19 -04:00
|
|
|
// events dispatched per second by event loop library
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH
|
2018-10-31 23:01:35 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM
|
2018-10-31 23:01:35 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH_PSRAM 21000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2019-11-05 22:07:16 -05:00
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES
|
2019-11-05 22:07:16 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPILL_REG_CYCLES 150
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES
|
2019-11-05 22:07:16 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_ENTER_CYCLES 290
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES
|
2019-11-05 22:07:16 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_ISR_EXIT_CYCLES 565
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2019-11-05 22:07:16 -05:00
|
|
|
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_4BIT
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_4BIT 12200
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_4BIT
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_4BIT 12200
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_1BIT
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_1BIT 4000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_1BIT
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_1BIT 4000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_SPI
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_TOHOST_SPI 1000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-05-11 14:28:53 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_SPI
|
|
|
|
#define IDF_PERFORMANCE_MIN_SDIO_THROUGHPUT_KBSEC_FRHOST_SPI 1000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2019-09-28 04:49:23 -04:00
|
|
|
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_4B
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_4B 22200
|
|
|
|
#endif
|
2020-10-29 06:27:28 -04:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_4B in target file
|
2020-11-04 12:18:44 -05:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_WR_2KB in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_2KB
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_RD_2KB (7088*1000)
|
|
|
|
#endif
|
2020-05-20 22:31:03 -04:00
|
|
|
//This value is usually around 44K, but there are some chips with such low performance....
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_ERASE
|
2020-05-20 22:31:03 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_LEGACY_ERASE 12000
|
2020-05-11 14:32:40 -04:00
|
|
|
#endif
|
|
|
|
|
2020-11-04 12:18:44 -05:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_4B in target file
|
2020-10-29 06:27:28 -04:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_4B in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_2KB
|
2020-05-20 22:31:03 -04:00
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_WR_2KB (694*1000)
|
2020-05-11 14:32:40 -04:00
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_2KB
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_RD_2KB (7797*1000)
|
|
|
|
#endif
|
2020-11-04 12:18:44 -05:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_ERASE in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
|
2020-11-04 12:18:44 -05:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_4B in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_4B
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_4B 50100
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_2KB
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_WR_2KB (618*1000)
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_2KB
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_RD_2KB (1601*1000)
|
|
|
|
#endif
|
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_ERASE
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_SPI1_ERASE 59800
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Some performance value based on the test against GD chip with single_core config.
|
2020-11-26 03:56:13 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_4B
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_4B 64900
|
|
|
|
#endif
|
2020-07-28 11:00:24 -04:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_4B in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
#ifndef IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_2KB
|
|
|
|
#define IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_WR_2KB (475*1000)
|
|
|
|
#endif
|
2020-07-14 12:10:58 -04:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_RD_2KB in target file
|
2020-07-28 11:00:24 -04:00
|
|
|
// IDF_PERFORMANCE_MIN_FLASH_SPEED_BYTE_PER_SEC_EXT_ERASE in target file
|
2020-05-11 14:32:40 -04:00
|
|
|
|
2019-11-06 03:59:16 -05:00
|
|
|
//time to perform the task selection plus context switch (from task)
|
2020-02-28 10:12:11 -05:00
|
|
|
#ifndef IDF_PERFORMANCE_MAX_SCHEDULING_TIME
|
2020-04-03 15:57:57 -04:00
|
|
|
#define IDF_PERFORMANCE_MAX_SCHEDULING_TIME 2000
|
2020-02-28 10:12:11 -05:00
|
|
|
#endif
|
2020-01-16 13:37:19 -05: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
|