Searched refs:PMP_R (Results 1 – 5 of 5) sorted by relevance
26 #define CONDITIONAL_RX PMP_R | PMP_X27 #define CONDITIONAL_RW PMP_R | PMP_W28 #define CONDITIONAL_RWX PMP_R | PMP_W | PMP_X55 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()
16 #define CONDITIONAL_R PMP_R17 #define CONDITIONAL_RX PMP_R | PMP_X18 #define CONDITIONAL_RW PMP_R | PMP_W19 #define CONDITIONAL_RWX PMP_R | PMP_W | PMP_X105 __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()
33 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()
164 #define PMP_R 0x01 macro