mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 04:25:32 +00:00
Merge branch 'test/UT_reset_check' into 'master'
Test/ut reset check See merge request !1086
This commit is contained in:
@@ -129,14 +129,14 @@ static __attribute__((noreturn)) inline void invoke_abort()
|
||||
SEGGER_RTT_ESP32_FlushNoLock(CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH, APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#else
|
||||
esp_apptrace_flush_nolock(ESP_APPTRACE_DEST_TRAX, CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH,
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#endif
|
||||
#endif
|
||||
while(1) {
|
||||
while (1) {
|
||||
if (esp_cpu_in_ocd_debug_mode()) {
|
||||
__asm__ ("break 0,0");
|
||||
}
|
||||
*((int*) 0) = 0;
|
||||
*((int *) 0) = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -221,13 +221,17 @@ void panicHandler(XtExcFrame *frame)
|
||||
int debugRsn;
|
||||
asm("rsr.debugcause %0":"=r"(debugRsn));
|
||||
panicPutStr("Debug exception reason: ");
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_ICOUNT_MASK) panicPutStr("SingleStep ");
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_IBREAK_MASK) panicPutStr("HwBreakpoint ");
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_DBREAK_MASK) {
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_ICOUNT_MASK) {
|
||||
panicPutStr("SingleStep ");
|
||||
}
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_IBREAK_MASK) {
|
||||
panicPutStr("HwBreakpoint ");
|
||||
}
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_DBREAK_MASK) {
|
||||
//Unlike what the ISA manual says, this core seemingly distinguishes from a DBREAK
|
||||
//reason caused by watchdog 0 and one caused by watchdog 1 by setting bit 8 of the
|
||||
//debugcause if the cause is watchdog 1 and clearing it if it's watchdog 0.
|
||||
if (debugRsn&(1<<8)) {
|
||||
if (debugRsn & (1 << 8)) {
|
||||
#if CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK
|
||||
const char *name = pcTaskGetTaskName(xTaskGetCurrentTaskHandleForCPU(core_id));
|
||||
panicPutStr("Stack canary watchpoint triggered (");
|
||||
@@ -239,10 +243,16 @@ void panicHandler(XtExcFrame *frame)
|
||||
} else {
|
||||
panicPutStr("Watchpoint 0 triggered ");
|
||||
}
|
||||
}
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_BREAK_MASK) panicPutStr("BREAK instr ");
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_BREAKN_MASK) panicPutStr("BREAKN instr ");
|
||||
if (debugRsn&XCHAL_DEBUGCAUSE_DEBUGINT_MASK) panicPutStr("DebugIntr ");
|
||||
}
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_BREAK_MASK) {
|
||||
panicPutStr("BREAK instr ");
|
||||
}
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_BREAKN_MASK) {
|
||||
panicPutStr("BREAKN instr ");
|
||||
}
|
||||
if (debugRsn & XCHAL_DEBUGCAUSE_DEBUGINT_MASK) {
|
||||
panicPutStr("DebugIntr ");
|
||||
}
|
||||
panicPutStr("\r\n");
|
||||
}
|
||||
|
||||
@@ -252,7 +262,7 @@ void panicHandler(XtExcFrame *frame)
|
||||
SEGGER_RTT_ESP32_FlushNoLock(CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH, APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#else
|
||||
esp_apptrace_flush_nolock(ESP_APPTRACE_DEST_TRAX, CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH,
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#endif
|
||||
#endif
|
||||
setFirstBreakpoint(frame->pc);
|
||||
@@ -266,15 +276,16 @@ void xt_unhandled_exception(XtExcFrame *frame)
|
||||
haltOtherCore();
|
||||
esp_dport_access_int_abort();
|
||||
if (!abort_called) {
|
||||
panicPutStr("Guru Meditation Error of type ");
|
||||
panicPutStr("Guru Meditation Error: Core ");
|
||||
panicPutDec(xPortGetCoreID());
|
||||
panicPutStr(" panic'ed (");
|
||||
int exccause = frame->exccause;
|
||||
if (exccause < NUM_EDESCS) {
|
||||
panicPutStr(edesc[exccause]);
|
||||
} else {
|
||||
panicPutStr("Unknown");
|
||||
}
|
||||
panicPutStr(" occurred on core ");
|
||||
panicPutDec(xPortGetCoreID());
|
||||
panicPutStr(")\r\n");
|
||||
if (esp_cpu_in_ocd_debug_mode()) {
|
||||
panicPutStr(" at pc=");
|
||||
panicPutHex(frame->pc);
|
||||
@@ -284,7 +295,7 @@ void xt_unhandled_exception(XtExcFrame *frame)
|
||||
SEGGER_RTT_ESP32_FlushNoLock(CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH, APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#else
|
||||
esp_apptrace_flush_nolock(ESP_APPTRACE_DEST_TRAX, CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH,
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#endif
|
||||
#endif
|
||||
//Stick a hardware breakpoint on the address the handler returns to. This way, the OCD debugger
|
||||
@@ -458,7 +469,7 @@ static __attribute__((noreturn)) void commonErrorHandler(XtExcFrame *frame)
|
||||
SEGGER_RTT_ESP32_FlushNoLock(CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH, APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#else
|
||||
esp_apptrace_flush_nolock(ESP_APPTRACE_DEST_TRAX, CONFIG_ESP32_APPTRACE_POSTMORTEM_FLUSH_TRAX_THRESH,
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
APPTRACE_ONPANIC_HOST_FLUSH_TMO);
|
||||
#endif
|
||||
reconfigureAllWdts();
|
||||
#endif
|
||||
@@ -515,28 +526,36 @@ void esp_set_breakpoint_if_jtag(void *fn)
|
||||
esp_err_t esp_set_watchpoint(int no, void *adr, int size, int flags)
|
||||
{
|
||||
int x;
|
||||
if (no<0 || no>1) return ESP_ERR_INVALID_ARG;
|
||||
if (flags&(~0xC0000000)) return ESP_ERR_INVALID_ARG;
|
||||
int dbreakc=0x3F;
|
||||
//We support watching 2^n byte values, from 1 to 64. Calculate the mask for that.
|
||||
for (x=0; x<7; x++) {
|
||||
if (size==(1<<x)) break;
|
||||
dbreakc<<=1;
|
||||
if (no < 0 || no > 1) {
|
||||
return ESP_ERR_INVALID_ARG;
|
||||
}
|
||||
if (flags & (~0xC0000000)) {
|
||||
return ESP_ERR_INVALID_ARG;
|
||||
}
|
||||
int dbreakc = 0x3F;
|
||||
//We support watching 2^n byte values, from 1 to 64. Calculate the mask for that.
|
||||
for (x = 0; x < 7; x++) {
|
||||
if (size == (1 << x)) {
|
||||
break;
|
||||
}
|
||||
dbreakc <<= 1;
|
||||
}
|
||||
if (x == 7) {
|
||||
return ESP_ERR_INVALID_ARG;
|
||||
}
|
||||
if (x==7) return ESP_ERR_INVALID_ARG;
|
||||
//Mask mask and add in flags.
|
||||
dbreakc=(dbreakc&0x3f)|flags;
|
||||
dbreakc = (dbreakc & 0x3f) | flags;
|
||||
|
||||
if (no==0) {
|
||||
if (no == 0) {
|
||||
asm volatile(
|
||||
"wsr.dbreaka0 %0\n" \
|
||||
"wsr.dbreakc0 %1\n" \
|
||||
::"r"(adr),"r"(dbreakc));
|
||||
::"r"(adr), "r"(dbreakc));
|
||||
} else {
|
||||
asm volatile(
|
||||
"wsr.dbreaka1 %0\n" \
|
||||
"wsr.dbreakc1 %1\n" \
|
||||
::"r"(adr),"r"(dbreakc));
|
||||
::"r"(adr), "r"(dbreakc));
|
||||
}
|
||||
return ESP_OK;
|
||||
}
|
||||
@@ -544,8 +563,8 @@ esp_err_t esp_set_watchpoint(int no, void *adr, int size, int flags)
|
||||
void esp_clear_watchpoint(int no)
|
||||
{
|
||||
//Setting a dbreakc register to 0 makes it trigger on neither load nor store, effectively disabling it.
|
||||
int dbreakc=0;
|
||||
if (no==0) {
|
||||
int dbreakc = 0;
|
||||
if (no == 0) {
|
||||
asm volatile(
|
||||
"wsr.dbreakc0 %0\n" \
|
||||
::"r"(dbreakc));
|
||||
|
9
components/esp32/test/test_exception.c
Normal file
9
components/esp32/test/test_exception.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "unity.h"
|
||||
#include "esp_system.h"
|
||||
#include "string.h"
|
||||
|
||||
|
||||
TEST_CASE("make exception", "[restart][reset=StoreProhibited,SW_CPU_RESET]")
|
||||
{
|
||||
*(int *) NULL = 0;
|
||||
}
|
@@ -4,23 +4,21 @@
|
||||
#include "freertos/task.h"
|
||||
|
||||
|
||||
TEST_CASE("restart from PRO CPU", "[restart][ignore]")
|
||||
TEST_CASE("restart from PRO CPU", "[restart][reset=SW_CPU_RESET]")
|
||||
{
|
||||
esp_restart();
|
||||
}
|
||||
|
||||
static void restart_task(void* arg)
|
||||
static void restart_task(void *arg)
|
||||
{
|
||||
esp_restart();
|
||||
}
|
||||
|
||||
TEST_CASE("restart from APP CPU", "[restart][ignore]")
|
||||
TEST_CASE("restart from APP CPU", "[restart][reset=SW_CPU_RESET]")
|
||||
{
|
||||
xTaskCreatePinnedToCore(&restart_task, "restart", 2048, NULL, 5, NULL, 1);
|
||||
|
||||
while(true) {
|
||||
while (true) {
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@@ -5,12 +5,12 @@
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
|
||||
TEST_CASE("esp_deepsleep works", "[deepsleep][ignore]")
|
||||
TEST_CASE("esp_deepsleep works", "[deepsleep][reset=DEEPSLEEP_RESET]")
|
||||
{
|
||||
esp_deep_sleep(2000000);
|
||||
}
|
||||
|
||||
static void deep_sleep_task(void* arg)
|
||||
static void deep_sleep_task(void *arg)
|
||||
{
|
||||
esp_deep_sleep_start();
|
||||
}
|
||||
@@ -21,17 +21,19 @@ static void do_deep_sleep_from_app_cpu()
|
||||
|
||||
// keep running some non-IRAM code
|
||||
vTaskSuspendAll();
|
||||
while(true) {
|
||||
|
||||
while (true) {
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("wake up from deep sleep using timer", "[deepsleep][ignore]")
|
||||
TEST_CASE("wake up using timer", "[deepsleep][reset=DEEPSLEEP_RESET]")
|
||||
{
|
||||
esp_sleep_enable_timer_wakeup(2000000);
|
||||
esp_deep_sleep_start();
|
||||
}
|
||||
|
||||
|
||||
TEST_CASE("wake up from light sleep using timer", "[deepsleep]")
|
||||
{
|
||||
esp_sleep_enable_timer_wakeup(2000000);
|
||||
@@ -40,11 +42,11 @@ TEST_CASE("wake up from light sleep using timer", "[deepsleep]")
|
||||
esp_light_sleep_start();
|
||||
gettimeofday(&tv_stop, NULL);
|
||||
float dt = (tv_stop.tv_sec - tv_start.tv_sec) * 1e3f +
|
||||
(tv_stop.tv_usec - tv_start.tv_usec) * 1e-3f;
|
||||
(tv_stop.tv_usec - tv_start.tv_usec) * 1e-3f;
|
||||
TEST_ASSERT_INT32_WITHIN(500, 2000, (int) dt);
|
||||
}
|
||||
|
||||
TEST_CASE("enter deep sleep on APP CPU and wake up using timer", "[deepsleep][ignore]")
|
||||
TEST_CASE("enter deep sleep on APP CPU and wake up using timer", "[deepsleep][reset=DEEPSLEEP_RESET]")
|
||||
{
|
||||
esp_sleep_enable_timer_wakeup(2000000);
|
||||
do_deep_sleep_from_app_cpu();
|
||||
|
Reference in New Issue
Block a user