Line data Source code
1 0 : /*
2 : * SPDX-License-Identifier: Apache-2.0
3 : *
4 : * Copyright (c) 2024 Realtek Semiconductor Corporation, SIBG-SD7
5 : * Author: Lin Yu-Cheng <lin_yu_cheng@realtek.com>
6 : */
7 :
8 : #include <stdint.h>
9 :
10 : #ifndef ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RTS5912_H_
11 : #define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RTS5912_H_
12 :
13 0 : struct rts5912_sccon_subsys {
14 0 : uint32_t clk_grp;
15 0 : uint32_t clk_idx;
16 0 : uint32_t clk_src;
17 0 : uint32_t clk_div;
18 : };
19 :
20 : #endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RTS591X_H_ */
|