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 <asm/fsl_serdes.h>
36 #include <spd_sdram.h>
41 #include <fdt_support.h>
43 DECLARE_GLOBAL_DATA_PTR;
45 void local_bus_init(void);
47 int board_early_init_f (void)
54 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
55 volatile u_char *rev= (void *)CONFIG_SYS_BD_REV;
57 printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
61 * Initialize local bus.
65 out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */
66 out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */
71 * Initialize Local Bus
76 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
77 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
83 get_sys_info(&sysinfo);
84 clkdiv = (in_be32(&lbc->lcrr) & LCRR_CLKDIV) * 2;
85 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
87 out_be32(&gur->lbiuiplldcr1, 0x00078080);
89 out_be32(&gur->lbiuiplldcr0, 0x7c0f1bf0);
90 } else if (clkdiv == 8) {
91 out_be32(&gur->lbiuiplldcr0, 0x6c0f1bf0);
92 } else if (clkdiv == 4) {
93 out_be32(&gur->lbiuiplldcr0, 0x5c0f1bf0);
96 setbits_be32(&lbc->lcrr, 0x00030000);
98 asm("sync;isync;msync");
100 out_be32(&lbc->ltesr, 0xffffffff); /* Clear LBC error IRQs */
101 out_be32(&lbc->lteir, 0xffffffff); /* Enable LBC error IRQs */
105 * Initialize SDRAM memory on the Local Bus.
107 void lbc_sdram_init(void)
109 #if defined(CONFIG_SYS_LBC_SDRAM_SIZE)
112 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
113 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
118 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
121 * Setup SDRAM Base and Option Registers
123 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
124 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
125 set_lbc_or(4, CONFIG_SYS_OR4_PRELIM);
126 set_lbc_br(4, CONFIG_SYS_BR4_PRELIM);
128 out_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
131 out_be32(&lbc->lsrt, CONFIG_SYS_LBC_LSRT);
132 out_be32(&lbc->mrtpr, CONFIG_SYS_LBC_MRTPR);
136 * MPC8548 uses "new" 15-16 style addressing.
138 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
139 lsdmr_common |= LSDMR_BSMA1516;
142 * Issue PRECHARGE ALL command.
144 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_PCHALL);
147 ppcDcbf((unsigned long) sdram_addr);
151 * Issue 8 AUTO REFRESH commands.
153 for (idx = 0; idx < 8; idx++) {
154 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_ARFRSH);
157 ppcDcbf((unsigned long) sdram_addr);
162 * Issue 8 MODE-set command.
164 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_MRW);
167 ppcDcbf((unsigned long) sdram_addr);
171 * Issue NORMAL OP command.
173 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_NORMAL);
176 ppcDcbf((unsigned long) sdram_addr);
177 udelay(200); /* Overkill. Must wait > 200 bus cycles */
179 #endif /* enable SDRAM init */
182 #if defined(CONFIG_SYS_DRAM_TEST)
186 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
187 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
190 printf("Testing DRAM from 0x%08x to 0x%08x\n",
191 CONFIG_SYS_MEMTEST_START,
192 CONFIG_SYS_MEMTEST_END);
194 printf("DRAM test phase 1:\n");
195 for (p = pstart; p < pend; p++)
198 for (p = pstart; p < pend; p++) {
199 if (*p != 0xaaaaaaaa) {
200 printf ("DRAM test fails at: %08x\n", (uint) p);
205 printf("DRAM test phase 2:\n");
206 for (p = pstart; p < pend; p++)
209 for (p = pstart; p < pend; p++) {
210 if (*p != 0x55555555) {
211 printf ("DRAM test fails at: %08x\n", (uint) p);
216 printf("DRAM test passed.\n");
221 #if !defined(CONFIG_SPD_EEPROM)
222 #define CONFIG_SYS_DDR_CONTROL 0xc300c000
223 /*************************************************************************
224 * fixed_sdram init -- doesn't use serial presence detect.
225 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
226 ************************************************************************/
227 phys_size_t fixed_sdram(void)
229 volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
231 out_be32(&ddr->cs0_bnds, 0x0000007f);
232 out_be32(&ddr->cs1_bnds, 0x008000ff);
233 out_be32(&ddr->cs2_bnds, 0x00000000);
234 out_be32(&ddr->cs3_bnds, 0x00000000);
235 out_be32(&ddr->cs0_config, 0x80010101);
236 out_be32(&ddr->cs1_config, 0x80010101);
237 out_be32(&ddr->cs2_config, 0x00000000);
238 out_be32(&ddr->cs3_config, 0x00000000);
239 out_be32(&ddr->timing_cfg_3, 0x00000000);
240 out_be32(&ddr->timing_cfg_0, 0x00220802);
241 out_be32(&ddr->timing_cfg_1, 0x38377322);
242 out_be32(&ddr->timing_cfg_2, 0x0fa044C7);
243 out_be32(&ddr->sdram_cfg, 0x4300C000);
244 out_be32(&ddr->sdram_cfg_2, 0x24401000);
245 out_be32(&ddr->sdram_mode, 0x23C00542);
246 out_be32(&ddr->sdram_mode_2, 0x00000000);
247 out_be32(&ddr->sdram_interval, 0x05080100);
248 out_be32(&ddr->sdram_md_cntl, 0x00000000);
249 out_be32(&ddr->sdram_data_init, 0x00000000);
250 out_be32(&ddr->sdram_clk_cntl, 0x03800000);
251 asm("sync;isync;msync");
254 #if defined (CONFIG_DDR_ECC)
255 /* Enable ECC checking */
256 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | 0x20000000);
258 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
261 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
266 static struct pci_controller pci1_hose;
267 #endif /* CONFIG_PCI1 */
270 static struct pci_controller pcie1_hose;
271 #endif /* CONFIG_PCIE1 */
278 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
279 struct fsl_pci_info pci_info[2];
280 u32 devdisr, pordevsr, porpllsr, io_sel;
281 int first_free_busno = 0;
288 devdisr = in_be32(&gur->devdisr);
289 pordevsr = in_be32(&gur->pordevsr);
290 porpllsr = in_be32(&gur->porpllsr);
291 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
293 debug(" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
296 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
297 uint pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;
298 uint pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
299 uint pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
300 uint pci_speed = CONFIG_SYS_CLK_FREQ; /* get_clock_freq() */
302 printf("PCI: Host, %d bit, %s MHz, %s, %s\n",
304 (pci_speed == 33000000) ? "33" :
305 (pci_speed == 66000000) ? "66" : "unknown",
306 pci_clk_sel ? "sync" : "async",
307 pci_arb ? "arbiter" : "external-arbiter");
309 SET_STD_PCI_INFO(pci_info[num], 1);
310 first_free_busno = fsl_pci_init_port(&pci_info[num++],
311 &pci1_hose, first_free_busno);
313 printf("PCI: disabled\n");
318 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
321 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable PCI2 */
324 pcie_configured = is_serdes_configured(PCIE1);
326 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
327 SET_STD_PCIE_INFO(pci_info[num], 1);
328 printf("PCIE: base address %lx\n", pci_info[num].regs);
329 first_free_busno = fsl_pci_init_port(&pci_info[num++],
330 &pcie1_hose, first_free_busno);
332 printf("PCIE: disabled\n");
337 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
342 int board_eth_init(bd_t *bis)
344 tsec_standard_init(bis);
346 return 0; /* otherwise cpu_eth_init gets run */
349 int last_stage_init(void)
354 #if defined(CONFIG_OF_BOARD_SETUP)
355 void ft_board_setup(void *blob, bd_t *bd)
357 ft_cpu_setup(blob, bd);
359 #ifdef CONFIG_FSL_PCI_INIT