blob: dacd2a911fe2829787c964b7243b46992f529381 [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>
28#include <asm/immap_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
39#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
40extern void ddr_enable_ecc(unsigned int dram_size);
41#endif
42
Jon Loeliger36c0b342007-10-16 13:54:01 -050043void sdram_init(void);
44long int fixed_sdram(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060045void mpc8610hpcd_diu_init(void);
46
Jon Loeliger36c0b342007-10-16 13:54:01 -050047
48/* called before any console output */
49int board_early_init_f(void)
50{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020051 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050052 volatile ccsr_gur_t *gur = &immap->im_gur;
53
York Sunb7145172007-10-29 13:58:39 -050054 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050055
56 return 0;
57}
58
York Sunb7145172007-10-29 13:58:39 -050059int misc_init_r(void)
60{
61 u8 tmp_val, version;
62
63 /*Do not use 8259PIC*/
64 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
65 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x80);
66
67 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
68 version = in8(PIXIS_BASE + PIXIS_PVER);
69 if(version >= 0x07) {
70 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
71 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xbf);
72 }
73
74 /* Using this for DIU init before the driver in linux takes over
75 * Enable the TFP410 Encoder (I2C address 0x38)
76 */
77
78 tmp_val = 0xBF;
79 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
80 /* Verify if enabled */
81 tmp_val = 0;
82 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
83 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
84
85 tmp_val = 0x10;
86 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
87 /* Verify if enabled */
88 tmp_val = 0;
89 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
90 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
91
92#ifdef CONFIG_FSL_DIU_FB
93 mpc8610hpcd_diu_init();
94#endif
95
96 return 0;
97}
98
Jon Loeliger36c0b342007-10-16 13:54:01 -050099int checkboard(void)
100{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200101 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500102 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
103
Wolfgang Denk12cec0a2008-07-11 01:16:00 +0200104 printf ("Board: MPC8610HPCD, System ID: 0x%02x, "
105 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
Kumar Gala5b2de6b2008-06-19 01:45:50 -0500106 in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
107 in8(PIXIS_BASE + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -0500108
109 mcm->abcr |= 0x00010000; /* 0 */
110 mcm->hpmr3 = 0x80000008; /* 4c */
111 mcm->hpmr0 = 0;
112 mcm->hpmr1 = 0;
113 mcm->hpmr2 = 0;
114 mcm->hpmr4 = 0;
115 mcm->hpmr5 = 0;
116
117 return 0;
118}
119
120
Becky Brucebd99ae72008-06-09 16:03:40 -0500121phys_size_t
Jon Loeliger36c0b342007-10-16 13:54:01 -0500122initdram(int board_type)
123{
124 long dram_size = 0;
125
126#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500127 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500128#else
129 dram_size = fixed_sdram();
130#endif
131
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200132#if defined(CONFIG_SYS_RAMBOOT)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500133 puts(" DDR: ");
134 return dram_size;
135#endif
136
137#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
138 /*
139 * Initialize and enable DDR ECC.
140 */
141 ddr_enable_ecc(dram_size);
142#endif
143
144 puts(" DDR: ");
145 return dram_size;
146}
147
148
Jon Loeliger36c0b342007-10-16 13:54:01 -0500149#if !defined(CONFIG_SPD_EEPROM)
150/*
151 * Fixed sdram init -- doesn't use serial presence detect.
152 */
153
154long int fixed_sdram(void)
155{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200156#if !defined(CONFIG_SYS_RAMBOOT)
157 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500158 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
159 uint d_init;
160
161 ddr->cs0_bnds = 0x0000001f;
162 ddr->cs0_config = 0x80010202;
163
Kumar Gala3af779b2008-04-29 10:27:08 -0500164 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500165 ddr->timing_cfg_0 = 0x00260802;
166 ddr->timing_cfg_1 = 0x3935d322;
167 ddr->timing_cfg_2 = 0x14904cc8;
168 ddr->sdram_mode_1 = 0x00480432;
169 ddr->sdram_mode_2 = 0x00000000;
170 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
171 ddr->sdram_data_init = 0xDEADBEEF;
172 ddr->sdram_clk_cntl = 0x03800000;
173 ddr->sdram_cfg_2 = 0x04400010;
174
175#if defined(CONFIG_DDR_ECC)
176 ddr->err_int_en = 0x0000000d;
177 ddr->err_disable = 0x00000000;
178 ddr->err_sbe = 0x00010000;
179#endif
180 asm("sync;isync");
181
182 udelay(500);
183
184 ddr->sdram_cfg_1 = 0xc3000000; /* 0xe3008000;*/
185
186
187#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
188 d_init = 1;
189 debug("DDR - 1st controller: memory initializing\n");
190 /*
191 * Poll until memory is initialized.
192 * 512 Meg at 400 might hit this 200 times or so.
193 */
194 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
195 udelay(1000);
196
197 debug("DDR: memory initialized\n\n");
198 asm("sync; isync");
199 udelay(500);
200#endif
201
202 return 512 * 1024 * 1024;
203#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200204 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500205}
206
207#endif
208
209#if defined(CONFIG_PCI)
210/*
211 * Initialize PCI Devices, report devices found.
212 */
213
214#ifndef CONFIG_PCI_PNP
215static struct pci_config_table pci_fsl86xxads_config_table[] = {
216 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
217 PCI_IDSEL_NUMBER, PCI_ANY_ID,
218 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
219 PCI_ENET0_MEMADDR,
220 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
221 {}
222};
223#endif
224
225
226static struct pci_controller pci1_hose = {
227#ifndef CONFIG_PCI_PNP
228config_table:pci_mpc86xxcts_config_table
229#endif
230};
231#endif /* CONFIG_PCI */
232
233#ifdef CONFIG_PCIE1
234static struct pci_controller pcie1_hose;
235#endif
236
237#ifdef CONFIG_PCIE2
238static struct pci_controller pcie2_hose;
239#endif
240
241int first_free_busno = 0;
242
Kumar Gala7772ccd2008-10-22 14:38:55 -0500243extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
244extern void fsl_pci_init(struct pci_controller *hose);
245
Jon Loeliger36c0b342007-10-16 13:54:01 -0500246void pci_init_board(void)
247{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200248 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500249 volatile ccsr_gur_t *gur = &immap->im_gur;
250 uint devdisr = gur->devdisr;
Jon Loeliger6bcd30c2008-02-20 14:22:26 -0600251 uint io_sel = (gur->pordevsr & MPC8610_PORDEVSR_IO_SEL)
252 >> MPC8610_PORDEVSR_IO_SEL_SHIFT;
253 uint host_agent = (gur->porbmsr & MPC8610_PORBMSR_HA)
254 >> MPC8610_PORBMSR_HA_SHIFT;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500255
256 printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
257 devdisr, io_sel, host_agent);
258
Jon Loeliger36c0b342007-10-16 13:54:01 -0500259#ifdef CONFIG_PCIE1
260 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200261 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500262 struct pci_controller *hose = &pcie1_hose;
263 int pcie_configured = (io_sel == 1) || (io_sel == 4);
264 int pcie_ep = (host_agent == 0) || (host_agent == 2) ||
265 (host_agent == 5);
Kumar Gala7772ccd2008-10-22 14:38:55 -0500266 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500267
268 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) {
269 printf(" PCIe 1 connected to Uli as %s (base address %x)\n",
270 pcie_ep ? "End Point" : "Root Complex",
271 (uint)pci);
272 if (pci->pme_msg_det)
273 pci->pme_msg_det = 0xffffffff;
274
275 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500276 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500277
278 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500279 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200280 CONFIG_SYS_PCIE1_MEM_BASE,
281 CONFIG_SYS_PCIE1_MEM_PHYS,
282 CONFIG_SYS_PCIE1_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500283 PCI_REGION_MEM);
284
285 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500286 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200287 CONFIG_SYS_PCIE1_IO_BASE,
288 CONFIG_SYS_PCIE1_IO_PHYS,
289 CONFIG_SYS_PCIE1_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500290 PCI_REGION_IO);
291
Kumar Gala7772ccd2008-10-22 14:38:55 -0500292 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500293
294 hose->first_busno = first_free_busno;
295 pci_setup_indirect(hose, (int)&pci->cfg_addr,
296 (int)&pci->cfg_data);
297
298 fsl_pci_init(hose);
299
300 first_free_busno = hose->last_busno + 1;
301 printf(" PCI-Express 1 on bus %02x - %02x\n",
302 hose->first_busno, hose->last_busno);
303
304 } else
305 puts(" PCI-Express 1: Disabled\n");
306 }
307#else
308 puts("PCI-Express 1: Disabled\n");
309#endif /* CONFIG_PCIE1 */
310
311
312#ifdef CONFIG_PCIE2
313 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200314 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500315 struct pci_controller *hose = &pcie2_hose;
Kumar Gala7772ccd2008-10-22 14:38:55 -0500316 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500317
318 int pcie_configured = (io_sel == 0) || (io_sel == 4);
319 int pcie_ep = (host_agent == 0) || (host_agent == 1) ||
320 (host_agent == 4);
321
322 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) {
323 printf(" PCI-Express 2 connected to slot as %s" \
324 " (base address %x)\n",
325 pcie_ep ? "End Point" : "Root Complex",
326 (uint)pci);
327 if (pci->pme_msg_det)
328 pci->pme_msg_det = 0xffffffff;
329
330 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500331 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500332
333 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500334 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200335 CONFIG_SYS_PCIE2_MEM_BASE,
336 CONFIG_SYS_PCIE2_MEM_PHYS,
337 CONFIG_SYS_PCIE2_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500338 PCI_REGION_MEM);
339
340 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500341 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200342 CONFIG_SYS_PCIE2_IO_BASE,
343 CONFIG_SYS_PCIE2_IO_PHYS,
344 CONFIG_SYS_PCIE2_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500345 PCI_REGION_IO);
346
Kumar Gala7772ccd2008-10-22 14:38:55 -0500347 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500348
349 hose->first_busno = first_free_busno;
350 pci_setup_indirect(hose, (int)&pci->cfg_addr,
351 (int)&pci->cfg_data);
352
353 fsl_pci_init(hose);
354
355 first_free_busno = hose->last_busno + 1;
356 printf(" PCI-Express 2 on bus %02x - %02x\n",
357 hose->first_busno, hose->last_busno);
358 } else
359 puts(" PCI-Express 2: Disabled\n");
360 }
361#else
362 puts("PCI-Express 2: Disabled\n");
363#endif /* CONFIG_PCIE2 */
364
365
366#ifdef CONFIG_PCI1
367 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200368 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500369 struct pci_controller *hose = &pci1_hose;
370 int pci_agent = (host_agent >= 4) && (host_agent <= 6);
Kumar Gala7772ccd2008-10-22 14:38:55 -0500371 struct pci_region *r = hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500372
373 if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) {
374 printf(" PCI connected to PCI slots as %s" \
375 " (base address %x)\n",
376 pci_agent ? "Agent" : "Host",
377 (uint)pci);
378
379 /* inbound */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500380 r += fsl_pci_setup_inbound_windows(r);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500381
382 /* outbound memory */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500383 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200384 CONFIG_SYS_PCI1_MEM_BASE,
385 CONFIG_SYS_PCI1_MEM_PHYS,
386 CONFIG_SYS_PCI1_MEM_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500387 PCI_REGION_MEM);
388
389 /* outbound io */
Kumar Gala7772ccd2008-10-22 14:38:55 -0500390 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200391 CONFIG_SYS_PCI1_IO_BASE,
392 CONFIG_SYS_PCI1_IO_PHYS,
393 CONFIG_SYS_PCI1_IO_SIZE,
Jon Loeliger36c0b342007-10-16 13:54:01 -0500394 PCI_REGION_IO);
395
Kumar Gala7772ccd2008-10-22 14:38:55 -0500396 hose->region_count = r - hose->regions;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500397
398 hose->first_busno = first_free_busno;
399 pci_setup_indirect(hose, (int) &pci->cfg_addr,
400 (int) &pci->cfg_data);
401
402 fsl_pci_init(hose);
403
404 first_free_busno = hose->last_busno + 1;
405 printf(" PCI on bus %02x - %02x\n",
406 hose->first_busno, hose->last_busno);
407
408
409 } else
410 puts(" PCI: Disabled\n");
411 }
412#endif /* CONFIG_PCI1 */
413}
414
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600415#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala7772ccd2008-10-22 14:38:55 -0500416extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
417 struct pci_controller *hose);
418
Jon Loeliger36c0b342007-10-16 13:54:01 -0500419void
420ft_board_setup(void *blob, bd_t *bd)
421{
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600422 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
423 "timebase-frequency", bd->bi_busfreq / 4, 1);
424 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
425 "bus-frequency", bd->bi_busfreq, 1);
426 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
427 "clock-frequency", bd->bi_intfreq, 1);
428 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
429 "bus-frequency", bd->bi_busfreq, 1);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500430
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600431 do_fixup_by_compat_u32(blob, "ns16550",
432 "clock-frequency", bd->bi_busfreq, 1);
433
434 fdt_fixup_memory(blob, bd->bi_memstart, bd->bi_memsize);
435
Jon Loeliger36c0b342007-10-16 13:54:01 -0500436#ifdef CONFIG_PCI1
Kumar Gala7772ccd2008-10-22 14:38:55 -0500437 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500438#endif
439#ifdef CONFIG_PCIE1
Kumar Gala7772ccd2008-10-22 14:38:55 -0500440 ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500441#endif
442#ifdef CONFIG_PCIE2
Kumar Gala7772ccd2008-10-22 14:38:55 -0500443 ft_fsl_pci_setup(blob, "pci2", &pcie2_hose);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500444#endif
Jon Loeliger36c0b342007-10-16 13:54:01 -0500445}
446#endif
447
448/*
449 * get_board_sys_clk
450 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
451 */
452
453unsigned long
454get_board_sys_clk(ulong dummy)
455{
York Sunb7145172007-10-29 13:58:39 -0500456 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500457 ulong val = 0;
458 ulong a;
459
460 a = PIXIS_BASE + PIXIS_SPD;
461 i = in8(a);
462 i &= 0x07;
463
464 switch (i) {
465 case 0:
466 val = 33333000;
467 break;
468 case 1:
469 val = 39999600;
470 break;
471 case 2:
472 val = 49999500;
473 break;
474 case 3:
475 val = 66666000;
476 break;
477 case 4:
478 val = 83332500;
479 break;
480 case 5:
481 val = 99999000;
482 break;
483 case 6:
484 val = 133332000;
485 break;
486 case 7:
487 val = 166665000;
488 break;
489 }
490
491 return val;
492}
Ben Warrened63bcc2008-07-11 23:42:19 -0700493
Ben Warrened63bcc2008-07-11 23:42:19 -0700494int board_eth_init(bd_t *bis)
495{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700496 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700497}