blob: 51f4aebc06e0b46a990ab14003d4a75554f766fe [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
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +020035#if defined(CONFIG_OF_FLAT_TREE)
36#include <ft_build.h>
37#endif
38
wdenk8f0b7cb2005-03-27 23:41:39 +000039#ifdef CONFIG_VIDEO_SM501
40#include <sm501.h>
41#endif
42
wdenk56523f12004-07-11 17:40:54 +000043#if defined(CONFIG_MPC5200_DDR)
44#include "mt46v16m16-75.h"
45#else
46#include "mt48lc16m16a2-75.h"
47#endif
wdenk8f0b7cb2005-03-27 23:41:39 +000048
wdenk7e6bf352004-12-12 22:06:17 +000049#ifdef CONFIG_PS2MULT
50void ps2mult_early_init(void);
51#endif
wdenk56523f12004-07-11 17:40:54 +000052
53#ifndef CFG_RAMBOOT
54static void sdram_start (int hi_addr)
55{
56 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
57
58 /* unlock mode register */
59 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
60 hi_addr_bit;
61 __asm__ volatile ("sync");
62
63 /* precharge all banks */
64 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
65 hi_addr_bit;
66 __asm__ volatile ("sync");
67
68#if SDRAM_DDR
69 /* set mode register: extended mode */
70 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
71 __asm__ volatile ("sync");
72
73 /* set mode register: reset DLL */
74 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
75 __asm__ volatile ("sync");
76#endif
77
78 /* precharge all banks */
79 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
80 hi_addr_bit;
81 __asm__ volatile ("sync");
82
83 /* auto refresh */
84 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
85 hi_addr_bit;
86 __asm__ volatile ("sync");
87
88 /* set mode register */
89 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
90 __asm__ volatile ("sync");
91
92 /* normal operation */
93 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
94 __asm__ volatile ("sync");
95}
96#endif
97
98/*
99 * ATTENTION: Although partially referenced initdram does NOT make real use
wdenk81050922004-07-11 20:04:51 +0000100 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
101 * is something else than 0x00000000.
wdenk56523f12004-07-11 17:40:54 +0000102 */
103
104#if defined(CONFIG_MPC5200)
105long int initdram (int board_type)
106{
107 ulong dramsize = 0;
108 ulong dramsize2 = 0;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200109 uint svr, pvr;
110
wdenk56523f12004-07-11 17:40:54 +0000111#ifndef CFG_RAMBOOT
112 ulong test1, test2;
113
114 /* setup SDRAM chip selects */
115 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
116 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
117 __asm__ volatile ("sync");
118
119 /* setup config registers */
120 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
121 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
122 __asm__ volatile ("sync");
123
124#if SDRAM_DDR
125 /* set tap delay */
126 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
127 __asm__ volatile ("sync");
128#endif
129
130 /* find RAM size using SDRAM CS0 only */
131 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200132 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000133 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200134 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000135 if (test1 > test2) {
136 sdram_start(0);
137 dramsize = test1;
138 } else {
139 dramsize = test2;
140 }
141
142 /* memory smaller than 1MB is impossible */
143 if (dramsize < (1 << 20)) {
144 dramsize = 0;
145 }
146
147 /* set SDRAM CS0 size according to the amount of RAM found */
148 if (dramsize > 0) {
149 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
150 __builtin_ffs(dramsize >> 20) - 1;
151 } else {
152 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
153 }
154
155 /* let SDRAM CS1 start right after CS0 */
156 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001c; /* 512MB */
157
158 /* find RAM size using SDRAM CS1 only */
159 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200160 test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000161 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200162 test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000163 if (test1 > test2) {
164 sdram_start(0);
165 dramsize2 = test1;
166 } else {
167 dramsize2 = test2;
168 }
169
170 /* memory smaller than 1MB is impossible */
171 if (dramsize2 < (1 << 20)) {
172 dramsize2 = 0;
173 }
174
175 /* set SDRAM CS1 size according to the amount of RAM found */
176 if (dramsize2 > 0) {
177 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
178 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
179 } else {
180 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
181 }
182
183#else /* CFG_RAMBOOT */
184
185 /* retrieve size of memory connected to SDRAM CS0 */
186 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
187 if (dramsize >= 0x13) {
188 dramsize = (1 << (dramsize - 0x13)) << 20;
189 } else {
190 dramsize = 0;
191 }
192
193 /* retrieve size of memory connected to SDRAM CS1 */
194 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
195 if (dramsize2 >= 0x13) {
196 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
197 } else {
198 dramsize2 = 0;
199 }
wdenk56523f12004-07-11 17:40:54 +0000200#endif /* CFG_RAMBOOT */
201
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200202 /*
203 * On MPC5200B we need to set the special configuration delay in the
204 * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM
205 * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
206 *
207 * "The SDelay should be written to a value of 0x00000004. It is
208 * required to account for changes caused by normal wafer processing
209 * parameters."
210 */
211 svr = get_svr();
212 pvr = get_pvr();
213 if ((SVR_MJREV(svr) >= 2) &&
214 (PVR_MAJ(pvr) == 1) && (PVR_MIN(pvr) == 4)) {
215
216 *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
217 __asm__ volatile ("sync");
218 }
219
220#if defined(CONFIG_TQM5200_B)
221 return dramsize + dramsize2;
222#else
wdenk56523f12004-07-11 17:40:54 +0000223 return dramsize;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200224#endif /* CONFIG_TQM5200_B */
wdenk56523f12004-07-11 17:40:54 +0000225}
226
227#elif defined(CONFIG_MGT5100)
228
229long int initdram (int board_type)
230{
231 ulong dramsize = 0;
232#ifndef CFG_RAMBOOT
233 ulong test1, test2;
234
235 /* setup and enable SDRAM chip selects */
236 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
237 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
238 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
239 __asm__ volatile ("sync");
240
241 /* setup config registers */
242 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
243 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
244
245 /* address select register */
246 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = SDRAM_ADDRSEL;
247 __asm__ volatile ("sync");
248
249 /* find RAM size */
250 sdram_start(0);
251 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
252 sdram_start(1);
253 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
254 if (test1 > test2) {
255 sdram_start(0);
256 dramsize = test1;
257 } else {
258 dramsize = test2;
259 }
260
261 /* set SDRAM end address according to size */
262 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
263
264#else /* CFG_RAMBOOT */
265
266 /* Retrieve amount of SDRAM available */
267 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
268
269#endif /* CFG_RAMBOOT */
270
271 return dramsize;
272}
273
274#else
275#error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
276#endif
277
278int checkboard (void)
279{
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200280#if defined(CONFIG_AEVFIFO)
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200281 puts ("Board: AEVFIFO\n");
282 return 0;
283#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200284
285#if defined(CONFIG_TQM5200S)
286# define MODULE_NAME "TQM5200S"
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200287#else
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200288# define MODULE_NAME "TQM5200"
wdenk56523f12004-07-11 17:40:54 +0000289#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200290
291#if defined(CONFIG_STK52XX)
292# define CARRIER_NAME "STK52xx"
293#elif defined(CONFIG_TB5200)
294# define CARRIER_NAME "TB5200"
Wolfgang Denk135ae002006-07-22 01:20:03 +0200295#elif defined(CONFIG_CAM5200)
Wolfgang Denk78d620e2006-11-23 22:58:58 +0100296# define CARRIER_NAME "CAM5200"
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200297#elif defined(CONFIG_FO300)
298# define CARRIER_NAME "FO300"
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200299#else
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200300# error "UNKNOWN"
wdenk7e6bf352004-12-12 22:06:17 +0000301#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200302
303 puts ( "Board: " MODULE_NAME " (TQ-Components GmbH)\n"
304 " on a " CARRIER_NAME " carrier board\n");
wdenk7e6bf352004-12-12 22:06:17 +0000305
wdenk56523f12004-07-11 17:40:54 +0000306 return 0;
307}
308
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200309#undef MODULE_NAME
310#undef CARRIER_NAME
311
wdenk56523f12004-07-11 17:40:54 +0000312void flash_preinit(void)
313{
314 /*
315 * Now, when we are in RAM, enable flash write
316 * access for detection process.
317 * Note that CS_BOOT cannot be cleared when
318 * executing in flash.
319 */
320#if defined(CONFIG_MGT5100)
321 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
322 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
323#endif
324 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
325}
326
327
328#ifdef CONFIG_PCI
329static struct pci_controller hose;
330
331extern void pci_mpc5xxx_init(struct pci_controller *);
332
333void pci_init_board(void)
334{
335 pci_mpc5xxx_init(&hose);
336}
337#endif
338
Jon Loeligerd39b5742007-07-10 10:48:22 -0500339#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
wdenk56523f12004-07-11 17:40:54 +0000340
341#if defined (CONFIG_MINIFAP)
342#define SM501_POWER_MODE0_GATE 0x00000040UL
343#define SM501_POWER_MODE1_GATE 0x00000048UL
344#define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
345#define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
346#define SM501_GPIO_DATA_HIGH 0x00010004UL
347#define SM501_GPIO_51 0x00080000UL
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100348#endif /* CONFIG MINIFAP */
wdenk56523f12004-07-11 17:40:54 +0000349
350void init_ide_reset (void)
351{
352 debug ("init_ide_reset\n");
353
354#if defined (CONFIG_MINIFAP)
355 /* Configure GPIO_51 of the SM501 grafic controller as ATA reset */
356
357 /* enable GPIO control (in both power modes) */
358 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
359 POWER_MODE_GATE_GPIO_PWM_I2C;
360 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
361 POWER_MODE_GATE_GPIO_PWM_I2C;
362 /* configure GPIO51 as output */
363 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |=
364 SM501_GPIO_51;
365#else
366 /* Configure PSC1_4 as GPIO output for ATA reset */
367 *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
368 *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4;
369#endif
370}
371
372void ide_set_reset (int idereset)
373{
374 debug ("ide_reset(%d)\n", idereset);
375
376#if defined (CONFIG_MINIFAP)
377 if (idereset) {
378 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
379 ~SM501_GPIO_51;
380 } else {
381 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
382 SM501_GPIO_51;
383 }
384#else
385 if (idereset) {
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100386 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4;
wdenk56523f12004-07-11 17:40:54 +0000387 } else {
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100388 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
wdenk56523f12004-07-11 17:40:54 +0000389 }
390#endif
391}
Jon Loeligerd39b5742007-07-10 10:48:22 -0500392#endif
wdenk56523f12004-07-11 17:40:54 +0000393
394#ifdef CONFIG_POST
395/*
396 * Reads GPIO pin PSC6_3. A keypress is reported, if PSC6_3 is low. If PSC6_3
397 * is left open, no keypress is detected.
398 */
399int post_hotkeys_pressed(void)
400{
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200401#ifdef CONFIG_STK52XX
wdenk56523f12004-07-11 17:40:54 +0000402 struct mpc5xxx_gpio *gpio;
403
404 gpio = (struct mpc5xxx_gpio*) MPC5XXX_GPIO;
405
406 /*
407 * Configure PSC6_1 and PSC6_3 as GPIO. PSC6 then couldn't be used in
408 * CODEC or UART mode. Consumer IrDA should still be possible.
wdenk81050922004-07-11 20:04:51 +0000409 */
wdenk56523f12004-07-11 17:40:54 +0000410 gpio->port_config &= ~(0x07000000);
411 gpio->port_config |= 0x03000000;
412
413 /* Enable GPIO for GPIO_IRDA_1 (IR_USB_CLK pin) = PSC6_3 */
414 gpio->simple_gpioe |= 0x20000000;
415
416 /* Configure GPIO_IRDA_1 as input */
417 gpio->simple_ddr &= ~(0x20000000);
418
419 return ((gpio->simple_ival & 0x20000000) ? 0 : 1);
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200420#else
421 return 0;
422#endif
wdenk56523f12004-07-11 17:40:54 +0000423}
424#endif
425
426#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
427
428void post_word_store (ulong a)
429{
430 volatile ulong *save_addr =
431 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
432
433 *save_addr = a;
434}
435
436ulong post_word_load (void)
437{
438 volatile ulong *save_addr =
439 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
440
441 return *save_addr;
442}
wdenk56523f12004-07-11 17:40:54 +0000443#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/
wdenk7e6bf352004-12-12 22:06:17 +0000444
445#ifdef CONFIG_PS2MULT
446#ifdef CONFIG_BOARD_EARLY_INIT_R
447int board_early_init_r (void)
448{
449 ps2mult_early_init();
450 return (0);
451}
452#endif
453#endif /* CONFIG_PS2MULT */
454
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200455#ifdef CONFIG_FO300
456int silent_boot (void)
457{
458 vu_long timer3_status;
459
460 /* Configure GPT3 as GPIO input */
461 *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
462
463 /* Read in TIMER_3 pin status */
464 timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
465
466#ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
467 /* Force silent console mode if S1 switch
468 * is in closed position (TIMER_3 pin status is LOW). */
469 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
470 return 1;
471#else
472 /* Force silent console mode if S1 switch
473 * is in open position (TIMER_3 pin status is HIGH). */
474 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
475 return 1;
476#endif
477
478 return 0;
479}
480
481int board_early_init_f (void)
482{
483 DECLARE_GLOBAL_DATA_PTR;
484
485 if (silent_boot())
486 gd->flags |= GD_FLG_SILENT;
487
488 return 0;
489}
490#endif /* CONFIG_FO300 */
491
wdenk7e6bf352004-12-12 22:06:17 +0000492int last_stage_init (void)
493{
494 /*
495 * auto scan for really existing devices and re-set chip select
496 * configuration.
497 */
498 u16 save, tmp;
499 int restore;
500
501 /*
502 * Check for SRAM and SRAM size
503 */
504
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200505 /* save original SRAM content */
wdenk7e6bf352004-12-12 22:06:17 +0000506 save = *(volatile u16 *)CFG_CS2_START;
507 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000508
wdenk7e6bf352004-12-12 22:06:17 +0000509 /* write test pattern to SRAM */
510 *(volatile u16 *)CFG_CS2_START = 0xA5A5;
511 __asm__ volatile ("sync");
512 /*
513 * Put a different pattern on the data lines: otherwise they may float
514 * long enough to read back what we wrote.
515 */
516 tmp = *(volatile u16 *)CFG_FLASH_BASE;
517 if (tmp == 0xA5A5)
518 puts ("!! possible error in SRAM detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000519
wdenk7e6bf352004-12-12 22:06:17 +0000520 if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
521 /* no SRAM at all, disable cs */
522 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
523 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
524 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
525 restore = 0;
526 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200527 } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
wdenk7e6bf352004-12-12 22:06:17 +0000528 /* make sure that we access a mirrored address */
529 *(volatile u16 *)CFG_CS2_START = 0x1111;
530 __asm__ volatile ("sync");
531 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
532 /* SRAM size = 512 kByte */
wdenkefe2a4d2004-12-16 21:44:03 +0000533 *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
wdenk7e6bf352004-12-12 22:06:17 +0000534 0x80000);
535 __asm__ volatile ("sync");
536 puts ("SRAM: 512 kB\n");
537 }
538 else
wdenkefe2a4d2004-12-16 21:44:03 +0000539 puts ("!! possible error in SRAM detection\n");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200540 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000541 puts ("SRAM: 1 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000542 }
543 /* restore origianl SRAM content */
544 if (restore) {
545 *(volatile u16 *)CFG_CS2_START = save;
546 __asm__ volatile ("sync");
547 }
wdenkefe2a4d2004-12-16 21:44:03 +0000548
549 /*
wdenk7e6bf352004-12-12 22:06:17 +0000550 * Check for Grafic Controller
551 */
552
553 /* save origianl FB content */
554 save = *(volatile u16 *)CFG_CS1_START;
555 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000556
wdenk7e6bf352004-12-12 22:06:17 +0000557 /* write test pattern to FB memory */
558 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
559 __asm__ volatile ("sync");
560 /*
561 * Put a different pattern on the data lines: otherwise they may float
562 * long enough to read back what we wrote.
563 */
564 tmp = *(volatile u16 *)CFG_FLASH_BASE;
565 if (tmp == 0xA5A5)
566 puts ("!! possible error in grafic controller detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000567
wdenk7e6bf352004-12-12 22:06:17 +0000568 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
569 /* no grafic controller at all, disable cs */
570 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
571 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
572 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
573 restore = 0;
574 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200575 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000576 puts ("VGA: SMI501 (Voyager) with 8 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000577 }
578 /* restore origianl FB content */
579 if (restore) {
580 *(volatile u16 *)CFG_CS1_START = save;
581 __asm__ volatile ("sync");
582 }
wdenkefe2a4d2004-12-16 21:44:03 +0000583
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200584#ifdef CONFIG_FO300
585 if (silent_boot()) {
586 setenv("bootdelay", "0");
587 disable_ctrlc(1);
588 }
589#endif
590
wdenk7e6bf352004-12-12 22:06:17 +0000591 return 0;
592}
wdenk8f0b7cb2005-03-27 23:41:39 +0000593
594#ifdef CONFIG_VIDEO_SM501
595
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200596#ifdef CONFIG_FO300
597#define DISPLAY_WIDTH 800
598#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000599#define DISPLAY_WIDTH 640
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200600#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000601#define DISPLAY_HEIGHT 480
602
603#ifdef CONFIG_VIDEO_SM501_8BPP
604#error CONFIG_VIDEO_SM501_8BPP not supported.
605#endif /* CONFIG_VIDEO_SM501_8BPP */
606
607#ifdef CONFIG_VIDEO_SM501_16BPP
608#error CONFIG_VIDEO_SM501_16BPP not supported.
609#endif /* CONFIG_VIDEO_SM501_16BPP */
610#ifdef CONFIG_VIDEO_SM501_32BPP
611static const SMI_REGS init_regs [] =
612{
613#if 0 /* CRT only */
614 {0x00004, 0x0},
615 {0x00048, 0x00021807},
616 {0x0004C, 0x10090a01},
617 {0x00054, 0x1},
618 {0x00040, 0x00021807},
619 {0x00044, 0x10090a01},
620 {0x00054, 0x0},
621 {0x80200, 0x00010000},
622 {0x80204, 0x0},
623 {0x80208, 0x0A000A00},
624 {0x8020C, 0x02fa027f},
625 {0x80210, 0x004a028b},
626 {0x80214, 0x020c01df},
627 {0x80218, 0x000201e9},
628 {0x80200, 0x00013306},
629#else /* panel + CRT */
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200630#ifdef CONFIG_FO300
631 {0x00004, 0x0},
632 {0x00048, 0x00021807},
633 {0x0004C, 0x301a0a01},
634 {0x00054, 0x1},
635 {0x00040, 0x00021807},
636 {0x00044, 0x091a0a01},
637 {0x00054, 0x0},
638 {0x80000, 0x0f013106},
639 {0x80004, 0xc428bb17},
640 {0x8000C, 0x00000000},
641 {0x80010, 0x0C800C80},
642 {0x80014, 0x03200000},
643 {0x80018, 0x01e00000},
644 {0x8001C, 0x00000000},
645 {0x80020, 0x01e00320},
646 {0x80024, 0x042a031f},
647 {0x80028, 0x0086034a},
648 {0x8002C, 0x020c01df},
649 {0x80030, 0x000201ea},
650 {0x80200, 0x00010000},
651#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000652 {0x00004, 0x0},
653 {0x00048, 0x00021807},
654 {0x0004C, 0x091a0a01},
655 {0x00054, 0x1},
656 {0x00040, 0x00021807},
657 {0x00044, 0x091a0a01},
658 {0x00054, 0x0},
659 {0x80000, 0x0f013106},
660 {0x80004, 0xc428bb17},
661 {0x8000C, 0x00000000},
662 {0x80010, 0x0a000a00},
663 {0x80014, 0x02800000},
664 {0x80018, 0x01e00000},
665 {0x8001C, 0x00000000},
666 {0x80020, 0x01e00280},
667 {0x80024, 0x02fa027f},
668 {0x80028, 0x004a028b},
669 {0x8002C, 0x020c01df},
670 {0x80030, 0x000201e9},
671 {0x80200, 0x00010000},
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200672#endif /* #ifdef CONFIG_FO300 */
wdenk8f0b7cb2005-03-27 23:41:39 +0000673#endif
674 {0, 0}
675};
676#endif /* CONFIG_VIDEO_SM501_32BPP */
677
678#ifdef CONFIG_CONSOLE_EXTRA_INFO
679/*
680 * Return text to be printed besides the logo.
681 */
682void video_get_info_str (int line_number, char *info)
683{
684 if (line_number == 1) {
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200685 strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200686#if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
wdenk8f0b7cb2005-03-27 23:41:39 +0000687 } else if (line_number == 2) {
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200688#if defined (CONFIG_STK52XX)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200689 strcpy (info, " on a STK52xx carrier board");
wdenk8f0b7cb2005-03-27 23:41:39 +0000690#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200691#if defined (CONFIG_TB5200)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200692 strcpy (info, " on a TB5200 carrier board");
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200693#endif
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200694#if defined (CONFIG_FO300)
695 strcpy (info, " on a FO300 carrier board");
696#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200697#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000698 }
699 else {
700 info [0] = '\0';
701 }
702}
703#endif
704
705/*
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200706 * Returns SM501 register base address. First thing called in the
707 * driver. Checks if SM501 is physically present.
wdenk8f0b7cb2005-03-27 23:41:39 +0000708 */
709unsigned int board_video_init (void)
710{
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200711 u16 save, tmp;
712 int restore, ret;
713
714 /*
715 * Check for Grafic Controller
716 */
717
718 /* save origianl FB content */
719 save = *(volatile u16 *)CFG_CS1_START;
720 restore = 1;
721
722 /* write test pattern to FB memory */
723 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
724 __asm__ volatile ("sync");
725 /*
726 * Put a different pattern on the data lines: otherwise they may float
727 * long enough to read back what we wrote.
728 */
729 tmp = *(volatile u16 *)CFG_FLASH_BASE;
730 if (tmp == 0xA5A5)
731 puts ("!! possible error in grafic controller detection\n");
732
733 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
734 /* no grafic controller found */
735 restore = 0;
736 ret = 0;
737 } else {
738 ret = SM501_MMIO_BASE;
739 }
740
741 if (restore) {
742 *(volatile u16 *)CFG_CS1_START = save;
743 __asm__ volatile ("sync");
744 }
745 return ret;
wdenk8f0b7cb2005-03-27 23:41:39 +0000746}
747
748/*
749 * Returns SM501 framebuffer address
750 */
751unsigned int board_video_get_fb (void)
752{
753 return SM501_FB_BASE;
754}
755
756/*
757 * Called after initializing the SM501 and before clearing the screen.
758 */
759void board_validate_screen (unsigned int base)
760{
761}
762
763/*
764 * Return a pointer to the initialization sequence.
765 */
766const SMI_REGS *board_get_regs (void)
767{
768 return init_regs;
769}
770
771int board_get_width (void)
772{
773 return DISPLAY_WIDTH;
774}
775
776int board_get_height (void)
777{
778 return DISPLAY_HEIGHT;
779}
780
781#endif /* CONFIG_VIDEO_SM501 */
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +0200782
783#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
784void ft_board_setup(void *blob, bd_t *bd)
785{
786 ft_cpu_setup(blob, bd);
787}
788#endif /* defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP) */