mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-23 15:31:09 +02:00
Add the decryption support for STM32MP1 binaries. Decryption is limited to the BL32 loaded images. Limitation: STM32MP15 doesn't support the feature. Change-Id: I96800bac7b22109f8471eb2953fc0dc269fc4fd1 Signed-off-by: Lionel Debieve <lionel.debieve@foss.st.com>
28 lines
624 B
C
28 lines
624 B
C
/*
|
|
* Copyright (c) 2021-2022, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef STM32MP_IO_STORAGE_H
|
|
#define STM32MP_IO_STORAGE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <drivers/io/io_storage.h>
|
|
|
|
/* IO devices handle */
|
|
extern uintptr_t storage_dev_handle;
|
|
extern uintptr_t fip_dev_handle;
|
|
extern uintptr_t enc_dev_handle;
|
|
|
|
extern io_block_spec_t image_block_spec;
|
|
|
|
/* Function declarations */
|
|
int open_fip(const uintptr_t spec);
|
|
#ifndef DECRYPTION_SUPPORT_none
|
|
int open_enc_fip(const uintptr_t spec);
|
|
#endif
|
|
int open_storage(const uintptr_t spec);
|
|
|
|
#endif /* STM32MP_IO_STORAGE_H */
|