1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2015-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Description:
8  *     SGM775 System Support
9  */
10 
11 #ifndef MOD_SGM775_SYSTEM_H
12 #define MOD_SGM775_SYSTEM_H
13 
14 /*!
15  * \addtogroup GroupSGM775Module SGM775 Product Modules
16  * \{
17  */
18 
19 /*!
20  * \defgroup GroupSGM775System SGM775 System Support
21  *
22  * \{
23  */
24 
25 /*!
26  * \brief API indices.
27  */
28 enum mod_sgm775_system_api_idx {
29     /*! API index for the driver interface of the SYSTEM POWER module */
30     MOD_SGM775_SYSTEM_API_IDX_SYSTEM_POWER_DRIVER,
31 
32     /*! Number of defined APIs */
33     MOD_SGM775_SYSTEM_API_COUNT
34 };
35 
36 /*!
37  * \}
38  */
39 
40 /*!
41  * \}
42  */
43 
44 #endif /* MOD_SGM775_SYSTEM_H */
45