blob: 48f7c8efcafd485d0aaf9c31ade26153f4c4fcf3 [file] [log] [blame]
Manish V Badarkhe3bb52662025-05-30 13:21:21 +01001/*
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
12typedef struct plat_lfa_component_info {
13 const uint32_t lfa_component_id;
14 const uuid_t uuid;
15} plat_lfa_component_info_t;
16
17uint32_t plat_lfa_get_components(plat_lfa_component_info_t **components);
18
19#endif /* PLAT_LFA_H */