blob: 790a6a4a4501c5b5453343663b889baaa651f4fe [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +08002 * Copyright 2004,2007-2010 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
Andy Fleming75b9d4a2008-08-31 16:33:26 -050028#include <config.h>
wdenk42d1f032003-10-15 23:53:47 +000029#include <common.h>
30#include <watchdog.h>
31#include <command.h>
Andy Fleming80522dc2008-10-30 16:51:33 -050032#include <fsl_esdhc.h>
wdenk42d1f032003-10-15 23:53:47 +000033#include <asm/cache.h>
Sergei Poselenov740280e2008-06-06 15:42:40 +020034#include <asm/io.h>
Becky Bruce199e2622010-06-17 11:37:25 -050035#include <asm/mmu.h>
36#include <asm/fsl_law.h>
wdenk42d1f032003-10-15 23:53:47 +000037
James Yang591933c2008-02-08 16:44:53 -060038DECLARE_GLOBAL_DATA_PTR;
39
wdenk42d1f032003-10-15 23:53:47 +000040int checkcpu (void)
41{
wdenk97d80fc2004-06-09 00:34:46 +000042 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000043 uint pvr, svr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050044 uint fam;
wdenk97d80fc2004-06-09 00:34:46 +000045 uint ver;
46 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050047 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020048 char buf1[32], buf2[32];
Kumar Gala9ce3c222010-04-13 11:07:57 -050049#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala9ce3c222010-04-13 11:07:57 -050051#endif /* CONFIG_FSL_CORENET */
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080052#ifdef CONFIG_DDR_CLK_FREQ
53 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
54 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
55#else
Kumar Gala39aaca12009-03-19 02:46:19 -050056#ifdef CONFIG_FSL_CORENET
57 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
58 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
59#else
Kumar Galaee1e35b2008-05-29 01:21:24 -050060 u32 ddr_ratio = 0;
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080061#endif /* CONFIG_FSL_CORENET */
Kumar Gala39aaca12009-03-19 02:46:19 -050062#endif /* CONFIG_DDR_CLK_FREQ */
Haiying Wang2fc7eb02009-01-15 11:58:35 -050063 int i;
wdenk42d1f032003-10-15 23:53:47 +000064
wdenk97d80fc2004-06-09 00:34:46 +000065 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000066 major = SVR_MAJ(svr);
Kumar Galaef50d6c2008-08-12 11:14:19 -050067#ifdef CONFIG_MPC8536
68 major &= 0x7; /* the msb of this nibble is a mfg code */
69#endif
wdenk97d80fc2004-06-09 00:34:46 +000070 minor = SVR_MIN(svr);
71
Poonam Aggrwal0e870982009-07-31 12:08:14 +053072 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-09-03 19:42:40 +053073#ifndef CONFIG_MP
74 puts("Unicore software on multiprocessor system!!\n"
75 "To enable mutlticore build define CONFIG_MP\n");
76#endif
Poonam Aggrwal0e870982009-07-31 12:08:14 +053077 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);
78 printf("CPU%d: ", pic->whoami);
79 } else {
80 puts("CPU: ");
81 }
Andy Fleming1ced1212008-02-06 01:19:40 -060082
Poonam Aggrwal0e870982009-07-31 12:08:14 +053083 cpu = gd->cpu;
84
Poonam Aggrwal58442dc2009-09-02 13:35:21 +053085 puts(cpu->name);
86 if (IS_E_PROCESSOR(svr))
87 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -060088
wdenk97d80fc2004-06-09 00:34:46 +000089 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +000090
wdenk6c9e7892005-03-15 22:56:53 +000091 pvr = get_pvr();
Jon Loeligerd9b94f22005-07-25 14:05:07 -050092 fam = PVR_FAM(pvr);
wdenk6c9e7892005-03-15 22:56:53 +000093 ver = PVR_VER(pvr);
94 major = PVR_MAJ(pvr);
95 minor = PVR_MIN(pvr);
96
97 printf("Core: ");
Jon Loeligerd9b94f22005-07-25 14:05:07 -050098 switch (fam) {
99 case PVR_FAM(PVR_85xx):
wdenk6c9e7892005-03-15 22:56:53 +0000100 puts("E500");
101 break;
102 default:
103 puts("Unknown");
104 break;
105 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500106
107 if (PVR_MEM(pvr) == 0x03)
108 puts("MC");
109
wdenk6c9e7892005-03-15 22:56:53 +0000110 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
111
wdenk97d80fc2004-06-09 00:34:46 +0000112 get_sys_info(&sysinfo);
113
Kumar Galab29dee32009-02-04 09:35:57 -0600114 puts("Clock Configuration:");
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530115 for (i = 0; i < cpu_numcores(); i++) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100116 if (!(i & 3))
117 printf ("\n ");
Haiying Wang2fc7eb02009-01-15 11:58:35 -0500118 printf("CPU%d:%-4s MHz, ",
119 i,strmhz(buf1, sysinfo.freqProcessor[i]));
Kumar Galab29dee32009-02-04 09:35:57 -0600120 }
121 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500122
Kumar Gala39aaca12009-03-19 02:46:19 -0500123#ifdef CONFIG_FSL_CORENET
124 if (ddr_sync == 1) {
125 printf(" DDR:%-4s MHz (%s MT/s data rate) "
126 "(Synchronous), ",
127 strmhz(buf1, sysinfo.freqDDRBus/2),
128 strmhz(buf2, sysinfo.freqDDRBus));
129 } else {
130 printf(" DDR:%-4s MHz (%s MT/s data rate) "
131 "(Asynchronous), ",
132 strmhz(buf1, sysinfo.freqDDRBus/2),
133 strmhz(buf2, sysinfo.freqDDRBus));
134 }
135#else
Kumar Galad4357932007-12-07 04:59:26 -0600136 switch (ddr_ratio) {
137 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200138 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
139 strmhz(buf1, sysinfo.freqDDRBus/2),
140 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600141 break;
142 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500143 printf(" DDR:%-4s MHz (%s MT/s data rate) "
144 "(Synchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200145 strmhz(buf1, sysinfo.freqDDRBus/2),
146 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600147 break;
148 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500149 printf(" DDR:%-4s MHz (%s MT/s data rate) "
150 "(Asynchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200151 strmhz(buf1, sysinfo.freqDDRBus/2),
152 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600153 break;
154 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500155#endif
wdenk97d80fc2004-06-09 00:34:46 +0000156
Kumar Gala39aaca12009-03-19 02:46:19 -0500157 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piephoada591d2008-12-03 15:16:37 -0800158 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500159 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800160 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
161 sysinfo.freqLocalBus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500162 }
wdenk97d80fc2004-06-09 00:34:46 +0000163
Andy Fleming1ced1212008-02-06 01:19:40 -0600164#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200165 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600166#endif
wdenk97d80fc2004-06-09 00:34:46 +0000167
Haiying Wangb3d7f202009-05-20 12:30:29 -0400168#ifdef CONFIG_QE
169 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
170#endif
171
Kumar Gala39aaca12009-03-19 02:46:19 -0500172#ifdef CONFIG_SYS_DPAA_FMAN
173 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
174 printf(" FMAN%d: %s MHz\n", i,
175 strmhz(buf1, sysinfo.freqFMan[i]));
176 }
177#endif
178
179#ifdef CONFIG_SYS_DPAA_PME
180 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
181#endif
182
wdenk6c9e7892005-03-15 22:56:53 +0000183 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000184
185 return 0;
186}
187
188
189/* ------------------------------------------------------------------------- */
190
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200191int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000192{
Kumar Galac3483222009-09-08 13:46:46 -0500193/* Everything after the first generation of PQ3 parts has RSTCR */
194#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
195 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200196 unsigned long val, msr;
197
wdenk42d1f032003-10-15 23:53:47 +0000198 /*
199 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500200 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000201 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200202 msr = mfmsr ();
203 msr |= MSR_DE;
204 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400205
Sergei Poselenov793670c2008-05-08 14:17:08 +0200206 val = mfspr(DBCR0);
207 val |= 0x70000000;
208 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500209#else
210 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
211 out_be32(&gur->rstcr, 0x2); /* HRESET_REQ */
212 udelay(100);
213#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200214
wdenk42d1f032003-10-15 23:53:47 +0000215 return 1;
216}
217
218
219/*
220 * Get timebase clock frequency
221 */
222unsigned long get_tbclk (void)
223{
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500224#ifdef CONFIG_FSL_CORENET
225 return (gd->bus_clk + 8) / 16;
226#else
James Yang591933c2008-02-08 16:44:53 -0600227 return (gd->bus_clk + 4UL)/8UL;
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500228#endif
wdenk42d1f032003-10-15 23:53:47 +0000229}
230
231
232#if defined(CONFIG_WATCHDOG)
233void
234watchdog_reset(void)
235{
236 int re_enable = disable_interrupts();
237 reset_85xx_watchdog();
238 if (re_enable) enable_interrupts();
239}
240
241void
242reset_85xx_watchdog(void)
243{
244 /*
245 * Clear TSR(WIS) bit by writing 1
246 */
247 unsigned long val;
Andy Fleming03b81b42007-04-23 01:44:44 -0500248 val = mfspr(SPRN_TSR);
249 val |= TSR_WIS;
250 mtspr(SPRN_TSR, val);
wdenk42d1f032003-10-15 23:53:47 +0000251}
252#endif /* CONFIG_WATCHDOG */
253
Sergei Poselenov740280e2008-06-06 15:42:40 +0200254/*
Sergei Poselenov59f63052008-08-15 15:42:11 +0200255 * Configures a UPM. The function requires the respective MxMR to be set
256 * before calling this function. "size" is the number or entries, not a sizeof.
Sergei Poselenov740280e2008-06-06 15:42:40 +0200257 */
258void upmconfig (uint upm, uint * table, uint size)
259{
260 int i, mdr, mad, old_mad = 0;
261 volatile u32 *mxmr;
Becky Brucef51cdaf2010-06-17 11:37:20 -0500262 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Sergei Poselenov740280e2008-06-06 15:42:40 +0200263 volatile u8* dummy = NULL;
264 int upmmask;
265
266 switch (upm) {
267 case UPMA:
268 mxmr = &lbc->mamr;
269 upmmask = BR_MS_UPMA;
270 break;
271 case UPMB:
272 mxmr = &lbc->mbmr;
273 upmmask = BR_MS_UPMB;
274 break;
275 case UPMC:
276 mxmr = &lbc->mcmr;
277 upmmask = BR_MS_UPMC;
278 break;
279 default:
280 printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
281 hang();
282 }
283
284 /* Find the address for the dummy write transaction */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500285 for (i = 0; i < 8; i++) {
286 if ((get_lbc_br(i) & (BR_V | BR_MSEL)) == (BR_V | upmmask)) {
287 dummy = (volatile u8 *)(get_lbc_br(i) & BR_BA);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200288 break;
289 }
290 }
291
292 if (i == 8) {
293 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
294 hang();
295 }
296
297 for (i = 0; i < size; i++) {
298 /* 1 */
Sergei Poselenov59f63052008-08-15 15:42:11 +0200299 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_WARR | i);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200300 /* 2 */
301 out_be32(&lbc->mdr, table[i]);
302 /* 3 */
303 mdr = in_be32(&lbc->mdr);
304 /* 4 */
305 *(volatile u8 *)dummy = 0;
306 /* 5 */
307 do {
Sergei Poselenov59f63052008-08-15 15:42:11 +0200308 mad = in_be32(mxmr) & MxMR_MAD_MSK;
Sergei Poselenov740280e2008-06-06 15:42:40 +0200309 } while (mad <= old_mad && !(!mad && i == (size-1)));
310 old_mad = mad;
311 }
Sergei Poselenov59f63052008-08-15 15:42:11 +0200312 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_NORM);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200313}
Ben Warrendd354792008-06-23 22:57:27 -0700314
Andy Fleming80522dc2008-10-30 16:51:33 -0500315/*
316 * Initializes on-chip MMC controllers.
317 * to override, implement board_mmc_init()
318 */
319int cpu_mmc_init(bd_t *bis)
320{
321#ifdef CONFIG_FSL_ESDHC
322 return fsl_esdhc_mmc_init(bis);
323#else
324 return 0;
325#endif
326}
Becky Bruce199e2622010-06-17 11:37:25 -0500327
328/*
329 * Print out the state of various machine registers.
330 * Currently prints out LAWs, BR0/OR0, and TLBs
331 */
332void mpc85xx_reginfo(void)
333{
334 print_tlbcam();
335 print_laws();
336 print_lbc_regs();
337}