blob: bff3cefda94934770c47f3267abfb8e9cb07c41f [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
Dave Liu03051c32007-09-18 12:36:11 +08002 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
Eran Libertyf046ccd2005-07-28 10:08:46 -05003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
Eran Libertyf046ccd2005-07-28 10:08:46 -050021 */
22
23/*
24 * CPU specific code for the MPC83xx family.
25 *
26 * Derived from the MPC8260 and MPC85xx.
27 */
28
29#include <common.h>
30#include <watchdog.h>
31#include <command.h>
32#include <mpc83xx.h>
33#include <asm/processor.h>
Gerald Van Baren213bf8c2007-03-31 12:23:51 -040034#include <libfdt.h>
Eran Libertyf046ccd2005-07-28 10:08:46 -050035
Wolfgang Denkd87080b2006-03-31 18:32:53 +020036DECLARE_GLOBAL_DATA_PTR;
37
Eran Libertyf046ccd2005-07-28 10:08:46 -050038int checkcpu(void)
39{
Dave Liu5f820432006-11-03 19:33:44 -060040 volatile immap_t *immr;
Eran Libertyf046ccd2005-07-28 10:08:46 -050041 ulong clock = gd->cpu_clk;
42 u32 pvr = get_pvr();
Dave Liu5f820432006-11-03 19:33:44 -060043 u32 spridr;
Eran Libertyf046ccd2005-07-28 10:08:46 -050044 char buf[32];
45
Timur Tabid239d742006-11-03 12:00:28 -060046 immr = (immap_t *)CFG_IMMR;
Dave Liu5f820432006-11-03 19:33:44 -060047
Kim Phillips54b2d432007-04-30 15:26:21 -050048 puts("CPU: ");
Scott Wood95e7ef82007-04-16 14:34:16 -050049
50 switch (pvr & 0xffff0000) {
51 case PVR_E300C1:
52 printf("e300c1, ");
53 break;
54
55 case PVR_E300C2:
56 printf("e300c2, ");
57 break;
58
59 case PVR_E300C3:
60 printf("e300c3, ");
61 break;
62
Dave Liu03051c32007-09-18 12:36:11 +080063 case PVR_E300C4:
64 printf("e300c4, ");
65 break;
66
Scott Wood95e7ef82007-04-16 14:34:16 -050067 default:
68 printf("Unknown core, ");
Eran Libertyf046ccd2005-07-28 10:08:46 -050069 }
70
Dave Liu5f820432006-11-03 19:33:44 -060071 spridr = immr->sysconf.spridr;
Dave Liu5f820432006-11-03 19:33:44 -060072 switch(spridr) {
73 case SPR_8349E_REV10:
74 case SPR_8349E_REV11:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080075 case SPR_8349E_REV31:
Dave Liu5f820432006-11-03 19:33:44 -060076 puts("MPC8349E, ");
Eran Libertyf046ccd2005-07-28 10:08:46 -050077 break;
Dave Liu5f820432006-11-03 19:33:44 -060078 case SPR_8349_REV10:
79 case SPR_8349_REV11:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080080 case SPR_8349_REV31:
Dave Liu5f820432006-11-03 19:33:44 -060081 puts("MPC8349, ");
82 break;
83 case SPR_8347E_REV10_TBGA:
84 case SPR_8347E_REV11_TBGA:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080085 case SPR_8347E_REV31_TBGA:
Dave Liu5f820432006-11-03 19:33:44 -060086 case SPR_8347E_REV10_PBGA:
87 case SPR_8347E_REV11_PBGA:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080088 case SPR_8347E_REV31_PBGA:
Dave Liu5f820432006-11-03 19:33:44 -060089 puts("MPC8347E, ");
90 break;
91 case SPR_8347_REV10_TBGA:
92 case SPR_8347_REV11_TBGA:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080093 case SPR_8347_REV31_TBGA:
Dave Liu5f820432006-11-03 19:33:44 -060094 case SPR_8347_REV10_PBGA:
95 case SPR_8347_REV11_PBGA:
Xie Xiaobo8d172c02007-02-14 18:26:44 +080096 case SPR_8347_REV31_PBGA:
Dave Liu5f820432006-11-03 19:33:44 -060097 puts("MPC8347, ");
98 break;
99 case SPR_8343E_REV10:
100 case SPR_8343E_REV11:
Xie Xiaobo8d172c02007-02-14 18:26:44 +0800101 case SPR_8343E_REV31:
Dave Liu5f820432006-11-03 19:33:44 -0600102 puts("MPC8343E, ");
103 break;
104 case SPR_8343_REV10:
105 case SPR_8343_REV11:
Xie Xiaobo8d172c02007-02-14 18:26:44 +0800106 case SPR_8343_REV31:
Dave Liu5f820432006-11-03 19:33:44 -0600107 puts("MPC8343, ");
108 break;
109 case SPR_8360E_REV10:
110 case SPR_8360E_REV11:
111 case SPR_8360E_REV12:
Xie Xiaobob110f402007-02-14 18:27:06 +0800112 case SPR_8360E_REV20:
Lee Nipper1ded0242007-06-14 20:07:33 -0500113 case SPR_8360E_REV21:
Dave Liu5f820432006-11-03 19:33:44 -0600114 puts("MPC8360E, ");
115 break;
116 case SPR_8360_REV10:
117 case SPR_8360_REV11:
118 case SPR_8360_REV12:
Xie Xiaobob110f402007-02-14 18:27:06 +0800119 case SPR_8360_REV20:
Lee Nipper1ded0242007-06-14 20:07:33 -0500120 case SPR_8360_REV21:
Dave Liu5f820432006-11-03 19:33:44 -0600121 puts("MPC8360, ");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500122 break;
Dave Liu24c3aca2006-12-07 21:13:15 +0800123 case SPR_8323E_REV10:
124 case SPR_8323E_REV11:
125 puts("MPC8323E, ");
126 break;
127 case SPR_8323_REV10:
128 case SPR_8323_REV11:
129 puts("MPC8323, ");
130 break;
131 case SPR_8321E_REV10:
132 case SPR_8321E_REV11:
133 puts("MPC8321E, ");
134 break;
135 case SPR_8321_REV10:
136 case SPR_8321_REV11:
137 puts("MPC8321, ");
138 break;
Scott Wooda35b0c42007-04-16 14:34:15 -0500139 case SPR_8311_REV10:
140 puts("MPC8311, ");
141 break;
142 case SPR_8311E_REV10:
143 puts("MPC8311E, ");
144 break;
145 case SPR_8313_REV10:
146 puts("MPC8313, ");
147 break;
148 case SPR_8313E_REV10:
149 puts("MPC8313E, ");
150 break;
Dave Liu555da612007-09-18 12:36:58 +0800151 case SPR_8315E_REV10:
152 puts("MPC8315E, ");
153 break;
154 case SPR_8315_REV10:
155 puts("MPC8315, ");
156 break;
157 case SPR_8314E_REV10:
158 puts("MPC8314E, ");
159 break;
160 case SPR_8314_REV10:
161 puts("MPC8314, ");
162 break;
Dave Liu03051c32007-09-18 12:36:11 +0800163 case SPR_8379E_REV10:
164 puts("MPC8379E, ");
165 break;
166 case SPR_8379_REV10:
167 puts("MPC8379, ");
168 break;
169 case SPR_8378E_REV10:
170 puts("MPC8378E, ");
171 break;
172 case SPR_8378_REV10:
173 puts("MPC8378, ");
174 break;
175 case SPR_8377E_REV10:
176 puts("MPC8377E, ");
177 break;
178 case SPR_8377_REV10:
179 puts("MPC8377, ");
180 break;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500181 default:
Lee Nipper1ded0242007-06-14 20:07:33 -0500182 printf("Rev: Unknown revision number:%08x\n"
183 "Warning: Unsupported cpu revision!\n",spridr);
Xie Xiaobo8d172c02007-02-14 18:26:44 +0800184 return 0;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500185 }
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200186
Kumar Gala3e78a312007-01-30 14:08:30 -0600187#if defined(CONFIG_MPC834X)
Xie Xiaobo8d172c02007-02-14 18:26:44 +0800188 /* Multiple revisons of 834x processors may have the same SPRIDR value.
189 * So use PVR to identify the revision number.
190 */
Kim Phillips54b2d432007-04-30 15:26:21 -0500191 printf("Rev: %02x at %s MHz", PVR_MAJ(pvr)<<4 | PVR_MIN(pvr), strmhz(buf, clock));
Dave Liu5f820432006-11-03 19:33:44 -0600192#else
Kim Phillips54b2d432007-04-30 15:26:21 -0500193 printf("Rev: %02x at %s MHz", spridr & 0x0000FFFF, strmhz(buf, clock));
Dave Liu5f820432006-11-03 19:33:44 -0600194#endif
Kim Phillips54b2d432007-04-30 15:26:21 -0500195 printf(", CSB: %4d MHz\n", gd->csb_clk / 1000000);
196
Eran Libertyf046ccd2005-07-28 10:08:46 -0500197 return 0;
198}
199
200
Timur Tabibe5e6182006-11-03 19:15:00 -0600201/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600202 * Program a UPM with the code supplied in the table.
203 *
204 * The 'dummy' variable is used to increment the MAD. 'dummy' is
205 * supposed to be a pointer to the memory of the device being
206 * programmed by the UPM. The data in the MDR is written into
207 * memory and the MAD is incremented every time there's a read
208 * from 'dummy'. Unfortunately, the current prototype for this
209 * function doesn't allow for passing the address of this
210 * device, and changing the prototype will break a number lots
211 * of other code, so we need to use a round-about way of finding
212 * the value for 'dummy'.
213 *
214 * The value can be extracted from the base address bits of the
215 * Base Register (BR) associated with the specific UPM. To find
216 * that BR, we need to scan all 8 BRs until we find the one that
217 * has its MSEL bits matching the UPM we want. Once we know the
218 * right BR, we can extract the base address bits from it.
219 *
220 * The MxMR and the BR and OR of the chosen bank should all be
221 * configured before calling this function.
222 *
223 * Parameters:
224 * upm: 0=UPMA, 1=UPMB, 2=UPMC
225 * table: Pointer to an array of values to program
226 * size: Number of elements in the array. Must be 64 or less.
Timur Tabibe5e6182006-11-03 19:15:00 -0600227 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500228void upmconfig (uint upm, uint *table, uint size)
229{
Timur Tabi2ad6b512006-10-31 18:44:42 -0600230#if defined(CONFIG_MPC834X)
Timur Tabid239d742006-11-03 12:00:28 -0600231 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600232 volatile lbus83xx_t *lbus = &immap->lbus;
233 volatile uchar *dummy = NULL;
234 const u32 msel = (upm + 4) << BR_MSEL_SHIFT; /* What the MSEL field in BRn should be */
235 volatile u32 *mxmr = &lbus->mamr + upm; /* Pointer to mamr, mbmr, or mcmr */
236 uint i;
237
238 /* Scan all the banks to determine the base address of the device */
239 for (i = 0; i < 8; i++) {
240 if ((lbus->bank[i].br & BR_MSEL) == msel) {
241 dummy = (uchar *) (lbus->bank[i].br & BR_BA);
242 break;
243 }
244 }
245
246 if (!dummy) {
247 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
248 hang();
249 }
250
251 /* Set the OP field in the MxMR to "write" and the MAD field to 000000 */
252 *mxmr = (*mxmr & 0xCFFFFFC0) | 0x10000000;
253
254 for (i = 0; i < size; i++) {
255 lbus->mdr = table[i];
256 __asm__ __volatile__ ("sync");
257 *dummy; /* Write the value to memory and increment MAD */
258 __asm__ __volatile__ ("sync");
259 }
260
261 /* Set the OP field in the MxMR to "normal" and the MAD field to 000000 */
262 *mxmr &= 0xCFFFFFC0;
263#else
264 printf("Error: %s() not defined for this configuration.\n", __FUNCTION__);
265 hang();
266#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500267}
268
269
270int
271do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
272{
Wolfgang Denk07a25052005-08-05 19:49:35 +0200273 ulong msr;
274#ifndef MPC83xx_RESET
275 ulong addr;
276#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500277
Timur Tabid239d742006-11-03 12:00:28 -0600278 volatile immap_t *immap = (immap_t *) CFG_IMMR;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500279
280#ifdef MPC83xx_RESET
281 /* Interrupts and MMU off */
282 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
283
284 msr &= ~( MSR_EE | MSR_IR | MSR_DR);
285 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
286
287 /* enable Reset Control Reg */
288 immap->reset.rpr = 0x52535445;
Marian Balakowicz6d8ae5a2006-03-14 16:12:48 +0100289 __asm__ __volatile__ ("sync");
290 __asm__ __volatile__ ("isync");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500291
292 /* confirm Reset Control Reg is enabled */
293 while(!((immap->reset.rcer) & RCER_CRE));
294
295 printf("Resetting the board.");
296 printf("\n");
297
298 udelay(200);
299
300 /* perform reset, only one bit */
Wolfgang Denk07a25052005-08-05 19:49:35 +0200301 immap->reset.rcr = RCR_SWHR;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500302
Wolfgang Denk07a25052005-08-05 19:49:35 +0200303#else /* ! MPC83xx_RESET */
304
305 immap->reset.rmr = RMR_CSRE; /* Checkstop Reset enable */
306
307 /* Interrupts and MMU off */
308 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500309
310 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
311 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
312
313 /*
314 * Trying to execute the next instruction at a non-existing address
315 * should cause a machine check, resulting in reset
316 */
317 addr = CFG_RESET_ADDRESS;
318
319 printf("resetting the board.");
320 printf("\n");
321 ((void (*)(void)) addr) ();
Wolfgang Denk07a25052005-08-05 19:49:35 +0200322#endif /* MPC83xx_RESET */
323
Eran Libertyf046ccd2005-07-28 10:08:46 -0500324 return 1;
325}
326
327
328/*
329 * Get timebase clock frequency (like cpu_clk in Hz)
330 */
331
332unsigned long get_tbclk(void)
333{
Eran Libertyf046ccd2005-07-28 10:08:46 -0500334 ulong tbclk;
335
336 tbclk = (gd->bus_clk + 3L) / 4L;
337
338 return tbclk;
339}
340
341
342#if defined(CONFIG_WATCHDOG)
343void watchdog_reset (void)
344{
Timur Tabi2ad6b512006-10-31 18:44:42 -0600345 int re_enable = disable_interrupts();
346
347 /* Reset the 83xx watchdog */
Timur Tabid239d742006-11-03 12:00:28 -0600348 volatile immap_t *immr = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600349 immr->wdt.swsrr = 0x556c;
350 immr->wdt.swsrr = 0xaa39;
351
352 if (re_enable)
353 enable_interrupts ();
Eran Libertyf046ccd2005-07-28 10:08:46 -0500354}
Timur Tabi2ad6b512006-10-31 18:44:42 -0600355#endif
Kumar Gala62ec6412006-01-11 16:48:10 -0600356
Marian Balakowicz61f25152006-03-14 16:14:48 +0100357#if defined(CONFIG_DDR_ECC)
358void dma_init(void)
359{
Timur Tabid239d742006-11-03 12:00:28 -0600360 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500361 volatile dma83xx_t *dma = &immap->dma;
Marian Balakowicz61f25152006-03-14 16:14:48 +0100362 volatile u32 status = swab32(dma->dmasr0);
363 volatile u32 dmamr0 = swab32(dma->dmamr0);
364
365 debug("DMA-init\n");
366
367 /* initialize DMASARn, DMADAR and DMAABCRn */
368 dma->dmadar0 = (u32)0;
369 dma->dmasar0 = (u32)0;
370 dma->dmabcr0 = 0;
371
372 __asm__ __volatile__ ("sync");
373 __asm__ __volatile__ ("isync");
374
375 /* clear CS bit */
376 dmamr0 &= ~DMA_CHANNEL_START;
377 dma->dmamr0 = swab32(dmamr0);
378 __asm__ __volatile__ ("sync");
379 __asm__ __volatile__ ("isync");
380
381 /* while the channel is busy, spin */
382 while(status & DMA_CHANNEL_BUSY) {
383 status = swab32(dma->dmasr0);
384 }
385
386 debug("DMA-init end\n");
387}
388
389uint dma_check(void)
390{
Timur Tabid239d742006-11-03 12:00:28 -0600391 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500392 volatile dma83xx_t *dma = &immap->dma;
Marian Balakowicz61f25152006-03-14 16:14:48 +0100393 volatile u32 status = swab32(dma->dmasr0);
394 volatile u32 byte_count = swab32(dma->dmabcr0);
395
396 /* while the channel is busy, spin */
397 while (status & DMA_CHANNEL_BUSY) {
398 status = swab32(dma->dmasr0);
399 }
400
401 if (status & DMA_CHANNEL_TRANSFER_ERROR) {
402 printf ("DMA Error: status = %x @ %d\n", status, byte_count);
403 }
404
405 return status;
406}
407
408int dma_xfer(void *dest, u32 count, void *src)
409{
Timur Tabid239d742006-11-03 12:00:28 -0600410 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500411 volatile dma83xx_t *dma = &immap->dma;
Marian Balakowicz61f25152006-03-14 16:14:48 +0100412 volatile u32 dmamr0;
413
414 /* initialize DMASARn, DMADAR and DMAABCRn */
415 dma->dmadar0 = swab32((u32)dest);
416 dma->dmasar0 = swab32((u32)src);
417 dma->dmabcr0 = swab32(count);
418
419 __asm__ __volatile__ ("sync");
420 __asm__ __volatile__ ("isync");
421
422 /* init direct transfer, clear CS bit */
423 dmamr0 = (DMA_CHANNEL_TRANSFER_MODE_DIRECT |
424 DMA_CHANNEL_SOURCE_ADDRESS_HOLD_8B |
425 DMA_CHANNEL_SOURCE_ADRESSS_HOLD_EN);
Wolfgang Denkcf48eb92006-04-16 10:51:58 +0200426
Marian Balakowicz61f25152006-03-14 16:14:48 +0100427 dma->dmamr0 = swab32(dmamr0);
428
429 __asm__ __volatile__ ("sync");
430 __asm__ __volatile__ ("isync");
431
432 /* set CS to start DMA transfer */
433 dmamr0 |= DMA_CHANNEL_START;
434 dma->dmamr0 = swab32(dmamr0);
435 __asm__ __volatile__ ("sync");
436 __asm__ __volatile__ ("isync");
437
438 return ((int)dma_check());
439}
440#endif /*CONFIG_DDR_ECC*/