blob: f15d43c38c79c723ac6c97c13cd0214d9f6a7514 [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: ");
Kumar Gala2a3a96c2009-10-21 13:23:54 -050098 if (PVR_FAM(PVR_85xx)) {
99 switch(PVR_MEM(pvr)) {
100 case 0x1:
101 case 0x2:
102 puts("E500");
103 break;
104 case 0x3:
105 puts("E500MC");
106 break;
107 case 0x4:
108 puts("E5500");
109 break;
110 default:
111 puts("Unknown");
112 break;
113 }
114 } else {
115 puts("Unknown");
wdenk6c9e7892005-03-15 22:56:53 +0000116 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500117
wdenk6c9e7892005-03-15 22:56:53 +0000118 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
119
wdenk97d80fc2004-06-09 00:34:46 +0000120 get_sys_info(&sysinfo);
121
Kumar Galab29dee32009-02-04 09:35:57 -0600122 puts("Clock Configuration:");
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530123 for (i = 0; i < cpu_numcores(); i++) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100124 if (!(i & 3))
125 printf ("\n ");
Haiying Wang2fc7eb02009-01-15 11:58:35 -0500126 printf("CPU%d:%-4s MHz, ",
127 i,strmhz(buf1, sysinfo.freqProcessor[i]));
Kumar Galab29dee32009-02-04 09:35:57 -0600128 }
129 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500130
Kumar Gala39aaca12009-03-19 02:46:19 -0500131#ifdef CONFIG_FSL_CORENET
132 if (ddr_sync == 1) {
133 printf(" DDR:%-4s MHz (%s MT/s data rate) "
134 "(Synchronous), ",
135 strmhz(buf1, sysinfo.freqDDRBus/2),
136 strmhz(buf2, sysinfo.freqDDRBus));
137 } else {
138 printf(" DDR:%-4s MHz (%s MT/s data rate) "
139 "(Asynchronous), ",
140 strmhz(buf1, sysinfo.freqDDRBus/2),
141 strmhz(buf2, sysinfo.freqDDRBus));
142 }
143#else
Kumar Galad4357932007-12-07 04:59:26 -0600144 switch (ddr_ratio) {
145 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200146 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
147 strmhz(buf1, sysinfo.freqDDRBus/2),
148 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600149 break;
150 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500151 printf(" DDR:%-4s MHz (%s MT/s data rate) "
152 "(Synchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200153 strmhz(buf1, sysinfo.freqDDRBus/2),
154 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600155 break;
156 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500157 printf(" DDR:%-4s MHz (%s MT/s data rate) "
158 "(Asynchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200159 strmhz(buf1, sysinfo.freqDDRBus/2),
160 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600161 break;
162 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500163#endif
wdenk97d80fc2004-06-09 00:34:46 +0000164
Kumar Gala39aaca12009-03-19 02:46:19 -0500165 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piephoada591d2008-12-03 15:16:37 -0800166 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500167 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800168 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
169 sysinfo.freqLocalBus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500170 }
wdenk97d80fc2004-06-09 00:34:46 +0000171
Andy Fleming1ced1212008-02-06 01:19:40 -0600172#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200173 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600174#endif
wdenk97d80fc2004-06-09 00:34:46 +0000175
Haiying Wangb3d7f202009-05-20 12:30:29 -0400176#ifdef CONFIG_QE
177 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
178#endif
179
Kumar Gala39aaca12009-03-19 02:46:19 -0500180#ifdef CONFIG_SYS_DPAA_FMAN
181 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500182 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Gala39aaca12009-03-19 02:46:19 -0500183 strmhz(buf1, sysinfo.freqFMan[i]));
184 }
185#endif
186
187#ifdef CONFIG_SYS_DPAA_PME
188 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
189#endif
190
wdenk6c9e7892005-03-15 22:56:53 +0000191 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000192
193 return 0;
194}
195
196
197/* ------------------------------------------------------------------------- */
198
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200199int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000200{
Kumar Galac3483222009-09-08 13:46:46 -0500201/* Everything after the first generation of PQ3 parts has RSTCR */
202#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
203 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200204 unsigned long val, msr;
205
wdenk42d1f032003-10-15 23:53:47 +0000206 /*
207 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500208 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000209 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200210 msr = mfmsr ();
211 msr |= MSR_DE;
212 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400213
Sergei Poselenov793670c2008-05-08 14:17:08 +0200214 val = mfspr(DBCR0);
215 val |= 0x70000000;
216 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500217#else
218 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
219 out_be32(&gur->rstcr, 0x2); /* HRESET_REQ */
220 udelay(100);
221#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200222
wdenk42d1f032003-10-15 23:53:47 +0000223 return 1;
224}
225
226
227/*
228 * Get timebase clock frequency
229 */
230unsigned long get_tbclk (void)
231{
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500232#ifdef CONFIG_FSL_CORENET
233 return (gd->bus_clk + 8) / 16;
234#else
James Yang591933c2008-02-08 16:44:53 -0600235 return (gd->bus_clk + 4UL)/8UL;
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500236#endif
wdenk42d1f032003-10-15 23:53:47 +0000237}
238
239
240#if defined(CONFIG_WATCHDOG)
241void
242watchdog_reset(void)
243{
244 int re_enable = disable_interrupts();
245 reset_85xx_watchdog();
246 if (re_enable) enable_interrupts();
247}
248
249void
250reset_85xx_watchdog(void)
251{
252 /*
253 * Clear TSR(WIS) bit by writing 1
254 */
255 unsigned long val;
Andy Fleming03b81b42007-04-23 01:44:44 -0500256 val = mfspr(SPRN_TSR);
257 val |= TSR_WIS;
258 mtspr(SPRN_TSR, val);
wdenk42d1f032003-10-15 23:53:47 +0000259}
260#endif /* CONFIG_WATCHDOG */
261
Sergei Poselenov740280e2008-06-06 15:42:40 +0200262/*
Andy Fleming80522dc2008-10-30 16:51:33 -0500263 * Initializes on-chip MMC controllers.
264 * to override, implement board_mmc_init()
265 */
266int cpu_mmc_init(bd_t *bis)
267{
268#ifdef CONFIG_FSL_ESDHC
269 return fsl_esdhc_mmc_init(bis);
270#else
271 return 0;
272#endif
273}
Becky Bruce199e2622010-06-17 11:37:25 -0500274
275/*
276 * Print out the state of various machine registers.
277 * Currently prints out LAWs, BR0/OR0, and TLBs
278 */
279void mpc85xx_reginfo(void)
280{
281 print_tlbcam();
282 print_laws();
283 print_lbc_regs();
284}