]> Git Repo - u-boot.git/blame - cpu/ppc4xx/cpu.c
Fix CONFIG_440_GX define usage.
[u-boot.git] / cpu / ppc4xx / cpu.c
CommitLineData
c609719b 1/*
512f8d5d 2 * (C) Copyright 2000-2006
c609719b
WD
3 * Wolfgang Denk, DENX Software Engineering, [email protected].
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
c609719b
WD
25 * CPU specific code
26 *
27 * written or collected and sometimes rewritten by
28 * Magnus Damm <[email protected]>
29 *
30 * minor modifications by
31 * Wolfgang Denk <[email protected]>
32 */
33
34#include <common.h>
35#include <watchdog.h>
36#include <command.h>
37#include <asm/cache.h>
38#include <ppc4xx.h>
39
d87080b7
WD
40#if !defined(CONFIG_405)
41DECLARE_GLOBAL_DATA_PTR;
42#endif
43
c609719b 44
6e7fb6ea
SR
45#if defined(CONFIG_440)
46#define FREQ_EBC (sys_info.freqEPB)
47#else
48#define FREQ_EBC (sys_info.freqPLB / sys_info.pllExtBusDiv)
3d9569b2
SR
49#endif
50
6e7fb6ea
SR
51#if defined(CONFIG_405GP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
52
53#define PCI_ASYNC
54
55int pci_async_enabled(void)
56{
57#if defined(CONFIG_405GP)
58 return (mfdcr(strap) & PSR_PCI_ASYNC_EN);
3d9569b2
SR
59#endif
60
61#if defined(CONFIG_440EP) || defined(CONFIG_440GR)
6e7fb6ea
SR
62 unsigned long val;
63
7481266e 64 mfsdr(sdr_sdstp1, val);
6e7fb6ea
SR
65 return (val & SDR0_SDSTP1_PAME_MASK);
66#endif
67}
68#endif
69
a46726fd 70#if defined(CONFIG_PCI) && !defined(CONFIG_IOP480) && !defined(CONFIG_405)
6e7fb6ea
SR
71int pci_arbiter_enabled(void)
72{
73#if defined(CONFIG_405GP)
74 return (mfdcr(strap) & PSR_PCI_ARBIT_EN);
75#endif
3d9569b2 76
6e7fb6ea
SR
77#if defined(CONFIG_405EP)
78 return (mfdcr(cpc0_pci) & CPC0_PCI_ARBIT_EN);
3d9569b2
SR
79#endif
80
81#if defined(CONFIG_440GP)
6e7fb6ea
SR
82 return (mfdcr(cpc0_strp1) & CPC0_STRP1_PAE_MASK);
83#endif
84
6c5879f3
MB
85#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || \
86 defined(CONFIG_440GR) || defined(CONFIG_440SP) || \
87 defined(CONFIG_440SPE)
6e7fb6ea 88 unsigned long val;
3d9569b2 89
6e7fb6ea
SR
90 mfsdr(sdr_sdstp1, val);
91 return (val & SDR0_SDSTP1_PAE_MASK);
3d9569b2 92#endif
6e7fb6ea
SR
93}
94#endif
95
6c5879f3
MB
96#if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
97 defined(CONFIG_440GX) || defined(CONFIG_440SP) || defined(CONFIG_440SPE)
3d9569b2 98
6e7fb6ea 99#define I2C_BOOTROM
3d9569b2 100
6e7fb6ea
SR
101int i2c_bootrom_enabled(void)
102{
103#if defined(CONFIG_405EP)
104 return (mfdcr(cpc0_boot) & CPC0_BOOT_SEP);
3d9569b2
SR
105#endif
106
6c5879f3
MB
107#if defined(CONFIG_440GX) || defined(CONFIG_440EP) || \
108 defined(CONFIG_440GR) || defined(CONFIG_440SP) || \
109 defined(CONFIG_440SPE)
6e7fb6ea
SR
110 unsigned long val;
111
112 mfsdr(sdr_sdcs, val);
113 return (val & SDR0_SDCS_SDD);
114#endif
115}
3d9569b2
SR
116#endif
117
118
c609719b 119#if defined(CONFIG_440)
3d9569b2 120static int do_chip_reset(unsigned long sys0, unsigned long sys1);
c609719b
WD
121#endif
122
c609719b
WD
123
124int checkcpu (void)
125{
3d9569b2 126#if !defined(CONFIG_405) /* not used on Xilinx 405 FPGA implementations */
3d9569b2 127 uint pvr = get_pvr();
c609719b
WD
128 ulong clock = gd->cpu_clk;
129 char buf[32];
c609719b 130
3d9569b2
SR
131#if !defined(CONFIG_IOP480)
132 sys_info_t sys_info;
c609719b
WD
133
134 puts ("CPU: ");
135
136 get_sys_info(&sys_info);
137
3d9569b2
SR
138 puts("AMCC PowerPC 4");
139
140#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_405EP)
141 puts("05");
b867d705 142#endif
3d9569b2
SR
143#if defined(CONFIG_440)
144 puts("40");
c609719b 145#endif
3d9569b2 146
c609719b
WD
147 switch (pvr) {
148 case PVR_405GP_RB:
3d9569b2 149 puts("GP Rev. B");
c609719b 150 break;
3d9569b2 151
c609719b 152 case PVR_405GP_RC:
3d9569b2 153 puts("GP Rev. C");
c609719b 154 break;
3d9569b2 155
c609719b 156 case PVR_405GP_RD:
3d9569b2 157 puts("GP Rev. D");
c609719b 158 break;
3d9569b2 159
42dfe7a1 160#ifdef CONFIG_405GP
3d9569b2
SR
161 case PVR_405GP_RE: /* 405GP rev E and 405CR rev C have same PVR */
162 puts("GP Rev. E");
c609719b
WD
163 break;
164#endif
3d9569b2 165
c609719b 166 case PVR_405CR_RA:
3d9569b2 167 puts("CR Rev. A");
c609719b 168 break;
3d9569b2 169
c609719b 170 case PVR_405CR_RB:
3d9569b2 171 puts("CR Rev. B");
c609719b 172 break;
c609719b 173
3d9569b2
SR
174#ifdef CONFIG_405CR
175 case PVR_405CR_RC: /* 405GP rev E and 405CR rev C have same PVR */
176 puts("CR Rev. C");
177 break;
c609719b
WD
178#endif
179
3d9569b2
SR
180 case PVR_405GPR_RB:
181 puts("GPr Rev. B");
182 break;
c609719b 183
3d9569b2
SR
184 case PVR_405EP_RB:
185 puts("EP Rev. B");
186 break;
c609719b
WD
187
188#if defined(CONFIG_440)
8bde7f77 189 case PVR_440GP_RB:
c157d8e2 190 puts("GP Rev. B");
4d816774
WD
191 /* See errata 1.12: CHIP_4 */
192 if ((mfdcr(cpc0_sys0) != mfdcr(cpc0_strp0)) ||
193 (mfdcr(cpc0_sys1) != mfdcr(cpc0_strp1)) ){
194 puts ( "\n\t CPC0_SYSx DCRs corrupted. "
195 "Resetting chip ...\n");
196 udelay( 1000 * 1000 ); /* Give time for serial buf to clear */
197 do_chip_reset ( mfdcr(cpc0_strp0),
198 mfdcr(cpc0_strp1) );
199 }
c609719b 200 break;
3d9569b2 201
8bde7f77 202 case PVR_440GP_RC:
c157d8e2 203 puts("GP Rev. C");
ba56f625 204 break;
3d9569b2 205
ba56f625 206 case PVR_440GX_RA:
c157d8e2 207 puts("GX Rev. A");
ba56f625 208 break;
3d9569b2 209
ba56f625 210 case PVR_440GX_RB:
c157d8e2 211 puts("GX Rev. B");
c609719b 212 break;
3d9569b2 213
0a7c5391 214 case PVR_440GX_RC:
c157d8e2 215 puts("GX Rev. C");
0a7c5391 216 break;
3d9569b2 217
57275b69
SR
218 case PVR_440GX_RF:
219 puts("GX Rev. F");
220 break;
3d9569b2 221
c157d8e2
SR
222 case PVR_440EP_RA:
223 puts("EP Rev. A");
224 break;
3d9569b2 225
9a8d82fd
SR
226#ifdef CONFIG_440EP
227 case PVR_440EP_RB: /* 440EP rev B and 440GR rev A have same PVR */
c157d8e2
SR
228 puts("EP Rev. B");
229 break;
512f8d5d
SR
230
231 case PVR_440EP_RC: /* 440EP rev C and 440GR rev B have same PVR */
232 puts("EP Rev. C");
233 break;
9a8d82fd 234#endif /* CONFIG_440EP */
3d9569b2 235
9a8d82fd
SR
236#ifdef CONFIG_440GR
237 case PVR_440GR_RA: /* 440EP rev B and 440GR rev A have same PVR */
238 puts("GR Rev. A");
239 break;
512f8d5d 240
5770a1e4 241 case PVR_440GR_RB: /* 440EP rev C and 440GR rev B have same PVR */
512f8d5d
SR
242 puts("GR Rev. B");
243 break;
9a8d82fd 244#endif /* CONFIG_440GR */
3d9569b2
SR
245#endif /* CONFIG_440 */
246
6e7fb6ea
SR
247 case PVR_440SP_RA:
248 puts("SP Rev. A");
249 break;
250
251 case PVR_440SP_RB:
252 puts("SP Rev. B");
253 break;
254
6c5879f3
MB
255 case PVR_440SPe_RA:
256 puts("SPe 3GA533C");
257 break;
258 case PVR_440SPe_RB:
259 puts("SPe 3GB533C");
260 break;
8bde7f77 261 default:
17f50f22 262 printf (" UNKNOWN (PVR=%08x)", pvr);
c609719b
WD
263 break;
264 }
3d9569b2
SR
265
266 printf (" at %s MHz (PLB=%lu, OPB=%lu, EBC=%lu MHz)\n", strmhz(buf, clock),
267 sys_info.freqPLB / 1000000,
268 sys_info.freqPLB / sys_info.pllOpbDiv / 1000000,
269 FREQ_EBC / 1000000);
270
6e7fb6ea
SR
271#if defined(I2C_BOOTROM)
272 printf (" I2C boot EEPROM %sabled\n", i2c_bootrom_enabled() ? "en" : "dis");
3d9569b2
SR
273#endif
274
6e7fb6ea
SR
275#if defined(CONFIG_PCI)
276 printf (" Internal PCI arbiter %sabled", pci_arbiter_enabled() ? "en" : "dis");
3d9569b2
SR
277#endif
278
6e7fb6ea
SR
279#if defined(PCI_ASYNC)
280 if (pci_async_enabled()) {
3d9569b2
SR
281 printf (", PCI async ext clock used");
282 } else {
283 printf (", PCI sync clock at %lu MHz",
284 sys_info.freqPLB / sys_info.pllPciDiv / 1000000);
285 }
c609719b 286#endif
3d9569b2 287
6e7fb6ea 288#if defined(CONFIG_PCI)
3d9569b2
SR
289 putc('\n');
290#endif
291
292#if defined(CONFIG_405EP)
293 printf (" 16 kB I-Cache 16 kB D-Cache");
294#elif defined(CONFIG_440)
295 printf (" 32 kB I-Cache 32 kB D-Cache");
296#else
297 printf (" 16 kB I-Cache %d kB D-Cache",
298 ((pvr | 0x00000001) == PVR_405GPR_RB) ? 16 : 8);
299#endif
300#endif /* !defined(CONFIG_IOP480) */
301
302#if defined(CONFIG_IOP480)
303 printf ("PLX IOP480 (PVR=%08x)", pvr);
304 printf (" at %s MHz:", strmhz(buf, clock));
305 printf (" %u kB I-Cache", 4);
306 printf (" %u kB D-Cache", 2);
307#endif
308
309#endif /* !defined(CONFIG_405) */
310
311 putc ('\n');
c609719b
WD
312
313 return 0;
314}
315
316
317/* ------------------------------------------------------------------------- */
318
8bde7f77 319int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
c609719b 320{
c157d8e2
SR
321#if defined(CONFIG_YOSEMITE) || defined(CONFIG_YELLOWSTONE)
322 /*give reset to BCSR*/
323 *(unsigned char*)(CFG_BCSR_BASE | 0x06) = 0x09;
324
325#else
326
8bde7f77
WD
327 /*
328 * Initiate system reset in debug control register DBCR
329 */
c609719b
WD
330 __asm__ __volatile__("lis 3, 0x3000" ::: "r3");
331#if defined(CONFIG_440)
332 __asm__ __volatile__("mtspr 0x134, 3");
333#else
334 __asm__ __volatile__("mtspr 0x3f2, 3");
335#endif
c157d8e2
SR
336
337#endif/* defined(CONFIG_YOSEMITE) || defined(CONFIG_YELLOWSTONE)*/
c609719b
WD
338 return 1;
339}
340
341#if defined(CONFIG_440)
3d9569b2 342static int do_chip_reset (unsigned long sys0, unsigned long sys1)
c609719b 343{
4d816774
WD
344 /* Changes to cpc0_sys0 and cpc0_sys1 require chip
345 * reset.
346 */
347 mtdcr (cntrl0, mfdcr (cntrl0) | 0x80000000); /* Set SWE */
348 mtdcr (cpc0_sys0, sys0);
349 mtdcr (cpc0_sys1, sys1);
350 mtdcr (cntrl0, mfdcr (cntrl0) & ~0x80000000); /* Clr SWE */
351 mtspr (dbcr0, 0x20000000); /* Reset the chip */
352
353 return 1;
c609719b
WD
354}
355#endif
356
357
358/*
359 * Get timebase clock frequency
360 */
361unsigned long get_tbclk (void)
362{
3d9569b2 363#if !defined(CONFIG_IOP480)
c609719b
WD
364 sys_info_t sys_info;
365
366 get_sys_info(&sys_info);
367 return (sys_info.freqProcessor);
c609719b 368#else
3d9569b2 369 return (66000000);
c609719b
WD
370#endif
371
372}
373
374
375#if defined(CONFIG_WATCHDOG)
376void
377watchdog_reset(void)
378{
379 int re_enable = disable_interrupts();
380 reset_4xx_watchdog();
381 if (re_enable) enable_interrupts();
382}
383
384void
385reset_4xx_watchdog(void)
386{
387 /*
388 * Clear TSR(WIS) bit
389 */
390 mtspr(tsr, 0x40000000);
391}
392#endif /* CONFIG_WATCHDOG */
This page took 0.138134 seconds and 4 git commands to generate.