blob: fa4a0bc971db95d7b14530830c2496888b190bae [file] [log] [blame]
York Sun0e1bad42008-05-05 10:20:01 -05001/*
2 * Copyright 2008 Freescale Semiconductor, Inc.
3 * York Sun <yorksun@freescale.com>
4 *
5 * FSL DIU Framebuffer driver
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <command.h>
28#include <asm/io.h>
29
Peter Tyser8d1f2682010-04-12 22:28:09 -050030#include "../../../../board/freescale/common/fsl_diu_fb.h"
York Sun0e1bad42008-05-05 10:20:01 -050031
32#if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020033#include <stdio_dev.h>
York Sun0e1bad42008-05-05 10:20:01 -050034#include <video_fb.h>
35#endif
36
Anatolij Gustschina3921ee2010-04-24 19:27:09 +020037DECLARE_GLOBAL_DATA_PTR;
38
York Sun0e1bad42008-05-05 10:20:01 -050039static int xres, yres;
40
41void diu_set_pixel_clock(unsigned int pixclock)
42{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020043 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Sun0e1bad42008-05-05 10:20:01 -050044 volatile clk512x_t *clk = &immap->clk;
45 volatile unsigned int *clkdvdr = &clk->scfr[0];
46 unsigned long speed_ccb, temp, pixval;
47
48 speed_ccb = get_bus_freq(0) * 4;
49 temp = 1000000000/pixclock;
50 temp *= 1000;
51 pixval = speed_ccb / temp;
52 debug("DIU pixval = %lu\n", pixval);
53
54 /* Modify PXCLK in GUTS CLKDVDR */
Detlev Zundel57ae8a52010-01-21 17:55:58 +010055 debug("DIU: Current value of CLKDVDR = 0x%08x\n", in_be32(clkdvdr));
56 temp = in_be32(clkdvdr) & 0xFFFFFF00;
57 out_be32(clkdvdr, temp | (pixval & 0xFF));
58 debug("DIU: Modified value of CLKDVDR = 0x%08x\n", in_be32(clkdvdr));
York Sun0e1bad42008-05-05 10:20:01 -050059}
60
Wolfgang Denkde26ef92009-05-16 10:47:38 +020061int mpc5121_diu_init(void)
York Sun0e1bad42008-05-05 10:20:01 -050062{
63 unsigned int pixel_format;
64
Anatolij Gustschina3921ee2010-04-24 19:27:09 +020065#if defined(CONFIG_VIDEO_XRES) & defined(CONFIG_VIDEO_YRES)
66 xres = CONFIG_VIDEO_XRES;
67 yres = CONFIG_VIDEO_YRES;
68#else
York Sun0e1bad42008-05-05 10:20:01 -050069 xres = 1024;
70 yres = 768;
Anatolij Gustschina3921ee2010-04-24 19:27:09 +020071#endif
York Sun0e1bad42008-05-05 10:20:01 -050072 pixel_format = 0x88883316;
73
Wolfgang Denkde26ef92009-05-16 10:47:38 +020074 debug("mpc5121_diu_init\n");
Timur Tabie69e5202010-08-31 19:56:43 -050075
76 return fsl_diu_init(xres, pixel_format, 0);
York Sun0e1bad42008-05-05 10:20:01 -050077}
78
York Sun0e1bad42008-05-05 10:20:01 -050079#if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
80
81/*
82 * The Graphic Device
83 */
84GraphicDevice ctfb;
85void *video_hw_init(void)
86{
87 GraphicDevice *pGD = (GraphicDevice *) &ctfb;
88 struct fb_info *info;
89
Wolfgang Denkde26ef92009-05-16 10:47:38 +020090 if (mpc5121_diu_init() < 0)
Anatolij Gustschin51c2ac92010-03-16 17:10:08 +010091 return NULL;
York Sun0e1bad42008-05-05 10:20:01 -050092
93 /* fill in Graphic device struct */
Anatolij Gustschin51c2ac92010-03-16 17:10:08 +010094 sprintf(pGD->modeIdent, "%dx%dx%d %dkHz %dHz",
York Sun0e1bad42008-05-05 10:20:01 -050095 xres, yres, 32, 64, 60);
96
97 pGD->frameAdrs = (unsigned int)fsl_fb_open(&info);
98 pGD->winSizeX = xres;
Timur Tabie69e5202010-08-31 19:56:43 -050099 pGD->winSizeY = yres;
York Sun0e1bad42008-05-05 10:20:01 -0500100 pGD->plnSizeX = pGD->winSizeX;
101 pGD->plnSizeY = pGD->winSizeY;
102
103 pGD->gdfBytesPP = 4;
104 pGD->gdfIndex = GDF_32BIT_X888RGB;
105
106 pGD->isaBase = 0;
107 pGD->pciBase = 0;
Timur Tabie69e5202010-08-31 19:56:43 -0500108 pGD->memSize = info->screen_size;
York Sun0e1bad42008-05-05 10:20:01 -0500109
110 /* Cursor Start Address */
111 pGD->dprBase = 0;
112 pGD->vprBase = 0;
113 pGD->cprBase = 0;
114
115 return (void *)pGD;
116}
117
York Sun0e1bad42008-05-05 10:20:01 -0500118#endif /* defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) */