xref: /openbmc/linux/drivers/gpu/drm/sun4i/sun4i_tcon.c (revision 31af04cd)
1 /*
2  * Copyright (C) 2015 Free Electrons
3  * Copyright (C) 2015 NextThing Co
4  *
5  * Maxime Ripard <maxime.ripard@free-electrons.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  */
12 
13 #include <drm/drmP.h>
14 #include <drm/drm_atomic_helper.h>
15 #include <drm/drm_connector.h>
16 #include <drm/drm_crtc.h>
17 #include <drm/drm_crtc_helper.h>
18 #include <drm/drm_encoder.h>
19 #include <drm/drm_modes.h>
20 #include <drm/drm_of.h>
21 #include <drm/drm_panel.h>
22 
23 #include <uapi/drm/drm_mode.h>
24 
25 #include <linux/component.h>
26 #include <linux/ioport.h>
27 #include <linux/of_address.h>
28 #include <linux/of_device.h>
29 #include <linux/of_irq.h>
30 #include <linux/regmap.h>
31 #include <linux/reset.h>
32 
33 #include "sun4i_crtc.h"
34 #include "sun4i_dotclock.h"
35 #include "sun4i_drv.h"
36 #include "sun4i_lvds.h"
37 #include "sun4i_rgb.h"
38 #include "sun4i_tcon.h"
39 #include "sun6i_mipi_dsi.h"
40 #include "sun8i_tcon_top.h"
41 #include "sunxi_engine.h"
42 
43 static struct drm_connector *sun4i_tcon_get_connector(const struct drm_encoder *encoder)
44 {
45 	struct drm_connector *connector;
46 	struct drm_connector_list_iter iter;
47 
48 	drm_connector_list_iter_begin(encoder->dev, &iter);
49 	drm_for_each_connector_iter(connector, &iter)
50 		if (connector->encoder == encoder) {
51 			drm_connector_list_iter_end(&iter);
52 			return connector;
53 		}
54 	drm_connector_list_iter_end(&iter);
55 
56 	return NULL;
57 }
58 
59 static int sun4i_tcon_get_pixel_depth(const struct drm_encoder *encoder)
60 {
61 	struct drm_connector *connector;
62 	struct drm_display_info *info;
63 
64 	connector = sun4i_tcon_get_connector(encoder);
65 	if (!connector)
66 		return -EINVAL;
67 
68 	info = &connector->display_info;
69 	if (info->num_bus_formats != 1)
70 		return -EINVAL;
71 
72 	switch (info->bus_formats[0]) {
73 	case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
74 		return 18;
75 
76 	case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
77 	case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
78 		return 24;
79 	}
80 
81 	return -EINVAL;
82 }
83 
84 static void sun4i_tcon_channel_set_status(struct sun4i_tcon *tcon, int channel,
85 					  bool enabled)
86 {
87 	struct clk *clk;
88 
89 	switch (channel) {
90 	case 0:
91 		WARN_ON(!tcon->quirks->has_channel_0);
92 		regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
93 				   SUN4I_TCON0_CTL_TCON_ENABLE,
94 				   enabled ? SUN4I_TCON0_CTL_TCON_ENABLE : 0);
95 		clk = tcon->dclk;
96 		break;
97 	case 1:
98 		WARN_ON(!tcon->quirks->has_channel_1);
99 		regmap_update_bits(tcon->regs, SUN4I_TCON1_CTL_REG,
100 				   SUN4I_TCON1_CTL_TCON_ENABLE,
101 				   enabled ? SUN4I_TCON1_CTL_TCON_ENABLE : 0);
102 		clk = tcon->sclk1;
103 		break;
104 	default:
105 		DRM_WARN("Unknown channel... doing nothing\n");
106 		return;
107 	}
108 
109 	if (enabled) {
110 		clk_prepare_enable(clk);
111 		clk_rate_exclusive_get(clk);
112 	} else {
113 		clk_rate_exclusive_put(clk);
114 		clk_disable_unprepare(clk);
115 	}
116 }
117 
118 static void sun4i_tcon_lvds_set_status(struct sun4i_tcon *tcon,
119 				       const struct drm_encoder *encoder,
120 				       bool enabled)
121 {
122 	if (enabled) {
123 		u8 val;
124 
125 		regmap_update_bits(tcon->regs, SUN4I_TCON0_LVDS_IF_REG,
126 				   SUN4I_TCON0_LVDS_IF_EN,
127 				   SUN4I_TCON0_LVDS_IF_EN);
128 
129 		/*
130 		 * As their name suggest, these values only apply to the A31
131 		 * and later SoCs. We'll have to rework this when merging
132 		 * support for the older SoCs.
133 		 */
134 		regmap_write(tcon->regs, SUN4I_TCON0_LVDS_ANA0_REG,
135 			     SUN6I_TCON0_LVDS_ANA0_C(2) |
136 			     SUN6I_TCON0_LVDS_ANA0_V(3) |
137 			     SUN6I_TCON0_LVDS_ANA0_PD(2) |
138 			     SUN6I_TCON0_LVDS_ANA0_EN_LDO);
139 		udelay(2);
140 
141 		regmap_update_bits(tcon->regs, SUN4I_TCON0_LVDS_ANA0_REG,
142 				   SUN6I_TCON0_LVDS_ANA0_EN_MB,
143 				   SUN6I_TCON0_LVDS_ANA0_EN_MB);
144 		udelay(2);
145 
146 		regmap_update_bits(tcon->regs, SUN4I_TCON0_LVDS_ANA0_REG,
147 				   SUN6I_TCON0_LVDS_ANA0_EN_DRVC,
148 				   SUN6I_TCON0_LVDS_ANA0_EN_DRVC);
149 
150 		if (sun4i_tcon_get_pixel_depth(encoder) == 18)
151 			val = 7;
152 		else
153 			val = 0xf;
154 
155 		regmap_write_bits(tcon->regs, SUN4I_TCON0_LVDS_ANA0_REG,
156 				  SUN6I_TCON0_LVDS_ANA0_EN_DRVD(0xf),
157 				  SUN6I_TCON0_LVDS_ANA0_EN_DRVD(val));
158 	} else {
159 		regmap_update_bits(tcon->regs, SUN4I_TCON0_LVDS_IF_REG,
160 				   SUN4I_TCON0_LVDS_IF_EN, 0);
161 	}
162 }
163 
164 void sun4i_tcon_set_status(struct sun4i_tcon *tcon,
165 			   const struct drm_encoder *encoder,
166 			   bool enabled)
167 {
168 	bool is_lvds = false;
169 	int channel;
170 
171 	switch (encoder->encoder_type) {
172 	case DRM_MODE_ENCODER_LVDS:
173 		is_lvds = true;
174 		/* Fallthrough */
175 	case DRM_MODE_ENCODER_DSI:
176 	case DRM_MODE_ENCODER_NONE:
177 		channel = 0;
178 		break;
179 	case DRM_MODE_ENCODER_TMDS:
180 	case DRM_MODE_ENCODER_TVDAC:
181 		channel = 1;
182 		break;
183 	default:
184 		DRM_DEBUG_DRIVER("Unknown encoder type, doing nothing...\n");
185 		return;
186 	}
187 
188 	if (is_lvds && !enabled)
189 		sun4i_tcon_lvds_set_status(tcon, encoder, false);
190 
191 	regmap_update_bits(tcon->regs, SUN4I_TCON_GCTL_REG,
192 			   SUN4I_TCON_GCTL_TCON_ENABLE,
193 			   enabled ? SUN4I_TCON_GCTL_TCON_ENABLE : 0);
194 
195 	if (is_lvds && enabled)
196 		sun4i_tcon_lvds_set_status(tcon, encoder, true);
197 
198 	sun4i_tcon_channel_set_status(tcon, channel, enabled);
199 }
200 
201 void sun4i_tcon_enable_vblank(struct sun4i_tcon *tcon, bool enable)
202 {
203 	u32 mask, val = 0;
204 
205 	DRM_DEBUG_DRIVER("%sabling VBLANK interrupt\n", enable ? "En" : "Dis");
206 
207 	mask = SUN4I_TCON_GINT0_VBLANK_ENABLE(0) |
208 		SUN4I_TCON_GINT0_VBLANK_ENABLE(1) |
209 		SUN4I_TCON_GINT0_TCON0_TRI_FINISH_ENABLE;
210 
211 	if (enable)
212 		val = mask;
213 
214 	regmap_update_bits(tcon->regs, SUN4I_TCON_GINT0_REG, mask, val);
215 }
216 EXPORT_SYMBOL(sun4i_tcon_enable_vblank);
217 
218 /*
219  * This function is a helper for TCON output muxing. The TCON output
220  * muxing control register in earlier SoCs (without the TCON TOP block)
221  * are located in TCON0. This helper returns a pointer to TCON0's
222  * sun4i_tcon structure, or NULL if not found.
223  */
224 static struct sun4i_tcon *sun4i_get_tcon0(struct drm_device *drm)
225 {
226 	struct sun4i_drv *drv = drm->dev_private;
227 	struct sun4i_tcon *tcon;
228 
229 	list_for_each_entry(tcon, &drv->tcon_list, list)
230 		if (tcon->id == 0)
231 			return tcon;
232 
233 	dev_warn(drm->dev,
234 		 "TCON0 not found, display output muxing may not work\n");
235 
236 	return NULL;
237 }
238 
239 void sun4i_tcon_set_mux(struct sun4i_tcon *tcon, int channel,
240 			const struct drm_encoder *encoder)
241 {
242 	int ret = -ENOTSUPP;
243 
244 	if (tcon->quirks->set_mux)
245 		ret = tcon->quirks->set_mux(tcon, encoder);
246 
247 	DRM_DEBUG_DRIVER("Muxing encoder %s to CRTC %s: %d\n",
248 			 encoder->name, encoder->crtc->name, ret);
249 }
250 
251 static int sun4i_tcon_get_clk_delay(const struct drm_display_mode *mode,
252 				    int channel)
253 {
254 	int delay = mode->vtotal - mode->vdisplay;
255 
256 	if (mode->flags & DRM_MODE_FLAG_INTERLACE)
257 		delay /= 2;
258 
259 	if (channel == 1)
260 		delay -= 2;
261 
262 	delay = min(delay, 30);
263 
264 	DRM_DEBUG_DRIVER("TCON %d clock delay %u\n", channel, delay);
265 
266 	return delay;
267 }
268 
269 static void sun4i_tcon0_mode_set_common(struct sun4i_tcon *tcon,
270 					const struct drm_display_mode *mode)
271 {
272 	/* Configure the dot clock */
273 	clk_set_rate(tcon->dclk, mode->crtc_clock * 1000);
274 
275 	/* Set the resolution */
276 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC0_REG,
277 		     SUN4I_TCON0_BASIC0_X(mode->crtc_hdisplay) |
278 		     SUN4I_TCON0_BASIC0_Y(mode->crtc_vdisplay));
279 }
280 
281 static void sun4i_tcon0_mode_set_dithering(struct sun4i_tcon *tcon,
282 					   const struct drm_connector *connector)
283 {
284 	u32 bus_format = 0;
285 	u32 val = 0;
286 
287 	/* XXX Would this ever happen? */
288 	if (!connector)
289 		return;
290 
291 	/*
292 	 * FIXME: Undocumented bits
293 	 *
294 	 * The whole dithering process and these parameters are not
295 	 * explained in the vendor documents or BSP kernel code.
296 	 */
297 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_PR_REG, 0x11111111);
298 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_PG_REG, 0x11111111);
299 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_PB_REG, 0x11111111);
300 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_LR_REG, 0x11111111);
301 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_LG_REG, 0x11111111);
302 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_SEED_LB_REG, 0x11111111);
303 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_TBL0_REG, 0x01010000);
304 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_TBL1_REG, 0x15151111);
305 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_TBL2_REG, 0x57575555);
306 	regmap_write(tcon->regs, SUN4I_TCON0_FRM_TBL3_REG, 0x7f7f7777);
307 
308 	/* Do dithering if panel only supports 6 bits per color */
309 	if (connector->display_info.bpc == 6)
310 		val |= SUN4I_TCON0_FRM_CTL_EN;
311 
312 	if (connector->display_info.num_bus_formats == 1)
313 		bus_format = connector->display_info.bus_formats[0];
314 
315 	/* Check the connection format */
316 	switch (bus_format) {
317 	case MEDIA_BUS_FMT_RGB565_1X16:
318 		/* R and B components are only 5 bits deep */
319 		val |= SUN4I_TCON0_FRM_CTL_MODE_R;
320 		val |= SUN4I_TCON0_FRM_CTL_MODE_B;
321 	case MEDIA_BUS_FMT_RGB666_1X18:
322 	case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
323 		/* Fall through: enable dithering */
324 		val |= SUN4I_TCON0_FRM_CTL_EN;
325 		break;
326 	}
327 
328 	/* Write dithering settings */
329 	regmap_write(tcon->regs, SUN4I_TCON_FRM_CTL_REG, val);
330 }
331 
332 static void sun4i_tcon0_mode_set_cpu(struct sun4i_tcon *tcon,
333 				     const struct drm_encoder *encoder,
334 				     const struct drm_display_mode *mode)
335 {
336 	/* TODO support normal CPU interface modes */
337 	struct sun6i_dsi *dsi = encoder_to_sun6i_dsi(encoder);
338 	struct mipi_dsi_device *device = dsi->device;
339 	u8 bpp = mipi_dsi_pixel_format_to_bpp(device->format);
340 	u8 lanes = device->lanes;
341 	u32 block_space, start_delay;
342 	u32 tcon_div;
343 
344 	tcon->dclk_min_div = 4;
345 	tcon->dclk_max_div = 127;
346 
347 	sun4i_tcon0_mode_set_common(tcon, mode);
348 
349 	/* Set dithering if needed */
350 	sun4i_tcon0_mode_set_dithering(tcon, sun4i_tcon_get_connector(encoder));
351 
352 	regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
353 			   SUN4I_TCON0_CTL_IF_MASK,
354 			   SUN4I_TCON0_CTL_IF_8080);
355 
356 	regmap_write(tcon->regs, SUN4I_TCON_ECC_FIFO_REG,
357 		     SUN4I_TCON_ECC_FIFO_EN);
358 
359 	regmap_write(tcon->regs, SUN4I_TCON0_CPU_IF_REG,
360 		     SUN4I_TCON0_CPU_IF_MODE_DSI |
361 		     SUN4I_TCON0_CPU_IF_TRI_FIFO_FLUSH |
362 		     SUN4I_TCON0_CPU_IF_TRI_FIFO_EN |
363 		     SUN4I_TCON0_CPU_IF_TRI_EN);
364 
365 	/*
366 	 * This looks suspicious, but it works...
367 	 *
368 	 * The datasheet says that this should be set higher than 20 *
369 	 * pixel cycle, but it's not clear what a pixel cycle is.
370 	 */
371 	regmap_read(tcon->regs, SUN4I_TCON0_DCLK_REG, &tcon_div);
372 	tcon_div &= GENMASK(6, 0);
373 	block_space = mode->htotal * bpp / (tcon_div * lanes);
374 	block_space -= mode->hdisplay + 40;
375 
376 	regmap_write(tcon->regs, SUN4I_TCON0_CPU_TRI0_REG,
377 		     SUN4I_TCON0_CPU_TRI0_BLOCK_SPACE(block_space) |
378 		     SUN4I_TCON0_CPU_TRI0_BLOCK_SIZE(mode->hdisplay));
379 
380 	regmap_write(tcon->regs, SUN4I_TCON0_CPU_TRI1_REG,
381 		     SUN4I_TCON0_CPU_TRI1_BLOCK_NUM(mode->vdisplay));
382 
383 	start_delay = (mode->crtc_vtotal - mode->crtc_vdisplay - 10 - 1);
384 	start_delay = start_delay * mode->crtc_htotal * 149;
385 	start_delay = start_delay / (mode->crtc_clock / 1000) / 8;
386 	regmap_write(tcon->regs, SUN4I_TCON0_CPU_TRI2_REG,
387 		     SUN4I_TCON0_CPU_TRI2_TRANS_START_SET(10) |
388 		     SUN4I_TCON0_CPU_TRI2_START_DELAY(start_delay));
389 
390 	/*
391 	 * The Allwinner BSP has a comment that the period should be
392 	 * the display clock * 15, but uses an hardcoded 3000...
393 	 */
394 	regmap_write(tcon->regs, SUN4I_TCON_SAFE_PERIOD_REG,
395 		     SUN4I_TCON_SAFE_PERIOD_NUM(3000) |
396 		     SUN4I_TCON_SAFE_PERIOD_MODE(3));
397 
398 	/* Enable the output on the pins */
399 	regmap_write(tcon->regs, SUN4I_TCON0_IO_TRI_REG,
400 		     0xe0000000);
401 }
402 
403 static void sun4i_tcon0_mode_set_lvds(struct sun4i_tcon *tcon,
404 				      const struct drm_encoder *encoder,
405 				      const struct drm_display_mode *mode)
406 {
407 	unsigned int bp;
408 	u8 clk_delay;
409 	u32 reg, val = 0;
410 
411 	WARN_ON(!tcon->quirks->has_channel_0);
412 
413 	tcon->dclk_min_div = 7;
414 	tcon->dclk_max_div = 7;
415 	sun4i_tcon0_mode_set_common(tcon, mode);
416 
417 	/* Set dithering if needed */
418 	sun4i_tcon0_mode_set_dithering(tcon, sun4i_tcon_get_connector(encoder));
419 
420 	/* Adjust clock delay */
421 	clk_delay = sun4i_tcon_get_clk_delay(mode, 0);
422 	regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
423 			   SUN4I_TCON0_CTL_CLK_DELAY_MASK,
424 			   SUN4I_TCON0_CTL_CLK_DELAY(clk_delay));
425 
426 	/*
427 	 * This is called a backporch in the register documentation,
428 	 * but it really is the back porch + hsync
429 	 */
430 	bp = mode->crtc_htotal - mode->crtc_hsync_start;
431 	DRM_DEBUG_DRIVER("Setting horizontal total %d, backporch %d\n",
432 			 mode->crtc_htotal, bp);
433 
434 	/* Set horizontal display timings */
435 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC1_REG,
436 		     SUN4I_TCON0_BASIC1_H_TOTAL(mode->htotal) |
437 		     SUN4I_TCON0_BASIC1_H_BACKPORCH(bp));
438 
439 	/*
440 	 * This is called a backporch in the register documentation,
441 	 * but it really is the back porch + hsync
442 	 */
443 	bp = mode->crtc_vtotal - mode->crtc_vsync_start;
444 	DRM_DEBUG_DRIVER("Setting vertical total %d, backporch %d\n",
445 			 mode->crtc_vtotal, bp);
446 
447 	/* Set vertical display timings */
448 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC2_REG,
449 		     SUN4I_TCON0_BASIC2_V_TOTAL(mode->crtc_vtotal * 2) |
450 		     SUN4I_TCON0_BASIC2_V_BACKPORCH(bp));
451 
452 	reg = SUN4I_TCON0_LVDS_IF_CLK_SEL_TCON0 |
453 		SUN4I_TCON0_LVDS_IF_DATA_POL_NORMAL |
454 		SUN4I_TCON0_LVDS_IF_CLK_POL_NORMAL;
455 	if (sun4i_tcon_get_pixel_depth(encoder) == 24)
456 		reg |= SUN4I_TCON0_LVDS_IF_BITWIDTH_24BITS;
457 	else
458 		reg |= SUN4I_TCON0_LVDS_IF_BITWIDTH_18BITS;
459 
460 	regmap_write(tcon->regs, SUN4I_TCON0_LVDS_IF_REG, reg);
461 
462 	/* Setup the polarity of the various signals */
463 	if (!(mode->flags & DRM_MODE_FLAG_PHSYNC))
464 		val |= SUN4I_TCON0_IO_POL_HSYNC_POSITIVE;
465 
466 	if (!(mode->flags & DRM_MODE_FLAG_PVSYNC))
467 		val |= SUN4I_TCON0_IO_POL_VSYNC_POSITIVE;
468 
469 	regmap_write(tcon->regs, SUN4I_TCON0_IO_POL_REG, val);
470 
471 	/* Map output pins to channel 0 */
472 	regmap_update_bits(tcon->regs, SUN4I_TCON_GCTL_REG,
473 			   SUN4I_TCON_GCTL_IOMAP_MASK,
474 			   SUN4I_TCON_GCTL_IOMAP_TCON0);
475 
476 	/* Enable the output on the pins */
477 	regmap_write(tcon->regs, SUN4I_TCON0_IO_TRI_REG, 0xe0000000);
478 }
479 
480 static void sun4i_tcon0_mode_set_rgb(struct sun4i_tcon *tcon,
481 				     const struct drm_encoder *encoder,
482 				     const struct drm_display_mode *mode)
483 {
484 	struct drm_connector *connector = sun4i_tcon_get_connector(encoder);
485 	struct drm_display_info display_info = connector->display_info;
486 	unsigned int bp, hsync, vsync;
487 	u8 clk_delay;
488 	u32 val = 0;
489 
490 	WARN_ON(!tcon->quirks->has_channel_0);
491 
492 	tcon->dclk_min_div = 6;
493 	tcon->dclk_max_div = 127;
494 	sun4i_tcon0_mode_set_common(tcon, mode);
495 
496 	/* Set dithering if needed */
497 	sun4i_tcon0_mode_set_dithering(tcon, connector);
498 
499 	/* Adjust clock delay */
500 	clk_delay = sun4i_tcon_get_clk_delay(mode, 0);
501 	regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
502 			   SUN4I_TCON0_CTL_CLK_DELAY_MASK,
503 			   SUN4I_TCON0_CTL_CLK_DELAY(clk_delay));
504 
505 	/*
506 	 * This is called a backporch in the register documentation,
507 	 * but it really is the back porch + hsync
508 	 */
509 	bp = mode->crtc_htotal - mode->crtc_hsync_start;
510 	DRM_DEBUG_DRIVER("Setting horizontal total %d, backporch %d\n",
511 			 mode->crtc_htotal, bp);
512 
513 	/* Set horizontal display timings */
514 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC1_REG,
515 		     SUN4I_TCON0_BASIC1_H_TOTAL(mode->crtc_htotal) |
516 		     SUN4I_TCON0_BASIC1_H_BACKPORCH(bp));
517 
518 	/*
519 	 * This is called a backporch in the register documentation,
520 	 * but it really is the back porch + hsync
521 	 */
522 	bp = mode->crtc_vtotal - mode->crtc_vsync_start;
523 	DRM_DEBUG_DRIVER("Setting vertical total %d, backporch %d\n",
524 			 mode->crtc_vtotal, bp);
525 
526 	/* Set vertical display timings */
527 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC2_REG,
528 		     SUN4I_TCON0_BASIC2_V_TOTAL(mode->crtc_vtotal * 2) |
529 		     SUN4I_TCON0_BASIC2_V_BACKPORCH(bp));
530 
531 	/* Set Hsync and Vsync length */
532 	hsync = mode->crtc_hsync_end - mode->crtc_hsync_start;
533 	vsync = mode->crtc_vsync_end - mode->crtc_vsync_start;
534 	DRM_DEBUG_DRIVER("Setting HSYNC %d, VSYNC %d\n", hsync, vsync);
535 	regmap_write(tcon->regs, SUN4I_TCON0_BASIC3_REG,
536 		     SUN4I_TCON0_BASIC3_V_SYNC(vsync) |
537 		     SUN4I_TCON0_BASIC3_H_SYNC(hsync));
538 
539 	/* Setup the polarity of the various signals */
540 	if (mode->flags & DRM_MODE_FLAG_PHSYNC)
541 		val |= SUN4I_TCON0_IO_POL_HSYNC_POSITIVE;
542 
543 	if (mode->flags & DRM_MODE_FLAG_PVSYNC)
544 		val |= SUN4I_TCON0_IO_POL_VSYNC_POSITIVE;
545 
546 	if (display_info.bus_flags & DRM_BUS_FLAG_DE_LOW)
547 		val |= SUN4I_TCON0_IO_POL_DE_NEGATIVE;
548 
549 	/*
550 	 * On A20 and similar SoCs, the only way to achieve Positive Edge
551 	 * (Rising Edge), is setting dclk clock phase to 2/3(240°).
552 	 * By default TCON works in Negative Edge(Falling Edge),
553 	 * this is why phase is set to 0 in that case.
554 	 * Unfortunately there's no way to logically invert dclk through
555 	 * IO_POL register.
556 	 * The only acceptable way to work, triple checked with scope,
557 	 * is using clock phase set to 0° for Negative Edge and set to 240°
558 	 * for Positive Edge.
559 	 * On A33 and similar SoCs there would be a 90° phase option,
560 	 * but it divides also dclk by 2.
561 	 * Following code is a way to avoid quirks all around TCON
562 	 * and DOTCLOCK drivers.
563 	 */
564 	if (display_info.bus_flags & DRM_BUS_FLAG_PIXDATA_POSEDGE)
565 		clk_set_phase(tcon->dclk, 240);
566 
567 	if (display_info.bus_flags & DRM_BUS_FLAG_PIXDATA_NEGEDGE)
568 		clk_set_phase(tcon->dclk, 0);
569 
570 	regmap_update_bits(tcon->regs, SUN4I_TCON0_IO_POL_REG,
571 			   SUN4I_TCON0_IO_POL_HSYNC_POSITIVE |
572 			   SUN4I_TCON0_IO_POL_VSYNC_POSITIVE |
573 			   SUN4I_TCON0_IO_POL_DE_NEGATIVE,
574 			   val);
575 
576 	/* Map output pins to channel 0 */
577 	regmap_update_bits(tcon->regs, SUN4I_TCON_GCTL_REG,
578 			   SUN4I_TCON_GCTL_IOMAP_MASK,
579 			   SUN4I_TCON_GCTL_IOMAP_TCON0);
580 
581 	/* Enable the output on the pins */
582 	regmap_write(tcon->regs, SUN4I_TCON0_IO_TRI_REG, 0);
583 }
584 
585 static void sun4i_tcon1_mode_set(struct sun4i_tcon *tcon,
586 				 const struct drm_display_mode *mode)
587 {
588 	unsigned int bp, hsync, vsync, vtotal;
589 	u8 clk_delay;
590 	u32 val;
591 
592 	WARN_ON(!tcon->quirks->has_channel_1);
593 
594 	/* Configure the dot clock */
595 	clk_set_rate(tcon->sclk1, mode->crtc_clock * 1000);
596 
597 	/* Adjust clock delay */
598 	clk_delay = sun4i_tcon_get_clk_delay(mode, 1);
599 	regmap_update_bits(tcon->regs, SUN4I_TCON1_CTL_REG,
600 			   SUN4I_TCON1_CTL_CLK_DELAY_MASK,
601 			   SUN4I_TCON1_CTL_CLK_DELAY(clk_delay));
602 
603 	/* Set interlaced mode */
604 	if (mode->flags & DRM_MODE_FLAG_INTERLACE)
605 		val = SUN4I_TCON1_CTL_INTERLACE_ENABLE;
606 	else
607 		val = 0;
608 	regmap_update_bits(tcon->regs, SUN4I_TCON1_CTL_REG,
609 			   SUN4I_TCON1_CTL_INTERLACE_ENABLE,
610 			   val);
611 
612 	/* Set the input resolution */
613 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC0_REG,
614 		     SUN4I_TCON1_BASIC0_X(mode->crtc_hdisplay) |
615 		     SUN4I_TCON1_BASIC0_Y(mode->crtc_vdisplay));
616 
617 	/* Set the upscaling resolution */
618 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC1_REG,
619 		     SUN4I_TCON1_BASIC1_X(mode->crtc_hdisplay) |
620 		     SUN4I_TCON1_BASIC1_Y(mode->crtc_vdisplay));
621 
622 	/* Set the output resolution */
623 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC2_REG,
624 		     SUN4I_TCON1_BASIC2_X(mode->crtc_hdisplay) |
625 		     SUN4I_TCON1_BASIC2_Y(mode->crtc_vdisplay));
626 
627 	/* Set horizontal display timings */
628 	bp = mode->crtc_htotal - mode->crtc_hsync_start;
629 	DRM_DEBUG_DRIVER("Setting horizontal total %d, backporch %d\n",
630 			 mode->htotal, bp);
631 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC3_REG,
632 		     SUN4I_TCON1_BASIC3_H_TOTAL(mode->crtc_htotal) |
633 		     SUN4I_TCON1_BASIC3_H_BACKPORCH(bp));
634 
635 	bp = mode->crtc_vtotal - mode->crtc_vsync_start;
636 	DRM_DEBUG_DRIVER("Setting vertical total %d, backporch %d\n",
637 			 mode->crtc_vtotal, bp);
638 
639 	/*
640 	 * The vertical resolution needs to be doubled in all
641 	 * cases. We could use crtc_vtotal and always multiply by two,
642 	 * but that leads to a rounding error in interlace when vtotal
643 	 * is odd.
644 	 *
645 	 * This happens with TV's PAL for example, where vtotal will
646 	 * be 625, crtc_vtotal 312, and thus crtc_vtotal * 2 will be
647 	 * 624, which apparently confuses the hardware.
648 	 *
649 	 * To work around this, we will always use vtotal, and
650 	 * multiply by two only if we're not in interlace.
651 	 */
652 	vtotal = mode->vtotal;
653 	if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
654 		vtotal = vtotal * 2;
655 
656 	/* Set vertical display timings */
657 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC4_REG,
658 		     SUN4I_TCON1_BASIC4_V_TOTAL(vtotal) |
659 		     SUN4I_TCON1_BASIC4_V_BACKPORCH(bp));
660 
661 	/* Set Hsync and Vsync length */
662 	hsync = mode->crtc_hsync_end - mode->crtc_hsync_start;
663 	vsync = mode->crtc_vsync_end - mode->crtc_vsync_start;
664 	DRM_DEBUG_DRIVER("Setting HSYNC %d, VSYNC %d\n", hsync, vsync);
665 	regmap_write(tcon->regs, SUN4I_TCON1_BASIC5_REG,
666 		     SUN4I_TCON1_BASIC5_V_SYNC(vsync) |
667 		     SUN4I_TCON1_BASIC5_H_SYNC(hsync));
668 
669 	/* Map output pins to channel 1 */
670 	regmap_update_bits(tcon->regs, SUN4I_TCON_GCTL_REG,
671 			   SUN4I_TCON_GCTL_IOMAP_MASK,
672 			   SUN4I_TCON_GCTL_IOMAP_TCON1);
673 }
674 
675 void sun4i_tcon_mode_set(struct sun4i_tcon *tcon,
676 			 const struct drm_encoder *encoder,
677 			 const struct drm_display_mode *mode)
678 {
679 	switch (encoder->encoder_type) {
680 	case DRM_MODE_ENCODER_DSI:
681 		/* DSI is tied to special case of CPU interface */
682 		sun4i_tcon0_mode_set_cpu(tcon, encoder, mode);
683 		break;
684 	case DRM_MODE_ENCODER_LVDS:
685 		sun4i_tcon0_mode_set_lvds(tcon, encoder, mode);
686 		break;
687 	case DRM_MODE_ENCODER_NONE:
688 		sun4i_tcon0_mode_set_rgb(tcon, encoder, mode);
689 		sun4i_tcon_set_mux(tcon, 0, encoder);
690 		break;
691 	case DRM_MODE_ENCODER_TVDAC:
692 	case DRM_MODE_ENCODER_TMDS:
693 		sun4i_tcon1_mode_set(tcon, mode);
694 		sun4i_tcon_set_mux(tcon, 1, encoder);
695 		break;
696 	default:
697 		DRM_DEBUG_DRIVER("Unknown encoder type, doing nothing...\n");
698 	}
699 }
700 EXPORT_SYMBOL(sun4i_tcon_mode_set);
701 
702 static void sun4i_tcon_finish_page_flip(struct drm_device *dev,
703 					struct sun4i_crtc *scrtc)
704 {
705 	unsigned long flags;
706 
707 	spin_lock_irqsave(&dev->event_lock, flags);
708 	if (scrtc->event) {
709 		drm_crtc_send_vblank_event(&scrtc->crtc, scrtc->event);
710 		drm_crtc_vblank_put(&scrtc->crtc);
711 		scrtc->event = NULL;
712 	}
713 	spin_unlock_irqrestore(&dev->event_lock, flags);
714 }
715 
716 static irqreturn_t sun4i_tcon_handler(int irq, void *private)
717 {
718 	struct sun4i_tcon *tcon = private;
719 	struct drm_device *drm = tcon->drm;
720 	struct sun4i_crtc *scrtc = tcon->crtc;
721 	struct sunxi_engine *engine = scrtc->engine;
722 	unsigned int status;
723 
724 	regmap_read(tcon->regs, SUN4I_TCON_GINT0_REG, &status);
725 
726 	if (!(status & (SUN4I_TCON_GINT0_VBLANK_INT(0) |
727 			SUN4I_TCON_GINT0_VBLANK_INT(1) |
728 			SUN4I_TCON_GINT0_TCON0_TRI_FINISH_INT)))
729 		return IRQ_NONE;
730 
731 	drm_crtc_handle_vblank(&scrtc->crtc);
732 	sun4i_tcon_finish_page_flip(drm, scrtc);
733 
734 	/* Acknowledge the interrupt */
735 	regmap_update_bits(tcon->regs, SUN4I_TCON_GINT0_REG,
736 			   SUN4I_TCON_GINT0_VBLANK_INT(0) |
737 			   SUN4I_TCON_GINT0_VBLANK_INT(1) |
738 			   SUN4I_TCON_GINT0_TCON0_TRI_FINISH_INT,
739 			   0);
740 
741 	if (engine->ops->vblank_quirk)
742 		engine->ops->vblank_quirk(engine);
743 
744 	return IRQ_HANDLED;
745 }
746 
747 static int sun4i_tcon_init_clocks(struct device *dev,
748 				  struct sun4i_tcon *tcon)
749 {
750 	tcon->clk = devm_clk_get(dev, "ahb");
751 	if (IS_ERR(tcon->clk)) {
752 		dev_err(dev, "Couldn't get the TCON bus clock\n");
753 		return PTR_ERR(tcon->clk);
754 	}
755 	clk_prepare_enable(tcon->clk);
756 
757 	if (tcon->quirks->has_channel_0) {
758 		tcon->sclk0 = devm_clk_get(dev, "tcon-ch0");
759 		if (IS_ERR(tcon->sclk0)) {
760 			dev_err(dev, "Couldn't get the TCON channel 0 clock\n");
761 			return PTR_ERR(tcon->sclk0);
762 		}
763 	}
764 
765 	if (tcon->quirks->has_channel_1) {
766 		tcon->sclk1 = devm_clk_get(dev, "tcon-ch1");
767 		if (IS_ERR(tcon->sclk1)) {
768 			dev_err(dev, "Couldn't get the TCON channel 1 clock\n");
769 			return PTR_ERR(tcon->sclk1);
770 		}
771 	}
772 
773 	return 0;
774 }
775 
776 static void sun4i_tcon_free_clocks(struct sun4i_tcon *tcon)
777 {
778 	clk_disable_unprepare(tcon->clk);
779 }
780 
781 static int sun4i_tcon_init_irq(struct device *dev,
782 			       struct sun4i_tcon *tcon)
783 {
784 	struct platform_device *pdev = to_platform_device(dev);
785 	int irq, ret;
786 
787 	irq = platform_get_irq(pdev, 0);
788 	if (irq < 0) {
789 		dev_err(dev, "Couldn't retrieve the TCON interrupt\n");
790 		return irq;
791 	}
792 
793 	ret = devm_request_irq(dev, irq, sun4i_tcon_handler, 0,
794 			       dev_name(dev), tcon);
795 	if (ret) {
796 		dev_err(dev, "Couldn't request the IRQ\n");
797 		return ret;
798 	}
799 
800 	return 0;
801 }
802 
803 static struct regmap_config sun4i_tcon_regmap_config = {
804 	.reg_bits	= 32,
805 	.val_bits	= 32,
806 	.reg_stride	= 4,
807 	.max_register	= 0x800,
808 };
809 
810 static int sun4i_tcon_init_regmap(struct device *dev,
811 				  struct sun4i_tcon *tcon)
812 {
813 	struct platform_device *pdev = to_platform_device(dev);
814 	struct resource *res;
815 	void __iomem *regs;
816 
817 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
818 	regs = devm_ioremap_resource(dev, res);
819 	if (IS_ERR(regs))
820 		return PTR_ERR(regs);
821 
822 	tcon->regs = devm_regmap_init_mmio(dev, regs,
823 					   &sun4i_tcon_regmap_config);
824 	if (IS_ERR(tcon->regs)) {
825 		dev_err(dev, "Couldn't create the TCON regmap\n");
826 		return PTR_ERR(tcon->regs);
827 	}
828 
829 	/* Make sure the TCON is disabled and all IRQs are off */
830 	regmap_write(tcon->regs, SUN4I_TCON_GCTL_REG, 0);
831 	regmap_write(tcon->regs, SUN4I_TCON_GINT0_REG, 0);
832 	regmap_write(tcon->regs, SUN4I_TCON_GINT1_REG, 0);
833 
834 	/* Disable IO lines and set them to tristate */
835 	regmap_write(tcon->regs, SUN4I_TCON0_IO_TRI_REG, ~0);
836 	regmap_write(tcon->regs, SUN4I_TCON1_IO_TRI_REG, ~0);
837 
838 	return 0;
839 }
840 
841 /*
842  * On SoCs with the old display pipeline design (Display Engine 1.0),
843  * the TCON is always tied to just one backend. Hence we can traverse
844  * the of_graph upwards to find the backend our tcon is connected to,
845  * and take its ID as our own.
846  *
847  * We can either identify backends from their compatible strings, which
848  * means maintaining a large list of them. Or, since the backend is
849  * registered and binded before the TCON, we can just go through the
850  * list of registered backends and compare the device node.
851  *
852  * As the structures now store engines instead of backends, here this
853  * function in fact searches the corresponding engine, and the ID is
854  * requested via the get_id function of the engine.
855  */
856 static struct sunxi_engine *
857 sun4i_tcon_find_engine_traverse(struct sun4i_drv *drv,
858 				struct device_node *node,
859 				u32 port_id)
860 {
861 	struct device_node *port, *ep, *remote;
862 	struct sunxi_engine *engine = ERR_PTR(-EINVAL);
863 	u32 reg = 0;
864 
865 	port = of_graph_get_port_by_id(node, port_id);
866 	if (!port)
867 		return ERR_PTR(-EINVAL);
868 
869 	/*
870 	 * This only works if there is only one path from the TCON
871 	 * to any display engine. Otherwise the probe order of the
872 	 * TCONs and display engines is not guaranteed. They may
873 	 * either bind to the wrong one, or worse, bind to the same
874 	 * one if additional checks are not done.
875 	 *
876 	 * Bail out if there are multiple input connections.
877 	 */
878 	if (of_get_available_child_count(port) != 1)
879 		goto out_put_port;
880 
881 	/* Get the first connection without specifying an ID */
882 	ep = of_get_next_available_child(port, NULL);
883 	if (!ep)
884 		goto out_put_port;
885 
886 	remote = of_graph_get_remote_port_parent(ep);
887 	if (!remote)
888 		goto out_put_ep;
889 
890 	/* does this node match any registered engines? */
891 	list_for_each_entry(engine, &drv->engine_list, list)
892 		if (remote == engine->node)
893 			goto out_put_remote;
894 
895 	/*
896 	 * According to device tree binding input ports have even id
897 	 * number and output ports have odd id. Since component with
898 	 * more than one input and one output (TCON TOP) exits, correct
899 	 * remote input id has to be calculated by subtracting 1 from
900 	 * remote output id. If this for some reason can't be done, 0
901 	 * is used as input port id.
902 	 */
903 	of_node_put(port);
904 	port = of_graph_get_remote_port(ep);
905 	if (!of_property_read_u32(port, "reg", &reg) && reg > 0)
906 		reg -= 1;
907 
908 	/* keep looking through upstream ports */
909 	engine = sun4i_tcon_find_engine_traverse(drv, remote, reg);
910 
911 out_put_remote:
912 	of_node_put(remote);
913 out_put_ep:
914 	of_node_put(ep);
915 out_put_port:
916 	of_node_put(port);
917 
918 	return engine;
919 }
920 
921 /*
922  * The device tree binding says that the remote endpoint ID of any
923  * connection between components, up to and including the TCON, of
924  * the display pipeline should be equal to the actual ID of the local
925  * component. Thus we can look at any one of the input connections of
926  * the TCONs, and use that connection's remote endpoint ID as our own.
927  *
928  * Since the user of this function already finds the input port,
929  * the port is passed in directly without further checks.
930  */
931 static int sun4i_tcon_of_get_id_from_port(struct device_node *port)
932 {
933 	struct device_node *ep;
934 	int ret = -EINVAL;
935 
936 	/* try finding an upstream endpoint */
937 	for_each_available_child_of_node(port, ep) {
938 		struct device_node *remote;
939 		u32 reg;
940 
941 		remote = of_graph_get_remote_endpoint(ep);
942 		if (!remote)
943 			continue;
944 
945 		ret = of_property_read_u32(remote, "reg", &reg);
946 		if (ret)
947 			continue;
948 
949 		ret = reg;
950 	}
951 
952 	return ret;
953 }
954 
955 /*
956  * Once we know the TCON's id, we can look through the list of
957  * engines to find a matching one. We assume all engines have
958  * been probed and added to the list.
959  */
960 static struct sunxi_engine *sun4i_tcon_get_engine_by_id(struct sun4i_drv *drv,
961 							int id)
962 {
963 	struct sunxi_engine *engine;
964 
965 	list_for_each_entry(engine, &drv->engine_list, list)
966 		if (engine->id == id)
967 			return engine;
968 
969 	return ERR_PTR(-EINVAL);
970 }
971 
972 static bool sun4i_tcon_connected_to_tcon_top(struct device_node *node)
973 {
974 	struct device_node *remote;
975 	bool ret = false;
976 
977 	remote = of_graph_get_remote_node(node, 0, -1);
978 	if (remote) {
979 		ret = !!(IS_ENABLED(CONFIG_DRM_SUN8I_TCON_TOP) &&
980 			 of_match_node(sun8i_tcon_top_of_table, remote));
981 		of_node_put(remote);
982 	}
983 
984 	return ret;
985 }
986 
987 static int sun4i_tcon_get_index(struct sun4i_drv *drv)
988 {
989 	struct list_head *pos;
990 	int size = 0;
991 
992 	/*
993 	 * Because TCON is added to the list at the end of the probe
994 	 * (after this function is called), index of the current TCON
995 	 * will be same as current TCON list size.
996 	 */
997 	list_for_each(pos, &drv->tcon_list)
998 		++size;
999 
1000 	return size;
1001 }
1002 
1003 /*
1004  * On SoCs with the old display pipeline design (Display Engine 1.0),
1005  * we assumed the TCON was always tied to just one backend. However
1006  * this proved not to be the case. On the A31, the TCON can select
1007  * either backend as its source. On the A20 (and likely on the A10),
1008  * the backend can choose which TCON to output to.
1009  *
1010  * The device tree binding says that the remote endpoint ID of any
1011  * connection between components, up to and including the TCON, of
1012  * the display pipeline should be equal to the actual ID of the local
1013  * component. Thus we should be able to look at any one of the input
1014  * connections of the TCONs, and use that connection's remote endpoint
1015  * ID as our own.
1016  *
1017  * However  the connections between the backend and TCON were assumed
1018  * to be always singular, and their endpoit IDs were all incorrectly
1019  * set to 0. This means for these old device trees, we cannot just look
1020  * up the remote endpoint ID of a TCON input endpoint. TCON1 would be
1021  * incorrectly identified as TCON0.
1022  *
1023  * This function first checks if the TCON node has 2 input endpoints.
1024  * If so, then the device tree is a corrected version, and it will use
1025  * sun4i_tcon_of_get_id() and sun4i_tcon_get_engine_by_id() from above
1026  * to fetch the ID and engine directly. If not, then it is likely an
1027  * old device trees, where the endpoint IDs were incorrect, but did not
1028  * have endpoint connections between the backend and TCON across
1029  * different display pipelines. It will fall back to the old method of
1030  * traversing the  of_graph to try and find a matching engine by device
1031  * node.
1032  *
1033  * In the case of single display pipeline device trees, either method
1034  * works.
1035  */
1036 static struct sunxi_engine *sun4i_tcon_find_engine(struct sun4i_drv *drv,
1037 						   struct device_node *node)
1038 {
1039 	struct device_node *port;
1040 	struct sunxi_engine *engine;
1041 
1042 	port = of_graph_get_port_by_id(node, 0);
1043 	if (!port)
1044 		return ERR_PTR(-EINVAL);
1045 
1046 	/*
1047 	 * Is this a corrected device tree with cross pipeline
1048 	 * connections between the backend and TCON?
1049 	 */
1050 	if (of_get_child_count(port) > 1) {
1051 		int id;
1052 
1053 		/*
1054 		 * When pipeline has the same number of TCONs and engines which
1055 		 * are represented by frontends/backends (DE1) or mixers (DE2),
1056 		 * we match them by their respective IDs. However, if pipeline
1057 		 * contains TCON TOP, chances are that there are either more
1058 		 * TCONs than engines (R40) or TCONs with non-consecutive ids.
1059 		 * (H6). In that case it's easier just use TCON index in list
1060 		 * as an id. That means that on R40, any 2 TCONs can be enabled
1061 		 * in DT out of 4 (there are 2 mixers). Due to the design of
1062 		 * TCON TOP, remaining 2 TCONs can't be connected to anything
1063 		 * anyway.
1064 		 */
1065 		if (sun4i_tcon_connected_to_tcon_top(node))
1066 			id = sun4i_tcon_get_index(drv);
1067 		else
1068 			id = sun4i_tcon_of_get_id_from_port(port);
1069 
1070 		/* Get our engine by matching our ID */
1071 		engine = sun4i_tcon_get_engine_by_id(drv, id);
1072 
1073 		of_node_put(port);
1074 		return engine;
1075 	}
1076 
1077 	/* Fallback to old method by traversing input endpoints */
1078 	of_node_put(port);
1079 	return sun4i_tcon_find_engine_traverse(drv, node, 0);
1080 }
1081 
1082 static int sun4i_tcon_bind(struct device *dev, struct device *master,
1083 			   void *data)
1084 {
1085 	struct drm_device *drm = data;
1086 	struct sun4i_drv *drv = drm->dev_private;
1087 	struct sunxi_engine *engine;
1088 	struct device_node *remote;
1089 	struct sun4i_tcon *tcon;
1090 	struct reset_control *edp_rstc;
1091 	bool has_lvds_rst, has_lvds_alt, can_lvds;
1092 	int ret;
1093 
1094 	engine = sun4i_tcon_find_engine(drv, dev->of_node);
1095 	if (IS_ERR(engine)) {
1096 		dev_err(dev, "Couldn't find matching engine\n");
1097 		return -EPROBE_DEFER;
1098 	}
1099 
1100 	tcon = devm_kzalloc(dev, sizeof(*tcon), GFP_KERNEL);
1101 	if (!tcon)
1102 		return -ENOMEM;
1103 	dev_set_drvdata(dev, tcon);
1104 	tcon->drm = drm;
1105 	tcon->dev = dev;
1106 	tcon->id = engine->id;
1107 	tcon->quirks = of_device_get_match_data(dev);
1108 
1109 	tcon->lcd_rst = devm_reset_control_get(dev, "lcd");
1110 	if (IS_ERR(tcon->lcd_rst)) {
1111 		dev_err(dev, "Couldn't get our reset line\n");
1112 		return PTR_ERR(tcon->lcd_rst);
1113 	}
1114 
1115 	if (tcon->quirks->needs_edp_reset) {
1116 		edp_rstc = devm_reset_control_get_shared(dev, "edp");
1117 		if (IS_ERR(edp_rstc)) {
1118 			dev_err(dev, "Couldn't get edp reset line\n");
1119 			return PTR_ERR(edp_rstc);
1120 		}
1121 
1122 		ret = reset_control_deassert(edp_rstc);
1123 		if (ret) {
1124 			dev_err(dev, "Couldn't deassert edp reset line\n");
1125 			return ret;
1126 		}
1127 	}
1128 
1129 	/* Make sure our TCON is reset */
1130 	ret = reset_control_reset(tcon->lcd_rst);
1131 	if (ret) {
1132 		dev_err(dev, "Couldn't deassert our reset line\n");
1133 		return ret;
1134 	}
1135 
1136 	if (tcon->quirks->supports_lvds) {
1137 		/*
1138 		 * This can only be made optional since we've had DT
1139 		 * nodes without the LVDS reset properties.
1140 		 *
1141 		 * If the property is missing, just disable LVDS, and
1142 		 * print a warning.
1143 		 */
1144 		tcon->lvds_rst = devm_reset_control_get_optional(dev, "lvds");
1145 		if (IS_ERR(tcon->lvds_rst)) {
1146 			dev_err(dev, "Couldn't get our reset line\n");
1147 			return PTR_ERR(tcon->lvds_rst);
1148 		} else if (tcon->lvds_rst) {
1149 			has_lvds_rst = true;
1150 			reset_control_reset(tcon->lvds_rst);
1151 		} else {
1152 			has_lvds_rst = false;
1153 		}
1154 
1155 		/*
1156 		 * This can only be made optional since we've had DT
1157 		 * nodes without the LVDS reset properties.
1158 		 *
1159 		 * If the property is missing, just disable LVDS, and
1160 		 * print a warning.
1161 		 */
1162 		if (tcon->quirks->has_lvds_alt) {
1163 			tcon->lvds_pll = devm_clk_get(dev, "lvds-alt");
1164 			if (IS_ERR(tcon->lvds_pll)) {
1165 				if (PTR_ERR(tcon->lvds_pll) == -ENOENT) {
1166 					has_lvds_alt = false;
1167 				} else {
1168 					dev_err(dev, "Couldn't get the LVDS PLL\n");
1169 					return PTR_ERR(tcon->lvds_pll);
1170 				}
1171 			} else {
1172 				has_lvds_alt = true;
1173 			}
1174 		}
1175 
1176 		if (!has_lvds_rst ||
1177 		    (tcon->quirks->has_lvds_alt && !has_lvds_alt)) {
1178 			dev_warn(dev, "Missing LVDS properties, Please upgrade your DT\n");
1179 			dev_warn(dev, "LVDS output disabled\n");
1180 			can_lvds = false;
1181 		} else {
1182 			can_lvds = true;
1183 		}
1184 	} else {
1185 		can_lvds = false;
1186 	}
1187 
1188 	ret = sun4i_tcon_init_clocks(dev, tcon);
1189 	if (ret) {
1190 		dev_err(dev, "Couldn't init our TCON clocks\n");
1191 		goto err_assert_reset;
1192 	}
1193 
1194 	ret = sun4i_tcon_init_regmap(dev, tcon);
1195 	if (ret) {
1196 		dev_err(dev, "Couldn't init our TCON regmap\n");
1197 		goto err_free_clocks;
1198 	}
1199 
1200 	if (tcon->quirks->has_channel_0) {
1201 		ret = sun4i_dclk_create(dev, tcon);
1202 		if (ret) {
1203 			dev_err(dev, "Couldn't create our TCON dot clock\n");
1204 			goto err_free_clocks;
1205 		}
1206 	}
1207 
1208 	ret = sun4i_tcon_init_irq(dev, tcon);
1209 	if (ret) {
1210 		dev_err(dev, "Couldn't init our TCON interrupts\n");
1211 		goto err_free_dotclock;
1212 	}
1213 
1214 	tcon->crtc = sun4i_crtc_init(drm, engine, tcon);
1215 	if (IS_ERR(tcon->crtc)) {
1216 		dev_err(dev, "Couldn't create our CRTC\n");
1217 		ret = PTR_ERR(tcon->crtc);
1218 		goto err_free_dotclock;
1219 	}
1220 
1221 	if (tcon->quirks->has_channel_0) {
1222 		/*
1223 		 * If we have an LVDS panel connected to the TCON, we should
1224 		 * just probe the LVDS connector. Otherwise, just probe RGB as
1225 		 * we used to.
1226 		 */
1227 		remote = of_graph_get_remote_node(dev->of_node, 1, 0);
1228 		if (of_device_is_compatible(remote, "panel-lvds"))
1229 			if (can_lvds)
1230 				ret = sun4i_lvds_init(drm, tcon);
1231 			else
1232 				ret = -EINVAL;
1233 		else
1234 			ret = sun4i_rgb_init(drm, tcon);
1235 		of_node_put(remote);
1236 
1237 		if (ret < 0)
1238 			goto err_free_dotclock;
1239 	}
1240 
1241 	if (tcon->quirks->needs_de_be_mux) {
1242 		/*
1243 		 * We assume there is no dynamic muxing of backends
1244 		 * and TCONs, so we select the backend with same ID.
1245 		 *
1246 		 * While dynamic selection might be interesting, since
1247 		 * the CRTC is tied to the TCON, while the layers are
1248 		 * tied to the backends, this means, we will need to
1249 		 * switch between groups of layers. There might not be
1250 		 * a way to represent this constraint in DRM.
1251 		 */
1252 		regmap_update_bits(tcon->regs, SUN4I_TCON0_CTL_REG,
1253 				   SUN4I_TCON0_CTL_SRC_SEL_MASK,
1254 				   tcon->id);
1255 		regmap_update_bits(tcon->regs, SUN4I_TCON1_CTL_REG,
1256 				   SUN4I_TCON1_CTL_SRC_SEL_MASK,
1257 				   tcon->id);
1258 	}
1259 
1260 	list_add_tail(&tcon->list, &drv->tcon_list);
1261 
1262 	return 0;
1263 
1264 err_free_dotclock:
1265 	if (tcon->quirks->has_channel_0)
1266 		sun4i_dclk_free(tcon);
1267 err_free_clocks:
1268 	sun4i_tcon_free_clocks(tcon);
1269 err_assert_reset:
1270 	reset_control_assert(tcon->lcd_rst);
1271 	return ret;
1272 }
1273 
1274 static void sun4i_tcon_unbind(struct device *dev, struct device *master,
1275 			      void *data)
1276 {
1277 	struct sun4i_tcon *tcon = dev_get_drvdata(dev);
1278 
1279 	list_del(&tcon->list);
1280 	if (tcon->quirks->has_channel_0)
1281 		sun4i_dclk_free(tcon);
1282 	sun4i_tcon_free_clocks(tcon);
1283 }
1284 
1285 static const struct component_ops sun4i_tcon_ops = {
1286 	.bind	= sun4i_tcon_bind,
1287 	.unbind	= sun4i_tcon_unbind,
1288 };
1289 
1290 static int sun4i_tcon_probe(struct platform_device *pdev)
1291 {
1292 	struct device_node *node = pdev->dev.of_node;
1293 	const struct sun4i_tcon_quirks *quirks;
1294 	struct drm_bridge *bridge;
1295 	struct drm_panel *panel;
1296 	int ret;
1297 
1298 	quirks = of_device_get_match_data(&pdev->dev);
1299 
1300 	/* panels and bridges are present only on TCONs with channel 0 */
1301 	if (quirks->has_channel_0) {
1302 		ret = drm_of_find_panel_or_bridge(node, 1, 0, &panel, &bridge);
1303 		if (ret == -EPROBE_DEFER)
1304 			return ret;
1305 	}
1306 
1307 	return component_add(&pdev->dev, &sun4i_tcon_ops);
1308 }
1309 
1310 static int sun4i_tcon_remove(struct platform_device *pdev)
1311 {
1312 	component_del(&pdev->dev, &sun4i_tcon_ops);
1313 
1314 	return 0;
1315 }
1316 
1317 /* platform specific TCON muxing callbacks */
1318 static int sun4i_a10_tcon_set_mux(struct sun4i_tcon *tcon,
1319 				  const struct drm_encoder *encoder)
1320 {
1321 	struct sun4i_tcon *tcon0 = sun4i_get_tcon0(encoder->dev);
1322 	u32 shift;
1323 
1324 	if (!tcon0)
1325 		return -EINVAL;
1326 
1327 	switch (encoder->encoder_type) {
1328 	case DRM_MODE_ENCODER_TMDS:
1329 		/* HDMI */
1330 		shift = 8;
1331 		break;
1332 	default:
1333 		return -EINVAL;
1334 	}
1335 
1336 	regmap_update_bits(tcon0->regs, SUN4I_TCON_MUX_CTRL_REG,
1337 			   0x3 << shift, tcon->id << shift);
1338 
1339 	return 0;
1340 }
1341 
1342 static int sun5i_a13_tcon_set_mux(struct sun4i_tcon *tcon,
1343 				  const struct drm_encoder *encoder)
1344 {
1345 	u32 val;
1346 
1347 	if (encoder->encoder_type == DRM_MODE_ENCODER_TVDAC)
1348 		val = 1;
1349 	else
1350 		val = 0;
1351 
1352 	/*
1353 	 * FIXME: Undocumented bits
1354 	 */
1355 	return regmap_write(tcon->regs, SUN4I_TCON_MUX_CTRL_REG, val);
1356 }
1357 
1358 static int sun6i_tcon_set_mux(struct sun4i_tcon *tcon,
1359 			      const struct drm_encoder *encoder)
1360 {
1361 	struct sun4i_tcon *tcon0 = sun4i_get_tcon0(encoder->dev);
1362 	u32 shift;
1363 
1364 	if (!tcon0)
1365 		return -EINVAL;
1366 
1367 	switch (encoder->encoder_type) {
1368 	case DRM_MODE_ENCODER_TMDS:
1369 		/* HDMI */
1370 		shift = 8;
1371 		break;
1372 	default:
1373 		/* TODO A31 has MIPI DSI but A31s does not */
1374 		return -EINVAL;
1375 	}
1376 
1377 	regmap_update_bits(tcon0->regs, SUN4I_TCON_MUX_CTRL_REG,
1378 			   0x3 << shift, tcon->id << shift);
1379 
1380 	return 0;
1381 }
1382 
1383 static int sun8i_r40_tcon_tv_set_mux(struct sun4i_tcon *tcon,
1384 				     const struct drm_encoder *encoder)
1385 {
1386 	struct device_node *port, *remote;
1387 	struct platform_device *pdev;
1388 	int id, ret;
1389 
1390 	/* find TCON TOP platform device and TCON id */
1391 
1392 	port = of_graph_get_port_by_id(tcon->dev->of_node, 0);
1393 	if (!port)
1394 		return -EINVAL;
1395 
1396 	id = sun4i_tcon_of_get_id_from_port(port);
1397 	of_node_put(port);
1398 
1399 	remote = of_graph_get_remote_node(tcon->dev->of_node, 0, -1);
1400 	if (!remote)
1401 		return -EINVAL;
1402 
1403 	pdev = of_find_device_by_node(remote);
1404 	of_node_put(remote);
1405 	if (!pdev)
1406 		return -EINVAL;
1407 
1408 	if (IS_ENABLED(CONFIG_DRM_SUN8I_TCON_TOP) &&
1409 	    encoder->encoder_type == DRM_MODE_ENCODER_TMDS) {
1410 		ret = sun8i_tcon_top_set_hdmi_src(&pdev->dev, id);
1411 		if (ret)
1412 			return ret;
1413 	}
1414 
1415 	if (IS_ENABLED(CONFIG_DRM_SUN8I_TCON_TOP)) {
1416 		ret = sun8i_tcon_top_de_config(&pdev->dev, tcon->id, id);
1417 		if (ret)
1418 			return ret;
1419 	}
1420 
1421 	return 0;
1422 }
1423 
1424 static const struct sun4i_tcon_quirks sun4i_a10_quirks = {
1425 	.has_channel_0		= true,
1426 	.has_channel_1		= true,
1427 	.set_mux		= sun4i_a10_tcon_set_mux,
1428 };
1429 
1430 static const struct sun4i_tcon_quirks sun5i_a13_quirks = {
1431 	.has_channel_0		= true,
1432 	.has_channel_1		= true,
1433 	.set_mux		= sun5i_a13_tcon_set_mux,
1434 };
1435 
1436 static const struct sun4i_tcon_quirks sun6i_a31_quirks = {
1437 	.has_channel_0		= true,
1438 	.has_channel_1		= true,
1439 	.has_lvds_alt		= true,
1440 	.needs_de_be_mux	= true,
1441 	.set_mux		= sun6i_tcon_set_mux,
1442 };
1443 
1444 static const struct sun4i_tcon_quirks sun6i_a31s_quirks = {
1445 	.has_channel_0		= true,
1446 	.has_channel_1		= true,
1447 	.needs_de_be_mux	= true,
1448 };
1449 
1450 static const struct sun4i_tcon_quirks sun7i_a20_quirks = {
1451 	.has_channel_0		= true,
1452 	.has_channel_1		= true,
1453 	/* Same display pipeline structure as A10 */
1454 	.set_mux		= sun4i_a10_tcon_set_mux,
1455 };
1456 
1457 static const struct sun4i_tcon_quirks sun8i_a33_quirks = {
1458 	.has_channel_0		= true,
1459 	.has_lvds_alt		= true,
1460 };
1461 
1462 static const struct sun4i_tcon_quirks sun8i_a83t_lcd_quirks = {
1463 	.supports_lvds		= true,
1464 	.has_channel_0		= true,
1465 };
1466 
1467 static const struct sun4i_tcon_quirks sun8i_a83t_tv_quirks = {
1468 	.has_channel_1		= true,
1469 };
1470 
1471 static const struct sun4i_tcon_quirks sun8i_r40_tv_quirks = {
1472 	.has_channel_1		= true,
1473 	.set_mux		= sun8i_r40_tcon_tv_set_mux,
1474 };
1475 
1476 static const struct sun4i_tcon_quirks sun8i_v3s_quirks = {
1477 	.has_channel_0		= true,
1478 };
1479 
1480 static const struct sun4i_tcon_quirks sun9i_a80_tcon_lcd_quirks = {
1481 	.has_channel_0	= true,
1482 	.needs_edp_reset = true,
1483 };
1484 
1485 static const struct sun4i_tcon_quirks sun9i_a80_tcon_tv_quirks = {
1486 	.has_channel_1	= true,
1487 	.needs_edp_reset = true,
1488 };
1489 
1490 /* sun4i_drv uses this list to check if a device node is a TCON */
1491 const struct of_device_id sun4i_tcon_of_table[] = {
1492 	{ .compatible = "allwinner,sun4i-a10-tcon", .data = &sun4i_a10_quirks },
1493 	{ .compatible = "allwinner,sun5i-a13-tcon", .data = &sun5i_a13_quirks },
1494 	{ .compatible = "allwinner,sun6i-a31-tcon", .data = &sun6i_a31_quirks },
1495 	{ .compatible = "allwinner,sun6i-a31s-tcon", .data = &sun6i_a31s_quirks },
1496 	{ .compatible = "allwinner,sun7i-a20-tcon", .data = &sun7i_a20_quirks },
1497 	{ .compatible = "allwinner,sun8i-a33-tcon", .data = &sun8i_a33_quirks },
1498 	{ .compatible = "allwinner,sun8i-a83t-tcon-lcd", .data = &sun8i_a83t_lcd_quirks },
1499 	{ .compatible = "allwinner,sun8i-a83t-tcon-tv", .data = &sun8i_a83t_tv_quirks },
1500 	{ .compatible = "allwinner,sun8i-r40-tcon-tv", .data = &sun8i_r40_tv_quirks },
1501 	{ .compatible = "allwinner,sun8i-v3s-tcon", .data = &sun8i_v3s_quirks },
1502 	{ .compatible = "allwinner,sun9i-a80-tcon-lcd", .data = &sun9i_a80_tcon_lcd_quirks },
1503 	{ .compatible = "allwinner,sun9i-a80-tcon-tv", .data = &sun9i_a80_tcon_tv_quirks },
1504 	{ }
1505 };
1506 MODULE_DEVICE_TABLE(of, sun4i_tcon_of_table);
1507 EXPORT_SYMBOL(sun4i_tcon_of_table);
1508 
1509 static struct platform_driver sun4i_tcon_platform_driver = {
1510 	.probe		= sun4i_tcon_probe,
1511 	.remove		= sun4i_tcon_remove,
1512 	.driver		= {
1513 		.name		= "sun4i-tcon",
1514 		.of_match_table	= sun4i_tcon_of_table,
1515 	},
1516 };
1517 module_platform_driver(sun4i_tcon_platform_driver);
1518 
1519 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
1520 MODULE_DESCRIPTION("Allwinner A10 Timing Controller Driver");
1521 MODULE_LICENSE("GPL");
1522