blob: 419b2c191eb87d2606b428f252b98c87e2dcb984 [file] [log] [blame]
Jon Loeliger36c0b342007-10-16 13:54:01 -05001/*
2 * Copyright 2007 Freescale Semiconductor, Inc.
3 *
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 */
Jon Loeligerca7aff12008-01-04 11:58:23 -060022
Jon Loeliger36c0b342007-10-16 13:54:01 -050023#include <common.h>
24#include <command.h>
25#include <pci.h>
26#include <asm/processor.h>
27#include <asm/immap_86xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050028#include <asm/fsl_pci.h>
Jon Loeliger54634b42008-08-26 15:01:36 -050029#include <asm/fsl_ddr_sdram.h>
Jon Loeligerca7aff12008-01-04 11:58:23 -060030#include <i2c.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050031#include <asm/io.h>
Jon Loeliger6bb38c42008-01-04 12:07:27 -060032#include <libfdt.h>
33#include <fdt_support.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060034#include <spd_sdram.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070035#include <netdev.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050036
37#include "../common/pixis.h"
38
Jon Loeliger36c0b342007-10-16 13:54:01 -050039void sdram_init(void);
Becky Brucecc064ed2008-10-31 17:13:32 -050040phys_size_t fixed_sdram(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060041void mpc8610hpcd_diu_init(void);
42
Jon Loeliger36c0b342007-10-16 13:54:01 -050043
44/* called before any console output */
45int board_early_init_f(void)
46{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020047 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050048 volatile ccsr_gur_t *gur = &immap->im_gur;
49
York Sunb7145172007-10-29 13:58:39 -050050 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050051
52 return 0;
53}
54
York Sunb7145172007-10-29 13:58:39 -050055int misc_init_r(void)
56{
57 u8 tmp_val, version;
58
59 /*Do not use 8259PIC*/
60 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
61 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x80);
62
63 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
64 version = in8(PIXIS_BASE + PIXIS_PVER);
65 if(version >= 0x07) {
66 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
67 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xbf);
68 }
69
70 /* Using this for DIU init before the driver in linux takes over
71 * Enable the TFP410 Encoder (I2C address 0x38)
72 */
73
74 tmp_val = 0xBF;
75 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
76 /* Verify if enabled */
77 tmp_val = 0;
78 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
79 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
80
81 tmp_val = 0x10;
82 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
83 /* Verify if enabled */
84 tmp_val = 0;
85 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
86 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
87
88#ifdef CONFIG_FSL_DIU_FB
89 mpc8610hpcd_diu_init();
90#endif
91
92 return 0;
93}
94
Jon Loeliger36c0b342007-10-16 13:54:01 -050095int checkboard(void)
96{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020097 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050098 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
99
Wolfgang Denk12cec0a2008-07-11 01:16:00 +0200100 printf ("Board: MPC8610HPCD, System ID: 0x%02x, "
101 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
Kumar Gala5b2de6b2008-06-19 01:45:50 -0500102 in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
103 in8(PIXIS_BASE + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -0500104
105 mcm->abcr |= 0x00010000; /* 0 */
106 mcm->hpmr3 = 0x80000008; /* 4c */
107 mcm->hpmr0 = 0;
108 mcm->hpmr1 = 0;
109 mcm->hpmr2 = 0;
110 mcm->hpmr4 = 0;
111 mcm->hpmr5 = 0;
112
113 return 0;
114}
115
116
Becky Brucebd99ae72008-06-09 16:03:40 -0500117phys_size_t
Jon Loeliger36c0b342007-10-16 13:54:01 -0500118initdram(int board_type)
119{
Becky Brucecc064ed2008-10-31 17:13:32 -0500120 phys_size_t dram_size = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500121
122#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500123 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500124#else
125 dram_size = fixed_sdram();
126#endif
127
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200128#if defined(CONFIG_SYS_RAMBOOT)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500129 puts(" DDR: ");
130 return dram_size;
131#endif
132
Jon Loeliger36c0b342007-10-16 13:54:01 -0500133 puts(" DDR: ");
134 return dram_size;
135}
136
137
Jon Loeliger36c0b342007-10-16 13:54:01 -0500138#if !defined(CONFIG_SPD_EEPROM)
139/*
140 * Fixed sdram init -- doesn't use serial presence detect.
141 */
142
Becky Brucecc064ed2008-10-31 17:13:32 -0500143phys_size_t fixed_sdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500144{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200145#if !defined(CONFIG_SYS_RAMBOOT)
146 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500147 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
148 uint d_init;
149
150 ddr->cs0_bnds = 0x0000001f;
151 ddr->cs0_config = 0x80010202;
152
Kumar Gala3af779b2008-04-29 10:27:08 -0500153 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500154 ddr->timing_cfg_0 = 0x00260802;
155 ddr->timing_cfg_1 = 0x3935d322;
156 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500157 ddr->sdram_mode = 0x00480432;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500158 ddr->sdram_mode_2 = 0x00000000;
159 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
160 ddr->sdram_data_init = 0xDEADBEEF;
161 ddr->sdram_clk_cntl = 0x03800000;
162 ddr->sdram_cfg_2 = 0x04400010;
163
164#if defined(CONFIG_DDR_ECC)
165 ddr->err_int_en = 0x0000000d;
166 ddr->err_disable = 0x00000000;
167 ddr->err_sbe = 0x00010000;
168#endif
169 asm("sync;isync");
170
171 udelay(500);
172
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500173 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger36c0b342007-10-16 13:54:01 -0500174
175
176#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
177 d_init = 1;
178 debug("DDR - 1st controller: memory initializing\n");
179 /*
180 * Poll until memory is initialized.
181 * 512 Meg at 400 might hit this 200 times or so.
182 */
183 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
184 udelay(1000);
185
186 debug("DDR: memory initialized\n\n");
187 asm("sync; isync");
188 udelay(500);
189#endif
190
191 return 512 * 1024 * 1024;
192#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200193 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500194}
195
196#endif
197
198#if defined(CONFIG_PCI)
199/*
200 * Initialize PCI Devices, report devices found.
201 */
202
203#ifndef CONFIG_PCI_PNP
204static struct pci_config_table pci_fsl86xxads_config_table[] = {
205 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
206 PCI_IDSEL_NUMBER, PCI_ANY_ID,
207 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
208 PCI_ENET0_MEMADDR,
209 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
210 {}
211};
212#endif
213
214
215static struct pci_controller pci1_hose = {
216#ifndef CONFIG_PCI_PNP
217config_table:pci_mpc86xxcts_config_table
218#endif
219};
220#endif /* CONFIG_PCI */
221
222#ifdef CONFIG_PCIE1
223static struct pci_controller pcie1_hose;
224#endif
225
226#ifdef CONFIG_PCIE2
227static struct pci_controller pcie2_hose;
228#endif
229
230int first_free_busno = 0;
231
232void pci_init_board(void)
233{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200234 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500235 volatile ccsr_gur_t *gur = &immap->im_gur;
236 uint devdisr = gur->devdisr;
Jon Loeliger6bcd30c2008-02-20 14:22:26 -0600237 uint io_sel = (gur->pordevsr & MPC8610_PORDEVSR_IO_SEL)
238 >> MPC8610_PORDEVSR_IO_SEL_SHIFT;
239 uint host_agent = (gur->porbmsr & MPC8610_PORBMSR_HA)
240 >> MPC8610_PORBMSR_HA_SHIFT;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500241
242 printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
243 devdisr, io_sel, host_agent);
244
Jon Loeliger36c0b342007-10-16 13:54:01 -0500245#ifdef CONFIG_PCIE1
246 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200247 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500248 struct pci_controller *hose = &pcie1_hose;
249 int pcie_configured = (io_sel == 1) || (io_sel == 4);
250 int pcie_ep = (host_agent == 0) || (host_agent == 2) ||
251 (host_agent == 5);
Kumar Gala7772ccd2008-10-22 14:38:55 -0500252 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500253
254 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) {
255 printf(" PCIe 1 connected to Uli as %s (base address %x)\n",
256 pcie_ep ? "End Point" : "Root Complex",
257 (uint)pci);
258 if (pci->pme_msg_det)
259 pci->pme_msg_det = 0xffffffff;
260
261 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500262 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500263
264 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500265 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600266 CONFIG_SYS_PCIE1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200267 CONFIG_SYS_PCIE1_MEM_PHYS,
268 CONFIG_SYS_PCIE1_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500269 PCI_REGION_MEM);
270
271 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500272 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600273 CONFIG_SYS_PCIE1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200274 CONFIG_SYS_PCIE1_IO_PHYS,
275 CONFIG_SYS_PCIE1_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500276 PCI_REGION_IO);
277
Kumar Gala7772ccd2008-10-22 14:38:55 -0500278 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500279
280 hose->first_busno = first_free_busno;
281 pci_setup_indirect(hose, (int)&pci->cfg_addr,
282 (int)&pci->cfg_data);
283
284 fsl_pci_init(hose);
285
286 first_free_busno = hose->last_busno + 1;
287 printf(" PCI-Express 1 on bus %02x - %02x\n",
288 hose->first_busno, hose->last_busno);
289
290 } else
291 puts(" PCI-Express 1: Disabled\n");
292 }
293#else
294 puts("PCI-Express 1: Disabled\n");
295#endif /* CONFIG_PCIE1 */
296
297
298#ifdef CONFIG_PCIE2
299 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200300 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500301 struct pci_controller *hose = &pcie2_hose;
Kumar Gala7772ccd2008-10-22 14:38:55 -0500302 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500303
304 int pcie_configured = (io_sel == 0) || (io_sel == 4);
305 int pcie_ep = (host_agent == 0) || (host_agent == 1) ||
306 (host_agent == 4);
307
308 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) {
309 printf(" PCI-Express 2 connected to slot as %s" \
310 " (base address %x)\n",
311 pcie_ep ? "End Point" : "Root Complex",
312 (uint)pci);
313 if (pci->pme_msg_det)
314 pci->pme_msg_det = 0xffffffff;
315
316 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500317 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500318
319 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500320 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600321 CONFIG_SYS_PCIE2_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200322 CONFIG_SYS_PCIE2_MEM_PHYS,
323 CONFIG_SYS_PCIE2_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500324 PCI_REGION_MEM);
325
326 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500327 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600328 CONFIG_SYS_PCIE2_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200329 CONFIG_SYS_PCIE2_IO_PHYS,
330 CONFIG_SYS_PCIE2_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500331 PCI_REGION_IO);
332
Kumar Gala7772ccd2008-10-22 14:38:55 -0500333 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500334
335 hose->first_busno = first_free_busno;
336 pci_setup_indirect(hose, (int)&pci->cfg_addr,
337 (int)&pci->cfg_data);
338
339 fsl_pci_init(hose);
340
341 first_free_busno = hose->last_busno + 1;
342 printf(" PCI-Express 2 on bus %02x - %02x\n",
343 hose->first_busno, hose->last_busno);
344 } else
345 puts(" PCI-Express 2: Disabled\n");
346 }
347#else
348 puts("PCI-Express 2: Disabled\n");
349#endif /* CONFIG_PCIE2 */
350
351
352#ifdef CONFIG_PCI1
353 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200354 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500355 struct pci_controller *hose = &pci1_hose;
356 int pci_agent = (host_agent >= 4) && (host_agent <= 6);
Kumar Gala7772ccd2008-10-22 14:38:55 -0500357 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500358
359 if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) {
360 printf(" PCI connected to PCI slots as %s" \
361 " (base address %x)\n",
362 pci_agent ? "Agent" : "Host",
363 (uint)pci);
364
365 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500366 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500367
368 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500369 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600370 CONFIG_SYS_PCI1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200371 CONFIG_SYS_PCI1_MEM_PHYS,
372 CONFIG_SYS_PCI1_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500373 PCI_REGION_MEM);
374
375 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500376 pci_set_region(r++,
Becky Bruce47d20df2008-12-03 22:36:44 -0600377 CONFIG_SYS_PCI1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200378 CONFIG_SYS_PCI1_IO_PHYS,
379 CONFIG_SYS_PCI1_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500380 PCI_REGION_IO);
381
Kumar Gala7772ccd2008-10-22 14:38:55 -0500382 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500383
384 hose->first_busno = first_free_busno;
385 pci_setup_indirect(hose, (int) &pci->cfg_addr,
386 (int) &pci->cfg_data);
387
388 fsl_pci_init(hose);
389
390 first_free_busno = hose->last_busno + 1;
391 printf(" PCI on bus %02x - %02x\n",
392 hose->first_busno, hose->last_busno);
393
394
395 } else
396 puts(" PCI: Disabled\n");
397 }
398#endif /* CONFIG_PCI1 */
399}
400
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600401#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500402void
403ft_board_setup(void *blob, bd_t *bd)
404{
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600405 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
406 "timebase-frequency", bd->bi_busfreq / 4, 1);
407 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
408 "bus-frequency", bd->bi_busfreq, 1);
409 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
410 "clock-frequency", bd->bi_intfreq, 1);
411 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
412 "bus-frequency", bd->bi_busfreq, 1);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500413
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600414 do_fixup_by_compat_u32(blob, "ns16550",
415 "clock-frequency", bd->bi_busfreq, 1);
416
417 fdt_fixup_memory(blob, bd->bi_memstart, bd->bi_memsize);
418
Jon Loeliger36c0b342007-10-16 13:54:01 -0500419#ifdef CONFIG_PCI1
Kumar Gala7772ccd2008-10-22 14:38:55 -0500420 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500421#endif
422#ifdef CONFIG_PCIE1
Kumar Gala7772ccd2008-10-22 14:38:55 -0500423 ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500424#endif
425#ifdef CONFIG_PCIE2
Kumar Gala7772ccd2008-10-22 14:38:55 -0500426 ft_fsl_pci_setup(blob, "pci2", &pcie2_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500427#endif
Jon Loeliger36c0b342007-10-16 13:54:01 -0500428}
429#endif
430
431/*
432 * get_board_sys_clk
433 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
434 */
435
436unsigned long
437get_board_sys_clk(ulong dummy)
438{
York Sunb7145172007-10-29 13:58:39 -0500439 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500440 ulong val = 0;
441 ulong a;
442
443 a = PIXIS_BASE + PIXIS_SPD;
444 i = in8(a);
445 i &= 0x07;
446
447 switch (i) {
448 case 0:
449 val = 33333000;
450 break;
451 case 1:
452 val = 39999600;
453 break;
454 case 2:
455 val = 49999500;
456 break;
457 case 3:
458 val = 66666000;
459 break;
460 case 4:
461 val = 83332500;
462 break;
463 case 5:
464 val = 99999000;
465 break;
466 case 6:
467 val = 133332000;
468 break;
469 case 7:
470 val = 166665000;
471 break;
472 }
473
474 return val;
475}
Ben Warrened63bcc2008-07-11 23:42:19 -0700476
Ben Warrened63bcc2008-07-11 23:42:19 -0700477int board_eth_init(bd_t *bis)
478{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700479 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700480}
Peter Tyser69454402009-02-05 11:25:25 -0600481
482void board_reset(void)
483{
484 out8(PIXIS_BASE + PIXIS_RST, 0);
485
486 while (1)
487 ;
488}