Searched refs:DPORT_REG_WRITE (Results 1 – 5 of 5) sorted by relevance
/device/soc/esp/esp32/components/hal/esp32/include/hal/ |
D | aes_ll.h | 52 DPORT_REG_WRITE(AES_KEY_BASE + i * 4, *(key_words + i)); in aes_ll_write_key() 70 DPORT_REG_WRITE(AES_MODE_REG, mode_reg_base + ((key_bytes / 8) - 2)); in aes_ll_set_mode() 89 DPORT_REG_WRITE(AES_TEXT_BASE, i0); in aes_ll_write_block() 92 DPORT_REG_WRITE(AES_TEXT_BASE + 4, i1); in aes_ll_write_block() 95 DPORT_REG_WRITE(AES_TEXT_BASE + 8, i2); in aes_ll_write_block() 98 DPORT_REG_WRITE(AES_TEXT_BASE + 12, i3); in aes_ll_write_block() 121 DPORT_REG_WRITE(AES_START_REG, 1); in aes_ll_start_transform()
|
D | sha_ll.h | 78 DPORT_REG_WRITE(SHA_START_REG(sha_type), 1); in sha_ll_start_block() 88 DPORT_REG_WRITE(SHA_CONTINUE_REG(sha_type), 1); in sha_ll_continue_block() 98 DPORT_REG_WRITE(SHA_LOAD_REG(sha_type), 1); in sha_ll_load()
|
/device/soc/esp/esp32/components/soc/esp32/include/soc/ |
D | dport_access.h | 62 #define DPORT_REG_WRITE(_r, _v) _DPORT_REG_WRITE((_r), (_v)) macro 120 #define DPORT_REG_SET_BIT(_r, _b) DPORT_REG_WRITE((_r), (DPORT_REG_READ(_r)|(_b))) 123 #define DPORT_REG_CLR_BIT(_r, _b) DPORT_REG_WRITE((_r), (DPORT_REG_READ(_r) & (~(_b)))) 126 #define DPORT_REG_SET_BITS(_r, _b, _m) DPORT_REG_WRITE((_r), ((DPORT_REG_READ(_r) & (~(_m))) | ((_b… 132 #define DPORT_REG_SET_FIELD(_r, _f, _v) DPORT_REG_WRITE((_r), ((DPORT_REG_READ(_r) & (~((_f##_V) <<…
|
/device/soc/esp/esp32/components/esp32/ |
D | system_api_esp32.c | 115 DPORT_REG_WRITE(DPORT_CORE_RST_EN_REG, 0); in esp_restart_noos() 121 DPORT_REG_WRITE(DPORT_PERIP_RST_EN_REG, 0); in esp_restart_noos() 127 DPORT_REG_WRITE(DPORT_APPCPU_CTRL_D_REG, 0); in esp_restart_noos()
|
/device/soc/esp/esp32/components/esp_hw_support/port/esp32/ |
D | rtc_clk.c | 537 DPORT_REG_WRITE(DPORT_CPU_PER_CONF_REG, per_conf); in rtc_clk_cpu_freq_to_pll_mhz()
|