xref: /rk3399_ARM-atf/drivers/ti/common/pm/include/ti_devgrps.h (revision 945de0f736703b42f64fbc1256fe1e1ed7749d3d)
1 /*
2  * Copyright (c) 2025-2026 Texas Instruments Incorporated - https://www.ti.com
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*
8  * Device Group Types
9  *
10  * This header defines the device group (devgrp) type and constants used
11  * to categorize and distinguish device groups in power management operations.
12  */
13 
14 #ifndef TI_DEVGRPS_H
15 #define TI_DEVGRPS_H
16 
17 #include <stdint.h>
18 
19 
20 /*
21  * Defines the power domain DEVGRP type. Used in code or data
22  * structures that require distinction of devgrps.
23  */
24 typedef uint8_t devgrp_t;
25 
26 /* SoC defined SYSFW devgrp 00 */
27 #define TI_DEVGRP_00 ((0x01U) << 0U)
28 
29 #endif /* TI_DEVGRPS_H */
30