blob: 6e2d564c5bc228af47dffa9d1b8f3358855586d2 [file] [log] [blame]
Wolfgang Denk86ea5f92006-02-22 00:43:16 +01001/*
2 * (C) Copyright 2003-2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
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.
15 *
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.
20 *
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
25 */
26
27#include <common.h>
28#include <mpc5xxx.h>
29#include <pci.h>
30
Wolfgang Denk9e18a4b2006-06-14 16:48:18 +020031/* Two MT48LC8M32B2 for 32 MB */
32/* #include "mt48lc8m32b2-6-7.h" */
33
34/* One MT48LC16M32S2 for 64 MB */
35#include "mt48lc16m32s2-75.h"
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010036
Wolfgang Denkd87080b2006-03-31 18:32:53 +020037DECLARE_GLOBAL_DATA_PTR;
38
Stefan Roese58ad4972006-02-28 15:33:28 +010039extern flash_info_t flash_info[]; /* FLASH chips info */
40
Stefan Roesef18e8742006-03-01 17:00:49 +010041ulong flash_get_size (ulong base, int banknum);
42
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010043#ifndef CFG_RAMBOOT
44static void sdram_start (int hi_addr)
45{
46 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
47
48 /* unlock mode register */
49 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 | hi_addr_bit;
50 __asm__ volatile ("sync");
51
52 /* precharge all banks */
53 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 | hi_addr_bit;
54 __asm__ volatile ("sync");
55
56#if SDRAM_DDR
57 /* set mode register: extended mode */
58 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_EMODE;
59 __asm__ volatile ("sync");
60
61 /* set mode register: reset DLL */
62 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE | 0x04000000;
63 __asm__ volatile ("sync");
64#endif
65
66 /* precharge all banks */
67 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 | hi_addr_bit;
68 __asm__ volatile ("sync");
69
70 /* auto refresh */
71 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 | hi_addr_bit;
72 __asm__ volatile ("sync");
73
74 /* set mode register */
75 *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
76 __asm__ volatile ("sync");
77
78 /* normal operation */
79 *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
80 __asm__ volatile ("sync");
Wolfgang Denk9e18a4b2006-06-14 16:48:18 +020081
82 udelay(10);
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010083}
84#endif
85
86/*
87 * ATTENTION: Although partially referenced initdram does NOT make real use
88 * use of CFG_SDRAM_BASE. The code does not work if CFG_SDRAM_BASE
89 * is something else than 0x00000000.
90 */
91
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010092long int initdram (int board_type)
93{
94 ulong dramsize = 0;
95 ulong dramsize2 = 0;
96#ifndef CFG_RAMBOOT
97 ulong test1, test2;
98
99 /* setup SDRAM chip selects */
100 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001e;/* 2G at 0x0 */
101 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x80000000;/* disabled */
102 __asm__ volatile ("sync");
103
104 /* setup config registers */
105 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
106 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
107 __asm__ volatile ("sync");
108
109#if SDRAM_DDR
110 /* set tap delay */
111 *(vu_long *)MPC5XXX_CDM_PORCFG = SDRAM_TAPDELAY;
112 __asm__ volatile ("sync");
113#endif
114
115 /* find RAM size using SDRAM CS0 only */
116 sdram_start(0);
117 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
118 sdram_start(1);
119 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
120 if (test1 > test2) {
121 sdram_start(0);
122 dramsize = test1;
123 } else {
124 dramsize = test2;
125 }
126
127 /* memory smaller than 1MB is impossible */
128 if (dramsize < (1 << 20)) {
129 dramsize = 0;
130 }
131
132 /* set SDRAM CS0 size according to the amount of RAM found */
133 if (dramsize > 0) {
134 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 + __builtin_ffs(dramsize >> 20) - 1;
135 } else {
136 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
137 }
138
139 /* let SDRAM CS1 start right after CS0 */
140 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize + 0x0000001e;/* 2G */
141
142 /* find RAM size using SDRAM CS1 only */
143 if (!dramsize)
144 sdram_start(0);
145 test2 = test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x80000000);
146 if (!dramsize) {
147 sdram_start(1);
148 test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x80000000);
149 }
150 if (test1 > test2) {
151 sdram_start(0);
152 dramsize2 = test1;
153 } else {
154 dramsize2 = test2;
155 }
156
157 /* memory smaller than 1MB is impossible */
158 if (dramsize2 < (1 << 20)) {
159 dramsize2 = 0;
160 }
161
162 /* set SDRAM CS1 size according to the amount of RAM found */
163 if (dramsize2 > 0) {
164 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize
165 | (0x13 + __builtin_ffs(dramsize2 >> 20) - 1);
166 } else {
167 *(vu_long *)MPC5XXX_SDRAM_CS1CFG = dramsize; /* disabled */
168 }
169
170#else /* CFG_RAMBOOT */
171
172 /* retrieve size of memory connected to SDRAM CS0 */
173 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
174 if (dramsize >= 0x13) {
175 dramsize = (1 << (dramsize - 0x13)) << 20;
176 } else {
177 dramsize = 0;
178 }
179
180 /* retrieve size of memory connected to SDRAM CS1 */
181 dramsize2 = *(vu_long *)MPC5XXX_SDRAM_CS1CFG & 0xFF;
182 if (dramsize2 >= 0x13) {
183 dramsize2 = (1 << (dramsize2 - 0x13)) << 20;
184 } else {
185 dramsize2 = 0;
186 }
187
188#endif /* CFG_RAMBOOT */
189
190 return dramsize + dramsize2;
191}
192
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100193int checkboard (void)
194{
Wolfgang Denkc81eb1f2006-02-24 01:42:40 +0100195 puts ("Board: MCC200\n");
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100196 return 0;
197}
198
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100199int misc_init_r (void)
200{
Stefan Roese58ad4972006-02-28 15:33:28 +0100201 /*
202 * Adjust flash start and offset to detected values
203 */
204 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
205 gd->bd->bi_flashoffset = 0;
206
207 /*
208 * Check if boot FLASH isn't max size
209 */
210 if (gd->bd->bi_flashsize < (0 - CFG_FLASH_BASE)) {
211 /* adjust mapping */
212 *(vu_long *)MPC5XXX_BOOTCS_START = *(vu_long *)MPC5XXX_CS0_START =
213 START_REG(gd->bd->bi_flashstart);
214 *(vu_long *)MPC5XXX_BOOTCS_STOP = *(vu_long *)MPC5XXX_CS0_STOP =
215 STOP_REG(gd->bd->bi_flashstart, gd->bd->bi_flashsize);
216
217 /*
218 * Re-check to get correct base address
219 */
220 flash_get_size(gd->bd->bi_flashstart, CFG_MAX_FLASH_BANKS - 1);
221
222 /*
223 * Re-do flash protection upon new addresses
224 */
225 flash_protect (FLAG_PROTECT_CLEAR,
226 gd->bd->bi_flashstart, 0xffffffff,
227 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
228
229 /* Monitor protection ON by default */
230 flash_protect (FLAG_PROTECT_SET,
231 CFG_MONITOR_BASE, CFG_MONITOR_BASE + monitor_flash_len - 1,
232 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
233
234 /* Environment protection ON by default */
235 flash_protect (FLAG_PROTECT_SET,
236 CFG_ENV_ADDR,
237 CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1,
238 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
239
240 /* Redundant environment protection ON by default */
241 flash_protect (FLAG_PROTECT_SET,
242 CFG_ENV_ADDR_REDUND,
243 CFG_ENV_ADDR_REDUND + CFG_ENV_SIZE_REDUND - 1,
244 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
245 }
246
Wolfgang Denk3a5e2182006-04-06 15:03:42 +0200247 if (gd->bd->bi_flashsize > (32 << 20)) {
248 /* Unprotect the upper bank of the Flash */
249 *(volatile int*)MPC5XXX_CS0_CFG |= (1 << 6);
250 flash_protect (FLAG_PROTECT_CLEAR,
Wolfgang Denk5d7022b2006-06-09 21:19:21 +0200251 flash_info[0].start[0] + flash_info[0].size / 2,
Wolfgang Denk985b9502006-07-10 23:22:43 +0200252 (flash_info[0].start[0] - 1) + flash_info[0].size,
Wolfgang Denk3a5e2182006-04-06 15:03:42 +0200253 &flash_info[0]);
254 *(volatile int*)MPC5XXX_CS0_CFG &= ~(1 << 6);
255 }
256
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100257 return (0);
258}
259
260#ifdef CONFIG_PCI
261static struct pci_controller hose;
262
263extern void pci_mpc5xxx_init(struct pci_controller *);
264
265void pci_init_board(void)
266{
267 pci_mpc5xxx_init(&hose);
268}
269#endif
270
271#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
272
273void init_ide_reset (void)
274{
275 debug ("init_ide_reset\n");
276
277}
278
279void ide_set_reset (int idereset)
280{
281 debug ("ide_reset(%d)\n", idereset);
282
283}
284#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
285
286#if (CONFIG_COMMANDS & CFG_CMD_DOC)
287extern void doc_probe (ulong physadr);
288void doc_init (void)
289{
290 doc_probe (CFG_DOC_BASE);
291}
292#endif