blob: baf8b8193298974528c75849ff0181d9c8491f3f [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Andy Fleming1ced1212008-02-06 01:19:40 -06002 * Copyright 2004,2007,2008 Freescale Semiconductor, Inc.
wdenk42d1f032003-10-15 23:53:47 +00003 * (C) Copyright 2002, 2003 Motorola Inc.
4 * Xianghua Xiao (X.Xiao@motorola.com)
5 *
6 * (C) Copyright 2000
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
31#include <asm/cache.h>
Sergei Poselenov740280e2008-06-06 15:42:40 +020032#include <asm/io.h>
wdenk42d1f032003-10-15 23:53:47 +000033
James Yang591933c2008-02-08 16:44:53 -060034DECLARE_GLOBAL_DATA_PTR;
35
Andy Fleming1ced1212008-02-06 01:19:40 -060036struct cpu_type cpu_type_list [] = {
Kumar Gala4dbdb762008-06-10 16:53:46 -050037 CPU_TYPE_ENTRY(8533, 8533),
38 CPU_TYPE_ENTRY(8533, 8533_E),
39 CPU_TYPE_ENTRY(8540, 8540),
40 CPU_TYPE_ENTRY(8541, 8541),
41 CPU_TYPE_ENTRY(8541, 8541_E),
42 CPU_TYPE_ENTRY(8543, 8543),
43 CPU_TYPE_ENTRY(8543, 8543_E),
44 CPU_TYPE_ENTRY(8544, 8544),
45 CPU_TYPE_ENTRY(8544, 8544_E),
46 CPU_TYPE_ENTRY(8545, 8545),
47 CPU_TYPE_ENTRY(8545, 8545_E),
48 CPU_TYPE_ENTRY(8547, 8547_E),
49 CPU_TYPE_ENTRY(8548, 8548),
50 CPU_TYPE_ENTRY(8548, 8548_E),
51 CPU_TYPE_ENTRY(8555, 8555),
52 CPU_TYPE_ENTRY(8555, 8555_E),
53 CPU_TYPE_ENTRY(8560, 8560),
54 CPU_TYPE_ENTRY(8567, 8567),
55 CPU_TYPE_ENTRY(8567, 8567_E),
56 CPU_TYPE_ENTRY(8568, 8568),
57 CPU_TYPE_ENTRY(8568, 8568_E),
58 CPU_TYPE_ENTRY(8572, 8572),
59 CPU_TYPE_ENTRY(8572, 8572_E),
Andy Fleming1ced1212008-02-06 01:19:40 -060060};
61
Anatolij Gustschin96026d42008-06-12 12:40:11 +020062struct cpu_type *identify_cpu(u32 ver)
Kumar Gala4dbdb762008-06-10 16:53:46 -050063{
64 int i;
65 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
66 if (cpu_type_list[i].soc_ver == ver)
67 return &cpu_type_list[i];
68
69 return NULL;
70}
71
wdenk42d1f032003-10-15 23:53:47 +000072int checkcpu (void)
73{
wdenk97d80fc2004-06-09 00:34:46 +000074 sys_info_t sysinfo;
75 uint lcrr; /* local bus clock ratio register */
76 uint clkdiv; /* clock divider portion of lcrr */
77 uint pvr, svr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050078 uint fam;
wdenk97d80fc2004-06-09 00:34:46 +000079 uint ver;
80 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050081 struct cpu_type *cpu;
Kumar Galaee1e35b2008-05-29 01:21:24 -050082#ifdef CONFIG_DDR_CLK_FREQ
Kumar Galad4357932007-12-07 04:59:26 -060083 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Kumar Galaee1e35b2008-05-29 01:21:24 -050084 u32 ddr_ratio = ((gur->porpllsr) & 0x00003e00) >> 9;
85#else
86 u32 ddr_ratio = 0;
87#endif
wdenk42d1f032003-10-15 23:53:47 +000088
wdenk97d80fc2004-06-09 00:34:46 +000089 svr = get_svr();
Andy Fleming1ced1212008-02-06 01:19:40 -060090 ver = SVR_SOC_VER(svr);
wdenk97d80fc2004-06-09 00:34:46 +000091 major = SVR_MAJ(svr);
92 minor = SVR_MIN(svr);
93
wdenk6c9e7892005-03-15 22:56:53 +000094 puts("CPU: ");
Andy Fleming1ced1212008-02-06 01:19:40 -060095
Kumar Gala4dbdb762008-06-10 16:53:46 -050096 cpu = identify_cpu(ver);
97 if (cpu) {
98 puts(cpu->name);
Andy Fleming1ced1212008-02-06 01:19:40 -060099
Kumar Gala4dbdb762008-06-10 16:53:46 -0500100 if (svr & 0x80000)
101 puts("E");
102 } else {
wdenk97d80fc2004-06-09 00:34:46 +0000103 puts("Unknown");
Kumar Gala4dbdb762008-06-10 16:53:46 -0500104 }
Andy Fleming1ced1212008-02-06 01:19:40 -0600105
wdenk97d80fc2004-06-09 00:34:46 +0000106 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +0000107
wdenk6c9e7892005-03-15 22:56:53 +0000108 pvr = get_pvr();
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500109 fam = PVR_FAM(pvr);
wdenk6c9e7892005-03-15 22:56:53 +0000110 ver = PVR_VER(pvr);
111 major = PVR_MAJ(pvr);
112 minor = PVR_MIN(pvr);
113
114 printf("Core: ");
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500115 switch (fam) {
116 case PVR_FAM(PVR_85xx):
wdenk6c9e7892005-03-15 22:56:53 +0000117 puts("E500");
118 break;
119 default:
120 puts("Unknown");
121 break;
122 }
123 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
124
wdenk97d80fc2004-06-09 00:34:46 +0000125 get_sys_info(&sysinfo);
126
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500127 puts("Clock Configuration:\n");
Kumar Gala022f1212008-04-21 09:28:36 -0500128 printf(" CPU:%4lu MHz, ", DIV_ROUND_UP(sysinfo.freqProcessor,1000000));
129 printf("CCB:%4lu MHz,\n", DIV_ROUND_UP(sysinfo.freqSystemBus,1000000));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500130
Kumar Galad4357932007-12-07 04:59:26 -0600131 switch (ddr_ratio) {
132 case 0x0:
James Yange9ea6792008-02-08 16:46:27 -0600133 printf(" DDR:%4lu MHz (%lu MT/s data rate), ",
Kumar Gala022f1212008-04-21 09:28:36 -0500134 DIV_ROUND_UP(sysinfo.freqDDRBus,2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
Kumar Galad4357932007-12-07 04:59:26 -0600135 break;
136 case 0x7:
James Yange9ea6792008-02-08 16:46:27 -0600137 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Synchronous), ",
Kumar Gala022f1212008-04-21 09:28:36 -0500138 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus, 1000000));
Kumar Galad4357932007-12-07 04:59:26 -0600139 break;
140 default:
James Yange9ea6792008-02-08 16:46:27 -0600141 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Asynchronous), ",
Kumar Gala022f1212008-04-21 09:28:36 -0500142 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
Kumar Galad4357932007-12-07 04:59:26 -0600143 break;
144 }
wdenk97d80fc2004-06-09 00:34:46 +0000145
146#if defined(CFG_LBC_LCRR)
147 lcrr = CFG_LBC_LCRR;
148#else
149 {
Kumar Gala04db4002007-11-29 02:10:09 -0600150 volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
wdenk97d80fc2004-06-09 00:34:46 +0000151
152 lcrr = lbc->lcrr;
153 }
154#endif
155 clkdiv = lcrr & 0x0f;
156 if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
Andy Fleming151d5d92007-04-23 01:32:22 -0500157#if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500158 /*
159 * Yes, the entire PQ38 family use the same
160 * bit-representation for twice the clock divider values.
161 */
162 clkdiv *= 2;
163#endif
wdenk97d80fc2004-06-09 00:34:46 +0000164 printf("LBC:%4lu MHz\n",
Kumar Gala022f1212008-04-21 09:28:36 -0500165 DIV_ROUND_UP(sysinfo.freqSystemBus, 1000000) / clkdiv);
wdenk97d80fc2004-06-09 00:34:46 +0000166 } else {
wdenk6c9e7892005-03-15 22:56:53 +0000167 printf("LBC: unknown (lcrr: 0x%08x)\n", lcrr);
wdenk97d80fc2004-06-09 00:34:46 +0000168 }
169
Andy Fleming1ced1212008-02-06 01:19:40 -0600170#ifdef CONFIG_CPM2
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200171 printf("CPM: %lu Mhz\n", sysinfo.freqSystemBus / 1000000);
Andy Fleming1ced1212008-02-06 01:19:40 -0600172#endif
wdenk97d80fc2004-06-09 00:34:46 +0000173
wdenk6c9e7892005-03-15 22:56:53 +0000174 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000175
176 return 0;
177}
178
179
180/* ------------------------------------------------------------------------- */
181
182int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
183{
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800184 uint pvr;
185 uint ver;
Sergei Poselenov793670c2008-05-08 14:17:08 +0200186 unsigned long val, msr;
187
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800188 pvr = get_pvr();
189 ver = PVR_VER(pvr);
Sergei Poselenov793670c2008-05-08 14:17:08 +0200190
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800191 if (ver & 1){
192 /* e500 v2 core has reset control register */
193 volatile unsigned int * rstcr;
194 rstcr = (volatile unsigned int *)(CFG_IMMR + 0xE00B0);
Wolfgang Denk2f152782007-05-05 18:23:11 +0200195 *rstcr = 0x2; /* HRESET_REQ */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200196 udelay(100);
197 }
198
wdenk42d1f032003-10-15 23:53:47 +0000199 /*
Sergei Poselenov793670c2008-05-08 14:17:08 +0200200 * Fallthrough if the code above failed
wdenk42d1f032003-10-15 23:53:47 +0000201 * Initiate hard reset in debug control register DBCR0
202 * Make sure MSR[DE] = 1
203 */
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400204
Sergei Poselenov793670c2008-05-08 14:17:08 +0200205 msr = mfmsr ();
206 msr |= MSR_DE;
207 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400208
Sergei Poselenov793670c2008-05-08 14:17:08 +0200209 val = mfspr(DBCR0);
210 val |= 0x70000000;
211 mtspr(DBCR0,val);
212
wdenk42d1f032003-10-15 23:53:47 +0000213 return 1;
214}
215
216
217/*
218 * Get timebase clock frequency
219 */
220unsigned long get_tbclk (void)
221{
James Yang591933c2008-02-08 16:44:53 -0600222 return (gd->bus_clk + 4UL)/8UL;
wdenk42d1f032003-10-15 23:53:47 +0000223}
224
225
226#if defined(CONFIG_WATCHDOG)
227void
228watchdog_reset(void)
229{
230 int re_enable = disable_interrupts();
231 reset_85xx_watchdog();
232 if (re_enable) enable_interrupts();
233}
234
235void
236reset_85xx_watchdog(void)
237{
238 /*
239 * Clear TSR(WIS) bit by writing 1
240 */
241 unsigned long val;
Andy Fleming03b81b42007-04-23 01:44:44 -0500242 val = mfspr(SPRN_TSR);
243 val |= TSR_WIS;
244 mtspr(SPRN_TSR, val);
wdenk42d1f032003-10-15 23:53:47 +0000245}
246#endif /* CONFIG_WATCHDOG */
247
248#if defined(CONFIG_DDR_ECC)
wdenk42d1f032003-10-15 23:53:47 +0000249void dma_init(void) {
Kumar Gala04db4002007-11-29 02:10:09 -0600250 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000251
252 dma->satr0 = 0x02c40000;
253 dma->datr0 = 0x02c40000;
Andy Fleming03b81b42007-04-23 01:44:44 -0500254 dma->sr0 = 0xfffffff; /* clear any errors */
wdenk42d1f032003-10-15 23:53:47 +0000255 asm("sync; isync; msync");
256 return;
257}
258
259uint dma_check(void) {
Kumar Gala04db4002007-11-29 02:10:09 -0600260 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000261 volatile uint status = dma->sr0;
262
263 /* While the channel is busy, spin */
264 while((status & 4) == 4) {
265 status = dma->sr0;
266 }
267
Andy Fleming03b81b42007-04-23 01:44:44 -0500268 /* clear MR0[CS] channel start bit */
269 dma->mr0 &= 0x00000001;
270 asm("sync;isync;msync");
271
wdenk42d1f032003-10-15 23:53:47 +0000272 if (status != 0) {
273 printf ("DMA Error: status = %x\n", status);
274 }
275 return status;
276}
277
278int dma_xfer(void *dest, uint count, void *src) {
Kumar Gala04db4002007-11-29 02:10:09 -0600279 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000280
281 dma->dar0 = (uint) dest;
282 dma->sar0 = (uint) src;
283 dma->bcr0 = count;
284 dma->mr0 = 0xf000004;
285 asm("sync;isync;msync");
286 dma->mr0 = 0xf000005;
287 asm("sync;isync;msync");
288 return dma_check();
289}
290#endif
Sergei Poselenov740280e2008-06-06 15:42:40 +0200291/*
292 * Configures a UPM. Currently, the loop fields in MxMR (RLF, WLF and TLF)
293 * are hardcoded as "1"."size" is the number or entries, not a sizeof.
294 */
295void upmconfig (uint upm, uint * table, uint size)
296{
297 int i, mdr, mad, old_mad = 0;
298 volatile u32 *mxmr;
299 volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
300 int loopval = 0x00004440;
301 volatile u32 *brp,*orp;
302 volatile u8* dummy = NULL;
303 int upmmask;
304
305 switch (upm) {
306 case UPMA:
307 mxmr = &lbc->mamr;
308 upmmask = BR_MS_UPMA;
309 break;
310 case UPMB:
311 mxmr = &lbc->mbmr;
312 upmmask = BR_MS_UPMB;
313 break;
314 case UPMC:
315 mxmr = &lbc->mcmr;
316 upmmask = BR_MS_UPMC;
317 break;
318 default:
319 printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
320 hang();
321 }
322
323 /* Find the address for the dummy write transaction */
324 for (brp = &lbc->br0, orp = &lbc->or0, i = 0; i < 8;
325 i++, brp += 2, orp += 2) {
326
327 /* Look for a valid BR with selected UPM */
328 if ((in_be32(brp) & (BR_V | upmmask)) == (BR_V | upmmask)) {
329 dummy = (volatile u8*)(in_be32(brp) >> BR_BA_SHIFT);
330 break;
331 }
332 }
333
334 if (i == 8) {
335 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
336 hang();
337 }
338
339 for (i = 0; i < size; i++) {
340 /* 1 */
341 out_be32(mxmr, loopval | 0x10000000 | i); /* OP_WRITE */
342 /* 2 */
343 out_be32(&lbc->mdr, table[i]);
344 /* 3 */
345 mdr = in_be32(&lbc->mdr);
346 /* 4 */
347 *(volatile u8 *)dummy = 0;
348 /* 5 */
349 do {
350 mad = in_be32(mxmr) & 0x3f;
351 } while (mad <= old_mad && !(!mad && i == (size-1)));
352 old_mad = mad;
353 }
354 out_be32(mxmr, loopval); /* OP_NORMAL */
355}