3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 #include <asm/processor.h>
34 #if defined(CONFIG_LITE5200B)
35 #include "mt46v32m16.h"
37 # if defined(CONFIG_MPC5200_DDR)
38 # include "mt46v16m16-75.h"
40 #include "mt48lc16m16a2-75.h"
44 #ifdef CONFIG_LITE5200B_PM
45 /* u-boot part of low-power mode implementation */
46 #define SAVED_ADDR (*(void **)0x00000000)
49 void lite5200b_wakeup(void)
51 unsigned char wakeup_pin
;
52 void (*linux_wakeup
)(void);
54 /* check PSC2_4, if it's down "QT" is signaling we have a wakeup
55 * from low power mode */
56 *(vu_char
*)MPC5XXX_WU_GPIO_ENABLE
= PSC2_4
;
57 __asm__
volatile ("sync");
59 wakeup_pin
= *(vu_char
*)MPC5XXX_WU_GPIO_DATA_I
;
60 if (wakeup_pin
& PSC2_4
)
63 /* acknowledge to "QT"
64 * by holding pin at 1 for 10 uS */
65 *(vu_char
*)MPC5XXX_WU_GPIO_DIR
= PSC2_4
;
66 __asm__
volatile ("sync");
67 *(vu_char
*)MPC5XXX_WU_GPIO_DATA_O
= PSC2_4
;
68 __asm__
volatile ("sync");
71 /* put ram out of self-refresh */
72 *(vu_long
*)MPC5XXX_SDRAM_CTRL
|= 0x80000000; /* mode_en */
73 __asm__
volatile ("sync");
74 *(vu_long
*)MPC5XXX_SDRAM_CTRL
|= 0x50000000; /* cke ref_en */
75 __asm__
volatile ("sync");
76 *(vu_long
*)MPC5XXX_SDRAM_CTRL
&= ~0x80000000; /* !mode_en */
77 __asm__
volatile ("sync");
78 udelay(10); /* wait a bit */
80 /* jump back to linux kernel code */
81 linux_wakeup
= SAVED_ADDR
;
82 printf("\n\nLooks like we just woke, transferring control to 0x%08lx\n",
87 #define lite5200b_wakeup()
90 #ifndef CONFIG_SYS_RAMBOOT
91 static void sdram_start (int hi_addr
)
93 long hi_addr_bit
= hi_addr
? 0x01000000 : 0;
95 /* unlock mode register */
96 *(vu_long
*)MPC5XXX_SDRAM_CTRL
= SDRAM_CONTROL
| 0x80000000 | hi_addr_bit
;
97 __asm__
volatile ("sync");
99 /* precharge all banks */
100 *(vu_long
*)MPC5XXX_SDRAM_CTRL
= SDRAM_CONTROL
| 0x80000002 | hi_addr_bit
;
101 __asm__
volatile ("sync");
104 /* set mode register: extended mode */
105 *(vu_long
*)MPC5XXX_SDRAM_MODE
= SDRAM_EMODE
;
106 __asm__
volatile ("sync");
108 /* set mode register: reset DLL */
109 *(vu_long
*)MPC5XXX_SDRAM_MODE
= SDRAM_MODE
| 0x04000000;
110 __asm__
volatile ("sync");
113 /* precharge all banks */
114 *(vu_long
*)MPC5XXX_SDRAM_CTRL
= SDRAM_CONTROL
| 0x80000002 | hi_addr_bit
;
115 __asm__
volatile ("sync");
118 *(vu_long
*)MPC5XXX_SDRAM_CTRL
= SDRAM_CONTROL
| 0x80000004 | hi_addr_bit
;
119 __asm__
volatile ("sync");
121 /* set mode register */
122 *(vu_long
*)MPC5XXX_SDRAM_MODE
= SDRAM_MODE
;
123 __asm__
volatile ("sync");
125 /* normal operation */
126 *(vu_long
*)MPC5XXX_SDRAM_CTRL
= SDRAM_CONTROL
| hi_addr_bit
;
127 __asm__
volatile ("sync");
132 * ATTENTION: Although partially referenced initdram does NOT make real use
133 * use of CONFIG_SYS_SDRAM_BASE. The code does not work if CONFIG_SYS_SDRAM_BASE
134 * is something else than 0x00000000.
137 #if defined(CONFIG_MPC5200)
138 phys_size_t
initdram (int board_type
)
144 #ifndef CONFIG_SYS_RAMBOOT
147 /* setup SDRAM chip selects */
148 *(vu_long
*)MPC5XXX_SDRAM_CS0CFG
= 0x0000001e;/* 2G at 0x0 */
149 *(vu_long
*)MPC5XXX_SDRAM_CS1CFG
= 0x80000000;/* disabled */
150 __asm__
volatile ("sync");
152 /* setup config registers */
153 *(vu_long
*)MPC5XXX_SDRAM_CONFIG1
= SDRAM_CONFIG1
;
154 *(vu_long
*)MPC5XXX_SDRAM_CONFIG2
= SDRAM_CONFIG2
;
155 __asm__
volatile ("sync");
159 *(vu_long
*)MPC5XXX_CDM_PORCFG
= SDRAM_TAPDELAY
;
160 __asm__
volatile ("sync");
163 /* find RAM size using SDRAM CS0 only */
165 test1
= get_ram_size((long *)CONFIG_SYS_SDRAM_BASE
, 0x80000000);
167 test2
= get_ram_size((long *)CONFIG_SYS_SDRAM_BASE
, 0x80000000);
175 /* memory smaller than 1MB is impossible */
176 if (dramsize
< (1 << 20)) {
180 /* set SDRAM CS0 size according to the amount of RAM found */
182 *(vu_long
*)MPC5XXX_SDRAM_CS0CFG
= 0x13 + __builtin_ffs(dramsize
>> 20) - 1;
184 *(vu_long
*)MPC5XXX_SDRAM_CS0CFG
= 0; /* disabled */
187 /* let SDRAM CS1 start right after CS0 */
188 *(vu_long
*)MPC5XXX_SDRAM_CS1CFG
= dramsize
+ 0x0000001e;/* 2G */
190 /* find RAM size using SDRAM CS1 only */
193 test2
= test1
= get_ram_size((long *)(CONFIG_SYS_SDRAM_BASE
+ dramsize
), 0x80000000);
196 test2
= get_ram_size((long *)(CONFIG_SYS_SDRAM_BASE
+ dramsize
), 0x80000000);
205 /* memory smaller than 1MB is impossible */
206 if (dramsize2
< (1 << 20)) {
210 /* set SDRAM CS1 size according to the amount of RAM found */
212 *(vu_long
*)MPC5XXX_SDRAM_CS1CFG
= dramsize
213 | (0x13 + __builtin_ffs(dramsize2
>> 20) - 1);
215 *(vu_long
*)MPC5XXX_SDRAM_CS1CFG
= dramsize
; /* disabled */
218 #else /* CONFIG_SYS_RAMBOOT */
220 /* retrieve size of memory connected to SDRAM CS0 */
221 dramsize
= *(vu_long
*)MPC5XXX_SDRAM_CS0CFG
& 0xFF;
222 if (dramsize
>= 0x13) {
223 dramsize
= (1 << (dramsize
- 0x13)) << 20;
228 /* retrieve size of memory connected to SDRAM CS1 */
229 dramsize2
= *(vu_long
*)MPC5XXX_SDRAM_CS1CFG
& 0xFF;
230 if (dramsize2
>= 0x13) {
231 dramsize2
= (1 << (dramsize2
- 0x13)) << 20;
236 #endif /* CONFIG_SYS_RAMBOOT */
239 * On MPC5200B we need to set the special configuration delay in the
240 * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM
241 * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
243 * "The SDelay should be written to a value of 0x00000004. It is
244 * required to account for changes caused by normal wafer processing
249 if ((SVR_MJREV(svr
) >= 2) &&
250 (PVR_MAJ(pvr
) == 1) && (PVR_MIN(pvr
) == 4)) {
252 *(vu_long
*)MPC5XXX_SDRAM_SDELAY
= 0x04;
253 __asm__
volatile ("sync");
258 return dramsize
+ dramsize2
;
261 #elif defined(CONFIG_MGT5100)
263 phys_size_t
initdram (int board_type
)
266 #ifndef CONFIG_SYS_RAMBOOT
269 /* setup and enable SDRAM chip selects */
270 *(vu_long
*)MPC5XXX_SDRAM_START
= 0x00000000;
271 *(vu_long
*)MPC5XXX_SDRAM_STOP
= 0x0000ffff;/* 2G */
272 *(vu_long
*)MPC5XXX_ADDECR
|= (1 << 22); /* Enable SDRAM */
273 __asm__
volatile ("sync");
275 /* setup config registers */
276 *(vu_long
*)MPC5XXX_SDRAM_CONFIG1
= SDRAM_CONFIG1
;
277 *(vu_long
*)MPC5XXX_SDRAM_CONFIG2
= SDRAM_CONFIG2
;
279 /* address select register */
280 *(vu_long
*)MPC5XXX_SDRAM_XLBSEL
= SDRAM_ADDRSEL
;
281 __asm__
volatile ("sync");
285 test1
= get_ram_size((long *)CONFIG_SYS_SDRAM_BASE
, 0x80000000);
287 test2
= get_ram_size((long *)CONFIG_SYS_SDRAM_BASE
, 0x80000000);
295 /* set SDRAM end address according to size */
296 *(vu_long
*)MPC5XXX_SDRAM_STOP
= ((dramsize
- 1) >> 15);
298 #else /* CONFIG_SYS_RAMBOOT */
300 /* Retrieve amount of SDRAM available */
301 dramsize
= ((*(vu_long
*)MPC5XXX_SDRAM_STOP
+ 1) << 15);
303 #endif /* CONFIG_SYS_RAMBOOT */
309 #error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
312 int checkboard (void)
314 #if defined (CONFIG_LITE5200B)
315 puts ("Board: Freescale Lite5200B\n");
316 #elif defined(CONFIG_MPC5200)
317 puts ("Board: Motorola MPC5200 (IceCube)\n");
318 #elif defined(CONFIG_MGT5100)
319 puts ("Board: Motorola MGT5100 (IceCube)\n");
324 void flash_preinit(void)
327 * Now, when we are in RAM, enable flash write
328 * access for detection process.
329 * Note that CS_BOOT cannot be cleared when
330 * executing in flash.
332 #if defined(CONFIG_MGT5100)
333 *(vu_long
*)MPC5XXX_ADDECR
&= ~(1 << 25); /* disable CS_BOOT */
334 *(vu_long
*)MPC5XXX_ADDECR
|= (1 << 16); /* enable CS0 */
336 *(vu_long
*)MPC5XXX_BOOTCS_CFG
&= ~0x1; /* clear RO */
339 void flash_afterinit(ulong size
)
341 if (size
== 0x800000) { /* adjust mapping */
342 *(vu_long
*)MPC5XXX_BOOTCS_START
= *(vu_long
*)MPC5XXX_CS0_START
=
343 START_REG(CONFIG_SYS_BOOTCS_START
| size
);
344 *(vu_long
*)MPC5XXX_BOOTCS_STOP
= *(vu_long
*)MPC5XXX_CS0_STOP
=
345 STOP_REG(CONFIG_SYS_BOOTCS_START
| size
, size
);
350 static struct pci_controller hose
;
352 extern void pci_mpc5xxx_init(struct pci_controller
*);
354 void pci_init_board(void)
356 pci_mpc5xxx_init(&hose
);
360 #if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
362 void init_ide_reset (void)
364 debug ("init_ide_reset\n");
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
;
370 *(vu_long
*) MPC5XXX_WU_GPIO_DATA_O
|= GPIO_PSC1_4
;
373 void ide_set_reset (int idereset
)
375 debug ("ide_reset(%d)\n", idereset
);
378 *(vu_long
*) MPC5XXX_WU_GPIO_DATA_O
&= ~GPIO_PSC1_4
;
379 /* Make a delay. MPC5200 spec says 25 usec min */
382 *(vu_long
*) MPC5XXX_WU_GPIO_DATA_O
|= GPIO_PSC1_4
;
387 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
389 ft_board_setup(void *blob
, bd_t
*bd
)
391 ft_cpu_setup(blob
, bd
);
395 int board_eth_init(bd_t
*bis
)
397 cpu_eth_init(bis
); /* Built in FEC comes first */
398 return pci_eth_init(bis
);