1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 * 7 * Description: 8 * MHU module device indexes. 9 */ 10 11 #ifndef SCP_SGI575_MHU_H 12 #define SCP_SGI575_MHU_H 13 14 enum scp_sgi575_mhu_device_idx { 15 SCP_SGI575_MHU_DEVICE_IDX_SCP_AP_S, 16 SCP_SGI575_MHU_DEVICE_IDX_SCP_AP_NS, 17 SCP_SGI575_MHU_DEVICE_IDX_COUNT 18 }; 19 20 #endif /* SCP_SGI575_MHU_H */ 21