mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
63 lines
1.9 KiB
C
63 lines
1.9 KiB
C
// Copyright 2021 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/*******************************************************************************
|
|
* NOTICE
|
|
* The HAL is not public api, don't use in application code.
|
|
* See readme.md in hal/include/hal/readme.md
|
|
******************************************************************************/
|
|
|
|
// The HAL layer for SPI Flash Encryption
|
|
|
|
#include "hal/spi_flash_encrypted_ll.h"
|
|
|
|
/**
|
|
* @brief Enable the flash encryption
|
|
*/
|
|
void spi_flash_encryption_hal_enable(void);
|
|
|
|
/**
|
|
* @brief Disable the flash encryption
|
|
*/
|
|
void spi_flash_encryption_hal_disable(void);
|
|
|
|
/**
|
|
* Prepare flash encryption before operation.
|
|
*
|
|
* @param address The destination address in flash for the write operation.
|
|
* @param buffer Data for programming
|
|
* @param size Size to program.
|
|
*
|
|
* @note address and buffer must be 8-word aligned.
|
|
*/
|
|
void spi_flash_encryption_hal_prepare(uint32_t address, const uint32_t* buffer, uint32_t size);
|
|
|
|
/**
|
|
* @brief flash data encryption operation is done.
|
|
*/
|
|
void spi_flash_encryption_hal_done(void);
|
|
|
|
/**
|
|
* Destroy encrypted result
|
|
*/
|
|
void spi_flash_encryption_hal_destroy(void);
|
|
|
|
/**
|
|
* Check if is qualified to encrypt the buffer
|
|
*
|
|
* @param address the address of written flash partition.
|
|
* @param length Buffer size.
|
|
*/
|
|
bool spi_flash_encryption_hal_check(uint32_t address, uint32_t length);
|