mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
333553caf2
fix(hal/include): fix header violations in hal component fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Move type definitions from `xx_hal.h` to `xx_types.h` fix(hal/include): Add comment for a far away `#endif` fix(hal/include): change scope for cpp guard ci: Remove components/hal/ comment from public headers check exceptions Add missing include macro sdkconfig.h for header files Add missing include macro stdbool.h for header files Add missing include macro stdint.h for header files Add missing capability guard macro for header files Add missing cpp guard macro for header files Remove some useless include macros Add some missing `inline` attribute for functions defined in header files Remove components/hal/ from public headers check exceptions fix(hal/include): fix invalid licenses fix(hal/include): fix invalid licenses fix(hal/include): add missing soc_caps.h fix(hal): include soc_caps.h before cap macro is used fix(hal): Remove unnecessary target check fix(hal): fix header and macro problems Add missing include macro Remove loop dependency in hal Add comment for far-away endif fix(hal): Add missing soc_caps.h ci: update check_copyright_ignore.txt Change the sequence of `#include` macro, cpp guard macro Change the wrap scope of capacity macro fix(hal): Change position of C++ guard to pass test
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// This part is put in iram.
|
|
|
|
#include "hal/spi_flash_encrypted_ll.h"
|
|
|
|
void spi_flash_encryption_hal_enable(void)
|
|
{
|
|
spi_flash_encrypt_ll_enable();
|
|
#if CONFIG_IDF_TARGET_ESP32S2
|
|
spi_flash_encrypt_ll_aes_accelerator_enable();
|
|
#endif //CONFIG_IDF_TARGET_ESP32S2
|
|
#if !CONFIG_IDF_TARGET_ESP32
|
|
spi_flash_encrypt_ll_type(FLASH_ENCRYPTION_MANU);
|
|
#endif // !CONFIG_IDF_TARGET_ESP32
|
|
}
|
|
|
|
void spi_flash_encryption_hal_disable(void)
|
|
{
|
|
spi_flash_encrypt_ll_disable();
|
|
}
|
|
|
|
void spi_flash_encryption_hal_prepare(uint32_t address, const uint32_t* buffer, uint32_t size)
|
|
{
|
|
#if !CONFIG_IDF_TARGET_ESP32
|
|
spi_flash_encrypt_ll_buffer_length(size);
|
|
#endif // !CONFIG_IDF_TARGET_ESP32
|
|
spi_flash_encrypt_ll_address_save(address);
|
|
spi_flash_encrypt_ll_plaintext_save(address, buffer, size);
|
|
spi_flash_encrypt_ll_calculate_start();
|
|
}
|
|
|
|
void spi_flash_encryption_hal_done(void)
|
|
{
|
|
spi_flash_encrypt_ll_calculate_wait_idle();
|
|
spi_flash_encrypt_ll_done();
|
|
}
|
|
|
|
void spi_flash_encryption_hal_destroy(void)
|
|
{
|
|
spi_flash_encrypt_ll_destroy();
|
|
}
|
|
|
|
bool spi_flash_encryption_hal_check(uint32_t address, uint32_t length)
|
|
{
|
|
return spi_flash_encrypt_ll_check(address, length);
|
|
}
|