KIrkwood: Sheevaplug: kwimage configuration
[u-boot-kw.git] / board / icecube / icecube.c
blob75244610cff33b9fc3aca7f370c3f0ea51a7629c
1 /*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
8 * See file CREDITS for list of people who contributed to this
9 * project.
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,
24 * MA 02111-1307 USA
27 #include <common.h>
28 #include <mpc5xxx.h>
29 #include <pci.h>
30 #include <asm/processor.h>
31 #include <libfdt.h>
32 #include <netdev.h>
34 #if defined(CONFIG_LITE5200B)
35 #include "mt46v32m16.h"
36 #else
37 # if defined(CONFIG_MPC5200_DDR)
38 # include "mt46v16m16-75.h"
39 # else
40 #include "mt48lc16m16a2-75.h"
41 # endif
42 #endif
44 #ifdef CONFIG_LITE5200B_PM
45 /* u-boot part of low-power mode implementation */
46 #define SAVED_ADDR (*(void **)0x00000000)
47 #define PSC2_4 0x02
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)
61 return;
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");
69 udelay(10);
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",
83 linux_wakeup);
84 linux_wakeup();
86 #else
87 #define lite5200b_wakeup()
88 #endif
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");
103 #if SDRAM_DDR
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");
111 #endif
113 /* precharge all banks */
114 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 | hi_addr_bit;
115 __asm__ volatile ("sync");
117 /* auto refresh */
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");
129 #endif
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)
140 ulong dramsize = 0;
141 ulong dramsize2 = 0;
142 uint svr, pvr;
144 #ifndef CONFIG_SYS_RAMBOOT
145 ulong test1, test2;
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");
157 #if SDRAM_DDR
158 /* set tap delay */
159 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
160 __asm__ volatile ("sync");
161 #endif
163 /* find RAM size using SDRAM CS0 only */
164 sdram_start(0);
165 test1 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
166 sdram_start(1);
167 test2 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
168 if (test1 > test2) {
169 sdram_start(0);
170 dramsize = test1;
171 } else {
172 dramsize = test2;
175 /* memory smaller than 1MB is impossible */
176 if (dramsize < (1 << 20)) {
177 dramsize = 0;
180 /* set SDRAM CS0 size according to the amount of RAM found */
181 if (dramsize > 0) {
182 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 + __builtin_ffs(dramsize >> 20) - 1;
183 } else {
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 */
191 if (!dramsize)
192 sdram_start(0);
193 test2 = test1 = get_ram_size((long *)(CONFIG_SYS_SDRAM_BASE + dramsize), 0x80000000);
194 if (!dramsize) {
195 sdram_start(1);
196 test2 = get_ram_size((long *)(CONFIG_SYS_SDRAM_BASE + dramsize), 0x80000000);
198 if (test1 > test2) {
199 sdram_start(0);
200 dramsize2 = test1;
201 } else {
202 dramsize2 = test2;
205 /* memory smaller than 1MB is impossible */
206 if (dramsize2 < (1 << 20)) {
207 dramsize2 = 0;
210 /* set SDRAM CS1 size according to the amount of RAM found */
211 if (dramsize2 > 0) {
212 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
213 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
214 } else {
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;
224 } else {
225 dramsize = 0;
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;
232 } else {
233 dramsize2 = 0;
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
245 * parameters."
247 svr = get_svr();
248 pvr = get_pvr();
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");
256 lite5200b_wakeup();
258 return dramsize + dramsize2;
261 #elif defined(CONFIG_MGT5100)
263 phys_size_t initdram (int board_type)
265 ulong dramsize = 0;
266 #ifndef CONFIG_SYS_RAMBOOT
267 ulong test1, test2;
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");
283 /* find RAM size */
284 sdram_start(0);
285 test1 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
286 sdram_start(1);
287 test2 = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000);
288 if (test1 > test2) {
289 sdram_start(0);
290 dramsize = test1;
291 } else {
292 dramsize = test2;
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 */
305 return dramsize;
308 #else
309 #error Neither CONFIG_MPC5200 or CONFIG_MGT5100 defined
310 #endif
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");
320 #endif
321 return 0;
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 */
335 #endif
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);
349 #ifdef CONFIG_PCI
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);
358 #endif
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;
369 /* Deassert reset */
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);
377 if (idereset) {
378 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4;
379 /* Make a delay. MPC5200 spec says 25 usec min */
380 udelay(500000);
381 } else {
382 *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
385 #endif
387 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
388 void
389 ft_board_setup(void *blob, bd_t *bd)
391 ft_cpu_setup(blob, bd);
393 #endif
395 int board_eth_init(bd_t *bis)
397 cpu_eth_init(bis); /* Built in FEC comes first */
398 return pci_eth_init(bis);