blob: b4776c5e46c576940087b4f39b3c1c96beb090d1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Sunb7145172007-10-29 13:58:39 -05002/*
Timur Tabi32f709e2011-04-11 14:18:22 -05003 * Copyright 2007-2011 Freescale Semiconductor, Inc.
4 * Authors: York Sun <yorksun@freescale.com>
5 * Timur Tabi <timur@freescale.com>
York Sunb7145172007-10-29 13:58:39 -05006 *
7 * FSL DIU Framebuffer driver
York Sunb7145172007-10-29 13:58:39 -05008 */
9
10#include <common.h>
11#include <command.h>
12#include <asm/io.h>
Anatolij Gustschin43ffc532010-09-24 01:06:37 +020013#include <fsl_diu_fb.h>
Timur Tabi32f709e2011-04-11 14:18:22 -050014#include "../common/pixis.h"
15
16#define PX_BRDCFG0_DLINK 0x10
17#define PX_BRDCFG0_DVISEL 0x08
York Sun59e74682007-10-31 14:59:04 -050018
York Sunc4964382008-05-05 10:19:59 -050019void diu_set_pixel_clock(unsigned int pixclock)
20{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020021 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Sunc4964382008-05-05 10:19:59 -050022 volatile ccsr_gur_t *gur = &immap->im_gur;
23 volatile unsigned int *guts_clkdvdr = &gur->clkdvdr;
24 unsigned long speed_ccb, temp, pixval;
25
26 speed_ccb = get_bus_freq(0);
27 temp = 1000000000/pixclock;
28 temp *= 1000;
29 pixval = speed_ccb / temp;
30 debug("DIU pixval = %lu\n", pixval);
31
32 /* Modify PXCLK in GUTS CLKDVDR */
33 debug("DIU: Current value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
34 temp = *guts_clkdvdr & 0x2000FFFF;
35 *guts_clkdvdr = temp; /* turn off clock */
36 *guts_clkdvdr = temp | 0x80000000 | ((pixval & 0x1F) << 16);
37 debug("DIU: Modified value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
38}
York Sunb7145172007-10-29 13:58:39 -050039
Timur Tabi32f709e2011-04-11 14:18:22 -050040int platform_diu_init(unsigned int xres, unsigned int yres, const char *port)
York Sunb7145172007-10-29 13:58:39 -050041{
Timur Tabi32f709e2011-04-11 14:18:22 -050042 const char *name;
43 int gamma_fix = 0;
44 u32 pixel_format = 0x88883316;
45 u8 temp;
York Sunb7145172007-10-29 13:58:39 -050046
Timur Tabi32f709e2011-04-11 14:18:22 -050047 temp = in_8(&pixis->brdcfg0);
York Sunb7145172007-10-29 13:58:39 -050048
Timur Tabi32f709e2011-04-11 14:18:22 -050049 if (strncmp(port, "dlvds", 5) == 0) {
50 /* Dual link LVDS */
York Sunb7145172007-10-29 13:58:39 -050051 gamma_fix = 1;
Timur Tabi32f709e2011-04-11 14:18:22 -050052 temp &= ~(PX_BRDCFG0_DLINK | PX_BRDCFG0_DVISEL);
53 name = "Dual-Link LVDS";
54 } else if (strncmp(port, "lvds", 4) == 0) {
55 /* Single link LVDS */
56 temp = (temp & ~PX_BRDCFG0_DVISEL) | PX_BRDCFG0_DLINK;
57 name = "Single-Link LVDS";
58 } else {
59 /* DVI */
60 if (in_8(&pixis->ver) == 1) /* Board version */
61 pixel_format = 0x88882317;
62 temp |= PX_BRDCFG0_DVISEL;
63 name = "DVI";
York Sunb7145172007-10-29 13:58:39 -050064 }
65
Timur Tabi32f709e2011-04-11 14:18:22 -050066 printf("DIU: Switching to %s monitor @ %ux%u\n", name, xres, yres);
67 out_8(&pixis->brdcfg0, temp);
68
Timur Tabi6d99ce22011-05-26 09:02:17 -050069 return fsl_diu_init(xres, yres, pixel_format, gamma_fix);
York Sun59e74682007-10-31 14:59:04 -050070}