sunxi: video: Modify sunxi_lcdc_pll_set to work with both tcon0 and tcon1
[oweals/u-boot.git] / drivers / video / sunxi_display.c
1 /*
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>
16 #include <errno.h>
17 #include <fdtdec.h>
18 #include <fdt_support.h>
19 #include <video_fb.h>
20 #include "videomodes.h"
21
22 DECLARE_GLOBAL_DATA_PTR;
23
24 enum 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
33 struct sunxi_display {
34         GraphicDevice graphic_device;
35         bool enabled;
36         enum sunxi_monitor monitor;
37 } sunxi_display;
38
39 /*
40  * Wait up to 200ms for value to be set in given part of reg.
41  */
42 static 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
55 static 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;
61         unsigned long tmo = timer_get_us() + 300000;
62
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 */
71 #ifdef CONFIG_MACH_SUN6I
72         setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
73 #endif
74         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
82         while (timer_get_us() < tmo) {
83                 if (readl(&hdmi->hpd) & SUNXI_HDMI_HPD_DETECT)
84                         return 1;
85         }
86
87         return 0;
88 }
89
90 static 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;
96
97         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);
100 #ifdef CONFIG_MACH_SUN6I
101         clrbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI);
102 #endif
103         clock_set_pll3(0);
104 }
105
106 static 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
127 static 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
154 static 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
172 static int sunxi_hdmi_edid_get_mode(struct ctfb_res_modes *mode)
173 {
174         struct edid1_info edid1;
175         struct edid_cea861_info cea681[4];
176         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;
182         int i, r, ext_blocks = 0;
183
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
206         r = sunxi_hdmi_edid_get_block(0, (u8 *)&edid1);
207         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         }
226
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
234         /* 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
253         /* Check for basic audio support, if found enable hdmi output */
254         sunxi_display.monitor = sunxi_monitor_dvi;
255         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]))
261                         sunxi_display.monitor = sunxi_monitor_hdmi;
262         }
263
264         return 0;
265 }
266
267 /*
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  */
271 static 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
279 #ifdef CONFIG_MACH_SUN6I
280         /* Reset off */
281         setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DE_BE0);
282 #endif
283
284         /* 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
296 static void sunxi_composer_mode_set(const struct ctfb_res_modes *mode,
297                                     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
314 static 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
323 /*
324  * LCDC, what allwinner calls a CRTC, so timing controller and serializer.
325  */
326 static void sunxi_lcdc_pll_set(int tcon, int dotclock,
327                                int *clk_div, int *clk_double)
328 {
329         struct sunxi_ccm_reg * const ccm =
330                 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
331         int value, n, m, min_m, max_m, diff;
332         int best_n = 0, best_m = 0, best_diff = 0x0FFFFFFF;
333         int best_double = 0;
334
335         if (tcon == 0) {
336                 min_m = 6;
337                 max_m = 127;
338         } else {
339                 min_m = 1;
340                 max_m = 15;
341         }
342
343         /*
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          */
348         for (m = min_m; m <= max_m; m++) {
349                 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
385         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         }
396
397         *clk_div = best_m;
398         *clk_double = best_double;
399 }
400
401 static 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 */
409 #ifdef CONFIG_MACH_SUN6I
410         setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_LCD0);
411 #else
412         setbits_le32(&ccm->lcd0_ch0_clk_cfg, CCM_LCD_CH0_CTRL_RST);
413 #endif
414
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
430 static 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
438 static void sunxi_lcdc_tcon1_mode_set(const struct ctfb_res_modes *mode,
439                                       int *clk_div, int *clk_double)
440 {
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
473         sunxi_lcdc_pll_set(1, mode->pixclock_khz, clk_div, clk_double);
474 }
475
476 #ifdef CONFIG_MACH_SUN6I
477 static 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
487
488 static 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
535 static void sunxi_hdmi_mode_set(const struct ctfb_res_modes *mode,
536                                 int clk_div, int clk_double)
537 {
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
545         if (sunxi_display.monitor == sunxi_monitor_hdmi)
546                 sunxi_hdmi_setup_info_frames(mode);
547
548         /* Set input sync enable */
549         writel(SUNXI_HDMI_UNKNOWN_INPUT_SYNC, &hdmi->unknown);
550
551         /* 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
587 static 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
596 static void sunxi_engines_init(void)
597 {
598         sunxi_composer_init();
599         sunxi_lcdc_init();
600 #ifdef CONFIG_MACH_SUN6I
601         sunxi_drc_init();
602 #endif
603 }
604
605 static void sunxi_mode_set(const struct ctfb_res_modes *mode,
606                            unsigned int address)
607 {
608         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         }
628 }
629
630 static 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
642 void *video_hw_init(void)
643 {
644         static GraphicDevice *graphic_device = &sunxi_display.graphic_device;
645         const struct ctfb_res_modes *mode;
646         struct ctfb_res_modes edid_mode;
647         const char *options;
648         unsigned int depth;
649         int i, ret, hpd, edid;
650         char mon[16];
651
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
658         video_get_ctfb_res_modes(RES_MODE_1024x768, 24, &mode, &depth, &options);
659         hpd = video_get_option_int(options, "hpd", 1);
660         edid = video_get_option_int(options, "edid", 1);
661         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));
673
674         switch (sunxi_display.monitor) {
675         case sunxi_monitor_none:
676                 return NULL;
677         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 */
689
690                 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;
698         }
699
700         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 {
704                 printf("Setting up a %dx%d %s console\n", mode->xres,
705                        mode->yres, sunxi_get_mon_desc(sunxi_display.monitor));
706         }
707
708         sunxi_display.enabled = true;
709         sunxi_engines_init();
710         sunxi_mode_set(mode, gd->fb_base - CONFIG_SYS_SDRAM_BASE);
711
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;
720         graphic_device->winSizeX = mode->xres;
721         graphic_device->winSizeY = mode->yres;
722
723         return graphic_device;
724 }
725
726 /*
727  * Simplefb support.
728  */
729 #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_VIDEO_DT_SIMPLEFB)
730 int 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 */