1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2014 Freescale Semiconductor, Inc.
5 * FSL DCU Framebuffer driver
10 #include <fsl_dcu_fb.h>
13 #include "../common/diu_ch7301.h"
14 #include "ls1021aqds_qixis.h"
16 DECLARE_GLOBAL_DATA_PTR;
18 static int select_i2c_ch_pca9547(u8 ch)
22 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
24 puts("PCA: failed to select proper channel\n");
31 unsigned int dcu_set_pixel_clock(unsigned int pixclock)
33 unsigned long long div;
35 div = (unsigned long long)(gd->bus_clk / 1000);
36 div *= (unsigned long long)pixclock;
37 do_div(div, 1000000000);
42 int platform_dcu_init(unsigned int xres, unsigned int yres,
44 struct fb_videomode *dcu_fb_videomode)
47 unsigned int pixel_format;
51 /* Mux I2C3+I2C4 as HSYNC+VSYNC */
52 ret = i2c_read(CONFIG_SYS_I2C_QIXIS_ADDR, QIXIS_DCU_BRDCFG5,
55 printf("Error: failed to read I2C @%02x\n",
56 CONFIG_SYS_I2C_QIXIS_ADDR);
61 ret = i2c_write(CONFIG_SYS_I2C_QIXIS_ADDR, QIXIS_DCU_BRDCFG5,
64 printf("Error: failed to write I2C @%02x\n",
65 CONFIG_SYS_I2C_QIXIS_ADDR);
69 if (strncmp(port, "hdmi", 4) == 0) {
74 pixval = 1000000000 / dcu_fb_videomode->pixclock;
77 i2c_set_bus_num(CONFIG_SYS_I2C_DVI_BUS_NUM);
78 select_i2c_ch_pca9547(I2C_MUX_CH_CH7301);
79 diu_set_dvi_encoder(pixval);
80 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
85 printf("DCU: Switching to %s monitor @ %ux%u\n", name, xres, yres);
88 fsl_dcu_init(xres, yres, pixel_format);