]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/tqm5200/tqm5200.c
Merge with http://opensource.freescale.com/pub/scm/u-boot-85xx.git#for_wd
[karo-tx-uboot.git] / 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 #ifdef CONFIG_STK52XX
400         struct mpc5xxx_gpio *gpio;
401
402         gpio = (struct mpc5xxx_gpio*) MPC5XXX_GPIO;
403
404         /*
405          * Configure PSC6_1 and PSC6_3 as GPIO. PSC6 then couldn't be used in
406          * CODEC or UART mode. Consumer IrDA should still be possible.
407          */
408         gpio->port_config &= ~(0x07000000);
409         gpio->port_config |=   0x03000000;
410
411         /* Enable GPIO for GPIO_IRDA_1 (IR_USB_CLK pin) = PSC6_3 */
412         gpio->simple_gpioe |= 0x20000000;
413
414         /* Configure GPIO_IRDA_1 as input */
415         gpio->simple_ddr &= ~(0x20000000);
416
417         return ((gpio->simple_ival & 0x20000000) ? 0 : 1);
418 #else
419         return 0;
420 #endif
421 }
422 #endif
423
424 #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
425
426 void post_word_store (ulong a)
427 {
428         volatile ulong *save_addr =
429                 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
430
431         *save_addr = a;
432 }
433
434 ulong post_word_load (void)
435 {
436         volatile ulong *save_addr =
437                 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
438
439         return *save_addr;
440 }
441 #endif  /* CONFIG_POST || CONFIG_LOGBUFFER*/
442
443 #ifdef CONFIG_PS2MULT
444 #ifdef CONFIG_BOARD_EARLY_INIT_R
445 int board_early_init_r (void)
446 {
447         ps2mult_early_init();
448         return (0);
449 }
450 #endif
451 #endif /* CONFIG_PS2MULT */
452
453 #ifdef CONFIG_FO300
454 int silent_boot (void)
455 {
456         vu_long timer3_status;
457
458         /* Configure GPT3 as GPIO input */
459         *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
460
461         /* Read in TIMER_3 pin status */
462         timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
463
464 #ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
465         /* Force silent console mode if S1 switch
466          * is in closed position (TIMER_3 pin status is LOW). */
467         if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
468                 return 1;
469 #else
470         /* Force silent console mode if S1 switch
471          * is in open position (TIMER_3 pin status is HIGH). */
472         if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
473                 return 1;
474 #endif
475
476         return 0;
477 }
478
479 int board_early_init_f (void)
480 {
481         DECLARE_GLOBAL_DATA_PTR;
482
483         if (silent_boot())
484                 gd->flags |= GD_FLG_SILENT;
485
486         return 0;
487 }
488 #endif  /* CONFIG_FO300 */
489
490 int last_stage_init (void)
491 {
492         /*
493          * auto scan for really existing devices and re-set chip select
494          * configuration.
495          */
496         u16 save, tmp;
497         int restore;
498
499         /*
500          * Check for SRAM and SRAM size
501          */
502
503         /* save original SRAM content  */
504         save = *(volatile u16 *)CFG_CS2_START;
505         restore = 1;
506
507         /* write test pattern to SRAM */
508         *(volatile u16 *)CFG_CS2_START = 0xA5A5;
509         __asm__ volatile ("sync");
510         /*
511          * Put a different pattern on the data lines: otherwise they may float
512          * long enough to read back what we wrote.
513          */
514         tmp = *(volatile u16 *)CFG_FLASH_BASE;
515         if (tmp == 0xA5A5)
516                 puts ("!! possible error in SRAM detection\n");
517
518         if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
519                 /* no SRAM at all, disable cs */
520                 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
521                 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
522                 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
523                 restore = 0;
524                 __asm__ volatile ("sync");
525         } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
526                 /* make sure that we access a mirrored address */
527                 *(volatile u16 *)CFG_CS2_START = 0x1111;
528                 __asm__ volatile ("sync");
529                 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
530                         /* SRAM size = 512 kByte */
531                         *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
532                                                                 0x80000);
533                         __asm__ volatile ("sync");
534                         puts ("SRAM:  512 kB\n");
535                 }
536                 else
537                         puts ("!! possible error in SRAM detection\n");
538         } else {
539                 puts ("SRAM:  1 MB\n");
540         }
541         /* restore origianl SRAM content  */
542         if (restore) {
543                 *(volatile u16 *)CFG_CS2_START = save;
544                 __asm__ volatile ("sync");
545         }
546
547         /*
548          * Check for Grafic Controller
549          */
550
551         /* save origianl FB content  */
552         save = *(volatile u16 *)CFG_CS1_START;
553         restore = 1;
554
555         /* write test pattern to FB memory */
556         *(volatile u16 *)CFG_CS1_START = 0xA5A5;
557         __asm__ volatile ("sync");
558         /*
559          * Put a different pattern on the data lines: otherwise they may float
560          * long enough to read back what we wrote.
561          */
562         tmp = *(volatile u16 *)CFG_FLASH_BASE;
563         if (tmp == 0xA5A5)
564                 puts ("!! possible error in grafic controller detection\n");
565
566         if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
567                 /* no grafic controller at all, disable cs */
568                 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
569                 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
570                 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
571                 restore = 0;
572                 __asm__ volatile ("sync");
573         } else {
574                 puts ("VGA:   SMI501 (Voyager) with 8 MB\n");
575         }
576         /* restore origianl FB content  */
577         if (restore) {
578                 *(volatile u16 *)CFG_CS1_START = save;
579                 __asm__ volatile ("sync");
580         }
581
582 #ifdef CONFIG_FO300
583         if (silent_boot()) {
584                 setenv("bootdelay", "0");
585                 disable_ctrlc(1);
586         }
587 #endif
588
589         return 0;
590 }
591
592 #ifdef CONFIG_VIDEO_SM501
593
594 #ifdef CONFIG_FO300
595 #define DISPLAY_WIDTH   800
596 #else
597 #define DISPLAY_WIDTH   640
598 #endif
599 #define DISPLAY_HEIGHT  480
600
601 #ifdef CONFIG_VIDEO_SM501_8BPP
602 #error CONFIG_VIDEO_SM501_8BPP not supported.
603 #endif /* CONFIG_VIDEO_SM501_8BPP */
604
605 #ifdef CONFIG_VIDEO_SM501_16BPP
606 #error CONFIG_VIDEO_SM501_16BPP not supported.
607 #endif /* CONFIG_VIDEO_SM501_16BPP */
608 #ifdef CONFIG_VIDEO_SM501_32BPP
609 static const SMI_REGS init_regs [] =
610 {
611 #if 0 /* CRT only */
612         {0x00004, 0x0},
613         {0x00048, 0x00021807},
614         {0x0004C, 0x10090a01},
615         {0x00054, 0x1},
616         {0x00040, 0x00021807},
617         {0x00044, 0x10090a01},
618         {0x00054, 0x0},
619         {0x80200, 0x00010000},
620         {0x80204, 0x0},
621         {0x80208, 0x0A000A00},
622         {0x8020C, 0x02fa027f},
623         {0x80210, 0x004a028b},
624         {0x80214, 0x020c01df},
625         {0x80218, 0x000201e9},
626         {0x80200, 0x00013306},
627 #else  /* panel + CRT */
628 #ifdef CONFIG_FO300
629         {0x00004, 0x0},
630         {0x00048, 0x00021807},
631         {0x0004C, 0x301a0a01},
632         {0x00054, 0x1},
633         {0x00040, 0x00021807},
634         {0x00044, 0x091a0a01},
635         {0x00054, 0x0},
636         {0x80000, 0x0f013106},
637         {0x80004, 0xc428bb17},
638         {0x8000C, 0x00000000},
639         {0x80010, 0x0C800C80},
640         {0x80014, 0x03200000},
641         {0x80018, 0x01e00000},
642         {0x8001C, 0x00000000},
643         {0x80020, 0x01e00320},
644         {0x80024, 0x042a031f},
645         {0x80028, 0x0086034a},
646         {0x8002C, 0x020c01df},
647         {0x80030, 0x000201ea},
648         {0x80200, 0x00010000},
649 #else
650         {0x00004, 0x0},
651         {0x00048, 0x00021807},
652         {0x0004C, 0x091a0a01},
653         {0x00054, 0x1},
654         {0x00040, 0x00021807},
655         {0x00044, 0x091a0a01},
656         {0x00054, 0x0},
657         {0x80000, 0x0f013106},
658         {0x80004, 0xc428bb17},
659         {0x8000C, 0x00000000},
660         {0x80010, 0x0a000a00},
661         {0x80014, 0x02800000},
662         {0x80018, 0x01e00000},
663         {0x8001C, 0x00000000},
664         {0x80020, 0x01e00280},
665         {0x80024, 0x02fa027f},
666         {0x80028, 0x004a028b},
667         {0x8002C, 0x020c01df},
668         {0x80030, 0x000201e9},
669         {0x80200, 0x00010000},
670 #endif /* #ifdef CONFIG_FO300 */
671 #endif
672         {0, 0}
673 };
674 #endif /* CONFIG_VIDEO_SM501_32BPP */
675
676 #ifdef CONFIG_CONSOLE_EXTRA_INFO
677 /*
678  * Return text to be printed besides the logo.
679  */
680 void video_get_info_str (int line_number, char *info)
681 {
682         if (line_number == 1) {
683         strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
684 #if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
685         } else if (line_number == 2) {
686 #if defined (CONFIG_STK52XX)
687                 strcpy (info, "        on a STK52xx carrier board");
688 #endif
689 #if defined (CONFIG_TB5200)
690                 strcpy (info, "        on a TB5200 carrier board");
691 #endif
692 #if defined (CONFIG_FO300)
693                 strcpy (info, "        on a FO300 carrier board");
694 #endif
695 #endif
696         }
697         else {
698                 info [0] = '\0';
699         }
700 }
701 #endif
702
703 /*
704  * Returns SM501 register base address. First thing called in the
705  * driver. Checks if SM501 is physically present.
706  */
707 unsigned int board_video_init (void)
708 {
709         u16 save, tmp;
710         int restore, ret;
711
712         /*
713          * Check for Grafic Controller
714          */
715
716         /* save origianl FB content  */
717         save = *(volatile u16 *)CFG_CS1_START;
718         restore = 1;
719
720         /* write test pattern to FB memory */
721         *(volatile u16 *)CFG_CS1_START = 0xA5A5;
722         __asm__ volatile ("sync");
723         /*
724          * Put a different pattern on the data lines: otherwise they may float
725          * long enough to read back what we wrote.
726          */
727         tmp = *(volatile u16 *)CFG_FLASH_BASE;
728         if (tmp == 0xA5A5)
729                 puts ("!! possible error in grafic controller detection\n");
730
731         if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
732                 /* no grafic controller found */
733                 restore = 0;
734                 ret = 0;
735         } else {
736                 ret = SM501_MMIO_BASE;
737         }
738
739         if (restore) {
740                 *(volatile u16 *)CFG_CS1_START = save;
741                 __asm__ volatile ("sync");
742         }
743         return ret;
744 }
745
746 /*
747  * Returns SM501 framebuffer address
748  */
749 unsigned int board_video_get_fb (void)
750 {
751         return SM501_FB_BASE;
752 }
753
754 /*
755  * Called after initializing the SM501 and before clearing the screen.
756  */
757 void board_validate_screen (unsigned int base)
758 {
759 }
760
761 /*
762  * Return a pointer to the initialization sequence.
763  */
764 const SMI_REGS *board_get_regs (void)
765 {
766         return init_regs;
767 }
768
769 int board_get_width (void)
770 {
771         return DISPLAY_WIDTH;
772 }
773
774 int board_get_height (void)
775 {
776         return DISPLAY_HEIGHT;
777 }
778
779 #endif /* CONFIG_VIDEO_SM501 */