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 mock PSU module configuration. 9 */ 10 11 #ifndef SCP_TC0_MOCK_PSU_H 12 #define SCP_TC0_MOCK_PSU_H 13 14 enum mock_psu_id { 15 MOCK_PSU_ELEMENT_IDX_KLEIN, 16 MOCK_PSU_ELEMENT_IDX_MATTERHORN, 17 MOCK_PSU_ELEMENT_IDX_MATTERHORN_ELP_ARM, 18 MOCK_PSU_ELEMENT_IDX_COUNT, 19 }; 20 21 #endif /* SCP_TC0_MOCK_PSU_H */ 22