/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | spi_flash_encrypted_ll.h | 54 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 56 REG_WRITE(FLASH_ENCRYPTION_ADDRESS_REG, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | spi_flash_encrypted_ll.h | 104 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 106 REG_WRITE(AES_XTS_PHYSICAL_ADDR_REG, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32c2/include/hal/ |
D | spi_flash_encrypted_ll.h | 96 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 98 REG_WRITE(AES_XTS_PHYSICAL_ADDR_REG, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32c3/include/hal/ |
D | spi_flash_encrypted_ll.h | 104 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 106 REG_WRITE(AES_XTS_PHYSICAL_ADDR_REG, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | spi_flash_encrypted_ll.h | 113 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 115 REG_WRITE(AES_XTS_PHYSICAL_ADDR_REG, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | spi_flash_encrypted_ll.h | 96 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 98 REG_SET_FIELD(XTS_AES_PHYSICAL_ADDRESS_REG(0), XTS_AES_PHYSICAL_ADDRESS, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | spi_flash_encrypted_ll.h | 96 static inline void spi_flash_encrypt_ll_address_save(uint32_t flash_addr) in spi_flash_encrypt_ll_address_save() argument 98 REG_SET_FIELD(XTS_AES_PHYSICAL_ADDRESS_REG(0), XTS_AES_PHYSICAL_ADDRESS, flash_addr); in spi_flash_encrypt_ll_address_save()
|
/hal_espressif-latest/components/esp_rom/include/esp32s3/rom/ |
D | opi_flash.h | 289 esp_rom_spiflash_result_t esp_rom_opiflash_read(uint32_t flash_addr, void *data_addr, int len); 299 esp_rom_spiflash_result_t esp_rom_opiflash_write(uint32_t flash_addr, const uint32_t *data_addr, in… 316 esp_rom_spiflash_result_t esp_rom_opiflash_read_raw(uint32_t flash_addr, uint8_t* buf, int len);
|
D | spi_flash.h | 395 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/ |
D | esp_rom_spiflash.h | 275 esp_rom_spiflash_result_t esp_rom_spiflash_prepare_encrypted_data(uint32_t flash_addr, uint32_t *da… 305 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/esp32/rom/ |
D | spi_flash.h | 371 esp_rom_spiflash_result_t esp_rom_spiflash_prepare_encrypted_data(uint32_t flash_addr, uint32_t *da… 401 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/patches/ |
D | esp_rom_spiflash.c | 266 …rom_spiflash_result_t esp_rom_spiflash_read_data(esp_rom_spiflash_chip_t *spi, uint32_t flash_addr, in esp_rom_spiflash_read_data() argument 275 if ((flash_addr + byte_length) > (spi->chip_size)) { in esp_rom_spiflash_read_data() 279 temp_addr = flash_addr; in esp_rom_spiflash_read_data() 528 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin… in esp_rom_spiflash_write_encrypted() argument 533 if ((flash_addr & 0x1f) || (len & 0x1f)) { //check 32 byte alignment in esp_rom_spiflash_write_encrypted() 540 …if ((ret = esp_rom_spiflash_prepare_encrypted_data(flash_addr + (i << 5), data + (i << 3))) != ESP… in esp_rom_spiflash_write_encrypted() 544 …if ((ret = esp_rom_spiflash_write(flash_addr + (i << 5), data, 32)) != ESP_ROM_SPIFLASH_RESULT_OK)… in esp_rom_spiflash_write_encrypted()
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | stub_commands.c | 16 static esp_rom_spiflash_result_t SPIRead4B(int spi_num, uint32_t flash_addr, uint8_t* buf, int len) in SPIRead4B() argument 30 flash_addr, 32, in SPIRead4B() 39 flash_addr += rd_length; in SPIRead4B()
|
/hal_espressif-latest/components/spi_flash/sim/ |
D | flash_mock.cpp | 130 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin… in esp_rom_spiflash_write_encrypted() argument 132 return spiflash.write(flash_addr, data, len); in esp_rom_spiflash_write_encrypted()
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | esp_image_format.c | 90 static esp_err_t process_segment(int index, uint32_t flash_addr, esp_image_segment_header_t *header… 550 static esp_err_t process_segment(int index, uint32_t flash_addr, esp_image_segment_header_t *header… in process_segment() argument 555 err = bootloader_flash_read(flash_addr, header, sizeof(esp_image_segment_header_t), true); in process_segment() 557 ESP_LOGE(TAG, "bootloader_flash_read failed at 0x%08"PRIx32, flash_addr); in process_segment() 566 uint32_t data_addr = flash_addr + sizeof(esp_image_segment_header_t); in process_segment()
|
/hal_espressif-latest/components/esp_rom/include/esp32s2/rom/ |
D | spi_flash.h | 346 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/esp32c3/rom/ |
D | spi_flash.h | 358 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/esp32c6/rom/ |
D | spi_flash.h | 351 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/esp32h2/rom/ |
D | spi_flash.h | 351 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/components/esp_rom/include/esp32c2/rom/ |
D | spi_flash.h | 364 esp_rom_spiflash_result_t esp_rom_spiflash_write_encrypted(uint32_t flash_addr, uint32_t *data, uin…
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
D | rom_functions.h | 105 SpiFlashOpResult SPI_Encrypt_Write(uint32_t flash_addr, const void* data, uint32_t len);
|