]> git.sur5r.net Git - u-boot/blob - board/tqm5200/tqm5200.c
c8350ab3b5dab9b60566f9d27b2dd9d71587514a
[u-boot] / board / tqm5200 / tqm5200.c
1 /*
2  * (C) Copyright 2003-2006
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2004
6  * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7  *
8  * (C) Copyright 2004-2006
9  * 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
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * 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 #include <asm/processor.h>
34
35 #ifdef CONFIG_VIDEO_SM501
36 #include <sm501.h>
37 #endif
38
39 #if defined(CONFIG_MPC5200_DDR)
40 #include "mt46v16m16-75.h"
41 #else
42 #include "mt48lc16m16a2-75.h"
43 #endif
44
45 #ifdef CONFIG_PS2MULT
46 void ps2mult_early_init(void);
47 #endif
48
49 #ifndef CFG_RAMBOOT
50 static 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
96  *            use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
97  *            is something else than 0x00000000.
98  */
99
100 #if defined(CONFIG_MPC5200)
101 long int initdram (int board_type)
102 {
103         ulong dramsize = 0;
104         ulong dramsize2 = 0;
105         uint svr, pvr;
106
107 #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);
128         test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
129         sdram_start(1);
130         test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
131         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);
156         test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
157         sdram_start(1);
158         test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
159         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         }
196 #endif /* CFG_RAMBOOT */
197
198         /*
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
219         return dramsize;
220 #endif /* CONFIG_TQM5200_B */
221 }
222
223 #elif defined(CONFIG_MGT5100)
224
225 long 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
274 int checkboard (void)
275 {
276 #if defined(CONFIG_AEVFIFO)
277         puts ("Board: AEVFIFO\n");
278         return 0;
279 #endif
280
281 #if defined(CONFIG_TQM5200S)
282 # define MODULE_NAME    "TQM5200S"
283 #else
284 # define MODULE_NAME    "TQM5200"
285 #endif
286
287 #if defined(CONFIG_STK52XX)
288 # define CARRIER_NAME   "STK52xx"
289 #elif defined(CONFIG_TB5200)
290 # define CARRIER_NAME   "TB5200"
291 #elif defined(CONFIG_CAM5200)
292 # define CARRIER_NAME   "Cam5200"
293 #elif defined(CONFIG_FO300)
294 # define CARRIER_NAME   "FO300"
295 #else
296 # error "UNKNOWN"
297 #endif
298
299         puts (  "Board: " MODULE_NAME " (TQ-Components GmbH)\n"
300                 "       on a " CARRIER_NAME " carrier board\n");
301
302         return 0;
303 }
304
305 #undef MODULE_NAME
306 #undef CARRIER_NAME
307
308 void 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
325 static struct pci_controller hose;
326
327 extern void pci_mpc5xxx_init(struct pci_controller *);
328
329 void 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
348 void 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
370 void 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  */
397 int 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.
406          */
407         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
422 void 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
430 ulong 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 }
437 #endif  /* CONFIG_POST || CONFIG_LOGBUFFER*/
438
439 #ifdef CONFIG_PS2MULT
440 #ifdef CONFIG_BOARD_EARLY_INIT_R
441 int board_early_init_r (void)
442 {
443         ps2mult_early_init();
444         return (0);
445 }
446 #endif
447 #endif /* CONFIG_PS2MULT */
448
449 int last_stage_init (void)
450 {
451         /*
452          * auto scan for really existing devices and re-set chip select
453          * configuration.
454          */
455         u16 save, tmp;
456         int restore;
457
458         /*
459          * Check for SRAM and SRAM size
460          */
461
462         /* save original SRAM content  */
463         save = *(volatile u16 *)CFG_CS2_START;
464         restore = 1;
465
466         /* write test pattern to SRAM */
467         *(volatile u16 *)CFG_CS2_START = 0xA5A5;
468         __asm__ volatile ("sync");
469         /*
470          * Put a different pattern on the data lines: otherwise they may float
471          * long enough to read back what we wrote.
472          */
473         tmp = *(volatile u16 *)CFG_FLASH_BASE;
474         if (tmp == 0xA5A5)
475                 puts ("!! possible error in SRAM detection\n");
476
477         if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
478                 /* no SRAM at all, disable cs */
479                 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
480                 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
481                 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
482                 restore = 0;
483                 __asm__ volatile ("sync");
484         } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
485                 /* make sure that we access a mirrored address */
486                 *(volatile u16 *)CFG_CS2_START = 0x1111;
487                 __asm__ volatile ("sync");
488                 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
489                         /* SRAM size = 512 kByte */
490                         *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
491                                                                 0x80000);
492                         __asm__ volatile ("sync");
493                         puts ("SRAM:  512 kB\n");
494                 }
495                 else
496                         puts ("!! possible error in SRAM detection\n");
497         } else {
498                 puts ("SRAM:  1 MB\n");
499         }
500         /* restore origianl SRAM content  */
501         if (restore) {
502                 *(volatile u16 *)CFG_CS2_START = save;
503                 __asm__ volatile ("sync");
504         }
505
506         /*
507          * Check for Grafic Controller
508          */
509
510         /* save origianl FB content  */
511         save = *(volatile u16 *)CFG_CS1_START;
512         restore = 1;
513
514         /* write test pattern to FB memory */
515         *(volatile u16 *)CFG_CS1_START = 0xA5A5;
516         __asm__ volatile ("sync");
517         /*
518          * Put a different pattern on the data lines: otherwise they may float
519          * long enough to read back what we wrote.
520          */
521         tmp = *(volatile u16 *)CFG_FLASH_BASE;
522         if (tmp == 0xA5A5)
523                 puts ("!! possible error in grafic controller detection\n");
524
525         if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
526                 /* no grafic controller at all, disable cs */
527                 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
528                 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
529                 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
530                 restore = 0;
531                 __asm__ volatile ("sync");
532         } else {
533                 puts ("VGA:   SMI501 (Voyager) with 8 MB\n");
534         }
535         /* restore origianl FB content  */
536         if (restore) {
537                 *(volatile u16 *)CFG_CS1_START = save;
538                 __asm__ volatile ("sync");
539         }
540
541         return 0;
542 }
543
544 #ifdef CONFIG_VIDEO_SM501
545
546 #ifdef CONFIG_FO300
547 #define DISPLAY_WIDTH   800
548 #else
549 #define DISPLAY_WIDTH   640
550 #endif
551 #define DISPLAY_HEIGHT  480
552
553 #ifdef CONFIG_VIDEO_SM501_8BPP
554 #error CONFIG_VIDEO_SM501_8BPP not supported.
555 #endif /* CONFIG_VIDEO_SM501_8BPP */
556
557 #ifdef CONFIG_VIDEO_SM501_16BPP
558 #error CONFIG_VIDEO_SM501_16BPP not supported.
559 #endif /* CONFIG_VIDEO_SM501_16BPP */
560 #ifdef CONFIG_VIDEO_SM501_32BPP
561 static const SMI_REGS init_regs [] =
562 {
563 #if 0 /* CRT only */
564         {0x00004, 0x0},
565         {0x00048, 0x00021807},
566         {0x0004C, 0x10090a01},
567         {0x00054, 0x1},
568         {0x00040, 0x00021807},
569         {0x00044, 0x10090a01},
570         {0x00054, 0x0},
571         {0x80200, 0x00010000},
572         {0x80204, 0x0},
573         {0x80208, 0x0A000A00},
574         {0x8020C, 0x02fa027f},
575         {0x80210, 0x004a028b},
576         {0x80214, 0x020c01df},
577         {0x80218, 0x000201e9},
578         {0x80200, 0x00013306},
579 #else  /* panel + CRT */
580 #ifdef CONFIG_FO300
581         {0x00004, 0x0},
582         {0x00048, 0x00021807},
583         {0x0004C, 0x301a0a01},
584         {0x00054, 0x1},
585         {0x00040, 0x00021807},
586         {0x00044, 0x091a0a01},
587         {0x00054, 0x0},
588         {0x80000, 0x0f013106},
589         {0x80004, 0xc428bb17},
590         {0x8000C, 0x00000000},
591         {0x80010, 0x0C800C80},
592         {0x80014, 0x03200000},
593         {0x80018, 0x01e00000},
594         {0x8001C, 0x00000000},
595         {0x80020, 0x01e00320},
596         {0x80024, 0x042a031f},
597         {0x80028, 0x0086034a},
598         {0x8002C, 0x020c01df},
599         {0x80030, 0x000201ea},
600         {0x80200, 0x00010000},
601 #else
602         {0x00004, 0x0},
603         {0x00048, 0x00021807},
604         {0x0004C, 0x091a0a01},
605         {0x00054, 0x1},
606         {0x00040, 0x00021807},
607         {0x00044, 0x091a0a01},
608         {0x00054, 0x0},
609         {0x80000, 0x0f013106},
610         {0x80004, 0xc428bb17},
611         {0x8000C, 0x00000000},
612         {0x80010, 0x0a000a00},
613         {0x80014, 0x02800000},
614         {0x80018, 0x01e00000},
615         {0x8001C, 0x00000000},
616         {0x80020, 0x01e00280},
617         {0x80024, 0x02fa027f},
618         {0x80028, 0x004a028b},
619         {0x8002C, 0x020c01df},
620         {0x80030, 0x000201e9},
621         {0x80200, 0x00010000},
622 #endif /* #ifdef CONFIG_FO300 */
623 #endif
624         {0, 0}
625 };
626 #endif /* CONFIG_VIDEO_SM501_32BPP */
627
628 #ifdef CONFIG_CONSOLE_EXTRA_INFO
629 /*
630  * Return text to be printed besides the logo.
631  */
632 void video_get_info_str (int line_number, char *info)
633 {
634         if (line_number == 1) {
635         strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
636 #if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
637         } else if (line_number == 2) {
638 #if defined (CONFIG_STK52XX)
639                 strcpy (info, "        on a STK52xx carrier board");
640 #endif
641 #if defined (CONFIG_TB5200)
642                 strcpy (info, "        on a TB5200 carrier board");
643 #endif
644 #if defined (CONFIG_FO300)
645                 strcpy (info, "        on a FO300 carrier board");
646 #endif
647 #endif
648         }
649         else {
650                 info [0] = '\0';
651         }
652 }
653 #endif
654
655 /*
656  * Returns SM501 register base address. First thing called in the
657  * driver. Checks if SM501 is physically present.
658  */
659 unsigned int board_video_init (void)
660 {
661         u16 save, tmp;
662         int restore, ret;
663
664         /*
665          * Check for Grafic Controller
666          */
667
668         /* save origianl FB content  */
669         save = *(volatile u16 *)CFG_CS1_START;
670         restore = 1;
671
672         /* write test pattern to FB memory */
673         *(volatile u16 *)CFG_CS1_START = 0xA5A5;
674         __asm__ volatile ("sync");
675         /*
676          * Put a different pattern on the data lines: otherwise they may float
677          * long enough to read back what we wrote.
678          */
679         tmp = *(volatile u16 *)CFG_FLASH_BASE;
680         if (tmp == 0xA5A5)
681                 puts ("!! possible error in grafic controller detection\n");
682
683         if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
684                 /* no grafic controller found */
685                 restore = 0;
686                 ret = 0;
687         } else {
688                 ret = SM501_MMIO_BASE;
689         }
690
691         if (restore) {
692                 *(volatile u16 *)CFG_CS1_START = save;
693                 __asm__ volatile ("sync");
694         }
695         return ret;
696 }
697
698 /*
699  * Returns SM501 framebuffer address
700  */
701 unsigned int board_video_get_fb (void)
702 {
703         return SM501_FB_BASE;
704 }
705
706 /*
707  * Called after initializing the SM501 and before clearing the screen.
708  */
709 void board_validate_screen (unsigned int base)
710 {
711 }
712
713 /*
714  * Return a pointer to the initialization sequence.
715  */
716 const SMI_REGS *board_get_regs (void)
717 {
718         return init_regs;
719 }
720
721 int board_get_width (void)
722 {
723         return DISPLAY_WIDTH;
724 }
725
726 int board_get_height (void)
727 {
728         return DISPLAY_HEIGHT;
729 }
730
731 #endif /* CONFIG_VIDEO_SM501 */
732
733
734 #ifdef CONFIG_BOARD_EARLY_INIT_F
735 #ifdef CONFIG_FO300
736 int board_early_init_f (void)
737 {
738         vu_long timer3_status;
739         DECLARE_GLOBAL_DATA_PTR;
740
741         /* Configure GPT3 as GPIO input */
742         *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
743
744         /* Read in TIMER_3 pin status */
745         timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
746         
747 #ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
748         /* Force silent console mode if S1 switch
749          * is in closed position (TIMER_3 pin status is LOW). */
750         if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
751 #else
752         /* Force silent console mode if S1 switch
753          * is in open position (TIMER_3 pin status is HIGH). */
754         if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
755 #endif
756                 gd->flags |= GD_FLG_SILENT;
757
758         return 0;
759 }
760 #endif
761 #endif