blob: 9b96d0d33f29050613f6b57c950a1f7a43a03b79 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Suna8778802007-10-29 13:58:39 -05002/*
Timur Tabiba8e76b2011-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 Suna8778802007-10-29 13:58:39 -05006 *
7 * FSL DIU Framebuffer driver
York Suna8778802007-10-29 13:58:39 -05008 */
9
10#include <common.h>
Simon Glassd96c2602019-12-28 10:44:58 -070011#include <clock_legacy.h>
York Suna8778802007-10-29 13:58:39 -050012#include <command.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
York Suna8778802007-10-29 13:58:39 -050014#include <asm/io.h>
Anatolij Gustschin9e70d132010-09-24 01:06:37 +020015#include <fsl_diu_fb.h>
Timur Tabiba8e76b2011-04-11 14:18:22 -050016#include "../common/pixis.h"
17
18#define PX_BRDCFG0_DLINK 0x10
19#define PX_BRDCFG0_DVISEL 0x08
York Sun070ba562007-10-31 14:59:04 -050020
York Sun3b80c5f2008-05-05 10:19:59 -050021void diu_set_pixel_clock(unsigned int pixclock)
22{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020023 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Sun3b80c5f2008-05-05 10:19:59 -050024 volatile ccsr_gur_t *gur = &immap->im_gur;
25 volatile unsigned int *guts_clkdvdr = &gur->clkdvdr;
26 unsigned long speed_ccb, temp, pixval;
27
28 speed_ccb = get_bus_freq(0);
29 temp = 1000000000/pixclock;
30 temp *= 1000;
31 pixval = speed_ccb / temp;
32 debug("DIU pixval = %lu\n", pixval);
33
34 /* Modify PXCLK in GUTS CLKDVDR */
35 debug("DIU: Current value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
36 temp = *guts_clkdvdr & 0x2000FFFF;
37 *guts_clkdvdr = temp; /* turn off clock */
38 *guts_clkdvdr = temp | 0x80000000 | ((pixval & 0x1F) << 16);
39 debug("DIU: Modified value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
40}
York Suna8778802007-10-29 13:58:39 -050041
Timur Tabiba8e76b2011-04-11 14:18:22 -050042int platform_diu_init(unsigned int xres, unsigned int yres, const char *port)
York Suna8778802007-10-29 13:58:39 -050043{
Timur Tabiba8e76b2011-04-11 14:18:22 -050044 const char *name;
45 int gamma_fix = 0;
46 u32 pixel_format = 0x88883316;
47 u8 temp;
York Suna8778802007-10-29 13:58:39 -050048
Timur Tabiba8e76b2011-04-11 14:18:22 -050049 temp = in_8(&pixis->brdcfg0);
York Suna8778802007-10-29 13:58:39 -050050
Timur Tabiba8e76b2011-04-11 14:18:22 -050051 if (strncmp(port, "dlvds", 5) == 0) {
52 /* Dual link LVDS */
York Suna8778802007-10-29 13:58:39 -050053 gamma_fix = 1;
Timur Tabiba8e76b2011-04-11 14:18:22 -050054 temp &= ~(PX_BRDCFG0_DLINK | PX_BRDCFG0_DVISEL);
55 name = "Dual-Link LVDS";
56 } else if (strncmp(port, "lvds", 4) == 0) {
57 /* Single link LVDS */
58 temp = (temp & ~PX_BRDCFG0_DVISEL) | PX_BRDCFG0_DLINK;
59 name = "Single-Link LVDS";
60 } else {
61 /* DVI */
62 if (in_8(&pixis->ver) == 1) /* Board version */
63 pixel_format = 0x88882317;
64 temp |= PX_BRDCFG0_DVISEL;
65 name = "DVI";
York Suna8778802007-10-29 13:58:39 -050066 }
67
Timur Tabiba8e76b2011-04-11 14:18:22 -050068 printf("DIU: Switching to %s monitor @ %ux%u\n", name, xres, yres);
69 out_8(&pixis->brdcfg0, temp);
70
Timur Tabi3b4a2262011-05-26 09:02:17 -050071 return fsl_diu_init(xres, yres, pixel_format, gamma_fix);
York Suna8778802007-10-29 13:58:39 -050072}