blob: 58d23f4cce8756cdb2a519c35f1166e78e87f793 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
Andy Flemingf5740972008-02-06 01:19:40 -06002 * Copyright 2004,2007,2008 Freescale Semiconductor, Inc.
wdenk9c53f402003-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>
32
James Yang957b1912008-02-08 16:44:53 -060033DECLARE_GLOBAL_DATA_PTR;
34
Andy Flemingf5740972008-02-06 01:19:40 -060035struct cpu_type {
36 char name[15];
37 u32 soc_ver;
38};
39
40#define CPU_TYPE_ENTRY(x) {#x, SVR_##x}
41
42struct cpu_type cpu_type_list [] = {
43 CPU_TYPE_ENTRY(8533),
44 CPU_TYPE_ENTRY(8533_E),
45 CPU_TYPE_ENTRY(8540),
46 CPU_TYPE_ENTRY(8541),
47 CPU_TYPE_ENTRY(8541_E),
48 CPU_TYPE_ENTRY(8543),
49 CPU_TYPE_ENTRY(8543_E),
50 CPU_TYPE_ENTRY(8544),
51 CPU_TYPE_ENTRY(8544_E),
52 CPU_TYPE_ENTRY(8545),
53 CPU_TYPE_ENTRY(8545_E),
54 CPU_TYPE_ENTRY(8547_E),
55 CPU_TYPE_ENTRY(8548),
56 CPU_TYPE_ENTRY(8548_E),
57 CPU_TYPE_ENTRY(8555),
58 CPU_TYPE_ENTRY(8555_E),
59 CPU_TYPE_ENTRY(8560),
60 CPU_TYPE_ENTRY(8567),
61 CPU_TYPE_ENTRY(8567_E),
62 CPU_TYPE_ENTRY(8568),
63 CPU_TYPE_ENTRY(8568_E),
64 CPU_TYPE_ENTRY(8572),
65 CPU_TYPE_ENTRY(8572_E),
66};
67
wdenk9c53f402003-10-15 23:53:47 +000068int checkcpu (void)
69{
wdenka445ddf2004-06-09 00:34:46 +000070 sys_info_t sysinfo;
71 uint lcrr; /* local bus clock ratio register */
72 uint clkdiv; /* clock divider portion of lcrr */
73 uint pvr, svr;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050074 uint fam;
wdenka445ddf2004-06-09 00:34:46 +000075 uint ver;
76 uint major, minor;
Andy Flemingf5740972008-02-06 01:19:40 -060077 int i;
Kumar Gala54b68102008-05-29 01:21:24 -050078#ifdef CONFIG_DDR_CLK_FREQ
Kumar Gala07db1702007-12-07 04:59:26 -060079 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Kumar Gala54b68102008-05-29 01:21:24 -050080 u32 ddr_ratio = ((gur->porpllsr) & 0x00003e00) >> 9;
81#else
82 u32 ddr_ratio = 0;
83#endif
wdenk9c53f402003-10-15 23:53:47 +000084
wdenka445ddf2004-06-09 00:34:46 +000085 svr = get_svr();
Andy Flemingf5740972008-02-06 01:19:40 -060086 ver = SVR_SOC_VER(svr);
wdenka445ddf2004-06-09 00:34:46 +000087 major = SVR_MAJ(svr);
88 minor = SVR_MIN(svr);
89
wdenk3f3262b2005-03-15 22:56:53 +000090 puts("CPU: ");
Andy Flemingf5740972008-02-06 01:19:40 -060091
92 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
93 if (cpu_type_list[i].soc_ver == ver) {
94 puts(cpu_type_list[i].name);
95 break;
96 }
97
98 if (i == ARRAY_SIZE(cpu_type_list))
wdenka445ddf2004-06-09 00:34:46 +000099 puts("Unknown");
Andy Flemingf5740972008-02-06 01:19:40 -0600100
wdenka445ddf2004-06-09 00:34:46 +0000101 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000102
wdenk3f3262b2005-03-15 22:56:53 +0000103 pvr = get_pvr();
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500104 fam = PVR_FAM(pvr);
wdenk3f3262b2005-03-15 22:56:53 +0000105 ver = PVR_VER(pvr);
106 major = PVR_MAJ(pvr);
107 minor = PVR_MIN(pvr);
108
109 printf("Core: ");
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500110 switch (fam) {
111 case PVR_FAM(PVR_85xx):
wdenk3f3262b2005-03-15 22:56:53 +0000112 puts("E500");
113 break;
114 default:
115 puts("Unknown");
116 break;
117 }
118 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
119
wdenka445ddf2004-06-09 00:34:46 +0000120 get_sys_info(&sysinfo);
121
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500122 puts("Clock Configuration:\n");
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500123 printf(" CPU:%4lu MHz, ", DIV_ROUND_UP(sysinfo.freqProcessor,1000000));
124 printf("CCB:%4lu MHz,\n", DIV_ROUND_UP(sysinfo.freqSystemBus,1000000));
Kumar Gala54b68102008-05-29 01:21:24 -0500125
Kumar Gala07db1702007-12-07 04:59:26 -0600126 switch (ddr_ratio) {
127 case 0x0:
James Yang5dab4842008-02-08 16:46:27 -0600128 printf(" DDR:%4lu MHz (%lu MT/s data rate), ",
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500129 DIV_ROUND_UP(sysinfo.freqDDRBus,2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
Kumar Gala07db1702007-12-07 04:59:26 -0600130 break;
131 case 0x7:
James Yang5dab4842008-02-08 16:46:27 -0600132 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Synchronous), ",
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500133 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus, 1000000));
Kumar Gala07db1702007-12-07 04:59:26 -0600134 break;
135 default:
James Yang5dab4842008-02-08 16:46:27 -0600136 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Asynchronous), ",
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500137 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
Kumar Gala07db1702007-12-07 04:59:26 -0600138 break;
139 }
wdenka445ddf2004-06-09 00:34:46 +0000140
141#if defined(CFG_LBC_LCRR)
142 lcrr = CFG_LBC_LCRR;
143#else
144 {
Kumar Gala0a7a0972007-11-29 02:10:09 -0600145 volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
wdenka445ddf2004-06-09 00:34:46 +0000146
147 lcrr = lbc->lcrr;
148 }
149#endif
150 clkdiv = lcrr & 0x0f;
151 if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
Andy Flemingf631cca2007-04-23 01:32:22 -0500152#if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500153 /*
154 * Yes, the entire PQ38 family use the same
155 * bit-representation for twice the clock divider values.
156 */
157 clkdiv *= 2;
158#endif
wdenka445ddf2004-06-09 00:34:46 +0000159 printf("LBC:%4lu MHz\n",
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500160 DIV_ROUND_UP(sysinfo.freqSystemBus, 1000000) / clkdiv);
wdenka445ddf2004-06-09 00:34:46 +0000161 } else {
wdenk3f3262b2005-03-15 22:56:53 +0000162 printf("LBC: unknown (lcrr: 0x%08x)\n", lcrr);
wdenka445ddf2004-06-09 00:34:46 +0000163 }
164
Andy Flemingf5740972008-02-06 01:19:40 -0600165#ifdef CONFIG_CPM2
166 printf("CPM: %lu Mhz\n", sysinfo.freqSystemBus / 1000000);
167#endif
wdenka445ddf2004-06-09 00:34:46 +0000168
wdenk3f3262b2005-03-15 22:56:53 +0000169 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000170
171 return 0;
172}
173
174
175/* ------------------------------------------------------------------------- */
176
177int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
178{
Zang Roy-r61911395478d2006-12-05 16:42:30 +0800179 uint pvr;
180 uint ver;
Sergei Poselenov25147422008-05-08 14:17:08 +0200181 unsigned long val, msr;
182
Zang Roy-r61911395478d2006-12-05 16:42:30 +0800183 pvr = get_pvr();
184 ver = PVR_VER(pvr);
Sergei Poselenov25147422008-05-08 14:17:08 +0200185
Zang Roy-r61911395478d2006-12-05 16:42:30 +0800186 if (ver & 1){
187 /* e500 v2 core has reset control register */
188 volatile unsigned int * rstcr;
189 rstcr = (volatile unsigned int *)(CFG_IMMR + 0xE00B0);
Wolfgang Denk58c495b2007-05-05 18:23:11 +0200190 *rstcr = 0x2; /* HRESET_REQ */
Sergei Poselenov25147422008-05-08 14:17:08 +0200191 udelay(100);
192 }
193
wdenk9c53f402003-10-15 23:53:47 +0000194 /*
Sergei Poselenov25147422008-05-08 14:17:08 +0200195 * Fallthrough if the code above failed
wdenk9c53f402003-10-15 23:53:47 +0000196 * Initiate hard reset in debug control register DBCR0
197 * Make sure MSR[DE] = 1
198 */
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400199
Sergei Poselenov25147422008-05-08 14:17:08 +0200200 msr = mfmsr ();
201 msr |= MSR_DE;
202 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400203
Sergei Poselenov25147422008-05-08 14:17:08 +0200204 val = mfspr(DBCR0);
205 val |= 0x70000000;
206 mtspr(DBCR0,val);
207
wdenk9c53f402003-10-15 23:53:47 +0000208 return 1;
209}
210
211
212/*
213 * Get timebase clock frequency
214 */
215unsigned long get_tbclk (void)
216{
James Yang957b1912008-02-08 16:44:53 -0600217 return (gd->bus_clk + 4UL)/8UL;
wdenk9c53f402003-10-15 23:53:47 +0000218}
219
220
221#if defined(CONFIG_WATCHDOG)
222void
223watchdog_reset(void)
224{
225 int re_enable = disable_interrupts();
226 reset_85xx_watchdog();
227 if (re_enable) enable_interrupts();
228}
229
230void
231reset_85xx_watchdog(void)
232{
233 /*
234 * Clear TSR(WIS) bit by writing 1
235 */
236 unsigned long val;
Andy Flemingeac342d2007-04-23 01:44:44 -0500237 val = mfspr(SPRN_TSR);
238 val |= TSR_WIS;
239 mtspr(SPRN_TSR, val);
wdenk9c53f402003-10-15 23:53:47 +0000240}
241#endif /* CONFIG_WATCHDOG */
242
243#if defined(CONFIG_DDR_ECC)
wdenk9c53f402003-10-15 23:53:47 +0000244void dma_init(void) {
Kumar Gala0a7a0972007-11-29 02:10:09 -0600245 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000246
247 dma->satr0 = 0x02c40000;
248 dma->datr0 = 0x02c40000;
Andy Flemingeac342d2007-04-23 01:44:44 -0500249 dma->sr0 = 0xfffffff; /* clear any errors */
wdenk9c53f402003-10-15 23:53:47 +0000250 asm("sync; isync; msync");
251 return;
252}
253
254uint dma_check(void) {
Kumar Gala0a7a0972007-11-29 02:10:09 -0600255 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000256 volatile uint status = dma->sr0;
257
258 /* While the channel is busy, spin */
259 while((status & 4) == 4) {
260 status = dma->sr0;
261 }
262
Andy Flemingeac342d2007-04-23 01:44:44 -0500263 /* clear MR0[CS] channel start bit */
264 dma->mr0 &= 0x00000001;
265 asm("sync;isync;msync");
266
wdenk9c53f402003-10-15 23:53:47 +0000267 if (status != 0) {
268 printf ("DMA Error: status = %x\n", status);
269 }
270 return status;
271}
272
273int dma_xfer(void *dest, uint count, void *src) {
Kumar Gala0a7a0972007-11-29 02:10:09 -0600274 volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000275
276 dma->dar0 = (uint) dest;
277 dma->sar0 = (uint) src;
278 dma->bcr0 = count;
279 dma->mr0 = 0xf000004;
280 asm("sync;isync;msync");
281 dma->mr0 = 0xf000005;
282 asm("sync;isync;msync");
283 return dma_check();
284}
285#endif