Home
last modified time | relevance | path

Searched refs:flash_addr (Results 1 – 21 of 21) sorted by relevance

/hal_espressif-latest/components/hal/esp32/include/hal/
Dspi_flash_encrypted_ll.h54 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/
Dspi_flash_encrypted_ll.h104 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/
Dspi_flash_encrypted_ll.h96 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/
Dspi_flash_encrypted_ll.h104 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/
Dspi_flash_encrypted_ll.h113 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/
Dspi_flash_encrypted_ll.h96 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/
Dspi_flash_encrypted_ll.h96 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/
Dopi_flash.h289 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);
Dspi_flash.h395 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/
Desp_rom_spiflash.h275 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/
Dspi_flash.h371 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/
Desp_rom_spiflash.c266 …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/
Dstub_commands.c16 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/
Dflash_mock.cpp130 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/
Desp_image_format.c90 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/
Dspi_flash.h346 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/
Dspi_flash.h358 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/
Dspi_flash.h351 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/
Dspi_flash.h351 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/
Dspi_flash.h364 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/
Drom_functions.h105 SpiFlashOpResult SPI_Encrypt_Write(uint32_t flash_addr, const void* data, uint32_t len);