mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-07 10:31:43 +01:00
- Add support for esp32s2, esp32c3 and esp32c2 for the `memprot`-related tests
- Preliminary support for esp32s3 has also been added,
the test app will be enabled for esp32s3 later when
the memprot-related issues are fixed.
- Override panic handler to dump the violation intr status
- Dump the `memprot` violation registers before calling the
real panic handler
- Handle `Illegal Instruction` exception in case of memprot permission violation
* In esp32c3 with `memprot` enabled, if we try to execute arbitrary code
from RTC_FAST_MEM we get an `Illegal Instruction` exception from the panic
handler rather than a `Memory Protection Fault`.
* This is because the Illegal Instruction interrupt occurs earlier than the
memory protection interrupt due to a higher interrupt latency.
49 lines
992 B
C
49 lines
992 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
|
#define SOC_DCACHE_SUPPORTED (1)
|
|
#endif
|
|
|
|
/* Functions testing memprot peripheral: memory regions and illegal operations on them */
|
|
|
|
void test_dcache_read_violation(void);
|
|
|
|
void test_dcache_write_violation(void);
|
|
|
|
void test_iram_reg1_write_violation(void);
|
|
|
|
void test_iram_reg2_write_violation(void);
|
|
|
|
void test_iram_reg3_write_violation(void);
|
|
|
|
void test_iram_reg4_write_violation(void);
|
|
|
|
void test_dram_reg1_execute_violation(void);
|
|
|
|
void test_dram_reg2_execute_violation(void);
|
|
|
|
void test_rtc_fast_reg1_execute_violation(void);
|
|
|
|
void test_rtc_fast_reg2_execute_violation(void);
|
|
|
|
void test_rtc_fast_reg3_execute_violation(void);
|
|
|
|
void test_rtc_slow_reg1_execute_violation(void);
|
|
|
|
void test_rtc_slow_reg2_execute_violation(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|