blob: 90275ecd8e5639eed77e235be640fec099740854 [file] [log] [blame]
wdenk56523f12004-07-11 17:40:54 +00001/*
2 * (C) Copyright 2003-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7 *
wdenk8f0b7cb2005-03-27 23:41:39 +00008 * (C) Copyright 2004-2005
wdenk56523f12004-07-11 17:40:54 +00009 * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk81050922004-07-11 20:04:51 +000021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk56523f12004-07-11 17:40:54 +000022 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30#include <common.h>
31#include <mpc5xxx.h>
32#include <pci.h>
33
wdenk8f0b7cb2005-03-27 23:41:39 +000034#ifdef CONFIG_VIDEO_SM501
35#include <sm501.h>
36#endif
37
wdenk56523f12004-07-11 17:40:54 +000038#if defined(CONFIG_MPC5200_DDR)
39#include "mt46v16m16-75.h"
40#else
41#include "mt48lc16m16a2-75.h"
42#endif
wdenk8f0b7cb2005-03-27 23:41:39 +000043
wdenk7e6bf352004-12-12 22:06:17 +000044#ifdef CONFIG_PS2MULT
45void ps2mult_early_init(void);
46#endif
wdenk56523f12004-07-11 17:40:54 +000047
48#ifndef CFG_RAMBOOT
49static void sdram_start (int hi_addr)
50{
51 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
52
53 /* unlock mode register */
54 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
55 hi_addr_bit;
56 __asm__ volatile ("sync");
57
58 /* precharge all banks */
59 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
60 hi_addr_bit;
61 __asm__ volatile ("sync");
62
63#if SDRAM_DDR
64 /* set mode register: extended mode */
65 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
66 __asm__ volatile ("sync");
67
68 /* set mode register: reset DLL */
69 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
70 __asm__ volatile ("sync");
71#endif
72
73 /* precharge all banks */
74 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
75 hi_addr_bit;
76 __asm__ volatile ("sync");
77
78 /* auto refresh */
79 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
80 hi_addr_bit;
81 __asm__ volatile ("sync");
82
83 /* set mode register */
84 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
85 __asm__ volatile ("sync");
86
87 /* normal operation */
88 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
89 __asm__ volatile ("sync");
90}
91#endif
92
93/*
94 * ATTENTION: Although partially referenced initdram does NOT make real use
wdenk81050922004-07-11 20:04:51 +000095 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
96 * is something else than 0x00000000.
wdenk56523f12004-07-11 17:40:54 +000097 */
98
99#if defined(CONFIG_MPC5200)
100long int initdram (int board_type)
101{
102 ulong dramsize = 0;
103 ulong dramsize2 = 0;
104#ifndef CFG_RAMBOOT
105 ulong test1, test2;
106
107 /* setup SDRAM chip selects */
108 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
109 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
110 __asm__ volatile ("sync");
111
112 /* setup config registers */
113 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
114 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
115 __asm__ volatile ("sync");
116
117#if SDRAM_DDR
118 /* set tap delay */
119 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
120 __asm__ volatile ("sync");
121#endif
122
123 /* find RAM size using SDRAM CS0 only */
124 sdram_start(0);
125 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000);
126 sdram_start(1);
127 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000);
128 if (test1 > test2) {
129 sdram_start(0);
130 dramsize = test1;
131 } else {
132 dramsize = test2;
133 }
134
135 /* memory smaller than 1MB is impossible */
136 if (dramsize < (1 << 20)) {
137 dramsize = 0;
138 }
139
140 /* set SDRAM CS0 size according to the amount of RAM found */
141 if (dramsize > 0) {
142 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
143 __builtin_ffs(dramsize >> 20) - 1;
144 } else {
145 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
146 }
147
148 /* let SDRAM CS1 start right after CS0 */
149 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001c; /* 512MB */
150
151 /* find RAM size using SDRAM CS1 only */
152 sdram_start(0);
153 test1 = get_ram_size((ulong *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
154 sdram_start(1);
155 test2 = get_ram_size((ulong *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
156 if (test1 > test2) {
157 sdram_start(0);
158 dramsize2 = test1;
159 } else {
160 dramsize2 = test2;
161 }
162
163 /* memory smaller than 1MB is impossible */
164 if (dramsize2 < (1 << 20)) {
165 dramsize2 = 0;
166 }
167
168 /* set SDRAM CS1 size according to the amount of RAM found */
169 if (dramsize2 > 0) {
170 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
171 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
172 } else {
173 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
174 }
175
176#else /* CFG_RAMBOOT */
177
178 /* retrieve size of memory connected to SDRAM CS0 */
179 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
180 if (dramsize >= 0x13) {
181 dramsize = (1 << (dramsize - 0x13)) << 20;
182 } else {
183 dramsize = 0;
184 }
185
186 /* retrieve size of memory connected to SDRAM CS1 */
187 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
188 if (dramsize2 >= 0x13) {
189 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
190 } else {
191 dramsize2 = 0;
192 }
193
194#endif /* CFG_RAMBOOT */
195
196/* return dramsize + dramsize2; */
197 return dramsize;
198}
199
200#elif defined(CONFIG_MGT5100)
201
202long int initdram (int board_type)
203{
204 ulong dramsize = 0;
205#ifndef CFG_RAMBOOT
206 ulong test1, test2;
207
208 /* setup and enable SDRAM chip selects */
209 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
210 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
211 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
212 __asm__ volatile ("sync");
213
214 /* setup config registers */
215 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
216 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
217
218 /* address select register */
219 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = SDRAM_ADDRSEL;
220 __asm__ volatile ("sync");
221
222 /* find RAM size */
223 sdram_start(0);
224 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
225 sdram_start(1);
226 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
227 if (test1 > test2) {
228 sdram_start(0);
229 dramsize = test1;
230 } else {
231 dramsize = test2;
232 }
233
234 /* set SDRAM end address according to size */
235 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
236
237#else /* CFG_RAMBOOT */
238
239 /* Retrieve amount of SDRAM available */
240 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
241
242#endif /* CFG_RAMBOOT */
243
244 return dramsize;
245}
246
247#else
248#error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
249#endif
250
251int checkboard (void)
252{
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200253#if defined (CONFIG_AEVFIFO)
254 puts ("Board: AEVFIFO\n");
255 return 0;
256#endif
wdenk56523f12004-07-11 17:40:54 +0000257#if defined (CONFIG_TQM5200_AA)
wdenk8f0b7cb2005-03-27 23:41:39 +0000258 puts ("Board: TQM5200-AA (TQ-Components GmbH)\n");
wdenk7e6bf352004-12-12 22:06:17 +0000259#elif defined (CONFIG_TQM5200_AB)
wdenk8f0b7cb2005-03-27 23:41:39 +0000260 puts ("Board: TQM5200-AB (TQ-Components GmbH)\n");
wdenk7e6bf352004-12-12 22:06:17 +0000261#elif defined (CONFIG_TQM5200_AC)
wdenk8f0b7cb2005-03-27 23:41:39 +0000262 puts ("Board: TQM5200-AC (TQ-Components GmbH)\n");
wdenk7e6bf352004-12-12 22:06:17 +0000263#elif defined (CONFIG_TQM5200)
wdenk8f0b7cb2005-03-27 23:41:39 +0000264 puts ("Board: TQM5200 (TQ-Components GmbH)\n");
wdenk56523f12004-07-11 17:40:54 +0000265#endif
wdenk7e6bf352004-12-12 22:06:17 +0000266#if defined (CONFIG_STK52XX)
267 puts (" on a STK52XX baseboard\n");
268#endif
269
wdenk56523f12004-07-11 17:40:54 +0000270 return 0;
271}
272
273void flash_preinit(void)
274{
275 /*
276 * Now, when we are in RAM, enable flash write
277 * access for detection process.
278 * Note that CS_BOOT cannot be cleared when
279 * executing in flash.
280 */
281#if defined(CONFIG_MGT5100)
282 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
283 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
284#endif
285 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
286}
287
288
289#ifdef CONFIG_PCI
290static struct pci_controller hose;
291
292extern void pci_mpc5xxx_init(struct pci_controller *);
293
294void pci_init_board(void)
295{
296 pci_mpc5xxx_init(&hose);
297}
298#endif
299
300#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
301
302#if defined (CONFIG_MINIFAP)
303#define SM501_POWER_MODE0_GATE 0x00000040UL
304#define SM501_POWER_MODE1_GATE 0x00000048UL
305#define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
306#define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
307#define SM501_GPIO_DATA_HIGH 0x00010004UL
308#define SM501_GPIO_51 0x00080000UL
309#else
310#define GPIO_PSC1_4 0x01000000UL
311#endif
312
313void init_ide_reset (void)
314{
315 debug ("init_ide_reset\n");
316
317#if defined (CONFIG_MINIFAP)
318 /* Configure GPIO_51 of the SM501 grafic controller as ATA reset */
319
320 /* enable GPIO control (in both power modes) */
321 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
322 POWER_MODE_GATE_GPIO_PWM_I2C;
323 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
324 POWER_MODE_GATE_GPIO_PWM_I2C;
325 /* configure GPIO51 as output */
326 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |=
327 SM501_GPIO_51;
328#else
329 /* Configure PSC1_4 as GPIO output for ATA reset */
330 *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
331 *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4;
332#endif
333}
334
335void ide_set_reset (int idereset)
336{
337 debug ("ide_reset(%d)\n", idereset);
338
339#if defined (CONFIG_MINIFAP)
340 if (idereset) {
341 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
342 ~SM501_GPIO_51;
343 } else {
344 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
345 SM501_GPIO_51;
346 }
347#else
348 if (idereset) {
349 *(vu_long *) MPC5XXX_WU_GPIO_DATA &= ~GPIO_PSC1_4;
350 } else {
351 *(vu_long *) MPC5XXX_WU_GPIO_DATA |= GPIO_PSC1_4;
352 }
353#endif
354}
355#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
356
357#ifdef CONFIG_POST
358/*
359 * Reads GPIO pin PSC6_3. A keypress is reported, if PSC6_3 is low. If PSC6_3
360 * is left open, no keypress is detected.
361 */
362int post_hotkeys_pressed(void)
363{
364 struct mpc5xxx_gpio *gpio;
365
366 gpio = (struct mpc5xxx_gpio*) MPC5XXX_GPIO;
367
368 /*
369 * Configure PSC6_1 and PSC6_3 as GPIO. PSC6 then couldn't be used in
370 * CODEC or UART mode. Consumer IrDA should still be possible.
wdenk81050922004-07-11 20:04:51 +0000371 */
wdenk56523f12004-07-11 17:40:54 +0000372 gpio->port_config &= ~(0x07000000);
373 gpio->port_config |= 0x03000000;
374
375 /* Enable GPIO for GPIO_IRDA_1 (IR_USB_CLK pin) = PSC6_3 */
376 gpio->simple_gpioe |= 0x20000000;
377
378 /* Configure GPIO_IRDA_1 as input */
379 gpio->simple_ddr &= ~(0x20000000);
380
381 return ((gpio->simple_ival & 0x20000000) ? 0 : 1);
382}
383#endif
384
385#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
386
387void post_word_store (ulong a)
388{
389 volatile ulong *save_addr =
390 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
391
392 *save_addr = a;
393}
394
395ulong post_word_load (void)
396{
397 volatile ulong *save_addr =
398 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
399
400 return *save_addr;
401}
wdenk56523f12004-07-11 17:40:54 +0000402#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/
wdenk7e6bf352004-12-12 22:06:17 +0000403
404#ifdef CONFIG_PS2MULT
405#ifdef CONFIG_BOARD_EARLY_INIT_R
406int board_early_init_r (void)
407{
408 ps2mult_early_init();
409 return (0);
410}
411#endif
412#endif /* CONFIG_PS2MULT */
413
414#if defined(CONFIG_CS_AUTOCONF)
415int last_stage_init (void)
416{
417 /*
418 * auto scan for really existing devices and re-set chip select
419 * configuration.
420 */
421 u16 save, tmp;
422 int restore;
423
424 /*
425 * Check for SRAM and SRAM size
426 */
427
428 /* save origianl SRAM content */
429 save = *(volatile u16 *)CFG_CS2_START;
430 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000431
wdenk7e6bf352004-12-12 22:06:17 +0000432 /* write test pattern to SRAM */
433 *(volatile u16 *)CFG_CS2_START = 0xA5A5;
434 __asm__ volatile ("sync");
435 /*
436 * Put a different pattern on the data lines: otherwise they may float
437 * long enough to read back what we wrote.
438 */
439 tmp = *(volatile u16 *)CFG_FLASH_BASE;
440 if (tmp == 0xA5A5)
441 puts ("!! possible error in SRAM detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000442
wdenk7e6bf352004-12-12 22:06:17 +0000443 if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
444 /* no SRAM at all, disable cs */
445 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
446 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
447 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
448 restore = 0;
449 __asm__ volatile ("sync");
450 }
451 else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
452 /* make sure that we access a mirrored address */
453 *(volatile u16 *)CFG_CS2_START = 0x1111;
454 __asm__ volatile ("sync");
455 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
456 /* SRAM size = 512 kByte */
wdenkefe2a4d2004-12-16 21:44:03 +0000457 *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
wdenk7e6bf352004-12-12 22:06:17 +0000458 0x80000);
459 __asm__ volatile ("sync");
460 puts ("SRAM: 512 kB\n");
461 }
462 else
wdenkefe2a4d2004-12-16 21:44:03 +0000463 puts ("!! possible error in SRAM detection\n");
wdenk7e6bf352004-12-12 22:06:17 +0000464 }
465 else {
wdenkefe2a4d2004-12-16 21:44:03 +0000466 puts ("SRAM: 1 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000467 }
468 /* restore origianl SRAM content */
469 if (restore) {
470 *(volatile u16 *)CFG_CS2_START = save;
471 __asm__ volatile ("sync");
472 }
wdenkefe2a4d2004-12-16 21:44:03 +0000473
474 /*
wdenk7e6bf352004-12-12 22:06:17 +0000475 * Check for Grafic Controller
476 */
477
478 /* save origianl FB content */
479 save = *(volatile u16 *)CFG_CS1_START;
480 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000481
wdenk7e6bf352004-12-12 22:06:17 +0000482 /* write test pattern to FB memory */
483 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
484 __asm__ volatile ("sync");
485 /*
486 * Put a different pattern on the data lines: otherwise they may float
487 * long enough to read back what we wrote.
488 */
489 tmp = *(volatile u16 *)CFG_FLASH_BASE;
490 if (tmp == 0xA5A5)
491 puts ("!! possible error in grafic controller detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000492
wdenk7e6bf352004-12-12 22:06:17 +0000493 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
494 /* no grafic controller at all, disable cs */
495 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
496 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
497 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
498 restore = 0;
499 __asm__ volatile ("sync");
500 }
501 else {
wdenkefe2a4d2004-12-16 21:44:03 +0000502 puts ("VGA: SMI501 (Voyager) with 8 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000503 }
504 /* restore origianl FB content */
505 if (restore) {
506 *(volatile u16 *)CFG_CS1_START = save;
507 __asm__ volatile ("sync");
508 }
wdenkefe2a4d2004-12-16 21:44:03 +0000509
wdenk7e6bf352004-12-12 22:06:17 +0000510 return 0;
511}
512#endif /* CONFIG_CS_AUTOCONF */
wdenk8f0b7cb2005-03-27 23:41:39 +0000513
514#ifdef CONFIG_VIDEO_SM501
515
516#define DISPLAY_WIDTH 640
517#define DISPLAY_HEIGHT 480
518
519#ifdef CONFIG_VIDEO_SM501_8BPP
520#error CONFIG_VIDEO_SM501_8BPP not supported.
521#endif /* CONFIG_VIDEO_SM501_8BPP */
522
523#ifdef CONFIG_VIDEO_SM501_16BPP
524#error CONFIG_VIDEO_SM501_16BPP not supported.
525#endif /* CONFIG_VIDEO_SM501_16BPP */
526#ifdef CONFIG_VIDEO_SM501_32BPP
527static const SMI_REGS init_regs [] =
528{
529#if 0 /* CRT only */
530 {0x00004, 0x0},
531 {0x00048, 0x00021807},
532 {0x0004C, 0x10090a01},
533 {0x00054, 0x1},
534 {0x00040, 0x00021807},
535 {0x00044, 0x10090a01},
536 {0x00054, 0x0},
537 {0x80200, 0x00010000},
538 {0x80204, 0x0},
539 {0x80208, 0x0A000A00},
540 {0x8020C, 0x02fa027f},
541 {0x80210, 0x004a028b},
542 {0x80214, 0x020c01df},
543 {0x80218, 0x000201e9},
544 {0x80200, 0x00013306},
545#else /* panel + CRT */
546 {0x00004, 0x0},
547 {0x00048, 0x00021807},
548 {0x0004C, 0x091a0a01},
549 {0x00054, 0x1},
550 {0x00040, 0x00021807},
551 {0x00044, 0x091a0a01},
552 {0x00054, 0x0},
553 {0x80000, 0x0f013106},
554 {0x80004, 0xc428bb17},
555 {0x8000C, 0x00000000},
556 {0x80010, 0x0a000a00},
557 {0x80014, 0x02800000},
558 {0x80018, 0x01e00000},
559 {0x8001C, 0x00000000},
560 {0x80020, 0x01e00280},
561 {0x80024, 0x02fa027f},
562 {0x80028, 0x004a028b},
563 {0x8002C, 0x020c01df},
564 {0x80030, 0x000201e9},
565 {0x80200, 0x00010000},
566#endif
567 {0, 0}
568};
569#endif /* CONFIG_VIDEO_SM501_32BPP */
570
571#ifdef CONFIG_CONSOLE_EXTRA_INFO
572/*
573 * Return text to be printed besides the logo.
574 */
575void video_get_info_str (int line_number, char *info)
576{
577 if (line_number == 1) {
578#if defined (CONFIG_TQM5200_AA)
579 strcpy (info, " Board: TQM5200-AA (TQ-Components GmbH)");
580#elif defined (CONFIG_TQM5200_AB)
581 strcpy (info, " Board: TQM5200-AB (TQ-Components GmbH)");
582#elif defined (CONFIG_TQM5200_AC)
583 strcpy (info, " Board: TQM5200-AC (TQ-Components GmbH)");
584#elif defined (CONFIG_TQM5200)
585 strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
586#else
587#error No supported board selected
588#endif
589#if defined (CONFIG_STK52XX)
590 } else if (line_number == 2) {
591 strcpy (info, " on a STK52XX baseboard");
592#endif
593 }
594 else {
595 info [0] = '\0';
596 }
597}
598#endif
599
600/*
601 * Returns SM501 register base address. First thing called in the driver.
602 */
603unsigned int board_video_init (void)
604{
605 return SM501_MMIO_BASE;
606}
607
608/*
609 * Returns SM501 framebuffer address
610 */
611unsigned int board_video_get_fb (void)
612{
613 return SM501_FB_BASE;
614}
615
616/*
617 * Called after initializing the SM501 and before clearing the screen.
618 */
619void board_validate_screen (unsigned int base)
620{
621}
622
623/*
624 * Return a pointer to the initialization sequence.
625 */
626const SMI_REGS *board_get_regs (void)
627{
628 return init_regs;
629}
630
631int board_get_width (void)
632{
633 return DISPLAY_WIDTH;
634}
635
636int board_get_height (void)
637{
638 return DISPLAY_HEIGHT;
639}
640
641#endif /* CONFIG_VIDEO_SM501 */