xref: /openbmc/linux/drivers/video/fbdev/via/via_clock.h (revision 58e16d792a6a8c6b750f637a4649967fcac853dc)
1*64b70da0SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2f7018c21STomi Valkeinen /*
3f7018c21STomi Valkeinen  * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
4f7018c21STomi Valkeinen  * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
5f7018c21STomi Valkeinen  * Copyright 2011 Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
6f7018c21STomi Valkeinen  */
7f7018c21STomi Valkeinen /*
8f7018c21STomi Valkeinen  * clock and PLL management functions
9f7018c21STomi Valkeinen  */
10f7018c21STomi Valkeinen 
11f7018c21STomi Valkeinen #ifndef __VIA_CLOCK_H__
12f7018c21STomi Valkeinen #define __VIA_CLOCK_H__
13f7018c21STomi Valkeinen 
14f7018c21STomi Valkeinen #include <linux/types.h>
15f7018c21STomi Valkeinen 
16f7018c21STomi Valkeinen enum via_clksrc {
17f7018c21STomi Valkeinen 	VIA_CLKSRC_X1 = 0,
18f7018c21STomi Valkeinen 	VIA_CLKSRC_TVX1,
19f7018c21STomi Valkeinen 	VIA_CLKSRC_TVPLL,
20f7018c21STomi Valkeinen 	VIA_CLKSRC_DVP1TVCLKR,
21f7018c21STomi Valkeinen 	VIA_CLKSRC_CAP0,
22f7018c21STomi Valkeinen 	VIA_CLKSRC_CAP1,
23f7018c21STomi Valkeinen };
24f7018c21STomi Valkeinen 
25f7018c21STomi Valkeinen struct via_pll_config {
26f7018c21STomi Valkeinen 	u16 multiplier;
27f7018c21STomi Valkeinen 	u8 divisor;
28f7018c21STomi Valkeinen 	u8 rshift;
29f7018c21STomi Valkeinen };
30f7018c21STomi Valkeinen 
31f7018c21STomi Valkeinen struct via_clock {
32f7018c21STomi Valkeinen 	void (*set_primary_clock_state)(u8 state);
33f7018c21STomi Valkeinen 	void (*set_primary_clock_source)(enum via_clksrc src, bool use_pll);
34f7018c21STomi Valkeinen 	void (*set_primary_pll_state)(u8 state);
35f7018c21STomi Valkeinen 	void (*set_primary_pll)(struct via_pll_config config);
36f7018c21STomi Valkeinen 
37f7018c21STomi Valkeinen 	void (*set_secondary_clock_state)(u8 state);
38f7018c21STomi Valkeinen 	void (*set_secondary_clock_source)(enum via_clksrc src, bool use_pll);
39f7018c21STomi Valkeinen 	void (*set_secondary_pll_state)(u8 state);
40f7018c21STomi Valkeinen 	void (*set_secondary_pll)(struct via_pll_config config);
41f7018c21STomi Valkeinen 
42f7018c21STomi Valkeinen 	void (*set_engine_pll_state)(u8 state);
43f7018c21STomi Valkeinen 	void (*set_engine_pll)(struct via_pll_config config);
44f7018c21STomi Valkeinen };
45f7018c21STomi Valkeinen 
46f7018c21STomi Valkeinen 
get_pll_internal_frequency(u32 ref_freq,struct via_pll_config pll)47f7018c21STomi Valkeinen static inline u32 get_pll_internal_frequency(u32 ref_freq,
48f7018c21STomi Valkeinen 	struct via_pll_config pll)
49f7018c21STomi Valkeinen {
50f7018c21STomi Valkeinen 	return ref_freq / pll.divisor * pll.multiplier;
51f7018c21STomi Valkeinen }
52f7018c21STomi Valkeinen 
get_pll_output_frequency(u32 ref_freq,struct via_pll_config pll)53f7018c21STomi Valkeinen static inline u32 get_pll_output_frequency(u32 ref_freq,
54f7018c21STomi Valkeinen 	struct via_pll_config pll)
55f7018c21STomi Valkeinen {
56f7018c21STomi Valkeinen 	return get_pll_internal_frequency(ref_freq, pll) >> pll.rshift;
57f7018c21STomi Valkeinen }
58f7018c21STomi Valkeinen 
59f7018c21STomi Valkeinen void via_clock_init(struct via_clock *clock, int gfx_chip);
60f7018c21STomi Valkeinen 
61f7018c21STomi Valkeinen #endif /* __VIA_CLOCK_H__ */
62