blob: 27f0ccd9a6c05fa5ad5fa1ce23659824d2372a5a [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Timur Tabi2ad6b512006-10-31 18:44:42 -06005 */
6
7#include <common.h>
8#include <ioports.h>
9#include <mpc83xx.h>
10#include <i2c.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060011#include <miiphy.h>
Timur Tabi89c77842008-02-08 13:15:55 -060012#include <vsc7385.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060013#ifdef CONFIG_PCI
14#include <asm/mpc8349_pci.h>
15#include <pci.h>
16#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060017#include <spd_sdram.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060018#include <asm/mmu.h>
Kim Phillipsb3458d22007-12-20 15:57:28 -060019#if defined(CONFIG_OF_LIBFDT)
Kim Phillips3fde9e82007-08-15 22:30:33 -050020#include <libfdt.h>
Kim Phillipsbf0b5422006-11-01 00:10:40 -060021#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060022
Simon Glass088454c2017-03-31 08:40:25 -060023DECLARE_GLOBAL_DATA_PTR;
24
Timur Tabi2ad6b512006-10-31 18:44:42 -060025#ifndef CONFIG_SPD_EEPROM
26/*************************************************************************
27 * fixed sdram init -- doesn't use serial presence detect.
28 ************************************************************************/
29int fixed_sdram(void)
30{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Joe Hershberger2e651b22011-10-11 23:57:31 -050032 /* The size of RAM, in bytes */
33 u32 ddr_size = CONFIG_SYS_DDR_SIZE << 20;
34 u32 ddr_size_log2 = __ilog2(ddr_size);
Timur Tabi2ad6b512006-10-31 18:44:42 -060035
36 im->sysconf.ddrlaw[0].ar =
37 LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
Timur Tabi2ad6b512006-10-31 18:44:42 -060039
Joe Hershberger2e651b22011-10-11 23:57:31 -050040#if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0)
41#warning Chip select bounds is only configurable in 16MB increments
42#endif
43 im->ddr.csbnds[0].csbnds =
44 ((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
45 (((CONFIG_SYS_DDR_SDRAM_BASE + ddr_size - 1) >>
46 CSBNDS_EA_SHIFT) & CSBNDS_EA);
47 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
48
49 /* Only one CS for DDR */
50 im->ddr.cs_config[1] = 0;
51 im->ddr.cs_config[2] = 0;
52 im->ddr.cs_config[3] = 0;
Timur Tabi2ad6b512006-10-31 18:44:42 -060053
54 debug("cs0_bnds = 0x%08x\n", im->ddr.csbnds[0].csbnds);
55 debug("cs0_config = 0x%08x\n", im->ddr.cs_config[0]);
56
57 debug("DDR:bar=0x%08x\n", im->sysconf.ddrlaw[0].bar);
58 debug("DDR:ar=0x%08x\n", im->sysconf.ddrlaw[0].ar);
59
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
61 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 -050062 im->ddr.sdram_cfg = SDRAM_CFG_SREN | SDRAM_CFG_SDRAM_TYPE_DDR1;
Timur Tabi2ad6b512006-10-31 18:44:42 -060063 im->ddr.sdram_mode =
64 (0x0000 << SDRAM_MODE_ESD_SHIFT) | (0x0032 << SDRAM_MODE_SD_SHIFT);
65 im->ddr.sdram_interval =
66 (0x0410 << SDRAM_INTERVAL_REFINT_SHIFT) | (0x0100 <<
67 SDRAM_INTERVAL_BSTOPRE_SHIFT);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Timur Tabi2ad6b512006-10-31 18:44:42 -060069
70 udelay(200);
71
72 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
73
74 debug("DDR:timing_cfg_1=0x%08x\n", im->ddr.timing_cfg_1);
75 debug("DDR:timing_cfg_2=0x%08x\n", im->ddr.timing_cfg_2);
76 debug("DDR:sdram_mode=0x%08x\n", im->ddr.sdram_mode);
77 debug("DDR:sdram_interval=0x%08x\n", im->ddr.sdram_interval);
78 debug("DDR:sdram_cfg=0x%08x\n", im->ddr.sdram_cfg);
79
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 return CONFIG_SYS_DDR_SIZE;
Timur Tabi2ad6b512006-10-31 18:44:42 -060081}
82#endif
83
84#ifdef CONFIG_PCI
85/*
86 * Initialize PCI Devices, report devices found
87 */
88#ifndef CONFIG_PCI_PNP
89static struct pci_config_table pci_mpc83xxmitx_config_table[] = {
90 {
91 PCI_ANY_ID,
92 PCI_ANY_ID,
93 PCI_ANY_ID,
94 PCI_ANY_ID,
95 0x0f,
96 PCI_ANY_ID,
97 pci_cfgfunc_config_device,
98 {
99 PCI_ENET0_IOADDR,
100 PCI_ENET0_MEMADDR,
101 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
102 },
103 {}
104}
105#endif
106
107volatile static struct pci_controller hose[] = {
108 {
109#ifndef CONFIG_PCI_PNP
110 config_table:pci_mpc83xxmitx_config_table,
111#endif
112 },
113 {
114#ifndef CONFIG_PCI_PNP
115 config_table:pci_mpc83xxmitx_config_table,
116#endif
117 }
118};
119#endif /* CONFIG_PCI */
120
Simon Glass088454c2017-03-31 08:40:25 -0600121int initdram(void)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600122{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200123 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600124 u32 msize = 0;
125#ifdef CONFIG_DDR_ECC
126 volatile ddr83xx_t *ddr = &im->ddr;
127#endif
128
129 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
Simon Glass088454c2017-03-31 08:40:25 -0600130 return -ENXIO;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600131
132 /* DDR SDRAM - Main SODIMM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600134#ifdef CONFIG_SPD_EEPROM
135 msize = spd_sdram();
136#else
137 msize = fixed_sdram();
138#endif
139
140#ifdef CONFIG_DDR_ECC
141 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
142 /* Unlike every other board, on the 83xx spd_sdram() returns
143 megabytes instead of just bytes. That's why we need to
144 multiple by 1MB when calling ddr_enable_ecc(). */
145 ddr_enable_ecc(msize * 1048576);
146#endif
147
Timur Tabifab16802007-01-31 15:54:20 -0600148 /* return total bus RAM size(bytes) */
Simon Glass088454c2017-03-31 08:40:25 -0600149 gd->ram_size = msize * 1024 * 1024;
150
151 return 0;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600152}
153
154int checkboard(void)
155{
Timur Tabi7a78f142007-01-31 15:54:29 -0600156#ifdef CONFIG_MPC8349ITX
Timur Tabibe5e6182006-11-03 19:15:00 -0600157 puts("Board: Freescale MPC8349E-mITX\n");
Timur Tabi7a78f142007-01-31 15:54:29 -0600158#else
159 puts("Board: Freescale MPC8349E-mITX-GP\n");
160#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600161
162 return 0;
163}
164
Timur Tabibe5e6182006-11-03 19:15:00 -0600165/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600166 * Implement a work-around for a hardware problem with compact
167 * flash.
168 *
169 * Program the UPM if compact flash is enabled.
170 */
171int misc_init_f(void)
172{
Timur Tabi89c77842008-02-08 13:15:55 -0600173#ifdef CONFIG_VSC7385_ENET
Timur Tabi2ad6b512006-10-31 18:44:42 -0600174 volatile u32 *vsc7385_cpuctrl;
175
176 /* 0x1c0c0 is the VSC7385 CPU Control (CPUCTRL) Register. The power up
177 default of VSC7385 L1_IRQ and L2_IRQ requests are active high. That
178 means it is 0 when the IRQ is not active. This makes the wire-AND
179 logic always assert IRQ7 to CPU even if there is no request from the
180 switch. Since the compact flash and the switch share the same IRQ,
181 the Linux kernel will think that the compact flash is requesting irq
182 and get stuck when it tries to clear the IRQ. Thus we need to set
183 the L2_IRQ0 and L2_IRQ1 to active low.
184
185 The following code sets the L1_IRQ and L2_IRQ polarity to active low.
186 Without this code, compact flash will not work in Linux because
187 unlike U-Boot, Linux uses the IRQ, so this code is necessary if we
188 don't enable compact flash for U-Boot.
189 */
190
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191 vsc7385_cpuctrl = (volatile u32 *)(CONFIG_SYS_VSC7385_BASE + 0x1c0c0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600192 *vsc7385_cpuctrl |= 0x0c;
Timur Tabi7a78f142007-01-31 15:54:29 -0600193#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600194
195#ifdef CONFIG_COMPACT_FLASH
196 /* UPM Table Configuration Code */
197 static uint UPMATable[] = {
198 0xcffffc00, 0x0fffff00, 0x0fafff00, 0x0fafff00,
199 0x0faffd00, 0x0faffc04, 0x0ffffc00, 0x3ffffc01,
200 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
201 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
202 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfff7fc00,
203 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
204 0xcffffc00, 0x0fffff00, 0x0ff3ff00, 0x0ff3ff00,
205 0x0ff3fe00, 0x0ffffc00, 0x3ffffc05, 0xfffffc00,
206 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
207 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
208 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
209 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
210 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
211 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00,
212 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01,
213 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc01
214 };
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600216
Becky Brucef51cdaf2010-06-17 11:37:20 -0500217 set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
218 set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600219
220 /* Program the MAMR. RFEN=0, OP=00, UWPL=1, AM=000, DS=01, G0CL=000,
221 GPL4=0, RLF=0001, WLF=0001, TLF=0001, MAD=000000
222 */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500223 immap->im_lbc.mamr = 0x08404440;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600224
225 upmconfig(0, UPMATable, sizeof(UPMATable) / sizeof(UPMATable[0]));
226
227 puts("UPMA: Configured for compact flash\n");
228#endif
229
230 return 0;
231}
232
Timur Tabibe5e6182006-11-03 19:15:00 -0600233/*
Timur Tabi89c77842008-02-08 13:15:55 -0600234 * Miscellaneous late-boot configurations
235 *
Timur Tabi2ad6b512006-10-31 18:44:42 -0600236 * Make sure the EEPROM has the HRCW correctly programmed.
237 * Make sure the RTC is correctly programmed.
238 *
239 * The MPC8349E-mITX can be configured to load the HRCW from
240 * EEPROM instead of flash. This is controlled via jumpers
241 * LGPL0, 1, and 3. Normally, these jumpers are set to 000 (all
242 * jumpered), but if they're set to 001 or 010, then the HRCW is
243 * read from the "I2C EEPROM".
244 *
245 * This function makes sure that the I2C EEPROM is programmed
246 * correctly.
Timur Tabi89c77842008-02-08 13:15:55 -0600247 *
248 * If a VSC7385 microcode image is present, then upload it.
Timur Tabi2ad6b512006-10-31 18:44:42 -0600249 */
250int misc_init_r(void)
251{
252 int rc = 0;
253
Heiko Schocher00f792e2012-10-24 13:48:22 +0200254#if defined(CONFIG_SYS_I2C)
Sam Song05031db2006-12-14 19:03:21 +0800255 unsigned int orig_bus = i2c_get_bus_num();
Timur Tabibe5e6182006-11-03 19:15:00 -0600256 u8 i2c_data;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600257
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200258#ifdef CONFIG_SYS_I2C_RTC_ADDR
Timur Tabie857a5b2006-11-28 12:09:35 -0600259 u8 ds1339_data[17];
Timur Tabi2ad6b512006-10-31 18:44:42 -0600260#endif
261
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Timur Tabi2ad6b512006-10-31 18:44:42 -0600263 static u8 eeprom_data[] = /* HRCW data */
264 {
Timur Tabi7a78f142007-01-31 15:54:29 -0600265 0xAA, 0x55, 0xAA, /* Preamble */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200266 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
267 0x02, 0x40, /* RCWL ADDR=0x0_0900 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200268 (CONFIG_SYS_HRCW_LOW >> 24) & 0xFF,
269 (CONFIG_SYS_HRCW_LOW >> 16) & 0xFF,
270 (CONFIG_SYS_HRCW_LOW >> 8) & 0xFF,
271 CONFIG_SYS_HRCW_LOW & 0xFF,
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200272 0x7C, /* ACS=0, BYTE_EN=1111, CONT=1 */
Timur Tabi7a78f142007-01-31 15:54:29 -0600273 0x02, 0x41, /* RCWH ADDR=0x0_0904 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274 (CONFIG_SYS_HRCW_HIGH >> 24) & 0xFF,
275 (CONFIG_SYS_HRCW_HIGH >> 16) & 0xFF,
276 (CONFIG_SYS_HRCW_HIGH >> 8) & 0xFF,
277 CONFIG_SYS_HRCW_HIGH & 0xFF
Timur Tabi2ad6b512006-10-31 18:44:42 -0600278 };
279
280 u8 data[sizeof(eeprom_data)];
Timur Tabibe5e6182006-11-03 19:15:00 -0600281#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600282
Timur Tabibe5e6182006-11-03 19:15:00 -0600283 printf("Board revision: ");
Timur Tabi9ca880a2006-10-31 21:23:16 -0600284 i2c_set_bus_num(1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200285 if (i2c_read(CONFIG_SYS_I2C_8574A_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
Timur Tabibe5e6182006-11-03 19:15:00 -0600286 printf("%u.%u (PCF8475A)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200287 else if (i2c_read(CONFIG_SYS_I2C_8574_ADDR2, 0, 0, &i2c_data, sizeof(i2c_data)) == 0)
Timur Tabibe5e6182006-11-03 19:15:00 -0600288 printf("%u.%u (PCF8475)\n", (i2c_data & 0x02) >> 1, i2c_data & 0x01);
289 else {
290 printf("Unknown\n");
291 rc = 1;
292 }
293
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600295 i2c_set_bus_num(0);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600296
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200297 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, 2, data, sizeof(data)) == 0) {
Timur Tabi2ad6b512006-10-31 18:44:42 -0600298 if (memcmp(data, eeprom_data, sizeof(data)) != 0) {
299 if (i2c_write
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200300 (CONFIG_SYS_I2C_EEPROM_ADDR, 0, 2, eeprom_data,
Timur Tabi2ad6b512006-10-31 18:44:42 -0600301 sizeof(eeprom_data)) != 0) {
302 puts("Failure writing the HRCW to EEPROM via I2C.\n");
303 rc = 1;
304 }
305 }
306 } else {
307 puts("Failure reading the HRCW from EEPROM via I2C.\n");
308 rc = 1;
309 }
310#endif
311
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200312#ifdef CONFIG_SYS_I2C_RTC_ADDR
Timur Tabibe5e6182006-11-03 19:15:00 -0600313 i2c_set_bus_num(1);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600314
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315 if (i2c_read(CONFIG_SYS_I2C_RTC_ADDR, 0, 1, ds1339_data, sizeof(ds1339_data))
Timur Tabi2ad6b512006-10-31 18:44:42 -0600316 == 0) {
317
318 /* Work-around for MPC8349E-mITX bug #13601.
319 If the RTC does not contain valid register values, the DS1339
320 Linux driver will not work.
321 */
322
323 /* Make sure status register bits 6-2 are zero */
324 ds1339_data[0x0f] &= ~0x7c;
325
326 /* Check for a valid day register value */
327 ds1339_data[0x03] &= ~0xf8;
328 if (ds1339_data[0x03] == 0) {
329 ds1339_data[0x03] = 1;
330 }
331
332 /* Check for a valid date register value */
333 ds1339_data[0x04] &= ~0xc0;
334 if ((ds1339_data[0x04] == 0) ||
335 ((ds1339_data[0x04] & 0x0f) > 9) ||
336 (ds1339_data[0x04] >= 0x32)) {
337 ds1339_data[0x04] = 1;
338 }
339
340 /* Check for a valid month register value */
341 ds1339_data[0x05] &= ~0x60;
342
343 if ((ds1339_data[0x05] == 0) ||
344 ((ds1339_data[0x05] & 0x0f) > 9) ||
345 ((ds1339_data[0x05] >= 0x13)
346 && (ds1339_data[0x05] <= 0x19))) {
347 ds1339_data[0x05] = 1;
348 }
349
350 /* Enable Oscillator and rate select */
351 ds1339_data[0x0e] = 0x1c;
352
353 /* Work-around for MPC8349E-mITX bug #13330.
354 Ensure that the RTC control register contains the value 0x1c.
355 This affects SATA performance.
356 */
357
358 if (i2c_write
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200359 (CONFIG_SYS_I2C_RTC_ADDR, 0, 1, ds1339_data,
Timur Tabi2ad6b512006-10-31 18:44:42 -0600360 sizeof(ds1339_data))) {
361 puts("Failure writing to the RTC via I2C.\n");
362 rc = 1;
363 }
364 } else {
365 puts("Failure reading from the RTC via I2C.\n");
366 rc = 1;
367 }
368#endif
369
370 i2c_set_bus_num(orig_bus);
371#endif
372
Timur Tabi89c77842008-02-08 13:15:55 -0600373#ifdef CONFIG_VSC7385_IMAGE
374 if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
375 CONFIG_VSC7385_IMAGE_SIZE)) {
376 puts("Failure uploading VSC7385 microcode.\n");
377 rc = 1;
378 }
379#endif
380
Timur Tabi2ad6b512006-10-31 18:44:42 -0600381 return rc;
382}
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600383
Kim Phillips3fde9e82007-08-15 22:30:33 -0500384#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -0600385int ft_board_setup(void *blob, bd_t *bd)
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600386{
Kim Phillips3fde9e82007-08-15 22:30:33 -0500387 ft_cpu_setup(blob, bd);
388#ifdef CONFIG_PCI
389 ft_pci_setup(blob, bd);
390#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600391
392 return 0;
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600393}
394#endif