Update SVR numbers to expand support
[oweals/u-boot.git] / cpu / mpc85xx / cpu.c
1 /*
2  * Copyright 2004,2007,2008 Freescale Semiconductor, Inc.
3  * (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
33 struct cpu_type {
34         char name[15];
35         u32 soc_ver;
36 };
37
38 #define CPU_TYPE_ENTRY(x) {#x, SVR_##x}
39
40 struct cpu_type cpu_type_list [] = {
41         CPU_TYPE_ENTRY(8533),
42         CPU_TYPE_ENTRY(8533_E),
43         CPU_TYPE_ENTRY(8540),
44         CPU_TYPE_ENTRY(8541),
45         CPU_TYPE_ENTRY(8541_E),
46         CPU_TYPE_ENTRY(8543),
47         CPU_TYPE_ENTRY(8543_E),
48         CPU_TYPE_ENTRY(8544),
49         CPU_TYPE_ENTRY(8544_E),
50         CPU_TYPE_ENTRY(8545),
51         CPU_TYPE_ENTRY(8545_E),
52         CPU_TYPE_ENTRY(8547_E),
53         CPU_TYPE_ENTRY(8548),
54         CPU_TYPE_ENTRY(8548_E),
55         CPU_TYPE_ENTRY(8555),
56         CPU_TYPE_ENTRY(8555_E),
57         CPU_TYPE_ENTRY(8560),
58         CPU_TYPE_ENTRY(8567),
59         CPU_TYPE_ENTRY(8567_E),
60         CPU_TYPE_ENTRY(8568),
61         CPU_TYPE_ENTRY(8568_E),
62         CPU_TYPE_ENTRY(8572),
63         CPU_TYPE_ENTRY(8572_E),
64 };
65
66 int checkcpu (void)
67 {
68         sys_info_t sysinfo;
69         uint lcrr;              /* local bus clock ratio register */
70         uint clkdiv;            /* clock divider portion of lcrr */
71         uint pvr, svr;
72         uint fam;
73         uint ver;
74         uint major, minor;
75         int i;
76         u32 ddr_ratio;
77         volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
78
79         svr = get_svr();
80         ver = SVR_SOC_VER(svr);
81         major = SVR_MAJ(svr);
82         minor = SVR_MIN(svr);
83
84         puts("CPU:   ");
85
86         for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
87                 if (cpu_type_list[i].soc_ver == ver) {
88                         puts(cpu_type_list[i].name);
89                         break;
90                 }
91
92         if (i == ARRAY_SIZE(cpu_type_list))
93                 puts("Unknown");
94
95         printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
96
97         pvr = get_pvr();
98         fam = PVR_FAM(pvr);
99         ver = PVR_VER(pvr);
100         major = PVR_MAJ(pvr);
101         minor = PVR_MIN(pvr);
102
103         printf("Core:  ");
104         switch (fam) {
105         case PVR_FAM(PVR_85xx):
106             puts("E500");
107             break;
108         default:
109             puts("Unknown");
110             break;
111         }
112         printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
113
114         get_sys_info(&sysinfo);
115
116         puts("Clock Configuration:\n");
117         printf("       CPU:%4lu MHz, ", sysinfo.freqProcessor / 1000000);
118         printf("CCB:%4lu MHz,\n", sysinfo.freqSystemBus / 1000000);
119
120         ddr_ratio = ((gur->porpllsr) & 0x00003e00) >> 9;
121         switch (ddr_ratio) {
122         case 0x0:
123                 printf("       DDR:%4lu MHz, ", sysinfo.freqDDRBus / 2000000);
124                 break;
125         case 0x7:
126                 printf("       DDR:%4lu MHz (Synchronous), ", sysinfo.freqDDRBus / 2000000);
127                 break;
128         default:
129                 printf("       DDR:%4lu MHz (Asynchronous), ", sysinfo.freqDDRBus / 2000000);
130                 break;
131         }
132
133 #if defined(CFG_LBC_LCRR)
134         lcrr = CFG_LBC_LCRR;
135 #else
136         {
137             volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
138
139             lcrr = lbc->lcrr;
140         }
141 #endif
142         clkdiv = lcrr & 0x0f;
143         if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
144 #if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544)
145                 /*
146                  * Yes, the entire PQ38 family use the same
147                  * bit-representation for twice the clock divider values.
148                  */
149                  clkdiv *= 2;
150 #endif
151                 printf("LBC:%4lu MHz\n",
152                        sysinfo.freqSystemBus / 1000000 / clkdiv);
153         } else {
154                 printf("LBC: unknown (lcrr: 0x%08x)\n", lcrr);
155         }
156
157 #ifdef CONFIG_CPM2
158         printf("CPM:  %lu Mhz\n", sysinfo.freqSystemBus / 1000000);
159 #endif
160
161         puts("L1:    D-cache 32 kB enabled\n       I-cache 32 kB enabled\n");
162
163         return 0;
164 }
165
166
167 /* ------------------------------------------------------------------------- */
168
169 int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
170 {
171         uint pvr;
172         uint ver;
173         pvr = get_pvr();
174         ver = PVR_VER(pvr);
175         if (ver & 1){
176         /* e500 v2 core has reset control register */
177                 volatile unsigned int * rstcr;
178                 rstcr = (volatile unsigned int *)(CFG_IMMR + 0xE00B0);
179                 *rstcr = 0x2;           /* HRESET_REQ */
180         }else{
181         /*
182          * Initiate hard reset in debug control register DBCR0
183          * Make sure MSR[DE] = 1
184          */
185                 unsigned long val, msr;
186
187                 msr = mfmsr ();
188                 msr |= MSR_DE;
189                 mtmsr (msr);
190
191                 val = mfspr(DBCR0);
192                 val |= 0x70000000;
193                 mtspr(DBCR0,val);
194         }
195         return 1;
196 }
197
198
199 /*
200  * Get timebase clock frequency
201  */
202 unsigned long get_tbclk (void)
203 {
204
205         sys_info_t  sys_info;
206
207         get_sys_info(&sys_info);
208         return ((sys_info.freqSystemBus + 7L) / 8L);
209 }
210
211
212 #if defined(CONFIG_WATCHDOG)
213 void
214 watchdog_reset(void)
215 {
216         int re_enable = disable_interrupts();
217         reset_85xx_watchdog();
218         if (re_enable) enable_interrupts();
219 }
220
221 void
222 reset_85xx_watchdog(void)
223 {
224         /*
225          * Clear TSR(WIS) bit by writing 1
226          */
227         unsigned long val;
228         val = mfspr(SPRN_TSR);
229         val |= TSR_WIS;
230         mtspr(SPRN_TSR, val);
231 }
232 #endif  /* CONFIG_WATCHDOG */
233
234 #if defined(CONFIG_DDR_ECC)
235 void dma_init(void) {
236         volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
237
238         dma->satr0 = 0x02c40000;
239         dma->datr0 = 0x02c40000;
240         dma->sr0 = 0xfffffff; /* clear any errors */
241         asm("sync; isync; msync");
242         return;
243 }
244
245 uint dma_check(void) {
246         volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
247         volatile uint status = dma->sr0;
248
249         /* While the channel is busy, spin */
250         while((status & 4) == 4) {
251                 status = dma->sr0;
252         }
253
254         /* clear MR0[CS] channel start bit */
255         dma->mr0 &= 0x00000001;
256         asm("sync;isync;msync");
257
258         if (status != 0) {
259                 printf ("DMA Error: status = %x\n", status);
260         }
261         return status;
262 }
263
264 int dma_xfer(void *dest, uint count, void *src) {
265         volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
266
267         dma->dar0 = (uint) dest;
268         dma->sar0 = (uint) src;
269         dma->bcr0 = count;
270         dma->mr0 = 0xf000004;
271         asm("sync;isync;msync");
272         dma->mr0 = 0xf000005;
273         asm("sync;isync;msync");
274         return dma_check();
275 }
276 #endif