xref: /rk3399_ARM-atf/include/plat/common/plat_lfa.h (revision f647f56123002e14eaf3d2c1b127431ee376a141)
1 /*
2  * Copyright (c) 2025, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PLAT_LFA_H
8 #define PLAT_LFA_H
9 
10 #include <tools_share/uuid.h>
11 
12 typedef struct plat_lfa_component_info {
13 	const uint32_t lfa_component_id;
14 	const uuid_t uuid;
15 } plat_lfa_component_info_t;
16 
17 uint32_t plat_lfa_get_components(plat_lfa_component_info_t **components);
18 
19 #endif /* PLAT_LFA_H */
20