blob: 8c3f701d5eaaa0812e240127e9cf5dec784cef5a [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
Wolfgang Denk1218abf2007-09-15 20:48:41 +020046DECLARE_GLOBAL_DATA_PTR;
47
wdenk7e6bf352004-12-12 22:06:17 +000048#ifdef CONFIG_PS2MULT
49void ps2mult_early_init(void);
50#endif
wdenk56523f12004-07-11 17:40:54 +000051
52#ifndef CFG_RAMBOOT
53static void sdram_start (int hi_addr)
54{
55 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
56
57 /* unlock mode register */
58 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
59 hi_addr_bit;
60 __asm__ volatile ("sync");
61
62 /* precharge all banks */
63 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
64 hi_addr_bit;
65 __asm__ volatile ("sync");
66
67#if SDRAM_DDR
68 /* set mode register: extended mode */
69 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
70 __asm__ volatile ("sync");
71
72 /* set mode register: reset DLL */
73 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
74 __asm__ volatile ("sync");
75#endif
76
77 /* precharge all banks */
78 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
79 hi_addr_bit;
80 __asm__ volatile ("sync");
81
82 /* auto refresh */
83 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
84 hi_addr_bit;
85 __asm__ volatile ("sync");
86
87 /* set mode register */
88 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
89 __asm__ volatile ("sync");
90
91 /* normal operation */
92 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
93 __asm__ volatile ("sync");
94}
95#endif
96
97/*
98 * ATTENTION: Although partially referenced initdram does NOT make real use
wdenk81050922004-07-11 20:04:51 +000099 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
100 * is something else than 0x00000000.
wdenk56523f12004-07-11 17:40:54 +0000101 */
102
103#if defined(CONFIG_MPC5200)
104long int initdram (int board_type)
105{
106 ulong dramsize = 0;
107 ulong dramsize2 = 0;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200108 uint svr, pvr;
109
wdenk56523f12004-07-11 17:40:54 +0000110#ifndef CFG_RAMBOOT
111 ulong test1, test2;
112
113 /* setup SDRAM chip selects */
114 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */
115 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x40000000; /* disabled */
116 __asm__ volatile ("sync");
117
118 /* setup config registers */
119 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
120 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
121 __asm__ volatile ("sync");
122
123#if SDRAM_DDR
124 /* set tap delay */
125 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
126 __asm__ volatile ("sync");
127#endif
128
129 /* find RAM size using SDRAM CS0 only */
130 sdram_start(0);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200131 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000132 sdram_start(1);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200133 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000);
wdenk56523f12004-07-11 17:40:54 +0000134 if (test1 > test2) {
135 sdram_start(0);
136 dramsize = test1;
137 } else {
138 dramsize = test2;
139 }
140
141 /* memory smaller than 1MB is impossible */
142 if (dramsize < (1 << 20)) {
143 dramsize = 0;
144 }
145
146 /* set SDRAM CS0 size according to the amount of RAM found */
147 if (dramsize > 0) {
148 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
149 __builtin_ffs(dramsize >> 20) - 1;
150 } else {
151 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
152 }
153
154 /* let SDRAM CS1 start right after CS0 */
155 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001c; /* 512MB */
156
157 /* find RAM size using SDRAM CS1 only */
Martin Krausef3a329a2008-02-25 13:27:52 +0100158 if (!dramsize)
159 sdram_start(0);
160 test2 = test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
161 if (!dramsize) {
162 sdram_start(1);
163 test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000);
164 }
wdenk56523f12004-07-11 17:40:54 +0000165 if (test1 > test2) {
166 sdram_start(0);
167 dramsize2 = test1;
168 } else {
169 dramsize2 = test2;
170 }
171
172 /* memory smaller than 1MB is impossible */
173 if (dramsize2 < (1 << 20)) {
174 dramsize2 = 0;
175 }
176
177 /* set SDRAM CS1 size according to the amount of RAM found */
178 if (dramsize2 > 0) {
179 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
180 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
181 } else {
182 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
183 }
184
185#else /* CFG_RAMBOOT */
186
187 /* retrieve size of memory connected to SDRAM CS0 */
188 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
189 if (dramsize >= 0x13) {
190 dramsize = (1 << (dramsize - 0x13)) << 20;
191 } else {
192 dramsize = 0;
193 }
194
195 /* retrieve size of memory connected to SDRAM CS1 */
196 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
197 if (dramsize2 >= 0x13) {
198 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
199 } else {
200 dramsize2 = 0;
201 }
wdenk56523f12004-07-11 17:40:54 +0000202#endif /* CFG_RAMBOOT */
203
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200204 /*
205 * On MPC5200B we need to set the special configuration delay in the
206 * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM
207 * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
208 *
209 * "The SDelay should be written to a value of 0x00000004. It is
210 * required to account for changes caused by normal wafer processing
211 * parameters."
212 */
213 svr = get_svr();
214 pvr = get_pvr();
215 if ((SVR_MJREV(svr) >= 2) &&
216 (PVR_MAJ(pvr) == 1) && (PVR_MIN(pvr) == 4)) {
217
218 *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
219 __asm__ volatile ("sync");
220 }
221
222#if defined(CONFIG_TQM5200_B)
223 return dramsize + dramsize2;
224#else
wdenk56523f12004-07-11 17:40:54 +0000225 return dramsize;
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200226#endif /* CONFIG_TQM5200_B */
wdenk56523f12004-07-11 17:40:54 +0000227}
228
229#elif defined(CONFIG_MGT5100)
230
231long int initdram (int board_type)
232{
233 ulong dramsize = 0;
234#ifndef CFG_RAMBOOT
235 ulong test1, test2;
236
237 /* setup and enable SDRAM chip selects */
238 *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
239 *(vu_long *)MPC5XXX_SDRAM_STOP = 0x0000ffff;/* 2G */
240 *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
241 __asm__ volatile ("sync");
242
243 /* setup config registers */
244 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
245 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
246
247 /* address select register */
248 *(vu_long *)MPC5XXX_SDRAM_XLBSEL = SDRAM_ADDRSEL;
249 __asm__ volatile ("sync");
250
251 /* find RAM size */
252 sdram_start(0);
253 test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
254 sdram_start(1);
255 test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x80000000);
256 if (test1 > test2) {
257 sdram_start(0);
258 dramsize = test1;
259 } else {
260 dramsize = test2;
261 }
262
263 /* set SDRAM end address according to size */
264 *(vu_long *)MPC5XXX_SDRAM_STOP = ((dramsize - 1) >> 15);
265
266#else /* CFG_RAMBOOT */
267
268 /* Retrieve amount of SDRAM available */
269 dramsize = ((*(vu_long *)MPC5XXX_SDRAM_STOP + 1) << 15);
270
271#endif /* CFG_RAMBOOT */
272
273 return dramsize;
274}
275
276#else
277#error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
278#endif
279
280int checkboard (void)
281{
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200282#if defined(CONFIG_AEVFIFO)
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200283 puts ("Board: AEVFIFO\n");
284 return 0;
285#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200286
287#if defined(CONFIG_TQM5200S)
288# define MODULE_NAME "TQM5200S"
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200289#else
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200290# define MODULE_NAME "TQM5200"
wdenk56523f12004-07-11 17:40:54 +0000291#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200292
293#if defined(CONFIG_STK52XX)
294# define CARRIER_NAME "STK52xx"
295#elif defined(CONFIG_TB5200)
296# define CARRIER_NAME "TB5200"
Wolfgang Denk135ae002006-07-22 01:20:03 +0200297#elif defined(CONFIG_CAM5200)
Wolfgang Denk78d620e2006-11-23 22:58:58 +0100298# define CARRIER_NAME "CAM5200"
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200299#elif defined(CONFIG_FO300)
300# define CARRIER_NAME "FO300"
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200301#else
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200302# error "UNKNOWN"
wdenk7e6bf352004-12-12 22:06:17 +0000303#endif
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200304
305 puts ( "Board: " MODULE_NAME " (TQ-Components GmbH)\n"
306 " on a " CARRIER_NAME " carrier board\n");
wdenk7e6bf352004-12-12 22:06:17 +0000307
wdenk56523f12004-07-11 17:40:54 +0000308 return 0;
309}
310
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200311#undef MODULE_NAME
312#undef CARRIER_NAME
313
wdenk56523f12004-07-11 17:40:54 +0000314void flash_preinit(void)
315{
316 /*
317 * Now, when we are in RAM, enable flash write
318 * access for detection process.
319 * Note that CS_BOOT cannot be cleared when
320 * executing in flash.
321 */
322#if defined(CONFIG_MGT5100)
323 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
324 *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
325#endif
326 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
327}
328
329
330#ifdef CONFIG_PCI
331static struct pci_controller hose;
332
333extern void pci_mpc5xxx_init(struct pci_controller *);
334
335void pci_init_board(void)
336{
337 pci_mpc5xxx_init(&hose);
338}
339#endif
340
Jon Loeligerd39b5742007-07-10 10:48:22 -0500341#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
wdenk56523f12004-07-11 17:40:54 +0000342
343#if defined (CONFIG_MINIFAP)
344#define SM501_POWER_MODE0_GATE 0x00000040UL
345#define SM501_POWER_MODE1_GATE 0x00000048UL
346#define POWER_MODE_GATE_GPIO_PWM_I2C 0x00000040UL
347#define SM501_GPIO_DATA_DIR_HIGH 0x0001000CUL
348#define SM501_GPIO_DATA_HIGH 0x00010004UL
349#define SM501_GPIO_51 0x00080000UL
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100350#endif /* CONFIG MINIFAP */
wdenk56523f12004-07-11 17:40:54 +0000351
352void init_ide_reset (void)
353{
354 debug ("init_ide_reset\n");
355
356#if defined (CONFIG_MINIFAP)
357 /* Configure GPIO_51 of the SM501 grafic controller as ATA reset */
358
359 /* enable GPIO control (in both power modes) */
360 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE0_GATE) |=
361 POWER_MODE_GATE_GPIO_PWM_I2C;
362 *(vu_long *) (SM501_MMIO_BASE+SM501_POWER_MODE1_GATE) |=
363 POWER_MODE_GATE_GPIO_PWM_I2C;
364 /* configure GPIO51 as output */
365 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_DIR_HIGH) |=
366 SM501_GPIO_51;
367#else
368 /* Configure PSC1_4 as GPIO output for ATA reset */
369 *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4;
370 *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4;
371#endif
372}
373
374void ide_set_reset (int idereset)
375{
376 debug ("ide_reset(%d)\n", idereset);
377
378#if defined (CONFIG_MINIFAP)
379 if (idereset) {
380 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) &=
381 ~SM501_GPIO_51;
382 } else {
383 *(vu_long *) (SM501_MMIO_BASE+SM501_GPIO_DATA_HIGH) |=
384 SM501_GPIO_51;
385 }
386#else
387 if (idereset) {
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 } else {
Bartlomiej Siekadae80f32006-11-01 01:38:16 +0100390 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
wdenk56523f12004-07-11 17:40:54 +0000391 }
392#endif
393}
Jon Loeligerd39b5742007-07-10 10:48:22 -0500394#endif
wdenk56523f12004-07-11 17:40:54 +0000395
396#ifdef CONFIG_POST
397/*
398 * Reads GPIO pin PSC6_3. A keypress is reported, if PSC6_3 is low. If PSC6_3
399 * is left open, no keypress is detected.
400 */
401int post_hotkeys_pressed(void)
402{
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200403#ifdef CONFIG_STK52XX
wdenk56523f12004-07-11 17:40:54 +0000404 struct mpc5xxx_gpio *gpio;
405
406 gpio = (struct mpc5xxx_gpio*) MPC5XXX_GPIO;
407
408 /*
409 * Configure PSC6_1 and PSC6_3 as GPIO. PSC6 then couldn't be used in
410 * CODEC or UART mode. Consumer IrDA should still be possible.
wdenk81050922004-07-11 20:04:51 +0000411 */
wdenk56523f12004-07-11 17:40:54 +0000412 gpio->port_config &= ~(0x07000000);
413 gpio->port_config |= 0x03000000;
414
415 /* Enable GPIO for GPIO_IRDA_1 (IR_USB_CLK pin) = PSC6_3 */
416 gpio->simple_gpioe |= 0x20000000;
417
418 /* Configure GPIO_IRDA_1 as input */
419 gpio->simple_ddr &= ~(0x20000000);
420
421 return ((gpio->simple_ival & 0x20000000) ? 0 : 1);
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +0200422#else
423 return 0;
424#endif
wdenk56523f12004-07-11 17:40:54 +0000425}
426#endif
427
428#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
429
430void post_word_store (ulong a)
431{
432 volatile ulong *save_addr =
433 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
434
435 *save_addr = a;
436}
437
438ulong post_word_load (void)
439{
440 volatile ulong *save_addr =
441 (volatile ulong *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
442
443 return *save_addr;
444}
wdenk56523f12004-07-11 17:40:54 +0000445#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/
wdenk7e6bf352004-12-12 22:06:17 +0000446
wdenk7e6bf352004-12-12 22:06:17 +0000447#ifdef CONFIG_BOARD_EARLY_INIT_R
448int board_early_init_r (void)
449{
Markus Klotzbuecher6a40ef62008-01-09 13:57:10 +0100450
Wolfgang Denk409ecdc2007-11-18 16:36:27 +0100451 extern int usb_cpu_init(void);
452
Marian Balakowicz245a3622007-10-24 01:37:36 +0200453#ifdef CONFIG_PS2MULT
wdenk7e6bf352004-12-12 22:06:17 +0000454 ps2mult_early_init();
Marian Balakowicz245a3622007-10-24 01:37:36 +0200455#endif /* CONFIG_PS2MULT */
456
457#if defined(CONFIG_USB_OHCI_NEW) && defined(CFG_USB_OHCI_CPU_INIT)
458 /* Low level USB init, required for proper kernel operation */
459 usb_cpu_init();
460#endif
461
wdenk7e6bf352004-12-12 22:06:17 +0000462 return (0);
463}
464#endif
wdenk7e6bf352004-12-12 22:06:17 +0000465
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200466#ifdef CONFIG_FO300
467int silent_boot (void)
468{
469 vu_long timer3_status;
470
471 /* Configure GPT3 as GPIO input */
472 *(vu_long *)MPC5XXX_GPT3_ENABLE = 0x00000004;
473
474 /* Read in TIMER_3 pin status */
475 timer3_status = *(vu_long *)MPC5XXX_GPT3_STATUS;
476
477#ifdef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED
478 /* Force silent console mode if S1 switch
479 * is in closed position (TIMER_3 pin status is LOW). */
480 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 0)
481 return 1;
482#else
483 /* Force silent console mode if S1 switch
484 * is in open position (TIMER_3 pin status is HIGH). */
485 if (MPC5XXX_GPT_GPIO_PIN(timer3_status) == 1)
486 return 1;
487#endif
488
489 return 0;
490}
491
492int board_early_init_f (void)
493{
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200494 if (silent_boot())
495 gd->flags |= GD_FLG_SILENT;
496
497 return 0;
498}
499#endif /* CONFIG_FO300 */
500
wdenk7e6bf352004-12-12 22:06:17 +0000501int last_stage_init (void)
502{
503 /*
504 * auto scan for really existing devices and re-set chip select
505 * configuration.
506 */
507 u16 save, tmp;
508 int restore;
509
510 /*
511 * Check for SRAM and SRAM size
512 */
513
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200514 /* save original SRAM content */
wdenk7e6bf352004-12-12 22:06:17 +0000515 save = *(volatile u16 *)CFG_CS2_START;
516 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000517
wdenk7e6bf352004-12-12 22:06:17 +0000518 /* write test pattern to SRAM */
519 *(volatile u16 *)CFG_CS2_START = 0xA5A5;
520 __asm__ volatile ("sync");
521 /*
522 * Put a different pattern on the data lines: otherwise they may float
523 * long enough to read back what we wrote.
524 */
525 tmp = *(volatile u16 *)CFG_FLASH_BASE;
526 if (tmp == 0xA5A5)
527 puts ("!! possible error in SRAM detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000528
wdenk7e6bf352004-12-12 22:06:17 +0000529 if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {
530 /* no SRAM at all, disable cs */
531 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18);
532 *(vu_long *)MPC5XXX_CS2_START = 0x0000FFFF;
533 *(vu_long *)MPC5XXX_CS2_STOP = 0x0000FFFF;
534 restore = 0;
535 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200536 } else if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0xA5A5) {
wdenk7e6bf352004-12-12 22:06:17 +0000537 /* make sure that we access a mirrored address */
538 *(volatile u16 *)CFG_CS2_START = 0x1111;
539 __asm__ volatile ("sync");
540 if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {
541 /* SRAM size = 512 kByte */
wdenkefe2a4d2004-12-16 21:44:03 +0000542 *(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,
wdenk7e6bf352004-12-12 22:06:17 +0000543 0x80000);
544 __asm__ volatile ("sync");
545 puts ("SRAM: 512 kB\n");
546 }
547 else
wdenkefe2a4d2004-12-16 21:44:03 +0000548 puts ("!! possible error in SRAM detection\n");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200549 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000550 puts ("SRAM: 1 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000551 }
552 /* restore origianl SRAM content */
553 if (restore) {
554 *(volatile u16 *)CFG_CS2_START = save;
555 __asm__ volatile ("sync");
556 }
wdenkefe2a4d2004-12-16 21:44:03 +0000557
Martin Krause0fc0f912007-10-22 16:40:06 +0200558#ifndef CONFIG_TQM5200S /* The TQM5200S has no SM501 grafic controller */
wdenkefe2a4d2004-12-16 21:44:03 +0000559 /*
wdenk7e6bf352004-12-12 22:06:17 +0000560 * Check for Grafic Controller
561 */
562
563 /* save origianl FB content */
564 save = *(volatile u16 *)CFG_CS1_START;
565 restore = 1;
wdenkefe2a4d2004-12-16 21:44:03 +0000566
wdenk7e6bf352004-12-12 22:06:17 +0000567 /* write test pattern to FB memory */
568 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
569 __asm__ volatile ("sync");
570 /*
571 * Put a different pattern on the data lines: otherwise they may float
572 * long enough to read back what we wrote.
573 */
574 tmp = *(volatile u16 *)CFG_FLASH_BASE;
575 if (tmp == 0xA5A5)
576 puts ("!! possible error in grafic controller detection\n");
wdenkefe2a4d2004-12-16 21:44:03 +0000577
wdenk7e6bf352004-12-12 22:06:17 +0000578 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
579 /* no grafic controller at all, disable cs */
580 *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17);
581 *(vu_long *)MPC5XXX_CS1_START = 0x0000FFFF;
582 *(vu_long *)MPC5XXX_CS1_STOP = 0x0000FFFF;
583 restore = 0;
584 __asm__ volatile ("sync");
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200585 } else {
wdenkefe2a4d2004-12-16 21:44:03 +0000586 puts ("VGA: SMI501 (Voyager) with 8 MB\n");
wdenk7e6bf352004-12-12 22:06:17 +0000587 }
588 /* restore origianl FB content */
589 if (restore) {
590 *(volatile u16 *)CFG_CS1_START = save;
591 __asm__ volatile ("sync");
592 }
wdenkefe2a4d2004-12-16 21:44:03 +0000593
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200594#ifdef CONFIG_FO300
595 if (silent_boot()) {
596 setenv("bootdelay", "0");
597 disable_ctrlc(1);
598 }
599#endif
Wolfgang Denk409ecdc2007-11-18 16:36:27 +0100600#endif /* !CONFIG_TQM5200S */
Wolfgang Denkaeec7822006-09-13 10:47:05 +0200601
wdenk7e6bf352004-12-12 22:06:17 +0000602 return 0;
603}
wdenk8f0b7cb2005-03-27 23:41:39 +0000604
605#ifdef CONFIG_VIDEO_SM501
606
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200607#ifdef CONFIG_FO300
608#define DISPLAY_WIDTH 800
609#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000610#define DISPLAY_WIDTH 640
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200611#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000612#define DISPLAY_HEIGHT 480
613
614#ifdef CONFIG_VIDEO_SM501_8BPP
615#error CONFIG_VIDEO_SM501_8BPP not supported.
616#endif /* CONFIG_VIDEO_SM501_8BPP */
617
618#ifdef CONFIG_VIDEO_SM501_16BPP
619#error CONFIG_VIDEO_SM501_16BPP not supported.
620#endif /* CONFIG_VIDEO_SM501_16BPP */
621#ifdef CONFIG_VIDEO_SM501_32BPP
622static const SMI_REGS init_regs [] =
623{
624#if 0 /* CRT only */
625 {0x00004, 0x0},
626 {0x00048, 0x00021807},
627 {0x0004C, 0x10090a01},
628 {0x00054, 0x1},
629 {0x00040, 0x00021807},
630 {0x00044, 0x10090a01},
631 {0x00054, 0x0},
632 {0x80200, 0x00010000},
633 {0x80204, 0x0},
634 {0x80208, 0x0A000A00},
635 {0x8020C, 0x02fa027f},
636 {0x80210, 0x004a028b},
637 {0x80214, 0x020c01df},
638 {0x80218, 0x000201e9},
639 {0x80200, 0x00013306},
640#else /* panel + CRT */
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200641#ifdef CONFIG_FO300
642 {0x00004, 0x0},
643 {0x00048, 0x00021807},
644 {0x0004C, 0x301a0a01},
645 {0x00054, 0x1},
646 {0x00040, 0x00021807},
647 {0x00044, 0x091a0a01},
648 {0x00054, 0x0},
649 {0x80000, 0x0f013106},
650 {0x80004, 0xc428bb17},
651 {0x8000C, 0x00000000},
652 {0x80010, 0x0C800C80},
653 {0x80014, 0x03200000},
654 {0x80018, 0x01e00000},
655 {0x8001C, 0x00000000},
656 {0x80020, 0x01e00320},
657 {0x80024, 0x042a031f},
658 {0x80028, 0x0086034a},
659 {0x8002C, 0x020c01df},
660 {0x80030, 0x000201ea},
661 {0x80200, 0x00010000},
662#else
wdenk8f0b7cb2005-03-27 23:41:39 +0000663 {0x00004, 0x0},
664 {0x00048, 0x00021807},
665 {0x0004C, 0x091a0a01},
666 {0x00054, 0x1},
667 {0x00040, 0x00021807},
668 {0x00044, 0x091a0a01},
669 {0x00054, 0x0},
670 {0x80000, 0x0f013106},
671 {0x80004, 0xc428bb17},
672 {0x8000C, 0x00000000},
673 {0x80010, 0x0a000a00},
674 {0x80014, 0x02800000},
675 {0x80018, 0x01e00000},
676 {0x8001C, 0x00000000},
677 {0x80020, 0x01e00280},
678 {0x80024, 0x02fa027f},
679 {0x80028, 0x004a028b},
680 {0x8002C, 0x020c01df},
681 {0x80030, 0x000201e9},
682 {0x80200, 0x00010000},
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200683#endif /* #ifdef CONFIG_FO300 */
wdenk8f0b7cb2005-03-27 23:41:39 +0000684#endif
685 {0, 0}
686};
687#endif /* CONFIG_VIDEO_SM501_32BPP */
688
689#ifdef CONFIG_CONSOLE_EXTRA_INFO
690/*
691 * Return text to be printed besides the logo.
692 */
693void video_get_info_str (int line_number, char *info)
694{
695 if (line_number == 1) {
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200696 strcpy (info, " Board: TQM5200 (TQ-Components GmbH)");
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200697#if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200) || defined(CONFIG_FO300)
wdenk8f0b7cb2005-03-27 23:41:39 +0000698 } else if (line_number == 2) {
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200699#if defined (CONFIG_STK52XX)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200700 strcpy (info, " on a STK52xx carrier board");
wdenk8f0b7cb2005-03-27 23:41:39 +0000701#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200702#if defined (CONFIG_TB5200)
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200703 strcpy (info, " on a TB5200 carrier board");
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200704#endif
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200705#if defined (CONFIG_FO300)
706 strcpy (info, " on a FO300 carrier board");
707#endif
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200708#endif
wdenk8f0b7cb2005-03-27 23:41:39 +0000709 }
710 else {
711 info [0] = '\0';
712 }
713}
714#endif
715
716/*
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200717 * Returns SM501 register base address. First thing called in the
718 * driver. Checks if SM501 is physically present.
wdenk8f0b7cb2005-03-27 23:41:39 +0000719 */
720unsigned int board_video_init (void)
721{
Wolfgang Denke8aa8242005-08-18 11:55:22 +0200722 u16 save, tmp;
723 int restore, ret;
724
725 /*
726 * Check for Grafic Controller
727 */
728
729 /* save origianl FB content */
730 save = *(volatile u16 *)CFG_CS1_START;
731 restore = 1;
732
733 /* write test pattern to FB memory */
734 *(volatile u16 *)CFG_CS1_START = 0xA5A5;
735 __asm__ volatile ("sync");
736 /*
737 * Put a different pattern on the data lines: otherwise they may float
738 * long enough to read back what we wrote.
739 */
740 tmp = *(volatile u16 *)CFG_FLASH_BASE;
741 if (tmp == 0xA5A5)
742 puts ("!! possible error in grafic controller detection\n");
743
744 if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {
745 /* no grafic controller found */
746 restore = 0;
747 ret = 0;
748 } else {
749 ret = SM501_MMIO_BASE;
750 }
751
752 if (restore) {
753 *(volatile u16 *)CFG_CS1_START = save;
754 __asm__ volatile ("sync");
755 }
756 return ret;
wdenk8f0b7cb2005-03-27 23:41:39 +0000757}
758
759/*
760 * Returns SM501 framebuffer address
761 */
762unsigned int board_video_get_fb (void)
763{
764 return SM501_FB_BASE;
765}
766
767/*
768 * Called after initializing the SM501 and before clearing the screen.
769 */
770void board_validate_screen (unsigned int base)
771{
772}
773
774/*
775 * Return a pointer to the initialization sequence.
776 */
777const SMI_REGS *board_get_regs (void)
778{
779 return init_regs;
780}
781
782int board_get_width (void)
783{
784 return DISPLAY_WIDTH;
785}
786
787int board_get_height (void)
788{
789 return DISPLAY_HEIGHT;
790}
791
792#endif /* CONFIG_VIDEO_SM501 */
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +0200793
Grant Likelycf2817a2007-09-06 09:46:23 -0600794#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Bartlomiej Sieka8f8416f2007-06-08 14:52:22 +0200795void ft_board_setup(void *blob, bd_t *bd)
796{
797 ft_cpu_setup(blob, bd);
798}
Grant Likelycf2817a2007-09-06 09:46:23 -0600799#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */