2 * Copyright 2007,2009 Wind River Systems, Inc. <www.windriver.com>
4 * Copyright 2007 Embedded Specialties, Inc.
6 * Copyright 2004, 2007 Freescale Semiconductor.
8 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
10 * See file CREDITS for list of people who contributed to this
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 #include <asm/processor.h>
32 #include <asm/immap_85xx.h>
33 #include <asm/fsl_pci.h>
34 #include <asm/fsl_ddr_sdram.h>
35 #include <spd_sdram.h>
40 #include <fdt_support.h>
42 DECLARE_GLOBAL_DATA_PTR;
44 void local_bus_init(void);
45 void sdram_init(void);
46 long int fixed_sdram (void);
48 int board_early_init_f (void)
55 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
56 volatile u_char *rev= (void *)CONFIG_SYS_BD_REV;
58 printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
62 * Initialize local bus.
66 out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */
67 out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */
72 initdram(int board_type)
76 puts("Initializing\n");
78 #if defined(CONFIG_DDR_DLL)
81 * Work around to stabilize DDR DLL MSYNC_IN.
82 * Errata DDR9 seems to have been fixed.
83 * This is now the workaround for Errata DDR11:
84 * Override DLL = 1, Course Adj = 1, Tap Select = 0
87 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
89 out_be32(&gur->ddrdllcr, 0x81000000);
90 asm("sync;isync;msync");
95 #if defined(CONFIG_SPD_EEPROM)
96 dram_size = fsl_ddr_sdram();
97 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
98 dram_size *= 0x100000;
100 dram_size = fixed_sdram ();
104 * SDRAM Initialization
113 * Initialize Local Bus
118 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
119 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
125 get_sys_info(&sysinfo);
126 clkdiv = (in_be32(&lbc->lcrr) & LCRR_CLKDIV) * 2;
127 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
129 out_be32(&gur->lbiuiplldcr1, 0x00078080);
131 out_be32(&gur->lbiuiplldcr0, 0x7c0f1bf0);
132 } else if (clkdiv == 8) {
133 out_be32(&gur->lbiuiplldcr0, 0x6c0f1bf0);
134 } else if (clkdiv == 4) {
135 out_be32(&gur->lbiuiplldcr0, 0x5c0f1bf0);
138 setbits_be32(&lbc->lcrr, 0x00030000);
140 asm("sync;isync;msync");
142 out_be32(&lbc->ltesr, 0xffffffff); /* Clear LBC error IRQs */
143 out_be32(&lbc->lteir, 0xffffffff); /* Enable LBC error IRQs */
147 * Initialize SDRAM memory on the Local Bus.
152 #if defined(CONFIG_SYS_LBC_SDRAM_SIZE)
155 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
156 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
161 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
164 * Setup SDRAM Base and Option Registers
166 out_be32(&lbc->or3, CONFIG_SYS_OR3_PRELIM);
169 out_be32(&lbc->br3, CONFIG_SYS_BR3_PRELIM);
172 out_be32(&lbc->or4, CONFIG_SYS_OR4_PRELIM);
175 out_be32(&lbc->br4, CONFIG_SYS_BR4_PRELIM);
178 out_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
182 out_be32(&lbc->lsrt, CONFIG_SYS_LBC_LSRT);
183 out_be32(&lbc->mrtpr, CONFIG_SYS_LBC_MRTPR);
187 * MPC8548 uses "new" 15-16 style addressing.
189 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
190 lsdmr_common |= LSDMR_BSMA1516;
193 * Issue PRECHARGE ALL command.
195 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_PCHALL);
198 ppcDcbf((unsigned long) sdram_addr);
202 * Issue 8 AUTO REFRESH commands.
204 for (idx = 0; idx < 8; idx++) {
205 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_ARFRSH);
208 ppcDcbf((unsigned long) sdram_addr);
213 * Issue 8 MODE-set command.
215 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_MRW);
218 ppcDcbf((unsigned long) sdram_addr);
222 * Issue NORMAL OP command.
224 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_NORMAL);
227 ppcDcbf((unsigned long) sdram_addr);
228 udelay(200); /* Overkill. Must wait > 200 bus cycles */
230 #endif /* enable SDRAM init */
233 #if defined(CONFIG_SYS_DRAM_TEST)
237 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
238 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
241 printf("Testing DRAM from 0x%08x to 0x%08x\n",
242 CONFIG_SYS_MEMTEST_START,
243 CONFIG_SYS_MEMTEST_END);
245 printf("DRAM test phase 1:\n");
246 for (p = pstart; p < pend; p++)
249 for (p = pstart; p < pend; p++) {
250 if (*p != 0xaaaaaaaa) {
251 printf ("DRAM test fails at: %08x\n", (uint) p);
256 printf("DRAM test phase 2:\n");
257 for (p = pstart; p < pend; p++)
260 for (p = pstart; p < pend; p++) {
261 if (*p != 0x55555555) {
262 printf ("DRAM test fails at: %08x\n", (uint) p);
267 printf("DRAM test passed.\n");
272 #if !defined(CONFIG_SPD_EEPROM)
273 #define CONFIG_SYS_DDR_CONTROL 0xc300c000
274 /*************************************************************************
275 * fixed_sdram init -- doesn't use serial presence detect.
276 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
277 ************************************************************************/
278 long int fixed_sdram (void)
280 volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
282 out_be32(&ddr->cs0_bnds, 0x0000007f);
283 out_be32(&ddr->cs1_bnds, 0x008000ff);
284 out_be32(&ddr->cs2_bnds, 0x00000000);
285 out_be32(&ddr->cs3_bnds, 0x00000000);
286 out_be32(&ddr->cs0_config, 0x80010101);
287 out_be32(&ddr->cs1_config, 0x80010101);
288 out_be32(&ddr->cs2_config, 0x00000000);
289 out_be32(&ddr->cs3_config, 0x00000000);
290 out_be32(&ddr->timing_cfg_3, 0x00000000);
291 out_be32(&ddr->timing_cfg_0, 0x00220802);
292 out_be32(&ddr->timing_cfg_1, 0x38377322);
293 out_be32(&ddr->timing_cfg_2, 0x0fa044C7);
294 out_be32(&ddr->sdram_cfg, 0x4300C000);
295 out_be32(&ddr->sdram_cfg_2, 0x24401000);
296 out_be32(&ddr->sdram_mode, 0x23C00542);
297 out_be32(&ddr->sdram_mode_2, 0x00000000);
298 out_be32(&ddr->sdram_interval, 0x05080100);
299 out_be32(&ddr->sdram_md_cntl, 0x00000000);
300 out_be32(&ddr->sdram_data_init, 0x00000000);
301 out_be32(&ddr->sdram_clk_cntl, 0x03800000);
302 asm("sync;isync;msync");
305 #if defined (CONFIG_DDR_ECC)
306 /* Enable ECC checking */
307 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | 0x20000000);
309 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
312 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
317 static struct pci_controller pci1_hose;
318 #endif /* CONFIG_PCI1 */
321 static struct pci_controller pcie1_hose;
322 #endif /* CONFIG_PCIE1 */
329 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
330 struct fsl_pci_info pci_info[2];
331 u32 devdisr, pordevsr, porpllsr, io_sel;
332 int first_free_busno = 0;
339 devdisr = in_be32(&gur->devdisr);
340 pordevsr = in_be32(&gur->pordevsr);
341 porpllsr = in_be32(&gur->porpllsr);
342 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
344 debug(" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
347 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
348 uint pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;
349 uint pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
350 uint pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
351 uint pci_speed = CONFIG_SYS_CLK_FREQ; /* get_clock_freq() */
353 printf (" PCI host: %d bit, %s MHz, %s, %s\n",
355 (pci_speed == 33000000) ? "33" :
356 (pci_speed == 66000000) ? "66" : "unknown",
357 pci_clk_sel ? "sync" : "async",
358 pci_arb ? "arbiter" : "external-arbiter");
360 SET_STD_PCI_INFO(pci_info[num], 1);
361 first_free_busno = fsl_pci_init_port(&pci_info[num++],
362 &pci1_hose, first_free_busno);
364 printf (" PCI: disabled\n");
369 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
372 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable PCI2 */
375 pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
377 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
378 SET_STD_PCIE_INFO(pci_info[num], 1);
379 printf (" PCIE at base address %lx\n", pci_info[num].regs);
380 first_free_busno = fsl_pci_init_port(&pci_info[num++],
381 &pcie1_hose, first_free_busno);
383 printf (" PCIE: disabled\n");
388 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
393 int board_eth_init(bd_t *bis)
395 tsec_standard_init(bis);
397 return 0; /* otherwise cpu_eth_init gets run */
400 int last_stage_init(void)
405 #if defined(CONFIG_OF_BOARD_SETUP)
406 void ft_board_setup(void *blob, bd_t *bd)
408 ft_cpu_setup(blob, bd);
410 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
413 ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);