1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2017-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef CLOCK_DEVICES_H
9 #define CLOCK_DEVICES_H
10 
11 /*!
12  * \brief Clock device indexes.
13  */
14 enum clock_dev_idx {
15     CLOCK_DEV_IDX_BIG,
16     CLOCK_DEV_IDX_LITTLE,
17     CLOCK_DEV_IDX_GPU,
18     CLOCK_DEV_IDX_VPU,
19     CLOCK_DEV_IDX_DPU,
20     CLOCK_DEV_IDX_PIXEL_0,
21     CLOCK_DEV_IDX_PIXEL_1,
22     CLOCK_DEV_IDX_INTERCONNECT,
23     CLOCK_DEV_IDX_COUNT
24 };
25 
26 #endif /* CLOCK_DEVICES_H */
27