xref: /linux/drivers/gpu/drm/sun4i/sun8i_tcon_top.h (revision 3a2c4d55e32ad65efebdb6de44eef3bfa08bb49d)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /* Copyright (c) 2018 Jernej Skrabec <jernej.skrabec@siol.net> */
3 
4 #ifndef _SUN8I_TCON_TOP_H_
5 #define _SUN8I_TCON_TOP_H_
6 
7 #include <linux/clk.h>
8 #include <linux/clk-provider.h>
9 #include <linux/reset.h>
10 #include <linux/spinlock.h>
11 
12 #define TCON_TOP_TCON_TV_SETUP_REG	0x00
13 
14 #define TCON_TOP_PORT_SEL_REG		0x1C
15 #define TCON_TOP_PORT_DE0_MSK			GENMASK(1, 0)
16 #define TCON_TOP_PORT_DE1_MSK			GENMASK(5, 4)
17 #define TCON_TOP_PORT_TCON_NUM			4
18 
19 #define TCON_TOP_MIXER0_OUT_PORT		1
20 #define TCON_TOP_MIXER1_OUT_PORT		3
21 
22 #define TCON_TOP_GATE_SRC_REG		0x20
23 #define TCON_TOP_HDMI_SRC_MSK			GENMASK(29, 28)
24 #define TCON_TOP_TCON_TV1_GATE			24
25 #define TCON_TOP_TCON_TV0_GATE			20
26 #define TCON_TOP_TCON_DSI_GATE			16
27 
28 #define CLK_NUM					3
29 
30 struct sun8i_tcon_top {
31 	struct clk			*bus;
32 	struct clk_hw_onecell_data	*clk_data;
33 	void __iomem			*regs;
34 	struct reset_control		*rst;
35 
36 	unsigned int			tcon_map;
37 
38 	/*
39 	 * spinlock is used to synchronize access to same
40 	 * register where multiple clock gates can be set.
41 	 */
42 	spinlock_t			reg_lock;
43 };
44 
45 extern const struct of_device_id sun8i_tcon_top_of_table[];
46 
47 int sun8i_tcon_top_set_hdmi_src(struct device *dev, int tcon);
48 int sun8i_tcon_top_de_config(struct device *dev, int mixer, int tcon);
49 
50 #endif /* _SUN8I_TCON_TOP_H_ */
51