2 * Copyright 2014 Freescale Semiconductor, Inc.
4 * FSL DCU Framebuffer driver
6 * SPDX-License-Identifier: GPL-2.0+
10 #include <fsl_dcu_fb.h>
12 #include "../common/dcu_sii9022a.h"
14 DECLARE_GLOBAL_DATA_PTR;
16 unsigned int dcu_set_pixel_clock(unsigned int pixclock)
18 unsigned long long div;
20 div = (unsigned long long)(gd->bus_clk / 1000);
21 div *= (unsigned long long)pixclock;
22 do_div(div, 1000000000);
27 int platform_dcu_init(unsigned int xres, unsigned int yres,
29 struct fb_videomode *dcu_fb_videomode)
32 unsigned int pixel_format;
34 if (strncmp(port, "twr_lcd", 4) == 0) {
35 name = "TWR_LCD_RGB card";
38 dcu_set_dvi_encoder(dcu_fb_videomode);
41 printf("DCU: Switching to %s monitor @ %ux%u\n", name, xres, yres);
44 fsl_dcu_init(xres, yres, pixel_format);