]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/mpc85xx/cpu.c
NetStar: fix NAND
[karo-tx-uboot.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 <config.h>
29 #include <common.h>
30 #include <watchdog.h>
31 #include <command.h>
32 #include <tsec.h>
33 #include <netdev.h>
34 #include <fsl_esdhc.h>
35 #include <asm/cache.h>
36 #include <asm/io.h>
37
38 DECLARE_GLOBAL_DATA_PTR;
39
40 struct cpu_type cpu_type_list [] = {
41         CPU_TYPE_ENTRY(8533, 8533),
42         CPU_TYPE_ENTRY(8533, 8533_E),
43         CPU_TYPE_ENTRY(8536, 8536),
44         CPU_TYPE_ENTRY(8536, 8536_E),
45         CPU_TYPE_ENTRY(8540, 8540),
46         CPU_TYPE_ENTRY(8541, 8541),
47         CPU_TYPE_ENTRY(8541, 8541_E),
48         CPU_TYPE_ENTRY(8543, 8543),
49         CPU_TYPE_ENTRY(8543, 8543_E),
50         CPU_TYPE_ENTRY(8544, 8544),
51         CPU_TYPE_ENTRY(8544, 8544_E),
52         CPU_TYPE_ENTRY(8545, 8545),
53         CPU_TYPE_ENTRY(8545, 8545_E),
54         CPU_TYPE_ENTRY(8547, 8547_E),
55         CPU_TYPE_ENTRY(8548, 8548),
56         CPU_TYPE_ENTRY(8548, 8548_E),
57         CPU_TYPE_ENTRY(8555, 8555),
58         CPU_TYPE_ENTRY(8555, 8555_E),
59         CPU_TYPE_ENTRY(8560, 8560),
60         CPU_TYPE_ENTRY(8567, 8567),
61         CPU_TYPE_ENTRY(8567, 8567_E),
62         CPU_TYPE_ENTRY(8568, 8568),
63         CPU_TYPE_ENTRY(8568, 8568_E),
64         CPU_TYPE_ENTRY(8572, 8572),
65         CPU_TYPE_ENTRY(8572, 8572_E),
66         CPU_TYPE_ENTRY(P2020, P2020),
67         CPU_TYPE_ENTRY(P2020, P2020_E),
68 };
69
70 struct cpu_type *identify_cpu(u32 ver)
71 {
72         int i;
73         for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
74                 if (cpu_type_list[i].soc_ver == ver)
75                         return &cpu_type_list[i];
76
77         return NULL;
78 }
79
80 int checkcpu (void)
81 {
82         sys_info_t sysinfo;
83         uint pvr, svr;
84         uint fam;
85         uint ver;
86         uint major, minor;
87         struct cpu_type *cpu;
88         char buf1[32], buf2[32];
89 #ifdef CONFIG_DDR_CLK_FREQ
90         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
91         u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
92                 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
93 #else
94         u32 ddr_ratio = 0;
95 #endif
96         int i;
97
98         svr = get_svr();
99         ver = SVR_SOC_VER(svr);
100         major = SVR_MAJ(svr);
101 #ifdef CONFIG_MPC8536
102         major &= 0x7; /* the msb of this nibble is a mfg code */
103 #endif
104         minor = SVR_MIN(svr);
105
106 #if (CONFIG_NUM_CPUS > 1)
107         volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);
108         printf("CPU%d:  ", pic->whoami);
109 #else
110         puts("CPU:   ");
111 #endif
112
113         cpu = identify_cpu(ver);
114         if (cpu) {
115                 puts(cpu->name);
116
117                 if (IS_E_PROCESSOR(svr))
118                         puts("E");
119         } else {
120                 puts("Unknown");
121         }
122
123         printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
124
125         pvr = get_pvr();
126         fam = PVR_FAM(pvr);
127         ver = PVR_VER(pvr);
128         major = PVR_MAJ(pvr);
129         minor = PVR_MIN(pvr);
130
131         printf("Core:  ");
132         switch (fam) {
133         case PVR_FAM(PVR_85xx):
134             puts("E500");
135             break;
136         default:
137             puts("Unknown");
138             break;
139         }
140
141         if (PVR_MEM(pvr) == 0x03)
142                 puts("MC");
143
144         printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
145
146         get_sys_info(&sysinfo);
147
148         puts("Clock Configuration:");
149         for (i = 0; i < CONFIG_NUM_CPUS; i++) {
150                 if (!(i & 3))
151                         printf ("\n       ");
152                 printf("CPU%d:%-4s MHz, ",
153                                 i,strmhz(buf1, sysinfo.freqProcessor[i]));
154         }
155         printf("\n       CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
156
157         switch (ddr_ratio) {
158         case 0x0:
159                 printf("       DDR:%-4s MHz (%s MT/s data rate), ",
160                         strmhz(buf1, sysinfo.freqDDRBus/2),
161                         strmhz(buf2, sysinfo.freqDDRBus));
162                 break;
163         case 0x7:
164                 printf("       DDR:%-4s MHz (%s MT/s data rate) (Synchronous), ",
165                         strmhz(buf1, sysinfo.freqDDRBus/2),
166                         strmhz(buf2, sysinfo.freqDDRBus));
167                 break;
168         default:
169                 printf("       DDR:%-4s MHz (%s MT/s data rate) (Asynchronous), ",
170                         strmhz(buf1, sysinfo.freqDDRBus/2),
171                         strmhz(buf2, sysinfo.freqDDRBus));
172                 break;
173         }
174
175         if (sysinfo.freqLocalBus > LCRR_CLKDIV)
176                 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
177         else
178                 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
179                        sysinfo.freqLocalBus);
180
181 #ifdef CONFIG_CPM2
182         printf("CPM:   %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
183 #endif
184
185         puts("L1:    D-cache 32 kB enabled\n       I-cache 32 kB enabled\n");
186
187         return 0;
188 }
189
190
191 /* ------------------------------------------------------------------------- */
192
193 int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
194 {
195         uint pvr;
196         uint ver;
197         unsigned long val, msr;
198
199         pvr = get_pvr();
200         ver = PVR_VER(pvr);
201
202         if (ver & 1){
203         /* e500 v2 core has reset control register */
204                 volatile unsigned int * rstcr;
205                 rstcr = (volatile unsigned int *)(CONFIG_SYS_IMMR + 0xE00B0);
206                 *rstcr = 0x2;           /* HRESET_REQ */
207                 udelay(100);
208         }
209
210         /*
211          * Fallthrough if the code above failed
212          * Initiate hard reset in debug control register DBCR0
213          * Make sure MSR[DE] = 1
214          */
215
216         msr = mfmsr ();
217         msr |= MSR_DE;
218         mtmsr (msr);
219
220         val = mfspr(DBCR0);
221         val |= 0x70000000;
222         mtspr(DBCR0,val);
223
224         return 1;
225 }
226
227
228 /*
229  * Get timebase clock frequency
230  */
231 unsigned long get_tbclk (void)
232 {
233         return (gd->bus_clk + 4UL)/8UL;
234 }
235
236
237 #if defined(CONFIG_WATCHDOG)
238 void
239 watchdog_reset(void)
240 {
241         int re_enable = disable_interrupts();
242         reset_85xx_watchdog();
243         if (re_enable) enable_interrupts();
244 }
245
246 void
247 reset_85xx_watchdog(void)
248 {
249         /*
250          * Clear TSR(WIS) bit by writing 1
251          */
252         unsigned long val;
253         val = mfspr(SPRN_TSR);
254         val |= TSR_WIS;
255         mtspr(SPRN_TSR, val);
256 }
257 #endif  /* CONFIG_WATCHDOG */
258
259 #if defined(CONFIG_DDR_ECC)
260 void dma_init(void) {
261         volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
262
263         dma->satr0 = 0x02c40000;
264         dma->datr0 = 0x02c40000;
265         dma->sr0 = 0xfffffff; /* clear any errors */
266         asm("sync; isync; msync");
267         return;
268 }
269
270 uint dma_check(void) {
271         volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
272         volatile uint status = dma->sr0;
273
274         /* While the channel is busy, spin */
275         while((status & 4) == 4) {
276                 status = dma->sr0;
277         }
278
279         /* clear MR0[CS] channel start bit */
280         dma->mr0 &= 0x00000001;
281         asm("sync;isync;msync");
282
283         if (status != 0) {
284                 printf ("DMA Error: status = %x\n", status);
285         }
286         return status;
287 }
288
289 int dma_xfer(void *dest, uint count, void *src) {
290         volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
291
292         dma->dar0 = (uint) dest;
293         dma->sar0 = (uint) src;
294         dma->bcr0 = count;
295         dma->mr0 = 0xf000004;
296         asm("sync;isync;msync");
297         dma->mr0 = 0xf000005;
298         asm("sync;isync;msync");
299         return dma_check();
300 }
301 #endif
302
303 /*
304  * Configures a UPM. The function requires the respective MxMR to be set
305  * before calling this function. "size" is the number or entries, not a sizeof.
306  */
307 void upmconfig (uint upm, uint * table, uint size)
308 {
309         int i, mdr, mad, old_mad = 0;
310         volatile u32 *mxmr;
311         volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
312         volatile u32 *brp,*orp;
313         volatile u8* dummy = NULL;
314         int upmmask;
315
316         switch (upm) {
317         case UPMA:
318                 mxmr = &lbc->mamr;
319                 upmmask = BR_MS_UPMA;
320                 break;
321         case UPMB:
322                 mxmr = &lbc->mbmr;
323                 upmmask = BR_MS_UPMB;
324                 break;
325         case UPMC:
326                 mxmr = &lbc->mcmr;
327                 upmmask = BR_MS_UPMC;
328                 break;
329         default:
330                 printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
331                 hang();
332         }
333
334         /* Find the address for the dummy write transaction */
335         for (brp = &lbc->br0, orp = &lbc->or0, i = 0; i < 8;
336                  i++, brp += 2, orp += 2) {
337
338                 /* Look for a valid BR with selected UPM */
339                 if ((in_be32(brp) & (BR_V | BR_MSEL)) == (BR_V | upmmask)) {
340                         dummy = (volatile u8*)(in_be32(brp) & BR_BA);
341                         break;
342                 }
343         }
344
345         if (i == 8) {
346                 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
347                 hang();
348         }
349
350         for (i = 0; i < size; i++) {
351                 /* 1 */
352                 out_be32(mxmr,  (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_WARR | i);
353                 /* 2 */
354                 out_be32(&lbc->mdr, table[i]);
355                 /* 3 */
356                 mdr = in_be32(&lbc->mdr);
357                 /* 4 */
358                 *(volatile u8 *)dummy = 0;
359                 /* 5 */
360                 do {
361                         mad = in_be32(mxmr) & MxMR_MAD_MSK;
362                 } while (mad <= old_mad && !(!mad && i == (size-1)));
363                 old_mad = mad;
364         }
365         out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_NORM);
366 }
367
368
369 /*
370  * Initializes on-chip ethernet controllers.
371  * to override, implement board_eth_init()
372  */
373 int cpu_eth_init(bd_t *bis)
374 {
375 #if defined(CONFIG_ETHER_ON_FCC)
376         fec_initialize(bis);
377 #endif
378 #if defined(CONFIG_UEC_ETH1)
379         uec_initialize(0);
380 #endif
381 #if defined(CONFIG_UEC_ETH2)
382         uec_initialize(1);
383 #endif
384 #if defined(CONFIG_UEC_ETH3)
385         uec_initialize(2);
386 #endif
387 #if defined(CONFIG_UEC_ETH4)
388         uec_initialize(3);
389 #endif
390 #if defined(CONFIG_UEC_ETH5)
391         uec_initialize(4);
392 #endif
393 #if defined(CONFIG_UEC_ETH6)
394         uec_initialize(5);
395 #endif
396 #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_MPC85XX_FEC)
397         tsec_standard_init(bis);
398 #endif
399
400         return 0;
401 }
402
403 /*
404  * Initializes on-chip MMC controllers.
405  * to override, implement board_mmc_init()
406  */
407 int cpu_mmc_init(bd_t *bis)
408 {
409 #ifdef CONFIG_FSL_ESDHC
410         return fsl_esdhc_mmc_init(bis);
411 #else
412         return 0;
413 #endif
414 }