mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/spi_flash_exclude_encrypted' into 'master'
esp_partition: disable encrypted reads/writes if flash encryption is disabled See merge request idf/esp-idf!4099
This commit is contained in:
commit
961e433395
@ -241,6 +241,7 @@ esp_err_t esp_partition_read(const esp_partition_t* partition,
|
||||
if (!partition->encrypted) {
|
||||
return spi_flash_read(partition->address + src_offset, dst, size);
|
||||
} else {
|
||||
#if CONFIG_FLASH_ENCRYPTION_ENABLED
|
||||
/* Encrypted partitions need to be read via a cache mapping */
|
||||
const void *buf;
|
||||
spi_flash_mmap_handle_t handle;
|
||||
@ -254,6 +255,9 @@ esp_err_t esp_partition_read(const esp_partition_t* partition,
|
||||
memcpy(dst, buf, size);
|
||||
spi_flash_munmap(handle);
|
||||
return ESP_OK;
|
||||
#else
|
||||
return ESP_ERR_NOT_SUPPORTED;
|
||||
#endif // CONFIG_FLASH_ENCRYPTION_ENABLED
|
||||
}
|
||||
}
|
||||
|
||||
@ -268,10 +272,14 @@ esp_err_t esp_partition_write(const esp_partition_t* partition,
|
||||
return ESP_ERR_INVALID_SIZE;
|
||||
}
|
||||
dst_offset = partition->address + dst_offset;
|
||||
if (partition->encrypted) {
|
||||
return spi_flash_write_encrypted(dst_offset, src, size);
|
||||
} else {
|
||||
if (!partition->encrypted) {
|
||||
return spi_flash_write(dst_offset, src, size);
|
||||
} else {
|
||||
#if CONFIG_FLASH_ENCRYPTION_ENABLED
|
||||
return spi_flash_write_encrypted(dst_offset, src, size);
|
||||
#else
|
||||
return ESP_ERR_NOT_SUPPORTED;
|
||||
#endif // CONFIG_FLASH_ENCRYPTION_ENABLED
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user