Home
last modified time | relevance | path

Searched refs:PMP_TOR (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c28 const unsigned NONE = PMP_L | PMP_TOR; in esp_cpu_configure_region_protection()
29 const unsigned R = PMP_L | PMP_TOR | PMP_R; in esp_cpu_configure_region_protection()
30 const unsigned RW = PMP_L | PMP_TOR | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
31 const unsigned RX = PMP_L | PMP_TOR | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
32 const unsigned RWX = PMP_L | PMP_TOR | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c28 const unsigned NONE = PMP_L | PMP_TOR; in esp_cpu_configure_region_protection()
29 const unsigned R = PMP_L | PMP_TOR | PMP_R; in esp_cpu_configure_region_protection()
30 const unsigned RW = PMP_L | PMP_TOR | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
31 const unsigned RX = PMP_L | PMP_TOR | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
32 const unsigned RWX = PMP_L | PMP_TOR | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/riscv/include/riscv/
Dencoding.h171 #define PMP_TOR 0x08 macro