blob: 21f67aa4e535a7329b3153227dda6705f240cead [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>
Grant Likelycf2817a2007-09-06 09:46:23 -060034#include <libfdt.h>
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +020035
wdenk8f0b7cb2005-03-27 23:41:39 +000036#ifdef CONFIG_VIDEO_SM501
37#include <sm501.h>
38#endif
39
wdenk56523f12004-07-11 17:40:54 +000040#if defined(CONFIG_MPC5200_DDR)
41#include "mt46v16m16-75.h"
42#else
43#include "mt48lc16m16a2-75.h"
44#endif
wdenk8f0b7cb2005-03-27 23:41:39 +000045
wdenk7e6bf352004-12-12 22:06:17 +000046#ifdef CONFIG_PS2MULT
47void ps2mult_early_init(void);
48#endif
wdenk56523f12004-07-11 17:40:54 +000049
50#ifndef CFG_RAMBOOT
51static void sdram_start (int hi_addr)
52{
53 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
54
55 /* unlock mode register */
56 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
57 hi_addr_bit;
58 __asm__ volatile ("sync");
59
60 /* precharge all banks */
61 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
62 hi_addr_bit;
63 __asm__ volatile ("sync");
64
65#if SDRAM_DDR
66 /* set mode register: extended mode */
67 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
68 __asm__ volatile ("sync");
69
70 /* set mode register: reset DLL */
71 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
72 __asm__ volatile ("sync");
73#endif
74
75 /* precharge all banks */
76 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
77 hi_addr_bit;
78 __asm__ volatile ("sync");
79
80 /* auto refresh */
81 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
82 hi_addr_bit;
83 __asm__ volatile ("sync");
84
85 /* set mode register */
86 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
87 __asm__ volatile ("sync");
88
89 /* normal operation */
90 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
91 __asm__ volatile ("sync");
92}
93#endif
94
95/*
96 * ATTENTION: Although partially referenced initdram does NOT make real use
wdenk81050922004-07-11 20:04:51 +000097 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
98 * is something else than 0x00000000.
wdenk56523f12004-07-11 17:40:54 +000099 */
100
101#if defined(CONFIG_MPC5200)
102long int initdram (int board_type)
103{
104 ulong dramsize = 0;
105 ulong dramsize2 = 0;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200106 uint svr, pvr;
107
wdenk56523f12004-07-11 17:40:54 +0000108#ifndef CFG_RAMBOOT
109 ulong test1, test2;
110
111 /* setup SDRAM chip selects */
112 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
113 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
114 __asm__ volatile ("sync");
115
116 /* setup config registers */
117 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
118 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
119 __asm__ volatile ("sync");
120
121#if SDRAM_DDR
122 /* set tap delay */
123 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
124 __asm__ volatile ("sync");
125#endif
126
127 /* find RAM size using SDRAM CS0 only */
128 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200129 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000130 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200131 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000132 if (test1 > test2) {
133 sdram_start(0);
134 dramsize = test1;
135 } else {
136 dramsize = test2;
137 }
138
139 /* memory smaller than 1MB is impossible */
140 if (dramsize < (1 << 20)) {
141 dramsize = 0;
142 }
143
144 /* set SDRAM CS0 size according to the amount of RAM found */
145 if (dramsize > 0) {
146 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
147 __builtin_ffs(dramsize >> 20) - 1;
148 } else {
149 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
150 }
151
152 /* let SDRAM CS1 start right after CS0 */
153 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001c; /* 512MB */
154
155 /* find RAM size using SDRAM CS1 only */
156 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200157 test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000158 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200159 test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000160 if (test1 > test2) {
161 sdram_start(0);
162 dramsize2 = test1;
163 } else {
164 dramsize2 = test2;
165 }
166
167 /* memory smaller than 1MB is impossible */
168 if (dramsize2 < (1 << 20)) {
169 dramsize2 = 0;
170 }
171
172 /* set SDRAM CS1 size according to the amount of RAM found */
173 if (dramsize2 > 0) {
174 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
175 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
176 } else {
177 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
178 }
179
180#else /* CFG_RAMBOOT */
181
182 /* retrieve size of memory connected to SDRAM CS0 */
183 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
184 if (dramsize >= 0x13) {
185 dramsize = (1 << (dramsize - 0x13)) << 20;
186 } else {
187 dramsize = 0;
188 }
189
190 /* retrieve size of memory connected to SDRAM CS1 */
191 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
192 if (dramsize2 >= 0x13) {
193 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
194 } else {
195 dramsize2 = 0;
196 }
wdenk56523f12004-07-11 17:40:54 +0000197#endif /* CFG_RAMBOOT */
198
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200199 /*
200 * On MPC5200B we need to set the special configuration delay in the
201 * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM
202 * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
203 *
204 * "The SDelay should be written to a value of 0x00000004. It is
205 * required to account for changes caused by normal wafer processing
206 * parameters."
207 */
208 svr = get_svr();
209 pvr = get_pvr();
210 if ((SVR_MJREV(svr) >= 2) &&
211 (PVR_MAJ(pvr) == 1) && (PVR_MIN(pvr) == 4)) {
212
213 *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
214 __asm__ volatile ("sync");
215 }
216
217#if defined(CONFIG_TQM5200_B)
218 return dramsize + dramsize2;
219#else
wdenk56523f12004-07-11 17:40:54 +0000220 return dramsize;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200221#endif /* CONFIG_TQM5200_B */
wdenk56523f12004-07-11 17:40:54 +0000222}
223
224#elif defined(CONFIG_MGT5100)
225
226long int initdram (int board_type)
227{
228 ulong dramsize = 0;
229#ifndef CFG_RAMBOOT
230 ulong test1, test2;
231
232 /* setup and enable SDRAM chip selects */
233 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
234 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
235 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
236 __asm__ volatile ("sync");
237
238 /* setup config registers */
239 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
240 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
241
242 /* address select register */
243 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = SDRAM_ADDRSEL;
244 __asm__ volatile ("sync");
245
246 /* find RAM size */
247 sdram_start(0);
248 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
249 sdram_start(1);
250 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
251 if (test1 > test2) {
252 sdram_start(0);
253 dramsize = test1;
254 } else {
255 dramsize = test2;
256 }
257
258 /* set SDRAM end address according to size */
259 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
260
261#else /* CFG_RAMBOOT */
262
263 /* Retrieve amount of SDRAM available */
264 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
265
266#endif /* CFG_RAMBOOT */
267
268 return dramsize;
269}
270
271#else
272#error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
273#endif
274
275int checkboard (void)
276{
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200277#if defined(CONFIG_AEVFIFO)
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200278 puts ("Board: AEVFIFO\n");
279 return 0;
280#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200281
282#if defined(CONFIG_TQM5200S)
283# define MODULE_NAME "TQM5200S"
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200284#else
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200285# define MODULE_NAME "TQM5200"
wdenk56523f12004-07-11 17:40:54 +0000286#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200287
288#if defined(CONFIG_STK52XX)
289# define CARRIER_NAME "STK52xx"
290#elif defined(CONFIG_TB5200)
291# define CARRIER_NAME "TB5200"
Wolfgang Denk135ae002006-07-22 01:20:03 +0200292#elif defined(CONFIG_CAM5200)
Wolfgang Denk78d620e2006-11-23 22:58:58 +0100293# define CARRIER_NAME "CAM5200"
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200294#elif defined(CONFIG_FO300)
295# define CARRIER_NAME "FO300"
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200296#else
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200297# error "UNKNOWN"
wdenk7e6bf352004-12-12 22:06:17 +0000298#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200299
300 puts ( "Board: " MODULE_NAME " (TQ-Components GmbH)\n"
301 " on a " CARRIER_NAME " carrier board\n");
wdenk7e6bf352004-12-12 22:06:17 +0000302
wdenk56523f12004-07-11 17:40:54 +0000303 return 0;
304}
305
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200306#undef MODULE_NAME
307#undef CARRIER_NAME
308
wdenk56523f12004-07-11 17:40:54 +0000309void flash_preinit(void)
310{
311 /*
312 * Now, when we are in RAM, enable flash write
313 * access for detection process.
314 * Note that CS_BOOT cannot be cleared when
315 * executing in flash.
316 */
317#if defined(CONFIG_MGT5100)
318 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
319 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
320#endif
321 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
322}
323
324
325#ifdef CONFIG_PCI
326static struct pci_controller hose;
327
328extern void pci_mpc5xxx_init(struct pci_controller *);
329
330void pci_init_board(void)
331{
332 pci_mpc5xxx_init(&hose);
333}
334#endif
335
Jon Loeligerd39b5742007-07-10 10:48:22 -0500336#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
wdenk56523f12004-07-11 17:40:54 +0000337
338#if defined (CONFIG_MINIFAP)
339#define SM501_POWER_MODE0_GATE 0x00000040UL
340#define SM501_POWER_MODE1_GATE 0x00000048UL
341#define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
342#define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
343#define SM501_GPIO_DATA_HIGH 0x00010004UL
344#define SM501_GPIO_51 0x00080000UL
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100345#endif /* CONFIG MINIFAP */
wdenk56523f12004-07-11 17:40:54 +0000346
347void init_ide_reset (void)
348{
349 debug ("init_ide_reset\n");
350
351#if defined (CONFIG_MINIFAP)
352 /* Configure GPIO_51 of the SM501 grafic controller as ATA reset */
353
354 /* enable GPIO control (in both power modes) */
355 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
356 POWER_MODE_GATE_GPIO_PWM_I2C;
357 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
358 POWER_MODE_GATE_GPIO_PWM_I2C;
359 /* configure GPIO51 as output */
360 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |=
361 SM501_GPIO_51;
362#else
363 /* Configure PSC1_4 as GPIO output for ATA reset */
364 *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
365 *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4;
366#endif
367}
368
369void ide_set_reset (int idereset)
370{
371 debug ("ide_reset(%d)\n", idereset);
372
373#if defined (CONFIG_MINIFAP)
374 if (idereset) {
375 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
376 ~SM501_GPIO_51;
377 } else {
378 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
379 SM501_GPIO_51;
380 }
381#else
382 if (idereset) {
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100383 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4;
wdenk56523f12004-07-11 17:40:54 +0000384 } else {
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100385 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
wdenk56523f12004-07-11 17:40:54 +0000386 }
387#endif
388}
Jon Loeligerd39b5742007-07-10 10:48:22 -0500389#endif
wdenk56523f12004-07-11 17:40:54 +0000390
391#ifdef CONFIG_POST
392/*
393 * Reads GPIO pin PSC6_3. A keypress is reported, if PSC6_3 is low. If PSC6_3
394 * is left open, no keypress is detected.
395 */
396int post_hotkeys_pressed(void)
397{
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200398#ifdef CONFIG_STK52XX
wdenk56523f12004-07-11 17:40:54 +0000399 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);
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200417#else
418 return 0;
419#endif
wdenk56523f12004-07-11 17:40:54 +0000420}
421#endif
422
423#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
424
425void post_word_store (ulong a)
426{
427 volatile ulong *save_addr =
428 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
429
430 *save_addr = a;
431}
432
433ulong post_word_load (void)
434{
435 volatile ulong *save_addr =
436 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
437
438 return *save_addr;
439}
wdenk56523f12004-07-11 17:40:54 +0000440#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/
wdenk7e6bf352004-12-12 22:06:17 +0000441
442#ifdef CONFIG_PS2MULT
443#ifdef CONFIG_BOARD_EARLY_INIT_R
444int board_early_init_r (void)
445{
446 ps2mult_early_init();
447 return (0);
448}
449#endif
450#endif /* CONFIG_PS2MULT */
451
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200452#ifdef CONFIG_FO300
453int silent_boot (void)
454{
455 vu_long timer3_status;
456
457 /* Configure GPT3 as GPIO input */
458 *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
459
460 /* Read in TIMER_3 pin status */
461 timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
462
463#ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
464 /* Force silent console mode if S1 switch
465 * is in closed position (TIMER_3 pin status is LOW). */
466 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
467 return 1;
468#else
469 /* Force silent console mode if S1 switch
470 * is in open position (TIMER_3 pin status is HIGH). */
471 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
472 return 1;
473#endif
474
475 return 0;
476}
477
478int board_early_init_f (void)
479{
480 DECLARE_GLOBAL_DATA_PTR;
481
482 if (silent_boot())
483 gd->flags |= GD_FLG_SILENT;
484
485 return 0;
486}
487#endif /* CONFIG_FO300 */
488
wdenk7e6bf352004-12-12 22:06:17 +0000489int last_stage_init (void)
490{
491 /*
492 * auto scan for really existing devices and re-set chip select
493 * configuration.
494 */
495 u16 save, tmp;
496 int restore;
497
498 /*
499 * Check for SRAM and SRAM size
500 */
501
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200502 /* save original SRAM content */
wdenk7e6bf352004-12-12 22:06:17 +0000503 save = *(volatile u16 *)CFG_CS2_START;
504 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000505
wdenk7e6bf352004-12-12 22:06:17 +0000506 /* write test pattern to SRAM */
507 *(volatile u16 *)CFG_CS2_START = 0xA5A5;
508 __asm__ volatile ("sync");
509 /*
510 * Put a different pattern on the data lines: otherwise they may float
511 * long enough to read back what we wrote.
512 */
513 tmp = *(volatile u16 *)CFG_FLASH_BASE;
514 if (tmp == 0xA5A5)
515 puts ("!! possible error in SRAM detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000516
wdenk7e6bf352004-12-12 22:06:17 +0000517 if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
518 /* no SRAM at all, disable cs */
519 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
520 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
521 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
522 restore = 0;
523 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200524 } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
wdenk7e6bf352004-12-12 22:06:17 +0000525 /* make sure that we access a mirrored address */
526 *(volatile u16 *)CFG_CS2_START = 0x1111;
527 __asm__ volatile ("sync");
528 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
529 /* SRAM size = 512 kByte */
wdenkefe2a4d2004-12-16 21:44:03 +0000530 *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
wdenk7e6bf352004-12-12 22:06:17 +0000531 0x80000);
532 __asm__ volatile ("sync");
533 puts ("SRAM: 512 kB\n");
534 }
535 else
wdenkefe2a4d2004-12-16 21:44:03 +0000536 puts ("!! possible error in SRAM detection\n");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200537 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000538 puts ("SRAM: 1 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000539 }
540 /* restore origianl SRAM content */
541 if (restore) {
542 *(volatile u16 *)CFG_CS2_START = save;
543 __asm__ volatile ("sync");
544 }
wdenkefe2a4d2004-12-16 21:44:03 +0000545
546 /*
wdenk7e6bf352004-12-12 22:06:17 +0000547 * Check for Grafic Controller
548 */
549
550 /* save origianl FB content */
551 save = *(volatile u16 *)CFG_CS1_START;
552 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000553
wdenk7e6bf352004-12-12 22:06:17 +0000554 /* write test pattern to FB memory */
555 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
556 __asm__ volatile ("sync");
557 /*
558 * Put a different pattern on the data lines: otherwise they may float
559 * long enough to read back what we wrote.
560 */
561 tmp = *(volatile u16 *)CFG_FLASH_BASE;
562 if (tmp == 0xA5A5)
563 puts ("!! possible error in grafic controller detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000564
wdenk7e6bf352004-12-12 22:06:17 +0000565 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
566 /* no grafic controller at all, disable cs */
567 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
568 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
569 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
570 restore = 0;
571 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200572 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000573 puts ("VGA: SMI501 (Voyager) with 8 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000574 }
575 /* restore origianl FB content */
576 if (restore) {
577 *(volatile u16 *)CFG_CS1_START = save;
578 __asm__ volatile ("sync");
579 }
wdenkefe2a4d2004-12-16 21:44:03 +0000580
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200581#ifdef CONFIG_FO300
582 if (silent_boot()) {
583 setenv("bootdelay", "0");
584 disable_ctrlc(1);
585 }
586#endif
587
wdenk7e6bf352004-12-12 22:06:17 +0000588 return 0;
589}
wdenk8f0b7cb2005-03-27 23:41:39 +0000590
591#ifdef CONFIG_VIDEO_SM501
592
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200593#ifdef CONFIG_FO300
594#define DISPLAY_WIDTH 800
595#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000596#define DISPLAY_WIDTH 640
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200597#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000598#define DISPLAY_HEIGHT 480
599
600#ifdef CONFIG_VIDEO_SM501_8BPP
601#error CONFIG_VIDEO_SM501_8BPP not supported.
602#endif /* CONFIG_VIDEO_SM501_8BPP */
603
604#ifdef CONFIG_VIDEO_SM501_16BPP
605#error CONFIG_VIDEO_SM501_16BPP not supported.
606#endif /* CONFIG_VIDEO_SM501_16BPP */
607#ifdef CONFIG_VIDEO_SM501_32BPP
608static const SMI_REGS init_regs [] =
609{
610#if 0 /* CRT only */
611 {0x00004, 0x0},
612 {0x00048, 0x00021807},
613 {0x0004C, 0x10090a01},
614 {0x00054, 0x1},
615 {0x00040, 0x00021807},
616 {0x00044, 0x10090a01},
617 {0x00054, 0x0},
618 {0x80200, 0x00010000},
619 {0x80204, 0x0},
620 {0x80208, 0x0A000A00},
621 {0x8020C, 0x02fa027f},
622 {0x80210, 0x004a028b},
623 {0x80214, 0x020c01df},
624 {0x80218, 0x000201e9},
625 {0x80200, 0x00013306},
626#else /* panel + CRT */
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200627#ifdef CONFIG_FO300
628 {0x00004, 0x0},
629 {0x00048, 0x00021807},
630 {0x0004C, 0x301a0a01},
631 {0x00054, 0x1},
632 {0x00040, 0x00021807},
633 {0x00044, 0x091a0a01},
634 {0x00054, 0x0},
635 {0x80000, 0x0f013106},
636 {0x80004, 0xc428bb17},
637 {0x8000C, 0x00000000},
638 {0x80010, 0x0C800C80},
639 {0x80014, 0x03200000},
640 {0x80018, 0x01e00000},
641 {0x8001C, 0x00000000},
642 {0x80020, 0x01e00320},
643 {0x80024, 0x042a031f},
644 {0x80028, 0x0086034a},
645 {0x8002C, 0x020c01df},
646 {0x80030, 0x000201ea},
647 {0x80200, 0x00010000},
648#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000649 {0x00004, 0x0},
650 {0x00048, 0x00021807},
651 {0x0004C, 0x091a0a01},
652 {0x00054, 0x1},
653 {0x00040, 0x00021807},
654 {0x00044, 0x091a0a01},
655 {0x00054, 0x0},
656 {0x80000, 0x0f013106},
657 {0x80004, 0xc428bb17},
658 {0x8000C, 0x00000000},
659 {0x80010, 0x0a000a00},
660 {0x80014, 0x02800000},
661 {0x80018, 0x01e00000},
662 {0x8001C, 0x00000000},
663 {0x80020, 0x01e00280},
664 {0x80024, 0x02fa027f},
665 {0x80028, 0x004a028b},
666 {0x8002C, 0x020c01df},
667 {0x80030, 0x000201e9},
668 {0x80200, 0x00010000},
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200669#endif /* #ifdef CONFIG_FO300 */
wdenk8f0b7cb2005-03-27 23:41:39 +0000670#endif
671 {0, 0}
672};
673#endif /* CONFIG_VIDEO_SM501_32BPP */
674
675#ifdef CONFIG_CONSOLE_EXTRA_INFO
676/*
677 * Return text to be printed besides the logo.
678 */
679void video_get_info_str (int line_number, char *info)
680{
681 if (line_number == 1) {
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200682 strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200683#if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
wdenk8f0b7cb2005-03-27 23:41:39 +0000684 } else if (line_number == 2) {
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200685#if defined (CONFIG_STK52XX)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200686 strcpy (info, " on a STK52xx carrier board");
wdenk8f0b7cb2005-03-27 23:41:39 +0000687#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200688#if defined (CONFIG_TB5200)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200689 strcpy (info, " on a TB5200 carrier board");
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200690#endif
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200691#if defined (CONFIG_FO300)
692 strcpy (info, " on a FO300 carrier board");
693#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200694#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000695 }
696 else {
697 info [0] = '\0';
698 }
699}
700#endif
701
702/*
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200703 * Returns SM501 register base address. First thing called in the
704 * driver. Checks if SM501 is physically present.
wdenk8f0b7cb2005-03-27 23:41:39 +0000705 */
706unsigned int board_video_init (void)
707{
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200708 u16 save, tmp;
709 int restore, ret;
710
711 /*
712 * Check for Grafic Controller
713 */
714
715 /* save origianl FB content */
716 save = *(volatile u16 *)CFG_CS1_START;
717 restore = 1;
718
719 /* write test pattern to FB memory */
720 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
721 __asm__ volatile ("sync");
722 /*
723 * Put a different pattern on the data lines: otherwise they may float
724 * long enough to read back what we wrote.
725 */
726 tmp = *(volatile u16 *)CFG_FLASH_BASE;
727 if (tmp == 0xA5A5)
728 puts ("!! possible error in grafic controller detection\n");
729
730 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
731 /* no grafic controller found */
732 restore = 0;
733 ret = 0;
734 } else {
735 ret = SM501_MMIO_BASE;
736 }
737
738 if (restore) {
739 *(volatile u16 *)CFG_CS1_START = save;
740 __asm__ volatile ("sync");
741 }
742 return ret;
wdenk8f0b7cb2005-03-27 23:41:39 +0000743}
744
745/*
746 * Returns SM501 framebuffer address
747 */
748unsigned int board_video_get_fb (void)
749{
750 return SM501_FB_BASE;
751}
752
753/*
754 * Called after initializing the SM501 and before clearing the screen.
755 */
756void board_validate_screen (unsigned int base)
757{
758}
759
760/*
761 * Return a pointer to the initialization sequence.
762 */
763const SMI_REGS *board_get_regs (void)
764{
765 return init_regs;
766}
767
768int board_get_width (void)
769{
770 return DISPLAY_WIDTH;
771}
772
773int board_get_height (void)
774{
775 return DISPLAY_HEIGHT;
776}
777
778#endif /* CONFIG_VIDEO_SM501 */
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +0200779
Grant Likelycf2817a2007-09-06 09:46:23 -0600780#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +0200781void ft_board_setup(void *blob, bd_t *bd)
782{
783 ft_cpu_setup(blob, bd);
784}
Grant Likelycf2817a2007-09-06 09:46:23 -0600785#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */