blob: ddf308a40e0ca26feaf0bdbf1a6894a75de31648 [file] [log] [blame]
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001/*
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -05002 * Copyright 2004, 2007 Freescale Semiconductor.
Jon Loeligerd9b94f22005-07-25 14:05:07 -05003 *
4 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <pci.h>
27#include <asm/processor.h>
28#include <asm/immap_85xx.h>
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050029#include <asm/immap_fsl_pci.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050030#include <spd.h>
Andy Fleming09f3e092006-09-13 10:34:18 -050031#include <miiphy.h>
Kumar Galab90d2542007-11-29 00:11:44 -060032#include <libfdt.h>
33#include <fdt_support.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050034
35#include "../common/cadmus.h"
36#include "../common/eeprom.h"
Matthew McClintockbf1dfff2006-06-28 10:46:13 -050037#include "../common/via.h"
Jon Loeligerd9b94f22005-07-25 14:05:07 -050038
39#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
40extern void ddr_enable_ecc(unsigned int dram_size);
41#endif
42
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050043DECLARE_GLOBAL_DATA_PTR;
44
Jon Loeligerd9b94f22005-07-25 14:05:07 -050045extern long int spd_sdram(void);
46
47void local_bus_init(void);
48void sdram_init(void);
49
50int board_early_init_f (void)
51{
52 return 0;
53}
54
55int checkboard (void)
56{
57 volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
Kumar Galaf59b55a2007-11-27 23:25:02 -060058 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Zang Roy-r619117337b232006-12-15 14:43:31 +080059 volatile ccsr_local_ecm_t *ecm = &immap->im_local_ecm;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050060
61 /* PCI slot in USER bits CSR[6:7] by convention. */
62 uint pci_slot = get_pci_slot ();
63
Jon Loeligerd9b94f22005-07-25 14:05:07 -050064 uint cpu_board_rev = get_cpu_board_revision ();
65
66 printf ("Board: CDS Version 0x%02x, PCI Slot %d\n",
67 get_board_version (), pci_slot);
68
69 printf ("CPU Board Revision %d.%d (0x%04x)\n",
70 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
71 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050072 /*
73 * Initialize local bus.
74 */
75 local_bus_init ();
76
Zang Roy-r619117337b232006-12-15 14:43:31 +080077 /*
78 * Fix CPU2 errata: A core hang possible while executing a
79 * msync instruction and a snoopable transaction from an I/O
80 * master tagged to make quick forward progress is present.
81 */
82 ecm->eebpcr |= (1 << 16);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050083
84 /*
85 * Hack TSEC 3 and 4 IO voltages.
86 */
87 gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */
88
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050089 ecm->eedr = 0xffffffff; /* clear ecm errors */
90 ecm->eeer = 0xffffffff; /* enable ecm errors */
Jon Loeligerd9b94f22005-07-25 14:05:07 -050091 return 0;
92}
93
94long int
95initdram(int board_type)
96{
97 long dram_size = 0;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050098
99 puts("Initializing\n");
100
101#if defined(CONFIG_DDR_DLL)
102 {
103 /*
104 * Work around to stabilize DDR DLL MSYNC_IN.
105 * Errata DDR9 seems to have been fixed.
106 * This is now the workaround for Errata DDR11:
107 * Override DLL = 1, Course Adj = 1, Tap Select = 0
108 */
109
Kumar Galaf59b55a2007-11-27 23:25:02 -0600110 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500111
112 gur->ddrdllcr = 0x81000000;
113 asm("sync;isync;msync");
114 udelay(200);
115 }
116#endif
117 dram_size = spd_sdram();
118
119#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
120 /*
121 * Initialize and enable DDR ECC.
122 */
123 ddr_enable_ecc(dram_size);
124#endif
125 /*
126 * SDRAM Initialization
127 */
128 sdram_init();
129
130 puts(" DDR: ");
131 return dram_size;
132}
133
134/*
135 * Initialize Local Bus
136 */
137void
138local_bus_init(void)
139{
140 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Kumar Galaf59b55a2007-11-27 23:25:02 -0600141 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500142 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
143
144 uint clkdiv;
145 uint lbc_hz;
146 sys_info_t sysinfo;
147
148 get_sys_info(&sysinfo);
149 clkdiv = (lbc->lcrr & 0x0f) * 2;
150 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
151
152 gur->lbiuiplldcr1 = 0x00078080;
153 if (clkdiv == 16) {
154 gur->lbiuiplldcr0 = 0x7c0f1bf0;
155 } else if (clkdiv == 8) {
156 gur->lbiuiplldcr0 = 0x6c0f1bf0;
157 } else if (clkdiv == 4) {
158 gur->lbiuiplldcr0 = 0x5c0f1bf0;
159 }
160
161 lbc->lcrr |= 0x00030000;
162
163 asm("sync;isync;msync");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500164
165 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
166 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500167}
168
169/*
170 * Initialize SDRAM memory on the Local Bus.
171 */
172void
173sdram_init(void)
174{
175#if defined(CFG_OR2_PRELIM) && defined(CFG_BR2_PRELIM)
176
177 uint idx;
178 volatile immap_t *immap = (immap_t *)CFG_IMMR;
179 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
180 uint *sdram_addr = (uint *)CFG_LBC_SDRAM_BASE;
181 uint cpu_board_rev;
182 uint lsdmr_common;
183
184 puts(" SDRAM: ");
185
186 print_size (CFG_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
187
188 /*
189 * Setup SDRAM Base and Option Registers
190 */
191 lbc->or2 = CFG_OR2_PRELIM;
192 asm("msync");
193
194 lbc->br2 = CFG_BR2_PRELIM;
195 asm("msync");
196
197 lbc->lbcr = CFG_LBC_LBCR;
198 asm("msync");
199
200
201 lbc->lsrt = CFG_LBC_LSRT;
202 lbc->mrtpr = CFG_LBC_MRTPR;
203 asm("msync");
204
205 /*
206 * MPC8548 uses "new" 15-16 style addressing.
207 */
208 cpu_board_rev = get_cpu_board_revision();
209 lsdmr_common = CFG_LBC_LSDMR_COMMON;
210 lsdmr_common |= CFG_LBC_LSDMR_BSMA1516;
211
212 /*
213 * Issue PRECHARGE ALL command.
214 */
215 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_PCHALL;
216 asm("sync;msync");
217 *sdram_addr = 0xff;
218 ppcDcbf((unsigned long) sdram_addr);
219 udelay(100);
220
221 /*
222 * Issue 8 AUTO REFRESH commands.
223 */
224 for (idx = 0; idx < 8; idx++) {
225 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_ARFRSH;
226 asm("sync;msync");
227 *sdram_addr = 0xff;
228 ppcDcbf((unsigned long) sdram_addr);
229 udelay(100);
230 }
231
232 /*
233 * Issue 8 MODE-set command.
234 */
235 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_MRW;
236 asm("sync;msync");
237 *sdram_addr = 0xff;
238 ppcDcbf((unsigned long) sdram_addr);
239 udelay(100);
240
241 /*
242 * Issue NORMAL OP command.
243 */
244 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_NORMAL;
245 asm("sync;msync");
246 *sdram_addr = 0xff;
247 ppcDcbf((unsigned long) sdram_addr);
248 udelay(200); /* Overkill. Must wait > 200 bus cycles */
249
250#endif /* enable SDRAM init */
251}
252
253#if defined(CFG_DRAM_TEST)
254int
255testdram(void)
256{
257 uint *pstart = (uint *) CFG_MEMTEST_START;
258 uint *pend = (uint *) CFG_MEMTEST_END;
259 uint *p;
260
261 printf("Testing DRAM from 0x%08x to 0x%08x\n",
262 CFG_MEMTEST_START,
263 CFG_MEMTEST_END);
264
265 printf("DRAM test phase 1:\n");
266 for (p = pstart; p < pend; p++)
267 *p = 0xaaaaaaaa;
268
269 for (p = pstart; p < pend; p++) {
270 if (*p != 0xaaaaaaaa) {
271 printf ("DRAM test fails at: %08x\n", (uint) p);
272 return 1;
273 }
274 }
275
276 printf("DRAM test phase 2:\n");
277 for (p = pstart; p < pend; p++)
278 *p = 0x55555555;
279
280 for (p = pstart; p < pend; p++) {
281 if (*p != 0x55555555) {
282 printf ("DRAM test fails at: %08x\n", (uint) p);
283 return 1;
284 }
285 }
286
287 printf("DRAM test passed.\n");
288 return 0;
289}
290#endif
291
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500292#if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500293/* For some reason the Tundra PCI bridge shows up on itself as a
294 * different device. Work around that by refusing to configure it.
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500295 */
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500296void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500297
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500298static struct pci_config_table pci_mpc85xxcds_config_table[] = {
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500299 {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700300 {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}},
301 {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1,
Andy Flemingffa621a2007-02-24 01:08:13 -0600302 mpc85xx_config_via_usbide, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700303 {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2,
304 mpc85xx_config_via_usb, {0,0,0}},
305 {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3,
306 mpc85xx_config_via_usb2, {0,0,0}},
307 {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5,
Andy Flemingffa621a2007-02-24 01:08:13 -0600308 mpc85xx_config_via_power, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700309 {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6,
310 mpc85xx_config_via_ac97, {0,0,0}},
Andy Flemingffa621a2007-02-24 01:08:13 -0600311 {},
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500312};
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500313
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500314static struct pci_controller pci1_hose = {
315 config_table: pci_mpc85xxcds_config_table};
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500316#endif /* CONFIG_PCI */
317
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500318#ifdef CONFIG_PCI2
319static struct pci_controller pci2_hose;
320#endif /* CONFIG_PCI2 */
321
322#ifdef CONFIG_PCIE1
323static struct pci_controller pcie1_hose;
324#endif /* CONFIG_PCIE1 */
325
326int first_free_busno=0;
327
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500328void
329pci_init_board(void)
330{
Kumar Galaf59b55a2007-11-27 23:25:02 -0600331 volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500332 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
333 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
334
335
336#ifdef CONFIG_PCI1
337{
338 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR;
339 extern void fsl_pci_init(struct pci_controller *hose);
340 struct pci_controller *hose = &pci1_hose;
341 struct pci_config_table *table;
342
343 uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
344 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
345 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
346
347 uint pci_agent = (host_agent == 3) || (host_agent == 4 ) || (host_agent == 6);
348
349 uint pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */
350
351 if (!(gur->devdisr & MPC85xx_DEVDISR_PCI1)) {
352 printf (" PCI: %d bit, %s MHz, %s, %s, %s\n",
353 (pci_32) ? 32 : 64,
354 (pci_speed == 33333000) ? "33" :
355 (pci_speed == 66666000) ? "66" : "unknown",
356 pci_clk_sel ? "sync" : "async",
357 pci_agent ? "agent" : "host",
358 pci_arb ? "arbiter" : "external-arbiter"
359 );
360
361
Ed Swarthout4bf4abb2007-08-21 09:38:59 -0500362 /* inbound */
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500363 pci_set_region(hose->regions + 0,
Ed Swarthout4bf4abb2007-08-21 09:38:59 -0500364 CFG_PCI_MEMORY_BUS,
365 CFG_PCI_MEMORY_PHYS,
366 CFG_PCI_MEMORY_SIZE,
367 PCI_REGION_MEM | PCI_REGION_MEMORY);
368
369
370 /* outbound memory */
371 pci_set_region(hose->regions + 1,
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500372 CFG_PCI1_MEM_BASE,
373 CFG_PCI1_MEM_PHYS,
374 CFG_PCI1_MEM_SIZE,
375 PCI_REGION_MEM);
376
377 /* outbound io */
Ed Swarthout4bf4abb2007-08-21 09:38:59 -0500378 pci_set_region(hose->regions + 2,
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500379 CFG_PCI1_IO_BASE,
380 CFG_PCI1_IO_PHYS,
381 CFG_PCI1_IO_SIZE,
382 PCI_REGION_IO);
Ed Swarthout4bf4abb2007-08-21 09:38:59 -0500383 hose->region_count = 3;
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500384
385 /* relocate config table pointers */
386 hose->config_table = \
387 (struct pci_config_table *)((uint)hose->config_table + gd->reloc_off);
388 for (table = hose->config_table; table && table->vendor; table++)
389 table->config_device += gd->reloc_off;
390
391 hose->first_busno=first_free_busno;
392 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
393
394 fsl_pci_init(hose);
395 first_free_busno=hose->last_busno+1;
396 printf ("PCI on bus %02x - %02x\n",hose->first_busno,hose->last_busno);
397#ifdef CONFIG_PCIX_CHECK
398 if (!(gur->pordevsr & PORDEVSR_PCI)) {
399 /* PCI-X init */
400 if (CONFIG_SYS_CLK_FREQ < 66000000)
401 printf("PCI-X will only work at 66 MHz\n");
402
403 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
404 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
405 pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16);
406 }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500407#endif
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500408 } else {
409 printf (" PCI: disabled\n");
410 }
411}
412#else
413 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
414#endif
415
416#ifdef CONFIG_PCI2
417{
418 uint pci2_clk_sel = gur->porpllsr & 0x4000; /* PORPLLSR[17] */
419 uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */
420 if (pci_dual) {
421 printf (" PCI2: 32 bit, 66 MHz, %s\n",
422 pci2_clk_sel ? "sync" : "async");
423 } else {
424 printf (" PCI2: disabled\n");
425 }
426}
427#else
428 gur->devdisr |= MPC85xx_DEVDISR_PCI2; /* disable */
429#endif /* CONFIG_PCI2 */
430
431#ifdef CONFIG_PCIE1
432{
433 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCIE1_ADDR;
434 extern void fsl_pci_init(struct pci_controller *hose);
435 struct pci_controller *hose = &pcie1_hose;
436 int pcie_ep = (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
437
438 int pcie_configured = io_sel >= 1;
439
440 if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
441 printf ("\n PCIE connected to slot as %s (base address %x)",
442 pcie_ep ? "End Point" : "Root Complex",
443 (uint)pci);
444
445 if (pci->pme_msg_det) {
446 pci->pme_msg_det = 0xffffffff;
447 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
448 }
449 printf ("\n");
450
451 /* inbound */
452 pci_set_region(hose->regions + 0,
453 CFG_PCI_MEMORY_BUS,
454 CFG_PCI_MEMORY_PHYS,
455 CFG_PCI_MEMORY_SIZE,
456 PCI_REGION_MEM | PCI_REGION_MEMORY);
457
458 /* outbound memory */
459 pci_set_region(hose->regions + 1,
460 CFG_PCIE1_MEM_BASE,
461 CFG_PCIE1_MEM_PHYS,
462 CFG_PCIE1_MEM_SIZE,
463 PCI_REGION_MEM);
464
465 /* outbound io */
466 pci_set_region(hose->regions + 2,
467 CFG_PCIE1_IO_BASE,
468 CFG_PCIE1_IO_PHYS,
469 CFG_PCIE1_IO_SIZE,
470 PCI_REGION_IO);
471
472 hose->region_count = 3;
473
474 hose->first_busno=first_free_busno;
475 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
476
477 fsl_pci_init(hose);
478 printf ("PCIE on bus %d - %d\n",hose->first_busno,hose->last_busno);
479
480 first_free_busno=hose->last_busno+1;
481
482 } else {
483 printf (" PCIE: disabled\n");
484 }
485 }
486#else
487 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
488#endif
489
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500490}
Andy Fleming09f3e092006-09-13 10:34:18 -0500491
492int last_stage_init(void)
493{
Jon Loeligerf5012822006-10-20 15:54:34 -0500494 unsigned short temp;
Andy Fleming09f3e092006-09-13 10:34:18 -0500495
496 /* Change the resistors for the PHY */
497 /* This is needed to get the RGMII working for the 1.3+
498 * CDS cards */
499 if (get_board_version() == 0x13) {
Kim Phillips255a35772007-05-16 16:52:19 -0500500 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500501 TSEC1_PHY_ADDR, 29, 18);
502
Kim Phillips255a35772007-05-16 16:52:19 -0500503 miiphy_read(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500504 TSEC1_PHY_ADDR, 30, &temp);
505
506 temp = (temp & 0xf03f);
507 temp |= 2 << 9; /* 36 ohm */
508 temp |= 2 << 6; /* 39 ohm */
509
Kim Phillips255a35772007-05-16 16:52:19 -0500510 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500511 TSEC1_PHY_ADDR, 30, temp);
512
Kim Phillips255a35772007-05-16 16:52:19 -0500513 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500514 TSEC1_PHY_ADDR, 29, 3);
515
Kim Phillips255a35772007-05-16 16:52:19 -0500516 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500517 TSEC1_PHY_ADDR, 30, 0x8000);
518 }
519
520 return 0;
521}
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500522
523
Kumar Galab90d2542007-11-29 00:11:44 -0600524#if defined(CONFIG_OF_BOARD_SETUP)
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500525void
526ft_pci_setup(void *blob, bd_t *bd)
527{
Kumar Galab90d2542007-11-29 00:11:44 -0600528 int node, tmp[2];
529 const char *path;
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500530
Kumar Galab90d2542007-11-29 00:11:44 -0600531 node = fdt_path_offset(blob, "/aliases");
532 tmp[0] = 0;
533 if (node >= 0) {
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500534#ifdef CONFIG_PCI1
Kumar Galab90d2542007-11-29 00:11:44 -0600535 path = fdt_getprop(blob, node, "pci0", NULL);
536 if (path) {
537 tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno;
538 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
539 }
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500540#endif
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500541#ifdef CONFIG_PCIE1
Kumar Galab90d2542007-11-29 00:11:44 -0600542 path = fdt_getprop(blob, node, "pci1", NULL);
543 if (path) {
544 tmp[1] = pcie1_hose.last_busno - pcie1_hose.first_busno;
545 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
546 }
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500547#endif
Kumar Galab90d2542007-11-29 00:11:44 -0600548 }
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500549}
550#endif