Home
last modified time | relevance | path

Searched refs:PMP_R (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/port/esp32c2/
Dcpu_region_protect.c26 #define CONDITIONAL_RX PMP_R | PMP_X
27 #define CONDITIONAL_RW PMP_R | PMP_W
28 #define CONDITIONAL_RWX PMP_R | PMP_W | PMP_X
55 const unsigned R = PMP_L | PMP_R; in esp_cpu_configure_region_protection()
57 const unsigned RW = PMP_L | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
58 const unsigned RX = PMP_L | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
59 const unsigned RWX = PMP_L | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
Dcpu_region_protect.c16 #define CONDITIONAL_R PMP_R
17 #define CONDITIONAL_RX PMP_R | PMP_X
18 #define CONDITIONAL_RW PMP_R | PMP_W
19 #define CONDITIONAL_RWX PMP_R | PMP_W | PMP_X
105 __attribute__((unused)) const unsigned R = PMP_L | PMP_R; in esp_cpu_configure_region_protection()
106 const unsigned RW = PMP_L | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
107 const unsigned RX = PMP_L | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
108 const unsigned RWX = PMP_L | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/
Dcpu_region_protect.c16 #define CONDITIONAL_R PMP_R
17 #define CONDITIONAL_RX PMP_R | PMP_X
18 #define CONDITIONAL_RW PMP_R | PMP_W
19 #define CONDITIONAL_RWX PMP_R | PMP_W | PMP_X
105 __attribute__((unused)) const unsigned R = PMP_L | PMP_R; in esp_cpu_configure_region_protection()
106 const unsigned RW = PMP_L | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
107 const unsigned RX = PMP_L | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
108 const unsigned RWX = PMP_L | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/
Dcpu_region_protect.c33 const unsigned R = PMP_L | PMP_TOR | PMP_R; in esp_cpu_configure_region_protection()
34 const unsigned RW = PMP_L | PMP_TOR | PMP_R | PMP_W; in esp_cpu_configure_region_protection()
35 const unsigned RX = PMP_L | PMP_TOR | PMP_R | PMP_X; in esp_cpu_configure_region_protection()
36 const unsigned RWX = PMP_L | PMP_TOR | PMP_R | PMP_W | PMP_X; in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/riscv/include/riscv/
Dencoding.h164 #define PMP_R 0x01 macro