blob: 4192eea8c3311bb3c05dbbd53d412f86b3dfc21f [file] [log] [blame]
Joe Hamman11c45eb2007-12-13 06:45:08 -06001/*
Paul Gortmaker36e71c02009-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>
Jon Loeligera30a5492008-03-04 10:03:03 -060035#include <spd_sdram.h>
Joe Hamman11c45eb2007-12-13 06:45:08 -060036#include <miiphy.h>
37#include <libfdt.h>
38#include <fdt_support.h>
39
Joe Hamman11c45eb2007-12-13 06:45:08 -060040DECLARE_GLOBAL_DATA_PTR;
41
Joe Hamman11c45eb2007-12-13 06:45:08 -060042void local_bus_init(void);
43void sdram_init(void);
44long int fixed_sdram (void);
45
46int board_early_init_f (void)
47{
48 return 0;
49}
50
51int checkboard (void)
52{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
54 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",
Jean-Christophe PLAGNIOL-VILLARD347b7932008-02-17 22:56:17 +010058 (*rev) >> 4);
Joe Hamman11c45eb2007-12-13 06:45:08 -060059
60 /*
61 * Initialize local bus.
62 */
63 local_bus_init ();
64
65 /*
Joe Hamman11c45eb2007-12-13 06:45:08 -060066 * Hack TSEC 3 and 4 IO voltages.
67 */
68 gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */
69
70 ecm->eedr = 0xffffffff; /* clear ecm errors */
71 ecm->eeer = 0xffffffff; /* enable ecm errors */
72 return 0;
73}
74
Becky Bruce9973e3c2008-06-09 16:03:40 -050075phys_size_t
Joe Hamman11c45eb2007-12-13 06:45:08 -060076initdram(int board_type)
77{
78 long dram_size = 0;
79
80 puts("Initializing\n");
81
82#if defined(CONFIG_DDR_DLL)
83 {
84 /*
85 * Work around to stabilize DDR DLL MSYNC_IN.
86 * Errata DDR9 seems to have been fixed.
87 * This is now the workaround for Errata DDR11:
88 * Override DLL = 1, Course Adj = 1, Tap Select = 0
89 */
90
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -060092
93 gur->ddrdllcr = 0x81000000;
94 asm("sync;isync;msync");
95 udelay(200);
96 }
97#endif
98
99#if defined(CONFIG_SPD_EEPROM)
Kumar Gala33b90792008-08-26 23:15:28 -0500100 dram_size = fsl_ddr_sdram();
101 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
102 dram_size *= 0x100000;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600103#else
104 dram_size = fixed_sdram ();
105#endif
106
Joe Hamman11c45eb2007-12-13 06:45:08 -0600107 /*
108 * SDRAM Initialization
109 */
110 sdram_init();
111
112 puts(" DDR: ");
113 return dram_size;
114}
115
116/*
117 * Initialize Local Bus
118 */
119void
120local_bus_init(void)
121{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
123 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600124
125 uint clkdiv;
126 uint lbc_hz;
127 sys_info_t sysinfo;
128
129 get_sys_info(&sysinfo);
Trent Piephoa5d212a2008-12-03 15:16:34 -0800130 clkdiv = (lbc->lcrr & LCRR_CLKDIV) * 2;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600131 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
132
133 gur->lbiuiplldcr1 = 0x00078080;
134 if (clkdiv == 16) {
135 gur->lbiuiplldcr0 = 0x7c0f1bf0;
136 } else if (clkdiv == 8) {
137 gur->lbiuiplldcr0 = 0x6c0f1bf0;
138 } else if (clkdiv == 4) {
139 gur->lbiuiplldcr0 = 0x5c0f1bf0;
140 }
141
142 lbc->lcrr |= 0x00030000;
143
144 asm("sync;isync;msync");
145
146 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
147 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
148}
149
150/*
151 * Initialize SDRAM memory on the Local Bus.
152 */
153void
154sdram_init(void)
155{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156#if defined(CONFIG_SYS_OR3_PRELIM) && defined(CONFIG_SYS_BR3_PRELIM)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600157
158 uint idx;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200159 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
160 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600161 uint lsdmr_common;
162
163 puts(" SDRAM: ");
164
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600166
167 /*
168 * Setup SDRAM Base and Option Registers
169 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170 lbc->or3 = CONFIG_SYS_OR3_PRELIM;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600171 asm("msync");
172
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173 lbc->br3 = CONFIG_SYS_BR3_PRELIM;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600174 asm("msync");
175
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176 lbc->lbcr = CONFIG_SYS_LBC_LBCR;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600177 asm("msync");
178
179
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180 lbc->lsrt = CONFIG_SYS_LBC_LSRT;
181 lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600182 asm("msync");
183
184 /*
185 * MPC8548 uses "new" 15-16 style addressing.
186 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500188 lsdmr_common |= LSDMR_BSMA1516;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600189
190 /*
191 * Issue PRECHARGE ALL command.
192 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500193 lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600194 asm("sync;msync");
195 *sdram_addr = 0xff;
196 ppcDcbf((unsigned long) sdram_addr);
197 udelay(100);
198
199 /*
200 * Issue 8 AUTO REFRESH commands.
201 */
202 for (idx = 0; idx < 8; idx++) {
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500203 lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600204 asm("sync;msync");
205 *sdram_addr = 0xff;
206 ppcDcbf((unsigned long) sdram_addr);
207 udelay(100);
208 }
209
210 /*
211 * Issue 8 MODE-set command.
212 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500213 lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600214 asm("sync;msync");
215 *sdram_addr = 0xff;
216 ppcDcbf((unsigned long) sdram_addr);
217 udelay(100);
218
219 /*
220 * Issue NORMAL OP command.
221 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500222 lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600223 asm("sync;msync");
224 *sdram_addr = 0xff;
225 ppcDcbf((unsigned long) sdram_addr);
226 udelay(200); /* Overkill. Must wait > 200 bus cycles */
227
228#endif /* enable SDRAM init */
229}
230
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231#if defined(CONFIG_SYS_DRAM_TEST)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600232int
233testdram(void)
234{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
236 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600237 uint *p;
238
239 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240 CONFIG_SYS_MEMTEST_START,
241 CONFIG_SYS_MEMTEST_END);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600242
243 printf("DRAM test phase 1:\n");
244 for (p = pstart; p < pend; p++)
245 *p = 0xaaaaaaaa;
246
247 for (p = pstart; p < pend; p++) {
248 if (*p != 0xaaaaaaaa) {
249 printf ("DRAM test fails at: %08x\n", (uint) p);
250 return 1;
251 }
252 }
253
254 printf("DRAM test phase 2:\n");
255 for (p = pstart; p < pend; p++)
256 *p = 0x55555555;
257
258 for (p = pstart; p < pend; p++) {
259 if (*p != 0x55555555) {
260 printf ("DRAM test fails at: %08x\n", (uint) p);
261 return 1;
262 }
263 }
264
265 printf("DRAM test passed.\n");
266 return 0;
267}
268#endif
269
270#if !defined(CONFIG_SPD_EEPROM)
271/*************************************************************************
272 * fixed_sdram init -- doesn't use serial presence detect.
273 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
274 ************************************************************************/
275long int fixed_sdram (void)
276{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200277 #define CONFIG_SYS_DDR_CONTROL 0xc300c000
Joe Hamman11c45eb2007-12-13 06:45:08 -0600278
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279 volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600280
281 ddr->cs0_bnds = 0x0000007f;
282 ddr->cs1_bnds = 0x008000ff;
283 ddr->cs2_bnds = 0x00000000;
284 ddr->cs3_bnds = 0x00000000;
285 ddr->cs0_config = 0x80010101;
286 ddr->cs1_config = 0x80010101;
287 ddr->cs2_config = 0x00000000;
288 ddr->cs3_config = 0x00000000;
Kumar Gala45239cf2008-04-29 10:27:08 -0500289 ddr->timing_cfg_3 = 0x00000000;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600290 ddr->timing_cfg_0 = 0x00220802;
291 ddr->timing_cfg_1 = 0x38377322;
292 ddr->timing_cfg_2 = 0x0fa044C7;
293 ddr->sdram_cfg = 0x4300C000;
294 ddr->sdram_cfg_2 = 0x24401000;
295 ddr->sdram_mode = 0x23C00542;
296 ddr->sdram_mode_2 = 0x00000000;
297 ddr->sdram_interval = 0x05080100;
298 ddr->sdram_md_cntl = 0x00000000;
299 ddr->sdram_data_init = 0x00000000;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200300 ddr->sdram_clk_cntl = 0x03800000;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600301 asm("sync;isync;msync");
302 udelay(500);
303
304 #if defined (CONFIG_DDR_ECC)
305 /* Enable ECC checking */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600307 #else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200308 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600309 #endif
310
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200311 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600312}
313#endif
314
315#if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
316/* For some reason the Tundra PCI bridge shows up on itself as a
317 * different device. Work around that by refusing to configure it.
318 */
319void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
320
321static struct pci_config_table pci_sbc8548_config_table[] = {
322 {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
323 {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}},
324 {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1,
325 mpc85xx_config_via_usbide, {0,0,0}},
326 {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2,
327 mpc85xx_config_via_usb, {0,0,0}},
328 {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3,
329 mpc85xx_config_via_usb2, {0,0,0}},
330 {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5,
331 mpc85xx_config_via_power, {0,0,0}},
332 {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6,
333 mpc85xx_config_via_ac97, {0,0,0}},
334 {},
335};
336
337static struct pci_controller pci1_hose = {
338 config_table: pci_sbc8548_config_table};
339#endif /* CONFIG_PCI */
340
341#ifdef CONFIG_PCI2
342static struct pci_controller pci2_hose;
343#endif /* CONFIG_PCI2 */
344
345#ifdef CONFIG_PCIE1
346static struct pci_controller pcie1_hose;
347#endif /* CONFIG_PCIE1 */
348
349int first_free_busno=0;
350
351void
352pci_init_board(void)
353{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200354 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600355
356#ifdef CONFIG_PCI1
357{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200358 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600359 struct pci_controller *hose = &pci1_hose;
360 struct pci_config_table *table;
Kumar Gala2dba0de2008-10-21 08:28:33 -0500361 struct pci_region *r = hose->regions;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600362
363 uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
364 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
365 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
366
Kumar Gala865f24d2009-09-02 09:03:08 -0500367 uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600368
369 uint pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */
370
371 if (!(gur->devdisr & MPC85xx_DEVDISR_PCI1)) {
372 printf (" PCI: %d bit, %s MHz, %s, %s, %s\n",
373 (pci_32) ? 32 : 64,
374 (pci_speed == 33333000) ? "33" :
375 (pci_speed == 66666000) ? "66" : "unknown",
376 pci_clk_sel ? "sync" : "async",
377 pci_agent ? "agent" : "host",
378 pci_arb ? "arbiter" : "external-arbiter"
379 );
380
Joe Hamman11c45eb2007-12-13 06:45:08 -0600381 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500382 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200383 CONFIG_SYS_PCI1_MEM_BASE,
384 CONFIG_SYS_PCI1_MEM_PHYS,
385 CONFIG_SYS_PCI1_MEM_SIZE,
Joe Hamman11c45eb2007-12-13 06:45:08 -0600386 PCI_REGION_MEM);
387
388 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500389 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200390 CONFIG_SYS_PCI1_IO_BASE,
391 CONFIG_SYS_PCI1_IO_PHYS,
392 CONFIG_SYS_PCI1_IO_SIZE,
Joe Hamman11c45eb2007-12-13 06:45:08 -0600393 PCI_REGION_IO);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500394 hose->region_count = r - hose->regions;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600395
396 /* relocate config table pointers */
397 hose->config_table = \
398 (struct pci_config_table *)((uint)hose->config_table + gd->reloc_off);
399 for (table = hose->config_table; table && table->vendor; table++)
400 table->config_device += gd->reloc_off;
401
402 hose->first_busno=first_free_busno;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600403
Kumar Galafb3143b2009-08-03 20:44:55 -0500404 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600405 first_free_busno=hose->last_busno+1;
406 printf ("PCI on bus %02x - %02x\n",hose->first_busno,hose->last_busno);
407#ifdef CONFIG_PCIX_CHECK
Peter Tyser9427ccd2008-12-01 13:47:12 -0600408 if (!(gur->pordevsr & MPC85xx_PORDEVSR_PCI1)) {
Joe Hamman11c45eb2007-12-13 06:45:08 -0600409 /* PCI-X init */
410 if (CONFIG_SYS_CLK_FREQ < 66000000)
411 printf("PCI-X will only work at 66 MHz\n");
412
413 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
414 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
415 pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16);
416 }
417#endif
418 } else {
419 printf (" PCI: disabled\n");
420 }
421}
422#else
423 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
424#endif
425
426#ifdef CONFIG_PCI2
427{
428 uint pci2_clk_sel = gur->porpllsr & 0x4000; /* PORPLLSR[17] */
429 uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */
430 if (pci_dual) {
431 printf (" PCI2: 32 bit, 66 MHz, %s\n",
432 pci2_clk_sel ? "sync" : "async");
433 } else {
434 printf (" PCI2: disabled\n");
435 }
436}
437#else
438 gur->devdisr |= MPC85xx_DEVDISR_PCI2; /* disable */
439#endif /* CONFIG_PCI2 */
440
441#ifdef CONFIG_PCIE1
442{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200443 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600444 struct pci_controller *hose = &pcie1_hose;
Kumar Gala865f24d2009-09-02 09:03:08 -0500445 int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500446 struct pci_region *r = hose->regions;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600447
Kumar Gala865f24d2009-09-02 09:03:08 -0500448 int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600449
450 if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
451 printf ("\n PCIE connected to slot as %s (base address %x)",
452 pcie_ep ? "End Point" : "Root Complex",
453 (uint)pci);
454
455 if (pci->pme_msg_det) {
456 pci->pme_msg_det = 0xffffffff;
457 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
458 }
459 printf ("\n");
460
Joe Hamman11c45eb2007-12-13 06:45:08 -0600461 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500462 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200463 CONFIG_SYS_PCIE1_MEM_BASE,
464 CONFIG_SYS_PCIE1_MEM_PHYS,
465 CONFIG_SYS_PCIE1_MEM_SIZE,
Joe Hamman11c45eb2007-12-13 06:45:08 -0600466 PCI_REGION_MEM);
467
468 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500469 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200470 CONFIG_SYS_PCIE1_IO_BASE,
471 CONFIG_SYS_PCIE1_IO_PHYS,
472 CONFIG_SYS_PCIE1_IO_SIZE,
Joe Hamman11c45eb2007-12-13 06:45:08 -0600473 PCI_REGION_IO);
474
Kumar Gala2dba0de2008-10-21 08:28:33 -0500475 hose->region_count = r - hose->regions;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600476
477 hose->first_busno=first_free_busno;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600478
Kumar Galafb3143b2009-08-03 20:44:55 -0500479 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600480 printf ("PCIE on bus %d - %d\n",hose->first_busno,hose->last_busno);
481
482 first_free_busno=hose->last_busno+1;
483
484 } else {
485 printf (" PCIE: disabled\n");
486 }
487 }
488#else
489 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
490#endif
491
492}
493
494int last_stage_init(void)
495{
496 return 0;
497}
498
499#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500500void ft_board_setup(void *blob, bd_t *bd)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600501{
502 ft_cpu_setup(blob, bd);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500503#ifdef CONFIG_PCI1
504 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
505#endif
506#ifdef CONFIG_PCIE1
507 ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600508#endif
509}
510#endif