2 * Copyright 2007 Freescale Semiconductor, Inc.
5 * FSL DIU Framebuffer driver
7 * See file CREDITS for list of people who contributed to this
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.
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.
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,
30 #ifdef CONFIG_FSL_DIU_FB
32 #include "../common/pixis.h"
33 #include "../common/fsl_diu_fb.h"
35 #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
40 extern unsigned int FSL_Logo_BMP[];
42 static int xres, yres;
44 void diu_set_pixel_clock(unsigned int pixclock)
46 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
47 volatile ccsr_gur_t *gur = &immap->im_gur;
48 volatile unsigned int *guts_clkdvdr = &gur->clkdvdr;
49 unsigned long speed_ccb, temp, pixval;
51 speed_ccb = get_bus_freq(0);
52 temp = 1000000000/pixclock;
54 pixval = speed_ccb / temp;
55 debug("DIU pixval = %lu\n", pixval);
57 /* Modify PXCLK in GUTS CLKDVDR */
58 debug("DIU: Current value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
59 temp = *guts_clkdvdr & 0x2000FFFF;
60 *guts_clkdvdr = temp; /* turn off clock */
61 *guts_clkdvdr = temp | 0x80000000 | ((pixval & 0x1F) << 16);
62 debug("DIU: Modified value of CLKDVDR = 0x%08x\n", *guts_clkdvdr);
65 void mpc8610hpcd_diu_init(void)
69 unsigned int pixel_format;
70 unsigned char tmp_val;
71 unsigned char pixis_arch;
73 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
74 pixis_arch = in8(PIXIS_BASE + PIXIS_VER);
76 monitor_port = getenv("monitor");
77 if (!strncmp(monitor_port, "0", 1)) { /* 0 - DVI */
80 if (pixis_arch == 0x01)
81 pixel_format = 0x88882317;
83 pixel_format = 0x88883316;
85 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x08);
87 } else if (!strncmp(monitor_port, "1", 1)) { /* 1 - Single link LVDS */
90 pixel_format = 0x88883316;
92 out8(PIXIS_BASE + PIXIS_BRDCFG0, (tmp_val & 0xf7) | 0x10);
94 } else if (!strncmp(monitor_port, "2", 1)) { /* 2 - Double link LVDS */
97 pixel_format = 0x88883316;
99 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xe7);
104 pixel_format = 0x88882317;
106 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x08);
109 fsl_diu_init(xres, pixel_format, gamma_fix,
110 (unsigned char *)FSL_Logo_BMP);
113 int mpc8610diu_init_show_bmp(cmd_tbl_t *cmdtp,
114 int flag, int argc, char *argv[])
119 printf ("Usage:\n%s\n", cmdtp->usage);
123 if (!strncmp(argv[1],"init",4)) {
124 #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
125 fsl_diu_clear_screen();
128 mpc8610hpcd_diu_init();
131 addr = simple_strtoul(argv[1], NULL, 16);
132 fsl_diu_clear_screen();
133 fsl_diu_display_bmp((unsigned char *)addr, 0, 0, 0);
140 diufb, CONFIG_SYS_MAXARGS, 1, mpc8610diu_init_show_bmp,
141 "diufb - Init or Display BMP file\n",
142 "init\n - initialize DIU\n"
143 "addr\n - display bmp at address 'addr'\n"
147 #if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)
153 void *video_hw_init(void)
155 GraphicDevice *pGD = (GraphicDevice *) &ctfb;
156 struct fb_info *info;
158 mpc8610hpcd_diu_init();
160 /* fill in Graphic device struct */
161 sprintf(pGD->modeIdent,
162 "%dx%dx%d %ldkHz %ldHz",
163 xres, yres, 32, 64, 60);
165 pGD->frameAdrs = (unsigned int)fsl_fb_open(&info);
166 pGD->winSizeX = xres;
167 pGD->winSizeY = yres - info->logo_height;
168 pGD->plnSizeX = pGD->winSizeX;
169 pGD->plnSizeY = pGD->winSizeY;
172 pGD->gdfIndex = GDF_32BIT_X888RGB;
176 pGD->memSize = info->screen_size - info->logo_size;
178 /* Cursor Start Address */
186 void video_set_lut (unsigned int index, /* color number */
187 unsigned char r, /* red */
188 unsigned char g, /* green */
189 unsigned char b /* blue */
195 #endif /* defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) */
197 #endif /* CONFIG_FSL_DIU_FB */