blob: e4f95d49a9c31d264c16f53e6fe82de3d21939a2 [file] [log] [blame]
Luc Verhaegenb01df1e2014-08-13 07:55:06 +02001/*
2 * Display driver for Allwinner SoCs.
3 *
4 * (C) Copyright 2013-2014 Luc Verhaegen <libv@skynet.be>
5 * (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11
12#include <asm/arch/clock.h>
13#include <asm/arch/display.h>
14#include <asm/global_data.h>
15#include <asm/io.h>
Hans de Goedea5aa95f2014-12-19 16:05:12 +010016#include <errno.h>
Luc Verhaegen4869a8c2014-08-13 07:55:07 +020017#include <fdtdec.h>
18#include <fdt_support.h>
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020019#include <video_fb.h>
Hans de Goedeccb0ed52014-12-19 13:46:33 +010020#include "videomodes.h"
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020021
22DECLARE_GLOBAL_DATA_PTR;
23
Hans de Goedea0b1b732014-12-21 14:37:45 +010024enum sunxi_monitor {
25 sunxi_monitor_none,
26 sunxi_monitor_dvi,
27 sunxi_monitor_hdmi,
28 sunxi_monitor_lcd,
29 sunxi_monitor_vga,
30};
31#define SUNXI_MONITOR_LAST sunxi_monitor_vga
32
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020033struct sunxi_display {
34 GraphicDevice graphic_device;
35 bool enabled;
Hans de Goedea0b1b732014-12-21 14:37:45 +010036 enum sunxi_monitor monitor;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020037} sunxi_display;
38
Hans de Goedea5aa95f2014-12-19 16:05:12 +010039/*
40 * Wait up to 200ms for value to be set in given part of reg.
41 */
42static int await_completion(u32 *reg, u32 mask, u32 val)
43{
44 unsigned long tmo = timer_get_us() + 200000;
45
46 while ((readl(reg) & mask) != val) {
47 if (timer_get_us() > tmo) {
48 printf("DDC: timeout reading EDID\n");
49 return -ETIME;
50 }
51 }
52 return 0;
53}
54
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020055static int sunxi_hdmi_hpd_detect(void)
56{
57 struct sunxi_ccm_reg * const ccm =
58 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
59 struct sunxi_hdmi_reg * const hdmi =
60 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
Hans de Goede205a30c2014-12-20 15:15:23 +010061 unsigned long tmo = timer_get_us() + 300000;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020062
63 /* Set pll3 to 300MHz */
64 clock_set_pll3(300000000);
65
66 /* Set hdmi parent to pll3 */
67 clrsetbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_PLL_MASK,
68 CCM_HDMI_CTRL_PLL3);
69
70 /* Set ahb gating to pass */
Hans de Goedef651e0a2014-11-14 17:42:14 +010071#ifdef CONFIG_MACH_SUN6I
72 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
73#endif
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020074 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI);
75
76 /* Clock on */
77 setbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE);
78
79 writel(SUNXI_HDMI_CTRL_ENABLE, &hdmi->ctrl);
80 writel(SUNXI_HDMI_PAD_CTRL0_HDP, &hdmi->pad_ctrl0);
81
Hans de Goede205a30c2014-12-20 15:15:23 +010082 while (timer_get_us() < tmo) {
83 if (readl(&hdmi->hpd) & SUNXI_HDMI_HPD_DETECT)
84 return 1;
85 }
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020086
Hans de Goede205a30c2014-12-20 15:15:23 +010087 return 0;
Hans de Goede695bda42014-12-19 15:13:57 +010088}
89
90static void sunxi_hdmi_shutdown(void)
91{
92 struct sunxi_ccm_reg * const ccm =
93 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
94 struct sunxi_hdmi_reg * const hdmi =
95 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020096
Luc Verhaegenb01df1e2014-08-13 07:55:06 +020097 clrbits_le32(&hdmi->ctrl, SUNXI_HDMI_CTRL_ENABLE);
98 clrbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE);
99 clrbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI);
Hans de Goedef651e0a2014-11-14 17:42:14 +0100100#ifdef CONFIG_MACH_SUN6I
101 clrbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
102#endif
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200103 clock_set_pll3(0);
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200104}
105
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100106static int sunxi_hdmi_ddc_do_command(u32 cmnd, int offset, int n)
107{
108 struct sunxi_hdmi_reg * const hdmi =
109 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
110
111 setbits_le32(&hdmi->ddc_fifo_ctrl, SUNXI_HDMI_DDC_FIFO_CTRL_CLEAR);
112 writel(SUNXI_HMDI_DDC_ADDR_EDDC_SEGMENT(offset >> 8) |
113 SUNXI_HMDI_DDC_ADDR_EDDC_ADDR |
114 SUNXI_HMDI_DDC_ADDR_OFFSET(offset) |
115 SUNXI_HMDI_DDC_ADDR_SLAVE_ADDR, &hdmi->ddc_addr);
116#ifndef CONFIG_MACH_SUN6I
117 writel(n, &hdmi->ddc_byte_count);
118 writel(cmnd, &hdmi->ddc_cmnd);
119#else
120 writel(n << 16 | cmnd, &hdmi->ddc_cmnd);
121#endif
122 setbits_le32(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_START);
123
124 return await_completion(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_START, 0);
125}
126
127static int sunxi_hdmi_ddc_read(int offset, u8 *buf, int count)
128{
129 struct sunxi_hdmi_reg * const hdmi =
130 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
131 int i, n;
132
133 while (count > 0) {
134 if (count > 16)
135 n = 16;
136 else
137 n = count;
138
139 if (sunxi_hdmi_ddc_do_command(
140 SUNXI_HDMI_DDC_CMND_EXPLICIT_EDDC_READ,
141 offset, n))
142 return -ETIME;
143
144 for (i = 0; i < n; i++)
145 *buf++ = readb(&hdmi->ddc_fifo_data);
146
147 offset += n;
148 count -= n;
149 }
150
151 return 0;
152}
153
Hans de Goede45b8f7b2014-12-20 14:01:48 +0100154static int sunxi_hdmi_edid_get_block(int block, u8 *buf)
155{
156 int r, retries = 2;
157
158 do {
159 r = sunxi_hdmi_ddc_read(block * 128, buf, 128);
160 if (r)
161 continue;
162 r = edid_check_checksum(buf);
163 if (r) {
164 printf("EDID block %d: checksum error%s\n",
165 block, retries ? ", retrying" : "");
166 }
167 } while (r && retries--);
168
169 return r;
170}
171
Hans de Goedea0b1b732014-12-21 14:37:45 +0100172static int sunxi_hdmi_edid_get_mode(struct ctfb_res_modes *mode)
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100173{
174 struct edid1_info edid1;
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100175 struct edid_cea861_info cea681[4];
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100176 struct edid_detailed_timing *t =
177 (struct edid_detailed_timing *)edid1.monitor_details.timing;
178 struct sunxi_hdmi_reg * const hdmi =
179 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
180 struct sunxi_ccm_reg * const ccm =
181 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100182 int i, r, ext_blocks = 0;
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100183
184 /* SUNXI_HDMI_CTRL_ENABLE & PAD_CTRL0 are already set by hpd_detect */
185 writel(SUNXI_HDMI_PAD_CTRL1 | SUNXI_HDMI_PAD_CTRL1_HALVE,
186 &hdmi->pad_ctrl1);
187 writel(SUNXI_HDMI_PLL_CTRL | SUNXI_HDMI_PLL_CTRL_DIV(15),
188 &hdmi->pll_ctrl);
189 writel(SUNXI_HDMI_PLL_DBG0_PLL3, &hdmi->pll_dbg0);
190
191 /* Reset i2c controller */
192 setbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_DDC_GATE);
193 writel(SUNXI_HMDI_DDC_CTRL_ENABLE |
194 SUNXI_HMDI_DDC_CTRL_SDA_ENABLE |
195 SUNXI_HMDI_DDC_CTRL_SCL_ENABLE |
196 SUNXI_HMDI_DDC_CTRL_RESET, &hdmi->ddc_ctrl);
197 if (await_completion(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_RESET, 0))
198 return -EIO;
199
200 writel(SUNXI_HDMI_DDC_CLOCK, &hdmi->ddc_clock);
201#ifndef CONFIG_MACH_SUN6I
202 writel(SUNXI_HMDI_DDC_LINE_CTRL_SDA_ENABLE |
203 SUNXI_HMDI_DDC_LINE_CTRL_SCL_ENABLE, &hdmi->ddc_line_ctrl);
204#endif
205
Hans de Goede45b8f7b2014-12-20 14:01:48 +0100206 r = sunxi_hdmi_edid_get_block(0, (u8 *)&edid1);
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100207 if (r == 0) {
208 r = edid_check_info(&edid1);
209 if (r) {
210 printf("EDID: invalid EDID data\n");
211 r = -EINVAL;
212 }
213 }
214 if (r == 0) {
215 ext_blocks = edid1.extension_flag;
216 if (ext_blocks > 4)
217 ext_blocks = 4;
218 for (i = 0; i < ext_blocks; i++) {
219 if (sunxi_hdmi_edid_get_block(1 + i,
220 (u8 *)&cea681[i]) != 0) {
221 ext_blocks = i;
222 break;
223 }
224 }
225 }
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100226
227 /* Disable DDC engine, no longer needed */
228 clrbits_le32(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_ENABLE);
229 clrbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_DDC_GATE);
230
231 if (r)
232 return r;
233
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100234 /* We want version 1.3 or 1.2 with detailed timing info */
235 if (edid1.version != 1 || (edid1.revision < 3 &&
236 !EDID1_INFO_FEATURE_PREFERRED_TIMING_MODE(edid1))) {
237 printf("EDID: unsupported version %d.%d\n",
238 edid1.version, edid1.revision);
239 return -EINVAL;
240 }
241
242 /* Take the first usable detailed timing */
243 for (i = 0; i < 4; i++, t++) {
244 r = video_edid_dtd_to_ctfb_res_modes(t, mode);
245 if (r == 0)
246 break;
247 }
248 if (i == 4) {
249 printf("EDID: no usable detailed timing found\n");
250 return -ENOENT;
251 }
252
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100253 /* Check for basic audio support, if found enable hdmi output */
Hans de Goedea0b1b732014-12-21 14:37:45 +0100254 sunxi_display.monitor = sunxi_monitor_dvi;
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100255 for (i = 0; i < ext_blocks; i++) {
256 if (cea681[i].extension_tag != EDID_CEA861_EXTENSION_TAG ||
257 cea681[i].revision < 2)
258 continue;
259
260 if (EDID_CEA861_SUPPORTS_BASIC_AUDIO(cea681[i]))
Hans de Goedea0b1b732014-12-21 14:37:45 +0100261 sunxi_display.monitor = sunxi_monitor_hdmi;
Hans de Goede1ff6cc42014-12-20 14:31:45 +0100262 }
263
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100264 return 0;
265}
266
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200267/*
268 * This is the entity that mixes and matches the different layers and inputs.
269 * Allwinner calls it the back-end, but i like composer better.
270 */
271static void sunxi_composer_init(void)
272{
273 struct sunxi_ccm_reg * const ccm =
274 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
275 struct sunxi_de_be_reg * const de_be =
276 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
277 int i;
278
Hans de Goedef651e0a2014-11-14 17:42:14 +0100279#ifdef CONFIG_MACH_SUN6I
280 /* Reset off */
281 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DE_BE0);
282#endif
283
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200284 /* Clocks on */
285 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_DE_BE0);
286 setbits_le32(&ccm->dram_clk_gate, 1 << CCM_DRAM_GATE_OFFSET_DE_BE0);
287 clock_set_de_mod_clock(&ccm->be0_clk_cfg, 300000000);
288
289 /* Engine bug, clear registers after reset */
290 for (i = 0x0800; i < 0x1000; i += 4)
291 writel(0, SUNXI_DE_BE0_BASE + i);
292
293 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_ENABLE);
294}
295
Hans de Goedeccb0ed52014-12-19 13:46:33 +0100296static void sunxi_composer_mode_set(const struct ctfb_res_modes *mode,
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200297 unsigned int address)
298{
299 struct sunxi_de_be_reg * const de_be =
300 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
301
302 writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres),
303 &de_be->disp_size);
304 writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres),
305 &de_be->layer0_size);
306 writel(SUNXI_DE_BE_LAYER_STRIDE(mode->xres), &de_be->layer0_stride);
307 writel(address << 3, &de_be->layer0_addr_low32b);
308 writel(address >> 29, &de_be->layer0_addr_high4b);
309 writel(SUNXI_DE_BE_LAYER_ATTR1_FMT_XRGB8888, &de_be->layer0_attr1_ctrl);
310
311 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_LAYER0_ENABLE);
312}
313
Hans de Goede4125f922014-12-21 14:49:34 +0100314static void sunxi_composer_enable(void)
315{
316 struct sunxi_de_be_reg * const de_be =
317 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
318
319 setbits_le32(&de_be->reg_ctrl, SUNXI_DE_BE_REG_CTRL_LOAD_REGS);
320 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_START);
321}
322
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200323/*
324 * LCDC, what allwinner calls a CRTC, so timing controller and serializer.
325 */
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100326static void sunxi_lcdc_pll_set(int tcon, int dotclock,
327 int *clk_div, int *clk_double)
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200328{
329 struct sunxi_ccm_reg * const ccm =
330 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100331 int value, n, m, min_m, max_m, diff;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200332 int best_n = 0, best_m = 0, best_diff = 0x0FFFFFFF;
333 int best_double = 0;
334
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100335 if (tcon == 0) {
336 min_m = 6;
337 max_m = 127;
338 } else {
339 min_m = 1;
340 max_m = 15;
341 }
342
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200343 /*
344 * Find the lowest divider resulting in a matching clock, if there
345 * is no match, pick the closest lower clock, as monitors tend to
346 * not sync to higher frequencies.
347 */
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100348 for (m = min_m; m <= max_m; m++) {
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200349 n = (m * dotclock) / 3000;
350
351 if ((n >= 9) && (n <= 127)) {
352 value = (3000 * n) / m;
353 diff = dotclock - value;
354 if (diff < best_diff) {
355 best_diff = diff;
356 best_m = m;
357 best_n = n;
358 best_double = 0;
359 }
360 }
361
362 /* These are just duplicates */
363 if (!(m & 1))
364 continue;
365
366 n = (m * dotclock) / 6000;
367 if ((n >= 9) && (n <= 127)) {
368 value = (6000 * n) / m;
369 diff = dotclock - value;
370 if (diff < best_diff) {
371 best_diff = diff;
372 best_m = m;
373 best_n = n;
374 best_double = 1;
375 }
376 }
377 }
378
379 debug("dotclock: %dkHz = %dkHz: (%d * 3MHz * %d) / %d\n",
380 dotclock, (best_double + 1) * 3000 * best_n / best_m,
381 best_double + 1, best_n, best_m);
382
383 clock_set_pll3(best_n * 3000000);
384
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100385 if (tcon == 0) {
386 writel(CCM_LCD_CH0_CTRL_GATE | CCM_LCD_CH0_CTRL_RST |
387 (best_double ? CCM_LCD_CH0_CTRL_PLL3_2X :
388 CCM_LCD_CH0_CTRL_PLL3),
389 &ccm->lcd0_ch0_clk_cfg);
390 } else {
391 writel(CCM_LCD_CH1_CTRL_GATE |
392 (best_double ? CCM_LCD_CH1_CTRL_PLL3_2X :
393 CCM_LCD_CH1_CTRL_PLL3) |
394 CCM_LCD_CH1_CTRL_M(best_m), &ccm->lcd0_ch1_clk_cfg);
395 }
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200396
397 *clk_div = best_m;
398 *clk_double = best_double;
399}
400
401static void sunxi_lcdc_init(void)
402{
403 struct sunxi_ccm_reg * const ccm =
404 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
405 struct sunxi_lcdc_reg * const lcdc =
406 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
407
408 /* Reset off */
Hans de Goedef651e0a2014-11-14 17:42:14 +0100409#ifdef CONFIG_MACH_SUN6I
410 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_LCD0);
411#else
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200412 setbits_le32(&ccm->lcd0_ch0_clk_cfg, CCM_LCD_CH0_CTRL_RST);
Hans de Goedef651e0a2014-11-14 17:42:14 +0100413#endif
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200414
415 /* Clock on */
416 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_LCD0);
417
418 /* Init lcdc */
419 writel(0, &lcdc->ctrl); /* Disable tcon */
420 writel(0, &lcdc->int0); /* Disable all interrupts */
421
422 /* Disable tcon0 dot clock */
423 clrbits_le32(&lcdc->tcon0_dclk, SUNXI_LCDC_TCON0_DCLK_ENABLE);
424
425 /* Set all io lines to tristate */
426 writel(0xffffffff, &lcdc->tcon0_io_tristate);
427 writel(0xffffffff, &lcdc->tcon1_io_tristate);
428}
429
Hans de Goede4125f922014-12-21 14:49:34 +0100430static void sunxi_lcdc_enable(void)
431{
432 struct sunxi_lcdc_reg * const lcdc =
433 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
434
435 setbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_TCON_ENABLE);
436}
437
438static void sunxi_lcdc_tcon1_mode_set(const struct ctfb_res_modes *mode,
439 int *clk_div, int *clk_double)
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200440{
441 struct sunxi_lcdc_reg * const lcdc =
442 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
443 int bp, total;
444
445 /* Use tcon1 */
446 clrsetbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_IO_MAP_MASK,
447 SUNXI_LCDC_CTRL_IO_MAP_TCON1);
448
449 /* Enabled, 0x1e start delay */
450 writel(SUNXI_LCDC_TCON1_CTRL_ENABLE |
451 SUNXI_LCDC_TCON1_CTRL_CLK_DELAY(0x1e), &lcdc->tcon1_ctrl);
452
453 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
454 &lcdc->tcon1_timing_source);
455 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
456 &lcdc->tcon1_timing_scale);
457 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
458 &lcdc->tcon1_timing_out);
459
460 bp = mode->hsync_len + mode->left_margin;
461 total = mode->xres + mode->right_margin + bp;
462 writel(SUNXI_LCDC_TCON1_TIMING_H_TOTAL(total) |
463 SUNXI_LCDC_TCON1_TIMING_H_BP(bp), &lcdc->tcon1_timing_h);
464
465 bp = mode->vsync_len + mode->upper_margin;
466 total = mode->yres + mode->lower_margin + bp;
467 writel(SUNXI_LCDC_TCON1_TIMING_V_TOTAL(total) |
468 SUNXI_LCDC_TCON1_TIMING_V_BP(bp), &lcdc->tcon1_timing_v);
469
470 writel(SUNXI_LCDC_X(mode->hsync_len) | SUNXI_LCDC_Y(mode->vsync_len),
471 &lcdc->tcon1_timing_sync);
472
Hans de Goedec5a3b4b2014-12-21 16:27:45 +0100473 sunxi_lcdc_pll_set(1, mode->pixclock_khz, clk_div, clk_double);
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200474}
Hans de Goedef651e0a2014-11-14 17:42:14 +0100475
476#ifdef CONFIG_MACH_SUN6I
477static void sunxi_drc_init(void)
478{
479 struct sunxi_ccm_reg * const ccm =
480 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
481
482 /* On sun6i the drc must be clocked even when in pass-through mode */
483 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DRC0);
484 clock_set_de_mod_clock(&ccm->iep_drc0_clk_cfg, 300000000);
485}
486#endif
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200487
Hans de Goedea2017e82014-12-20 13:38:06 +0100488static void sunxi_hdmi_setup_info_frames(const struct ctfb_res_modes *mode)
489{
490 struct sunxi_hdmi_reg * const hdmi =
491 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
492 u8 checksum = 0;
493 u8 avi_info_frame[17] = {
494 0x82, 0x02, 0x0d, 0x00, 0x12, 0x00, 0x88, 0x00,
495 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
496 0x00
497 };
498 u8 vendor_info_frame[19] = {
499 0x81, 0x01, 0x06, 0x29, 0x03, 0x0c, 0x00, 0x40,
500 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
501 0x00, 0x00, 0x00
502 };
503 int i;
504
505 if (mode->pixclock_khz <= 27000)
506 avi_info_frame[5] = 0x40; /* SD-modes, ITU601 colorspace */
507 else
508 avi_info_frame[5] = 0x80; /* HD-modes, ITU709 colorspace */
509
510 if (mode->xres * 100 / mode->yres < 156)
511 avi_info_frame[5] |= 0x18; /* 4 : 3 */
512 else
513 avi_info_frame[5] |= 0x28; /* 16 : 9 */
514
515 for (i = 0; i < ARRAY_SIZE(avi_info_frame); i++)
516 checksum += avi_info_frame[i];
517
518 avi_info_frame[3] = 0x100 - checksum;
519
520 for (i = 0; i < ARRAY_SIZE(avi_info_frame); i++)
521 writeb(avi_info_frame[i], &hdmi->avi_info_frame[i]);
522
523 writel(SUNXI_HDMI_QCP_PACKET0, &hdmi->qcp_packet0);
524 writel(SUNXI_HDMI_QCP_PACKET1, &hdmi->qcp_packet1);
525
526 for (i = 0; i < ARRAY_SIZE(vendor_info_frame); i++)
527 writeb(vendor_info_frame[i], &hdmi->vendor_info_frame[i]);
528
529 writel(SUNXI_HDMI_PKT_CTRL0, &hdmi->pkt_ctrl0);
530 writel(SUNXI_HDMI_PKT_CTRL1, &hdmi->pkt_ctrl1);
531
532 setbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_HDMI);
533}
534
Hans de Goedeccb0ed52014-12-19 13:46:33 +0100535static void sunxi_hdmi_mode_set(const struct ctfb_res_modes *mode,
Hans de Goedea0b1b732014-12-21 14:37:45 +0100536 int clk_div, int clk_double)
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200537{
538 struct sunxi_hdmi_reg * const hdmi =
539 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
540 int x, y;
541
542 /* Write clear interrupt status bits */
543 writel(SUNXI_HDMI_IRQ_STATUS_BITS, &hdmi->irq);
544
Hans de Goedea0b1b732014-12-21 14:37:45 +0100545 if (sunxi_display.monitor == sunxi_monitor_hdmi)
Hans de Goedea2017e82014-12-20 13:38:06 +0100546 sunxi_hdmi_setup_info_frames(mode);
547
Hans de Goede95576692014-12-20 13:51:16 +0100548 /* Set input sync enable */
549 writel(SUNXI_HDMI_UNKNOWN_INPUT_SYNC, &hdmi->unknown);
550
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200551 /* Init various registers, select pll3 as clock source */
552 writel(SUNXI_HDMI_VIDEO_POL_TX_CLK, &hdmi->video_polarity);
553 writel(SUNXI_HDMI_PAD_CTRL0_RUN, &hdmi->pad_ctrl0);
554 writel(SUNXI_HDMI_PAD_CTRL1, &hdmi->pad_ctrl1);
555 writel(SUNXI_HDMI_PLL_CTRL, &hdmi->pll_ctrl);
556 writel(SUNXI_HDMI_PLL_DBG0_PLL3, &hdmi->pll_dbg0);
557
558 /* Setup clk div and doubler */
559 clrsetbits_le32(&hdmi->pll_ctrl, SUNXI_HDMI_PLL_CTRL_DIV_MASK,
560 SUNXI_HDMI_PLL_CTRL_DIV(clk_div));
561 if (!clk_double)
562 setbits_le32(&hdmi->pad_ctrl1, SUNXI_HDMI_PAD_CTRL1_HALVE);
563
564 /* Setup timing registers */
565 writel(SUNXI_HDMI_Y(mode->yres) | SUNXI_HDMI_X(mode->xres),
566 &hdmi->video_size);
567
568 x = mode->hsync_len + mode->left_margin;
569 y = mode->vsync_len + mode->upper_margin;
570 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_bp);
571
572 x = mode->right_margin;
573 y = mode->lower_margin;
574 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_fp);
575
576 x = mode->hsync_len;
577 y = mode->vsync_len;
578 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_spw);
579
580 if (mode->sync & FB_SYNC_HOR_HIGH_ACT)
581 setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_HOR);
582
583 if (mode->sync & FB_SYNC_VERT_HIGH_ACT)
584 setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_VER);
585}
586
Hans de Goede4125f922014-12-21 14:49:34 +0100587static void sunxi_hdmi_enable(void)
588{
589 struct sunxi_hdmi_reg * const hdmi =
590 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
591
592 udelay(100);
593 setbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_ENABLE);
594}
595
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200596static void sunxi_engines_init(void)
597{
598 sunxi_composer_init();
599 sunxi_lcdc_init();
Hans de Goedef651e0a2014-11-14 17:42:14 +0100600#ifdef CONFIG_MACH_SUN6I
601 sunxi_drc_init();
602#endif
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200603}
604
Hans de Goedea0b1b732014-12-21 14:37:45 +0100605static void sunxi_mode_set(const struct ctfb_res_modes *mode,
Hans de Goedea2017e82014-12-20 13:38:06 +0100606 unsigned int address)
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200607{
Hans de Goede4125f922014-12-21 14:49:34 +0100608 switch (sunxi_display.monitor) {
609 case sunxi_monitor_none:
610 break;
611 case sunxi_monitor_dvi:
612 case sunxi_monitor_hdmi: {
613 int clk_div, clk_double;
614 sunxi_composer_mode_set(mode, address);
615 sunxi_lcdc_tcon1_mode_set(mode, &clk_div, &clk_double);
616 sunxi_hdmi_mode_set(mode, clk_div, clk_double);
617 sunxi_composer_enable();
618 sunxi_lcdc_enable();
619 sunxi_hdmi_enable();
620 }
621 break;
622 case sunxi_monitor_lcd:
623 /* TODO */
624 break;
625 case sunxi_monitor_vga:
626 break;
627 }
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200628}
629
Hans de Goedea0b1b732014-12-21 14:37:45 +0100630static const char *sunxi_get_mon_desc(enum sunxi_monitor monitor)
631{
632 switch (monitor) {
633 case sunxi_monitor_none: return "none";
634 case sunxi_monitor_dvi: return "dvi";
635 case sunxi_monitor_hdmi: return "hdmi";
636 case sunxi_monitor_lcd: return "lcd";
637 case sunxi_monitor_vga: return "vga";
638 }
639 return NULL; /* never reached */
640}
641
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200642void *video_hw_init(void)
643{
644 static GraphicDevice *graphic_device = &sunxi_display.graphic_device;
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100645 const struct ctfb_res_modes *mode;
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100646 struct ctfb_res_modes edid_mode;
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100647 const char *options;
648 unsigned int depth;
Hans de Goedea0b1b732014-12-21 14:37:45 +0100649 int i, ret, hpd, edid;
650 char mon[16];
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200651
652 memset(&sunxi_display, 0, sizeof(struct sunxi_display));
653
654 printf("Reserved %dkB of RAM for Framebuffer.\n",
655 CONFIG_SUNXI_FB_SIZE >> 10);
656 gd->fb_base = gd->ram_top;
657
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100658 video_get_ctfb_res_modes(RES_MODE_1024x768, 24, &mode, &depth, &options);
Hans de Goede695bda42014-12-19 15:13:57 +0100659 hpd = video_get_option_int(options, "hpd", 1);
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100660 edid = video_get_option_int(options, "edid", 1);
Hans de Goedea0b1b732014-12-21 14:37:45 +0100661 sunxi_display.monitor = sunxi_monitor_dvi;
662 video_get_option_string(options, "monitor", mon, sizeof(mon),
663 sunxi_get_mon_desc(sunxi_display.monitor));
664 for (i = 0; i <= SUNXI_MONITOR_LAST; i++) {
665 if (strcmp(mon, sunxi_get_mon_desc(i)) == 0) {
666 sunxi_display.monitor = i;
667 break;
668 }
669 }
670 if (i > SUNXI_MONITOR_LAST)
671 printf("Unknown monitor: '%s', falling back to '%s'\n",
672 mon, sunxi_get_mon_desc(sunxi_display.monitor));
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100673
Hans de Goede4125f922014-12-21 14:49:34 +0100674 switch (sunxi_display.monitor) {
675 case sunxi_monitor_none:
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200676 return NULL;
Hans de Goede4125f922014-12-21 14:49:34 +0100677 case sunxi_monitor_dvi:
678 case sunxi_monitor_hdmi:
679 /* Always call hdp_detect, as it also enables clocks, etc. */
680 ret = sunxi_hdmi_hpd_detect();
681 if (ret) {
682 printf("HDMI connected: ");
683 if (edid && sunxi_hdmi_edid_get_mode(&edid_mode) == 0)
684 mode = &edid_mode;
685 break;
686 }
687 if (!hpd)
688 break; /* User has requested to ignore hpd */
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200689
Hans de Goede4125f922014-12-21 14:49:34 +0100690 sunxi_hdmi_shutdown();
691 return NULL;
692 case sunxi_monitor_lcd:
693 printf("LCD not supported on this board\n");
694 return NULL;
695 case sunxi_monitor_vga:
696 printf("VGA not supported on this board\n");
697 return NULL;
Hans de Goedea5aa95f2014-12-19 16:05:12 +0100698 }
699
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100700 if (mode->vmode != FB_VMODE_NONINTERLACED) {
701 printf("Only non-interlaced modes supported, falling back to 1024x768\n");
702 mode = &res_mode_init[RES_MODE_1024x768];
703 } else {
Hans de Goedea0b1b732014-12-21 14:37:45 +0100704 printf("Setting up a %dx%d %s console\n", mode->xres,
705 mode->yres, sunxi_get_mon_desc(sunxi_display.monitor));
Hans de Goede3f21d2a2014-12-19 14:03:40 +0100706 }
707
708 sunxi_display.enabled = true;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200709 sunxi_engines_init();
Hans de Goedea0b1b732014-12-21 14:37:45 +0100710 sunxi_mode_set(mode, gd->fb_base - CONFIG_SYS_SDRAM_BASE);
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200711
712 /*
713 * These are the only members of this structure that are used. All the
714 * others are driver specific. There is nothing to decribe pitch or
715 * stride, but we are lucky with our hw.
716 */
717 graphic_device->frameAdrs = gd->fb_base;
718 graphic_device->gdfIndex = GDF_32BIT_X888RGB;
719 graphic_device->gdfBytesPP = 4;
Hans de Goedeccb0ed52014-12-19 13:46:33 +0100720 graphic_device->winSizeX = mode->xres;
721 graphic_device->winSizeY = mode->yres;
Luc Verhaegenb01df1e2014-08-13 07:55:06 +0200722
723 return graphic_device;
724}
Luc Verhaegen4869a8c2014-08-13 07:55:07 +0200725
726/*
727 * Simplefb support.
728 */
729#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_VIDEO_DT_SIMPLEFB)
730int sunxi_simplefb_setup(void *blob)
731{
732 static GraphicDevice *graphic_device = &sunxi_display.graphic_device;
733 int offset, ret;
734
735 if (!sunxi_display.enabled)
736 return 0;
737
738 /* Find a framebuffer node, with pipeline == "de_be0-lcd0-hdmi" */
739 offset = fdt_node_offset_by_compatible(blob, -1,
740 "allwinner,simple-framebuffer");
741 while (offset >= 0) {
742 ret = fdt_find_string(blob, offset, "allwinner,pipeline",
743 "de_be0-lcd0-hdmi");
744 if (ret == 0)
745 break;
746 offset = fdt_node_offset_by_compatible(blob, offset,
747 "allwinner,simple-framebuffer");
748 }
749 if (offset < 0) {
750 eprintf("Cannot setup simplefb: node not found\n");
751 return 0; /* Keep older kernels working */
752 }
753
754 ret = fdt_setup_simplefb_node(blob, offset, gd->fb_base,
755 graphic_device->winSizeX, graphic_device->winSizeY,
756 graphic_device->winSizeX * graphic_device->gdfBytesPP,
757 "x8r8g8b8");
758 if (ret)
759 eprintf("Cannot setup simplefb: Error setting properties\n");
760
761 return ret;
762}
763#endif /* CONFIG_OF_BOARD_SETUP && CONFIG_VIDEO_DT_SIMPLEFB */