xref: /optee_os/core/include/drivers/clk_qcom.h (revision 594035b1ea9000909b973ffa6aeb842e2fdc9aa3)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2025, Linaro Limited
4  * Copyright (c) 2026, Qualcomm Technologies, Inc. and/or its subsidiaries.
5  */
6 
7 #ifndef _CLK_QCOM_H_
8 #define _CLK_QCOM_H_
9 
10 #include <stdint.h>
11 #include <tee_api_types.h>
12 
13 enum qcom_clk_group {
14 	QCOM_CLKS_WPSS,
15 	QCOM_CLKS_TURING,
16 	QCOM_CLKS_MAX,
17 };
18 
19 TEE_Result qcom_clock_enable(enum qcom_clk_group group);
20 
21 #endif /* _CLK_QCOM_H_ */
22