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