1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2022-2023, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Description:
8  *     Definitions for DVFS module configuration.
9  */
10 
11 #ifndef TC2_DVFS_H
12 #define TC2_DVFS_H
13 
14 enum dvfs_element_idx {
15     DVFS_ELEMENT_IDX_HAYES,
16     DVFS_ELEMENT_IDX_HUNTER,
17     DVFS_ELEMENT_IDX_HUNTER_ELP,
18     DVFS_ELEMENT_IDX_COUNT
19 };
20 
21 #endif /* TC2_DVFS_H */
22