Searched refs:PMP_L (Results 1 – 5 of 5) sorted by relevance
54 const unsigned NONE = PMP_L ; in esp_cpu_configure_region_protection()55 const unsigned R = PMP_L | PMP_R; in esp_cpu_configure_region_protection()56 const unsigned X = PMP_L | PMP_X; 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()
32 const unsigned NONE = PMP_L | PMP_TOR; 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()107 PMP_ENTRY_SET(15, UINT32_MAX, PMP_L | PMP_NA4); // last 4 bytes in esp_cpu_configure_region_protection()
104 const unsigned NONE = PMP_L; in esp_cpu_configure_region_protection()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()
168 #define PMP_L 0x80 macro