mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

Introduced IO policies management through the trusted boot firmware config device tree for UUID references. Change-Id: Ibeeabede51b0514ebba26dbbdae587363b2aa0a7 Signed-off-by: Lionel Debieve <lionel.debieve@st.com> Signed-off-by: Yann Gautier <yann.gautier@foss.st.com>
23 lines
507 B
C
23 lines
507 B
C
/*
|
|
* Copyright (c) 2021, 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 io_block_spec_t image_block_spec;
|
|
|
|
/* Function declarations */
|
|
int open_fip(const uintptr_t spec);
|
|
int open_storage(const uintptr_t spec);
|
|
|
|
#endif /* STM32MP_IO_STORAGE_H */
|