1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2021, 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 SCP_TC0_DVFS_H 12 #define SCP_TC0_DVFS_H 13 14 enum dvfs_element_idx { 15 DVFS_ELEMENT_IDX_KLEIN, 16 DVFS_ELEMENT_IDX_MATTERHORN, 17 DVFS_ELEMENT_IDX_MATTERHORN_ELP_ARM, 18 DVFS_ELEMENT_IDX_COUNT 19 }; 20 21 #endif /* SCP_TC0_DVFS_H */ 22