blob: e806b3e87be33aeda33ed588ad10261da183d1b7 [file] [log] [blame]
wdenk7d393ae2002-10-25 21:08:05 +00001/*
2 * (C) Copyright 2001
3 * ELTEC Elektronik AG
4 * Frank Gottschling <fgottschling@eltec.de>
5 *
6 * Board specific routines for the miniHiPerCam
7 *
8 * - initialisation (eeprom)
9 * - memory controller
10 * - serial io initialisation
11 * - ethernet io initialisation
12 *
13 * -----------------------------------------------------------------
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32#include <common.h>
33#include <linux/ctype.h>
34#include <commproc.h>
35#include "mpc8xx.h"
36#include <video_fb.h>
37
wdenkbf9e3b32004-02-12 00:47:09 +000038extern void eeprom_init (void);
39extern int eeprom_read (unsigned dev_addr, unsigned offset,
40 unsigned char *buffer, unsigned cnt);
41extern int eeprom_write (unsigned dev_addr, unsigned offset,
42 unsigned char *buffer, unsigned cnt);
wdenk7d393ae2002-10-25 21:08:05 +000043
44/* globals */
wdenkbf9e3b32004-02-12 00:47:09 +000045void *video_hw_init (void);
46void video_set_lut (unsigned int index, /* color number */
47 unsigned char r, /* red */
48 unsigned char g, /* green */
49 unsigned char b /* blue */
50 );
wdenk7d393ae2002-10-25 21:08:05 +000051
52GraphicDevice gdev;
53
54/* locals */
55static void video_circle (char *center, int radius, int color, int pitch);
56static void video_test_image (void);
57static void video_default_lut (unsigned int clut_type);
58
59/* revision info foer MHPC EEPROM offset 480 */
wdenkbf9e3b32004-02-12 00:47:09 +000060typedef struct {
61 char board[12]; /* 000 - Board Revision information */
62 char sensor; /* 012 - Sensor Type information */
63 char serial[8]; /* 013 - Board serial number */
64 char etheraddr[6]; /* 021 - Ethernet node addresse */
65 char revision[2]; /* 027 - Revision code */
66 char option[3]; /* 029 - resevered for options */
wdenk7d393ae2002-10-25 21:08:05 +000067} revinfo;
68
69/* ------------------------------------------------------------------------- */
70
wdenkbf9e3b32004-02-12 00:47:09 +000071static const unsigned int sdram_table[] = {
72 /* read single beat cycle */
73 0xef0efc04, 0x0e2dac04, 0x01ba5c04, 0x1ff5fc00,
74 0xfffffc05, 0xeffafc34, 0x0ff0bc34, 0x1ff57c35,
wdenk7d393ae2002-10-25 21:08:05 +000075
wdenkbf9e3b32004-02-12 00:47:09 +000076 /* read burst cycle */
77 0xef0efc04, 0x0e3dac04, 0x10ff5c04, 0xf0fffc00,
78 0xf0fffc00, 0xf1fffc00, 0xfffffc00, 0xfffffc05,
79 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
80 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
wdenk7d393ae2002-10-25 21:08:05 +000081
wdenkbf9e3b32004-02-12 00:47:09 +000082 /* write single beat cycle */
83 0xef0efc04, 0x0e29ac00, 0x01b25c04, 0x1ff5fc05,
84 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
wdenk7d393ae2002-10-25 21:08:05 +000085
wdenkbf9e3b32004-02-12 00:47:09 +000086 /* write burst cycle */
87 0xef0ef804, 0x0e39a000, 0x10f75000, 0xf0fff440,
88 0xf0fffc40, 0xf1fffc04, 0xfffffc05, 0xfffffc04,
89 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
90 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
wdenk7d393ae2002-10-25 21:08:05 +000091
wdenkbf9e3b32004-02-12 00:47:09 +000092 /* periodic timer expired */
93 0xeffebc84, 0x1ffd7c04, 0xfffffc04, 0xfffffc84,
94 0xeffebc04, 0x1ffd7c04, 0xfffffc04, 0xfffffc05,
95 0xfffffc04, 0xfffffc04, 0xfffffc04, 0xfffffc04,
wdenk7d393ae2002-10-25 21:08:05 +000096
wdenkbf9e3b32004-02-12 00:47:09 +000097 /* exception */
98 0xfffffc04, 0xfffffc05, 0xfffffc04, 0xfffffc04
wdenk7d393ae2002-10-25 21:08:05 +000099};
100
101/* ------------------------------------------------------------------------- */
102
wdenkc837dcb2004-01-20 23:12:12 +0000103int board_early_init_f (void)
wdenk7d393ae2002-10-25 21:08:05 +0000104{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
wdenkbf9e3b32004-02-12 00:47:09 +0000106 volatile cpm8xx_t *cp = &(im->im_cpm);
107 volatile iop8xx_t *ip = (iop8xx_t *) & (im->im_ioport);
wdenk7d393ae2002-10-25 21:08:05 +0000108
wdenkbf9e3b32004-02-12 00:47:09 +0000109 /* reset the port A s.a. cpm-routines */
110 ip->iop_padat = 0x0000;
111 ip->iop_papar = 0x0000;
112 ip->iop_padir = 0x0800;
113 ip->iop_paodr = 0x0000;
wdenk7d393ae2002-10-25 21:08:05 +0000114
wdenkbf9e3b32004-02-12 00:47:09 +0000115 /* reset the port B for digital and LCD output */
116 cp->cp_pbdat = 0x0300;
117 cp->cp_pbpar = 0x5001;
118 cp->cp_pbdir = 0x5301;
119 cp->cp_pbodr = 0x0000;
wdenk7d393ae2002-10-25 21:08:05 +0000120
wdenkbf9e3b32004-02-12 00:47:09 +0000121 /* reset the port C configured for SMC1 serial port and aqc. control */
122 ip->iop_pcdat = 0x0800;
123 ip->iop_pcpar = 0x0000;
124 ip->iop_pcdir = 0x0e30;
125 ip->iop_pcso = 0x0000;
wdenk7d393ae2002-10-25 21:08:05 +0000126
wdenkbf9e3b32004-02-12 00:47:09 +0000127 /* Config port D for LCD output */
128 ip->iop_pdpar = 0x1fff;
129 ip->iop_pddir = 0x1fff;
wdenk7d393ae2002-10-25 21:08:05 +0000130
wdenkbf9e3b32004-02-12 00:47:09 +0000131 return (0);
wdenk7d393ae2002-10-25 21:08:05 +0000132}
133
134/* ------------------------------------------------------------------------- */
135
136/*
137 * Check Board Identity
138 */
139int checkboard (void)
140{
wdenkbf9e3b32004-02-12 00:47:09 +0000141 puts ("Board: ELTEC miniHiperCam\n");
142 return (0);
wdenk7d393ae2002-10-25 21:08:05 +0000143}
144
145/* ------------------------------------------------------------------------- */
146
wdenkbf9e3b32004-02-12 00:47:09 +0000147int misc_init_r (void)
wdenk7d393ae2002-10-25 21:08:05 +0000148{
wdenkbf9e3b32004-02-12 00:47:09 +0000149 revinfo mhpcRevInfo;
150 char nid[32];
151 char *mhpcSensorTypes[] = { "OMNIVISON OV7610/7620 color",
152 "OMNIVISON OV7110 b&w", NULL
153 };
154 char hex[23] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0,
155 0, 0, 0, 0, 10, 11, 12, 13, 14, 15
156 };
157 int i;
wdenk7d393ae2002-10-25 21:08:05 +0000158
wdenkbf9e3b32004-02-12 00:47:09 +0000159 /* check revision data */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160 eeprom_read (CONFIG_SYS_I2C_EEPROM_ADDR, 480, (uchar *) &mhpcRevInfo, 32);
wdenk7d393ae2002-10-25 21:08:05 +0000161
wdenkbf9e3b32004-02-12 00:47:09 +0000162 if (strncmp ((char *) &mhpcRevInfo.board[2], "MHPC", 4) != 0) {
163 printf ("Enter revision number (0-9): %c ",
164 mhpcRevInfo.revision[0]);
165 if (0 != readline (NULL)) {
166 mhpcRevInfo.revision[0] =
167 (char) toupper (console_buffer[0]);
168 }
wdenk7d393ae2002-10-25 21:08:05 +0000169
wdenkbf9e3b32004-02-12 00:47:09 +0000170 printf ("Enter revision character (A-Z): %c ",
171 mhpcRevInfo.revision[1]);
172 if (1 == readline (NULL)) {
173 mhpcRevInfo.revision[1] =
174 (char) toupper (console_buffer[0]);
175 }
wdenk7d393ae2002-10-25 21:08:05 +0000176
wdenkbf9e3b32004-02-12 00:47:09 +0000177 printf ("Enter board name (V-XXXX-XXXX): %s ",
178 (char *) &mhpcRevInfo.board);
179 if (11 == readline (NULL)) {
180 for (i = 0; i < 11; i++) {
181 mhpcRevInfo.board[i] =
182 (char) toupper (console_buffer[i]);
183 mhpcRevInfo.board[11] = '\0';
184 }
185 }
186
187 printf ("Supported sensor types:\n");
188 i = 0;
189 do {
190 printf ("\n \'%d\' : %s\n", i, mhpcSensorTypes[i]);
191 } while (mhpcSensorTypes[++i] != NULL);
192
193 do {
194 printf ("\nEnter sensor number (0-255): %d ",
195 (int) mhpcRevInfo.sensor);
196 if (0 != readline (NULL)) {
197 mhpcRevInfo.sensor =
198 (unsigned char)
199 simple_strtoul (console_buffer, NULL,
200 10);
201 }
202 } while (mhpcRevInfo.sensor >= i);
203
204 printf ("Enter serial number: %s ",
205 (char *) &mhpcRevInfo.serial);
206 if (6 == readline (NULL)) {
207 for (i = 0; i < 6; i++) {
208 mhpcRevInfo.serial[i] = console_buffer[i];
209 }
210 mhpcRevInfo.serial[6] = '\0';
211 }
212
213 printf ("Enter ether node ID with leading zero (HEX): %02x%02x%02x%02x%02x%02x ", mhpcRevInfo.etheraddr[0], mhpcRevInfo.etheraddr[1], mhpcRevInfo.etheraddr[2], mhpcRevInfo.etheraddr[3], mhpcRevInfo.etheraddr[4], mhpcRevInfo.etheraddr[5]);
214 if (12 == readline (NULL)) {
215 for (i = 0; i < 12; i += 2) {
216 mhpcRevInfo.etheraddr[i >> 1] =
217 (char) (16 *
218 hex[toupper
219 (console_buffer[i]) -
220 '0'] +
221 hex[toupper
222 (console_buffer[i + 1]) -
223 '0']);
224 }
225 }
226
227 /* setup new revision data */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 eeprom_write (CONFIG_SYS_I2C_EEPROM_ADDR, 480, (uchar *) &mhpcRevInfo,
wdenkbf9e3b32004-02-12 00:47:09 +0000229 32);
wdenk8bde7f72003-06-27 21:31:46 +0000230 }
wdenk7d393ae2002-10-25 21:08:05 +0000231
wdenkbf9e3b32004-02-12 00:47:09 +0000232 /* set environment */
233 sprintf (nid, "%02x:%02x:%02x:%02x:%02x:%02x",
234 mhpcRevInfo.etheraddr[0], mhpcRevInfo.etheraddr[1],
235 mhpcRevInfo.etheraddr[2], mhpcRevInfo.etheraddr[3],
236 mhpcRevInfo.etheraddr[4], mhpcRevInfo.etheraddr[5]);
237 setenv ("ethaddr", nid);
wdenk7d393ae2002-10-25 21:08:05 +0000238
wdenkbf9e3b32004-02-12 00:47:09 +0000239 /* print actual board identification */
240 printf ("Ident: %s %s Ser %s Rev %c%c\n",
241 mhpcRevInfo.board,
242 (mhpcRevInfo.sensor == 0 ? "color" : "b&w"),
243 (char *) &mhpcRevInfo.serial, mhpcRevInfo.revision[0],
244 mhpcRevInfo.revision[1]);
wdenk7d393ae2002-10-25 21:08:05 +0000245
wdenkbf9e3b32004-02-12 00:47:09 +0000246 return (0);
wdenk7d393ae2002-10-25 21:08:05 +0000247}
248
249/* ------------------------------------------------------------------------- */
250
Becky Bruce9973e3c2008-06-09 16:03:40 -0500251phys_size_t initdram (int board_type)
wdenk7d393ae2002-10-25 21:08:05 +0000252{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200253 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkbf9e3b32004-02-12 00:47:09 +0000254 volatile memctl8xx_t *memctl = &immap->im_memctl;
wdenk7d393ae2002-10-25 21:08:05 +0000255
wdenkbf9e3b32004-02-12 00:47:09 +0000256 upmconfig (UPMA, (uint *) sdram_table,
257 sizeof (sdram_table) / sizeof (uint));
wdenk7d393ae2002-10-25 21:08:05 +0000258
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200259 memctl->memc_mamr = CONFIG_SYS_MAMR & (~(MAMR_PTAE)); /* no refresh yet */
wdenkbf9e3b32004-02-12 00:47:09 +0000260 memctl->memc_mbmr = MBMR_GPL_B4DIS; /* should this be mamr? - NTL */
261 memctl->memc_mptpr = MPTPR_PTP_DIV64;
262 memctl->memc_mar = 0x00008800;
wdenk7d393ae2002-10-25 21:08:05 +0000263
wdenkbf9e3b32004-02-12 00:47:09 +0000264 /*
265 * Map controller SDRAM bank 0
266 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200267 memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
268 memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
wdenkbf9e3b32004-02-12 00:47:09 +0000269 udelay (200);
wdenk7d393ae2002-10-25 21:08:05 +0000270
wdenkbf9e3b32004-02-12 00:47:09 +0000271 /*
272 * Map controller SDRAM bank 1
273 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274 memctl->memc_or2 = CONFIG_SYS_OR2;
275 memctl->memc_br2 = CONFIG_SYS_BR2;
wdenk7d393ae2002-10-25 21:08:05 +0000276
wdenkbf9e3b32004-02-12 00:47:09 +0000277 /*
278 * Perform SDRAM initializsation sequence
279 */
280 memctl->memc_mcr = 0x80002105; /* SDRAM bank 0 */
281 udelay (1);
282 memctl->memc_mcr = 0x80002730; /* SDRAM bank 0 - execute twice */
283 udelay (1);
284 memctl->memc_mamr |= MAMR_PTAE; /* enable refresh */
wdenk7d393ae2002-10-25 21:08:05 +0000285
wdenkbf9e3b32004-02-12 00:47:09 +0000286 udelay (10000);
wdenk7d393ae2002-10-25 21:08:05 +0000287
wdenkbf9e3b32004-02-12 00:47:09 +0000288 /* leave place for framebuffers */
289 return (SDRAM_MAX_SIZE - SDRAM_RES_SIZE);
wdenk7d393ae2002-10-25 21:08:05 +0000290}
291
292/* ------------------------------------------------------------------------- */
293
294static void video_circle (char *center, int radius, int color, int pitch)
295{
wdenkbf9e3b32004-02-12 00:47:09 +0000296 int x, y, d, dE, dSE;
wdenk7d393ae2002-10-25 21:08:05 +0000297
wdenkbf9e3b32004-02-12 00:47:09 +0000298 x = 0;
299 y = radius;
300 d = 1 - radius;
301 dE = 3;
302 dSE = -2 * radius + 5;
wdenk7d393ae2002-10-25 21:08:05 +0000303
wdenkbf9e3b32004-02-12 00:47:09 +0000304 *(center + x + y * pitch) = color;
305 *(center + y + x * pitch) = color;
306 *(center + y - x * pitch) = color;
307 *(center + x - y * pitch) = color;
308 *(center - x - y * pitch) = color;
309 *(center - y - x * pitch) = color;
310 *(center - y + x * pitch) = color;
311 *(center - x + y * pitch) = color;
312 while (y > x) {
313 if (d < 0) {
314 d += dE;
315 dE += 2;
316 dSE += 2;
317 x++;
318 } else {
319 d += dSE;
320 dE += 2;
321 dSE += 4;
322 x++;
323 y--;
324 }
325 *(center + x + y * pitch) = color;
326 *(center + y + x * pitch) = color;
327 *(center + y - x * pitch) = color;
328 *(center + x - y * pitch) = color;
329 *(center - x - y * pitch) = color;
330 *(center - y - x * pitch) = color;
331 *(center - y + x * pitch) = color;
332 *(center - x + y * pitch) = color;
wdenk8bde7f72003-06-27 21:31:46 +0000333 }
wdenk7d393ae2002-10-25 21:08:05 +0000334}
335
336/* ------------------------------------------------------------------------- */
337
wdenkbf9e3b32004-02-12 00:47:09 +0000338static void video_test_image (void)
wdenk7d393ae2002-10-25 21:08:05 +0000339{
wdenkbf9e3b32004-02-12 00:47:09 +0000340 char *di;
341 int i, n;
wdenk7d393ae2002-10-25 21:08:05 +0000342
wdenkbf9e3b32004-02-12 00:47:09 +0000343 /* draw raster */
344 for (i = 0; i < LCD_VIDEO_ROWS; i += 32) {
345 memset ((char *) (LCD_VIDEO_ADDR + i * LCD_VIDEO_COLS),
346 LCD_VIDEO_FG, LCD_VIDEO_COLS);
347 for (n = i + 1; n < i + 32; n++)
348 memset ((char *) (LCD_VIDEO_ADDR +
349 n * LCD_VIDEO_COLS), LCD_VIDEO_BG,
350 LCD_VIDEO_COLS);
wdenk8bde7f72003-06-27 21:31:46 +0000351 }
wdenk7d393ae2002-10-25 21:08:05 +0000352
wdenkbf9e3b32004-02-12 00:47:09 +0000353 for (i = 0; i < LCD_VIDEO_COLS; i += 32) {
354 for (n = 0; n < LCD_VIDEO_ROWS; n++)
355 *(char *) (LCD_VIDEO_ADDR + n * LCD_VIDEO_COLS + i) =
356 LCD_VIDEO_FG;
357 }
358
359 /* draw gray bar */
360 di = (char *) (LCD_VIDEO_ADDR + (LCD_VIDEO_COLS - 256) / 64 * 32 +
361 97 * LCD_VIDEO_COLS);
362 for (n = 0; n < 63; n++) {
363 for (i = 0; i < 256; i++) {
364 *di++ = (char) i;
365 *(di + LCD_VIDEO_COLS * 64) = (i & 1) * 255;
366 }
367 di += LCD_VIDEO_COLS - 256;
368 }
369
370 video_circle ((char *) LCD_VIDEO_ADDR + LCD_VIDEO_COLS / 2 +
371 LCD_VIDEO_ROWS / 2 * LCD_VIDEO_COLS, LCD_VIDEO_ROWS / 2,
372 LCD_VIDEO_FG, LCD_VIDEO_COLS);
wdenk7d393ae2002-10-25 21:08:05 +0000373}
374
375/* ------------------------------------------------------------------------- */
376
377static void video_default_lut (unsigned int clut_type)
378{
wdenkbf9e3b32004-02-12 00:47:09 +0000379 unsigned int i;
380 unsigned char RGB[] = {
381 0x00, 0x00, 0x00, /* black */
382 0x80, 0x80, 0x80, /* gray */
383 0xff, 0x00, 0x00, /* red */
384 0x00, 0xff, 0x00, /* green */
385 0x00, 0x00, 0xff, /* blue */
386 0x00, 0xff, 0xff, /* cyan */
387 0xff, 0x00, 0xff, /* magenta */
388 0xff, 0xff, 0x00, /* yellow */
389 0x80, 0x00, 0x00, /* dark red */
390 0x00, 0x80, 0x00, /* dark green */
391 0x00, 0x00, 0x80, /* dark blue */
392 0x00, 0x80, 0x80, /* dark cyan */
393 0x80, 0x00, 0x80, /* dark magenta */
394 0x80, 0x80, 0x00, /* dark yellow */
395 0xc0, 0xc0, 0xc0, /* light gray */
396 0xff, 0xff, 0xff, /* white */
wdenk8bde7f72003-06-27 21:31:46 +0000397 };
wdenk7d393ae2002-10-25 21:08:05 +0000398
wdenkbf9e3b32004-02-12 00:47:09 +0000399 switch (clut_type) {
400 case 1:
401 for (i = 0; i < 240; i++)
402 video_set_lut (i, i, i, i);
403 for (i = 0; i < 16; i++)
404 video_set_lut (i + 240, RGB[i * 3], RGB[i * 3 + 1],
405 RGB[i * 3 + 2]);
406 break;
407 default:
408 for (i = 0; i < 256; i++)
409 video_set_lut (i, i, i, i);
410 }
wdenk7d393ae2002-10-25 21:08:05 +0000411}
412
413/* ------------------------------------------------------------------------- */
414
415void *video_hw_init (void)
416{
wdenkbf9e3b32004-02-12 00:47:09 +0000417 unsigned int clut = 0;
418 unsigned char *penv;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200419 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk7d393ae2002-10-25 21:08:05 +0000420
wdenkbf9e3b32004-02-12 00:47:09 +0000421 /* enable video only on CLUT value */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200422 if ((penv = (uchar *)getenv ("clut")) != NULL)
423 clut = (u_int) simple_strtoul ((char *)penv, NULL, 10);
wdenkbf9e3b32004-02-12 00:47:09 +0000424 else
425 return NULL;
wdenk7d393ae2002-10-25 21:08:05 +0000426
wdenkbf9e3b32004-02-12 00:47:09 +0000427 /* disable graphic before write LCD regs. */
428 immr->im_lcd.lcd_lccr = 0x96000866;
wdenk7d393ae2002-10-25 21:08:05 +0000429
wdenkbf9e3b32004-02-12 00:47:09 +0000430 /* config LCD regs. */
431 immr->im_lcd.lcd_lcfaa = LCD_VIDEO_ADDR;
432 immr->im_lcd.lcd_lchcr = 0x010a0093;
433 immr->im_lcd.lcd_lcvcr = 0x900f0024;
wdenk7d393ae2002-10-25 21:08:05 +0000434
wdenkbf9e3b32004-02-12 00:47:09 +0000435 printf ("Video: 640x480 8Bit Index Lut %s\n",
436 (clut == 1 ? "240/16 (gray/vga)" : "256(gray)"));
wdenk7d393ae2002-10-25 21:08:05 +0000437
wdenkbf9e3b32004-02-12 00:47:09 +0000438 video_default_lut (clut);
wdenk7d393ae2002-10-25 21:08:05 +0000439
wdenkbf9e3b32004-02-12 00:47:09 +0000440 /* clear framebuffer */
441 memset ((char *) (LCD_VIDEO_ADDR), LCD_VIDEO_BG,
442 LCD_VIDEO_ROWS * LCD_VIDEO_COLS);
wdenk7d393ae2002-10-25 21:08:05 +0000443
wdenkbf9e3b32004-02-12 00:47:09 +0000444 /* enable graphic */
445 immr->im_lcd.lcd_lccr = 0x96000867;
wdenk7d393ae2002-10-25 21:08:05 +0000446
wdenkbf9e3b32004-02-12 00:47:09 +0000447 /* fill in Graphic Device */
448 gdev.frameAdrs = LCD_VIDEO_ADDR;
449 gdev.winSizeX = LCD_VIDEO_COLS;
450 gdev.winSizeY = LCD_VIDEO_ROWS;
451 gdev.gdfBytesPP = 1;
452 gdev.gdfIndex = GDF__8BIT_INDEX;
wdenk7d393ae2002-10-25 21:08:05 +0000453
wdenkbf9e3b32004-02-12 00:47:09 +0000454 if (clut > 1)
455 /* return Graphic Device for console */
456 return (void *) &gdev;
457 else
458 /* just graphic enabled - draw something beautiful */
459 video_test_image ();
wdenk7d393ae2002-10-25 21:08:05 +0000460
wdenkbf9e3b32004-02-12 00:47:09 +0000461 return NULL; /* this disabels cfb - console */
wdenk7d393ae2002-10-25 21:08:05 +0000462}
463
464/* ------------------------------------------------------------------------- */
465
466void video_set_lut (unsigned int index,
wdenk8bde7f72003-06-27 21:31:46 +0000467 unsigned char r, unsigned char g, unsigned char b)
wdenk7d393ae2002-10-25 21:08:05 +0000468{
wdenkbf9e3b32004-02-12 00:47:09 +0000469 unsigned int lum;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200470 unsigned short *pLut = (unsigned short *) (CONFIG_SYS_IMMR + 0x0e00);
wdenk7d393ae2002-10-25 21:08:05 +0000471
wdenkbf9e3b32004-02-12 00:47:09 +0000472 /* 16 bit lut values, 12 bit used, xxxx BBGG RRii iiii */
473 /* y = 0.299*R + 0.587*G + 0.114*B */
474 lum = (2990 * r + 5870 * g + 1140 * b) / 10000;
475 pLut[index] =
476 ((b & 0xc0) << 4) | ((g & 0xc0) << 2) | (r & 0xc0) | (lum &
477 0x3f);
wdenk7d393ae2002-10-25 21:08:05 +0000478}
479
480/* ------------------------------------------------------------------------- */