1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2014 Google Inc.
4  *
5  * Extracted from Chromium coreboot commit 3f59b13d
6  */
7 
8 #include <common.h>
9 #include <bootstage.h>
10 #include <dm.h>
11 #include <edid.h>
12 #include <errno.h>
13 #include <display.h>
14 #include <edid.h>
15 #include <lcd.h>
16 #include <log.h>
17 #include <part.h>
18 #include <video.h>
19 #include <asm/gpio.h>
20 #include <asm/io.h>
21 #include <asm/arch/clock.h>
22 #include <asm/arch/pwm.h>
23 #include <asm/arch-tegra/dc.h>
24 #include <dm/uclass-internal.h>
25 #include <linux/delay.h>
26 #include "displayport.h"
27 
28 /* return in 1000ths of a Hertz */
tegra_dc_calc_refresh(const struct display_timing * timing)29 static int tegra_dc_calc_refresh(const struct display_timing *timing)
30 {
31 	int h_total, v_total, refresh;
32 	int pclk = timing->pixelclock.typ;
33 
34 	h_total = timing->hactive.typ + timing->hfront_porch.typ +
35 			timing->hback_porch.typ + timing->hsync_len.typ;
36 	v_total = timing->vactive.typ + timing->vfront_porch.typ +
37 			timing->vback_porch.typ + timing->vsync_len.typ;
38 	if (!pclk || !h_total || !v_total)
39 		return 0;
40 	refresh = pclk / h_total;
41 	refresh *= 1000;
42 	refresh /= v_total;
43 
44 	return refresh;
45 }
46 
print_mode(const struct display_timing * timing)47 static void print_mode(const struct display_timing *timing)
48 {
49 	int refresh = tegra_dc_calc_refresh(timing);
50 
51 	debug("MODE:%dx%d@%d.%03uHz pclk=%d\n",
52 	      timing->hactive.typ, timing->vactive.typ, refresh / 1000,
53 	      refresh % 1000, timing->pixelclock.typ);
54 }
55 
update_display_mode(struct dc_ctlr * disp_ctrl,const struct display_timing * timing,int href_to_sync,int vref_to_sync)56 static int update_display_mode(struct dc_ctlr *disp_ctrl,
57 			       const struct display_timing *timing,
58 			       int href_to_sync, int vref_to_sync)
59 {
60 	print_mode(timing);
61 
62 	writel(0x1, &disp_ctrl->disp.disp_timing_opt);
63 
64 	writel(vref_to_sync << 16 | href_to_sync,
65 	       &disp_ctrl->disp.ref_to_sync);
66 
67 	writel(timing->vsync_len.typ << 16 | timing->hsync_len.typ,
68 	       &disp_ctrl->disp.sync_width);
69 
70 	writel(((timing->vback_porch.typ - vref_to_sync) << 16) |
71 		timing->hback_porch.typ, &disp_ctrl->disp.back_porch);
72 
73 	writel(((timing->vfront_porch.typ + vref_to_sync) << 16) |
74 		timing->hfront_porch.typ, &disp_ctrl->disp.front_porch);
75 
76 	writel(timing->hactive.typ | (timing->vactive.typ << 16),
77 	       &disp_ctrl->disp.disp_active);
78 
79 	/**
80 	 * We want to use PLLD_out0, which is PLLD / 2:
81 	 *   PixelClock = (PLLD / 2) / ShiftClockDiv / PixelClockDiv.
82 	 *
83 	 * Currently most panels work inside clock range 50MHz~100MHz, and PLLD
84 	 * has some requirements to have VCO in range 500MHz~1000MHz (see
85 	 * clock.c for more detail). To simplify calculation, we set
86 	 * PixelClockDiv to 1 and ShiftClockDiv to 1. In future these values
87 	 * may be calculated by clock_display, to allow wider frequency range.
88 	 *
89 	 * Note ShiftClockDiv is a 7.1 format value.
90 	 */
91 	const u32 shift_clock_div = 1;
92 	writel((PIXEL_CLK_DIVIDER_PCD1 << PIXEL_CLK_DIVIDER_SHIFT) |
93 	       ((shift_clock_div - 1) * 2) << SHIFT_CLK_DIVIDER_SHIFT,
94 	       &disp_ctrl->disp.disp_clk_ctrl);
95 	debug("%s: PixelClock=%u, ShiftClockDiv=%u\n", __func__,
96 	      timing->pixelclock.typ, shift_clock_div);
97 	return 0;
98 }
99 
tegra_dc_poll_register(void * reg,u32 mask,u32 exp_val,u32 poll_interval_us,u32 timeout_us)100 static u32 tegra_dc_poll_register(void *reg,
101 	u32 mask, u32 exp_val, u32 poll_interval_us, u32 timeout_us)
102 {
103 	u32 temp = timeout_us;
104 	u32 reg_val = 0;
105 
106 	do {
107 		udelay(poll_interval_us);
108 		reg_val = readl(reg);
109 		if (timeout_us > poll_interval_us)
110 			timeout_us -= poll_interval_us;
111 		else
112 			break;
113 	} while ((reg_val & mask) != exp_val);
114 
115 	if ((reg_val & mask) == exp_val)
116 		return 0;	/* success */
117 
118 	return temp;
119 }
120 
tegra_dc_sor_general_act(struct dc_ctlr * disp_ctrl)121 int tegra_dc_sor_general_act(struct dc_ctlr *disp_ctrl)
122 {
123 	writel(GENERAL_ACT_REQ, &disp_ctrl->cmd.state_ctrl);
124 
125 	if (tegra_dc_poll_register(&disp_ctrl->cmd.state_ctrl,
126 				   GENERAL_ACT_REQ, 0, 100,
127 				   DC_POLL_TIMEOUT_MS * 1000)) {
128 		debug("dc timeout waiting for DC to stop\n");
129 		return -ETIMEDOUT;
130 	}
131 
132 	return 0;
133 }
134 
135 static struct display_timing min_mode = {
136 	.hsync_len = { .typ = 1 },
137 	.vsync_len = { .typ = 1 },
138 	.hback_porch = { .typ = 20 },
139 	.vback_porch = { .typ = 0 },
140 	.hactive = { .typ = 16 },
141 	.vactive = { .typ = 16 },
142 	.hfront_porch = { .typ = 1 },
143 	.vfront_porch = { .typ = 2 },
144 };
145 
146 /* Disable windows and set minimum raster timings */
tegra_dc_sor_disable_win_short_raster(struct dc_ctlr * disp_ctrl,int * dc_reg_ctx)147 void tegra_dc_sor_disable_win_short_raster(struct dc_ctlr *disp_ctrl,
148 					   int *dc_reg_ctx)
149 {
150 	const int href_to_sync = 0, vref_to_sync = 1;
151 	int selected_windows, i;
152 
153 	selected_windows = readl(&disp_ctrl->cmd.disp_win_header);
154 
155 	/* Store and clear window options */
156 	for (i = 0; i < DC_N_WINDOWS; ++i) {
157 		writel(WINDOW_A_SELECT << i, &disp_ctrl->cmd.disp_win_header);
158 		dc_reg_ctx[i] = readl(&disp_ctrl->win.win_opt);
159 		writel(0, &disp_ctrl->win.win_opt);
160 		writel(WIN_A_ACT_REQ << i, &disp_ctrl->cmd.state_ctrl);
161 	}
162 
163 	writel(selected_windows, &disp_ctrl->cmd.disp_win_header);
164 
165 	/* Store current raster timings and set minimum timings */
166 	dc_reg_ctx[i++] = readl(&disp_ctrl->disp.ref_to_sync);
167 	writel(href_to_sync | (vref_to_sync << 16),
168 	       &disp_ctrl->disp.ref_to_sync);
169 
170 	dc_reg_ctx[i++] = readl(&disp_ctrl->disp.sync_width);
171 	writel(min_mode.hsync_len.typ | (min_mode.vsync_len.typ << 16),
172 	       &disp_ctrl->disp.sync_width);
173 
174 	dc_reg_ctx[i++] = readl(&disp_ctrl->disp.back_porch);
175 	writel(min_mode.hback_porch.typ | (min_mode.vback_porch.typ << 16),
176 	       &disp_ctrl->disp.back_porch);
177 
178 	dc_reg_ctx[i++] = readl(&disp_ctrl->disp.front_porch);
179 	writel(min_mode.hfront_porch.typ | (min_mode.vfront_porch.typ << 16),
180 	       &disp_ctrl->disp.front_porch);
181 
182 	dc_reg_ctx[i++] = readl(&disp_ctrl->disp.disp_active);
183 	writel(min_mode.hactive.typ | (min_mode.vactive.typ << 16),
184 	       &disp_ctrl->disp.disp_active);
185 
186 	writel(GENERAL_ACT_REQ, &disp_ctrl->cmd.state_ctrl);
187 }
188 
189 /* Restore previous windows status and raster timings */
tegra_dc_sor_restore_win_and_raster(struct dc_ctlr * disp_ctrl,int * dc_reg_ctx)190 void tegra_dc_sor_restore_win_and_raster(struct dc_ctlr *disp_ctrl,
191 					 int *dc_reg_ctx)
192 {
193 	int selected_windows, i;
194 
195 	selected_windows = readl(&disp_ctrl->cmd.disp_win_header);
196 
197 	for (i = 0; i < DC_N_WINDOWS; ++i) {
198 		writel(WINDOW_A_SELECT << i, &disp_ctrl->cmd.disp_win_header);
199 		writel(dc_reg_ctx[i], &disp_ctrl->win.win_opt);
200 		writel(WIN_A_ACT_REQ << i, &disp_ctrl->cmd.state_ctrl);
201 	}
202 
203 	writel(selected_windows, &disp_ctrl->cmd.disp_win_header);
204 
205 	writel(dc_reg_ctx[i++], &disp_ctrl->disp.ref_to_sync);
206 	writel(dc_reg_ctx[i++], &disp_ctrl->disp.sync_width);
207 	writel(dc_reg_ctx[i++], &disp_ctrl->disp.back_porch);
208 	writel(dc_reg_ctx[i++], &disp_ctrl->disp.front_porch);
209 	writel(dc_reg_ctx[i++], &disp_ctrl->disp.disp_active);
210 
211 	writel(GENERAL_UPDATE, &disp_ctrl->cmd.state_ctrl);
212 }
213 
tegra_depth_for_bpp(int bpp)214 static int tegra_depth_for_bpp(int bpp)
215 {
216 	switch (bpp) {
217 	case 32:
218 		return COLOR_DEPTH_R8G8B8A8;
219 	case 16:
220 		return COLOR_DEPTH_B5G6R5;
221 	default:
222 		debug("Unsupported LCD bit depth");
223 		return -1;
224 	}
225 }
226 
update_window(struct dc_ctlr * disp_ctrl,u32 frame_buffer,int fb_bits_per_pixel,const struct display_timing * timing)227 static int update_window(struct dc_ctlr *disp_ctrl,
228 			 u32 frame_buffer, int fb_bits_per_pixel,
229 			 const struct display_timing *timing)
230 {
231 	const u32 colour_white = 0xffffff;
232 	int colour_depth;
233 	u32 val;
234 
235 	writel(WINDOW_A_SELECT, &disp_ctrl->cmd.disp_win_header);
236 
237 	writel(((timing->vactive.typ << 16) | timing->hactive.typ),
238 	       &disp_ctrl->win.size);
239 	writel(((timing->vactive.typ << 16) |
240 		(timing->hactive.typ * fb_bits_per_pixel / 8)),
241 		&disp_ctrl->win.prescaled_size);
242 	writel(((timing->hactive.typ * fb_bits_per_pixel / 8 + 31) /
243 		32 * 32), &disp_ctrl->win.line_stride);
244 
245 	colour_depth = tegra_depth_for_bpp(fb_bits_per_pixel);
246 	if (colour_depth == -1)
247 		return -EINVAL;
248 
249 	writel(colour_depth, &disp_ctrl->win.color_depth);
250 
251 	writel(frame_buffer, &disp_ctrl->winbuf.start_addr);
252 	writel(0x1000 << V_DDA_INC_SHIFT | 0x1000 << H_DDA_INC_SHIFT,
253 	       &disp_ctrl->win.dda_increment);
254 
255 	writel(colour_white, &disp_ctrl->disp.blend_background_color);
256 	writel(CTRL_MODE_C_DISPLAY << CTRL_MODE_SHIFT,
257 	       &disp_ctrl->cmd.disp_cmd);
258 
259 	writel(WRITE_MUX_ACTIVE, &disp_ctrl->cmd.state_access);
260 
261 	val = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
262 	val |= GENERAL_UPDATE | WIN_A_UPDATE;
263 	writel(val, &disp_ctrl->cmd.state_ctrl);
264 
265 	/* Enable win_a */
266 	val = readl(&disp_ctrl->win.win_opt);
267 	writel(val | WIN_ENABLE, &disp_ctrl->win.win_opt);
268 
269 	return 0;
270 }
271 
tegra_dc_init(struct dc_ctlr * disp_ctrl)272 static int tegra_dc_init(struct dc_ctlr *disp_ctrl)
273 {
274 	/* do not accept interrupts during initialization */
275 	writel(0x00000000, &disp_ctrl->cmd.int_mask);
276 	writel(WRITE_MUX_ASSEMBLY | READ_MUX_ASSEMBLY,
277 	       &disp_ctrl->cmd.state_access);
278 	writel(WINDOW_A_SELECT, &disp_ctrl->cmd.disp_win_header);
279 	writel(0x00000000, &disp_ctrl->win.win_opt);
280 	writel(0x00000000, &disp_ctrl->win.byte_swap);
281 	writel(0x00000000, &disp_ctrl->win.buffer_ctrl);
282 
283 	writel(0x00000000, &disp_ctrl->win.pos);
284 	writel(0x00000000, &disp_ctrl->win.h_initial_dda);
285 	writel(0x00000000, &disp_ctrl->win.v_initial_dda);
286 	writel(0x00000000, &disp_ctrl->win.dda_increment);
287 	writel(0x00000000, &disp_ctrl->win.dv_ctrl);
288 
289 	writel(0x01000000, &disp_ctrl->win.blend_layer_ctrl);
290 	writel(0x00000000, &disp_ctrl->win.blend_match_select);
291 	writel(0x00000000, &disp_ctrl->win.blend_nomatch_select);
292 	writel(0x00000000, &disp_ctrl->win.blend_alpha_1bit);
293 
294 	writel(0x00000000, &disp_ctrl->winbuf.start_addr_hi);
295 	writel(0x00000000, &disp_ctrl->winbuf.addr_h_offset);
296 	writel(0x00000000, &disp_ctrl->winbuf.addr_v_offset);
297 
298 	writel(0x00000000, &disp_ctrl->com.crc_checksum);
299 	writel(0x00000000, &disp_ctrl->com.pin_output_enb[0]);
300 	writel(0x00000000, &disp_ctrl->com.pin_output_enb[1]);
301 	writel(0x00000000, &disp_ctrl->com.pin_output_enb[2]);
302 	writel(0x00000000, &disp_ctrl->com.pin_output_enb[3]);
303 	writel(0x00000000, &disp_ctrl->disp.disp_signal_opt0);
304 
305 	return 0;
306 }
307 
dump_config(int panel_bpp,struct display_timing * timing)308 static void dump_config(int panel_bpp, struct display_timing *timing)
309 {
310 	printf("timing->hactive.typ = %d\n", timing->hactive.typ);
311 	printf("timing->vactive.typ = %d\n", timing->vactive.typ);
312 	printf("timing->pixelclock.typ = %d\n", timing->pixelclock.typ);
313 
314 	printf("timing->hfront_porch.typ = %d\n", timing->hfront_porch.typ);
315 	printf("timing->hsync_len.typ = %d\n", timing->hsync_len.typ);
316 	printf("timing->hback_porch.typ = %d\n", timing->hback_porch.typ);
317 
318 	printf("timing->vfront_porch.typ  %d\n", timing->vfront_porch.typ);
319 	printf("timing->vsync_len.typ = %d\n", timing->vsync_len.typ);
320 	printf("timing->vback_porch.typ = %d\n", timing->vback_porch.typ);
321 
322 	printf("panel_bits_per_pixel = %d\n", panel_bpp);
323 }
324 
display_update_config_from_edid(struct udevice * dp_dev,int * panel_bppp,struct display_timing * timing)325 static int display_update_config_from_edid(struct udevice *dp_dev,
326 					   int *panel_bppp,
327 					   struct display_timing *timing)
328 {
329 	return display_read_timing(dp_dev, timing);
330 }
331 
display_init(struct udevice * dev,void * lcdbase,int fb_bits_per_pixel,struct display_timing * timing)332 static int display_init(struct udevice *dev, void *lcdbase,
333 			int fb_bits_per_pixel, struct display_timing *timing)
334 {
335 	struct display_plat *disp_uc_plat;
336 	struct dc_ctlr *dc_ctlr;
337 	struct udevice *dp_dev;
338 	const int href_to_sync = 1, vref_to_sync = 1;
339 	int panel_bpp = 18;	/* default 18 bits per pixel */
340 	u32 plld_rate;
341 	int ret;
342 
343 	/*
344 	 * Before we probe the display device (eDP), tell it that this device
345 	 * is the source of the display data.
346 	 */
347 	ret = uclass_find_first_device(UCLASS_DISPLAY, &dp_dev);
348 	if (ret) {
349 		debug("%s: device '%s' display not found (ret=%d)\n", __func__,
350 		      dev->name, ret);
351 		return ret;
352 	}
353 
354 	disp_uc_plat = dev_get_uclass_plat(dp_dev);
355 	debug("Found device '%s', disp_uc_priv=%p\n", dp_dev->name,
356 	      disp_uc_plat);
357 	disp_uc_plat->src_dev = dev;
358 
359 	ret = uclass_get_device(UCLASS_DISPLAY, 0, &dp_dev);
360 	if (ret) {
361 		debug("%s: Failed to probe eDP, ret=%d\n", __func__, ret);
362 		return ret;
363 	}
364 
365 	dc_ctlr = (struct dc_ctlr *)dev_read_addr(dev);
366 	if (ofnode_decode_display_timing(dev_ofnode(dev), 0, timing)) {
367 		debug("%s: Failed to decode display timing\n", __func__);
368 		return -EINVAL;
369 	}
370 
371 	ret = display_update_config_from_edid(dp_dev, &panel_bpp, timing);
372 	if (ret) {
373 		debug("%s: Failed to decode EDID, using defaults\n", __func__);
374 		dump_config(panel_bpp, timing);
375 	}
376 
377 	/*
378 	 * The plld is programmed with the assumption of the SHIFT_CLK_DIVIDER
379 	 * and PIXEL_CLK_DIVIDER are zero (divide by 1). See the
380 	 * update_display_mode() for detail.
381 	 */
382 	plld_rate = clock_set_display_rate(timing->pixelclock.typ * 2);
383 	if (plld_rate == 0) {
384 		printf("dc: clock init failed\n");
385 		return -EIO;
386 	} else if (plld_rate != timing->pixelclock.typ * 2) {
387 		debug("dc: plld rounded to %u\n", plld_rate);
388 		timing->pixelclock.typ = plld_rate / 2;
389 	}
390 
391 	/* Init dc */
392 	ret = tegra_dc_init(dc_ctlr);
393 	if (ret) {
394 		debug("dc: init failed\n");
395 		return ret;
396 	}
397 
398 	/* Configure dc mode */
399 	ret = update_display_mode(dc_ctlr, timing, href_to_sync, vref_to_sync);
400 	if (ret) {
401 		debug("dc: failed to configure display mode\n");
402 		return ret;
403 	}
404 
405 	/* Enable dp */
406 	ret = display_enable(dp_dev, panel_bpp, timing);
407 	if (ret) {
408 		debug("dc: failed to enable display: ret=%d\n", ret);
409 		return ret;
410 	}
411 
412 	ret = update_window(dc_ctlr, (ulong)lcdbase, fb_bits_per_pixel, timing);
413 	if (ret) {
414 		debug("dc: failed to update window\n");
415 		return ret;
416 	}
417 	debug("%s: ready\n", __func__);
418 
419 	return 0;
420 }
421 
422 enum {
423 	/* Maximum LCD size we support */
424 	LCD_MAX_WIDTH		= 1920,
425 	LCD_MAX_HEIGHT		= 1200,
426 	LCD_MAX_LOG2_BPP	= 4,		/* 2^4 = 16 bpp */
427 };
428 
tegra124_lcd_init(struct udevice * dev,void * lcdbase,enum video_log2_bpp l2bpp)429 static int tegra124_lcd_init(struct udevice *dev, void *lcdbase,
430 			     enum video_log2_bpp l2bpp)
431 {
432 	struct video_priv *uc_priv = dev_get_uclass_priv(dev);
433 	struct display_timing timing;
434 	int ret;
435 
436 	clock_set_up_plldp();
437 	clock_start_periph_pll(PERIPH_ID_HOST1X, CLOCK_ID_PERIPH, 408000000);
438 
439 	clock_enable(PERIPH_ID_HOST1X);
440 	clock_enable(PERIPH_ID_DISP1);
441 	clock_enable(PERIPH_ID_PWM);
442 	clock_enable(PERIPH_ID_DPAUX);
443 	clock_enable(PERIPH_ID_SOR0);
444 	udelay(2);
445 
446 	reset_set_enable(PERIPH_ID_HOST1X, 0);
447 	reset_set_enable(PERIPH_ID_DISP1, 0);
448 	reset_set_enable(PERIPH_ID_PWM, 0);
449 	reset_set_enable(PERIPH_ID_DPAUX, 0);
450 	reset_set_enable(PERIPH_ID_SOR0, 0);
451 
452 	ret = display_init(dev, lcdbase, 1 << l2bpp, &timing);
453 	if (ret)
454 		return ret;
455 
456 	uc_priv->xsize = roundup(timing.hactive.typ, 16);
457 	uc_priv->ysize = timing.vactive.typ;
458 	uc_priv->bpix = l2bpp;
459 
460 	video_set_flush_dcache(dev, 1);
461 	debug("%s: done\n", __func__);
462 
463 	return 0;
464 }
465 
tegra124_lcd_probe(struct udevice * dev)466 static int tegra124_lcd_probe(struct udevice *dev)
467 {
468 	struct video_uc_plat *plat = dev_get_uclass_plat(dev);
469 	ulong start;
470 	int ret;
471 
472 	start = get_timer(0);
473 	bootstage_start(BOOTSTAGE_ID_ACCUM_LCD, "lcd");
474 	ret = tegra124_lcd_init(dev, (void *)plat->base, VIDEO_BPP16);
475 	bootstage_accum(BOOTSTAGE_ID_ACCUM_LCD);
476 	debug("LCD init took %lu ms\n", get_timer(start));
477 	if (ret)
478 		printf("%s: Error %d\n", __func__, ret);
479 
480 	return 0;
481 }
482 
tegra124_lcd_bind(struct udevice * dev)483 static int tegra124_lcd_bind(struct udevice *dev)
484 {
485 	struct video_uc_plat *uc_plat = dev_get_uclass_plat(dev);
486 
487 	uc_plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT *
488 			(1 << VIDEO_BPP16) / 8;
489 	debug("%s: Frame buffer size %x\n", __func__, uc_plat->size);
490 
491 	return 0;
492 }
493 
494 static const struct udevice_id tegra124_lcd_ids[] = {
495 	{ .compatible = "nvidia,tegra124-dc" },
496 	{ }
497 };
498 
499 U_BOOT_DRIVER(tegra124_dc) = {
500 	.name	= "tegra124-dc",
501 	.id	= UCLASS_VIDEO,
502 	.of_match = tegra124_lcd_ids,
503 	.bind	= tegra124_lcd_bind,
504 	.probe	= tegra124_lcd_probe,
505 };
506