1 /* SPDX-License-Identifier: GPL-2.0
2  *
3  * Copyright (C) 2016-2019 Intel Corporation <www.intel.com>
4  *
5  */
6 
7 #ifndef _CLOCK_MANAGER_SOC64_
8 #define _CLOCK_MANAGER_SOC64_
9 
10 const unsigned int cm_get_osc_clk_hz(void);
11 const unsigned int cm_get_f2s_per_ref_clk_hz(void);
12 const unsigned int cm_get_f2s_sdr_ref_clk_hz(void);
13 const unsigned int cm_get_intosc_clk_hz(void);
14 const unsigned int cm_get_fpga_clk_hz(void);
15 
16 #define CLKMGR_INTOSC_HZ	400000000
17 
18 /* Clock configuration accessors */
19 const struct cm_config * const cm_get_default_config(void);
20 
21 #endif /* _CLOCK_MANAGER_SOC64_ */
22