1 /* 2 * Renesas SCP/MCP Software 3 * Copyright (c) 2020-2021, Renesas Electronics Corporation. All rights 4 * reserved. 5 * 6 * SPDX-License-Identifier: BSD-3-Clause 7 */ 8 9 #ifndef RCAR_MFISMH_H 10 #define RCAR_MFISMH_H 11 12 enum rcar_smcmh_device_idx { 13 RCAR_MFISMH_DEVICE_IDX_S, 14 RCAR_MFISMH_DEVICE_IDX_NS_1, 15 RCAR_MFISMH_DEVICE_IDX_NS_2, 16 RCAR_MFISMH_DEVICE_IDX_NS_3, 17 RCAR_MFISMH_DEVICE_IDX_NS_4, 18 RCAR_MFISMH_DEVICE_IDX_COUNT, 19 }; 20 21 #endif /* RCAR_MFISMH_H */ 22