blob: 271768dc7682504382b59deafe4594d94e4827a6 [file] [log] [blame]
Timur Tabi2ad6b512006-10-31 18:44:42 -06001/*
Kumar Gala4c2e3da2009-07-28 21:49:52 -05002 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Timur Tabi2ad6b512006-10-31 18:44:42 -06003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS for A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <ioports.h>
25#include <mpc83xx.h>
26#include <i2c.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060027#include <miiphy.h>
Timur Tabi89c77842008-02-08 13:15:55 -060028#include <vsc7385.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060029#ifdef CONFIG_PCI
30#include <asm/mpc8349_pci.h>
31#include <pci.h>
32#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060033#include <spd_sdram.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060034#include <asm/mmu.h>
Kim Phillipsb3458d22007-12-20 15:57:28 -060035#if defined(CONFIG_OF_LIBFDT)
Kim Phillips3fde9e82007-08-15 22:30:33 -050036#include <libfdt.h>
Kim Phillipsbf0b5422006-11-01 00:10:40 -060037#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060038
39#ifndef CONFIG_SPD_EEPROM
40/*************************************************************************
41 * fixed sdram init -- doesn't use serial presence detect.
42 ************************************************************************/
43int fixed_sdram(void)
44{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Joe Hershberger2e651b22011-10-11 23:57:31 -050046 /* The size of RAM, in bytes */
47 u32 ddr_size = CONFIG_SYS_DDR_SIZE << 20;
48 u32 ddr_size_log2 = __ilog2(ddr_size);
Timur Tabi2ad6b512006-10-31 18:44:42 -060049
50 im->sysconf.ddrlaw[0].ar =
51 LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
Timur Tabi2ad6b512006-10-31 18:44:42 -060053
Joe Hershberger2e651b22011-10-11 23:57:31 -050054#if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0)
55#warning Chip select bounds is only configurable in 16MB increments
56#endif
57 im->ddr.csbnds[0].csbnds =
58 ((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
59 (((CONFIG_SYS_DDR_SDRAM_BASE + ddr_size - 1) >>
60 CSBNDS_EA_SHIFT) & CSBNDS_EA);
61 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
62
63 /* Only one CS for DDR */
64 im->ddr.cs_config[1] = 0;
65 im->ddr.cs_config[2] = 0;
66 im->ddr.cs_config[3] = 0;
Timur Tabi2ad6b512006-10-31 18:44:42 -060067
68 debug("cs0_bnds = 0x%08x\n", im->ddr.csbnds[0].csbnds);
69 debug("cs0_config = 0x%08x\n", im->ddr.cs_config[0]);
70
71 debug("DDR:bar=0x%08x\n", im->sysconf.ddrlaw[0].bar);
72 debug("DDR:ar=0x%08x\n", im->sysconf.ddrlaw[0].ar);
73
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
75 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;/* Was "2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT" */
Kim Phillipsbbea46f2007-08-16 22:52:48 -050076 im->ddr.sdram_cfg = SDRAM_CFG_SREN | SDRAM_CFG_SDRAM_TYPE_DDR1;
Timur Tabi2ad6b512006-10-31 18:44:42 -060077 im->ddr.sdram_mode =
78 (0x0000 << SDRAM_MODE_ESD_SHIFT) | (0x0032 << SDRAM_MODE_SD_SHIFT);
79 im->ddr.sdram_interval =
80 (0x0410 << SDRAM_INTERVAL_REFINT_SHIFT) | (0x0100 <<
81 SDRAM_INTERVAL_BSTOPRE_SHIFT);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Timur Tabi2ad6b512006-10-31 18:44:42 -060083
84 udelay(200);
85
86 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
87
88 debug("DDR:timing_cfg_1=0x%08x\n", im->ddr.timing_cfg_1);
89 debug("DDR:timing_cfg_2=0x%08x\n", im->ddr.timing_cfg_2);
90 debug("DDR:sdram_mode=0x%08x\n", im->ddr.sdram_mode);
91 debug("DDR:sdram_interval=0x%08x\n", im->ddr.sdram_interval);
92 debug("DDR:sdram_cfg=0x%08x\n", im->ddr.sdram_cfg);
93
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094 return CONFIG_SYS_DDR_SIZE;
Timur Tabi2ad6b512006-10-31 18:44:42 -060095}
96#endif
97
98#ifdef CONFIG_PCI
99/*
100 * Initialize PCI Devices, report devices found
101 */
102#ifndef CONFIG_PCI_PNP
103static struct pci_config_table pci_mpc83xxmitx_config_table[] = {
104 {
105 PCI_ANY_ID,
106 PCI_ANY_ID,
107 PCI_ANY_ID,
108 PCI_ANY_ID,
109 0x0f,
110 PCI_ANY_ID,
111 pci_cfgfunc_config_device,
112 {
113 PCI_ENET0_IOADDR,
114 PCI_ENET0_MEMADDR,
115 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
116 },
117 {}
118}
119#endif
120
121volatile static struct pci_controller hose[] = {
122 {
123#ifndef CONFIG_PCI_PNP
124 config_table:pci_mpc83xxmitx_config_table,
125#endif
126 },
127 {
128#ifndef CONFIG_PCI_PNP
129 config_table:pci_mpc83xxmitx_config_table,
130#endif
131 }
132};
133#endif /* CONFIG_PCI */
134
Becky Bruce9973e3c2008-06-09 16:03:40 -0500135phys_size_t initdram(int board_type)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600136{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600138 u32 msize = 0;
139#ifdef CONFIG_DDR_ECC
140 volatile ddr83xx_t *ddr = &im->ddr;
141#endif
142
143 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
144 return -1;
145
146 /* DDR SDRAM - Main SODIMM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200147 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600148#ifdef CONFIG_SPD_EEPROM
149 msize = spd_sdram();
150#else
151 msize = fixed_sdram();
152#endif
153
154#ifdef CONFIG_DDR_ECC
155 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
156 /* Unlike every other board, on the 83xx spd_sdram() returns
157 megabytes instead of just bytes. That's why we need to
158 multiple by 1MB when calling ddr_enable_ecc(). */
159 ddr_enable_ecc(msize * 1048576);
160#endif
161
Timur Tabifab16802007-01-31 15:54:20 -0600162 /* return total bus RAM size(bytes) */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600163 return msize * 1024 * 1024;
164}
165
166int checkboard(void)
167{
Timur Tabi7a78f142007-01-31 15:54:29 -0600168#ifdef CONFIG_MPC8349ITX
Timur Tabibe5e6182006-11-03 19:15:00 -0600169 puts("Board: Freescale MPC8349E-mITX\n");
Timur Tabi7a78f142007-01-31 15:54:29 -0600170#else
171 puts("Board: Freescale MPC8349E-mITX-GP\n");
172#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600173
174 return 0;
175}
176
Timur Tabibe5e6182006-11-03 19:15:00 -0600177/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600178 * Implement a work-around for a hardware problem with compact
179 * flash.
180 *
181 * Program the UPM if compact flash is enabled.
182 */
183int misc_init_f(void)
184{
Timur Tabi89c77842008-02-08 13:15:55 -0600185#ifdef CONFIG_VSC7385_ENET
Timur Tabi2ad6b512006-10-31 18:44:42 -0600186 volatile u32 *vsc7385_cpuctrl;
187
188 /* 0x1c0c0 is the VSC7385 CPU Control (CPUCTRL) Register. The power up
189 default of VSC7385 L1_IRQ and L2_IRQ requests are active high. That
190 means it is 0 when the IRQ is not active. This makes the wire-AND
191 logic always assert IRQ7 to CPU even if there is no request from the
192 switch. Since the compact flash and the switch share the same IRQ,
193 the Linux kernel will think that the compact flash is requesting irq
194 and get stuck when it tries to clear the IRQ. Thus we need to set
195 the L2_IRQ0 and L2_IRQ1 to active low.
196
197 The following code sets the L1_IRQ and L2_IRQ polarity to active low.
198 Without this code, compact flash will not work in Linux because
199 unlike U-Boot, Linux uses the IRQ, so this code is necessary if we
200 don't enable compact flash for U-Boot.
201 */
202
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200203 vsc7385_cpuctrl = (volatile u32 *)(CONFIG_SYS_VSC7385_BASE + 0x1c0c0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600204 *vsc7385_cpuctrl |= 0x0c;
Timur Tabi7a78f142007-01-31 15:54:29 -0600205#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600206
207#ifdef CONFIG_COMPACT_FLASH
208 /* UPM Table Configuration Code */
209 static uint UPMATable[] = {
210 0xcffffc00, 0x0fffff00, 0x0fafff00, 0x0fafff00,
211 0x0faffd00, 0x0faffc04, 0x0ffffc00, 0x3ffffc01,
212 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
213 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
214 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfff7fc00,
215 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
216 0xcffffc00, 0x0fffff00, 0x0ff3ff00, 0x0ff3ff00,
217 0x0ff3fe00, 0x0ffffc00, 0x3ffffc05, 0xfffffc00,
218 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
219 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
220 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
221 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
222 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
223 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
224 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
225 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01
226 };
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600228
Becky Brucef51cdaf2010-06-17 11:37:20 -0500229 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
230 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600231
232 /* Program the MAMR. RFEN=0, OP=00, UWPL=1, AM=000, DS=01, G0CL=000,
233 GPL4=0, RLF=0001, WLF=0001, TLF=0001, MAD=000000
234 */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500235 immap->im_lbc.mamr = 0x08404440;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600236
237 upmconfig(0, UPMATable, sizeof(UPMATable) / sizeof(UPMATable[0]));
238
239 puts("UPMA: Configured for compact flash\n");
240#endif
241
242 return 0;
243}
244
Timur Tabibe5e6182006-11-03 19:15:00 -0600245/*
Timur Tabi89c77842008-02-08 13:15:55 -0600246 * Miscellaneous late-boot configurations
247 *
Timur Tabi2ad6b512006-10-31 18:44:42 -0600248 * Make sure the EEPROM has the HRCW correctly programmed.
249 * Make sure the RTC is correctly programmed.
250 *
251 * The MPC8349E-mITX can be configured to load the HRCW from
252 * EEPROM instead of flash. This is controlled via jumpers
253 * LGPL0, 1, and 3. Normally, these jumpers are set to 000 (all
254 * jumpered), but if they're set to 001 or 010, then the HRCW is
255 * read from the "I2C EEPROM".
256 *
257 * This function makes sure that the I2C EEPROM is programmed
258 * correctly.
Timur Tabi89c77842008-02-08 13:15:55 -0600259 *
260 * If a VSC7385 microcode image is present, then upload it.
Timur Tabi2ad6b512006-10-31 18:44:42 -0600261 */
262int misc_init_r(void)
263{
264 int rc = 0;
265
Heiko Schocher00f792e2012-10-24 13:48:22 +0200266#if defined(CONFIG_SYS_I2C)
Sam Song05031db2006-12-14 19:03:21 +0800267 unsigned int orig_bus = i2c_get_bus_num();
Timur Tabibe5e6182006-11-03 19:15:00 -0600268 u8 i2c_data;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600269
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200270#ifdef CONFIG_SYS_I2C_RTC_ADDR
Timur Tabie857a5b2006-11-28 12:09:35 -0600271 u8 ds1339_data[17];
Timur Tabi2ad6b512006-10-31 18:44:42 -0600272#endif
273
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Timur Tabi2ad6b512006-10-31 18:44:42 -0600275 static u8 eeprom_data[] = /* HRCW data */
276 {
Timur Tabi7a78f142007-01-31 15:54:29 -0600277 0xAA, 0x55, 0xAA, /* Preamble */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200278 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
279 0x02, 0x40, /* RCWL ADDR=0x0_0900 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280 (CONFIG_SYS_HRCW_LOW >> 24) & 0xFF,
281 (CONFIG_SYS_HRCW_LOW >> 16) & 0xFF,
282 (CONFIG_SYS_HRCW_LOW >> 8) & 0xFF,
283 CONFIG_SYS_HRCW_LOW & 0xFF,
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200284 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
Timur Tabi7a78f142007-01-31 15:54:29 -0600285 0x02, 0x41, /* RCWH ADDR=0x0_0904 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200286 (CONFIG_SYS_HRCW_HIGH >> 24) & 0xFF,
287 (CONFIG_SYS_HRCW_HIGH >> 16) & 0xFF,
288 (CONFIG_SYS_HRCW_HIGH >> 8) & 0xFF,
289 CONFIG_SYS_HRCW_HIGH & 0xFF
Timur Tabi2ad6b512006-10-31 18:44:42 -0600290 };
291
292 u8 data[sizeof(eeprom_data)];
Timur Tabibe5e6182006-11-03 19:15:00 -0600293#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600294
Timur Tabibe5e6182006-11-03 19:15:00 -0600295 printf("Board revision: ");
Timur Tabi9ca880a2006-10-31 21:23:16 -0600296 i2c_set_bus_num(1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200297 if (i2c_read(CONFIG_SYS_I2C_8574A_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
Timur Tabibe5e6182006-11-03 19:15:00 -0600298 printf("%u.%u (PCF8475A)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200299 else if (i2c_read(CONFIG_SYS_I2C_8574_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
Timur Tabibe5e6182006-11-03 19:15:00 -0600300 printf("%u.%u (PCF8475)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
301 else {
302 printf("Unknown\n");
303 rc = 1;
304 }
305
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600307 i2c_set_bus_num(0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600308
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200309 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, 2, data, sizeof(data)) == 0) {
Timur Tabi2ad6b512006-10-31 18:44:42 -0600310 if (memcmp(data, eeprom_data, sizeof(data)) != 0) {
311 if (i2c_write
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200312 (CONFIG_SYS_I2C_EEPROM_ADDR, 0, 2, eeprom_data,
Timur Tabi2ad6b512006-10-31 18:44:42 -0600313 sizeof(eeprom_data)) != 0) {
314 puts("Failure writing the HRCW to EEPROM via I2C.\n");
315 rc = 1;
316 }
317 }
318 } else {
319 puts("Failure reading the HRCW from EEPROM via I2C.\n");
320 rc = 1;
321 }
322#endif
323
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324#ifdef CONFIG_SYS_I2C_RTC_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600325 i2c_set_bus_num(1);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600326
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200327 if (i2c_read(CONFIG_SYS_I2C_RTC_ADDR, 0, 1, ds1339_data, sizeof(ds1339_data))
Timur Tabi2ad6b512006-10-31 18:44:42 -0600328 == 0) {
329
330 /* Work-around for MPC8349E-mITX bug #13601.
331 If the RTC does not contain valid register values, the DS1339
332 Linux driver will not work.
333 */
334
335 /* Make sure status register bits 6-2 are zero */
336 ds1339_data[0x0f] &= ~0x7c;
337
338 /* Check for a valid day register value */
339 ds1339_data[0x03] &= ~0xf8;
340 if (ds1339_data[0x03] == 0) {
341 ds1339_data[0x03] = 1;
342 }
343
344 /* Check for a valid date register value */
345 ds1339_data[0x04] &= ~0xc0;
346 if ((ds1339_data[0x04] == 0) ||
347 ((ds1339_data[0x04] & 0x0f) > 9) ||
348 (ds1339_data[0x04] >= 0x32)) {
349 ds1339_data[0x04] = 1;
350 }
351
352 /* Check for a valid month register value */
353 ds1339_data[0x05] &= ~0x60;
354
355 if ((ds1339_data[0x05] == 0) ||
356 ((ds1339_data[0x05] & 0x0f) > 9) ||
357 ((ds1339_data[0x05] >= 0x13)
358 && (ds1339_data[0x05] <= 0x19))) {
359 ds1339_data[0x05] = 1;
360 }
361
362 /* Enable Oscillator and rate select */
363 ds1339_data[0x0e] = 0x1c;
364
365 /* Work-around for MPC8349E-mITX bug #13330.
366 Ensure that the RTC control register contains the value 0x1c.
367 This affects SATA performance.
368 */
369
370 if (i2c_write
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200371 (CONFIG_SYS_I2C_RTC_ADDR, 0, 1, ds1339_data,
Timur Tabi2ad6b512006-10-31 18:44:42 -0600372 sizeof(ds1339_data))) {
373 puts("Failure writing to the RTC via I2C.\n");
374 rc = 1;
375 }
376 } else {
377 puts("Failure reading from the RTC via I2C.\n");
378 rc = 1;
379 }
380#endif
381
382 i2c_set_bus_num(orig_bus);
383#endif
384
Timur Tabi89c77842008-02-08 13:15:55 -0600385#ifdef CONFIG_VSC7385_IMAGE
386 if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
387 CONFIG_VSC7385_IMAGE_SIZE)) {
388 puts("Failure uploading VSC7385 microcode.\n");
389 rc = 1;
390 }
391#endif
392
Timur Tabi2ad6b512006-10-31 18:44:42 -0600393 return rc;
394}
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600395
Kim Phillips3fde9e82007-08-15 22:30:33 -0500396#if defined(CONFIG_OF_BOARD_SETUP)
397void ft_board_setup(void *blob, bd_t *bd)
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600398{
Kim Phillips3fde9e82007-08-15 22:30:33 -0500399 ft_cpu_setup(blob, bd);
400#ifdef CONFIG_PCI
401 ft_pci_setup(blob, bd);
402#endif
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600403}
404#endif