2 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
4 * See file CREDITS for list of people who contributed to this
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.
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.
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,
24 * CPU specific code for the MPC83xx family.
26 * Derived from the MPC8260 and MPC85xx.
33 #include <asm/processor.h>
37 DECLARE_GLOBAL_DATA_PTR;
41 volatile immap_t *immr;
42 ulong clock = gd->cpu_clk;
48 const struct cpu_type {
51 } cpu_type_list [] = {
59 CPU_TYPE_ENTRY(8347_TBGA_),
60 CPU_TYPE_ENTRY(8347_PBGA_),
62 CPU_TYPE_ENTRY(8358_TBGA_),
63 CPU_TYPE_ENTRY(8358_PBGA_),
70 immr = (immap_t *)CFG_IMMR;
74 switch (pvr & 0xffff0000) {
92 printf("Unknown core, ");
95 spridr = immr->sysconf.spridr;
97 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
98 if (cpu_type_list[i].partid == PARTID_NO_E(spridr)) {
100 puts(cpu_type_list[i].name);
101 if (IS_E_PROCESSOR(spridr))
103 if (REVID_MAJOR(spridr) >= 2)
105 printf(", Rev: %d.%d", REVID_MAJOR(spridr),
106 REVID_MINOR(spridr));
110 if (i == ARRAY_SIZE(cpu_type_list))
111 printf("(SPRIDR %08x unknown), ", spridr);
113 printf(" at %s MHz, ", strmhz(buf, clock));
115 printf("CSB: %s MHz\n", strmhz(buf, gd->csb_clk));
122 * Program a UPM with the code supplied in the table.
124 * The 'dummy' variable is used to increment the MAD. 'dummy' is
125 * supposed to be a pointer to the memory of the device being
126 * programmed by the UPM. The data in the MDR is written into
127 * memory and the MAD is incremented every time there's a read
128 * from 'dummy'. Unfortunately, the current prototype for this
129 * function doesn't allow for passing the address of this
130 * device, and changing the prototype will break a number lots
131 * of other code, so we need to use a round-about way of finding
132 * the value for 'dummy'.
134 * The value can be extracted from the base address bits of the
135 * Base Register (BR) associated with the specific UPM. To find
136 * that BR, we need to scan all 8 BRs until we find the one that
137 * has its MSEL bits matching the UPM we want. Once we know the
138 * right BR, we can extract the base address bits from it.
140 * The MxMR and the BR and OR of the chosen bank should all be
141 * configured before calling this function.
144 * upm: 0=UPMA, 1=UPMB, 2=UPMC
145 * table: Pointer to an array of values to program
146 * size: Number of elements in the array. Must be 64 or less.
148 void upmconfig (uint upm, uint *table, uint size)
150 #if defined(CONFIG_MPC834X)
151 volatile immap_t *immap = (immap_t *) CFG_IMMR;
152 volatile lbus83xx_t *lbus = &immap->lbus;
153 volatile uchar *dummy = NULL;
154 const u32 msel = (upm + 4) << BR_MSEL_SHIFT; /* What the MSEL field in BRn should be */
155 volatile u32 *mxmr = &lbus->mamr + upm; /* Pointer to mamr, mbmr, or mcmr */
158 /* Scan all the banks to determine the base address of the device */
159 for (i = 0; i < 8; i++) {
160 if ((lbus->bank[i].br & BR_MSEL) == msel) {
161 dummy = (uchar *) (lbus->bank[i].br & BR_BA);
167 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
171 /* Set the OP field in the MxMR to "write" and the MAD field to 000000 */
172 *mxmr = (*mxmr & 0xCFFFFFC0) | 0x10000000;
174 for (i = 0; i < size; i++) {
175 lbus->mdr = table[i];
176 __asm__ __volatile__ ("sync");
177 *dummy; /* Write the value to memory and increment MAD */
178 __asm__ __volatile__ ("sync");
181 /* Set the OP field in the MxMR to "normal" and the MAD field to 000000 */
184 printf("Error: %s() not defined for this configuration.\n", __FUNCTION__);
191 do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
194 #ifndef MPC83xx_RESET
198 volatile immap_t *immap = (immap_t *) CFG_IMMR;
201 /* Interrupts and MMU off */
202 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
204 msr &= ~( MSR_EE | MSR_IR | MSR_DR);
205 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
207 /* enable Reset Control Reg */
208 immap->reset.rpr = 0x52535445;
209 __asm__ __volatile__ ("sync");
210 __asm__ __volatile__ ("isync");
212 /* confirm Reset Control Reg is enabled */
213 while(!((immap->reset.rcer) & RCER_CRE));
215 printf("Resetting the board.");
220 /* perform reset, only one bit */
221 immap->reset.rcr = RCR_SWHR;
223 #else /* ! MPC83xx_RESET */
225 immap->reset.rmr = RMR_CSRE; /* Checkstop Reset enable */
227 /* Interrupts and MMU off */
228 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
230 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
231 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
234 * Trying to execute the next instruction at a non-existing address
235 * should cause a machine check, resulting in reset
237 addr = CFG_RESET_ADDRESS;
239 printf("resetting the board.");
241 ((void (*)(void)) addr) ();
242 #endif /* MPC83xx_RESET */
249 * Get timebase clock frequency (like cpu_clk in Hz)
252 unsigned long get_tbclk(void)
256 tbclk = (gd->bus_clk + 3L) / 4L;
262 #if defined(CONFIG_WATCHDOG)
263 void watchdog_reset (void)
265 int re_enable = disable_interrupts();
267 /* Reset the 83xx watchdog */
268 volatile immap_t *immr = (immap_t *) CFG_IMMR;
269 immr->wdt.swsrr = 0x556c;
270 immr->wdt.swsrr = 0xaa39;
273 enable_interrupts ();
277 #if defined(CONFIG_DDR_ECC)
280 volatile immap_t *immap = (immap_t *)CFG_IMMR;
281 volatile dma83xx_t *dma = &immap->dma;
282 volatile u32 status = swab32(dma->dmasr0);
283 volatile u32 dmamr0 = swab32(dma->dmamr0);
287 /* initialize DMASARn, DMADAR and DMAABCRn */
288 dma->dmadar0 = (u32)0;
289 dma->dmasar0 = (u32)0;
292 __asm__ __volatile__ ("sync");
293 __asm__ __volatile__ ("isync");
296 dmamr0 &= ~DMA_CHANNEL_START;
297 dma->dmamr0 = swab32(dmamr0);
298 __asm__ __volatile__ ("sync");
299 __asm__ __volatile__ ("isync");
301 /* while the channel is busy, spin */
302 while(status & DMA_CHANNEL_BUSY) {
303 status = swab32(dma->dmasr0);
306 debug("DMA-init end\n");
311 volatile immap_t *immap = (immap_t *)CFG_IMMR;
312 volatile dma83xx_t *dma = &immap->dma;
313 volatile u32 status = swab32(dma->dmasr0);
314 volatile u32 byte_count = swab32(dma->dmabcr0);
316 /* while the channel is busy, spin */
317 while (status & DMA_CHANNEL_BUSY) {
318 status = swab32(dma->dmasr0);
321 if (status & DMA_CHANNEL_TRANSFER_ERROR) {
322 printf ("DMA Error: status = %x @ %d\n", status, byte_count);
328 int dma_xfer(void *dest, u32 count, void *src)
330 volatile immap_t *immap = (immap_t *)CFG_IMMR;
331 volatile dma83xx_t *dma = &immap->dma;
334 /* initialize DMASARn, DMADAR and DMAABCRn */
335 dma->dmadar0 = swab32((u32)dest);
336 dma->dmasar0 = swab32((u32)src);
337 dma->dmabcr0 = swab32(count);
339 __asm__ __volatile__ ("sync");
340 __asm__ __volatile__ ("isync");
342 /* init direct transfer, clear CS bit */
343 dmamr0 = (DMA_CHANNEL_TRANSFER_MODE_DIRECT |
344 DMA_CHANNEL_SOURCE_ADDRESS_HOLD_8B |
345 DMA_CHANNEL_SOURCE_ADRESSS_HOLD_EN);
347 dma->dmamr0 = swab32(dmamr0);
349 __asm__ __volatile__ ("sync");
350 __asm__ __volatile__ ("isync");
352 /* set CS to start DMA transfer */
353 dmamr0 |= DMA_CHANNEL_START;
354 dma->dmamr0 = swab32(dmamr0);
355 __asm__ __volatile__ ("sync");
356 __asm__ __volatile__ ("isync");
358 return ((int)dma_check());
360 #endif /*CONFIG_DDR_ECC*/
363 * Initializes on-chip ethernet controllers.
364 * to override, implement board_eth_init()
366 int cpu_eth_init(bd_t *bis)
368 #if defined(CONFIG_TSEC_ENET)
369 tsec_standard_init(bis);