blob: 272428fbf8027f1bbe7cda993a9cc04be02d328f [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>
Jon Loeligera30a5492008-03-04 10:03:03 -060035#include <spd_sdram.h>
Paul Gortmaker94ca0912009-09-18 19:08:44 -040036#include <netdev.h>
37#include <tsec.h>
Joe Hamman11c45eb2007-12-13 06:45:08 -060038#include <miiphy.h>
39#include <libfdt.h>
40#include <fdt_support.h>
41
Joe Hamman11c45eb2007-12-13 06:45:08 -060042DECLARE_GLOBAL_DATA_PTR;
43
Joe Hamman11c45eb2007-12-13 06:45:08 -060044void local_bus_init(void);
45void sdram_init(void);
46long int fixed_sdram (void);
47
48int board_early_init_f (void)
49{
50 return 0;
51}
52
53int checkboard (void)
54{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
56 volatile u_char *rev= (void *)CONFIG_SYS_BD_REV;
Joe Hamman11c45eb2007-12-13 06:45:08 -060057
58 printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040059 in_8(rev) >> 4);
Joe Hamman11c45eb2007-12-13 06:45:08 -060060
61 /*
62 * Initialize local bus.
63 */
64 local_bus_init ();
65
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040066 out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */
67 out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */
Joe Hamman11c45eb2007-12-13 06:45:08 -060068 return 0;
69}
70
Becky Bruce9973e3c2008-06-09 16:03:40 -050071phys_size_t
Joe Hamman11c45eb2007-12-13 06:45:08 -060072initdram(int board_type)
73{
74 long dram_size = 0;
75
76 puts("Initializing\n");
77
78#if defined(CONFIG_DDR_DLL)
79 {
80 /*
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
85 */
86
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -060088
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -040089 out_be32(&gur->ddrdllcr, 0x81000000);
Joe Hamman11c45eb2007-12-13 06:45:08 -060090 asm("sync;isync;msync");
91 udelay(200);
92 }
93#endif
94
95#if defined(CONFIG_SPD_EEPROM)
Kumar Gala33b90792008-08-26 23:15:28 -050096 dram_size = fsl_ddr_sdram();
97 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
98 dram_size *= 0x100000;
Joe Hamman11c45eb2007-12-13 06:45:08 -060099#else
100 dram_size = fixed_sdram ();
101#endif
102
Joe Hamman11c45eb2007-12-13 06:45:08 -0600103 /*
104 * SDRAM Initialization
105 */
106 sdram_init();
107
108 puts(" DDR: ");
109 return dram_size;
110}
111
112/*
113 * Initialize Local Bus
114 */
115void
116local_bus_init(void)
117{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Becky Brucef51cdaf2010-06-17 11:37:20 -0500119 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600120
121 uint clkdiv;
122 uint lbc_hz;
123 sys_info_t sysinfo;
124
125 get_sys_info(&sysinfo);
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400126 clkdiv = (in_be32(&lbc->lcrr) & LCRR_CLKDIV) * 2;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600127 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
128
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400129 out_be32(&gur->lbiuiplldcr1, 0x00078080);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600130 if (clkdiv == 16) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400131 out_be32(&gur->lbiuiplldcr0, 0x7c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600132 } else if (clkdiv == 8) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400133 out_be32(&gur->lbiuiplldcr0, 0x6c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600134 } else if (clkdiv == 4) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400135 out_be32(&gur->lbiuiplldcr0, 0x5c0f1bf0);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600136 }
137
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400138 setbits_be32(&lbc->lcrr, 0x00030000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600139
140 asm("sync;isync;msync");
141
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400142 out_be32(&lbc->ltesr, 0xffffffff); /* Clear LBC error IRQs */
143 out_be32(&lbc->lteir, 0xffffffff); /* Enable LBC error IRQs */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600144}
145
146/*
147 * Initialize SDRAM memory on the Local Bus.
148 */
149void
150sdram_init(void)
151{
Paul Gortmaker11d5a622009-09-20 20:36:04 -0400152#if defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600153
154 uint idx;
Becky Brucef51cdaf2010-06-17 11:37:20 -0500155 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600157 uint lsdmr_common;
158
159 puts(" SDRAM: ");
160
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600162
163 /*
164 * Setup SDRAM Base and Option Registers
165 */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500166 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
167 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
168 set_lbc_or(4, CONFIG_SYS_OR4_PRELIM);
169 set_lbc_br(4, CONFIG_SYS_BR4_PRELIM);
Paul Gortmaker11d5a622009-09-20 20:36:04 -0400170
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400171 out_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600172 asm("msync");
173
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400174 out_be32(&lbc->lsrt, CONFIG_SYS_LBC_LSRT);
175 out_be32(&lbc->mrtpr, CONFIG_SYS_LBC_MRTPR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600176 asm("msync");
177
178 /*
179 * MPC8548 uses "new" 15-16 style addressing.
180 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200181 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500182 lsdmr_common |= LSDMR_BSMA1516;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600183
184 /*
185 * Issue PRECHARGE ALL command.
186 */
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400187 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_PCHALL);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600188 asm("sync;msync");
189 *sdram_addr = 0xff;
190 ppcDcbf((unsigned long) sdram_addr);
191 udelay(100);
192
193 /*
194 * Issue 8 AUTO REFRESH commands.
195 */
196 for (idx = 0; idx < 8; idx++) {
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400197 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_ARFRSH);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600198 asm("sync;msync");
199 *sdram_addr = 0xff;
200 ppcDcbf((unsigned long) sdram_addr);
201 udelay(100);
202 }
203
204 /*
205 * Issue 8 MODE-set command.
206 */
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400207 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_MRW);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600208 asm("sync;msync");
209 *sdram_addr = 0xff;
210 ppcDcbf((unsigned long) sdram_addr);
211 udelay(100);
212
213 /*
214 * Issue NORMAL OP command.
215 */
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400216 out_be32(&lbc->lsdmr, lsdmr_common | LSDMR_OP_NORMAL);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600217 asm("sync;msync");
218 *sdram_addr = 0xff;
219 ppcDcbf((unsigned long) sdram_addr);
220 udelay(200); /* Overkill. Must wait > 200 bus cycles */
221
222#endif /* enable SDRAM init */
223}
224
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225#if defined(CONFIG_SYS_DRAM_TEST)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600226int
227testdram(void)
228{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200229 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
230 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600231 uint *p;
232
233 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200234 CONFIG_SYS_MEMTEST_START,
235 CONFIG_SYS_MEMTEST_END);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600236
237 printf("DRAM test phase 1:\n");
238 for (p = pstart; p < pend; p++)
239 *p = 0xaaaaaaaa;
240
241 for (p = pstart; p < pend; p++) {
242 if (*p != 0xaaaaaaaa) {
243 printf ("DRAM test fails at: %08x\n", (uint) p);
244 return 1;
245 }
246 }
247
248 printf("DRAM test phase 2:\n");
249 for (p = pstart; p < pend; p++)
250 *p = 0x55555555;
251
252 for (p = pstart; p < pend; p++) {
253 if (*p != 0x55555555) {
254 printf ("DRAM test fails at: %08x\n", (uint) p);
255 return 1;
256 }
257 }
258
259 printf("DRAM test passed.\n");
260 return 0;
261}
262#endif
263
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400264#if !defined(CONFIG_SPD_EEPROM)
265#define CONFIG_SYS_DDR_CONTROL 0xc300c000
Joe Hamman11c45eb2007-12-13 06:45:08 -0600266/*************************************************************************
267 * fixed_sdram init -- doesn't use serial presence detect.
268 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
269 ************************************************************************/
270long int fixed_sdram (void)
271{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200272 volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600273
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400274 out_be32(&ddr->cs0_bnds, 0x0000007f);
275 out_be32(&ddr->cs1_bnds, 0x008000ff);
276 out_be32(&ddr->cs2_bnds, 0x00000000);
277 out_be32(&ddr->cs3_bnds, 0x00000000);
278 out_be32(&ddr->cs0_config, 0x80010101);
279 out_be32(&ddr->cs1_config, 0x80010101);
280 out_be32(&ddr->cs2_config, 0x00000000);
281 out_be32(&ddr->cs3_config, 0x00000000);
282 out_be32(&ddr->timing_cfg_3, 0x00000000);
283 out_be32(&ddr->timing_cfg_0, 0x00220802);
284 out_be32(&ddr->timing_cfg_1, 0x38377322);
285 out_be32(&ddr->timing_cfg_2, 0x0fa044C7);
286 out_be32(&ddr->sdram_cfg, 0x4300C000);
287 out_be32(&ddr->sdram_cfg_2, 0x24401000);
288 out_be32(&ddr->sdram_mode, 0x23C00542);
289 out_be32(&ddr->sdram_mode_2, 0x00000000);
290 out_be32(&ddr->sdram_interval, 0x05080100);
291 out_be32(&ddr->sdram_md_cntl, 0x00000000);
292 out_be32(&ddr->sdram_data_init, 0x00000000);
293 out_be32(&ddr->sdram_clk_cntl, 0x03800000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600294 asm("sync;isync;msync");
295 udelay(500);
296
297 #if defined (CONFIG_DDR_ECC)
298 /* Enable ECC checking */
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400299 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | 0x20000000);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600300 #else
Paul Gortmaker0c7e4d42009-09-20 20:36:03 -0400301 out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600302 #endif
303
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200304 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600305}
306#endif
307
Paul Gortmaker7b1f1392009-09-18 19:08:39 -0400308#ifdef CONFIG_PCI1
309static struct pci_controller pci1_hose;
310#endif /* CONFIG_PCI1 */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600311
312#ifdef CONFIG_PCIE1
313static struct pci_controller pcie1_hose;
314#endif /* CONFIG_PCIE1 */
315
Joe Hamman11c45eb2007-12-13 06:45:08 -0600316
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400317#ifdef CONFIG_PCI
Joe Hamman11c45eb2007-12-13 06:45:08 -0600318void
319pci_init_board(void)
320{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200321 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400322 struct fsl_pci_info pci_info[2];
323 u32 devdisr, pordevsr, porpllsr, io_sel;
324 int first_free_busno = 0;
325 int num = 0;
326
327#ifdef CONFIG_PCIE1
328 int pcie_configured;
329#endif
330
331 devdisr = in_be32(&gur->devdisr);
332 pordevsr = in_be32(&gur->pordevsr);
333 porpllsr = in_be32(&gur->porpllsr);
334 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
335
336 debug(" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600337
338#ifdef CONFIG_PCI1
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400339 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
340 uint pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;
341 uint pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
342 uint pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
343 uint pci_speed = CONFIG_SYS_CLK_FREQ; /* get_clock_freq() */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600344
Peter Tyser8ca78f22010-10-29 17:59:24 -0500345 printf("PCI: Host, %d bit, %s MHz, %s, %s\n",
Joe Hamman11c45eb2007-12-13 06:45:08 -0600346 (pci_32) ? 32 : 64,
Paul Gortmaker2c40acd2009-09-18 19:08:40 -0400347 (pci_speed == 33000000) ? "33" :
348 (pci_speed == 66000000) ? "66" : "unknown",
Joe Hamman11c45eb2007-12-13 06:45:08 -0600349 pci_clk_sel ? "sync" : "async",
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400350 pci_arb ? "arbiter" : "external-arbiter");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600351
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400352 SET_STD_PCI_INFO(pci_info[num], 1);
353 first_free_busno = fsl_pci_init_port(&pci_info[num++],
Kumar Gala01471d52009-11-04 01:29:04 -0600354 &pci1_hose, first_free_busno);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600355 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500356 printf("PCI: disabled\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600357 }
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400358
359 puts("\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600360#else
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400361 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600362#endif
363
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400364 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable PCI2 */
Joe Hamman11c45eb2007-12-13 06:45:08 -0600365
366#ifdef CONFIG_PCIE1
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400367 pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600368
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400369 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
370 SET_STD_PCIE_INFO(pci_info[num], 1);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500371 printf("PCIE: base address %lx\n", pci_info[num].regs);
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400372 first_free_busno = fsl_pci_init_port(&pci_info[num++],
Kumar Gala01471d52009-11-04 01:29:04 -0600373 &pcie1_hose, first_free_busno);
Joe Hamman11c45eb2007-12-13 06:45:08 -0600374 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500375 printf("PCIE: disabled\n");
Joe Hamman11c45eb2007-12-13 06:45:08 -0600376 }
Joe Hamman11c45eb2007-12-13 06:45:08 -0600377
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400378 puts("\n");
379#else
380 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
381#endif
Joe Hamman11c45eb2007-12-13 06:45:08 -0600382}
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -0400383#endif
Joe Hamman11c45eb2007-12-13 06:45:08 -0600384
Paul Gortmaker94ca0912009-09-18 19:08:44 -0400385int board_eth_init(bd_t *bis)
386{
387 tsec_standard_init(bis);
388 pci_eth_init(bis);
389 return 0; /* otherwise cpu_eth_init gets run */
390}
391
Joe Hamman11c45eb2007-12-13 06:45:08 -0600392int last_stage_init(void)
393{
394 return 0;
395}
396
397#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500398void ft_board_setup(void *blob, bd_t *bd)
Joe Hamman11c45eb2007-12-13 06:45:08 -0600399{
400 ft_cpu_setup(blob, bd);
Kumar Gala6525d512010-07-08 22:37:44 -0500401
402#ifdef CONFIG_FSL_PCI_INIT
403 FT_FSL_PCI_SETUP;
Joe Hamman11c45eb2007-12-13 06:45:08 -0600404#endif
405}
406#endif