blob: ab9e922a927d7e73fc3742a054c400d4025f8941 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Priyanka Jain337b0c52014-02-26 16:11:53 +05302/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
4 * Author: Priyanka Jain <Priyanka.Jain@freescale.com>
Priyanka Jain337b0c52014-02-26 16:11:53 +05305 */
6
7#include <common.h>
Simon Glassd96c2602019-12-28 10:44:58 -07008#include <clock_legacy.h>
Priyanka Jain337b0c52014-02-26 16:11:53 +05309#include <command.h>
10#include <linux/ctype.h>
11#include <asm/io.h>
12#include <stdio_dev.h>
13#include <video_fb.h>
14#include <fsl_diu_fb.h>
15#include "../common/qixis.h"
Wang Dongshengc53711b2014-03-19 10:47:55 +080016#include "../common/diu_ch7301.h"
Priyanka Jain337b0c52014-02-26 16:11:53 +053017#include "t1040qds.h"
18#include "t1040qds_qixis.h"
Priyanka Jain337b0c52014-02-26 16:11:53 +053019
20/*
21 * DIU Area Descriptor
22 *
23 * Note that we need to byte-swap the value before it's written to the AD
24 * register. So even though the registers don't look like they're in the same
25 * bit positions as they are on the MPC8610, the same value is written to the
26 * AD register on the MPC8610 and on the P1022.
27 */
28#define AD_BYTE_F 0x10000000
29#define AD_ALPHA_C_SHIFT 25
30#define AD_BLUE_C_SHIFT 23
31#define AD_GREEN_C_SHIFT 21
32#define AD_RED_C_SHIFT 19
33#define AD_PIXEL_S_SHIFT 16
34#define AD_COMP_3_SHIFT 12
35#define AD_COMP_2_SHIFT 8
36#define AD_COMP_1_SHIFT 4
37#define AD_COMP_0_SHIFT 0
38
Priyanka Jain337b0c52014-02-26 16:11:53 +053039void diu_set_pixel_clock(unsigned int pixclock)
40{
41 unsigned long speed_ccb, temp;
42 u32 pixval;
43 int ret = 0;
44 speed_ccb = get_bus_freq(0);
45 temp = 1000000000 / pixclock;
46 temp *= 1000;
47 pixval = speed_ccb / temp;
48
49 /* Program HDMI encoder */
Wang Dongshengc53711b2014-03-19 10:47:55 +080050 /* Switch channel to DIU */
51 select_i2c_ch_pca9547(I2C_MUX_CH_DIU);
52
53 /* Set dispaly encoder */
Priyanka Jain337b0c52014-02-26 16:11:53 +053054 ret = diu_set_dvi_encoder(temp);
55 if (ret) {
56 puts("Failed to set DVI encoder\n");
57 return;
58 }
59
Wang Dongshengc53711b2014-03-19 10:47:55 +080060 /* Switch channel to default */
61 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
62
Priyanka Jain337b0c52014-02-26 16:11:53 +053063 /* Program pixel clock */
64 out_be32((unsigned *)CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR,
65 ((pixval << PXCK_BITS_START) & PXCK_MASK));
66 /* enable clock*/
67 out_be32((unsigned *)CONFIG_SYS_FSL_SCFG_PIXCLK_ADDR, PXCKEN_MASK |
68 ((pixval << PXCK_BITS_START) & PXCK_MASK));
69}
70
71int platform_diu_init(unsigned int xres, unsigned int yres, const char *port)
72{
73 u32 pixel_format;
74 u8 sw;
75
76 /*Route I2C4 to DIU system as HSYNC/VSYNC*/
77 sw = QIXIS_READ(brdcfg[5]);
78 QIXIS_WRITE(brdcfg[5],
79 ((sw & ~(BRDCFG5_IMX_MASK)) | (BRDCFG5_IMX_DIU)));
80
81 /*Configure Display ouput port as HDMI*/
82 sw = QIXIS_READ(brdcfg[15]);
83 QIXIS_WRITE(brdcfg[15],
84 ((sw & ~(BRDCFG15_LCDPD_MASK | BRDCFG15_DIUSEL_MASK))
85 | (BRDCFG15_LCDPD_ENABLED | BRDCFG15_DIUSEL_HDMI)));
86
87 pixel_format = cpu_to_le32(AD_BYTE_F | (3 << AD_ALPHA_C_SHIFT) |
88 (0 << AD_BLUE_C_SHIFT) | (1 << AD_GREEN_C_SHIFT) |
89 (2 << AD_RED_C_SHIFT) | (8 << AD_COMP_3_SHIFT) |
90 (8 << AD_COMP_2_SHIFT) | (8 << AD_COMP_1_SHIFT) |
91 (8 << AD_COMP_0_SHIFT) | (3 << AD_PIXEL_S_SHIFT));
92
93 printf("DIU: Switching to monitor @ %ux%u\n", xres, yres);
94
95
96 return fsl_diu_init(xres, yres, pixel_format, 0);
97}