Home
last modified time | relevance | path

Searched refs:exec_bit (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/
Dmemprot_ll.h126 uint32_t write_bit, read_bit, exec_bit; in memprot_ll_iram0_sram_set_uni_block_perm() local
132 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_0_F; in memprot_ll_iram0_sram_set_uni_block_perm()
137 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_1_F; in memprot_ll_iram0_sram_set_uni_block_perm()
142 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_2_F; in memprot_ll_iram0_sram_set_uni_block_perm()
147 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_3_F; in memprot_ll_iram0_sram_set_uni_block_perm()
166 DPORT_SET_PERI_REG_MASK(DPORT_PMS_PRO_IRAM0_1_REG, exec_bit); in memprot_ll_iram0_sram_set_uni_block_perm()
168 DPORT_CLEAR_PERI_REG_MASK(DPORT_PMS_PRO_IRAM0_1_REG, exec_bit); in memprot_ll_iram0_sram_set_uni_block_perm()
218 static inline bool memprot_ll_iram0_sram_get_uni_block_exec_bit(uint32_t block, uint32_t *exec_bit) in memprot_ll_iram0_sram_get_uni_block_exec_bit() argument
222 *exec_bit = DPORT_REG_GET_FIELD(DPORT_PMS_PRO_IRAM0_1_REG, DPORT_PMS_PRO_IRAM0_SRAM_0_F); in memprot_ll_iram0_sram_get_uni_block_exec_bit()
225 *exec_bit = DPORT_REG_GET_FIELD(DPORT_PMS_PRO_IRAM0_1_REG, DPORT_PMS_PRO_IRAM0_SRAM_1_F); in memprot_ll_iram0_sram_get_uni_block_exec_bit()
[all …]
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/
Dmemprot_ll.h140 uint32_t write_bit, read_bit, exec_bit;
145 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_0_F;
150 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_1_F;
155 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_2_F;
160 exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_3_F;
179 DPORT_SET_PERI_REG_MASK( DPORT_PMS_PRO_IRAM0_1_REG, exec_bit );
181 DPORT_CLEAR_PERI_REG_MASK( DPORT_PMS_PRO_IRAM0_1_REG, exec_bit );
239 …et_uni_block_sgnf_bits(uint32_t block, uint32_t *write_bit, uint32_t *read_bit, uint32_t *exec_bit)
247 *exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_0_F;
252 *exec_bit = DPORT_PMS_PRO_IRAM0_SRAM_1_F;
[all …]
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32s2/
Dmemprot.c533 …_t esp_memprot_get_uni_block_exec_bit(mem_type_prot_t mem_type, uint32_t block, uint32_t *exec_bit) in esp_memprot_get_uni_block_exec_bit() argument
535 if (exec_bit == NULL) { in esp_memprot_get_uni_block_exec_bit()
541 if (!memprot_ll_iram0_sram_get_uni_block_exec_bit(block, exec_bit)) { in esp_memprot_get_uni_block_exec_bit()
/hal_espressif-3.6.0/components/esp_hw_support/include/soc/esp32s2/
Dmemprot.h293 …t esp_memprot_get_uni_block_exec_bit(mem_type_prot_t mem_type, uint32_t block, uint32_t *exec_bit);