blob: b76579cb43fc55b81ff33b40cf416ff965cfa908 [file] [log] [blame]
wdenk56523f12004-07-11 17:40:54 +00001/*
Wolfgang Denk45a212c2006-07-19 17:52:30 +02002 * (C) Copyright 2003-2006
wdenk56523f12004-07-11 17:40:54 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7 *
Wolfgang Denk45a212c2006-07-19 17:52:30 +02008 * (C) Copyright 2004-2006
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>
Wolfgang Denk45a212c2006-07-19 17:52:30 +020033#include <asm/processor.h>
wdenk56523f12004-07-11 17:40:54 +000034
wdenk8f0b7cb2005-03-27 23:41:39 +000035#ifdef CONFIG_VIDEO_SM501
36#include <sm501.h>
37#endif
38
wdenk56523f12004-07-11 17:40:54 +000039#if defined(CONFIG_MPC5200_DDR)
40#include "mt46v16m16-75.h"
41#else
42#include "mt48lc16m16a2-75.h"
43#endif
wdenk8f0b7cb2005-03-27 23:41:39 +000044
wdenk7e6bf352004-12-12 22:06:17 +000045#ifdef CONFIG_PS2MULT
46void ps2mult_early_init(void);
47#endif
wdenk56523f12004-07-11 17:40:54 +000048
49#ifndef CFG_RAMBOOT
50static void sdram_start (int hi_addr)
51{
52 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
53
54 /* unlock mode register */
55 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
56 hi_addr_bit;
57 __asm__ volatile ("sync");
58
59 /* precharge all banks */
60 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
61 hi_addr_bit;
62 __asm__ volatile ("sync");
63
64#if SDRAM_DDR
65 /* set mode register: extended mode */
66 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
67 __asm__ volatile ("sync");
68
69 /* set mode register: reset DLL */
70 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
71 __asm__ volatile ("sync");
72#endif
73
74 /* precharge all banks */
75 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
76 hi_addr_bit;
77 __asm__ volatile ("sync");
78
79 /* auto refresh */
80 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
81 hi_addr_bit;
82 __asm__ volatile ("sync");
83
84 /* set mode register */
85 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
86 __asm__ volatile ("sync");
87
88 /* normal operation */
89 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
90 __asm__ volatile ("sync");
91}
92#endif
93
94/*
95 * ATTENTION: Although partially referenced initdram does NOT make real use
wdenk81050922004-07-11 20:04:51 +000096 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
97 * is something else than 0x00000000.
wdenk56523f12004-07-11 17:40:54 +000098 */
99
100#if defined(CONFIG_MPC5200)
101long int initdram (int board_type)
102{
103 ulong dramsize = 0;
104 ulong dramsize2 = 0;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200105 uint svr, pvr;
106
wdenk56523f12004-07-11 17:40:54 +0000107#ifndef CFG_RAMBOOT
108 ulong test1, test2;
109
110 /* setup SDRAM chip selects */
111 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
112 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
113 __asm__ volatile ("sync");
114
115 /* setup config registers */
116 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
117 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
118 __asm__ volatile ("sync");
119
120#if SDRAM_DDR
121 /* set tap delay */
122 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
123 __asm__ volatile ("sync");
124#endif
125
126 /* find RAM size using SDRAM CS0 only */
127 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200128 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000129 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200130 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000131 if (test1 > test2) {
132 sdram_start(0);
133 dramsize = test1;
134 } else {
135 dramsize = test2;
136 }
137
138 /* memory smaller than 1MB is impossible */
139 if (dramsize < (1 << 20)) {
140 dramsize = 0;
141 }
142
143 /* set SDRAM CS0 size according to the amount of RAM found */
144 if (dramsize > 0) {
145 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
146 __builtin_ffs(dramsize >> 20) - 1;
147 } else {
148 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
149 }
150
151 /* let SDRAM CS1 start right after CS0 */
152 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001c; /* 512MB */
153
154 /* find RAM size using SDRAM CS1 only */
155 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200156 test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000157 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200158 test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000159 if (test1 > test2) {
160 sdram_start(0);
161 dramsize2 = test1;
162 } else {
163 dramsize2 = test2;
164 }
165
166 /* memory smaller than 1MB is impossible */
167 if (dramsize2 < (1 << 20)) {
168 dramsize2 = 0;
169 }
170
171 /* set SDRAM CS1 size according to the amount of RAM found */
172 if (dramsize2 > 0) {
173 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
174 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
175 } else {
176 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
177 }
178
179#else /* CFG_RAMBOOT */
180
181 /* retrieve size of memory connected to SDRAM CS0 */
182 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
183 if (dramsize >= 0x13) {
184 dramsize = (1 << (dramsize - 0x13)) << 20;
185 } else {
186 dramsize = 0;
187 }
188
189 /* retrieve size of memory connected to SDRAM CS1 */
190 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
191 if (dramsize2 >= 0x13) {
192 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
193 } else {
194 dramsize2 = 0;
195 }
wdenk56523f12004-07-11 17:40:54 +0000196#endif /* CFG_RAMBOOT */
197
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200198 /*
199 * On MPC5200B we need to set the special configuration delay in the
200 * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM
201 * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
202 *
203 * "The SDelay should be written to a value of 0x00000004. It is
204 * required to account for changes caused by normal wafer processing
205 * parameters."
206 */
207 svr = get_svr();
208 pvr = get_pvr();
209 if ((SVR_MJREV(svr) >= 2) &&
210 (PVR_MAJ(pvr) == 1) && (PVR_MIN(pvr) == 4)) {
211
212 *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
213 __asm__ volatile ("sync");
214 }
215
216#if defined(CONFIG_TQM5200_B)
217 return dramsize + dramsize2;
218#else
wdenk56523f12004-07-11 17:40:54 +0000219 return dramsize;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200220#endif /* CONFIG_TQM5200_B */
wdenk56523f12004-07-11 17:40:54 +0000221}
222
223#elif defined(CONFIG_MGT5100)
224
225long int initdram (int board_type)
226{
227 ulong dramsize = 0;
228#ifndef CFG_RAMBOOT
229 ulong test1, test2;
230
231 /* setup and enable SDRAM chip selects */
232 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
233 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
234 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
235 __asm__ volatile ("sync");
236
237 /* setup config registers */
238 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
239 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
240
241 /* address select register */
242 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = SDRAM_ADDRSEL;
243 __asm__ volatile ("sync");
244
245 /* find RAM size */
246 sdram_start(0);
247 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
248 sdram_start(1);
249 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
250 if (test1 > test2) {
251 sdram_start(0);
252 dramsize = test1;
253 } else {
254 dramsize = test2;
255 }
256
257 /* set SDRAM end address according to size */
258 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
259
260#else /* CFG_RAMBOOT */
261
262 /* Retrieve amount of SDRAM available */
263 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
264
265#endif /* CFG_RAMBOOT */
266
267 return dramsize;
268}
269
270#else
271#error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
272#endif
273
274int checkboard (void)
275{
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200276#if defined(CONFIG_AEVFIFO)
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200277 puts ("Board: AEVFIFO\n");
278 return 0;
279#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200280
281#if defined(CONFIG_TQM5200S)
282# define MODULE_NAME "TQM5200S"
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200283#else
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200284# define MODULE_NAME "TQM5200"
wdenk56523f12004-07-11 17:40:54 +0000285#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200286
287#if defined(CONFIG_STK52XX)
288# define CARRIER_NAME "STK52xx"
289#elif defined(CONFIG_TB5200)
290# define CARRIER_NAME "TB5200"
Wolfgang Denk135ae002006-07-22 01:20:03 +0200291#elif defined(CONFIG_CAM5200)
292# define CARRIER_NAME "Cam5200"
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200293#elif defined(CONFIG_FO300)
294# define CARRIER_NAME "FO300"
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200295#else
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200296# error "UNKNOWN"
wdenk7e6bf352004-12-12 22:06:17 +0000297#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200298
299 puts ( "Board: " MODULE_NAME " (TQ-Components GmbH)\n"
300 " on a " CARRIER_NAME " carrier board\n");
wdenk7e6bf352004-12-12 22:06:17 +0000301
wdenk56523f12004-07-11 17:40:54 +0000302 return 0;
303}
304
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200305#undef MODULE_NAME
306#undef CARRIER_NAME
307
wdenk56523f12004-07-11 17:40:54 +0000308void flash_preinit(void)
309{
310 /*
311 * Now, when we are in RAM, enable flash write
312 * access for detection process.
313 * Note that CS_BOOT cannot be cleared when
314 * executing in flash.
315 */
316#if defined(CONFIG_MGT5100)
317 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
318 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
319#endif
320 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
321}
322
323
324#ifdef CONFIG_PCI
325static struct pci_controller hose;
326
327extern void pci_mpc5xxx_init(struct pci_controller *);
328
329void pci_init_board(void)
330{
331 pci_mpc5xxx_init(&hose);
332}
333#endif
334
335#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
336
337#if defined (CONFIG_MINIFAP)
338#define SM501_POWER_MODE0_GATE 0x00000040UL
339#define SM501_POWER_MODE1_GATE 0x00000048UL
340#define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
341#define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
342#define SM501_GPIO_DATA_HIGH 0x00010004UL
343#define SM501_GPIO_51 0x00080000UL
344#else
345#define GPIO_PSC1_4 0x01000000UL
346#endif
347
348void init_ide_reset (void)
349{
350 debug ("init_ide_reset\n");
351
352#if defined (CONFIG_MINIFAP)
353 /* Configure GPIO_51 of the SM501 grafic controller as ATA reset */
354
355 /* enable GPIO control (in both power modes) */
356 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
357 POWER_MODE_GATE_GPIO_PWM_I2C;
358 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
359 POWER_MODE_GATE_GPIO_PWM_I2C;
360 /* configure GPIO51 as output */
361 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |=
362 SM501_GPIO_51;
363#else
364 /* Configure PSC1_4 as GPIO output for ATA reset */
365 *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
366 *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4;
367#endif
368}
369
370void ide_set_reset (int idereset)
371{
372 debug ("ide_reset(%d)\n", idereset);
373
374#if defined (CONFIG_MINIFAP)
375 if (idereset) {
376 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
377 ~SM501_GPIO_51;
378 } else {
379 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
380 SM501_GPIO_51;
381 }
382#else
383 if (idereset) {
384 *(vu_long *) MPC5XXX_WU_GPIO_DATA &= ~GPIO_PSC1_4;
385 } else {
386 *(vu_long *) MPC5XXX_WU_GPIO_DATA |= GPIO_PSC1_4;
387 }
388#endif
389}
390#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
391
392#ifdef CONFIG_POST
393/*
394 * Reads GPIO pin PSC6_3. A keypress is reported, if PSC6_3 is low. If PSC6_3
395 * is left open, no keypress is detected.
396 */
397int post_hotkeys_pressed(void)
398{
399 struct mpc5xxx_gpio *gpio;
400
401 gpio = (struct mpc5xxx_gpio*) MPC5XXX_GPIO;
402
403 /*
404 * Configure PSC6_1 and PSC6_3 as GPIO. PSC6 then couldn't be used in
405 * CODEC or UART mode. Consumer IrDA should still be possible.
wdenk81050922004-07-11 20:04:51 +0000406 */
wdenk56523f12004-07-11 17:40:54 +0000407 gpio->port_config &= ~(0x07000000);
408 gpio->port_config |= 0x03000000;
409
410 /* Enable GPIO for GPIO_IRDA_1 (IR_USB_CLK pin) = PSC6_3 */
411 gpio->simple_gpioe |= 0x20000000;
412
413 /* Configure GPIO_IRDA_1 as input */
414 gpio->simple_ddr &= ~(0x20000000);
415
416 return ((gpio->simple_ival & 0x20000000) ? 0 : 1);
417}
418#endif
419
420#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
421
422void post_word_store (ulong a)
423{
424 volatile ulong *save_addr =
425 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
426
427 *save_addr = a;
428}
429
430ulong post_word_load (void)
431{
432 volatile ulong *save_addr =
433 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
434
435 return *save_addr;
436}
wdenk56523f12004-07-11 17:40:54 +0000437#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/
wdenk7e6bf352004-12-12 22:06:17 +0000438
439#ifdef CONFIG_PS2MULT
440#ifdef CONFIG_BOARD_EARLY_INIT_R
441int board_early_init_r (void)
442{
443 ps2mult_early_init();
444 return (0);
445}
446#endif
447#endif /* CONFIG_PS2MULT */
448
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200449#ifdef CONFIG_FO300
450int silent_boot (void)
451{
452 vu_long timer3_status;
453
454 /* Configure GPT3 as GPIO input */
455 *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
456
457 /* Read in TIMER_3 pin status */
458 timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
459
460#ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
461 /* Force silent console mode if S1 switch
462 * is in closed position (TIMER_3 pin status is LOW). */
463 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
464 return 1;
465#else
466 /* Force silent console mode if S1 switch
467 * is in open position (TIMER_3 pin status is HIGH). */
468 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
469 return 1;
470#endif
471
472 return 0;
473}
474
475int board_early_init_f (void)
476{
477 DECLARE_GLOBAL_DATA_PTR;
478
479 if (silent_boot())
480 gd->flags |= GD_FLG_SILENT;
481
482 return 0;
483}
484#endif /* CONFIG_FO300 */
485
wdenk7e6bf352004-12-12 22:06:17 +0000486int last_stage_init (void)
487{
488 /*
489 * auto scan for really existing devices and re-set chip select
490 * configuration.
491 */
492 u16 save, tmp;
493 int restore;
494
495 /*
496 * Check for SRAM and SRAM size
497 */
498
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200499 /* save original SRAM content */
wdenk7e6bf352004-12-12 22:06:17 +0000500 save = *(volatile u16 *)CFG_CS2_START;
501 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000502
wdenk7e6bf352004-12-12 22:06:17 +0000503 /* write test pattern to SRAM */
504 *(volatile u16 *)CFG_CS2_START = 0xA5A5;
505 __asm__ volatile ("sync");
506 /*
507 * Put a different pattern on the data lines: otherwise they may float
508 * long enough to read back what we wrote.
509 */
510 tmp = *(volatile u16 *)CFG_FLASH_BASE;
511 if (tmp == 0xA5A5)
512 puts ("!! possible error in SRAM detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000513
wdenk7e6bf352004-12-12 22:06:17 +0000514 if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
515 /* no SRAM at all, disable cs */
516 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
517 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
518 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
519 restore = 0;
520 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200521 } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
wdenk7e6bf352004-12-12 22:06:17 +0000522 /* make sure that we access a mirrored address */
523 *(volatile u16 *)CFG_CS2_START = 0x1111;
524 __asm__ volatile ("sync");
525 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
526 /* SRAM size = 512 kByte */
wdenkefe2a4d2004-12-16 21:44:03 +0000527 *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
wdenk7e6bf352004-12-12 22:06:17 +0000528 0x80000);
529 __asm__ volatile ("sync");
530 puts ("SRAM: 512 kB\n");
531 }
532 else
wdenkefe2a4d2004-12-16 21:44:03 +0000533 puts ("!! possible error in SRAM detection\n");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200534 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000535 puts ("SRAM: 1 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000536 }
537 /* restore origianl SRAM content */
538 if (restore) {
539 *(volatile u16 *)CFG_CS2_START = save;
540 __asm__ volatile ("sync");
541 }
wdenkefe2a4d2004-12-16 21:44:03 +0000542
543 /*
wdenk7e6bf352004-12-12 22:06:17 +0000544 * Check for Grafic Controller
545 */
546
547 /* save origianl FB content */
548 save = *(volatile u16 *)CFG_CS1_START;
549 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000550
wdenk7e6bf352004-12-12 22:06:17 +0000551 /* write test pattern to FB memory */
552 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
553 __asm__ volatile ("sync");
554 /*
555 * Put a different pattern on the data lines: otherwise they may float
556 * long enough to read back what we wrote.
557 */
558 tmp = *(volatile u16 *)CFG_FLASH_BASE;
559 if (tmp == 0xA5A5)
560 puts ("!! possible error in grafic controller detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000561
wdenk7e6bf352004-12-12 22:06:17 +0000562 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
563 /* no grafic controller at all, disable cs */
564 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
565 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
566 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
567 restore = 0;
568 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200569 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000570 puts ("VGA: SMI501 (Voyager) with 8 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000571 }
572 /* restore origianl FB content */
573 if (restore) {
574 *(volatile u16 *)CFG_CS1_START = save;
575 __asm__ volatile ("sync");
576 }
wdenkefe2a4d2004-12-16 21:44:03 +0000577
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200578#ifdef CONFIG_FO300
579 if (silent_boot()) {
580 setenv("bootdelay", "0");
581 disable_ctrlc(1);
582 }
583#endif
584
wdenk7e6bf352004-12-12 22:06:17 +0000585 return 0;
586}
wdenk8f0b7cb2005-03-27 23:41:39 +0000587
588#ifdef CONFIG_VIDEO_SM501
589
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200590#ifdef CONFIG_FO300
591#define DISPLAY_WIDTH 800
592#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000593#define DISPLAY_WIDTH 640
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200594#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000595#define DISPLAY_HEIGHT 480
596
597#ifdef CONFIG_VIDEO_SM501_8BPP
598#error CONFIG_VIDEO_SM501_8BPP not supported.
599#endif /* CONFIG_VIDEO_SM501_8BPP */
600
601#ifdef CONFIG_VIDEO_SM501_16BPP
602#error CONFIG_VIDEO_SM501_16BPP not supported.
603#endif /* CONFIG_VIDEO_SM501_16BPP */
604#ifdef CONFIG_VIDEO_SM501_32BPP
605static const SMI_REGS init_regs [] =
606{
607#if 0 /* CRT only */
608 {0x00004, 0x0},
609 {0x00048, 0x00021807},
610 {0x0004C, 0x10090a01},
611 {0x00054, 0x1},
612 {0x00040, 0x00021807},
613 {0x00044, 0x10090a01},
614 {0x00054, 0x0},
615 {0x80200, 0x00010000},
616 {0x80204, 0x0},
617 {0x80208, 0x0A000A00},
618 {0x8020C, 0x02fa027f},
619 {0x80210, 0x004a028b},
620 {0x80214, 0x020c01df},
621 {0x80218, 0x000201e9},
622 {0x80200, 0x00013306},
623#else /* panel + CRT */
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200624#ifdef CONFIG_FO300
625 {0x00004, 0x0},
626 {0x00048, 0x00021807},
627 {0x0004C, 0x301a0a01},
628 {0x00054, 0x1},
629 {0x00040, 0x00021807},
630 {0x00044, 0x091a0a01},
631 {0x00054, 0x0},
632 {0x80000, 0x0f013106},
633 {0x80004, 0xc428bb17},
634 {0x8000C, 0x00000000},
635 {0x80010, 0x0C800C80},
636 {0x80014, 0x03200000},
637 {0x80018, 0x01e00000},
638 {0x8001C, 0x00000000},
639 {0x80020, 0x01e00320},
640 {0x80024, 0x042a031f},
641 {0x80028, 0x0086034a},
642 {0x8002C, 0x020c01df},
643 {0x80030, 0x000201ea},
644 {0x80200, 0x00010000},
645#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000646 {0x00004, 0x0},
647 {0x00048, 0x00021807},
648 {0x0004C, 0x091a0a01},
649 {0x00054, 0x1},
650 {0x00040, 0x00021807},
651 {0x00044, 0x091a0a01},
652 {0x00054, 0x0},
653 {0x80000, 0x0f013106},
654 {0x80004, 0xc428bb17},
655 {0x8000C, 0x00000000},
656 {0x80010, 0x0a000a00},
657 {0x80014, 0x02800000},
658 {0x80018, 0x01e00000},
659 {0x8001C, 0x00000000},
660 {0x80020, 0x01e00280},
661 {0x80024, 0x02fa027f},
662 {0x80028, 0x004a028b},
663 {0x8002C, 0x020c01df},
664 {0x80030, 0x000201e9},
665 {0x80200, 0x00010000},
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200666#endif /* #ifdef CONFIG_FO300 */
wdenk8f0b7cb2005-03-27 23:41:39 +0000667#endif
668 {0, 0}
669};
670#endif /* CONFIG_VIDEO_SM501_32BPP */
671
672#ifdef CONFIG_CONSOLE_EXTRA_INFO
673/*
674 * Return text to be printed besides the logo.
675 */
676void video_get_info_str (int line_number, char *info)
677{
678 if (line_number == 1) {
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200679 strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200680#if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
wdenk8f0b7cb2005-03-27 23:41:39 +0000681 } else if (line_number == 2) {
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200682#if defined (CONFIG_STK52XX)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200683 strcpy (info, " on a STK52xx carrier board");
wdenk8f0b7cb2005-03-27 23:41:39 +0000684#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200685#if defined (CONFIG_TB5200)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200686 strcpy (info, " on a TB5200 carrier board");
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200687#endif
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200688#if defined (CONFIG_FO300)
689 strcpy (info, " on a FO300 carrier board");
690#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200691#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000692 }
693 else {
694 info [0] = '\0';
695 }
696}
697#endif
698
699/*
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200700 * Returns SM501 register base address. First thing called in the
701 * driver. Checks if SM501 is physically present.
wdenk8f0b7cb2005-03-27 23:41:39 +0000702 */
703unsigned int board_video_init (void)
704{
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200705 u16 save, tmp;
706 int restore, ret;
707
708 /*
709 * Check for Grafic Controller
710 */
711
712 /* save origianl FB content */
713 save = *(volatile u16 *)CFG_CS1_START;
714 restore = 1;
715
716 /* write test pattern to FB memory */
717 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
718 __asm__ volatile ("sync");
719 /*
720 * Put a different pattern on the data lines: otherwise they may float
721 * long enough to read back what we wrote.
722 */
723 tmp = *(volatile u16 *)CFG_FLASH_BASE;
724 if (tmp == 0xA5A5)
725 puts ("!! possible error in grafic controller detection\n");
726
727 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
728 /* no grafic controller found */
729 restore = 0;
730 ret = 0;
731 } else {
732 ret = SM501_MMIO_BASE;
733 }
734
735 if (restore) {
736 *(volatile u16 *)CFG_CS1_START = save;
737 __asm__ volatile ("sync");
738 }
739 return ret;
wdenk8f0b7cb2005-03-27 23:41:39 +0000740}
741
742/*
743 * Returns SM501 framebuffer address
744 */
745unsigned int board_video_get_fb (void)
746{
747 return SM501_FB_BASE;
748}
749
750/*
751 * Called after initializing the SM501 and before clearing the screen.
752 */
753void board_validate_screen (unsigned int base)
754{
755}
756
757/*
758 * Return a pointer to the initialization sequence.
759 */
760const SMI_REGS *board_get_regs (void)
761{
762 return init_regs;
763}
764
765int board_get_width (void)
766{
767 return DISPLAY_WIDTH;
768}
769
770int board_get_height (void)
771{
772 return DISPLAY_HEIGHT;
773}
774
775#endif /* CONFIG_VIDEO_SM501 */