Merge branch 'bugfix/sysview_timer_1core' into 'master'

sysview: fix compilation in 1 core mode, refactor timer choices

See merge request idf/esp-idf!1822

(cherry picked from commit 0f22a53fc2)

c3d82157 sysview: fix compilation in 1 core mode, refactor timer choices
This commit is contained in:
Ivan Grokhotkov 2018-01-29 17:28:59 +08:00
parent f918cb185d
commit 95f6f88aa7
2 changed files with 80 additions and 52 deletions

View file

@ -64,33 +64,37 @@ config SYSVIEW_ENABLE
Enables supporrt for SEGGER SystemView tracing functionality. Enables supporrt for SEGGER SystemView tracing functionality.
choice SYSVIEW_TS_SOURCE choice SYSVIEW_TS_SOURCE
prompt "ESP32 timer to use as SystemView timestamp source" prompt "Timer to use as timestamp source"
depends on SYSVIEW_ENABLE depends on SYSVIEW_ENABLE
default SYSVIEW_TS_SOURCE_TIMER_00 default SYSVIEW_TS_SOURCE_CCOUNT if FREERTOS_UNICORE && !PM_ENABLE
default SYSVIEW_TS_SOURCE_TIMER_00 if !FREERTOS_UNICORE && !PM_ENABLE
default SYSVIEW_TS_SOURCE_ESP_TIMER if PM_ENABLE
help help
SystemView needs to use a hardware timer as the source of timestamps SystemView needs to use a hardware timer as the source of timestamps
when tracing when tracing. This option selects the timer for it.
This option selects HW timer for it.
config SYSVIEW_TS_SOURCE_CCOUNT
bool "CPU cycle counter (CCOUNT)"
depends on FREERTOS_UNICORE && !PM_ENABLE
config SYSVIEW_TS_SOURCE_TIMER_00 config SYSVIEW_TS_SOURCE_TIMER_00
bool "Timer 0, Group 0" bool "Timer 0, Group 0"
help depends on !PM_ENABLE
Select this to use timer 0 of group 0
config SYSVIEW_TS_SOURCE_TIMER_01 config SYSVIEW_TS_SOURCE_TIMER_01
bool "Timer 1, Group 0" bool "Timer 1, Group 0"
help depends on !PM_ENABLE
Select this to use timer 1 of group 0
config SYSVIEW_TS_SOURCE_TIMER_10 config SYSVIEW_TS_SOURCE_TIMER_10
bool "Timer 0, Group 1" bool "Timer 0, Group 1"
help depends on !PM_ENABLE
Select this to use timer 0 of group 1
config SYSVIEW_TS_SOURCE_TIMER_11 config SYSVIEW_TS_SOURCE_TIMER_11
bool "Timer 1, Group 1" bool "Timer 1, Group 1"
help depends on !PM_ENABLE
Select this to use timer 1 of group 1
config SYSVIEW_TS_SOURCE_ESP_TIMER
bool "esp_timer high resolution timer"
endchoice endchoice

View file

@ -64,9 +64,6 @@ Revision: $Rev: 3734 $
#include "freertos/FreeRTOS.h" #include "freertos/FreeRTOS.h"
#include "SEGGER_SYSVIEW.h" #include "SEGGER_SYSVIEW.h"
#include "rom/ets_sys.h" #include "rom/ets_sys.h"
#if CONFIG_FREERTOS_UNICORE == 0
#include "driver/timer.h"
#endif
#include "esp_app_trace.h" #include "esp_app_trace.h"
#include "esp_app_trace_util.h" #include "esp_app_trace_util.h"
#include "esp_intr_alloc.h" #include "esp_intr_alloc.h"
@ -86,10 +83,49 @@ extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI;
// The target device name // The target device name
#define SYSVIEW_DEVICE_NAME "ESP32" #define SYSVIEW_DEVICE_NAME "ESP32"
// Determine which timer to use as timestamp source
#if CONFIG_SYSVIEW_TS_SOURCE_CCOUNT
#define TS_USE_CCOUNT 1
#elif CONFIG_SYSVIEW_TS_SOURCE_ESP_TIMER
#define TS_USE_ESP_TIMER 1
#else
#define TS_USE_TIMERGROUP 1
#endif
#if TS_USE_TIMERGROUP
#include "driver/timer.h"
// Timer group timer divisor // Timer group timer divisor
#define SYSVIEW_TIMER_DIV 2 #define SYSVIEW_TIMER_DIV 2
// Frequency of the timestamp. // Frequency of the timestamp.
#define SYSVIEW_TIMESTAMP_FREQ (esp_clk_apb_freq() / SYSVIEW_TIMER_DIV) #define SYSVIEW_TIMESTAMP_FREQ (esp_clk_apb_freq() / SYSVIEW_TIMER_DIV)
// Timer ID and group ID
#if defined(CONFIG_SYSVIEW_TS_SOURCE_TIMER_00) || defined(CONFIG_SYSVIEW_TS_SOURCE_TIMER_01)
#define TS_TIMER_ID 0
#else
#define TS_TIMER_ID 1
#endif // TIMER_00 || TIMER_01
#if defined(CONFIG_SYSVIEW_TS_SOURCE_TIMER_00) || defined(CONFIG_SYSVIEW_TS_SOURCE_TIMER_10)
#define TS_TIMER_GROUP 0
#else
#define TS_TIMER_GROUP 1
#endif // TIMER_00 || TIMER_10
#endif // TS_USE_TIMERGROUP
#if TS_USE_ESP_TIMER
// esp_timer provides 1us resolution
#define SYSVIEW_TIMESTAMP_FREQ (1000000)
#endif // TS_USE_ESP_TIMER
#if TS_USE_CCOUNT
// CCOUNT is incremented at CPU frequency
#define SYSVIEW_TIMESTAMP_FREQ (CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ * 1000000)
#endif // TS_USE_CCOUNT
// System Frequency. // System Frequency.
#define SYSVIEW_CPU_FREQ (esp_clk_cpu_freq()) #define SYSVIEW_CPU_FREQ (esp_clk_cpu_freq())
@ -103,11 +139,8 @@ extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI;
#define SYSTICK_INTR_ID (ETS_INTERNAL_TIMER1_INTR_SOURCE+ETS_INTERNAL_INTR_SOURCE_OFF) #define SYSTICK_INTR_ID (ETS_INTERNAL_TIMER1_INTR_SOURCE+ETS_INTERNAL_INTR_SOURCE_OFF)
#endif #endif
static timer_idx_t s_ts_timer_idx;
static timer_group_t s_ts_timer_group;
// SystemView is single core specific: it implies that SEGGER_SYSVIEW_LOCK() // SystemView is single core specific: it implies that SEGGER_SYSVIEW_LOCK()
// disables IRQs (disables rescheduling globaly). So we can not use finite timeouts for locks and return error // disables IRQs (disables rescheduling globally). So we can not use finite timeouts for locks and return error
// in case of expiration, because error will not be handled and SEGGER's code will go further implying that // in case of expiration, because error will not be handled and SEGGER's code will go further implying that
// everything is fine, so for multi-core env we have to wait on underlying lock forever // everything is fine, so for multi-core env we have to wait on underlying lock forever
#define SEGGER_LOCK_WAIT_TMO ESP_APPTRACE_TMO_INFINITE #define SEGGER_LOCK_WAIT_TMO ESP_APPTRACE_TMO_INFINITE
@ -213,35 +246,24 @@ static void _cbSendSystemDesc(void) {
*/ */
static void SEGGER_SYSVIEW_TS_Init() static void SEGGER_SYSVIEW_TS_Init()
{ {
timer_config_t config; /* We only need to initialize something if we use Timer Group.
* esp_timer and ccount can be used as is.
#if CONFIG_SYSVIEW_TS_SOURCE_TIMER_00 */
s_ts_timer_group = TIMER_GROUP_0; #if TS_USE_TIMERGROUP
s_ts_timer_idx = TIMER_0; timer_config_t config = {
#endif .alarm_en = 0,
#if CONFIG_SYSVIEW_TS_SOURCE_TIMER_01 .auto_reload = 0,
s_ts_timer_group = TIMER_GROUP_0; .counter_dir = TIMER_COUNT_UP,
s_ts_timer_idx = TIMER_1; .divider = SYSVIEW_TIMER_DIV,
#endif .counter_en = 0
#if CONFIG_SYSVIEW_TS_SOURCE_TIMER_10 };
s_ts_timer_group = TIMER_GROUP_1; /* Configure timer */
s_ts_timer_idx = TIMER_0; timer_init(TS_TIMER_GROUP, TS_TIMER_ID, &config);
#endif /* Load counter value */
#if CONFIG_SYSVIEW_TS_SOURCE_TIMER_11 timer_set_counter_value(TS_TIMER_GROUP, TS_TIMER_ID, 0x00000000ULL);
s_ts_timer_group = TIMER_GROUP_1; /* Start counting */
s_ts_timer_idx = TIMER_1; timer_start(TS_TIMER_GROUP, TS_TIMER_ID);
#endif #endif // TS_USE_TIMERGROUP
config.alarm_en = 0;
config.auto_reload = 0;
config.counter_dir = TIMER_COUNT_UP;
config.divider = SYSVIEW_TIMER_DIV;
config.counter_en = 0;
/*Configure timer*/
timer_init(s_ts_timer_group, s_ts_timer_idx, &config);
/*Load counter value */
timer_set_counter_value(s_ts_timer_group, s_ts_timer_idx, 0x00000000ULL);
/*Enable timer interrupt*/
timer_start(s_ts_timer_group, s_ts_timer_idx);
} }
void SEGGER_SYSVIEW_Conf(void) { void SEGGER_SYSVIEW_Conf(void) {
@ -296,12 +318,14 @@ void SEGGER_SYSVIEW_Conf(void) {
U32 SEGGER_SYSVIEW_X_GetTimestamp() U32 SEGGER_SYSVIEW_X_GetTimestamp()
{ {
#if CONFIG_FREERTOS_UNICORE == 0 #if TS_USE_TIMERGROUP
uint64_t ts = 0; uint64_t ts = 0;
timer_get_counter_value(s_ts_timer_group, s_ts_timer_idx, &ts); timer_get_counter_value(TS_TIMER_GROUP, TS_TIMER_ID, &ts);
return (U32)ts; // return lower part of counter value return (U32) ts; // return lower part of counter value
#else #elif TS_USE_CCOUNT
return portGET_RUN_TIME_COUNTER_VALUE(); return portGET_RUN_TIME_COUNTER_VALUE();
#elif TS_USE_ESP_TIMER
return (U32) esp_timer_get_time(); // return lower part of counter value
#endif #endif
} }