xref: /openbmc/linux/drivers/gpu/drm/tegra/sor.c (revision 618dee3941a43d8d4f762a7af99bcb59baba2bc5)
16b6b6042SThierry Reding /*
26b6b6042SThierry Reding  * Copyright (C) 2013 NVIDIA Corporation
36b6b6042SThierry Reding  *
46b6b6042SThierry Reding  * This program is free software; you can redistribute it and/or modify
56b6b6042SThierry Reding  * it under the terms of the GNU General Public License version 2 as
66b6b6042SThierry Reding  * published by the Free Software Foundation.
76b6b6042SThierry Reding  */
86b6b6042SThierry Reding 
96b6b6042SThierry Reding #include <linux/clk.h>
10b299221cSThierry Reding #include <linux/clk-provider.h>
11a82752e1SThierry Reding #include <linux/debugfs.h>
126fad8f66SThierry Reding #include <linux/gpio.h>
136b6b6042SThierry Reding #include <linux/io.h>
14459cc2c6SThierry Reding #include <linux/of_device.h>
156b6b6042SThierry Reding #include <linux/platform_device.h>
16aaff8bd2SThierry Reding #include <linux/pm_runtime.h>
17459cc2c6SThierry Reding #include <linux/regulator/consumer.h>
186b6b6042SThierry Reding #include <linux/reset.h>
19306a7f91SThierry Reding 
207232398aSThierry Reding #include <soc/tegra/pmc.h>
216b6b6042SThierry Reding 
224aa3df71SThierry Reding #include <drm/drm_atomic_helper.h>
236b6b6042SThierry Reding #include <drm/drm_dp_helper.h>
246fad8f66SThierry Reding #include <drm/drm_panel.h>
256b6b6042SThierry Reding 
266b6b6042SThierry Reding #include "dc.h"
276b6b6042SThierry Reding #include "drm.h"
286b6b6042SThierry Reding #include "sor.h"
296b6b6042SThierry Reding 
30459cc2c6SThierry Reding #define SOR_REKEY 0x38
31459cc2c6SThierry Reding 
32459cc2c6SThierry Reding struct tegra_sor_hdmi_settings {
33459cc2c6SThierry Reding 	unsigned long frequency;
34459cc2c6SThierry Reding 
35459cc2c6SThierry Reding 	u8 vcocap;
36459cc2c6SThierry Reding 	u8 ichpmp;
37459cc2c6SThierry Reding 	u8 loadadj;
38459cc2c6SThierry Reding 	u8 termadj;
39459cc2c6SThierry Reding 	u8 tx_pu;
40459cc2c6SThierry Reding 	u8 bg_vref;
41459cc2c6SThierry Reding 
42459cc2c6SThierry Reding 	u8 drive_current[4];
43459cc2c6SThierry Reding 	u8 preemphasis[4];
44459cc2c6SThierry Reding };
45459cc2c6SThierry Reding 
46459cc2c6SThierry Reding #if 1
47459cc2c6SThierry Reding static const struct tegra_sor_hdmi_settings tegra210_sor_hdmi_defaults[] = {
48459cc2c6SThierry Reding 	{
49459cc2c6SThierry Reding 		.frequency = 54000000,
50459cc2c6SThierry Reding 		.vcocap = 0x0,
51459cc2c6SThierry Reding 		.ichpmp = 0x1,
52459cc2c6SThierry Reding 		.loadadj = 0x3,
53459cc2c6SThierry Reding 		.termadj = 0x9,
54459cc2c6SThierry Reding 		.tx_pu = 0x10,
55459cc2c6SThierry Reding 		.bg_vref = 0x8,
56459cc2c6SThierry Reding 		.drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
57459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x00, 0x00, 0x00 },
58459cc2c6SThierry Reding 	}, {
59459cc2c6SThierry Reding 		.frequency = 75000000,
60459cc2c6SThierry Reding 		.vcocap = 0x3,
61459cc2c6SThierry Reding 		.ichpmp = 0x1,
62459cc2c6SThierry Reding 		.loadadj = 0x3,
63459cc2c6SThierry Reding 		.termadj = 0x9,
64459cc2c6SThierry Reding 		.tx_pu = 0x40,
65459cc2c6SThierry Reding 		.bg_vref = 0x8,
66459cc2c6SThierry Reding 		.drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
67459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x00, 0x00, 0x00 },
68459cc2c6SThierry Reding 	}, {
69459cc2c6SThierry Reding 		.frequency = 150000000,
70459cc2c6SThierry Reding 		.vcocap = 0x3,
71459cc2c6SThierry Reding 		.ichpmp = 0x1,
72459cc2c6SThierry Reding 		.loadadj = 0x3,
73459cc2c6SThierry Reding 		.termadj = 0x9,
74459cc2c6SThierry Reding 		.tx_pu = 0x66,
75459cc2c6SThierry Reding 		.bg_vref = 0x8,
76459cc2c6SThierry Reding 		.drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
77459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x00, 0x00, 0x00 },
78459cc2c6SThierry Reding 	}, {
79459cc2c6SThierry Reding 		.frequency = 300000000,
80459cc2c6SThierry Reding 		.vcocap = 0x3,
81459cc2c6SThierry Reding 		.ichpmp = 0x1,
82459cc2c6SThierry Reding 		.loadadj = 0x3,
83459cc2c6SThierry Reding 		.termadj = 0x9,
84459cc2c6SThierry Reding 		.tx_pu = 0x66,
85459cc2c6SThierry Reding 		.bg_vref = 0xa,
86459cc2c6SThierry Reding 		.drive_current = { 0x33, 0x3f, 0x3f, 0x3f },
87459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x17, 0x17, 0x17 },
88459cc2c6SThierry Reding 	}, {
89459cc2c6SThierry Reding 		.frequency = 600000000,
90459cc2c6SThierry Reding 		.vcocap = 0x3,
91459cc2c6SThierry Reding 		.ichpmp = 0x1,
92459cc2c6SThierry Reding 		.loadadj = 0x3,
93459cc2c6SThierry Reding 		.termadj = 0x9,
94459cc2c6SThierry Reding 		.tx_pu = 0x66,
95459cc2c6SThierry Reding 		.bg_vref = 0x8,
96459cc2c6SThierry Reding 		.drive_current = { 0x33, 0x3f, 0x3f, 0x3f },
97459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x00, 0x00, 0x00 },
98459cc2c6SThierry Reding 	},
99459cc2c6SThierry Reding };
100459cc2c6SThierry Reding #else
101459cc2c6SThierry Reding static const struct tegra_sor_hdmi_settings tegra210_sor_hdmi_defaults[] = {
102459cc2c6SThierry Reding 	{
103459cc2c6SThierry Reding 		.frequency = 75000000,
104459cc2c6SThierry Reding 		.vcocap = 0x3,
105459cc2c6SThierry Reding 		.ichpmp = 0x1,
106459cc2c6SThierry Reding 		.loadadj = 0x3,
107459cc2c6SThierry Reding 		.termadj = 0x9,
108459cc2c6SThierry Reding 		.tx_pu = 0x40,
109459cc2c6SThierry Reding 		.bg_vref = 0x8,
110459cc2c6SThierry Reding 		.drive_current = { 0x29, 0x29, 0x29, 0x29 },
111459cc2c6SThierry Reding 		.preemphasis = { 0x00, 0x00, 0x00, 0x00 },
112459cc2c6SThierry Reding 	}, {
113459cc2c6SThierry Reding 		.frequency = 150000000,
114459cc2c6SThierry Reding 		.vcocap = 0x3,
115459cc2c6SThierry Reding 		.ichpmp = 0x1,
116459cc2c6SThierry Reding 		.loadadj = 0x3,
117459cc2c6SThierry Reding 		.termadj = 0x9,
118459cc2c6SThierry Reding 		.tx_pu = 0x66,
119459cc2c6SThierry Reding 		.bg_vref = 0x8,
120459cc2c6SThierry Reding 		.drive_current = { 0x30, 0x37, 0x37, 0x37 },
121459cc2c6SThierry Reding 		.preemphasis = { 0x01, 0x02, 0x02, 0x02 },
122459cc2c6SThierry Reding 	}, {
123459cc2c6SThierry Reding 		.frequency = 300000000,
124459cc2c6SThierry Reding 		.vcocap = 0x3,
125459cc2c6SThierry Reding 		.ichpmp = 0x6,
126459cc2c6SThierry Reding 		.loadadj = 0x3,
127459cc2c6SThierry Reding 		.termadj = 0x9,
128459cc2c6SThierry Reding 		.tx_pu = 0x66,
129459cc2c6SThierry Reding 		.bg_vref = 0xf,
130459cc2c6SThierry Reding 		.drive_current = { 0x30, 0x37, 0x37, 0x37 },
131459cc2c6SThierry Reding 		.preemphasis = { 0x10, 0x3e, 0x3e, 0x3e },
132459cc2c6SThierry Reding 	}, {
133459cc2c6SThierry Reding 		.frequency = 600000000,
134459cc2c6SThierry Reding 		.vcocap = 0x3,
135459cc2c6SThierry Reding 		.ichpmp = 0xa,
136459cc2c6SThierry Reding 		.loadadj = 0x3,
137459cc2c6SThierry Reding 		.termadj = 0xb,
138459cc2c6SThierry Reding 		.tx_pu = 0x66,
139459cc2c6SThierry Reding 		.bg_vref = 0xe,
140459cc2c6SThierry Reding 		.drive_current = { 0x35, 0x3e, 0x3e, 0x3e },
141459cc2c6SThierry Reding 		.preemphasis = { 0x02, 0x3f, 0x3f, 0x3f },
142459cc2c6SThierry Reding 	},
143459cc2c6SThierry Reding };
144459cc2c6SThierry Reding #endif
145459cc2c6SThierry Reding 
146459cc2c6SThierry Reding struct tegra_sor_soc {
147459cc2c6SThierry Reding 	bool supports_edp;
148459cc2c6SThierry Reding 	bool supports_lvds;
149459cc2c6SThierry Reding 	bool supports_hdmi;
150459cc2c6SThierry Reding 	bool supports_dp;
151459cc2c6SThierry Reding 
152459cc2c6SThierry Reding 	const struct tegra_sor_hdmi_settings *settings;
153459cc2c6SThierry Reding 	unsigned int num_settings;
154459cc2c6SThierry Reding };
155459cc2c6SThierry Reding 
156459cc2c6SThierry Reding struct tegra_sor;
157459cc2c6SThierry Reding 
158459cc2c6SThierry Reding struct tegra_sor_ops {
159459cc2c6SThierry Reding 	const char *name;
160459cc2c6SThierry Reding 	int (*probe)(struct tegra_sor *sor);
161459cc2c6SThierry Reding 	int (*remove)(struct tegra_sor *sor);
162459cc2c6SThierry Reding };
163459cc2c6SThierry Reding 
1646b6b6042SThierry Reding struct tegra_sor {
1656b6b6042SThierry Reding 	struct host1x_client client;
1666b6b6042SThierry Reding 	struct tegra_output output;
1676b6b6042SThierry Reding 	struct device *dev;
1686b6b6042SThierry Reding 
169459cc2c6SThierry Reding 	const struct tegra_sor_soc *soc;
1706b6b6042SThierry Reding 	void __iomem *regs;
1716b6b6042SThierry Reding 
1726b6b6042SThierry Reding 	struct reset_control *rst;
1736b6b6042SThierry Reding 	struct clk *clk_parent;
174b299221cSThierry Reding 	struct clk *clk_brick;
1756b6b6042SThierry Reding 	struct clk *clk_safe;
176*618dee39SThierry Reding 	struct clk *clk_src;
1776b6b6042SThierry Reding 	struct clk *clk_dp;
1786b6b6042SThierry Reding 	struct clk *clk;
1796b6b6042SThierry Reding 
1809542c237SThierry Reding 	struct drm_dp_aux *aux;
1816b6b6042SThierry Reding 
182dab16336SThierry Reding 	struct drm_info_list *debugfs_files;
183dab16336SThierry Reding 	struct drm_minor *minor;
184a82752e1SThierry Reding 	struct dentry *debugfs;
185459cc2c6SThierry Reding 
186459cc2c6SThierry Reding 	const struct tegra_sor_ops *ops;
187459cc2c6SThierry Reding 
188459cc2c6SThierry Reding 	/* for HDMI 2.0 */
189459cc2c6SThierry Reding 	struct tegra_sor_hdmi_settings *settings;
190459cc2c6SThierry Reding 	unsigned int num_settings;
191459cc2c6SThierry Reding 
192459cc2c6SThierry Reding 	struct regulator *avdd_io_supply;
193459cc2c6SThierry Reding 	struct regulator *vdd_pll_supply;
194459cc2c6SThierry Reding 	struct regulator *hdmi_supply;
1956b6b6042SThierry Reding };
1966b6b6042SThierry Reding 
197c31efa7aSThierry Reding struct tegra_sor_state {
198c31efa7aSThierry Reding 	struct drm_connector_state base;
199c31efa7aSThierry Reding 
200c31efa7aSThierry Reding 	unsigned int bpc;
201c31efa7aSThierry Reding };
202c31efa7aSThierry Reding 
203c31efa7aSThierry Reding static inline struct tegra_sor_state *
204c31efa7aSThierry Reding to_sor_state(struct drm_connector_state *state)
205c31efa7aSThierry Reding {
206c31efa7aSThierry Reding 	return container_of(state, struct tegra_sor_state, base);
207c31efa7aSThierry Reding }
208c31efa7aSThierry Reding 
20934fa183bSThierry Reding struct tegra_sor_config {
21034fa183bSThierry Reding 	u32 bits_per_pixel;
21134fa183bSThierry Reding 
21234fa183bSThierry Reding 	u32 active_polarity;
21334fa183bSThierry Reding 	u32 active_count;
21434fa183bSThierry Reding 	u32 tu_size;
21534fa183bSThierry Reding 	u32 active_frac;
21634fa183bSThierry Reding 	u32 watermark;
2177890b576SThierry Reding 
2187890b576SThierry Reding 	u32 hblank_symbols;
2197890b576SThierry Reding 	u32 vblank_symbols;
22034fa183bSThierry Reding };
22134fa183bSThierry Reding 
2226b6b6042SThierry Reding static inline struct tegra_sor *
2236b6b6042SThierry Reding host1x_client_to_sor(struct host1x_client *client)
2246b6b6042SThierry Reding {
2256b6b6042SThierry Reding 	return container_of(client, struct tegra_sor, client);
2266b6b6042SThierry Reding }
2276b6b6042SThierry Reding 
2286b6b6042SThierry Reding static inline struct tegra_sor *to_sor(struct tegra_output *output)
2296b6b6042SThierry Reding {
2306b6b6042SThierry Reding 	return container_of(output, struct tegra_sor, output);
2316b6b6042SThierry Reding }
2326b6b6042SThierry Reding 
23328fe2076SThierry Reding static inline u32 tegra_sor_readl(struct tegra_sor *sor, unsigned long offset)
2346b6b6042SThierry Reding {
2356b6b6042SThierry Reding 	return readl(sor->regs + (offset << 2));
2366b6b6042SThierry Reding }
2376b6b6042SThierry Reding 
23828fe2076SThierry Reding static inline void tegra_sor_writel(struct tegra_sor *sor, u32 value,
2396b6b6042SThierry Reding 				    unsigned long offset)
2406b6b6042SThierry Reding {
2416b6b6042SThierry Reding 	writel(value, sor->regs + (offset << 2));
2426b6b6042SThierry Reding }
2436b6b6042SThierry Reding 
24425bb2cecSThierry Reding static int tegra_sor_set_parent_clock(struct tegra_sor *sor, struct clk *parent)
24525bb2cecSThierry Reding {
24625bb2cecSThierry Reding 	int err;
24725bb2cecSThierry Reding 
24825bb2cecSThierry Reding 	clk_disable_unprepare(sor->clk);
24925bb2cecSThierry Reding 
25025bb2cecSThierry Reding 	err = clk_set_parent(sor->clk, parent);
25125bb2cecSThierry Reding 	if (err < 0)
25225bb2cecSThierry Reding 		return err;
25325bb2cecSThierry Reding 
25425bb2cecSThierry Reding 	err = clk_prepare_enable(sor->clk);
25525bb2cecSThierry Reding 	if (err < 0)
25625bb2cecSThierry Reding 		return err;
25725bb2cecSThierry Reding 
25825bb2cecSThierry Reding 	return 0;
25925bb2cecSThierry Reding }
26025bb2cecSThierry Reding 
261b299221cSThierry Reding struct tegra_clk_sor_brick {
262b299221cSThierry Reding 	struct clk_hw hw;
263b299221cSThierry Reding 	struct tegra_sor *sor;
264b299221cSThierry Reding };
265b299221cSThierry Reding 
266b299221cSThierry Reding static inline struct tegra_clk_sor_brick *to_brick(struct clk_hw *hw)
267b299221cSThierry Reding {
268b299221cSThierry Reding 	return container_of(hw, struct tegra_clk_sor_brick, hw);
269b299221cSThierry Reding }
270b299221cSThierry Reding 
271b299221cSThierry Reding static const char * const tegra_clk_sor_brick_parents[] = {
272b299221cSThierry Reding 	"pll_d2_out0", "pll_dp"
273b299221cSThierry Reding };
274b299221cSThierry Reding 
275b299221cSThierry Reding static int tegra_clk_sor_brick_set_parent(struct clk_hw *hw, u8 index)
276b299221cSThierry Reding {
277b299221cSThierry Reding 	struct tegra_clk_sor_brick *brick = to_brick(hw);
278b299221cSThierry Reding 	struct tegra_sor *sor = brick->sor;
279b299221cSThierry Reding 	u32 value;
280b299221cSThierry Reding 
281b299221cSThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
282b299221cSThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
283b299221cSThierry Reding 
284b299221cSThierry Reding 	switch (index) {
285b299221cSThierry Reding 	case 0:
286b299221cSThierry Reding 		value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK;
287b299221cSThierry Reding 		break;
288b299221cSThierry Reding 
289b299221cSThierry Reding 	case 1:
290b299221cSThierry Reding 		value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK;
291b299221cSThierry Reding 		break;
292b299221cSThierry Reding 	}
293b299221cSThierry Reding 
294b299221cSThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
295b299221cSThierry Reding 
296b299221cSThierry Reding 	return 0;
297b299221cSThierry Reding }
298b299221cSThierry Reding 
299b299221cSThierry Reding static u8 tegra_clk_sor_brick_get_parent(struct clk_hw *hw)
300b299221cSThierry Reding {
301b299221cSThierry Reding 	struct tegra_clk_sor_brick *brick = to_brick(hw);
302b299221cSThierry Reding 	struct tegra_sor *sor = brick->sor;
303b299221cSThierry Reding 	u8 parent = U8_MAX;
304b299221cSThierry Reding 	u32 value;
305b299221cSThierry Reding 
306b299221cSThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
307b299221cSThierry Reding 
308b299221cSThierry Reding 	switch (value & SOR_CLK_CNTRL_DP_CLK_SEL_MASK) {
309b299221cSThierry Reding 	case SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK:
310b299221cSThierry Reding 	case SOR_CLK_CNTRL_DP_CLK_SEL_DIFF_PCLK:
311b299221cSThierry Reding 		parent = 0;
312b299221cSThierry Reding 		break;
313b299221cSThierry Reding 
314b299221cSThierry Reding 	case SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK:
315b299221cSThierry Reding 	case SOR_CLK_CNTRL_DP_CLK_SEL_DIFF_DPCLK:
316b299221cSThierry Reding 		parent = 1;
317b299221cSThierry Reding 		break;
318b299221cSThierry Reding 	}
319b299221cSThierry Reding 
320b299221cSThierry Reding 	return parent;
321b299221cSThierry Reding }
322b299221cSThierry Reding 
323b299221cSThierry Reding static const struct clk_ops tegra_clk_sor_brick_ops = {
324b299221cSThierry Reding 	.set_parent = tegra_clk_sor_brick_set_parent,
325b299221cSThierry Reding 	.get_parent = tegra_clk_sor_brick_get_parent,
326b299221cSThierry Reding };
327b299221cSThierry Reding 
328b299221cSThierry Reding static struct clk *tegra_clk_sor_brick_register(struct tegra_sor *sor,
329b299221cSThierry Reding 						const char *name)
330b299221cSThierry Reding {
331b299221cSThierry Reding 	struct tegra_clk_sor_brick *brick;
332b299221cSThierry Reding 	struct clk_init_data init;
333b299221cSThierry Reding 	struct clk *clk;
334b299221cSThierry Reding 
335b299221cSThierry Reding 	brick = devm_kzalloc(sor->dev, sizeof(*brick), GFP_KERNEL);
336b299221cSThierry Reding 	if (!brick)
337b299221cSThierry Reding 		return ERR_PTR(-ENOMEM);
338b299221cSThierry Reding 
339b299221cSThierry Reding 	brick->sor = sor;
340b299221cSThierry Reding 
341b299221cSThierry Reding 	init.name = name;
342b299221cSThierry Reding 	init.flags = 0;
343b299221cSThierry Reding 	init.parent_names = tegra_clk_sor_brick_parents;
344b299221cSThierry Reding 	init.num_parents = ARRAY_SIZE(tegra_clk_sor_brick_parents);
345b299221cSThierry Reding 	init.ops = &tegra_clk_sor_brick_ops;
346b299221cSThierry Reding 
347b299221cSThierry Reding 	brick->hw.init = &init;
348b299221cSThierry Reding 
349b299221cSThierry Reding 	clk = devm_clk_register(sor->dev, &brick->hw);
350b299221cSThierry Reding 	if (IS_ERR(clk))
351b299221cSThierry Reding 		kfree(brick);
352b299221cSThierry Reding 
353b299221cSThierry Reding 	return clk;
354b299221cSThierry Reding }
355b299221cSThierry Reding 
3566b6b6042SThierry Reding static int tegra_sor_dp_train_fast(struct tegra_sor *sor,
3576b6b6042SThierry Reding 				   struct drm_dp_link *link)
3586b6b6042SThierry Reding {
3596b6b6042SThierry Reding 	unsigned int i;
3606b6b6042SThierry Reding 	u8 pattern;
36128fe2076SThierry Reding 	u32 value;
3626b6b6042SThierry Reding 	int err;
3636b6b6042SThierry Reding 
3646b6b6042SThierry Reding 	/* setup lane parameters */
3656b6b6042SThierry Reding 	value = SOR_LANE_DRIVE_CURRENT_LANE3(0x40) |
3666b6b6042SThierry Reding 		SOR_LANE_DRIVE_CURRENT_LANE2(0x40) |
3676b6b6042SThierry Reding 		SOR_LANE_DRIVE_CURRENT_LANE1(0x40) |
3686b6b6042SThierry Reding 		SOR_LANE_DRIVE_CURRENT_LANE0(0x40);
369a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_DRIVE_CURRENT0);
3706b6b6042SThierry Reding 
3716b6b6042SThierry Reding 	value = SOR_LANE_PREEMPHASIS_LANE3(0x0f) |
3726b6b6042SThierry Reding 		SOR_LANE_PREEMPHASIS_LANE2(0x0f) |
3736b6b6042SThierry Reding 		SOR_LANE_PREEMPHASIS_LANE1(0x0f) |
3746b6b6042SThierry Reding 		SOR_LANE_PREEMPHASIS_LANE0(0x0f);
375a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_PREEMPHASIS0);
3766b6b6042SThierry Reding 
377a9a9e4fdSThierry Reding 	value = SOR_LANE_POSTCURSOR_LANE3(0x00) |
378a9a9e4fdSThierry Reding 		SOR_LANE_POSTCURSOR_LANE2(0x00) |
379a9a9e4fdSThierry Reding 		SOR_LANE_POSTCURSOR_LANE1(0x00) |
380a9a9e4fdSThierry Reding 		SOR_LANE_POSTCURSOR_LANE0(0x00);
381a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_POSTCURSOR0);
3826b6b6042SThierry Reding 
3836b6b6042SThierry Reding 	/* disable LVDS mode */
3846b6b6042SThierry Reding 	tegra_sor_writel(sor, 0, SOR_LVDS);
3856b6b6042SThierry Reding 
386a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
3876b6b6042SThierry Reding 	value |= SOR_DP_PADCTL_TX_PU_ENABLE;
3886b6b6042SThierry Reding 	value &= ~SOR_DP_PADCTL_TX_PU_MASK;
3896b6b6042SThierry Reding 	value |= SOR_DP_PADCTL_TX_PU(2); /* XXX: don't hardcode? */
390a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
3916b6b6042SThierry Reding 
392a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
3936b6b6042SThierry Reding 	value |= SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 |
3946b6b6042SThierry Reding 		 SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0;
395a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
3966b6b6042SThierry Reding 
3976b6b6042SThierry Reding 	usleep_range(10, 100);
3986b6b6042SThierry Reding 
399a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
4006b6b6042SThierry Reding 	value &= ~(SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 |
4016b6b6042SThierry Reding 		   SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0);
402a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
4036b6b6042SThierry Reding 
4049542c237SThierry Reding 	err = drm_dp_aux_prepare(sor->aux, DP_SET_ANSI_8B10B);
4056b6b6042SThierry Reding 	if (err < 0)
4066b6b6042SThierry Reding 		return err;
4076b6b6042SThierry Reding 
4086b6b6042SThierry Reding 	for (i = 0, value = 0; i < link->num_lanes; i++) {
4096b6b6042SThierry Reding 		unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
4106b6b6042SThierry Reding 				     SOR_DP_TPG_SCRAMBLER_NONE |
4116b6b6042SThierry Reding 				     SOR_DP_TPG_PATTERN_TRAIN1;
4126b6b6042SThierry Reding 		value = (value << 8) | lane;
4136b6b6042SThierry Reding 	}
4146b6b6042SThierry Reding 
4156b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_TPG);
4166b6b6042SThierry Reding 
4176b6b6042SThierry Reding 	pattern = DP_TRAINING_PATTERN_1;
4186b6b6042SThierry Reding 
4199542c237SThierry Reding 	err = drm_dp_aux_train(sor->aux, link, pattern);
4206b6b6042SThierry Reding 	if (err < 0)
4216b6b6042SThierry Reding 		return err;
4226b6b6042SThierry Reding 
423a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_SPARE0);
4246b6b6042SThierry Reding 	value |= SOR_DP_SPARE_SEQ_ENABLE;
4256b6b6042SThierry Reding 	value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
4266b6b6042SThierry Reding 	value |= SOR_DP_SPARE_MACRO_SOR_CLK;
427a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_SPARE0);
4286b6b6042SThierry Reding 
4296b6b6042SThierry Reding 	for (i = 0, value = 0; i < link->num_lanes; i++) {
4306b6b6042SThierry Reding 		unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
4316b6b6042SThierry Reding 				     SOR_DP_TPG_SCRAMBLER_NONE |
4326b6b6042SThierry Reding 				     SOR_DP_TPG_PATTERN_TRAIN2;
4336b6b6042SThierry Reding 		value = (value << 8) | lane;
4346b6b6042SThierry Reding 	}
4356b6b6042SThierry Reding 
4366b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_TPG);
4376b6b6042SThierry Reding 
4386b6b6042SThierry Reding 	pattern = DP_LINK_SCRAMBLING_DISABLE | DP_TRAINING_PATTERN_2;
4396b6b6042SThierry Reding 
4409542c237SThierry Reding 	err = drm_dp_aux_train(sor->aux, link, pattern);
4416b6b6042SThierry Reding 	if (err < 0)
4426b6b6042SThierry Reding 		return err;
4436b6b6042SThierry Reding 
4446b6b6042SThierry Reding 	for (i = 0, value = 0; i < link->num_lanes; i++) {
4456b6b6042SThierry Reding 		unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
4466b6b6042SThierry Reding 				     SOR_DP_TPG_SCRAMBLER_GALIOS |
4476b6b6042SThierry Reding 				     SOR_DP_TPG_PATTERN_NONE;
4486b6b6042SThierry Reding 		value = (value << 8) | lane;
4496b6b6042SThierry Reding 	}
4506b6b6042SThierry Reding 
4516b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_TPG);
4526b6b6042SThierry Reding 
4536b6b6042SThierry Reding 	pattern = DP_TRAINING_PATTERN_DISABLE;
4546b6b6042SThierry Reding 
4559542c237SThierry Reding 	err = drm_dp_aux_train(sor->aux, link, pattern);
4566b6b6042SThierry Reding 	if (err < 0)
4576b6b6042SThierry Reding 		return err;
4586b6b6042SThierry Reding 
4596b6b6042SThierry Reding 	return 0;
4606b6b6042SThierry Reding }
4616b6b6042SThierry Reding 
462459cc2c6SThierry Reding static void tegra_sor_dp_term_calibrate(struct tegra_sor *sor)
463459cc2c6SThierry Reding {
464459cc2c6SThierry Reding 	u32 mask = 0x08, adj = 0, value;
465459cc2c6SThierry Reding 
466459cc2c6SThierry Reding 	/* enable pad calibration logic */
467459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
468459cc2c6SThierry Reding 	value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
469459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
470459cc2c6SThierry Reding 
471459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL1);
472459cc2c6SThierry Reding 	value |= SOR_PLL1_TMDS_TERM;
473459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL1);
474459cc2c6SThierry Reding 
475459cc2c6SThierry Reding 	while (mask) {
476459cc2c6SThierry Reding 		adj |= mask;
477459cc2c6SThierry Reding 
478459cc2c6SThierry Reding 		value = tegra_sor_readl(sor, SOR_PLL1);
479459cc2c6SThierry Reding 		value &= ~SOR_PLL1_TMDS_TERMADJ_MASK;
480459cc2c6SThierry Reding 		value |= SOR_PLL1_TMDS_TERMADJ(adj);
481459cc2c6SThierry Reding 		tegra_sor_writel(sor, value, SOR_PLL1);
482459cc2c6SThierry Reding 
483459cc2c6SThierry Reding 		usleep_range(100, 200);
484459cc2c6SThierry Reding 
485459cc2c6SThierry Reding 		value = tegra_sor_readl(sor, SOR_PLL1);
486459cc2c6SThierry Reding 		if (value & SOR_PLL1_TERM_COMPOUT)
487459cc2c6SThierry Reding 			adj &= ~mask;
488459cc2c6SThierry Reding 
489459cc2c6SThierry Reding 		mask >>= 1;
490459cc2c6SThierry Reding 	}
491459cc2c6SThierry Reding 
492459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL1);
493459cc2c6SThierry Reding 	value &= ~SOR_PLL1_TMDS_TERMADJ_MASK;
494459cc2c6SThierry Reding 	value |= SOR_PLL1_TMDS_TERMADJ(adj);
495459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL1);
496459cc2c6SThierry Reding 
497459cc2c6SThierry Reding 	/* disable pad calibration logic */
498459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
499459cc2c6SThierry Reding 	value |= SOR_DP_PADCTL_PAD_CAL_PD;
500459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
501459cc2c6SThierry Reding }
502459cc2c6SThierry Reding 
5036b6b6042SThierry Reding static void tegra_sor_super_update(struct tegra_sor *sor)
5046b6b6042SThierry Reding {
505a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 0, SOR_SUPER_STATE0);
506a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 1, SOR_SUPER_STATE0);
507a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 0, SOR_SUPER_STATE0);
5086b6b6042SThierry Reding }
5096b6b6042SThierry Reding 
5106b6b6042SThierry Reding static void tegra_sor_update(struct tegra_sor *sor)
5116b6b6042SThierry Reding {
512a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 0, SOR_STATE0);
513a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 1, SOR_STATE0);
514a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, 0, SOR_STATE0);
5156b6b6042SThierry Reding }
5166b6b6042SThierry Reding 
5176b6b6042SThierry Reding static int tegra_sor_setup_pwm(struct tegra_sor *sor, unsigned long timeout)
5186b6b6042SThierry Reding {
51928fe2076SThierry Reding 	u32 value;
5206b6b6042SThierry Reding 
5216b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_PWM_DIV);
5226b6b6042SThierry Reding 	value &= ~SOR_PWM_DIV_MASK;
5236b6b6042SThierry Reding 	value |= 0x400; /* period */
5246b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_PWM_DIV);
5256b6b6042SThierry Reding 
5266b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_PWM_CTL);
5276b6b6042SThierry Reding 	value &= ~SOR_PWM_CTL_DUTY_CYCLE_MASK;
5286b6b6042SThierry Reding 	value |= 0x400; /* duty cycle */
5296b6b6042SThierry Reding 	value &= ~SOR_PWM_CTL_CLK_SEL; /* clock source: PCLK */
5306b6b6042SThierry Reding 	value |= SOR_PWM_CTL_TRIGGER;
5316b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_PWM_CTL);
5326b6b6042SThierry Reding 
5336b6b6042SThierry Reding 	timeout = jiffies + msecs_to_jiffies(timeout);
5346b6b6042SThierry Reding 
5356b6b6042SThierry Reding 	while (time_before(jiffies, timeout)) {
5366b6b6042SThierry Reding 		value = tegra_sor_readl(sor, SOR_PWM_CTL);
5376b6b6042SThierry Reding 		if ((value & SOR_PWM_CTL_TRIGGER) == 0)
5386b6b6042SThierry Reding 			return 0;
5396b6b6042SThierry Reding 
5406b6b6042SThierry Reding 		usleep_range(25, 100);
5416b6b6042SThierry Reding 	}
5426b6b6042SThierry Reding 
5436b6b6042SThierry Reding 	return -ETIMEDOUT;
5446b6b6042SThierry Reding }
5456b6b6042SThierry Reding 
5466b6b6042SThierry Reding static int tegra_sor_attach(struct tegra_sor *sor)
5476b6b6042SThierry Reding {
5486b6b6042SThierry Reding 	unsigned long value, timeout;
5496b6b6042SThierry Reding 
5506b6b6042SThierry Reding 	/* wake up in normal mode */
551a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
5526b6b6042SThierry Reding 	value |= SOR_SUPER_STATE_HEAD_MODE_AWAKE;
5536b6b6042SThierry Reding 	value |= SOR_SUPER_STATE_MODE_NORMAL;
554a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
5556b6b6042SThierry Reding 	tegra_sor_super_update(sor);
5566b6b6042SThierry Reding 
5576b6b6042SThierry Reding 	/* attach */
558a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
5596b6b6042SThierry Reding 	value |= SOR_SUPER_STATE_ATTACHED;
560a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
5616b6b6042SThierry Reding 	tegra_sor_super_update(sor);
5626b6b6042SThierry Reding 
5636b6b6042SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
5646b6b6042SThierry Reding 
5656b6b6042SThierry Reding 	while (time_before(jiffies, timeout)) {
5666b6b6042SThierry Reding 		value = tegra_sor_readl(sor, SOR_TEST);
5676b6b6042SThierry Reding 		if ((value & SOR_TEST_ATTACHED) != 0)
5686b6b6042SThierry Reding 			return 0;
5696b6b6042SThierry Reding 
5706b6b6042SThierry Reding 		usleep_range(25, 100);
5716b6b6042SThierry Reding 	}
5726b6b6042SThierry Reding 
5736b6b6042SThierry Reding 	return -ETIMEDOUT;
5746b6b6042SThierry Reding }
5756b6b6042SThierry Reding 
5766b6b6042SThierry Reding static int tegra_sor_wakeup(struct tegra_sor *sor)
5776b6b6042SThierry Reding {
5786b6b6042SThierry Reding 	unsigned long value, timeout;
5796b6b6042SThierry Reding 
5806b6b6042SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
5816b6b6042SThierry Reding 
5826b6b6042SThierry Reding 	/* wait for head to wake up */
5836b6b6042SThierry Reding 	while (time_before(jiffies, timeout)) {
5846b6b6042SThierry Reding 		value = tegra_sor_readl(sor, SOR_TEST);
5856b6b6042SThierry Reding 		value &= SOR_TEST_HEAD_MODE_MASK;
5866b6b6042SThierry Reding 
5876b6b6042SThierry Reding 		if (value == SOR_TEST_HEAD_MODE_AWAKE)
5886b6b6042SThierry Reding 			return 0;
5896b6b6042SThierry Reding 
5906b6b6042SThierry Reding 		usleep_range(25, 100);
5916b6b6042SThierry Reding 	}
5926b6b6042SThierry Reding 
5936b6b6042SThierry Reding 	return -ETIMEDOUT;
5946b6b6042SThierry Reding }
5956b6b6042SThierry Reding 
5966b6b6042SThierry Reding static int tegra_sor_power_up(struct tegra_sor *sor, unsigned long timeout)
5976b6b6042SThierry Reding {
59828fe2076SThierry Reding 	u32 value;
5996b6b6042SThierry Reding 
6006b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_PWR);
6016b6b6042SThierry Reding 	value |= SOR_PWR_TRIGGER | SOR_PWR_NORMAL_STATE_PU;
6026b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_PWR);
6036b6b6042SThierry Reding 
6046b6b6042SThierry Reding 	timeout = jiffies + msecs_to_jiffies(timeout);
6056b6b6042SThierry Reding 
6066b6b6042SThierry Reding 	while (time_before(jiffies, timeout)) {
6076b6b6042SThierry Reding 		value = tegra_sor_readl(sor, SOR_PWR);
6086b6b6042SThierry Reding 		if ((value & SOR_PWR_TRIGGER) == 0)
6096b6b6042SThierry Reding 			return 0;
6106b6b6042SThierry Reding 
6116b6b6042SThierry Reding 		usleep_range(25, 100);
6126b6b6042SThierry Reding 	}
6136b6b6042SThierry Reding 
6146b6b6042SThierry Reding 	return -ETIMEDOUT;
6156b6b6042SThierry Reding }
6166b6b6042SThierry Reding 
61734fa183bSThierry Reding struct tegra_sor_params {
61834fa183bSThierry Reding 	/* number of link clocks per line */
61934fa183bSThierry Reding 	unsigned int num_clocks;
62034fa183bSThierry Reding 	/* ratio between input and output */
62134fa183bSThierry Reding 	u64 ratio;
62234fa183bSThierry Reding 	/* precision factor */
62334fa183bSThierry Reding 	u64 precision;
62434fa183bSThierry Reding 
62534fa183bSThierry Reding 	unsigned int active_polarity;
62634fa183bSThierry Reding 	unsigned int active_count;
62734fa183bSThierry Reding 	unsigned int active_frac;
62834fa183bSThierry Reding 	unsigned int tu_size;
62934fa183bSThierry Reding 	unsigned int error;
63034fa183bSThierry Reding };
63134fa183bSThierry Reding 
63234fa183bSThierry Reding static int tegra_sor_compute_params(struct tegra_sor *sor,
63334fa183bSThierry Reding 				    struct tegra_sor_params *params,
63434fa183bSThierry Reding 				    unsigned int tu_size)
63534fa183bSThierry Reding {
63634fa183bSThierry Reding 	u64 active_sym, active_count, frac, approx;
63734fa183bSThierry Reding 	u32 active_polarity, active_frac = 0;
63834fa183bSThierry Reding 	const u64 f = params->precision;
63934fa183bSThierry Reding 	s64 error;
64034fa183bSThierry Reding 
64134fa183bSThierry Reding 	active_sym = params->ratio * tu_size;
64234fa183bSThierry Reding 	active_count = div_u64(active_sym, f) * f;
64334fa183bSThierry Reding 	frac = active_sym - active_count;
64434fa183bSThierry Reding 
64534fa183bSThierry Reding 	/* fraction < 0.5 */
64634fa183bSThierry Reding 	if (frac >= (f / 2)) {
64734fa183bSThierry Reding 		active_polarity = 1;
64834fa183bSThierry Reding 		frac = f - frac;
64934fa183bSThierry Reding 	} else {
65034fa183bSThierry Reding 		active_polarity = 0;
65134fa183bSThierry Reding 	}
65234fa183bSThierry Reding 
65334fa183bSThierry Reding 	if (frac != 0) {
65434fa183bSThierry Reding 		frac = div_u64(f * f,  frac); /* 1/fraction */
65534fa183bSThierry Reding 		if (frac <= (15 * f)) {
65634fa183bSThierry Reding 			active_frac = div_u64(frac, f);
65734fa183bSThierry Reding 
65834fa183bSThierry Reding 			/* round up */
65934fa183bSThierry Reding 			if (active_polarity)
66034fa183bSThierry Reding 				active_frac++;
66134fa183bSThierry Reding 		} else {
66234fa183bSThierry Reding 			active_frac = active_polarity ? 1 : 15;
66334fa183bSThierry Reding 		}
66434fa183bSThierry Reding 	}
66534fa183bSThierry Reding 
66634fa183bSThierry Reding 	if (active_frac == 1)
66734fa183bSThierry Reding 		active_polarity = 0;
66834fa183bSThierry Reding 
66934fa183bSThierry Reding 	if (active_polarity == 1) {
67034fa183bSThierry Reding 		if (active_frac) {
67134fa183bSThierry Reding 			approx = active_count + (active_frac * (f - 1)) * f;
67234fa183bSThierry Reding 			approx = div_u64(approx, active_frac * f);
67334fa183bSThierry Reding 		} else {
67434fa183bSThierry Reding 			approx = active_count + f;
67534fa183bSThierry Reding 		}
67634fa183bSThierry Reding 	} else {
67734fa183bSThierry Reding 		if (active_frac)
67834fa183bSThierry Reding 			approx = active_count + div_u64(f, active_frac);
67934fa183bSThierry Reding 		else
68034fa183bSThierry Reding 			approx = active_count;
68134fa183bSThierry Reding 	}
68234fa183bSThierry Reding 
68334fa183bSThierry Reding 	error = div_s64(active_sym - approx, tu_size);
68434fa183bSThierry Reding 	error *= params->num_clocks;
68534fa183bSThierry Reding 
68679211c8eSAndrew Morton 	if (error <= 0 && abs(error) < params->error) {
68734fa183bSThierry Reding 		params->active_count = div_u64(active_count, f);
68834fa183bSThierry Reding 		params->active_polarity = active_polarity;
68934fa183bSThierry Reding 		params->active_frac = active_frac;
69079211c8eSAndrew Morton 		params->error = abs(error);
69134fa183bSThierry Reding 		params->tu_size = tu_size;
69234fa183bSThierry Reding 
69334fa183bSThierry Reding 		if (error == 0)
69434fa183bSThierry Reding 			return true;
69534fa183bSThierry Reding 	}
69634fa183bSThierry Reding 
69734fa183bSThierry Reding 	return false;
69834fa183bSThierry Reding }
69934fa183bSThierry Reding 
700a198359eSThierry Reding static int tegra_sor_compute_config(struct tegra_sor *sor,
70180444495SThierry Reding 				    const struct drm_display_mode *mode,
70234fa183bSThierry Reding 				    struct tegra_sor_config *config,
70334fa183bSThierry Reding 				    struct drm_dp_link *link)
70434fa183bSThierry Reding {
70534fa183bSThierry Reding 	const u64 f = 100000, link_rate = link->rate * 1000;
70634fa183bSThierry Reding 	const u64 pclk = mode->clock * 1000;
7077890b576SThierry Reding 	u64 input, output, watermark, num;
70834fa183bSThierry Reding 	struct tegra_sor_params params;
70934fa183bSThierry Reding 	u32 num_syms_per_line;
71034fa183bSThierry Reding 	unsigned int i;
71134fa183bSThierry Reding 
71234fa183bSThierry Reding 	if (!link_rate || !link->num_lanes || !pclk || !config->bits_per_pixel)
71334fa183bSThierry Reding 		return -EINVAL;
71434fa183bSThierry Reding 
71534fa183bSThierry Reding 	output = link_rate * 8 * link->num_lanes;
71634fa183bSThierry Reding 	input = pclk * config->bits_per_pixel;
71734fa183bSThierry Reding 
71834fa183bSThierry Reding 	if (input >= output)
71934fa183bSThierry Reding 		return -ERANGE;
72034fa183bSThierry Reding 
72134fa183bSThierry Reding 	memset(&params, 0, sizeof(params));
72234fa183bSThierry Reding 	params.ratio = div64_u64(input * f, output);
72334fa183bSThierry Reding 	params.num_clocks = div_u64(link_rate * mode->hdisplay, pclk);
72434fa183bSThierry Reding 	params.precision = f;
72534fa183bSThierry Reding 	params.error = 64 * f;
72634fa183bSThierry Reding 	params.tu_size = 64;
72734fa183bSThierry Reding 
72834fa183bSThierry Reding 	for (i = params.tu_size; i >= 32; i--)
72934fa183bSThierry Reding 		if (tegra_sor_compute_params(sor, &params, i))
73034fa183bSThierry Reding 			break;
73134fa183bSThierry Reding 
73234fa183bSThierry Reding 	if (params.active_frac == 0) {
73334fa183bSThierry Reding 		config->active_polarity = 0;
73434fa183bSThierry Reding 		config->active_count = params.active_count;
73534fa183bSThierry Reding 
73634fa183bSThierry Reding 		if (!params.active_polarity)
73734fa183bSThierry Reding 			config->active_count--;
73834fa183bSThierry Reding 
73934fa183bSThierry Reding 		config->tu_size = params.tu_size;
74034fa183bSThierry Reding 		config->active_frac = 1;
74134fa183bSThierry Reding 	} else {
74234fa183bSThierry Reding 		config->active_polarity = params.active_polarity;
74334fa183bSThierry Reding 		config->active_count = params.active_count;
74434fa183bSThierry Reding 		config->active_frac = params.active_frac;
74534fa183bSThierry Reding 		config->tu_size = params.tu_size;
74634fa183bSThierry Reding 	}
74734fa183bSThierry Reding 
74834fa183bSThierry Reding 	dev_dbg(sor->dev,
74934fa183bSThierry Reding 		"polarity: %d active count: %d tu size: %d active frac: %d\n",
75034fa183bSThierry Reding 		config->active_polarity, config->active_count,
75134fa183bSThierry Reding 		config->tu_size, config->active_frac);
75234fa183bSThierry Reding 
75334fa183bSThierry Reding 	watermark = params.ratio * config->tu_size * (f - params.ratio);
75434fa183bSThierry Reding 	watermark = div_u64(watermark, f);
75534fa183bSThierry Reding 
75634fa183bSThierry Reding 	watermark = div_u64(watermark + params.error, f);
75734fa183bSThierry Reding 	config->watermark = watermark + (config->bits_per_pixel / 8) + 2;
75834fa183bSThierry Reding 	num_syms_per_line = (mode->hdisplay * config->bits_per_pixel) *
75934fa183bSThierry Reding 			    (link->num_lanes * 8);
76034fa183bSThierry Reding 
76134fa183bSThierry Reding 	if (config->watermark > 30) {
76234fa183bSThierry Reding 		config->watermark = 30;
76334fa183bSThierry Reding 		dev_err(sor->dev,
76434fa183bSThierry Reding 			"unable to compute TU size, forcing watermark to %u\n",
76534fa183bSThierry Reding 			config->watermark);
76634fa183bSThierry Reding 	} else if (config->watermark > num_syms_per_line) {
76734fa183bSThierry Reding 		config->watermark = num_syms_per_line;
76834fa183bSThierry Reding 		dev_err(sor->dev, "watermark too high, forcing to %u\n",
76934fa183bSThierry Reding 			config->watermark);
77034fa183bSThierry Reding 	}
77134fa183bSThierry Reding 
7727890b576SThierry Reding 	/* compute the number of symbols per horizontal blanking interval */
7737890b576SThierry Reding 	num = ((mode->htotal - mode->hdisplay) - 7) * link_rate;
7747890b576SThierry Reding 	config->hblank_symbols = div_u64(num, pclk);
7757890b576SThierry Reding 
7767890b576SThierry Reding 	if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
7777890b576SThierry Reding 		config->hblank_symbols -= 3;
7787890b576SThierry Reding 
7797890b576SThierry Reding 	config->hblank_symbols -= 12 / link->num_lanes;
7807890b576SThierry Reding 
7817890b576SThierry Reding 	/* compute the number of symbols per vertical blanking interval */
7827890b576SThierry Reding 	num = (mode->hdisplay - 25) * link_rate;
7837890b576SThierry Reding 	config->vblank_symbols = div_u64(num, pclk);
7847890b576SThierry Reding 	config->vblank_symbols -= 36 / link->num_lanes + 4;
7857890b576SThierry Reding 
7867890b576SThierry Reding 	dev_dbg(sor->dev, "blank symbols: H:%u V:%u\n", config->hblank_symbols,
7877890b576SThierry Reding 		config->vblank_symbols);
7887890b576SThierry Reding 
78934fa183bSThierry Reding 	return 0;
79034fa183bSThierry Reding }
79134fa183bSThierry Reding 
792402f6bcdSThierry Reding static void tegra_sor_apply_config(struct tegra_sor *sor,
793402f6bcdSThierry Reding 				   const struct tegra_sor_config *config)
794402f6bcdSThierry Reding {
795402f6bcdSThierry Reding 	u32 value;
796402f6bcdSThierry Reding 
797402f6bcdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
798402f6bcdSThierry Reding 	value &= ~SOR_DP_LINKCTL_TU_SIZE_MASK;
799402f6bcdSThierry Reding 	value |= SOR_DP_LINKCTL_TU_SIZE(config->tu_size);
800402f6bcdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
801402f6bcdSThierry Reding 
802402f6bcdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_CONFIG0);
803402f6bcdSThierry Reding 	value &= ~SOR_DP_CONFIG_WATERMARK_MASK;
804402f6bcdSThierry Reding 	value |= SOR_DP_CONFIG_WATERMARK(config->watermark);
805402f6bcdSThierry Reding 
806402f6bcdSThierry Reding 	value &= ~SOR_DP_CONFIG_ACTIVE_SYM_COUNT_MASK;
807402f6bcdSThierry Reding 	value |= SOR_DP_CONFIG_ACTIVE_SYM_COUNT(config->active_count);
808402f6bcdSThierry Reding 
809402f6bcdSThierry Reding 	value &= ~SOR_DP_CONFIG_ACTIVE_SYM_FRAC_MASK;
810402f6bcdSThierry Reding 	value |= SOR_DP_CONFIG_ACTIVE_SYM_FRAC(config->active_frac);
811402f6bcdSThierry Reding 
812402f6bcdSThierry Reding 	if (config->active_polarity)
813402f6bcdSThierry Reding 		value |= SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
814402f6bcdSThierry Reding 	else
815402f6bcdSThierry Reding 		value &= ~SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
816402f6bcdSThierry Reding 
817402f6bcdSThierry Reding 	value |= SOR_DP_CONFIG_ACTIVE_SYM_ENABLE;
818402f6bcdSThierry Reding 	value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE;
819402f6bcdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_CONFIG0);
820402f6bcdSThierry Reding 
821402f6bcdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_AUDIO_HBLANK_SYMBOLS);
822402f6bcdSThierry Reding 	value &= ~SOR_DP_AUDIO_HBLANK_SYMBOLS_MASK;
823402f6bcdSThierry Reding 	value |= config->hblank_symbols & 0xffff;
824402f6bcdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_AUDIO_HBLANK_SYMBOLS);
825402f6bcdSThierry Reding 
826402f6bcdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_AUDIO_VBLANK_SYMBOLS);
827402f6bcdSThierry Reding 	value &= ~SOR_DP_AUDIO_VBLANK_SYMBOLS_MASK;
828402f6bcdSThierry Reding 	value |= config->vblank_symbols & 0xffff;
829402f6bcdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_AUDIO_VBLANK_SYMBOLS);
830402f6bcdSThierry Reding }
831402f6bcdSThierry Reding 
8322bd1dd39SThierry Reding static void tegra_sor_mode_set(struct tegra_sor *sor,
8332bd1dd39SThierry Reding 			       const struct drm_display_mode *mode,
834c31efa7aSThierry Reding 			       struct tegra_sor_state *state)
8352bd1dd39SThierry Reding {
8362bd1dd39SThierry Reding 	struct tegra_dc *dc = to_tegra_dc(sor->output.encoder.crtc);
8372bd1dd39SThierry Reding 	unsigned int vbe, vse, hbe, hse, vbs, hbs;
8382bd1dd39SThierry Reding 	u32 value;
8392bd1dd39SThierry Reding 
8402bd1dd39SThierry Reding 	value = tegra_sor_readl(sor, SOR_STATE1);
8412bd1dd39SThierry Reding 	value &= ~SOR_STATE_ASY_PIXELDEPTH_MASK;
8422bd1dd39SThierry Reding 	value &= ~SOR_STATE_ASY_CRC_MODE_MASK;
8432bd1dd39SThierry Reding 	value &= ~SOR_STATE_ASY_OWNER_MASK;
8442bd1dd39SThierry Reding 
8452bd1dd39SThierry Reding 	value |= SOR_STATE_ASY_CRC_MODE_COMPLETE |
8462bd1dd39SThierry Reding 		 SOR_STATE_ASY_OWNER(dc->pipe + 1);
8472bd1dd39SThierry Reding 
8482bd1dd39SThierry Reding 	if (mode->flags & DRM_MODE_FLAG_PHSYNC)
8492bd1dd39SThierry Reding 		value &= ~SOR_STATE_ASY_HSYNCPOL;
8502bd1dd39SThierry Reding 
8512bd1dd39SThierry Reding 	if (mode->flags & DRM_MODE_FLAG_NHSYNC)
8522bd1dd39SThierry Reding 		value |= SOR_STATE_ASY_HSYNCPOL;
8532bd1dd39SThierry Reding 
8542bd1dd39SThierry Reding 	if (mode->flags & DRM_MODE_FLAG_PVSYNC)
8552bd1dd39SThierry Reding 		value &= ~SOR_STATE_ASY_VSYNCPOL;
8562bd1dd39SThierry Reding 
8572bd1dd39SThierry Reding 	if (mode->flags & DRM_MODE_FLAG_NVSYNC)
8582bd1dd39SThierry Reding 		value |= SOR_STATE_ASY_VSYNCPOL;
8592bd1dd39SThierry Reding 
860c31efa7aSThierry Reding 	switch (state->bpc) {
861c31efa7aSThierry Reding 	case 16:
862c31efa7aSThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_48_444;
863c31efa7aSThierry Reding 		break;
864c31efa7aSThierry Reding 
865c31efa7aSThierry Reding 	case 12:
866c31efa7aSThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_36_444;
867c31efa7aSThierry Reding 		break;
868c31efa7aSThierry Reding 
869c31efa7aSThierry Reding 	case 10:
870c31efa7aSThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_30_444;
871c31efa7aSThierry Reding 		break;
872c31efa7aSThierry Reding 
8732bd1dd39SThierry Reding 	case 8:
8742bd1dd39SThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444;
8752bd1dd39SThierry Reding 		break;
8762bd1dd39SThierry Reding 
8772bd1dd39SThierry Reding 	case 6:
8782bd1dd39SThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_18_444;
8792bd1dd39SThierry Reding 		break;
8802bd1dd39SThierry Reding 
8812bd1dd39SThierry Reding 	default:
882c31efa7aSThierry Reding 		value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444;
8832bd1dd39SThierry Reding 		break;
8842bd1dd39SThierry Reding 	}
8852bd1dd39SThierry Reding 
8862bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_STATE1);
8872bd1dd39SThierry Reding 
8882bd1dd39SThierry Reding 	/*
8892bd1dd39SThierry Reding 	 * TODO: The video timing programming below doesn't seem to match the
8902bd1dd39SThierry Reding 	 * register definitions.
8912bd1dd39SThierry Reding 	 */
8922bd1dd39SThierry Reding 
8932bd1dd39SThierry Reding 	value = ((mode->vtotal & 0x7fff) << 16) | (mode->htotal & 0x7fff);
8942bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE1(dc->pipe));
8952bd1dd39SThierry Reding 
8962bd1dd39SThierry Reding 	/* sync end = sync width - 1 */
8972bd1dd39SThierry Reding 	vse = mode->vsync_end - mode->vsync_start - 1;
8982bd1dd39SThierry Reding 	hse = mode->hsync_end - mode->hsync_start - 1;
8992bd1dd39SThierry Reding 
9002bd1dd39SThierry Reding 	value = ((vse & 0x7fff) << 16) | (hse & 0x7fff);
9012bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE2(dc->pipe));
9022bd1dd39SThierry Reding 
9032bd1dd39SThierry Reding 	/* blank end = sync end + back porch */
9042bd1dd39SThierry Reding 	vbe = vse + (mode->vtotal - mode->vsync_end);
9052bd1dd39SThierry Reding 	hbe = hse + (mode->htotal - mode->hsync_end);
9062bd1dd39SThierry Reding 
9072bd1dd39SThierry Reding 	value = ((vbe & 0x7fff) << 16) | (hbe & 0x7fff);
9082bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE3(dc->pipe));
9092bd1dd39SThierry Reding 
9102bd1dd39SThierry Reding 	/* blank start = blank end + active */
9112bd1dd39SThierry Reding 	vbs = vbe + mode->vdisplay;
9122bd1dd39SThierry Reding 	hbs = hbe + mode->hdisplay;
9132bd1dd39SThierry Reding 
9142bd1dd39SThierry Reding 	value = ((vbs & 0x7fff) << 16) | (hbs & 0x7fff);
9152bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE4(dc->pipe));
9162bd1dd39SThierry Reding 
9172bd1dd39SThierry Reding 	/* XXX interlacing support */
9182bd1dd39SThierry Reding 	tegra_sor_writel(sor, 0x001, SOR_HEAD_STATE5(dc->pipe));
9192bd1dd39SThierry Reding }
9202bd1dd39SThierry Reding 
9216fad8f66SThierry Reding static int tegra_sor_detach(struct tegra_sor *sor)
9226b6b6042SThierry Reding {
9236fad8f66SThierry Reding 	unsigned long value, timeout;
9246fad8f66SThierry Reding 
9256fad8f66SThierry Reding 	/* switch to safe mode */
926a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
9276fad8f66SThierry Reding 	value &= ~SOR_SUPER_STATE_MODE_NORMAL;
928a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
9296fad8f66SThierry Reding 	tegra_sor_super_update(sor);
9306fad8f66SThierry Reding 
9316fad8f66SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
9326fad8f66SThierry Reding 
9336fad8f66SThierry Reding 	while (time_before(jiffies, timeout)) {
9346fad8f66SThierry Reding 		value = tegra_sor_readl(sor, SOR_PWR);
9356fad8f66SThierry Reding 		if (value & SOR_PWR_MODE_SAFE)
9366fad8f66SThierry Reding 			break;
9376fad8f66SThierry Reding 	}
9386fad8f66SThierry Reding 
9396fad8f66SThierry Reding 	if ((value & SOR_PWR_MODE_SAFE) == 0)
9406fad8f66SThierry Reding 		return -ETIMEDOUT;
9416fad8f66SThierry Reding 
9426fad8f66SThierry Reding 	/* go to sleep */
943a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
9446fad8f66SThierry Reding 	value &= ~SOR_SUPER_STATE_HEAD_MODE_MASK;
945a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
9466fad8f66SThierry Reding 	tegra_sor_super_update(sor);
9476fad8f66SThierry Reding 
9486fad8f66SThierry Reding 	/* detach */
949a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
9506fad8f66SThierry Reding 	value &= ~SOR_SUPER_STATE_ATTACHED;
951a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
9526fad8f66SThierry Reding 	tegra_sor_super_update(sor);
9536fad8f66SThierry Reding 
9546fad8f66SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
9556fad8f66SThierry Reding 
9566fad8f66SThierry Reding 	while (time_before(jiffies, timeout)) {
9576fad8f66SThierry Reding 		value = tegra_sor_readl(sor, SOR_TEST);
9586fad8f66SThierry Reding 		if ((value & SOR_TEST_ATTACHED) == 0)
9596fad8f66SThierry Reding 			break;
9606fad8f66SThierry Reding 
9616fad8f66SThierry Reding 		usleep_range(25, 100);
9626fad8f66SThierry Reding 	}
9636fad8f66SThierry Reding 
9646fad8f66SThierry Reding 	if ((value & SOR_TEST_ATTACHED) != 0)
9656fad8f66SThierry Reding 		return -ETIMEDOUT;
9666fad8f66SThierry Reding 
9676fad8f66SThierry Reding 	return 0;
9686fad8f66SThierry Reding }
9696fad8f66SThierry Reding 
9706fad8f66SThierry Reding static int tegra_sor_power_down(struct tegra_sor *sor)
9716fad8f66SThierry Reding {
9726fad8f66SThierry Reding 	unsigned long value, timeout;
9736fad8f66SThierry Reding 	int err;
9746fad8f66SThierry Reding 
9756fad8f66SThierry Reding 	value = tegra_sor_readl(sor, SOR_PWR);
9766fad8f66SThierry Reding 	value &= ~SOR_PWR_NORMAL_STATE_PU;
9776fad8f66SThierry Reding 	value |= SOR_PWR_TRIGGER;
9786fad8f66SThierry Reding 	tegra_sor_writel(sor, value, SOR_PWR);
9796fad8f66SThierry Reding 
9806fad8f66SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
9816fad8f66SThierry Reding 
9826fad8f66SThierry Reding 	while (time_before(jiffies, timeout)) {
9836fad8f66SThierry Reding 		value = tegra_sor_readl(sor, SOR_PWR);
9846fad8f66SThierry Reding 		if ((value & SOR_PWR_TRIGGER) == 0)
9856fad8f66SThierry Reding 			return 0;
9866fad8f66SThierry Reding 
9876fad8f66SThierry Reding 		usleep_range(25, 100);
9886fad8f66SThierry Reding 	}
9896fad8f66SThierry Reding 
9906fad8f66SThierry Reding 	if ((value & SOR_PWR_TRIGGER) != 0)
9916fad8f66SThierry Reding 		return -ETIMEDOUT;
9926fad8f66SThierry Reding 
99325bb2cecSThierry Reding 	/* switch to safe parent clock */
99425bb2cecSThierry Reding 	err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
9956fad8f66SThierry Reding 	if (err < 0)
9966fad8f66SThierry Reding 		dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
9976fad8f66SThierry Reding 
998a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
9996fad8f66SThierry Reding 	value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 |
10006fad8f66SThierry Reding 		   SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2);
1001a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
10026fad8f66SThierry Reding 
10036fad8f66SThierry Reding 	/* stop lane sequencer */
10046fad8f66SThierry Reding 	value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_UP |
10056fad8f66SThierry Reding 		SOR_LANE_SEQ_CTL_POWER_STATE_DOWN;
10066fad8f66SThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
10076fad8f66SThierry Reding 
10086fad8f66SThierry Reding 	timeout = jiffies + msecs_to_jiffies(250);
10096fad8f66SThierry Reding 
10106fad8f66SThierry Reding 	while (time_before(jiffies, timeout)) {
10116fad8f66SThierry Reding 		value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
10126fad8f66SThierry Reding 		if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
10136fad8f66SThierry Reding 			break;
10146fad8f66SThierry Reding 
10156fad8f66SThierry Reding 		usleep_range(25, 100);
10166fad8f66SThierry Reding 	}
10176fad8f66SThierry Reding 
10186fad8f66SThierry Reding 	if ((value & SOR_LANE_SEQ_CTL_TRIGGER) != 0)
10196fad8f66SThierry Reding 		return -ETIMEDOUT;
10206fad8f66SThierry Reding 
1021a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1022a9a9e4fdSThierry Reding 	value |= SOR_PLL2_PORT_POWERDOWN;
1023a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
10246fad8f66SThierry Reding 
10256fad8f66SThierry Reding 	usleep_range(20, 100);
10266fad8f66SThierry Reding 
1027a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL0);
1028a9a9e4fdSThierry Reding 	value |= SOR_PLL0_VCOPD | SOR_PLL0_PWR;
1029a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
10306fad8f66SThierry Reding 
1031a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1032a9a9e4fdSThierry Reding 	value |= SOR_PLL2_SEQ_PLLCAPPD;
1033a9a9e4fdSThierry Reding 	value |= SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
1034a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
10356fad8f66SThierry Reding 
10366fad8f66SThierry Reding 	usleep_range(20, 100);
10376fad8f66SThierry Reding 
10386fad8f66SThierry Reding 	return 0;
10396fad8f66SThierry Reding }
10406fad8f66SThierry Reding 
10416fad8f66SThierry Reding static int tegra_sor_crc_wait(struct tegra_sor *sor, unsigned long timeout)
10426fad8f66SThierry Reding {
10436fad8f66SThierry Reding 	u32 value;
10446fad8f66SThierry Reding 
10456fad8f66SThierry Reding 	timeout = jiffies + msecs_to_jiffies(timeout);
10466fad8f66SThierry Reding 
10476fad8f66SThierry Reding 	while (time_before(jiffies, timeout)) {
1048a9a9e4fdSThierry Reding 		value = tegra_sor_readl(sor, SOR_CRCA);
1049a9a9e4fdSThierry Reding 		if (value & SOR_CRCA_VALID)
10506fad8f66SThierry Reding 			return 0;
10516fad8f66SThierry Reding 
10526fad8f66SThierry Reding 		usleep_range(100, 200);
10536fad8f66SThierry Reding 	}
10546fad8f66SThierry Reding 
10556fad8f66SThierry Reding 	return -ETIMEDOUT;
10566fad8f66SThierry Reding }
10576fad8f66SThierry Reding 
1058530239a8SThierry Reding static int tegra_sor_show_crc(struct seq_file *s, void *data)
10596fad8f66SThierry Reding {
1060530239a8SThierry Reding 	struct drm_info_node *node = s->private;
1061530239a8SThierry Reding 	struct tegra_sor *sor = node->info_ent->data;
1062850bab44SThierry Reding 	struct drm_crtc *crtc = sor->output.encoder.crtc;
1063850bab44SThierry Reding 	struct drm_device *drm = node->minor->dev;
1064530239a8SThierry Reding 	int err = 0;
10656fad8f66SThierry Reding 	u32 value;
10666fad8f66SThierry Reding 
1067850bab44SThierry Reding 	drm_modeset_lock_all(drm);
10686fad8f66SThierry Reding 
1069850bab44SThierry Reding 	if (!crtc || !crtc->state->active) {
1070850bab44SThierry Reding 		err = -EBUSY;
10716fad8f66SThierry Reding 		goto unlock;
10726fad8f66SThierry Reding 	}
10736fad8f66SThierry Reding 
1074a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_STATE1);
10756fad8f66SThierry Reding 	value &= ~SOR_STATE_ASY_CRC_MODE_MASK;
1076a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_STATE1);
10776fad8f66SThierry Reding 
10786fad8f66SThierry Reding 	value = tegra_sor_readl(sor, SOR_CRC_CNTRL);
10796fad8f66SThierry Reding 	value |= SOR_CRC_CNTRL_ENABLE;
10806fad8f66SThierry Reding 	tegra_sor_writel(sor, value, SOR_CRC_CNTRL);
10816fad8f66SThierry Reding 
10826fad8f66SThierry Reding 	value = tegra_sor_readl(sor, SOR_TEST);
10836fad8f66SThierry Reding 	value &= ~SOR_TEST_CRC_POST_SERIALIZE;
10846fad8f66SThierry Reding 	tegra_sor_writel(sor, value, SOR_TEST);
10856fad8f66SThierry Reding 
10866fad8f66SThierry Reding 	err = tegra_sor_crc_wait(sor, 100);
10876fad8f66SThierry Reding 	if (err < 0)
10886fad8f66SThierry Reding 		goto unlock;
10896fad8f66SThierry Reding 
1090a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, SOR_CRCA_RESET, SOR_CRCA);
1091a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_CRCB);
10926fad8f66SThierry Reding 
1093530239a8SThierry Reding 	seq_printf(s, "%08x\n", value);
10946fad8f66SThierry Reding 
10956fad8f66SThierry Reding unlock:
1096850bab44SThierry Reding 	drm_modeset_unlock_all(drm);
10976fad8f66SThierry Reding 	return err;
10986fad8f66SThierry Reding }
10996fad8f66SThierry Reding 
1100dab16336SThierry Reding static int tegra_sor_show_regs(struct seq_file *s, void *data)
1101dab16336SThierry Reding {
1102dab16336SThierry Reding 	struct drm_info_node *node = s->private;
1103dab16336SThierry Reding 	struct tegra_sor *sor = node->info_ent->data;
1104850bab44SThierry Reding 	struct drm_crtc *crtc = sor->output.encoder.crtc;
1105850bab44SThierry Reding 	struct drm_device *drm = node->minor->dev;
1106850bab44SThierry Reding 	int err = 0;
1107850bab44SThierry Reding 
1108850bab44SThierry Reding 	drm_modeset_lock_all(drm);
1109850bab44SThierry Reding 
1110850bab44SThierry Reding 	if (!crtc || !crtc->state->active) {
1111850bab44SThierry Reding 		err = -EBUSY;
1112850bab44SThierry Reding 		goto unlock;
1113850bab44SThierry Reding 	}
1114dab16336SThierry Reding 
1115dab16336SThierry Reding #define DUMP_REG(name)						\
1116dab16336SThierry Reding 	seq_printf(s, "%-38s %#05x %08x\n", #name, name,	\
1117dab16336SThierry Reding 		   tegra_sor_readl(sor, name))
1118dab16336SThierry Reding 
1119dab16336SThierry Reding 	DUMP_REG(SOR_CTXSW);
1120a9a9e4fdSThierry Reding 	DUMP_REG(SOR_SUPER_STATE0);
1121a9a9e4fdSThierry Reding 	DUMP_REG(SOR_SUPER_STATE1);
1122a9a9e4fdSThierry Reding 	DUMP_REG(SOR_STATE0);
1123a9a9e4fdSThierry Reding 	DUMP_REG(SOR_STATE1);
1124a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE0(0));
1125a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE0(1));
1126a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE1(0));
1127a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE1(1));
1128a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE2(0));
1129a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE2(1));
1130a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE3(0));
1131a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE3(1));
1132a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE4(0));
1133a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE4(1));
1134a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE5(0));
1135a9a9e4fdSThierry Reding 	DUMP_REG(SOR_HEAD_STATE5(1));
1136dab16336SThierry Reding 	DUMP_REG(SOR_CRC_CNTRL);
1137dab16336SThierry Reding 	DUMP_REG(SOR_DP_DEBUG_MVID);
1138dab16336SThierry Reding 	DUMP_REG(SOR_CLK_CNTRL);
1139dab16336SThierry Reding 	DUMP_REG(SOR_CAP);
1140dab16336SThierry Reding 	DUMP_REG(SOR_PWR);
1141dab16336SThierry Reding 	DUMP_REG(SOR_TEST);
1142a9a9e4fdSThierry Reding 	DUMP_REG(SOR_PLL0);
1143a9a9e4fdSThierry Reding 	DUMP_REG(SOR_PLL1);
1144a9a9e4fdSThierry Reding 	DUMP_REG(SOR_PLL2);
1145a9a9e4fdSThierry Reding 	DUMP_REG(SOR_PLL3);
1146dab16336SThierry Reding 	DUMP_REG(SOR_CSTM);
1147dab16336SThierry Reding 	DUMP_REG(SOR_LVDS);
1148a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CRCA);
1149a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CRCB);
1150dab16336SThierry Reding 	DUMP_REG(SOR_BLANK);
1151dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_CTL);
1152dab16336SThierry Reding 	DUMP_REG(SOR_LANE_SEQ_CTL);
1153dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(0));
1154dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(1));
1155dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(2));
1156dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(3));
1157dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(4));
1158dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(5));
1159dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(6));
1160dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(7));
1161dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(8));
1162dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(9));
1163dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(10));
1164dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(11));
1165dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(12));
1166dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(13));
1167dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(14));
1168dab16336SThierry Reding 	DUMP_REG(SOR_SEQ_INST(15));
1169dab16336SThierry Reding 	DUMP_REG(SOR_PWM_DIV);
1170dab16336SThierry Reding 	DUMP_REG(SOR_PWM_CTL);
1171a9a9e4fdSThierry Reding 	DUMP_REG(SOR_VCRC_A0);
1172a9a9e4fdSThierry Reding 	DUMP_REG(SOR_VCRC_A1);
1173a9a9e4fdSThierry Reding 	DUMP_REG(SOR_VCRC_B0);
1174a9a9e4fdSThierry Reding 	DUMP_REG(SOR_VCRC_B1);
1175a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CCRC_A0);
1176a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CCRC_A1);
1177a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CCRC_B0);
1178a9a9e4fdSThierry Reding 	DUMP_REG(SOR_CCRC_B1);
1179a9a9e4fdSThierry Reding 	DUMP_REG(SOR_EDATA_A0);
1180a9a9e4fdSThierry Reding 	DUMP_REG(SOR_EDATA_A1);
1181a9a9e4fdSThierry Reding 	DUMP_REG(SOR_EDATA_B0);
1182a9a9e4fdSThierry Reding 	DUMP_REG(SOR_EDATA_B1);
1183a9a9e4fdSThierry Reding 	DUMP_REG(SOR_COUNT_A0);
1184a9a9e4fdSThierry Reding 	DUMP_REG(SOR_COUNT_A1);
1185a9a9e4fdSThierry Reding 	DUMP_REG(SOR_COUNT_B0);
1186a9a9e4fdSThierry Reding 	DUMP_REG(SOR_COUNT_B1);
1187a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DEBUG_A0);
1188a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DEBUG_A1);
1189a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DEBUG_B0);
1190a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DEBUG_B1);
1191dab16336SThierry Reding 	DUMP_REG(SOR_TRIG);
1192dab16336SThierry Reding 	DUMP_REG(SOR_MSCHECK);
1193dab16336SThierry Reding 	DUMP_REG(SOR_XBAR_CTRL);
1194dab16336SThierry Reding 	DUMP_REG(SOR_XBAR_POL);
1195a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_LINKCTL0);
1196a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_LINKCTL1);
1197a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_DRIVE_CURRENT0);
1198a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_DRIVE_CURRENT1);
1199a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE4_DRIVE_CURRENT0);
1200a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE4_DRIVE_CURRENT1);
1201a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_PREEMPHASIS0);
1202a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_PREEMPHASIS1);
1203a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE4_PREEMPHASIS0);
1204a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE4_PREEMPHASIS1);
1205a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_POSTCURSOR0);
1206a9a9e4fdSThierry Reding 	DUMP_REG(SOR_LANE_POSTCURSOR1);
1207a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_CONFIG0);
1208a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_CONFIG1);
1209a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_MN0);
1210a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_MN1);
1211a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_PADCTL0);
1212a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_PADCTL1);
1213a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_DEBUG0);
1214a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_DEBUG1);
1215a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_SPARE0);
1216a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_SPARE1);
1217dab16336SThierry Reding 	DUMP_REG(SOR_DP_AUDIO_CTRL);
1218dab16336SThierry Reding 	DUMP_REG(SOR_DP_AUDIO_HBLANK_SYMBOLS);
1219dab16336SThierry Reding 	DUMP_REG(SOR_DP_AUDIO_VBLANK_SYMBOLS);
1220dab16336SThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_HEADER);
1221a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK0);
1222a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK1);
1223a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK2);
1224a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK3);
1225a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK4);
1226a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK5);
1227a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK6);
1228dab16336SThierry Reding 	DUMP_REG(SOR_DP_TPG);
1229dab16336SThierry Reding 	DUMP_REG(SOR_DP_TPG_CONFIG);
1230a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_LQ_CSTM0);
1231a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_LQ_CSTM1);
1232a9a9e4fdSThierry Reding 	DUMP_REG(SOR_DP_LQ_CSTM2);
1233dab16336SThierry Reding 
1234dab16336SThierry Reding #undef DUMP_REG
1235dab16336SThierry Reding 
1236850bab44SThierry Reding unlock:
1237850bab44SThierry Reding 	drm_modeset_unlock_all(drm);
1238850bab44SThierry Reding 	return err;
1239dab16336SThierry Reding }
1240dab16336SThierry Reding 
1241dab16336SThierry Reding static const struct drm_info_list debugfs_files[] = {
1242530239a8SThierry Reding 	{ "crc", tegra_sor_show_crc, 0, NULL },
1243dab16336SThierry Reding 	{ "regs", tegra_sor_show_regs, 0, NULL },
1244dab16336SThierry Reding };
1245dab16336SThierry Reding 
12466fad8f66SThierry Reding static int tegra_sor_debugfs_init(struct tegra_sor *sor,
12476fad8f66SThierry Reding 				  struct drm_minor *minor)
12486fad8f66SThierry Reding {
1249459cc2c6SThierry Reding 	const char *name = sor->soc->supports_dp ? "sor1" : "sor";
1250dab16336SThierry Reding 	unsigned int i;
1251530239a8SThierry Reding 	int err;
12526fad8f66SThierry Reding 
1253459cc2c6SThierry Reding 	sor->debugfs = debugfs_create_dir(name, minor->debugfs_root);
12546fad8f66SThierry Reding 	if (!sor->debugfs)
12556fad8f66SThierry Reding 		return -ENOMEM;
12566fad8f66SThierry Reding 
1257dab16336SThierry Reding 	sor->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1258dab16336SThierry Reding 				     GFP_KERNEL);
1259dab16336SThierry Reding 	if (!sor->debugfs_files) {
12606fad8f66SThierry Reding 		err = -ENOMEM;
12616fad8f66SThierry Reding 		goto remove;
12626fad8f66SThierry Reding 	}
12636fad8f66SThierry Reding 
1264dab16336SThierry Reding 	for (i = 0; i < ARRAY_SIZE(debugfs_files); i++)
1265dab16336SThierry Reding 		sor->debugfs_files[i].data = sor;
1266dab16336SThierry Reding 
1267dab16336SThierry Reding 	err = drm_debugfs_create_files(sor->debugfs_files,
1268dab16336SThierry Reding 				       ARRAY_SIZE(debugfs_files),
1269dab16336SThierry Reding 				       sor->debugfs, minor);
1270dab16336SThierry Reding 	if (err < 0)
1271dab16336SThierry Reding 		goto free;
1272dab16336SThierry Reding 
12733ff1f22cSThierry Reding 	sor->minor = minor;
12743ff1f22cSThierry Reding 
1275530239a8SThierry Reding 	return 0;
12766fad8f66SThierry Reding 
1277dab16336SThierry Reding free:
1278dab16336SThierry Reding 	kfree(sor->debugfs_files);
1279dab16336SThierry Reding 	sor->debugfs_files = NULL;
12806fad8f66SThierry Reding remove:
1281dab16336SThierry Reding 	debugfs_remove_recursive(sor->debugfs);
12826fad8f66SThierry Reding 	sor->debugfs = NULL;
12836fad8f66SThierry Reding 	return err;
12846fad8f66SThierry Reding }
12856fad8f66SThierry Reding 
12864009c224SThierry Reding static void tegra_sor_debugfs_exit(struct tegra_sor *sor)
12876fad8f66SThierry Reding {
1288dab16336SThierry Reding 	drm_debugfs_remove_files(sor->debugfs_files, ARRAY_SIZE(debugfs_files),
1289dab16336SThierry Reding 				 sor->minor);
1290dab16336SThierry Reding 	sor->minor = NULL;
1291dab16336SThierry Reding 
1292dab16336SThierry Reding 	kfree(sor->debugfs_files);
1293066d30f8SThierry Reding 	sor->debugfs_files = NULL;
1294dab16336SThierry Reding 
1295dab16336SThierry Reding 	debugfs_remove_recursive(sor->debugfs);
1296066d30f8SThierry Reding 	sor->debugfs = NULL;
12976fad8f66SThierry Reding }
12986fad8f66SThierry Reding 
1299c31efa7aSThierry Reding static void tegra_sor_connector_reset(struct drm_connector *connector)
1300c31efa7aSThierry Reding {
1301c31efa7aSThierry Reding 	struct tegra_sor_state *state;
1302c31efa7aSThierry Reding 
1303c31efa7aSThierry Reding 	state = kzalloc(sizeof(*state), GFP_KERNEL);
1304c31efa7aSThierry Reding 	if (!state)
1305c31efa7aSThierry Reding 		return;
1306c31efa7aSThierry Reding 
1307c31efa7aSThierry Reding 	if (connector->state) {
1308c31efa7aSThierry Reding 		__drm_atomic_helper_connector_destroy_state(connector->state);
1309c31efa7aSThierry Reding 		kfree(connector->state);
1310c31efa7aSThierry Reding 	}
1311c31efa7aSThierry Reding 
1312c31efa7aSThierry Reding 	__drm_atomic_helper_connector_reset(connector, &state->base);
1313c31efa7aSThierry Reding }
1314c31efa7aSThierry Reding 
13156fad8f66SThierry Reding static enum drm_connector_status
13166fad8f66SThierry Reding tegra_sor_connector_detect(struct drm_connector *connector, bool force)
13176fad8f66SThierry Reding {
13186fad8f66SThierry Reding 	struct tegra_output *output = connector_to_output(connector);
13196fad8f66SThierry Reding 	struct tegra_sor *sor = to_sor(output);
13206fad8f66SThierry Reding 
13219542c237SThierry Reding 	if (sor->aux)
13229542c237SThierry Reding 		return drm_dp_aux_detect(sor->aux);
13236fad8f66SThierry Reding 
1324459cc2c6SThierry Reding 	return tegra_output_connector_detect(connector, force);
13256fad8f66SThierry Reding }
13266fad8f66SThierry Reding 
1327c31efa7aSThierry Reding static struct drm_connector_state *
1328c31efa7aSThierry Reding tegra_sor_connector_duplicate_state(struct drm_connector *connector)
1329c31efa7aSThierry Reding {
1330c31efa7aSThierry Reding 	struct tegra_sor_state *state = to_sor_state(connector->state);
1331c31efa7aSThierry Reding 	struct tegra_sor_state *copy;
1332c31efa7aSThierry Reding 
1333c31efa7aSThierry Reding 	copy = kmemdup(state, sizeof(*state), GFP_KERNEL);
1334c31efa7aSThierry Reding 	if (!copy)
1335c31efa7aSThierry Reding 		return NULL;
1336c31efa7aSThierry Reding 
1337c31efa7aSThierry Reding 	__drm_atomic_helper_connector_duplicate_state(connector, &copy->base);
1338c31efa7aSThierry Reding 
1339c31efa7aSThierry Reding 	return &copy->base;
1340c31efa7aSThierry Reding }
1341c31efa7aSThierry Reding 
13426fad8f66SThierry Reding static const struct drm_connector_funcs tegra_sor_connector_funcs = {
1343850bab44SThierry Reding 	.dpms = drm_atomic_helper_connector_dpms,
1344c31efa7aSThierry Reding 	.reset = tegra_sor_connector_reset,
13456fad8f66SThierry Reding 	.detect = tegra_sor_connector_detect,
13466fad8f66SThierry Reding 	.fill_modes = drm_helper_probe_single_connector_modes,
13476fad8f66SThierry Reding 	.destroy = tegra_output_connector_destroy,
1348c31efa7aSThierry Reding 	.atomic_duplicate_state = tegra_sor_connector_duplicate_state,
13494aa3df71SThierry Reding 	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
13506fad8f66SThierry Reding };
13516fad8f66SThierry Reding 
13526fad8f66SThierry Reding static int tegra_sor_connector_get_modes(struct drm_connector *connector)
13536fad8f66SThierry Reding {
13546fad8f66SThierry Reding 	struct tegra_output *output = connector_to_output(connector);
13556fad8f66SThierry Reding 	struct tegra_sor *sor = to_sor(output);
13566fad8f66SThierry Reding 	int err;
13576fad8f66SThierry Reding 
13589542c237SThierry Reding 	if (sor->aux)
13599542c237SThierry Reding 		drm_dp_aux_enable(sor->aux);
13606fad8f66SThierry Reding 
13616fad8f66SThierry Reding 	err = tegra_output_connector_get_modes(connector);
13626fad8f66SThierry Reding 
13639542c237SThierry Reding 	if (sor->aux)
13649542c237SThierry Reding 		drm_dp_aux_disable(sor->aux);
13656fad8f66SThierry Reding 
13666fad8f66SThierry Reding 	return err;
13676fad8f66SThierry Reding }
13686fad8f66SThierry Reding 
13696fad8f66SThierry Reding static enum drm_mode_status
13706fad8f66SThierry Reding tegra_sor_connector_mode_valid(struct drm_connector *connector,
13716fad8f66SThierry Reding 			       struct drm_display_mode *mode)
13726fad8f66SThierry Reding {
13736fad8f66SThierry Reding 	return MODE_OK;
13746fad8f66SThierry Reding }
13756fad8f66SThierry Reding 
13766fad8f66SThierry Reding static const struct drm_connector_helper_funcs tegra_sor_connector_helper_funcs = {
13776fad8f66SThierry Reding 	.get_modes = tegra_sor_connector_get_modes,
13786fad8f66SThierry Reding 	.mode_valid = tegra_sor_connector_mode_valid,
13796fad8f66SThierry Reding 	.best_encoder = tegra_output_connector_best_encoder,
13806fad8f66SThierry Reding };
13816fad8f66SThierry Reding 
13826fad8f66SThierry Reding static const struct drm_encoder_funcs tegra_sor_encoder_funcs = {
13836fad8f66SThierry Reding 	.destroy = tegra_output_encoder_destroy,
13846fad8f66SThierry Reding };
13856fad8f66SThierry Reding 
1386850bab44SThierry Reding static void tegra_sor_edp_disable(struct drm_encoder *encoder)
13876fad8f66SThierry Reding {
1388850bab44SThierry Reding 	struct tegra_output *output = encoder_to_output(encoder);
1389850bab44SThierry Reding 	struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
1390850bab44SThierry Reding 	struct tegra_sor *sor = to_sor(output);
1391850bab44SThierry Reding 	u32 value;
1392850bab44SThierry Reding 	int err;
1393850bab44SThierry Reding 
1394850bab44SThierry Reding 	if (output->panel)
1395850bab44SThierry Reding 		drm_panel_disable(output->panel);
1396850bab44SThierry Reding 
1397850bab44SThierry Reding 	err = tegra_sor_detach(sor);
1398850bab44SThierry Reding 	if (err < 0)
1399850bab44SThierry Reding 		dev_err(sor->dev, "failed to detach SOR: %d\n", err);
1400850bab44SThierry Reding 
1401850bab44SThierry Reding 	tegra_sor_writel(sor, 0, SOR_STATE1);
1402850bab44SThierry Reding 	tegra_sor_update(sor);
1403850bab44SThierry Reding 
1404850bab44SThierry Reding 	/*
1405850bab44SThierry Reding 	 * The following accesses registers of the display controller, so make
1406850bab44SThierry Reding 	 * sure it's only executed when the output is attached to one.
1407850bab44SThierry Reding 	 */
1408850bab44SThierry Reding 	if (dc) {
1409850bab44SThierry Reding 		value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
1410850bab44SThierry Reding 		value &= ~SOR_ENABLE;
1411850bab44SThierry Reding 		tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
1412850bab44SThierry Reding 
1413850bab44SThierry Reding 		tegra_dc_commit(dc);
14146fad8f66SThierry Reding 	}
14156fad8f66SThierry Reding 
1416850bab44SThierry Reding 	err = tegra_sor_power_down(sor);
1417850bab44SThierry Reding 	if (err < 0)
1418850bab44SThierry Reding 		dev_err(sor->dev, "failed to power down SOR: %d\n", err);
1419850bab44SThierry Reding 
14209542c237SThierry Reding 	if (sor->aux) {
14219542c237SThierry Reding 		err = drm_dp_aux_disable(sor->aux);
1422850bab44SThierry Reding 		if (err < 0)
1423850bab44SThierry Reding 			dev_err(sor->dev, "failed to disable DP: %d\n", err);
14246fad8f66SThierry Reding 	}
14256fad8f66SThierry Reding 
1426850bab44SThierry Reding 	err = tegra_io_rail_power_off(TEGRA_IO_RAIL_LVDS);
1427850bab44SThierry Reding 	if (err < 0)
1428850bab44SThierry Reding 		dev_err(sor->dev, "failed to power off I/O rail: %d\n", err);
1429850bab44SThierry Reding 
1430850bab44SThierry Reding 	if (output->panel)
1431850bab44SThierry Reding 		drm_panel_unprepare(output->panel);
1432850bab44SThierry Reding 
1433aaff8bd2SThierry Reding 	pm_runtime_put(sor->dev);
14346fad8f66SThierry Reding }
14356fad8f66SThierry Reding 
1436459cc2c6SThierry Reding #if 0
1437459cc2c6SThierry Reding static int calc_h_ref_to_sync(const struct drm_display_mode *mode,
1438459cc2c6SThierry Reding 			      unsigned int *value)
1439459cc2c6SThierry Reding {
1440459cc2c6SThierry Reding 	unsigned int hfp, hsw, hbp, a = 0, b;
1441459cc2c6SThierry Reding 
1442459cc2c6SThierry Reding 	hfp = mode->hsync_start - mode->hdisplay;
1443459cc2c6SThierry Reding 	hsw = mode->hsync_end - mode->hsync_start;
1444459cc2c6SThierry Reding 	hbp = mode->htotal - mode->hsync_end;
1445459cc2c6SThierry Reding 
1446459cc2c6SThierry Reding 	pr_info("hfp: %u, hsw: %u, hbp: %u\n", hfp, hsw, hbp);
1447459cc2c6SThierry Reding 
1448459cc2c6SThierry Reding 	b = hfp - 1;
1449459cc2c6SThierry Reding 
1450459cc2c6SThierry Reding 	pr_info("a: %u, b: %u\n", a, b);
1451459cc2c6SThierry Reding 	pr_info("a + hsw + hbp = %u\n", a + hsw + hbp);
1452459cc2c6SThierry Reding 
1453459cc2c6SThierry Reding 	if (a + hsw + hbp <= 11) {
1454459cc2c6SThierry Reding 		a = 1 + 11 - hsw - hbp;
1455459cc2c6SThierry Reding 		pr_info("a: %u\n", a);
1456459cc2c6SThierry Reding 	}
1457459cc2c6SThierry Reding 
1458459cc2c6SThierry Reding 	if (a > b)
1459459cc2c6SThierry Reding 		return -EINVAL;
1460459cc2c6SThierry Reding 
1461459cc2c6SThierry Reding 	if (hsw < 1)
1462459cc2c6SThierry Reding 		return -EINVAL;
1463459cc2c6SThierry Reding 
1464459cc2c6SThierry Reding 	if (mode->hdisplay < 16)
1465459cc2c6SThierry Reding 		return -EINVAL;
1466459cc2c6SThierry Reding 
1467459cc2c6SThierry Reding 	if (value) {
1468459cc2c6SThierry Reding 		if (b > a && a % 2)
1469459cc2c6SThierry Reding 			*value = a + 1;
1470459cc2c6SThierry Reding 		else
1471459cc2c6SThierry Reding 			*value = a;
1472459cc2c6SThierry Reding 	}
1473459cc2c6SThierry Reding 
1474459cc2c6SThierry Reding 	return 0;
1475459cc2c6SThierry Reding }
1476459cc2c6SThierry Reding #endif
1477459cc2c6SThierry Reding 
1478850bab44SThierry Reding static void tegra_sor_edp_enable(struct drm_encoder *encoder)
14796fad8f66SThierry Reding {
1480850bab44SThierry Reding 	struct drm_display_mode *mode = &encoder->crtc->state->adjusted_mode;
14816fad8f66SThierry Reding 	struct tegra_output *output = encoder_to_output(encoder);
14826fad8f66SThierry Reding 	struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
14836b6b6042SThierry Reding 	struct tegra_sor *sor = to_sor(output);
148434fa183bSThierry Reding 	struct tegra_sor_config config;
1485c31efa7aSThierry Reding 	struct tegra_sor_state *state;
148634fa183bSThierry Reding 	struct drm_dp_link link;
148701b9bea0SThierry Reding 	u8 rate, lanes;
14882bd1dd39SThierry Reding 	unsigned int i;
148986f5c52dSThierry Reding 	int err = 0;
149028fe2076SThierry Reding 	u32 value;
149186f5c52dSThierry Reding 
1492c31efa7aSThierry Reding 	state = to_sor_state(output->connector.state);
14932bd1dd39SThierry Reding 
1494aaff8bd2SThierry Reding 	pm_runtime_get_sync(sor->dev);
14956b6b6042SThierry Reding 
14966fad8f66SThierry Reding 	if (output->panel)
14976fad8f66SThierry Reding 		drm_panel_prepare(output->panel);
14986fad8f66SThierry Reding 
14999542c237SThierry Reding 	err = drm_dp_aux_enable(sor->aux);
15006b6b6042SThierry Reding 	if (err < 0)
15016b6b6042SThierry Reding 		dev_err(sor->dev, "failed to enable DP: %d\n", err);
150234fa183bSThierry Reding 
15039542c237SThierry Reding 	err = drm_dp_link_probe(sor->aux, &link);
150434fa183bSThierry Reding 	if (err < 0) {
150501b9bea0SThierry Reding 		dev_err(sor->dev, "failed to probe eDP link: %d\n", err);
1506850bab44SThierry Reding 		return;
150734fa183bSThierry Reding 	}
15086b6b6042SThierry Reding 
150925bb2cecSThierry Reding 	/* switch to safe parent clock */
151025bb2cecSThierry Reding 	err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
15116b6b6042SThierry Reding 	if (err < 0)
15126b6b6042SThierry Reding 		dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
15136b6b6042SThierry Reding 
151434fa183bSThierry Reding 	memset(&config, 0, sizeof(config));
1515c31efa7aSThierry Reding 	config.bits_per_pixel = state->bpc * 3;
151634fa183bSThierry Reding 
1517a198359eSThierry Reding 	err = tegra_sor_compute_config(sor, mode, &config, &link);
151834fa183bSThierry Reding 	if (err < 0)
1519a198359eSThierry Reding 		dev_err(sor->dev, "failed to compute configuration: %d\n", err);
152034fa183bSThierry Reding 
15216b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
15226b6b6042SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
15236b6b6042SThierry Reding 	value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK;
15246b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
15256b6b6042SThierry Reding 
1526a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1527a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_BANDGAP_POWERDOWN;
1528a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
15296b6b6042SThierry Reding 	usleep_range(20, 100);
15306b6b6042SThierry Reding 
1531a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL3);
1532a9a9e4fdSThierry Reding 	value |= SOR_PLL3_PLL_VDD_MODE_3V3;
1533a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL3);
15346b6b6042SThierry Reding 
1535a9a9e4fdSThierry Reding 	value = SOR_PLL0_ICHPMP(0xf) | SOR_PLL0_VCOCAP_RST |
1536a9a9e4fdSThierry Reding 		SOR_PLL0_PLLREG_LEVEL_V45 | SOR_PLL0_RESISTOR_EXT;
1537a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
15386b6b6042SThierry Reding 
1539a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1540a9a9e4fdSThierry Reding 	value |= SOR_PLL2_SEQ_PLLCAPPD;
1541a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
1542a9a9e4fdSThierry Reding 	value |= SOR_PLL2_LVDS_ENABLE;
1543a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
15446b6b6042SThierry Reding 
1545a9a9e4fdSThierry Reding 	value = SOR_PLL1_TERM_COMPOUT | SOR_PLL1_TMDS_TERM;
1546a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL1);
15476b6b6042SThierry Reding 
15486b6b6042SThierry Reding 	while (true) {
1549a9a9e4fdSThierry Reding 		value = tegra_sor_readl(sor, SOR_PLL2);
1550a9a9e4fdSThierry Reding 		if ((value & SOR_PLL2_SEQ_PLLCAPPD_ENFORCE) == 0)
15516b6b6042SThierry Reding 			break;
15526b6b6042SThierry Reding 
15536b6b6042SThierry Reding 		usleep_range(250, 1000);
15546b6b6042SThierry Reding 	}
15556b6b6042SThierry Reding 
1556a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1557a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_POWERDOWN_OVERRIDE;
1558a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_PORT_POWERDOWN;
1559a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
15606b6b6042SThierry Reding 
15616b6b6042SThierry Reding 	/*
15626b6b6042SThierry Reding 	 * power up
15636b6b6042SThierry Reding 	 */
15646b6b6042SThierry Reding 
15656b6b6042SThierry Reding 	/* set safe link bandwidth (1.62 Gbps) */
15666b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
15676b6b6042SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
15686b6b6042SThierry Reding 	value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G1_62;
15696b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
15706b6b6042SThierry Reding 
15716b6b6042SThierry Reding 	/* step 1 */
1572a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1573a9a9e4fdSThierry Reding 	value |= SOR_PLL2_SEQ_PLLCAPPD_ENFORCE | SOR_PLL2_PORT_POWERDOWN |
1574a9a9e4fdSThierry Reding 		 SOR_PLL2_BANDGAP_POWERDOWN;
1575a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
15766b6b6042SThierry Reding 
1577a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL0);
1578a9a9e4fdSThierry Reding 	value |= SOR_PLL0_VCOPD | SOR_PLL0_PWR;
1579a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
15806b6b6042SThierry Reding 
1581a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
15826b6b6042SThierry Reding 	value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
1583a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
15846b6b6042SThierry Reding 
15856b6b6042SThierry Reding 	/* step 2 */
15866b6b6042SThierry Reding 	err = tegra_io_rail_power_on(TEGRA_IO_RAIL_LVDS);
1587850bab44SThierry Reding 	if (err < 0)
15886b6b6042SThierry Reding 		dev_err(sor->dev, "failed to power on I/O rail: %d\n", err);
15896b6b6042SThierry Reding 
15906b6b6042SThierry Reding 	usleep_range(5, 100);
15916b6b6042SThierry Reding 
15926b6b6042SThierry Reding 	/* step 3 */
1593a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1594a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_BANDGAP_POWERDOWN;
1595a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
15966b6b6042SThierry Reding 
15976b6b6042SThierry Reding 	usleep_range(20, 100);
15986b6b6042SThierry Reding 
15996b6b6042SThierry Reding 	/* step 4 */
1600a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL0);
1601a9a9e4fdSThierry Reding 	value &= ~SOR_PLL0_VCOPD;
1602a9a9e4fdSThierry Reding 	value &= ~SOR_PLL0_PWR;
1603a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
16046b6b6042SThierry Reding 
1605a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1606a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
1607a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
16086b6b6042SThierry Reding 
16096b6b6042SThierry Reding 	usleep_range(200, 1000);
16106b6b6042SThierry Reding 
16116b6b6042SThierry Reding 	/* step 5 */
1612a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
1613a9a9e4fdSThierry Reding 	value &= ~SOR_PLL2_PORT_POWERDOWN;
1614a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
16156b6b6042SThierry Reding 
161625bb2cecSThierry Reding 	/* switch to DP parent clock */
161725bb2cecSThierry Reding 	err = tegra_sor_set_parent_clock(sor, sor->clk_dp);
16186b6b6042SThierry Reding 	if (err < 0)
161925bb2cecSThierry Reding 		dev_err(sor->dev, "failed to set parent clock: %d\n", err);
16206b6b6042SThierry Reding 
1621899451b7SThierry Reding 	/* power DP lanes */
1622a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
1623899451b7SThierry Reding 
1624899451b7SThierry Reding 	if (link.num_lanes <= 2)
1625899451b7SThierry Reding 		value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2);
1626899451b7SThierry Reding 	else
1627899451b7SThierry Reding 		value |= SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2;
1628899451b7SThierry Reding 
1629899451b7SThierry Reding 	if (link.num_lanes <= 1)
1630899451b7SThierry Reding 		value &= ~SOR_DP_PADCTL_PD_TXD_1;
1631899451b7SThierry Reding 	else
1632899451b7SThierry Reding 		value |= SOR_DP_PADCTL_PD_TXD_1;
1633899451b7SThierry Reding 
1634899451b7SThierry Reding 	if (link.num_lanes == 0)
1635899451b7SThierry Reding 		value &= ~SOR_DP_PADCTL_PD_TXD_0;
1636899451b7SThierry Reding 	else
1637899451b7SThierry Reding 		value |= SOR_DP_PADCTL_PD_TXD_0;
1638899451b7SThierry Reding 
1639a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
16406b6b6042SThierry Reding 
1641a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
16426b6b6042SThierry Reding 	value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
16430c90a184SThierry Reding 	value |= SOR_DP_LINKCTL_LANE_COUNT(link.num_lanes);
1644a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
16456b6b6042SThierry Reding 
16466b6b6042SThierry Reding 	/* start lane sequencer */
16476b6b6042SThierry Reding 	value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN |
16486b6b6042SThierry Reding 		SOR_LANE_SEQ_CTL_POWER_STATE_UP;
16496b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
16506b6b6042SThierry Reding 
16516b6b6042SThierry Reding 	while (true) {
16526b6b6042SThierry Reding 		value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
16536b6b6042SThierry Reding 		if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
16546b6b6042SThierry Reding 			break;
16556b6b6042SThierry Reding 
16566b6b6042SThierry Reding 		usleep_range(250, 1000);
16576b6b6042SThierry Reding 	}
16586b6b6042SThierry Reding 
1659a4263fedSThierry Reding 	/* set link bandwidth */
16606b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
16616b6b6042SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
1662a4263fedSThierry Reding 	value |= drm_dp_link_rate_to_bw_code(link.rate) << 2;
16636b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
16646b6b6042SThierry Reding 
1665402f6bcdSThierry Reding 	tegra_sor_apply_config(sor, &config);
1666402f6bcdSThierry Reding 
1667402f6bcdSThierry Reding 	/* enable link */
1668a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
16696b6b6042SThierry Reding 	value |= SOR_DP_LINKCTL_ENABLE;
16706b6b6042SThierry Reding 	value |= SOR_DP_LINKCTL_ENHANCED_FRAME;
1671a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
16726b6b6042SThierry Reding 
16736b6b6042SThierry Reding 	for (i = 0, value = 0; i < 4; i++) {
16746b6b6042SThierry Reding 		unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
16756b6b6042SThierry Reding 				     SOR_DP_TPG_SCRAMBLER_GALIOS |
16766b6b6042SThierry Reding 				     SOR_DP_TPG_PATTERN_NONE;
16776b6b6042SThierry Reding 		value = (value << 8) | lane;
16786b6b6042SThierry Reding 	}
16796b6b6042SThierry Reding 
16806b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_TPG);
16816b6b6042SThierry Reding 
16826b6b6042SThierry Reding 	/* enable pad calibration logic */
1683a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
16846b6b6042SThierry Reding 	value |= SOR_DP_PADCTL_PAD_CAL_PD;
1685a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
16866b6b6042SThierry Reding 
16879542c237SThierry Reding 	err = drm_dp_link_probe(sor->aux, &link);
1688850bab44SThierry Reding 	if (err < 0)
168901b9bea0SThierry Reding 		dev_err(sor->dev, "failed to probe eDP link: %d\n", err);
16906b6b6042SThierry Reding 
16919542c237SThierry Reding 	err = drm_dp_link_power_up(sor->aux, &link);
1692850bab44SThierry Reding 	if (err < 0)
169301b9bea0SThierry Reding 		dev_err(sor->dev, "failed to power up eDP link: %d\n", err);
16946b6b6042SThierry Reding 
16959542c237SThierry Reding 	err = drm_dp_link_configure(sor->aux, &link);
1696850bab44SThierry Reding 	if (err < 0)
169701b9bea0SThierry Reding 		dev_err(sor->dev, "failed to configure eDP link: %d\n", err);
16986b6b6042SThierry Reding 
16996b6b6042SThierry Reding 	rate = drm_dp_link_rate_to_bw_code(link.rate);
17006b6b6042SThierry Reding 	lanes = link.num_lanes;
17016b6b6042SThierry Reding 
17026b6b6042SThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
17036b6b6042SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
17046b6b6042SThierry Reding 	value |= SOR_CLK_CNTRL_DP_LINK_SPEED(rate);
17056b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
17066b6b6042SThierry Reding 
1707a9a9e4fdSThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
17086b6b6042SThierry Reding 	value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
17096b6b6042SThierry Reding 	value |= SOR_DP_LINKCTL_LANE_COUNT(lanes);
17106b6b6042SThierry Reding 
17116b6b6042SThierry Reding 	if (link.capabilities & DP_LINK_CAP_ENHANCED_FRAMING)
17126b6b6042SThierry Reding 		value |= SOR_DP_LINKCTL_ENHANCED_FRAME;
17136b6b6042SThierry Reding 
1714a9a9e4fdSThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
17156b6b6042SThierry Reding 
17166b6b6042SThierry Reding 	/* disable training pattern generator */
17176b6b6042SThierry Reding 
17186b6b6042SThierry Reding 	for (i = 0; i < link.num_lanes; i++) {
17196b6b6042SThierry Reding 		unsigned long lane = SOR_DP_TPG_CHANNEL_CODING |
17206b6b6042SThierry Reding 				     SOR_DP_TPG_SCRAMBLER_GALIOS |
17216b6b6042SThierry Reding 				     SOR_DP_TPG_PATTERN_NONE;
17226b6b6042SThierry Reding 		value = (value << 8) | lane;
17236b6b6042SThierry Reding 	}
17246b6b6042SThierry Reding 
17256b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_TPG);
17266b6b6042SThierry Reding 
17276b6b6042SThierry Reding 	err = tegra_sor_dp_train_fast(sor, &link);
172801b9bea0SThierry Reding 	if (err < 0)
172901b9bea0SThierry Reding 		dev_err(sor->dev, "DP fast link training failed: %d\n", err);
17306b6b6042SThierry Reding 
17316b6b6042SThierry Reding 	dev_dbg(sor->dev, "fast link training succeeded\n");
17326b6b6042SThierry Reding 
17336b6b6042SThierry Reding 	err = tegra_sor_power_up(sor, 250);
1734850bab44SThierry Reding 	if (err < 0)
17356b6b6042SThierry Reding 		dev_err(sor->dev, "failed to power up SOR: %d\n", err);
17366b6b6042SThierry Reding 
17376b6b6042SThierry Reding 	/* CSTM (LVDS, link A/B, upper) */
1738143b1df2SStéphane Marchesin 	value = SOR_CSTM_LVDS | SOR_CSTM_LINK_ACT_A | SOR_CSTM_LINK_ACT_B |
17396b6b6042SThierry Reding 		SOR_CSTM_UPPER;
17406b6b6042SThierry Reding 	tegra_sor_writel(sor, value, SOR_CSTM);
17416b6b6042SThierry Reding 
17422bd1dd39SThierry Reding 	/* use DP-A protocol */
17432bd1dd39SThierry Reding 	value = tegra_sor_readl(sor, SOR_STATE1);
17442bd1dd39SThierry Reding 	value &= ~SOR_STATE_ASY_PROTOCOL_MASK;
17452bd1dd39SThierry Reding 	value |= SOR_STATE_ASY_PROTOCOL_DP_A;
17462bd1dd39SThierry Reding 	tegra_sor_writel(sor, value, SOR_STATE1);
17472bd1dd39SThierry Reding 
1748c31efa7aSThierry Reding 	tegra_sor_mode_set(sor, mode, state);
17492bd1dd39SThierry Reding 
17506b6b6042SThierry Reding 	/* PWM setup */
17516b6b6042SThierry Reding 	err = tegra_sor_setup_pwm(sor, 250);
1752850bab44SThierry Reding 	if (err < 0)
17536b6b6042SThierry Reding 		dev_err(sor->dev, "failed to setup PWM: %d\n", err);
17546b6b6042SThierry Reding 
1755666cb873SThierry Reding 	tegra_sor_update(sor);
1756666cb873SThierry Reding 
17576b6b6042SThierry Reding 	value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
17586b6b6042SThierry Reding 	value |= SOR_ENABLE;
17596b6b6042SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
17606b6b6042SThierry Reding 
1761666cb873SThierry Reding 	tegra_dc_commit(dc);
17626b6b6042SThierry Reding 
17636b6b6042SThierry Reding 	err = tegra_sor_attach(sor);
1764850bab44SThierry Reding 	if (err < 0)
17656b6b6042SThierry Reding 		dev_err(sor->dev, "failed to attach SOR: %d\n", err);
17666b6b6042SThierry Reding 
17676b6b6042SThierry Reding 	err = tegra_sor_wakeup(sor);
1768850bab44SThierry Reding 	if (err < 0)
17696b6b6042SThierry Reding 		dev_err(sor->dev, "failed to enable DC: %d\n", err);
17706b6b6042SThierry Reding 
17716fad8f66SThierry Reding 	if (output->panel)
17726fad8f66SThierry Reding 		drm_panel_enable(output->panel);
17736b6b6042SThierry Reding }
17746b6b6042SThierry Reding 
177582f1511cSThierry Reding static int
177682f1511cSThierry Reding tegra_sor_encoder_atomic_check(struct drm_encoder *encoder,
177782f1511cSThierry Reding 			       struct drm_crtc_state *crtc_state,
177882f1511cSThierry Reding 			       struct drm_connector_state *conn_state)
177982f1511cSThierry Reding {
178082f1511cSThierry Reding 	struct tegra_output *output = encoder_to_output(encoder);
1781c31efa7aSThierry Reding 	struct tegra_sor_state *state = to_sor_state(conn_state);
178282f1511cSThierry Reding 	struct tegra_dc *dc = to_tegra_dc(conn_state->crtc);
178382f1511cSThierry Reding 	unsigned long pclk = crtc_state->mode.clock * 1000;
178482f1511cSThierry Reding 	struct tegra_sor *sor = to_sor(output);
1785c31efa7aSThierry Reding 	struct drm_display_info *info;
178682f1511cSThierry Reding 	int err;
178782f1511cSThierry Reding 
1788c31efa7aSThierry Reding 	info = &output->connector.display_info;
1789c31efa7aSThierry Reding 
179082f1511cSThierry Reding 	err = tegra_dc_state_setup_clock(dc, crtc_state, sor->clk_parent,
179182f1511cSThierry Reding 					 pclk, 0);
179282f1511cSThierry Reding 	if (err < 0) {
179382f1511cSThierry Reding 		dev_err(output->dev, "failed to setup CRTC state: %d\n", err);
179482f1511cSThierry Reding 		return err;
179582f1511cSThierry Reding 	}
179682f1511cSThierry Reding 
1797c31efa7aSThierry Reding 	switch (info->bpc) {
1798c31efa7aSThierry Reding 	case 8:
1799c31efa7aSThierry Reding 	case 6:
1800c31efa7aSThierry Reding 		state->bpc = info->bpc;
1801c31efa7aSThierry Reding 		break;
1802c31efa7aSThierry Reding 
1803c31efa7aSThierry Reding 	default:
1804c31efa7aSThierry Reding 		DRM_DEBUG_KMS("%u bits-per-color not supported\n", info->bpc);
1805c31efa7aSThierry Reding 		state->bpc = 8;
1806c31efa7aSThierry Reding 		break;
1807c31efa7aSThierry Reding 	}
1808c31efa7aSThierry Reding 
180982f1511cSThierry Reding 	return 0;
181082f1511cSThierry Reding }
181182f1511cSThierry Reding 
1812459cc2c6SThierry Reding static const struct drm_encoder_helper_funcs tegra_sor_edp_helpers = {
1813850bab44SThierry Reding 	.disable = tegra_sor_edp_disable,
1814850bab44SThierry Reding 	.enable = tegra_sor_edp_enable,
181582f1511cSThierry Reding 	.atomic_check = tegra_sor_encoder_atomic_check,
18166b6b6042SThierry Reding };
18176b6b6042SThierry Reding 
1818459cc2c6SThierry Reding static inline u32 tegra_sor_hdmi_subpack(const u8 *ptr, size_t size)
1819459cc2c6SThierry Reding {
1820459cc2c6SThierry Reding 	u32 value = 0;
1821459cc2c6SThierry Reding 	size_t i;
1822459cc2c6SThierry Reding 
1823459cc2c6SThierry Reding 	for (i = size; i > 0; i--)
1824459cc2c6SThierry Reding 		value = (value << 8) | ptr[i - 1];
1825459cc2c6SThierry Reding 
1826459cc2c6SThierry Reding 	return value;
1827459cc2c6SThierry Reding }
1828459cc2c6SThierry Reding 
1829459cc2c6SThierry Reding static void tegra_sor_hdmi_write_infopack(struct tegra_sor *sor,
1830459cc2c6SThierry Reding 					  const void *data, size_t size)
1831459cc2c6SThierry Reding {
1832459cc2c6SThierry Reding 	const u8 *ptr = data;
1833459cc2c6SThierry Reding 	unsigned long offset;
1834459cc2c6SThierry Reding 	size_t i, j;
1835459cc2c6SThierry Reding 	u32 value;
1836459cc2c6SThierry Reding 
1837459cc2c6SThierry Reding 	switch (ptr[0]) {
1838459cc2c6SThierry Reding 	case HDMI_INFOFRAME_TYPE_AVI:
1839459cc2c6SThierry Reding 		offset = SOR_HDMI_AVI_INFOFRAME_HEADER;
1840459cc2c6SThierry Reding 		break;
1841459cc2c6SThierry Reding 
1842459cc2c6SThierry Reding 	case HDMI_INFOFRAME_TYPE_AUDIO:
1843459cc2c6SThierry Reding 		offset = SOR_HDMI_AUDIO_INFOFRAME_HEADER;
1844459cc2c6SThierry Reding 		break;
1845459cc2c6SThierry Reding 
1846459cc2c6SThierry Reding 	case HDMI_INFOFRAME_TYPE_VENDOR:
1847459cc2c6SThierry Reding 		offset = SOR_HDMI_VSI_INFOFRAME_HEADER;
1848459cc2c6SThierry Reding 		break;
1849459cc2c6SThierry Reding 
1850459cc2c6SThierry Reding 	default:
1851459cc2c6SThierry Reding 		dev_err(sor->dev, "unsupported infoframe type: %02x\n",
1852459cc2c6SThierry Reding 			ptr[0]);
1853459cc2c6SThierry Reding 		return;
1854459cc2c6SThierry Reding 	}
1855459cc2c6SThierry Reding 
1856459cc2c6SThierry Reding 	value = INFOFRAME_HEADER_TYPE(ptr[0]) |
1857459cc2c6SThierry Reding 		INFOFRAME_HEADER_VERSION(ptr[1]) |
1858459cc2c6SThierry Reding 		INFOFRAME_HEADER_LEN(ptr[2]);
1859459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, offset);
1860459cc2c6SThierry Reding 	offset++;
1861459cc2c6SThierry Reding 
1862459cc2c6SThierry Reding 	/*
1863459cc2c6SThierry Reding 	 * Each subpack contains 7 bytes, divided into:
1864459cc2c6SThierry Reding 	 * - subpack_low: bytes 0 - 3
1865459cc2c6SThierry Reding 	 * - subpack_high: bytes 4 - 6 (with byte 7 padded to 0x00)
1866459cc2c6SThierry Reding 	 */
1867459cc2c6SThierry Reding 	for (i = 3, j = 0; i < size; i += 7, j += 8) {
1868459cc2c6SThierry Reding 		size_t rem = size - i, num = min_t(size_t, rem, 4);
1869459cc2c6SThierry Reding 
1870459cc2c6SThierry Reding 		value = tegra_sor_hdmi_subpack(&ptr[i], num);
1871459cc2c6SThierry Reding 		tegra_sor_writel(sor, value, offset++);
1872459cc2c6SThierry Reding 
1873459cc2c6SThierry Reding 		num = min_t(size_t, rem - num, 3);
1874459cc2c6SThierry Reding 
1875459cc2c6SThierry Reding 		value = tegra_sor_hdmi_subpack(&ptr[i + 4], num);
1876459cc2c6SThierry Reding 		tegra_sor_writel(sor, value, offset++);
1877459cc2c6SThierry Reding 	}
1878459cc2c6SThierry Reding }
1879459cc2c6SThierry Reding 
1880459cc2c6SThierry Reding static int
1881459cc2c6SThierry Reding tegra_sor_hdmi_setup_avi_infoframe(struct tegra_sor *sor,
1882459cc2c6SThierry Reding 				   const struct drm_display_mode *mode)
1883459cc2c6SThierry Reding {
1884459cc2c6SThierry Reding 	u8 buffer[HDMI_INFOFRAME_SIZE(AVI)];
1885459cc2c6SThierry Reding 	struct hdmi_avi_infoframe frame;
1886459cc2c6SThierry Reding 	u32 value;
1887459cc2c6SThierry Reding 	int err;
1888459cc2c6SThierry Reding 
1889459cc2c6SThierry Reding 	/* disable AVI infoframe */
1890459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_HDMI_AVI_INFOFRAME_CTRL);
1891459cc2c6SThierry Reding 	value &= ~INFOFRAME_CTRL_SINGLE;
1892459cc2c6SThierry Reding 	value &= ~INFOFRAME_CTRL_OTHER;
1893459cc2c6SThierry Reding 	value &= ~INFOFRAME_CTRL_ENABLE;
1894459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HDMI_AVI_INFOFRAME_CTRL);
1895459cc2c6SThierry Reding 
1896459cc2c6SThierry Reding 	err = drm_hdmi_avi_infoframe_from_display_mode(&frame, mode);
1897459cc2c6SThierry Reding 	if (err < 0) {
1898459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to setup AVI infoframe: %d\n", err);
1899459cc2c6SThierry Reding 		return err;
1900459cc2c6SThierry Reding 	}
1901459cc2c6SThierry Reding 
1902459cc2c6SThierry Reding 	err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1903459cc2c6SThierry Reding 	if (err < 0) {
1904459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to pack AVI infoframe: %d\n", err);
1905459cc2c6SThierry Reding 		return err;
1906459cc2c6SThierry Reding 	}
1907459cc2c6SThierry Reding 
1908459cc2c6SThierry Reding 	tegra_sor_hdmi_write_infopack(sor, buffer, err);
1909459cc2c6SThierry Reding 
1910459cc2c6SThierry Reding 	/* enable AVI infoframe */
1911459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_HDMI_AVI_INFOFRAME_CTRL);
1912459cc2c6SThierry Reding 	value |= INFOFRAME_CTRL_CHECKSUM_ENABLE;
1913459cc2c6SThierry Reding 	value |= INFOFRAME_CTRL_ENABLE;
1914459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HDMI_AVI_INFOFRAME_CTRL);
1915459cc2c6SThierry Reding 
1916459cc2c6SThierry Reding 	return 0;
1917459cc2c6SThierry Reding }
1918459cc2c6SThierry Reding 
1919459cc2c6SThierry Reding static void tegra_sor_hdmi_disable_audio_infoframe(struct tegra_sor *sor)
1920459cc2c6SThierry Reding {
1921459cc2c6SThierry Reding 	u32 value;
1922459cc2c6SThierry Reding 
1923459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
1924459cc2c6SThierry Reding 	value &= ~INFOFRAME_CTRL_ENABLE;
1925459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
1926459cc2c6SThierry Reding }
1927459cc2c6SThierry Reding 
1928459cc2c6SThierry Reding static struct tegra_sor_hdmi_settings *
1929459cc2c6SThierry Reding tegra_sor_hdmi_find_settings(struct tegra_sor *sor, unsigned long frequency)
1930459cc2c6SThierry Reding {
1931459cc2c6SThierry Reding 	unsigned int i;
1932459cc2c6SThierry Reding 
1933459cc2c6SThierry Reding 	for (i = 0; i < sor->num_settings; i++)
1934459cc2c6SThierry Reding 		if (frequency <= sor->settings[i].frequency)
1935459cc2c6SThierry Reding 			return &sor->settings[i];
1936459cc2c6SThierry Reding 
1937459cc2c6SThierry Reding 	return NULL;
1938459cc2c6SThierry Reding }
1939459cc2c6SThierry Reding 
1940459cc2c6SThierry Reding static void tegra_sor_hdmi_disable(struct drm_encoder *encoder)
1941459cc2c6SThierry Reding {
1942459cc2c6SThierry Reding 	struct tegra_output *output = encoder_to_output(encoder);
1943459cc2c6SThierry Reding 	struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
1944459cc2c6SThierry Reding 	struct tegra_sor *sor = to_sor(output);
1945459cc2c6SThierry Reding 	u32 value;
1946459cc2c6SThierry Reding 	int err;
1947459cc2c6SThierry Reding 
1948459cc2c6SThierry Reding 	err = tegra_sor_detach(sor);
1949459cc2c6SThierry Reding 	if (err < 0)
1950459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to detach SOR: %d\n", err);
1951459cc2c6SThierry Reding 
1952459cc2c6SThierry Reding 	tegra_sor_writel(sor, 0, SOR_STATE1);
1953459cc2c6SThierry Reding 	tegra_sor_update(sor);
1954459cc2c6SThierry Reding 
1955459cc2c6SThierry Reding 	/* disable display to SOR clock */
1956459cc2c6SThierry Reding 	value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
1957459cc2c6SThierry Reding 	value &= ~SOR1_TIMING_CYA;
1958459cc2c6SThierry Reding 	value &= ~SOR1_ENABLE;
1959459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
1960459cc2c6SThierry Reding 
1961459cc2c6SThierry Reding 	tegra_dc_commit(dc);
1962459cc2c6SThierry Reding 
1963459cc2c6SThierry Reding 	err = tegra_sor_power_down(sor);
1964459cc2c6SThierry Reding 	if (err < 0)
1965459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to power down SOR: %d\n", err);
1966459cc2c6SThierry Reding 
1967459cc2c6SThierry Reding 	err = tegra_io_rail_power_off(TEGRA_IO_RAIL_HDMI);
1968459cc2c6SThierry Reding 	if (err < 0)
1969459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to power off HDMI rail: %d\n", err);
1970459cc2c6SThierry Reding 
1971aaff8bd2SThierry Reding 	pm_runtime_put(sor->dev);
1972459cc2c6SThierry Reding }
1973459cc2c6SThierry Reding 
1974459cc2c6SThierry Reding static void tegra_sor_hdmi_enable(struct drm_encoder *encoder)
1975459cc2c6SThierry Reding {
1976459cc2c6SThierry Reding 	struct tegra_output *output = encoder_to_output(encoder);
1977459cc2c6SThierry Reding 	unsigned int h_ref_to_sync = 1, pulse_start, max_ac;
1978459cc2c6SThierry Reding 	struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
1979459cc2c6SThierry Reding 	struct tegra_sor_hdmi_settings *settings;
1980459cc2c6SThierry Reding 	struct tegra_sor *sor = to_sor(output);
1981c31efa7aSThierry Reding 	struct tegra_sor_state *state;
1982459cc2c6SThierry Reding 	struct drm_display_mode *mode;
19832bd1dd39SThierry Reding 	unsigned int div;
1984459cc2c6SThierry Reding 	u32 value;
1985459cc2c6SThierry Reding 	int err;
1986459cc2c6SThierry Reding 
1987c31efa7aSThierry Reding 	state = to_sor_state(output->connector.state);
1988459cc2c6SThierry Reding 	mode = &encoder->crtc->state->adjusted_mode;
1989459cc2c6SThierry Reding 
1990aaff8bd2SThierry Reding 	pm_runtime_get_sync(sor->dev);
1991459cc2c6SThierry Reding 
199225bb2cecSThierry Reding 	/* switch to safe parent clock */
199325bb2cecSThierry Reding 	err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
1994459cc2c6SThierry Reding 	if (err < 0)
1995459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
1996459cc2c6SThierry Reding 
1997459cc2c6SThierry Reding 	div = clk_get_rate(sor->clk) / 1000000 * 4;
1998459cc2c6SThierry Reding 
1999459cc2c6SThierry Reding 	err = tegra_io_rail_power_on(TEGRA_IO_RAIL_HDMI);
2000459cc2c6SThierry Reding 	if (err < 0)
2001459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to power on HDMI rail: %d\n", err);
2002459cc2c6SThierry Reding 
2003459cc2c6SThierry Reding 	usleep_range(20, 100);
2004459cc2c6SThierry Reding 
2005459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
2006459cc2c6SThierry Reding 	value &= ~SOR_PLL2_BANDGAP_POWERDOWN;
2007459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
2008459cc2c6SThierry Reding 
2009459cc2c6SThierry Reding 	usleep_range(20, 100);
2010459cc2c6SThierry Reding 
2011459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL3);
2012459cc2c6SThierry Reding 	value &= ~SOR_PLL3_PLL_VDD_MODE_3V3;
2013459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL3);
2014459cc2c6SThierry Reding 
2015459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL0);
2016459cc2c6SThierry Reding 	value &= ~SOR_PLL0_VCOPD;
2017459cc2c6SThierry Reding 	value &= ~SOR_PLL0_PWR;
2018459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
2019459cc2c6SThierry Reding 
2020459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
2021459cc2c6SThierry Reding 	value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
2022459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
2023459cc2c6SThierry Reding 
2024459cc2c6SThierry Reding 	usleep_range(200, 400);
2025459cc2c6SThierry Reding 
2026459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL2);
2027459cc2c6SThierry Reding 	value &= ~SOR_PLL2_POWERDOWN_OVERRIDE;
2028459cc2c6SThierry Reding 	value &= ~SOR_PLL2_PORT_POWERDOWN;
2029459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL2);
2030459cc2c6SThierry Reding 
2031459cc2c6SThierry Reding 	usleep_range(20, 100);
2032459cc2c6SThierry Reding 
2033459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
2034459cc2c6SThierry Reding 	value |= SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 |
2035459cc2c6SThierry Reding 		 SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2;
2036459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
2037459cc2c6SThierry Reding 
2038459cc2c6SThierry Reding 	while (true) {
2039459cc2c6SThierry Reding 		value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
2040459cc2c6SThierry Reding 		if ((value & SOR_LANE_SEQ_CTL_STATE_BUSY) == 0)
2041459cc2c6SThierry Reding 			break;
2042459cc2c6SThierry Reding 
2043459cc2c6SThierry Reding 		usleep_range(250, 1000);
2044459cc2c6SThierry Reding 	}
2045459cc2c6SThierry Reding 
2046459cc2c6SThierry Reding 	value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN |
2047459cc2c6SThierry Reding 		SOR_LANE_SEQ_CTL_POWER_STATE_UP | SOR_LANE_SEQ_CTL_DELAY(5);
2048459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
2049459cc2c6SThierry Reding 
2050459cc2c6SThierry Reding 	while (true) {
2051459cc2c6SThierry Reding 		value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
2052459cc2c6SThierry Reding 		if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
2053459cc2c6SThierry Reding 			break;
2054459cc2c6SThierry Reding 
2055459cc2c6SThierry Reding 		usleep_range(250, 1000);
2056459cc2c6SThierry Reding 	}
2057459cc2c6SThierry Reding 
2058459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
2059459cc2c6SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
2060459cc2c6SThierry Reding 	value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
2061459cc2c6SThierry Reding 
2062459cc2c6SThierry Reding 	if (mode->clock < 340000)
2063459cc2c6SThierry Reding 		value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G2_70;
2064459cc2c6SThierry Reding 	else
2065459cc2c6SThierry Reding 		value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G5_40;
2066459cc2c6SThierry Reding 
2067459cc2c6SThierry Reding 	value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK;
2068459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
2069459cc2c6SThierry Reding 
2070459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_SPARE0);
2071459cc2c6SThierry Reding 	value |= SOR_DP_SPARE_DISP_VIDEO_PREAMBLE;
2072459cc2c6SThierry Reding 	value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
2073459cc2c6SThierry Reding 	value |= SOR_DP_SPARE_SEQ_ENABLE;
2074459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_SPARE0);
2075459cc2c6SThierry Reding 
2076459cc2c6SThierry Reding 	value = SOR_SEQ_CTL_PU_PC(0) | SOR_SEQ_CTL_PU_PC_ALT(0) |
2077459cc2c6SThierry Reding 		SOR_SEQ_CTL_PD_PC(8) | SOR_SEQ_CTL_PD_PC_ALT(8);
2078459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_SEQ_CTL);
2079459cc2c6SThierry Reding 
2080459cc2c6SThierry Reding 	value = SOR_SEQ_INST_DRIVE_PWM_OUT_LO | SOR_SEQ_INST_HALT |
2081459cc2c6SThierry Reding 		SOR_SEQ_INST_WAIT_VSYNC | SOR_SEQ_INST_WAIT(1);
2082459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_SEQ_INST(0));
2083459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_SEQ_INST(8));
2084459cc2c6SThierry Reding 
2085459cc2c6SThierry Reding 	/* program the reference clock */
2086459cc2c6SThierry Reding 	value = SOR_REFCLK_DIV_INT(div) | SOR_REFCLK_DIV_FRAC(div);
2087459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_REFCLK);
2088459cc2c6SThierry Reding 
2089459cc2c6SThierry Reding 	/* XXX don't hardcode */
2090459cc2c6SThierry Reding 	value = SOR_XBAR_CTRL_LINK1_XSEL(4, 4) |
2091459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK1_XSEL(3, 3) |
2092459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK1_XSEL(2, 2) |
2093459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK1_XSEL(1, 1) |
2094459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK1_XSEL(0, 0) |
2095459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK0_XSEL(4, 4) |
2096459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK0_XSEL(3, 3) |
2097459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK0_XSEL(2, 0) |
2098459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK0_XSEL(1, 1) |
2099459cc2c6SThierry Reding 		SOR_XBAR_CTRL_LINK0_XSEL(0, 2);
2100459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_XBAR_CTRL);
2101459cc2c6SThierry Reding 
2102459cc2c6SThierry Reding 	tegra_sor_writel(sor, 0x00000000, SOR_XBAR_POL);
2103459cc2c6SThierry Reding 
210425bb2cecSThierry Reding 	/* switch to parent clock */
2105*618dee39SThierry Reding 	err = clk_set_parent(sor->clk_src, sor->clk_parent);
2106*618dee39SThierry Reding 	if (err < 0)
2107*618dee39SThierry Reding 		dev_err(sor->dev, "failed to set source clock: %d\n", err);
2108*618dee39SThierry Reding 
2109*618dee39SThierry Reding 	err = tegra_sor_set_parent_clock(sor, sor->clk_src);
2110459cc2c6SThierry Reding 	if (err < 0)
2111459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to set parent clock: %d\n", err);
2112459cc2c6SThierry Reding 
2113459cc2c6SThierry Reding 	value = SOR_INPUT_CONTROL_HDMI_SRC_SELECT(dc->pipe);
2114459cc2c6SThierry Reding 
2115459cc2c6SThierry Reding 	/* XXX is this the proper check? */
2116459cc2c6SThierry Reding 	if (mode->clock < 75000)
2117459cc2c6SThierry Reding 		value |= SOR_INPUT_CONTROL_ARM_VIDEO_RANGE_LIMITED;
2118459cc2c6SThierry Reding 
2119459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_INPUT_CONTROL);
2120459cc2c6SThierry Reding 
2121459cc2c6SThierry Reding 	max_ac = ((mode->htotal - mode->hdisplay) - SOR_REKEY - 18) / 32;
2122459cc2c6SThierry Reding 
2123459cc2c6SThierry Reding 	value = SOR_HDMI_CTRL_ENABLE | SOR_HDMI_CTRL_MAX_AC_PACKET(max_ac) |
2124459cc2c6SThierry Reding 		SOR_HDMI_CTRL_AUDIO_LAYOUT | SOR_HDMI_CTRL_REKEY(SOR_REKEY);
2125459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HDMI_CTRL);
2126459cc2c6SThierry Reding 
2127459cc2c6SThierry Reding 	/* H_PULSE2 setup */
2128459cc2c6SThierry Reding 	pulse_start = h_ref_to_sync + (mode->hsync_end - mode->hsync_start) +
2129459cc2c6SThierry Reding 		      (mode->htotal - mode->hsync_end) - 10;
2130459cc2c6SThierry Reding 
2131459cc2c6SThierry Reding 	value = PULSE_LAST_END_A | PULSE_QUAL_VACTIVE |
2132459cc2c6SThierry Reding 		PULSE_POLARITY_HIGH | PULSE_MODE_NORMAL;
2133459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_CONTROL);
2134459cc2c6SThierry Reding 
2135459cc2c6SThierry Reding 	value = PULSE_END(pulse_start + 8) | PULSE_START(pulse_start);
2136459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_POSITION_A);
2137459cc2c6SThierry Reding 
2138459cc2c6SThierry Reding 	value = tegra_dc_readl(dc, DC_DISP_DISP_SIGNAL_OPTIONS0);
2139459cc2c6SThierry Reding 	value |= H_PULSE2_ENABLE;
2140459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_SIGNAL_OPTIONS0);
2141459cc2c6SThierry Reding 
2142459cc2c6SThierry Reding 	/* infoframe setup */
2143459cc2c6SThierry Reding 	err = tegra_sor_hdmi_setup_avi_infoframe(sor, mode);
2144459cc2c6SThierry Reding 	if (err < 0)
2145459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to setup AVI infoframe: %d\n", err);
2146459cc2c6SThierry Reding 
2147459cc2c6SThierry Reding 	/* XXX HDMI audio support not implemented yet */
2148459cc2c6SThierry Reding 	tegra_sor_hdmi_disable_audio_infoframe(sor);
2149459cc2c6SThierry Reding 
2150459cc2c6SThierry Reding 	/* use single TMDS protocol */
2151459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_STATE1);
2152459cc2c6SThierry Reding 	value &= ~SOR_STATE_ASY_PROTOCOL_MASK;
2153459cc2c6SThierry Reding 	value |= SOR_STATE_ASY_PROTOCOL_SINGLE_TMDS_A;
2154459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_STATE1);
2155459cc2c6SThierry Reding 
2156459cc2c6SThierry Reding 	/* power up pad calibration */
2157459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
2158459cc2c6SThierry Reding 	value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
2159459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
2160459cc2c6SThierry Reding 
2161459cc2c6SThierry Reding 	/* production settings */
2162459cc2c6SThierry Reding 	settings = tegra_sor_hdmi_find_settings(sor, mode->clock * 1000);
2163db8b42fbSDan Carpenter 	if (!settings) {
2164db8b42fbSDan Carpenter 		dev_err(sor->dev, "no settings for pixel clock %d Hz\n",
2165db8b42fbSDan Carpenter 			mode->clock * 1000);
2166459cc2c6SThierry Reding 		return;
2167459cc2c6SThierry Reding 	}
2168459cc2c6SThierry Reding 
2169459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL0);
2170459cc2c6SThierry Reding 	value &= ~SOR_PLL0_ICHPMP_MASK;
2171459cc2c6SThierry Reding 	value &= ~SOR_PLL0_VCOCAP_MASK;
2172459cc2c6SThierry Reding 	value |= SOR_PLL0_ICHPMP(settings->ichpmp);
2173459cc2c6SThierry Reding 	value |= SOR_PLL0_VCOCAP(settings->vcocap);
2174459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL0);
2175459cc2c6SThierry Reding 
2176459cc2c6SThierry Reding 	tegra_sor_dp_term_calibrate(sor);
2177459cc2c6SThierry Reding 
2178459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL1);
2179459cc2c6SThierry Reding 	value &= ~SOR_PLL1_LOADADJ_MASK;
2180459cc2c6SThierry Reding 	value |= SOR_PLL1_LOADADJ(settings->loadadj);
2181459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL1);
2182459cc2c6SThierry Reding 
2183459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_PLL3);
2184459cc2c6SThierry Reding 	value &= ~SOR_PLL3_BG_VREF_LEVEL_MASK;
2185459cc2c6SThierry Reding 	value |= SOR_PLL3_BG_VREF_LEVEL(settings->bg_vref);
2186459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_PLL3);
2187459cc2c6SThierry Reding 
2188459cc2c6SThierry Reding 	value = settings->drive_current[0] << 24 |
2189459cc2c6SThierry Reding 		settings->drive_current[1] << 16 |
2190459cc2c6SThierry Reding 		settings->drive_current[2] <<  8 |
2191459cc2c6SThierry Reding 		settings->drive_current[3] <<  0;
2192459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_DRIVE_CURRENT0);
2193459cc2c6SThierry Reding 
2194459cc2c6SThierry Reding 	value = settings->preemphasis[0] << 24 |
2195459cc2c6SThierry Reding 		settings->preemphasis[1] << 16 |
2196459cc2c6SThierry Reding 		settings->preemphasis[2] <<  8 |
2197459cc2c6SThierry Reding 		settings->preemphasis[3] <<  0;
2198459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_LANE_PREEMPHASIS0);
2199459cc2c6SThierry Reding 
2200459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
2201459cc2c6SThierry Reding 	value &= ~SOR_DP_PADCTL_TX_PU_MASK;
2202459cc2c6SThierry Reding 	value |= SOR_DP_PADCTL_TX_PU_ENABLE;
2203459cc2c6SThierry Reding 	value |= SOR_DP_PADCTL_TX_PU(settings->tx_pu);
2204459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
2205459cc2c6SThierry Reding 
2206459cc2c6SThierry Reding 	/* power down pad calibration */
2207459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_DP_PADCTL0);
2208459cc2c6SThierry Reding 	value |= SOR_DP_PADCTL_PAD_CAL_PD;
2209459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_DP_PADCTL0);
2210459cc2c6SThierry Reding 
2211459cc2c6SThierry Reding 	/* miscellaneous display controller settings */
2212459cc2c6SThierry Reding 	value = VSYNC_H_POSITION(1);
2213459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_TIMING_OPTIONS);
2214459cc2c6SThierry Reding 
2215459cc2c6SThierry Reding 	value = tegra_dc_readl(dc, DC_DISP_DISP_COLOR_CONTROL);
2216459cc2c6SThierry Reding 	value &= ~DITHER_CONTROL_MASK;
2217459cc2c6SThierry Reding 	value &= ~BASE_COLOR_SIZE_MASK;
2218459cc2c6SThierry Reding 
2219c31efa7aSThierry Reding 	switch (state->bpc) {
2220459cc2c6SThierry Reding 	case 6:
2221459cc2c6SThierry Reding 		value |= BASE_COLOR_SIZE_666;
2222459cc2c6SThierry Reding 		break;
2223459cc2c6SThierry Reding 
2224459cc2c6SThierry Reding 	case 8:
2225459cc2c6SThierry Reding 		value |= BASE_COLOR_SIZE_888;
2226459cc2c6SThierry Reding 		break;
2227459cc2c6SThierry Reding 
2228459cc2c6SThierry Reding 	default:
2229c31efa7aSThierry Reding 		WARN(1, "%u bits-per-color not supported\n", state->bpc);
2230c31efa7aSThierry Reding 		value |= BASE_COLOR_SIZE_888;
2231459cc2c6SThierry Reding 		break;
2232459cc2c6SThierry Reding 	}
2233459cc2c6SThierry Reding 
2234459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_COLOR_CONTROL);
2235459cc2c6SThierry Reding 
2236459cc2c6SThierry Reding 	err = tegra_sor_power_up(sor, 250);
2237459cc2c6SThierry Reding 	if (err < 0)
2238459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to power up SOR: %d\n", err);
2239459cc2c6SThierry Reding 
22402bd1dd39SThierry Reding 	/* configure dynamic range of output */
2241459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_HEAD_STATE0(dc->pipe));
2242459cc2c6SThierry Reding 	value &= ~SOR_HEAD_STATE_RANGECOMPRESS_MASK;
2243459cc2c6SThierry Reding 	value &= ~SOR_HEAD_STATE_DYNRANGE_MASK;
2244459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE0(dc->pipe));
2245459cc2c6SThierry Reding 
22462bd1dd39SThierry Reding 	/* configure colorspace */
2247459cc2c6SThierry Reding 	value = tegra_sor_readl(sor, SOR_HEAD_STATE0(dc->pipe));
2248459cc2c6SThierry Reding 	value &= ~SOR_HEAD_STATE_COLORSPACE_MASK;
2249459cc2c6SThierry Reding 	value |= SOR_HEAD_STATE_COLORSPACE_RGB;
2250459cc2c6SThierry Reding 	tegra_sor_writel(sor, value, SOR_HEAD_STATE0(dc->pipe));
2251459cc2c6SThierry Reding 
2252c31efa7aSThierry Reding 	tegra_sor_mode_set(sor, mode, state);
2253459cc2c6SThierry Reding 
2254459cc2c6SThierry Reding 	tegra_sor_update(sor);
2255459cc2c6SThierry Reding 
2256459cc2c6SThierry Reding 	err = tegra_sor_attach(sor);
2257459cc2c6SThierry Reding 	if (err < 0)
2258459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to attach SOR: %d\n", err);
2259459cc2c6SThierry Reding 
2260459cc2c6SThierry Reding 	/* enable display to SOR clock and generate HDMI preamble */
2261459cc2c6SThierry Reding 	value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
2262459cc2c6SThierry Reding 	value |= SOR1_ENABLE | SOR1_TIMING_CYA;
2263459cc2c6SThierry Reding 	tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
2264459cc2c6SThierry Reding 
2265459cc2c6SThierry Reding 	tegra_dc_commit(dc);
2266459cc2c6SThierry Reding 
2267459cc2c6SThierry Reding 	err = tegra_sor_wakeup(sor);
2268459cc2c6SThierry Reding 	if (err < 0)
2269459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to wakeup SOR: %d\n", err);
2270459cc2c6SThierry Reding }
2271459cc2c6SThierry Reding 
2272459cc2c6SThierry Reding static const struct drm_encoder_helper_funcs tegra_sor_hdmi_helpers = {
2273459cc2c6SThierry Reding 	.disable = tegra_sor_hdmi_disable,
2274459cc2c6SThierry Reding 	.enable = tegra_sor_hdmi_enable,
2275459cc2c6SThierry Reding 	.atomic_check = tegra_sor_encoder_atomic_check,
2276459cc2c6SThierry Reding };
2277459cc2c6SThierry Reding 
22786b6b6042SThierry Reding static int tegra_sor_init(struct host1x_client *client)
22796b6b6042SThierry Reding {
22809910f5c4SThierry Reding 	struct drm_device *drm = dev_get_drvdata(client->parent);
2281459cc2c6SThierry Reding 	const struct drm_encoder_helper_funcs *helpers = NULL;
22826b6b6042SThierry Reding 	struct tegra_sor *sor = host1x_client_to_sor(client);
2283459cc2c6SThierry Reding 	int connector = DRM_MODE_CONNECTOR_Unknown;
2284459cc2c6SThierry Reding 	int encoder = DRM_MODE_ENCODER_NONE;
22856b6b6042SThierry Reding 	int err;
22866b6b6042SThierry Reding 
22879542c237SThierry Reding 	if (!sor->aux) {
2288459cc2c6SThierry Reding 		if (sor->soc->supports_hdmi) {
2289459cc2c6SThierry Reding 			connector = DRM_MODE_CONNECTOR_HDMIA;
2290459cc2c6SThierry Reding 			encoder = DRM_MODE_ENCODER_TMDS;
2291459cc2c6SThierry Reding 			helpers = &tegra_sor_hdmi_helpers;
2292459cc2c6SThierry Reding 		} else if (sor->soc->supports_lvds) {
2293459cc2c6SThierry Reding 			connector = DRM_MODE_CONNECTOR_LVDS;
2294459cc2c6SThierry Reding 			encoder = DRM_MODE_ENCODER_LVDS;
2295459cc2c6SThierry Reding 		}
2296459cc2c6SThierry Reding 	} else {
2297459cc2c6SThierry Reding 		if (sor->soc->supports_edp) {
2298459cc2c6SThierry Reding 			connector = DRM_MODE_CONNECTOR_eDP;
2299459cc2c6SThierry Reding 			encoder = DRM_MODE_ENCODER_TMDS;
2300459cc2c6SThierry Reding 			helpers = &tegra_sor_edp_helpers;
2301459cc2c6SThierry Reding 		} else if (sor->soc->supports_dp) {
2302459cc2c6SThierry Reding 			connector = DRM_MODE_CONNECTOR_DisplayPort;
2303459cc2c6SThierry Reding 			encoder = DRM_MODE_ENCODER_TMDS;
2304459cc2c6SThierry Reding 		}
2305459cc2c6SThierry Reding 	}
23066b6b6042SThierry Reding 
23076b6b6042SThierry Reding 	sor->output.dev = sor->dev;
23086b6b6042SThierry Reding 
23096fad8f66SThierry Reding 	drm_connector_init(drm, &sor->output.connector,
23106fad8f66SThierry Reding 			   &tegra_sor_connector_funcs,
2311459cc2c6SThierry Reding 			   connector);
23126fad8f66SThierry Reding 	drm_connector_helper_add(&sor->output.connector,
23136fad8f66SThierry Reding 				 &tegra_sor_connector_helper_funcs);
23146fad8f66SThierry Reding 	sor->output.connector.dpms = DRM_MODE_DPMS_OFF;
23156fad8f66SThierry Reding 
23166fad8f66SThierry Reding 	drm_encoder_init(drm, &sor->output.encoder, &tegra_sor_encoder_funcs,
231713a3d91fSVille Syrjälä 			 encoder, NULL);
2318459cc2c6SThierry Reding 	drm_encoder_helper_add(&sor->output.encoder, helpers);
23196fad8f66SThierry Reding 
23206fad8f66SThierry Reding 	drm_mode_connector_attach_encoder(&sor->output.connector,
23216fad8f66SThierry Reding 					  &sor->output.encoder);
23226fad8f66SThierry Reding 	drm_connector_register(&sor->output.connector);
23236fad8f66SThierry Reding 
2324ea130b24SThierry Reding 	err = tegra_output_init(drm, &sor->output);
2325ea130b24SThierry Reding 	if (err < 0) {
2326ea130b24SThierry Reding 		dev_err(client->dev, "failed to initialize output: %d\n", err);
2327ea130b24SThierry Reding 		return err;
2328ea130b24SThierry Reding 	}
23296fad8f66SThierry Reding 
2330ea130b24SThierry Reding 	sor->output.encoder.possible_crtcs = 0x3;
23316b6b6042SThierry Reding 
2332a82752e1SThierry Reding 	if (IS_ENABLED(CONFIG_DEBUG_FS)) {
23331b0c7b48SThierry Reding 		err = tegra_sor_debugfs_init(sor, drm->primary);
2334a82752e1SThierry Reding 		if (err < 0)
2335a82752e1SThierry Reding 			dev_err(sor->dev, "debugfs setup failed: %d\n", err);
2336a82752e1SThierry Reding 	}
2337a82752e1SThierry Reding 
23389542c237SThierry Reding 	if (sor->aux) {
23399542c237SThierry Reding 		err = drm_dp_aux_attach(sor->aux, &sor->output);
23406b6b6042SThierry Reding 		if (err < 0) {
23416b6b6042SThierry Reding 			dev_err(sor->dev, "failed to attach DP: %d\n", err);
23426b6b6042SThierry Reding 			return err;
23436b6b6042SThierry Reding 		}
23446b6b6042SThierry Reding 	}
23456b6b6042SThierry Reding 
2346535a65dbSTomeu Vizoso 	/*
2347535a65dbSTomeu Vizoso 	 * XXX: Remove this reset once proper hand-over from firmware to
2348535a65dbSTomeu Vizoso 	 * kernel is possible.
2349535a65dbSTomeu Vizoso 	 */
2350535a65dbSTomeu Vizoso 	err = reset_control_assert(sor->rst);
2351535a65dbSTomeu Vizoso 	if (err < 0) {
2352535a65dbSTomeu Vizoso 		dev_err(sor->dev, "failed to assert SOR reset: %d\n", err);
2353535a65dbSTomeu Vizoso 		return err;
2354535a65dbSTomeu Vizoso 	}
2355535a65dbSTomeu Vizoso 
23566fad8f66SThierry Reding 	err = clk_prepare_enable(sor->clk);
23576fad8f66SThierry Reding 	if (err < 0) {
23586fad8f66SThierry Reding 		dev_err(sor->dev, "failed to enable clock: %d\n", err);
23596fad8f66SThierry Reding 		return err;
23606fad8f66SThierry Reding 	}
23616fad8f66SThierry Reding 
2362535a65dbSTomeu Vizoso 	usleep_range(1000, 3000);
2363535a65dbSTomeu Vizoso 
2364535a65dbSTomeu Vizoso 	err = reset_control_deassert(sor->rst);
2365535a65dbSTomeu Vizoso 	if (err < 0) {
2366535a65dbSTomeu Vizoso 		dev_err(sor->dev, "failed to deassert SOR reset: %d\n", err);
2367535a65dbSTomeu Vizoso 		return err;
2368535a65dbSTomeu Vizoso 	}
2369535a65dbSTomeu Vizoso 
23706fad8f66SThierry Reding 	err = clk_prepare_enable(sor->clk_safe);
23716fad8f66SThierry Reding 	if (err < 0)
23726fad8f66SThierry Reding 		return err;
23736fad8f66SThierry Reding 
23746fad8f66SThierry Reding 	err = clk_prepare_enable(sor->clk_dp);
23756fad8f66SThierry Reding 	if (err < 0)
23766fad8f66SThierry Reding 		return err;
23776fad8f66SThierry Reding 
23786b6b6042SThierry Reding 	return 0;
23796b6b6042SThierry Reding }
23806b6b6042SThierry Reding 
23816b6b6042SThierry Reding static int tegra_sor_exit(struct host1x_client *client)
23826b6b6042SThierry Reding {
23836b6b6042SThierry Reding 	struct tegra_sor *sor = host1x_client_to_sor(client);
23846b6b6042SThierry Reding 	int err;
23856b6b6042SThierry Reding 
2386328ec69eSThierry Reding 	tegra_output_exit(&sor->output);
2387328ec69eSThierry Reding 
23889542c237SThierry Reding 	if (sor->aux) {
23899542c237SThierry Reding 		err = drm_dp_aux_detach(sor->aux);
23906b6b6042SThierry Reding 		if (err < 0) {
23916b6b6042SThierry Reding 			dev_err(sor->dev, "failed to detach DP: %d\n", err);
23926b6b6042SThierry Reding 			return err;
23936b6b6042SThierry Reding 		}
23946b6b6042SThierry Reding 	}
23956b6b6042SThierry Reding 
23966fad8f66SThierry Reding 	clk_disable_unprepare(sor->clk_safe);
23976fad8f66SThierry Reding 	clk_disable_unprepare(sor->clk_dp);
23986fad8f66SThierry Reding 	clk_disable_unprepare(sor->clk);
23996fad8f66SThierry Reding 
24004009c224SThierry Reding 	if (IS_ENABLED(CONFIG_DEBUG_FS))
24014009c224SThierry Reding 		tegra_sor_debugfs_exit(sor);
2402a82752e1SThierry Reding 
24036b6b6042SThierry Reding 	return 0;
24046b6b6042SThierry Reding }
24056b6b6042SThierry Reding 
24066b6b6042SThierry Reding static const struct host1x_client_ops sor_client_ops = {
24076b6b6042SThierry Reding 	.init = tegra_sor_init,
24086b6b6042SThierry Reding 	.exit = tegra_sor_exit,
24096b6b6042SThierry Reding };
24106b6b6042SThierry Reding 
2411459cc2c6SThierry Reding static const struct tegra_sor_ops tegra_sor_edp_ops = {
2412459cc2c6SThierry Reding 	.name = "eDP",
2413459cc2c6SThierry Reding };
2414459cc2c6SThierry Reding 
2415459cc2c6SThierry Reding static int tegra_sor_hdmi_probe(struct tegra_sor *sor)
2416459cc2c6SThierry Reding {
2417459cc2c6SThierry Reding 	int err;
2418459cc2c6SThierry Reding 
2419459cc2c6SThierry Reding 	sor->avdd_io_supply = devm_regulator_get(sor->dev, "avdd-io");
2420459cc2c6SThierry Reding 	if (IS_ERR(sor->avdd_io_supply)) {
2421459cc2c6SThierry Reding 		dev_err(sor->dev, "cannot get AVDD I/O supply: %ld\n",
2422459cc2c6SThierry Reding 			PTR_ERR(sor->avdd_io_supply));
2423459cc2c6SThierry Reding 		return PTR_ERR(sor->avdd_io_supply);
2424459cc2c6SThierry Reding 	}
2425459cc2c6SThierry Reding 
2426459cc2c6SThierry Reding 	err = regulator_enable(sor->avdd_io_supply);
2427459cc2c6SThierry Reding 	if (err < 0) {
2428459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to enable AVDD I/O supply: %d\n",
2429459cc2c6SThierry Reding 			err);
2430459cc2c6SThierry Reding 		return err;
2431459cc2c6SThierry Reding 	}
2432459cc2c6SThierry Reding 
2433459cc2c6SThierry Reding 	sor->vdd_pll_supply = devm_regulator_get(sor->dev, "vdd-pll");
2434459cc2c6SThierry Reding 	if (IS_ERR(sor->vdd_pll_supply)) {
2435459cc2c6SThierry Reding 		dev_err(sor->dev, "cannot get VDD PLL supply: %ld\n",
2436459cc2c6SThierry Reding 			PTR_ERR(sor->vdd_pll_supply));
2437459cc2c6SThierry Reding 		return PTR_ERR(sor->vdd_pll_supply);
2438459cc2c6SThierry Reding 	}
2439459cc2c6SThierry Reding 
2440459cc2c6SThierry Reding 	err = regulator_enable(sor->vdd_pll_supply);
2441459cc2c6SThierry Reding 	if (err < 0) {
2442459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to enable VDD PLL supply: %d\n",
2443459cc2c6SThierry Reding 			err);
2444459cc2c6SThierry Reding 		return err;
2445459cc2c6SThierry Reding 	}
2446459cc2c6SThierry Reding 
2447459cc2c6SThierry Reding 	sor->hdmi_supply = devm_regulator_get(sor->dev, "hdmi");
2448459cc2c6SThierry Reding 	if (IS_ERR(sor->hdmi_supply)) {
2449459cc2c6SThierry Reding 		dev_err(sor->dev, "cannot get HDMI supply: %ld\n",
2450459cc2c6SThierry Reding 			PTR_ERR(sor->hdmi_supply));
2451459cc2c6SThierry Reding 		return PTR_ERR(sor->hdmi_supply);
2452459cc2c6SThierry Reding 	}
2453459cc2c6SThierry Reding 
2454459cc2c6SThierry Reding 	err = regulator_enable(sor->hdmi_supply);
2455459cc2c6SThierry Reding 	if (err < 0) {
2456459cc2c6SThierry Reding 		dev_err(sor->dev, "failed to enable HDMI supply: %d\n", err);
2457459cc2c6SThierry Reding 		return err;
2458459cc2c6SThierry Reding 	}
2459459cc2c6SThierry Reding 
2460459cc2c6SThierry Reding 	return 0;
2461459cc2c6SThierry Reding }
2462459cc2c6SThierry Reding 
2463459cc2c6SThierry Reding static int tegra_sor_hdmi_remove(struct tegra_sor *sor)
2464459cc2c6SThierry Reding {
2465459cc2c6SThierry Reding 	regulator_disable(sor->hdmi_supply);
2466459cc2c6SThierry Reding 	regulator_disable(sor->vdd_pll_supply);
2467459cc2c6SThierry Reding 	regulator_disable(sor->avdd_io_supply);
2468459cc2c6SThierry Reding 
2469459cc2c6SThierry Reding 	return 0;
2470459cc2c6SThierry Reding }
2471459cc2c6SThierry Reding 
2472459cc2c6SThierry Reding static const struct tegra_sor_ops tegra_sor_hdmi_ops = {
2473459cc2c6SThierry Reding 	.name = "HDMI",
2474459cc2c6SThierry Reding 	.probe = tegra_sor_hdmi_probe,
2475459cc2c6SThierry Reding 	.remove = tegra_sor_hdmi_remove,
2476459cc2c6SThierry Reding };
2477459cc2c6SThierry Reding 
2478459cc2c6SThierry Reding static const struct tegra_sor_soc tegra124_sor = {
2479459cc2c6SThierry Reding 	.supports_edp = true,
2480459cc2c6SThierry Reding 	.supports_lvds = true,
2481459cc2c6SThierry Reding 	.supports_hdmi = false,
2482459cc2c6SThierry Reding 	.supports_dp = false,
2483459cc2c6SThierry Reding };
2484459cc2c6SThierry Reding 
2485459cc2c6SThierry Reding static const struct tegra_sor_soc tegra210_sor = {
2486459cc2c6SThierry Reding 	.supports_edp = true,
2487459cc2c6SThierry Reding 	.supports_lvds = false,
2488459cc2c6SThierry Reding 	.supports_hdmi = false,
2489459cc2c6SThierry Reding 	.supports_dp = false,
2490459cc2c6SThierry Reding };
2491459cc2c6SThierry Reding 
2492459cc2c6SThierry Reding static const struct tegra_sor_soc tegra210_sor1 = {
2493459cc2c6SThierry Reding 	.supports_edp = false,
2494459cc2c6SThierry Reding 	.supports_lvds = false,
2495459cc2c6SThierry Reding 	.supports_hdmi = true,
2496459cc2c6SThierry Reding 	.supports_dp = true,
2497459cc2c6SThierry Reding 
2498459cc2c6SThierry Reding 	.num_settings = ARRAY_SIZE(tegra210_sor_hdmi_defaults),
2499459cc2c6SThierry Reding 	.settings = tegra210_sor_hdmi_defaults,
2500459cc2c6SThierry Reding };
2501459cc2c6SThierry Reding 
2502459cc2c6SThierry Reding static const struct of_device_id tegra_sor_of_match[] = {
2503459cc2c6SThierry Reding 	{ .compatible = "nvidia,tegra210-sor1", .data = &tegra210_sor1 },
2504459cc2c6SThierry Reding 	{ .compatible = "nvidia,tegra210-sor", .data = &tegra210_sor },
2505459cc2c6SThierry Reding 	{ .compatible = "nvidia,tegra124-sor", .data = &tegra124_sor },
2506459cc2c6SThierry Reding 	{ },
2507459cc2c6SThierry Reding };
2508459cc2c6SThierry Reding MODULE_DEVICE_TABLE(of, tegra_sor_of_match);
2509459cc2c6SThierry Reding 
25106b6b6042SThierry Reding static int tegra_sor_probe(struct platform_device *pdev)
25116b6b6042SThierry Reding {
2512459cc2c6SThierry Reding 	const struct of_device_id *match;
25136b6b6042SThierry Reding 	struct device_node *np;
25146b6b6042SThierry Reding 	struct tegra_sor *sor;
25156b6b6042SThierry Reding 	struct resource *regs;
25166b6b6042SThierry Reding 	int err;
25176b6b6042SThierry Reding 
2518459cc2c6SThierry Reding 	match = of_match_device(tegra_sor_of_match, &pdev->dev);
2519459cc2c6SThierry Reding 
25206b6b6042SThierry Reding 	sor = devm_kzalloc(&pdev->dev, sizeof(*sor), GFP_KERNEL);
25216b6b6042SThierry Reding 	if (!sor)
25226b6b6042SThierry Reding 		return -ENOMEM;
25236b6b6042SThierry Reding 
25246b6b6042SThierry Reding 	sor->output.dev = sor->dev = &pdev->dev;
2525459cc2c6SThierry Reding 	sor->soc = match->data;
2526459cc2c6SThierry Reding 
2527459cc2c6SThierry Reding 	sor->settings = devm_kmemdup(&pdev->dev, sor->soc->settings,
2528459cc2c6SThierry Reding 				     sor->soc->num_settings *
2529459cc2c6SThierry Reding 					sizeof(*sor->settings),
2530459cc2c6SThierry Reding 				     GFP_KERNEL);
2531459cc2c6SThierry Reding 	if (!sor->settings)
2532459cc2c6SThierry Reding 		return -ENOMEM;
2533459cc2c6SThierry Reding 
2534459cc2c6SThierry Reding 	sor->num_settings = sor->soc->num_settings;
25356b6b6042SThierry Reding 
25366b6b6042SThierry Reding 	np = of_parse_phandle(pdev->dev.of_node, "nvidia,dpaux", 0);
25376b6b6042SThierry Reding 	if (np) {
25389542c237SThierry Reding 		sor->aux = drm_dp_aux_find_by_of_node(np);
25396b6b6042SThierry Reding 		of_node_put(np);
25406b6b6042SThierry Reding 
25419542c237SThierry Reding 		if (!sor->aux)
25426b6b6042SThierry Reding 			return -EPROBE_DEFER;
25436b6b6042SThierry Reding 	}
25446b6b6042SThierry Reding 
25459542c237SThierry Reding 	if (!sor->aux) {
2546459cc2c6SThierry Reding 		if (sor->soc->supports_hdmi) {
2547459cc2c6SThierry Reding 			sor->ops = &tegra_sor_hdmi_ops;
2548459cc2c6SThierry Reding 		} else if (sor->soc->supports_lvds) {
2549459cc2c6SThierry Reding 			dev_err(&pdev->dev, "LVDS not supported yet\n");
2550459cc2c6SThierry Reding 			return -ENODEV;
2551459cc2c6SThierry Reding 		} else {
2552459cc2c6SThierry Reding 			dev_err(&pdev->dev, "unknown (non-DP) support\n");
2553459cc2c6SThierry Reding 			return -ENODEV;
2554459cc2c6SThierry Reding 		}
2555459cc2c6SThierry Reding 	} else {
2556459cc2c6SThierry Reding 		if (sor->soc->supports_edp) {
2557459cc2c6SThierry Reding 			sor->ops = &tegra_sor_edp_ops;
2558459cc2c6SThierry Reding 		} else if (sor->soc->supports_dp) {
2559459cc2c6SThierry Reding 			dev_err(&pdev->dev, "DisplayPort not supported yet\n");
2560459cc2c6SThierry Reding 			return -ENODEV;
2561459cc2c6SThierry Reding 		} else {
2562459cc2c6SThierry Reding 			dev_err(&pdev->dev, "unknown (DP) support\n");
2563459cc2c6SThierry Reding 			return -ENODEV;
2564459cc2c6SThierry Reding 		}
2565459cc2c6SThierry Reding 	}
2566459cc2c6SThierry Reding 
25676b6b6042SThierry Reding 	err = tegra_output_probe(&sor->output);
25684dbdc740SThierry Reding 	if (err < 0) {
25694dbdc740SThierry Reding 		dev_err(&pdev->dev, "failed to probe output: %d\n", err);
25706b6b6042SThierry Reding 		return err;
25714dbdc740SThierry Reding 	}
25726b6b6042SThierry Reding 
2573459cc2c6SThierry Reding 	if (sor->ops && sor->ops->probe) {
2574459cc2c6SThierry Reding 		err = sor->ops->probe(sor);
2575459cc2c6SThierry Reding 		if (err < 0) {
2576459cc2c6SThierry Reding 			dev_err(&pdev->dev, "failed to probe %s: %d\n",
2577459cc2c6SThierry Reding 				sor->ops->name, err);
2578459cc2c6SThierry Reding 			goto output;
2579459cc2c6SThierry Reding 		}
2580459cc2c6SThierry Reding 	}
2581459cc2c6SThierry Reding 
25826b6b6042SThierry Reding 	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
25836b6b6042SThierry Reding 	sor->regs = devm_ioremap_resource(&pdev->dev, regs);
2584459cc2c6SThierry Reding 	if (IS_ERR(sor->regs)) {
2585459cc2c6SThierry Reding 		err = PTR_ERR(sor->regs);
2586459cc2c6SThierry Reding 		goto remove;
2587459cc2c6SThierry Reding 	}
25886b6b6042SThierry Reding 
25896b6b6042SThierry Reding 	sor->rst = devm_reset_control_get(&pdev->dev, "sor");
25904dbdc740SThierry Reding 	if (IS_ERR(sor->rst)) {
2591459cc2c6SThierry Reding 		err = PTR_ERR(sor->rst);
2592459cc2c6SThierry Reding 		dev_err(&pdev->dev, "failed to get reset control: %d\n", err);
2593459cc2c6SThierry Reding 		goto remove;
25944dbdc740SThierry Reding 	}
25956b6b6042SThierry Reding 
25966b6b6042SThierry Reding 	sor->clk = devm_clk_get(&pdev->dev, NULL);
25974dbdc740SThierry Reding 	if (IS_ERR(sor->clk)) {
2598459cc2c6SThierry Reding 		err = PTR_ERR(sor->clk);
2599459cc2c6SThierry Reding 		dev_err(&pdev->dev, "failed to get module clock: %d\n", err);
2600459cc2c6SThierry Reding 		goto remove;
26014dbdc740SThierry Reding 	}
26026b6b6042SThierry Reding 
2603*618dee39SThierry Reding 	if (sor->soc->supports_hdmi || sor->soc->supports_dp) {
2604*618dee39SThierry Reding 		sor->clk_src = devm_clk_get(&pdev->dev, "source");
2605*618dee39SThierry Reding 		if (IS_ERR(sor->clk_src)) {
2606*618dee39SThierry Reding 			err = PTR_ERR(sor->clk_src);
2607*618dee39SThierry Reding 			dev_err(sor->dev, "failed to get source clock: %d\n",
2608*618dee39SThierry Reding 				err);
2609*618dee39SThierry Reding 			goto remove;
2610*618dee39SThierry Reding 		}
2611*618dee39SThierry Reding 	}
2612*618dee39SThierry Reding 
26136b6b6042SThierry Reding 	sor->clk_parent = devm_clk_get(&pdev->dev, "parent");
26144dbdc740SThierry Reding 	if (IS_ERR(sor->clk_parent)) {
2615459cc2c6SThierry Reding 		err = PTR_ERR(sor->clk_parent);
2616459cc2c6SThierry Reding 		dev_err(&pdev->dev, "failed to get parent clock: %d\n", err);
2617459cc2c6SThierry Reding 		goto remove;
26184dbdc740SThierry Reding 	}
26196b6b6042SThierry Reding 
26206b6b6042SThierry Reding 	sor->clk_safe = devm_clk_get(&pdev->dev, "safe");
26214dbdc740SThierry Reding 	if (IS_ERR(sor->clk_safe)) {
2622459cc2c6SThierry Reding 		err = PTR_ERR(sor->clk_safe);
2623459cc2c6SThierry Reding 		dev_err(&pdev->dev, "failed to get safe clock: %d\n", err);
2624459cc2c6SThierry Reding 		goto remove;
26254dbdc740SThierry Reding 	}
26266b6b6042SThierry Reding 
26276b6b6042SThierry Reding 	sor->clk_dp = devm_clk_get(&pdev->dev, "dp");
26284dbdc740SThierry Reding 	if (IS_ERR(sor->clk_dp)) {
2629459cc2c6SThierry Reding 		err = PTR_ERR(sor->clk_dp);
2630459cc2c6SThierry Reding 		dev_err(&pdev->dev, "failed to get DP clock: %d\n", err);
2631459cc2c6SThierry Reding 		goto remove;
26324dbdc740SThierry Reding 	}
26336b6b6042SThierry Reding 
2634aaff8bd2SThierry Reding 	platform_set_drvdata(pdev, sor);
2635aaff8bd2SThierry Reding 	pm_runtime_enable(&pdev->dev);
2636aaff8bd2SThierry Reding 
2637b299221cSThierry Reding 	pm_runtime_get_sync(&pdev->dev);
2638b299221cSThierry Reding 	sor->clk_brick = tegra_clk_sor_brick_register(sor, "sor1_brick");
2639b299221cSThierry Reding 	pm_runtime_put(&pdev->dev);
2640b299221cSThierry Reding 
2641b299221cSThierry Reding 	if (IS_ERR(sor->clk_brick)) {
2642b299221cSThierry Reding 		err = PTR_ERR(sor->clk_brick);
2643b299221cSThierry Reding 		dev_err(&pdev->dev, "failed to register SOR clock: %d\n", err);
2644b299221cSThierry Reding 		goto remove;
2645b299221cSThierry Reding 	}
2646b299221cSThierry Reding 
26476b6b6042SThierry Reding 	INIT_LIST_HEAD(&sor->client.list);
26486b6b6042SThierry Reding 	sor->client.ops = &sor_client_ops;
26496b6b6042SThierry Reding 	sor->client.dev = &pdev->dev;
26506b6b6042SThierry Reding 
26516b6b6042SThierry Reding 	err = host1x_client_register(&sor->client);
26526b6b6042SThierry Reding 	if (err < 0) {
26536b6b6042SThierry Reding 		dev_err(&pdev->dev, "failed to register host1x client: %d\n",
26546b6b6042SThierry Reding 			err);
2655459cc2c6SThierry Reding 		goto remove;
26566b6b6042SThierry Reding 	}
26576b6b6042SThierry Reding 
26586b6b6042SThierry Reding 	return 0;
2659459cc2c6SThierry Reding 
2660459cc2c6SThierry Reding remove:
2661459cc2c6SThierry Reding 	if (sor->ops && sor->ops->remove)
2662459cc2c6SThierry Reding 		sor->ops->remove(sor);
2663459cc2c6SThierry Reding output:
2664459cc2c6SThierry Reding 	tegra_output_remove(&sor->output);
2665459cc2c6SThierry Reding 	return err;
26666b6b6042SThierry Reding }
26676b6b6042SThierry Reding 
26686b6b6042SThierry Reding static int tegra_sor_remove(struct platform_device *pdev)
26696b6b6042SThierry Reding {
26706b6b6042SThierry Reding 	struct tegra_sor *sor = platform_get_drvdata(pdev);
26716b6b6042SThierry Reding 	int err;
26726b6b6042SThierry Reding 
2673aaff8bd2SThierry Reding 	pm_runtime_disable(&pdev->dev);
2674aaff8bd2SThierry Reding 
26756b6b6042SThierry Reding 	err = host1x_client_unregister(&sor->client);
26766b6b6042SThierry Reding 	if (err < 0) {
26776b6b6042SThierry Reding 		dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
26786b6b6042SThierry Reding 			err);
26796b6b6042SThierry Reding 		return err;
26806b6b6042SThierry Reding 	}
26816b6b6042SThierry Reding 
2682459cc2c6SThierry Reding 	if (sor->ops && sor->ops->remove) {
2683459cc2c6SThierry Reding 		err = sor->ops->remove(sor);
2684459cc2c6SThierry Reding 		if (err < 0)
2685459cc2c6SThierry Reding 			dev_err(&pdev->dev, "failed to remove SOR: %d\n", err);
2686459cc2c6SThierry Reding 	}
2687459cc2c6SThierry Reding 
2688328ec69eSThierry Reding 	tegra_output_remove(&sor->output);
26896b6b6042SThierry Reding 
26906b6b6042SThierry Reding 	return 0;
26916b6b6042SThierry Reding }
26926b6b6042SThierry Reding 
2693aaff8bd2SThierry Reding #ifdef CONFIG_PM
2694aaff8bd2SThierry Reding static int tegra_sor_suspend(struct device *dev)
2695aaff8bd2SThierry Reding {
2696aaff8bd2SThierry Reding 	struct tegra_sor *sor = dev_get_drvdata(dev);
2697aaff8bd2SThierry Reding 	int err;
2698aaff8bd2SThierry Reding 
2699aaff8bd2SThierry Reding 	err = reset_control_assert(sor->rst);
2700aaff8bd2SThierry Reding 	if (err < 0) {
2701aaff8bd2SThierry Reding 		dev_err(dev, "failed to assert reset: %d\n", err);
2702aaff8bd2SThierry Reding 		return err;
2703aaff8bd2SThierry Reding 	}
2704aaff8bd2SThierry Reding 
2705aaff8bd2SThierry Reding 	usleep_range(1000, 2000);
2706aaff8bd2SThierry Reding 
2707aaff8bd2SThierry Reding 	clk_disable_unprepare(sor->clk);
2708aaff8bd2SThierry Reding 
2709aaff8bd2SThierry Reding 	return 0;
2710aaff8bd2SThierry Reding }
2711aaff8bd2SThierry Reding 
2712aaff8bd2SThierry Reding static int tegra_sor_resume(struct device *dev)
2713aaff8bd2SThierry Reding {
2714aaff8bd2SThierry Reding 	struct tegra_sor *sor = dev_get_drvdata(dev);
2715aaff8bd2SThierry Reding 	int err;
2716aaff8bd2SThierry Reding 
2717aaff8bd2SThierry Reding 	err = clk_prepare_enable(sor->clk);
2718aaff8bd2SThierry Reding 	if (err < 0) {
2719aaff8bd2SThierry Reding 		dev_err(dev, "failed to enable clock: %d\n", err);
2720aaff8bd2SThierry Reding 		return err;
2721aaff8bd2SThierry Reding 	}
2722aaff8bd2SThierry Reding 
2723aaff8bd2SThierry Reding 	usleep_range(1000, 2000);
2724aaff8bd2SThierry Reding 
2725aaff8bd2SThierry Reding 	err = reset_control_deassert(sor->rst);
2726aaff8bd2SThierry Reding 	if (err < 0) {
2727aaff8bd2SThierry Reding 		dev_err(dev, "failed to deassert reset: %d\n", err);
2728aaff8bd2SThierry Reding 		clk_disable_unprepare(sor->clk);
2729aaff8bd2SThierry Reding 		return err;
2730aaff8bd2SThierry Reding 	}
2731aaff8bd2SThierry Reding 
2732aaff8bd2SThierry Reding 	return 0;
2733aaff8bd2SThierry Reding }
2734aaff8bd2SThierry Reding #endif
2735aaff8bd2SThierry Reding 
2736aaff8bd2SThierry Reding static const struct dev_pm_ops tegra_sor_pm_ops = {
2737aaff8bd2SThierry Reding 	SET_RUNTIME_PM_OPS(tegra_sor_suspend, tegra_sor_resume, NULL)
2738aaff8bd2SThierry Reding };
2739aaff8bd2SThierry Reding 
27406b6b6042SThierry Reding struct platform_driver tegra_sor_driver = {
27416b6b6042SThierry Reding 	.driver = {
27426b6b6042SThierry Reding 		.name = "tegra-sor",
27436b6b6042SThierry Reding 		.of_match_table = tegra_sor_of_match,
2744aaff8bd2SThierry Reding 		.pm = &tegra_sor_pm_ops,
27456b6b6042SThierry Reding 	},
27466b6b6042SThierry Reding 	.probe = tegra_sor_probe,
27476b6b6042SThierry Reding 	.remove = tegra_sor_remove,
27486b6b6042SThierry Reding };
2749