blob: 96554b2cdcc490442c63b9dcf0f708e946289c60 [file] [log] [blame]
Joe Hamman11c45eb2007-12-13 06:45:08 -06001/*
Paul Gortmakerbd42bbb2009-09-18 19:08:46 -04002 * Copyright 2007,2009 Wind River Systems, Inc. <www.windriver.com>
3 *
Joe Hamman11c45eb2007-12-13 06:45:08 -06004 * Copyright 2007 Embedded Specialties, Inc.
5 *
6 * Copyright 2004, 2007 Freescale Semiconductor.
7 *
8 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
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.
17 *
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.
22 *
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,
26 * MA 02111-1307 USA
27 */
28
29#include <common.h>
30#include <pci.h>
31#include <asm/processor.h>
32#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050033#include <asm/fsl_pci.h>
Kumar Gala33b90792008-08-26 23:15:28 -050034#include <asm/fsl_ddr_sdram.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060035#include <asm/fsl_serdes.h>
Jon Loeligera30a5492008-03-04 10:03:03 -060036#include <spd_sdram.h>
Paul Gortmaker94ca0912009-09-18 19:08:44 -040037#include <netdev.h>
38#include <tsec.h>
Joe Hamman11c45eb2007-12-13 06:45:08 -060039#include <miiphy.h>
40#include <libfdt.h>
41#include <fdt_support.h>
42
Joe Hamman11c45eb2007-12-13 06:45:08 -060043DECLARE_GLOBAL_DATA_PTR;
44
Joe Hamman11c45eb2007-12-13 06:45:08 -060045void local_bus_init(void);
Joe Hamman11c45eb2007-12-13 06:45:08 -060046
47int board_early_init_f (void)
48{
49 return 0;
50}
51
52int checkboard (void)
53{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
55 volatile u_char *rev= (void *)CONFIG_SYS_BD_REV;
Joe Hamman11c45eb2007-12-13 06:45:08 -060056
57 printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040058 in_8(rev) >> 4);
Joe Hamman11c45eb2007-12-13 06:45:08 -060059
60 /*
61 * Initialize local bus.
62 */
63 local_bus_init ();
64
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040065 out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */
66 out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */
Joe Hamman11c45eb2007-12-13 06:45:08 -060067 return 0;
68}
69
Joe Hamman11c45eb2007-12-13 06:45:08 -060070/*
71 * Initialize Local Bus
72 */
73void
74local_bus_init(void)
75{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Becky Brucef51cdaf2010-06-17 11:37:20 -050077 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Joe Hamman11c45eb2007-12-13 06:45:08 -060078
79 uint clkdiv;
Joe Hamman11c45eb2007-12-13 06:45:08 -060080 sys_info_t sysinfo;
81
82 get_sys_info(&sysinfo);
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040083 clkdiv = (in_be32(&lbc->lcrr) & LCRR_CLKDIV) * 2;
Joe Hamman11c45eb2007-12-13 06:45:08 -060084
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040085 out_be32(&gur->lbiuiplldcr1, 0x00078080);
Joe Hamman11c45eb2007-12-13 06:45:08 -060086 if (clkdiv == 16) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040087 out_be32(&gur->lbiuiplldcr0, 0x7c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -060088 } else if (clkdiv == 8) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040089 out_be32(&gur->lbiuiplldcr0, 0x6c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -060090 } else if (clkdiv == 4) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040091 out_be32(&gur->lbiuiplldcr0, 0x5c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -060092 }
93
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040094 setbits_be32(&lbc->lcrr, 0x00030000);
Joe Hamman11c45eb2007-12-13 06:45:08 -060095
96 asm("sync;isync;msync");
97
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040098 out_be32(&lbc->ltesr, 0xffffffff); /* Clear LBC error IRQs */
99 out_be32(&lbc->lteir, 0xffffffff); /* Enable LBC error IRQs */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600100}
101
102/*
103 * Initialize SDRAM memory on the Local Bus.
104 */
Becky Bruce70961ba2010-12-17 17:17:57 -0600105void lbc_sdram_init(void)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600106{
Paul Gortmaker11d5a622009-09-20 20:36:04 -0400107#if defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600108
109 uint idx;
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500110 const unsigned long size = CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024;
Becky Brucef51cdaf2010-06-17 11:37:20 -0500111 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500113 uint *sdram_addr2 = (uint *)(CONFIG_SYS_LBC_SDRAM_BASE + size/2);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600114
115 puts(" SDRAM: ");
116
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500117 print_size(size, "\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600118
119 /*
120 * Setup SDRAM Base and Option Registers
121 */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500122 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
123 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
124 set_lbc_or(4, CONFIG_SYS_OR4_PRELIM);
125 set_lbc_br(4, CONFIG_SYS_BR4_PRELIM);
Paul Gortmaker11d5a622009-09-20 20:36:04 -0400126
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400127 out_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600128 asm("msync");
129
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400130 out_be32(&lbc->lsrt, CONFIG_SYS_LBC_LSRT);
131 out_be32(&lbc->mrtpr, CONFIG_SYS_LBC_MRTPR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600132 asm("msync");
133
134 /*
Joe Hamman11c45eb2007-12-13 06:45:08 -0600135 * Issue PRECHARGE ALL command.
136 */
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500137 out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_PCHALL);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600138 asm("sync;msync");
139 *sdram_addr = 0xff;
140 ppcDcbf((unsigned long) sdram_addr);
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500141 *sdram_addr2 = 0xff;
142 ppcDcbf((unsigned long) sdram_addr2);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600143 udelay(100);
144
145 /*
146 * Issue 8 AUTO REFRESH commands.
147 */
148 for (idx = 0; idx < 8; idx++) {
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500149 out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_ARFRSH);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600150 asm("sync;msync");
151 *sdram_addr = 0xff;
152 ppcDcbf((unsigned long) sdram_addr);
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500153 *sdram_addr2 = 0xff;
154 ppcDcbf((unsigned long) sdram_addr2);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600155 udelay(100);
156 }
157
158 /*
159 * Issue 8 MODE-set command.
160 */
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500161 out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_MRW);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600162 asm("sync;msync");
163 *sdram_addr = 0xff;
164 ppcDcbf((unsigned long) sdram_addr);
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500165 *sdram_addr2 = 0xff;
166 ppcDcbf((unsigned long) sdram_addr2);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600167 udelay(100);
168
169 /*
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500170 * Issue RFEN command.
Joe Hamman11c45eb2007-12-13 06:45:08 -0600171 */
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500172 out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_RFEN);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600173 asm("sync;msync");
174 *sdram_addr = 0xff;
175 ppcDcbf((unsigned long) sdram_addr);
Paul Gortmaker5f4c6f02011-12-30 23:53:09 -0500176 *sdram_addr2 = 0xff;
177 ppcDcbf((unsigned long) sdram_addr2);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600178 udelay(200); /* Overkill. Must wait > 200 bus cycles */
179
180#endif /* enable SDRAM init */
181}
182
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200183#if defined(CONFIG_SYS_DRAM_TEST)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600184int
185testdram(void)
186{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
188 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600189 uint *p;
190
191 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200192 CONFIG_SYS_MEMTEST_START,
193 CONFIG_SYS_MEMTEST_END);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600194
195 printf("DRAM test phase 1:\n");
196 for (p = pstart; p < pend; p++)
197 *p = 0xaaaaaaaa;
198
199 for (p = pstart; p < pend; p++) {
200 if (*p != 0xaaaaaaaa) {
201 printf ("DRAM test fails at: %08x\n", (uint) p);
202 return 1;
203 }
204 }
205
206 printf("DRAM test phase 2:\n");
207 for (p = pstart; p < pend; p++)
208 *p = 0x55555555;
209
210 for (p = pstart; p < pend; p++) {
211 if (*p != 0x55555555) {
212 printf ("DRAM test fails at: %08x\n", (uint) p);
213 return 1;
214 }
215 }
216
217 printf("DRAM test passed.\n");
218 return 0;
219}
220#endif
221
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400222#if !defined(CONFIG_SPD_EEPROM)
223#define CONFIG_SYS_DDR_CONTROL 0xc300c000
Joe Hamman11c45eb2007-12-13 06:45:08 -0600224/*************************************************************************
225 * fixed_sdram init -- doesn't use serial presence detect.
226 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
227 ************************************************************************/
Becky Bruce38dba0c2010-12-17 17:17:56 -0600228phys_size_t fixed_sdram(void)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600229{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200230 volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600231
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400232 out_be32(&ddr->cs0_bnds, 0x0000007f);
233 out_be32(&ddr->cs1_bnds, 0x008000ff);
234 out_be32(&ddr->cs2_bnds, 0x00000000);
235 out_be32(&ddr->cs3_bnds, 0x00000000);
236 out_be32(&ddr->cs0_config, 0x80010101);
237 out_be32(&ddr->cs1_config, 0x80010101);
238 out_be32(&ddr->cs2_config, 0x00000000);
239 out_be32(&ddr->cs3_config, 0x00000000);
240 out_be32(&ddr->timing_cfg_3, 0x00000000);
241 out_be32(&ddr->timing_cfg_0, 0x00220802);
242 out_be32(&ddr->timing_cfg_1, 0x38377322);
243 out_be32(&ddr->timing_cfg_2, 0x0fa044C7);
244 out_be32(&ddr->sdram_cfg, 0x4300C000);
245 out_be32(&ddr->sdram_cfg_2, 0x24401000);
246 out_be32(&ddr->sdram_mode, 0x23C00542);
247 out_be32(&ddr->sdram_mode_2, 0x00000000);
248 out_be32(&ddr->sdram_interval, 0x05080100);
249 out_be32(&ddr->sdram_md_cntl, 0x00000000);
250 out_be32(&ddr->sdram_data_init, 0x00000000);
251 out_be32(&ddr->sdram_clk_cntl, 0x03800000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600252 asm("sync;isync;msync");
253 udelay(500);
254
255 #if defined (CONFIG_DDR_ECC)
256 /* Enable ECC checking */
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400257 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | 0x20000000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600258 #else
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400259 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600260 #endif
261
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600263}
264#endif
265
Paul Gortmaker7b1f1392009-09-18 19:08:39 -0400266#ifdef CONFIG_PCI1
267static struct pci_controller pci1_hose;
268#endif /* CONFIG_PCI1 */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600269
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400270#ifdef CONFIG_PCI
Joe Hamman11c45eb2007-12-13 06:45:08 -0600271void
272pci_init_board(void)
273{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400275 int first_free_busno = 0;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600276
277#ifdef CONFIG_PCI1
Kumar Gala2d0a0542010-12-17 10:30:44 -0600278 struct fsl_pci_info pci_info;
279 u32 devdisr = in_be32(&gur->devdisr);
280 u32 pordevsr = in_be32(&gur->pordevsr);
281 u32 porpllsr = in_be32(&gur->porpllsr);
282
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400283 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
284 uint pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;
285 uint pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
286 uint pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
287 uint pci_speed = CONFIG_SYS_CLK_FREQ; /* get_clock_freq() */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600288
Peter Tyser8ca78f22010-10-29 17:59:24 -0500289 printf("PCI: Host, %d bit, %s MHz, %s, %s\n",
Joe Hamman11c45eb2007-12-13 06:45:08 -0600290 (pci_32) ? 32 : 64,
Paul Gortmaker2c40acd2009-09-18 19:08:40 -0400291 (pci_speed == 33000000) ? "33" :
292 (pci_speed == 66000000) ? "66" : "unknown",
Joe Hamman11c45eb2007-12-13 06:45:08 -0600293 pci_clk_sel ? "sync" : "async",
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400294 pci_arb ? "arbiter" : "external-arbiter");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600295
Kumar Gala2d0a0542010-12-17 10:30:44 -0600296 SET_STD_PCI_INFO(pci_info, 1);
297 set_next_law(pci_info.mem_phys,
298 law_size_bits(pci_info.mem_size), pci_info.law);
299 set_next_law(pci_info.io_phys,
300 law_size_bits(pci_info.io_size), pci_info.law);
301
302 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600303 &pci1_hose, first_free_busno);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600304 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500305 printf("PCI: disabled\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600306 }
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400307
308 puts("\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600309#else
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400310 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600311#endif
312
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400313 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable PCI2 */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600314
Kumar Gala2d0a0542010-12-17 10:30:44 -0600315 fsl_pcie_init_board(first_free_busno);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600316}
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400317#endif
Joe Hamman11c45eb2007-12-13 06:45:08 -0600318
Paul Gortmaker94ca0912009-09-18 19:08:44 -0400319int board_eth_init(bd_t *bis)
320{
321 tsec_standard_init(bis);
322 pci_eth_init(bis);
323 return 0; /* otherwise cpu_eth_init gets run */
324}
325
Joe Hamman11c45eb2007-12-13 06:45:08 -0600326int last_stage_init(void)
327{
328 return 0;
329}
330
331#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500332void ft_board_setup(void *blob, bd_t *bd)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600333{
334 ft_cpu_setup(blob, bd);
Kumar Gala6525d512010-07-08 22:37:44 -0500335
336#ifdef CONFIG_FSL_PCI_INIT
337 FT_FSL_PCI_SETUP;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600338#endif
339}
340#endif