blob: d2413971c07b5a3881ff96fbe9e0939b7a2e57ca [file] [log] [blame]
Luc Verhaegen7f2c5212014-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>
Luc Verhaegen2d7a0842014-08-13 07:55:07 +020016#include <fdtdec.h>
17#include <fdt_support.h>
Luc Verhaegen7f2c5212014-08-13 07:55:06 +020018#include <linux/fb.h>
19#include <video_fb.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
23struct sunxi_display {
24 GraphicDevice graphic_device;
25 bool enabled;
26} sunxi_display;
27
28static int sunxi_hdmi_hpd_detect(void)
29{
30 struct sunxi_ccm_reg * const ccm =
31 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
32 struct sunxi_hdmi_reg * const hdmi =
33 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
34
35 /* Set pll3 to 300MHz */
36 clock_set_pll3(300000000);
37
38 /* Set hdmi parent to pll3 */
39 clrsetbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_PLL_MASK,
40 CCM_HDMI_CTRL_PLL3);
41
42 /* Set ahb gating to pass */
Hans de Goede211717a2014-11-14 17:42:14 +010043#ifdef CONFIG_MACH_SUN6I
44 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
45#endif
Luc Verhaegen7f2c5212014-08-13 07:55:06 +020046 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI);
47
48 /* Clock on */
49 setbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE);
50
51 writel(SUNXI_HDMI_CTRL_ENABLE, &hdmi->ctrl);
52 writel(SUNXI_HDMI_PAD_CTRL0_HDP, &hdmi->pad_ctrl0);
53
54 udelay(1000);
55
56 if (readl(&hdmi->hpd) & SUNXI_HDMI_HPD_DETECT)
57 return 1;
58
59 /* No need to keep these running */
60 clrbits_le32(&hdmi->ctrl, SUNXI_HDMI_CTRL_ENABLE);
61 clrbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE);
62 clrbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI);
Hans de Goede211717a2014-11-14 17:42:14 +010063#ifdef CONFIG_MACH_SUN6I
64 clrbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
65#endif
Luc Verhaegen7f2c5212014-08-13 07:55:06 +020066 clock_set_pll3(0);
67
68 return 0;
69}
70
71/*
72 * This is the entity that mixes and matches the different layers and inputs.
73 * Allwinner calls it the back-end, but i like composer better.
74 */
75static void sunxi_composer_init(void)
76{
77 struct sunxi_ccm_reg * const ccm =
78 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
79 struct sunxi_de_be_reg * const de_be =
80 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
81 int i;
82
Hans de Goede211717a2014-11-14 17:42:14 +010083#ifdef CONFIG_MACH_SUN6I
84 /* Reset off */
85 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DE_BE0);
86#endif
87
Luc Verhaegen7f2c5212014-08-13 07:55:06 +020088 /* Clocks on */
89 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_DE_BE0);
90 setbits_le32(&ccm->dram_clk_gate, 1 << CCM_DRAM_GATE_OFFSET_DE_BE0);
91 clock_set_de_mod_clock(&ccm->be0_clk_cfg, 300000000);
92
93 /* Engine bug, clear registers after reset */
94 for (i = 0x0800; i < 0x1000; i += 4)
95 writel(0, SUNXI_DE_BE0_BASE + i);
96
97 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_ENABLE);
98}
99
100static void sunxi_composer_mode_set(struct fb_videomode *mode,
101 unsigned int address)
102{
103 struct sunxi_de_be_reg * const de_be =
104 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
105
106 writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres),
107 &de_be->disp_size);
108 writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres),
109 &de_be->layer0_size);
110 writel(SUNXI_DE_BE_LAYER_STRIDE(mode->xres), &de_be->layer0_stride);
111 writel(address << 3, &de_be->layer0_addr_low32b);
112 writel(address >> 29, &de_be->layer0_addr_high4b);
113 writel(SUNXI_DE_BE_LAYER_ATTR1_FMT_XRGB8888, &de_be->layer0_attr1_ctrl);
114
115 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_LAYER0_ENABLE);
116}
117
118/*
119 * LCDC, what allwinner calls a CRTC, so timing controller and serializer.
120 */
121static void sunxi_lcdc_pll_set(int dotclock, int *clk_div, int *clk_double)
122{
123 struct sunxi_ccm_reg * const ccm =
124 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
125 int value, n, m, diff;
126 int best_n = 0, best_m = 0, best_diff = 0x0FFFFFFF;
127 int best_double = 0;
128
129 /*
130 * Find the lowest divider resulting in a matching clock, if there
131 * is no match, pick the closest lower clock, as monitors tend to
132 * not sync to higher frequencies.
133 */
134 for (m = 15; m > 0; m--) {
135 n = (m * dotclock) / 3000;
136
137 if ((n >= 9) && (n <= 127)) {
138 value = (3000 * n) / m;
139 diff = dotclock - value;
140 if (diff < best_diff) {
141 best_diff = diff;
142 best_m = m;
143 best_n = n;
144 best_double = 0;
145 }
146 }
147
148 /* These are just duplicates */
149 if (!(m & 1))
150 continue;
151
152 n = (m * dotclock) / 6000;
153 if ((n >= 9) && (n <= 127)) {
154 value = (6000 * n) / m;
155 diff = dotclock - value;
156 if (diff < best_diff) {
157 best_diff = diff;
158 best_m = m;
159 best_n = n;
160 best_double = 1;
161 }
162 }
163 }
164
165 debug("dotclock: %dkHz = %dkHz: (%d * 3MHz * %d) / %d\n",
166 dotclock, (best_double + 1) * 3000 * best_n / best_m,
167 best_double + 1, best_n, best_m);
168
169 clock_set_pll3(best_n * 3000000);
170
171 writel(CCM_LCD_CH1_CTRL_GATE |
172 (best_double ? CCM_LCD_CH1_CTRL_PLL3_2X : CCM_LCD_CH1_CTRL_PLL3) |
173 CCM_LCD_CH1_CTRL_M(best_m), &ccm->lcd0_ch1_clk_cfg);
174
175 *clk_div = best_m;
176 *clk_double = best_double;
177}
178
179static void sunxi_lcdc_init(void)
180{
181 struct sunxi_ccm_reg * const ccm =
182 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
183 struct sunxi_lcdc_reg * const lcdc =
184 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
185
186 /* Reset off */
Hans de Goede211717a2014-11-14 17:42:14 +0100187#ifdef CONFIG_MACH_SUN6I
188 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_LCD0);
189#else
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200190 setbits_le32(&ccm->lcd0_ch0_clk_cfg, CCM_LCD_CH0_CTRL_RST);
Hans de Goede211717a2014-11-14 17:42:14 +0100191#endif
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200192
193 /* Clock on */
194 setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_LCD0);
195
196 /* Init lcdc */
197 writel(0, &lcdc->ctrl); /* Disable tcon */
198 writel(0, &lcdc->int0); /* Disable all interrupts */
199
200 /* Disable tcon0 dot clock */
201 clrbits_le32(&lcdc->tcon0_dclk, SUNXI_LCDC_TCON0_DCLK_ENABLE);
202
203 /* Set all io lines to tristate */
204 writel(0xffffffff, &lcdc->tcon0_io_tristate);
205 writel(0xffffffff, &lcdc->tcon1_io_tristate);
206}
207
208static void sunxi_lcdc_mode_set(struct fb_videomode *mode,
209 int *clk_div, int *clk_double)
210{
211 struct sunxi_lcdc_reg * const lcdc =
212 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
213 int bp, total;
214
215 /* Use tcon1 */
216 clrsetbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_IO_MAP_MASK,
217 SUNXI_LCDC_CTRL_IO_MAP_TCON1);
218
219 /* Enabled, 0x1e start delay */
220 writel(SUNXI_LCDC_TCON1_CTRL_ENABLE |
221 SUNXI_LCDC_TCON1_CTRL_CLK_DELAY(0x1e), &lcdc->tcon1_ctrl);
222
223 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
224 &lcdc->tcon1_timing_source);
225 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
226 &lcdc->tcon1_timing_scale);
227 writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres),
228 &lcdc->tcon1_timing_out);
229
230 bp = mode->hsync_len + mode->left_margin;
231 total = mode->xres + mode->right_margin + bp;
232 writel(SUNXI_LCDC_TCON1_TIMING_H_TOTAL(total) |
233 SUNXI_LCDC_TCON1_TIMING_H_BP(bp), &lcdc->tcon1_timing_h);
234
235 bp = mode->vsync_len + mode->upper_margin;
236 total = mode->yres + mode->lower_margin + bp;
237 writel(SUNXI_LCDC_TCON1_TIMING_V_TOTAL(total) |
238 SUNXI_LCDC_TCON1_TIMING_V_BP(bp), &lcdc->tcon1_timing_v);
239
240 writel(SUNXI_LCDC_X(mode->hsync_len) | SUNXI_LCDC_Y(mode->vsync_len),
241 &lcdc->tcon1_timing_sync);
242
243 sunxi_lcdc_pll_set(mode->pixclock, clk_div, clk_double);
244}
245
Hans de Goede211717a2014-11-14 17:42:14 +0100246#ifdef CONFIG_MACH_SUN6I
247static void sunxi_drc_init(void)
248{
249 struct sunxi_ccm_reg * const ccm =
250 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
251
252 /* On sun6i the drc must be clocked even when in pass-through mode */
253 setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DRC0);
254 clock_set_de_mod_clock(&ccm->iep_drc0_clk_cfg, 300000000);
255}
256#endif
257
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200258static void sunxi_hdmi_mode_set(struct fb_videomode *mode,
259 int clk_div, int clk_double)
260{
261 struct sunxi_hdmi_reg * const hdmi =
262 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
263 int x, y;
264
265 /* Write clear interrupt status bits */
266 writel(SUNXI_HDMI_IRQ_STATUS_BITS, &hdmi->irq);
267
268 /* Init various registers, select pll3 as clock source */
269 writel(SUNXI_HDMI_VIDEO_POL_TX_CLK, &hdmi->video_polarity);
270 writel(SUNXI_HDMI_PAD_CTRL0_RUN, &hdmi->pad_ctrl0);
271 writel(SUNXI_HDMI_PAD_CTRL1, &hdmi->pad_ctrl1);
272 writel(SUNXI_HDMI_PLL_CTRL, &hdmi->pll_ctrl);
273 writel(SUNXI_HDMI_PLL_DBG0_PLL3, &hdmi->pll_dbg0);
274
275 /* Setup clk div and doubler */
276 clrsetbits_le32(&hdmi->pll_ctrl, SUNXI_HDMI_PLL_CTRL_DIV_MASK,
277 SUNXI_HDMI_PLL_CTRL_DIV(clk_div));
278 if (!clk_double)
279 setbits_le32(&hdmi->pad_ctrl1, SUNXI_HDMI_PAD_CTRL1_HALVE);
280
281 /* Setup timing registers */
282 writel(SUNXI_HDMI_Y(mode->yres) | SUNXI_HDMI_X(mode->xres),
283 &hdmi->video_size);
284
285 x = mode->hsync_len + mode->left_margin;
286 y = mode->vsync_len + mode->upper_margin;
287 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_bp);
288
289 x = mode->right_margin;
290 y = mode->lower_margin;
291 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_fp);
292
293 x = mode->hsync_len;
294 y = mode->vsync_len;
295 writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_spw);
296
297 if (mode->sync & FB_SYNC_HOR_HIGH_ACT)
298 setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_HOR);
299
300 if (mode->sync & FB_SYNC_VERT_HIGH_ACT)
301 setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_VER);
302}
303
304static void sunxi_engines_init(void)
305{
306 sunxi_composer_init();
307 sunxi_lcdc_init();
Hans de Goede211717a2014-11-14 17:42:14 +0100308#ifdef CONFIG_MACH_SUN6I
309 sunxi_drc_init();
310#endif
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200311}
312
313static void sunxi_mode_set(struct fb_videomode *mode, unsigned int address)
314{
315 struct sunxi_de_be_reg * const de_be =
316 (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE;
317 struct sunxi_lcdc_reg * const lcdc =
318 (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
319 struct sunxi_hdmi_reg * const hdmi =
320 (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE;
321 int clk_div, clk_double;
322 int retries = 3;
323
324retry:
325 clrbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_ENABLE);
326 clrbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_TCON_ENABLE);
327 clrbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_START);
328
329 sunxi_composer_mode_set(mode, address);
330 sunxi_lcdc_mode_set(mode, &clk_div, &clk_double);
331 sunxi_hdmi_mode_set(mode, clk_div, clk_double);
332
333 setbits_le32(&de_be->reg_ctrl, SUNXI_DE_BE_REG_CTRL_LOAD_REGS);
334 setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_START);
335
336 udelay(1000000 / mode->refresh + 500);
337
338 setbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_TCON_ENABLE);
339
340 udelay(1000000 / mode->refresh + 500);
341
342 setbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_ENABLE);
343
344 udelay(1000000 / mode->refresh + 500);
345
346 /*
347 * Sometimes the display pipeline does not sync up properly, if
348 * this happens the hdmi fifo underrun or overrun bits are set.
349 */
350 if (readl(&hdmi->irq) &
351 (SUNXI_HDMI_IRQ_STATUS_FIFO_UF | SUNXI_HDMI_IRQ_STATUS_FIFO_OF)) {
352 if (retries--)
353 goto retry;
354 printf("HDMI fifo under or overrun\n");
355 }
356}
357
358void *video_hw_init(void)
359{
360 static GraphicDevice *graphic_device = &sunxi_display.graphic_device;
361 /*
362 * Vesa standard 1024x768@60
363 * 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
364 */
365 struct fb_videomode mode = {
366 .name = "1024x768",
367 .refresh = 60,
368 .xres = 1024,
369 .yres = 768,
370 .pixclock = 65000,
371 .left_margin = 160,
372 .right_margin = 24,
373 .upper_margin = 29,
374 .lower_margin = 3,
375 .hsync_len = 136,
376 .vsync_len = 6,
377 .sync = 0,
378 .vmode = 0,
379 .flag = 0,
380 };
381 int ret;
382
383 memset(&sunxi_display, 0, sizeof(struct sunxi_display));
384
385 printf("Reserved %dkB of RAM for Framebuffer.\n",
386 CONFIG_SUNXI_FB_SIZE >> 10);
387 gd->fb_base = gd->ram_top;
388
389 ret = sunxi_hdmi_hpd_detect();
390 if (!ret)
391 return NULL;
392
393 printf("HDMI connected.\n");
394 sunxi_display.enabled = true;
395
396 printf("Setting up a %s console.\n", mode.name);
397 sunxi_engines_init();
398 sunxi_mode_set(&mode, gd->fb_base - CONFIG_SYS_SDRAM_BASE);
399
400 /*
401 * These are the only members of this structure that are used. All the
402 * others are driver specific. There is nothing to decribe pitch or
403 * stride, but we are lucky with our hw.
404 */
405 graphic_device->frameAdrs = gd->fb_base;
406 graphic_device->gdfIndex = GDF_32BIT_X888RGB;
407 graphic_device->gdfBytesPP = 4;
408 graphic_device->winSizeX = mode.xres;
409 graphic_device->winSizeY = mode.yres;
410
411 return graphic_device;
412}
Luc Verhaegen2d7a0842014-08-13 07:55:07 +0200413
414/*
415 * Simplefb support.
416 */
417#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_VIDEO_DT_SIMPLEFB)
418int sunxi_simplefb_setup(void *blob)
419{
420 static GraphicDevice *graphic_device = &sunxi_display.graphic_device;
421 int offset, ret;
422
423 if (!sunxi_display.enabled)
424 return 0;
425
426 /* Find a framebuffer node, with pipeline == "de_be0-lcd0-hdmi" */
427 offset = fdt_node_offset_by_compatible(blob, -1,
428 "allwinner,simple-framebuffer");
429 while (offset >= 0) {
430 ret = fdt_find_string(blob, offset, "allwinner,pipeline",
431 "de_be0-lcd0-hdmi");
432 if (ret == 0)
433 break;
434 offset = fdt_node_offset_by_compatible(blob, offset,
435 "allwinner,simple-framebuffer");
436 }
437 if (offset < 0) {
438 eprintf("Cannot setup simplefb: node not found\n");
439 return 0; /* Keep older kernels working */
440 }
441
442 ret = fdt_setup_simplefb_node(blob, offset, gd->fb_base,
443 graphic_device->winSizeX, graphic_device->winSizeY,
444 graphic_device->winSizeX * graphic_device->gdfBytesPP,
445 "x8r8g8b8");
446 if (ret)
447 eprintf("Cannot setup simplefb: Error setting properties\n");
448
449 return ret;
450}
451#endif /* CONFIG_OF_BOARD_SETUP && CONFIG_VIDEO_DT_SIMPLEFB */