blob: 6be98dc350c3a58f2210fbe9821206cfa39f4ce2 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05302 * Copyright 2004,2007-2009 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>
wdenk42d1f032003-10-15 23:53:47 +000035
James Yang591933c2008-02-08 16:44:53 -060036DECLARE_GLOBAL_DATA_PTR;
37
wdenk42d1f032003-10-15 23:53:47 +000038int checkcpu (void)
39{
wdenk97d80fc2004-06-09 00:34:46 +000040 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000041 uint pvr, svr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050042 uint fam;
wdenk97d80fc2004-06-09 00:34:46 +000043 uint ver;
44 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050045 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020046 char buf1[32], buf2[32];
Kumar Galaee1e35b2008-05-29 01:21:24 -050047#ifdef CONFIG_DDR_CLK_FREQ
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Jason Jinc0391112008-09-27 14:40:57 +080049 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
50 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Galaee1e35b2008-05-29 01:21:24 -050051#else
52 u32 ddr_ratio = 0;
53#endif
Haiying Wang2fc7eb02009-01-15 11:58:35 -050054 int i;
wdenk42d1f032003-10-15 23:53:47 +000055
wdenk97d80fc2004-06-09 00:34:46 +000056 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000057 major = SVR_MAJ(svr);
Kumar Galaef50d6c2008-08-12 11:14:19 -050058#ifdef CONFIG_MPC8536
59 major &= 0x7; /* the msb of this nibble is a mfg code */
60#endif
wdenk97d80fc2004-06-09 00:34:46 +000061 minor = SVR_MIN(svr);
62
Poonam Aggrwal0e870982009-07-31 12:08:14 +053063 if (cpu_numcores() > 1) {
64 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);
65 printf("CPU%d: ", pic->whoami);
66 } else {
67 puts("CPU: ");
68 }
Andy Fleming1ced1212008-02-06 01:19:40 -060069
Poonam Aggrwal0e870982009-07-31 12:08:14 +053070 cpu = gd->cpu;
71
72 if (cpu->name) {
Kumar Gala4dbdb762008-06-10 16:53:46 -050073 puts(cpu->name);
Kim Phillips06b41862008-06-17 17:45:22 -050074 if (IS_E_PROCESSOR(svr))
Kumar Gala4dbdb762008-06-10 16:53:46 -050075 puts("E");
76 } else {
wdenk97d80fc2004-06-09 00:34:46 +000077 puts("Unknown");
Kumar Gala4dbdb762008-06-10 16:53:46 -050078 }
Andy Fleming1ced1212008-02-06 01:19:40 -060079
wdenk97d80fc2004-06-09 00:34:46 +000080 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +000081
wdenk6c9e7892005-03-15 22:56:53 +000082 pvr = get_pvr();
Jon Loeligerd9b94f22005-07-25 14:05:07 -050083 fam = PVR_FAM(pvr);
wdenk6c9e7892005-03-15 22:56:53 +000084 ver = PVR_VER(pvr);
85 major = PVR_MAJ(pvr);
86 minor = PVR_MIN(pvr);
87
88 printf("Core: ");
Jon Loeligerd9b94f22005-07-25 14:05:07 -050089 switch (fam) {
90 case PVR_FAM(PVR_85xx):
wdenk6c9e7892005-03-15 22:56:53 +000091 puts("E500");
92 break;
93 default:
94 puts("Unknown");
95 break;
96 }
Kumar Gala0f060c32008-10-23 01:47:38 -050097
98 if (PVR_MEM(pvr) == 0x03)
99 puts("MC");
100
wdenk6c9e7892005-03-15 22:56:53 +0000101 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
102
wdenk97d80fc2004-06-09 00:34:46 +0000103 get_sys_info(&sysinfo);
104
Kumar Galab29dee32009-02-04 09:35:57 -0600105 puts("Clock Configuration:");
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530106 for (i = 0; i < cpu_numcores(); i++) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100107 if (!(i & 3))
108 printf ("\n ");
Haiying Wang2fc7eb02009-01-15 11:58:35 -0500109 printf("CPU%d:%-4s MHz, ",
110 i,strmhz(buf1, sysinfo.freqProcessor[i]));
Kumar Galab29dee32009-02-04 09:35:57 -0600111 }
112 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500113
Kumar Galad4357932007-12-07 04:59:26 -0600114 switch (ddr_ratio) {
115 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200116 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
117 strmhz(buf1, sysinfo.freqDDRBus/2),
118 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600119 break;
120 case 0x7:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200121 printf(" DDR:%-4s MHz (%s MT/s data rate) (Synchronous), ",
122 strmhz(buf1, sysinfo.freqDDRBus/2),
123 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600124 break;
125 default:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200126 printf(" DDR:%-4s MHz (%s MT/s data rate) (Asynchronous), ",
127 strmhz(buf1, sysinfo.freqDDRBus/2),
128 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600129 break;
130 }
wdenk97d80fc2004-06-09 00:34:46 +0000131
Trent Piephoada591d2008-12-03 15:16:37 -0800132 if (sysinfo.freqLocalBus > LCRR_CLKDIV)
133 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
134 else
135 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
136 sysinfo.freqLocalBus);
wdenk97d80fc2004-06-09 00:34:46 +0000137
Andy Fleming1ced1212008-02-06 01:19:40 -0600138#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200139 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600140#endif
wdenk97d80fc2004-06-09 00:34:46 +0000141
Haiying Wangb3d7f202009-05-20 12:30:29 -0400142#ifdef CONFIG_QE
143 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
144#endif
145
wdenk6c9e7892005-03-15 22:56:53 +0000146 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000147
148 return 0;
149}
150
151
152/* ------------------------------------------------------------------------- */
153
154int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
155{
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800156 uint pvr;
157 uint ver;
Sergei Poselenov793670c2008-05-08 14:17:08 +0200158 unsigned long val, msr;
159
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800160 pvr = get_pvr();
161 ver = PVR_VER(pvr);
Sergei Poselenov793670c2008-05-08 14:17:08 +0200162
Zang Roy-r6191196629cb2006-12-05 16:42:30 +0800163 if (ver & 1){
164 /* e500 v2 core has reset control register */
165 volatile unsigned int * rstcr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166 rstcr = (volatile unsigned int *)(CONFIG_SYS_IMMR + 0xE00B0);
Wolfgang Denk2f152782007-05-05 18:23:11 +0200167 *rstcr = 0x2; /* HRESET_REQ */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200168 udelay(100);
169 }
170
wdenk42d1f032003-10-15 23:53:47 +0000171 /*
Sergei Poselenov793670c2008-05-08 14:17:08 +0200172 * Fallthrough if the code above failed
wdenk42d1f032003-10-15 23:53:47 +0000173 * Initiate hard reset in debug control register DBCR0
174 * Make sure MSR[DE] = 1
175 */
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400176
Sergei Poselenov793670c2008-05-08 14:17:08 +0200177 msr = mfmsr ();
178 msr |= MSR_DE;
179 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400180
Sergei Poselenov793670c2008-05-08 14:17:08 +0200181 val = mfspr(DBCR0);
182 val |= 0x70000000;
183 mtspr(DBCR0,val);
184
wdenk42d1f032003-10-15 23:53:47 +0000185 return 1;
186}
187
188
189/*
190 * Get timebase clock frequency
191 */
192unsigned long get_tbclk (void)
193{
James Yang591933c2008-02-08 16:44:53 -0600194 return (gd->bus_clk + 4UL)/8UL;
wdenk42d1f032003-10-15 23:53:47 +0000195}
196
197
198#if defined(CONFIG_WATCHDOG)
199void
200watchdog_reset(void)
201{
202 int re_enable = disable_interrupts();
203 reset_85xx_watchdog();
204 if (re_enable) enable_interrupts();
205}
206
207void
208reset_85xx_watchdog(void)
209{
210 /*
211 * Clear TSR(WIS) bit by writing 1
212 */
213 unsigned long val;
Andy Fleming03b81b42007-04-23 01:44:44 -0500214 val = mfspr(SPRN_TSR);
215 val |= TSR_WIS;
216 mtspr(SPRN_TSR, val);
wdenk42d1f032003-10-15 23:53:47 +0000217}
218#endif /* CONFIG_WATCHDOG */
219
Sergei Poselenov740280e2008-06-06 15:42:40 +0200220/*
Sergei Poselenov59f63052008-08-15 15:42:11 +0200221 * Configures a UPM. The function requires the respective MxMR to be set
222 * before calling this function. "size" is the number or entries, not a sizeof.
Sergei Poselenov740280e2008-06-06 15:42:40 +0200223 */
224void upmconfig (uint upm, uint * table, uint size)
225{
226 int i, mdr, mad, old_mad = 0;
227 volatile u32 *mxmr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200229 volatile u32 *brp,*orp;
230 volatile u8* dummy = NULL;
231 int upmmask;
232
233 switch (upm) {
234 case UPMA:
235 mxmr = &lbc->mamr;
236 upmmask = BR_MS_UPMA;
237 break;
238 case UPMB:
239 mxmr = &lbc->mbmr;
240 upmmask = BR_MS_UPMB;
241 break;
242 case UPMC:
243 mxmr = &lbc->mcmr;
244 upmmask = BR_MS_UPMC;
245 break;
246 default:
247 printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
248 hang();
249 }
250
251 /* Find the address for the dummy write transaction */
252 for (brp = &lbc->br0, orp = &lbc->or0, i = 0; i < 8;
253 i++, brp += 2, orp += 2) {
Wolfgang Denke093a242008-06-28 23:34:37 +0200254
Sergei Poselenov740280e2008-06-06 15:42:40 +0200255 /* Look for a valid BR with selected UPM */
Sergei Poselenov59f63052008-08-15 15:42:11 +0200256 if ((in_be32(brp) & (BR_V | BR_MSEL)) == (BR_V | upmmask)) {
257 dummy = (volatile u8*)(in_be32(brp) & BR_BA);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200258 break;
259 }
260 }
261
262 if (i == 8) {
263 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
264 hang();
265 }
266
267 for (i = 0; i < size; i++) {
268 /* 1 */
Sergei Poselenov59f63052008-08-15 15:42:11 +0200269 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_WARR | i);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200270 /* 2 */
271 out_be32(&lbc->mdr, table[i]);
272 /* 3 */
273 mdr = in_be32(&lbc->mdr);
274 /* 4 */
275 *(volatile u8 *)dummy = 0;
276 /* 5 */
277 do {
Sergei Poselenov59f63052008-08-15 15:42:11 +0200278 mad = in_be32(mxmr) & MxMR_MAD_MSK;
Sergei Poselenov740280e2008-06-06 15:42:40 +0200279 } while (mad <= old_mad && !(!mad && i == (size-1)));
280 old_mad = mad;
281 }
Sergei Poselenov59f63052008-08-15 15:42:11 +0200282 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_NORM);
Sergei Poselenov740280e2008-06-06 15:42:40 +0200283}
Ben Warrendd354792008-06-23 22:57:27 -0700284
Andy Fleming80522dc2008-10-30 16:51:33 -0500285/*
286 * Initializes on-chip MMC controllers.
287 * to override, implement board_mmc_init()
288 */
289int cpu_mmc_init(bd_t *bis)
290{
291#ifdef CONFIG_FSL_ESDHC
292 return fsl_esdhc_mmc_init(bis);
293#else
294 return 0;
295#endif
296}