2 * Copyright 2004,2007,2008 Freescale Semiconductor, Inc.
3 * (C) Copyright 2002, 2003 Motorola Inc.
9 * See file CREDITS for list of people who contributed to this
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.
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.
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,
33 #include <asm/cache.h>
36 DECLARE_GLOBAL_DATA_PTR;
38 struct cpu_type cpu_type_list [] = {
39 CPU_TYPE_ENTRY(8533, 8533),
40 CPU_TYPE_ENTRY(8533, 8533_E),
41 CPU_TYPE_ENTRY(8536, 8536),
42 CPU_TYPE_ENTRY(8536, 8536_E),
43 CPU_TYPE_ENTRY(8540, 8540),
44 CPU_TYPE_ENTRY(8541, 8541),
45 CPU_TYPE_ENTRY(8541, 8541_E),
46 CPU_TYPE_ENTRY(8543, 8543),
47 CPU_TYPE_ENTRY(8543, 8543_E),
48 CPU_TYPE_ENTRY(8544, 8544),
49 CPU_TYPE_ENTRY(8544, 8544_E),
50 CPU_TYPE_ENTRY(8545, 8545),
51 CPU_TYPE_ENTRY(8545, 8545_E),
52 CPU_TYPE_ENTRY(8547, 8547_E),
53 CPU_TYPE_ENTRY(8548, 8548),
54 CPU_TYPE_ENTRY(8548, 8548_E),
55 CPU_TYPE_ENTRY(8555, 8555),
56 CPU_TYPE_ENTRY(8555, 8555_E),
57 CPU_TYPE_ENTRY(8560, 8560),
58 CPU_TYPE_ENTRY(8567, 8567),
59 CPU_TYPE_ENTRY(8567, 8567_E),
60 CPU_TYPE_ENTRY(8568, 8568),
61 CPU_TYPE_ENTRY(8568, 8568_E),
62 CPU_TYPE_ENTRY(8572, 8572),
63 CPU_TYPE_ENTRY(8572, 8572_E),
66 struct cpu_type *identify_cpu(u32 ver)
69 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
70 if (cpu_type_list[i].soc_ver == ver)
71 return &cpu_type_list[i];
79 uint lcrr; /* local bus clock ratio register */
80 uint clkdiv; /* clock divider portion of lcrr */
86 #ifdef CONFIG_DDR_CLK_FREQ
87 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
88 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
89 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
95 ver = SVR_SOC_VER(svr);
98 major &= 0x7; /* the msb of this nibble is a mfg code */
100 minor = SVR_MIN(svr);
104 cpu = identify_cpu(ver);
108 if (IS_E_PROCESSOR(svr))
114 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
119 major = PVR_MAJ(pvr);
120 minor = PVR_MIN(pvr);
124 case PVR_FAM(PVR_85xx):
131 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
133 get_sys_info(&sysinfo);
135 puts("Clock Configuration:\n");
136 printf(" CPU:%4lu MHz, ", DIV_ROUND_UP(sysinfo.freqProcessor,1000000));
137 printf("CCB:%4lu MHz,\n", DIV_ROUND_UP(sysinfo.freqSystemBus,1000000));
141 printf(" DDR:%4lu MHz (%lu MT/s data rate), ",
142 DIV_ROUND_UP(sysinfo.freqDDRBus,2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
145 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Synchronous), ",
146 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus, 1000000));
149 printf(" DDR:%4lu MHz (%lu MT/s data rate) (Asynchronous), ",
150 DIV_ROUND_UP(sysinfo.freqDDRBus, 2000000), DIV_ROUND_UP(sysinfo.freqDDRBus,1000000));
154 #if defined(CONFIG_SYS_LBC_LCRR)
155 lcrr = CONFIG_SYS_LBC_LCRR;
158 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
163 clkdiv = lcrr & 0x0f;
164 if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
165 #if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544) || \
166 defined(CONFIG_MPC8572) || defined(CONFIG_MPC8536)
168 * Yes, the entire PQ38 family use the same
169 * bit-representation for twice the clock divider values.
173 printf("LBC:%4lu MHz\n",
174 DIV_ROUND_UP(sysinfo.freqSystemBus, 1000000) / clkdiv);
176 printf("LBC: unknown (lcrr: 0x%08x)\n", lcrr);
180 printf("CPM: %lu Mhz\n", sysinfo.freqSystemBus / 1000000);
183 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
189 /* ------------------------------------------------------------------------- */
191 int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
195 unsigned long val, msr;
201 /* e500 v2 core has reset control register */
202 volatile unsigned int * rstcr;
203 rstcr = (volatile unsigned int *)(CONFIG_SYS_IMMR + 0xE00B0);
204 *rstcr = 0x2; /* HRESET_REQ */
209 * Fallthrough if the code above failed
210 * Initiate hard reset in debug control register DBCR0
211 * Make sure MSR[DE] = 1
227 * Get timebase clock frequency
229 unsigned long get_tbclk (void)
231 return (gd->bus_clk + 4UL)/8UL;
235 #if defined(CONFIG_WATCHDOG)
239 int re_enable = disable_interrupts();
240 reset_85xx_watchdog();
241 if (re_enable) enable_interrupts();
245 reset_85xx_watchdog(void)
248 * Clear TSR(WIS) bit by writing 1
251 val = mfspr(SPRN_TSR);
253 mtspr(SPRN_TSR, val);
255 #endif /* CONFIG_WATCHDOG */
257 #if defined(CONFIG_DDR_ECC)
258 void dma_init(void) {
259 volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
261 dma->satr0 = 0x02c40000;
262 dma->datr0 = 0x02c40000;
263 dma->sr0 = 0xfffffff; /* clear any errors */
264 asm("sync; isync; msync");
268 uint dma_check(void) {
269 volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
270 volatile uint status = dma->sr0;
272 /* While the channel is busy, spin */
273 while((status & 4) == 4) {
277 /* clear MR0[CS] channel start bit */
278 dma->mr0 &= 0x00000001;
279 asm("sync;isync;msync");
282 printf ("DMA Error: status = %x\n", status);
287 int dma_xfer(void *dest, uint count, void *src) {
288 volatile ccsr_dma_t *dma = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
290 dma->dar0 = (uint) dest;
291 dma->sar0 = (uint) src;
293 dma->mr0 = 0xf000004;
294 asm("sync;isync;msync");
295 dma->mr0 = 0xf000005;
296 asm("sync;isync;msync");
302 * Configures a UPM. The function requires the respective MxMR to be set
303 * before calling this function. "size" is the number or entries, not a sizeof.
305 void upmconfig (uint upm, uint * table, uint size)
307 int i, mdr, mad, old_mad = 0;
309 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
310 volatile u32 *brp,*orp;
311 volatile u8* dummy = NULL;
317 upmmask = BR_MS_UPMA;
321 upmmask = BR_MS_UPMB;
325 upmmask = BR_MS_UPMC;
328 printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
332 /* Find the address for the dummy write transaction */
333 for (brp = &lbc->br0, orp = &lbc->or0, i = 0; i < 8;
334 i++, brp += 2, orp += 2) {
336 /* Look for a valid BR with selected UPM */
337 if ((in_be32(brp) & (BR_V | BR_MSEL)) == (BR_V | upmmask)) {
338 dummy = (volatile u8*)(in_be32(brp) & BR_BA);
344 printf("Error: %s() could not find matching BR\n", __FUNCTION__);
348 for (i = 0; i < size; i++) {
350 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_WARR | i);
352 out_be32(&lbc->mdr, table[i]);
354 mdr = in_be32(&lbc->mdr);
356 *(volatile u8 *)dummy = 0;
359 mad = in_be32(mxmr) & MxMR_MAD_MSK;
360 } while (mad <= old_mad && !(!mad && i == (size-1)));
363 out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_NORM);
368 * Initializes on-chip ethernet controllers.
369 * to override, implement board_eth_init()
371 int cpu_eth_init(bd_t *bis)
373 #if defined(CONFIG_TSEC_ENET) || defined(CONFIG_MPC85xx_FEC)
374 tsec_standard_init(bis);