blob: 1968106711ed850bfac941bf0592e4b1fe0a14c9 [file] [log] [blame]
Kumar Galafd83aa82008-07-25 13:31:05 -05001/*
Kumar Gala0edddd92010-04-20 10:21:12 -05002 * Copyright 2008-2010 Freescale Semiconductor, Inc.
Kumar Galafd83aa82008-07-25 13:31:05 -05003 *
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 <command.h>
25#include <pci.h>
26#include <asm/processor.h>
27#include <asm/mmu.h>
Kumar Galaf81f89f2008-09-22 14:11:11 -050028#include <asm/cache.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050029#include <asm/immap_85xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050030#include <asm/fsl_pci.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050031#include <asm/fsl_ddr_sdram.h>
32#include <asm/io.h>
Kumar Gala0edddd92010-04-20 10:21:12 -050033#include <asm/fsl_serdes.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050034#include <spd.h>
35#include <miiphy.h>
36#include <libfdt.h>
37#include <spd_sdram.h>
38#include <fdt_support.h>
Jason Jin21181fd2008-10-10 11:41:00 +080039#include <tsec.h>
40#include <netdev.h>
Wolfgang Denk51068622009-01-28 09:25:31 +010041#include <sata.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050042
Jason Jin21181fd2008-10-10 11:41:00 +080043#include "../common/sgmii_riser.h"
Kumar Galafd83aa82008-07-25 13:31:05 -050044
Kumar Galafd83aa82008-07-25 13:31:05 -050045phys_size_t fixed_sdram(void);
46
Andy Fleming6843a6e2008-10-30 16:51:33 -050047int board_early_init_f (void)
48{
49#ifdef CONFIG_MMC
50 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
51
52 setbits_be32(&gur->pmuxcr,
53 (MPC85xx_PMUXCR_SD_DATA |
54 MPC85xx_PMUXCR_SDHC_CD |
55 MPC85xx_PMUXCR_SDHC_WP));
56
57#endif
58 return 0;
59}
60
Kumar Galafd83aa82008-07-25 13:31:05 -050061int checkboard (void)
62{
Kumar Galae21db032009-07-14 22:42:01 -050063 u8 vboot;
64 u8 *pixis_base = (u8 *)PIXIS_BASE;
65
66 puts("Board: MPC8536DS ");
67#ifdef CONFIG_PHYS_64BIT
68 puts("(36-bit addrmap) ");
69#endif
70
71 printf ("Sys ID: 0x%02x, "
72 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
73 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
74 in_8(pixis_base + PIXIS_PVER));
75
76 vboot = in_8(pixis_base + PIXIS_VBOOT);
77 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) {
78 case PIXIS_VBOOT_LBMAP_NOR0:
79 puts ("vBank: 0\n");
80 break;
81 case PIXIS_VBOOT_LBMAP_NOR1:
82 puts ("vBank: 1\n");
83 break;
84 case PIXIS_VBOOT_LBMAP_NOR2:
85 puts ("vBank: 2\n");
86 break;
87 case PIXIS_VBOOT_LBMAP_NOR3:
88 puts ("vBank: 3\n");
89 break;
90 case PIXIS_VBOOT_LBMAP_PJET:
91 puts ("Promjet\n");
92 break;
93 case PIXIS_VBOOT_LBMAP_NAND:
94 puts ("NAND\n");
95 break;
96 }
97
Kumar Galafd83aa82008-07-25 13:31:05 -050098 return 0;
99}
100
101phys_size_t
102initdram(int board_type)
103{
104 phys_size_t dram_size = 0;
105
106 puts("Initializing....");
107
108#ifdef CONFIG_SPD_EEPROM
109 dram_size = fsl_ddr_sdram();
Kumar Galafd83aa82008-07-25 13:31:05 -0500110#else
111 dram_size = fixed_sdram();
112#endif
Dave Liu83d43d22008-10-28 17:53:45 +0800113 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
114 dram_size *= 0x100000;
Kumar Galafd83aa82008-07-25 13:31:05 -0500115
Kumar Galafd83aa82008-07-25 13:31:05 -0500116 puts(" DDR: ");
117 return dram_size;
118}
119
120#if !defined(CONFIG_SPD_EEPROM)
121/*
122 * Fixed sdram init -- doesn't use serial presence detect.
123 */
124
125phys_size_t fixed_sdram (void)
126{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200127 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Kumar Galafd83aa82008-07-25 13:31:05 -0500128 volatile ccsr_ddr_t *ddr= &immap->im_ddr;
129 uint d_init;
130
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200131 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
132 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Galafd83aa82008-07-25 13:31:05 -0500133
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200134 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
135 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
136 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
137 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
138 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
139 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
140 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
141 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
142 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
143 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Galafd83aa82008-07-25 13:31:05 -0500144
145#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
147 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
148 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Galafd83aa82008-07-25 13:31:05 -0500149#endif
150 asm("sync;isync");
151
152 udelay(500);
153
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200154 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Galafd83aa82008-07-25 13:31:05 -0500155
156#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
157 d_init = 1;
158 debug("DDR - 1st controller: memory initializing\n");
159 /*
160 * Poll until memory is initialized.
161 * 512 Meg at 400 might hit this 200 times or so.
162 */
163 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
164 udelay(1000);
165 }
166 debug("DDR: memory initialized\n\n");
167 asm("sync; isync");
168 udelay(500);
169#endif
170
171 return 512 * 1024 * 1024;
172}
173
174#endif
175
176#ifdef CONFIG_PCI1
177static struct pci_controller pci1_hose;
178#endif
179
180#ifdef CONFIG_PCIE1
181static struct pci_controller pcie1_hose;
182#endif
183
184#ifdef CONFIG_PCIE2
185static struct pci_controller pcie2_hose;
186#endif
187
188#ifdef CONFIG_PCIE3
189static struct pci_controller pcie3_hose;
190#endif
191
Mingkai Hua83eab22009-10-28 10:49:31 +0800192#ifdef CONFIG_PCI
193void pci_init_board(void)
Kumar Galafd83aa82008-07-25 13:31:05 -0500194{
Mingkai Hua83eab22009-10-28 10:49:31 +0800195 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
196 struct fsl_pci_info pci_info[4];
197 u32 devdisr, pordevsr, io_sel, sdrs2_io_sel;
198 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
199 int first_free_busno = 0;
200 int num = 0;
201
202 int pcie_ep, pcie_configured;
Kumar Galafd83aa82008-07-25 13:31:05 -0500203
Mingkai Hua83eab22009-10-28 10:49:31 +0800204 devdisr = in_be32(&gur->devdisr);
205 pordevsr = in_be32(&gur->pordevsr);
206 porpllsr = in_be32(&gur->porpllsr);
207 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
208 sdrs2_io_sel = (pordevsr & MPC85xx_PORDEVSR_SRDS2_IO_SEL) >> 27;
209
210 debug(" pci_init_board: devdisr=%x, sdrs2_io_sel=%x, io_sel=%x\n",
211 devdisr, sdrs2_io_sel, io_sel);
Kumar Galafd83aa82008-07-25 13:31:05 -0500212
213 if (sdrs2_io_sel == 7)
214 printf(" Serdes2 disalbed\n");
215 else if (sdrs2_io_sel == 4) {
216 printf(" eTSEC1 is in sgmii mode.\n");
217 printf(" eTSEC3 is in sgmii mode.\n");
218 } else if (sdrs2_io_sel == 6)
219 printf(" eTSEC1 is in sgmii mode.\n");
220
Mingkai Hua83eab22009-10-28 10:49:31 +0800221 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500222#ifdef CONFIG_PCIE3
Kumar Gala0edddd92010-04-20 10:21:12 -0500223 pcie_configured = is_serdes_configured(PCIE3);
Kumar Galafd83aa82008-07-25 13:31:05 -0500224
Mingkai Hua83eab22009-10-28 10:49:31 +0800225 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)){
Kumar Gala0edddd92010-04-20 10:21:12 -0500226 set_next_law(CONFIG_SYS_PCIE3_MEM_PHYS, LAW_SIZE_512M,
227 LAW_TRGT_IF_PCIE_3);
228 set_next_law(CONFIG_SYS_PCIE3_IO_PHYS, LAW_SIZE_64K,
229 LAW_TRGT_IF_PCIE_3);
Mingkai Hua83eab22009-10-28 10:49:31 +0800230 SET_STD_PCIE_INFO(pci_info[num], 3);
231 pcie_ep = fsl_setup_hose(&pcie3_hose, pci_info[num].regs);
232 printf (" PCIE3 connected to Slot3 as %s (base address %lx)\n",
Peter Tyser62825a52010-01-17 15:38:26 -0600233 pcie_ep ? "Endpoint" : "Root Complex",
Mingkai Hua83eab22009-10-28 10:49:31 +0800234 pci_info[num].regs);
235 first_free_busno = fsl_pci_init_port(&pci_info[num++],
236 &pcie3_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500237 } else {
238 printf (" PCIE3: disabled\n");
239 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800240
241 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500242#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800243 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE3); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500244#endif
245
246#ifdef CONFIG_PCIE1
Kumar Gala0edddd92010-04-20 10:21:12 -0500247 pcie_configured = is_serdes_configured(PCIE1);
Kumar Galafd83aa82008-07-25 13:31:05 -0500248
249 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
Kumar Gala0edddd92010-04-20 10:21:12 -0500250 set_next_law(CONFIG_SYS_PCIE1_MEM_PHYS, LAW_SIZE_128M,
251 LAW_TRGT_IF_PCIE_1);
252 set_next_law(CONFIG_SYS_PCIE1_IO_PHYS, LAW_SIZE_64K,
253 LAW_TRGT_IF_PCIE_1);
Mingkai Hua83eab22009-10-28 10:49:31 +0800254 SET_STD_PCIE_INFO(pci_info[num], 1);
255 pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs);
256 printf (" PCIE1 connected to Slot1 as %s (base address %lx)\n",
Peter Tyser62825a52010-01-17 15:38:26 -0600257 pcie_ep ? "Endpoint" : "Root Complex",
Mingkai Hua83eab22009-10-28 10:49:31 +0800258 pci_info[num].regs);
259 first_free_busno = fsl_pci_init_port(&pci_info[num++],
260 &pcie1_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500261 } else {
262 printf (" PCIE1: disabled\n");
263 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800264
265 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500266#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800267 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500268#endif
269
270#ifdef CONFIG_PCIE2
Kumar Gala0edddd92010-04-20 10:21:12 -0500271 pcie_configured = is_serdes_configured(PCIE2);
Kumar Galafd83aa82008-07-25 13:31:05 -0500272
Mingkai Hua83eab22009-10-28 10:49:31 +0800273 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)){
Kumar Gala0edddd92010-04-20 10:21:12 -0500274 set_next_law(CONFIG_SYS_PCIE2_MEM_PHYS, LAW_SIZE_128M,
275 LAW_TRGT_IF_PCIE_2);
276 set_next_law(CONFIG_SYS_PCIE2_IO_PHYS, LAW_SIZE_64K,
277 LAW_TRGT_IF_PCIE_2);
Mingkai Hua83eab22009-10-28 10:49:31 +0800278 SET_STD_PCIE_INFO(pci_info[num], 2);
279 pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs);
280 printf (" PCIE2 connected to Slot 2 as %s (base address %lx)\n",
Peter Tyser62825a52010-01-17 15:38:26 -0600281 pcie_ep ? "Endpoint" : "Root Complex",
Mingkai Hua83eab22009-10-28 10:49:31 +0800282 pci_info[num].regs);
283 first_free_busno = fsl_pci_init_port(&pci_info[num++],
284 &pcie2_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500285 } else {
286 printf (" PCIE2: disabled\n");
287 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800288
289 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500290#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800291 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE2); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500292#endif
293
Kumar Galafd83aa82008-07-25 13:31:05 -0500294#ifdef CONFIG_PCI1
Mingkai Hua83eab22009-10-28 10:49:31 +0800295 pci_speed = 66666000;
296 pci_32 = 1;
297 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
298 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
Kumar Galafd83aa82008-07-25 13:31:05 -0500299
Kumar Galafd83aa82008-07-25 13:31:05 -0500300 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
Kumar Gala0edddd92010-04-20 10:21:12 -0500301 set_next_law(CONFIG_SYS_PCI1_MEM_PHYS, LAW_SIZE_256M,
302 LAW_TRGT_IF_PCI);
303 set_next_law(CONFIG_SYS_PCI1_IO_PHYS, LAW_SIZE_64K,
304 LAW_TRGT_IF_PCI);
Mingkai Hua83eab22009-10-28 10:49:31 +0800305 SET_STD_PCI_INFO(pci_info[num], 1);
306 pci_agent = fsl_setup_hose(&pci1_hose, pci_info[num].regs);
307 printf ("\n PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
Kumar Galafd83aa82008-07-25 13:31:05 -0500308 (pci_32) ? 32 : 64,
309 (pci_speed == 33333000) ? "33" :
310 (pci_speed == 66666000) ? "66" : "unknown",
311 pci_clk_sel ? "sync" : "async",
312 pci_agent ? "agent" : "host",
313 pci_arb ? "arbiter" : "external-arbiter",
Mingkai Hua83eab22009-10-28 10:49:31 +0800314 pci_info[num].regs);
Kumar Galac10a0c42008-10-21 08:28:33 -0500315
Mingkai Hua83eab22009-10-28 10:49:31 +0800316 first_free_busno = fsl_pci_init_port(&pci_info[num++],
317 &pci1_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500318 } else {
319 printf (" PCI: disabled\n");
320 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800321
322 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500323#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800324 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500325#endif
326}
Mingkai Hua83eab22009-10-28 10:49:31 +0800327#endif
Kumar Galafd83aa82008-07-25 13:31:05 -0500328
Kumar Galafd83aa82008-07-25 13:31:05 -0500329int board_early_init_r(void)
330{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200331 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
Kumar Gala040e4182009-11-13 09:25:07 -0600332 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Galafd83aa82008-07-25 13:31:05 -0500333
334 /*
335 * Remap Boot flash + PROMJET region to caching-inhibited
336 * so that flash can be erased properly.
337 */
338
Kumar Galaf81f89f2008-09-22 14:11:11 -0500339 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk82f15f32008-11-02 16:14:22 +0100340 flush_dcache();
341 invalidate_icache();
Kumar Galafd83aa82008-07-25 13:31:05 -0500342
343 /* invalidate existing TLB entry for flash + promjet */
344 disable_tlb(flash_esel);
345
Kumar Gala4be8b572008-12-02 14:19:34 -0600346 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Galafd83aa82008-07-25 13:31:05 -0500347 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
348 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
349
350 return 0;
351}
352
353#ifdef CONFIG_GET_CLK_FROM_ICS307
354/* decode S[0-2] to Output Divider (OD) */
355static unsigned char
356ics307_S_to_OD[] = {
357 10, 2, 8, 4, 5, 7, 3, 6
358};
359
360/* Calculate frequency being generated by ICS307-02 clock chip based upon
361 * the control bytes being programmed into it. */
362/* XXX: This function should probably go into a common library */
363static unsigned long
364ics307_clk_freq (unsigned char cw0, unsigned char cw1, unsigned char cw2)
365{
366 const unsigned long long InputFrequency = CONFIG_ICS307_REFCLK_HZ;
367 unsigned long VDW = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1);
368 unsigned long RDW = cw2 & 0x7F;
369 unsigned long OD = ics307_S_to_OD[cw0 & 0x7];
370 unsigned long freq;
371
372 /* CLK1Frequency = InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD) */
373
374 /* cw0: C1 C0 TTL F1 F0 S2 S1 S0
375 * cw1: V8 V7 V6 V5 V4 V3 V2 V1
376 * cw2: V0 R6 R5 R4 R3 R2 R1 R0
377 *
378 * R6:R0 = Reference Divider Word (RDW)
379 * V8:V0 = VCO Divider Word (VDW)
380 * S2:S0 = Output Divider Select (OD)
381 * F1:F0 = Function of CLK2 Output
382 * TTL = duty cycle
383 * C1:C0 = internal load capacitance for cyrstal
384 */
385
386 /* Adding 1 to get a "nicely" rounded number, but this needs
387 * more tweaking to get a "properly" rounded number. */
388
389 freq = 1 + (InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD));
390
391 debug("ICS307: CW[0-2]: %02X %02X %02X => %u Hz\n", cw0, cw1, cw2,
392 freq);
393 return freq;
394}
395
396unsigned long
397get_board_sys_clk(ulong dummy)
398{
Kumar Gala146c4b22009-07-22 10:12:39 -0500399 u8 *pixis_base = (u8 *)PIXIS_BASE;
400
Kumar Galafd83aa82008-07-25 13:31:05 -0500401 return ics307_clk_freq (
Kumar Gala146c4b22009-07-22 10:12:39 -0500402 in_8(pixis_base + PIXIS_VSYSCLK0),
403 in_8(pixis_base + PIXIS_VSYSCLK1),
404 in_8(pixis_base + PIXIS_VSYSCLK2)
Kumar Galafd83aa82008-07-25 13:31:05 -0500405 );
406}
407
408unsigned long
409get_board_ddr_clk(ulong dummy)
410{
Kumar Gala146c4b22009-07-22 10:12:39 -0500411 u8 *pixis_base = (u8 *)PIXIS_BASE;
412
Kumar Galafd83aa82008-07-25 13:31:05 -0500413 return ics307_clk_freq (
Kumar Gala146c4b22009-07-22 10:12:39 -0500414 in_8(pixis_base + PIXIS_VDDRCLK0),
415 in_8(pixis_base + PIXIS_VDDRCLK1),
416 in_8(pixis_base + PIXIS_VDDRCLK2)
Kumar Galafd83aa82008-07-25 13:31:05 -0500417 );
418}
419#else
420unsigned long
421get_board_sys_clk(ulong dummy)
422{
423 u8 i;
424 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500425 u8 *pixis_base = (u8 *)PIXIS_BASE;
Kumar Galafd83aa82008-07-25 13:31:05 -0500426
Kumar Gala146c4b22009-07-22 10:12:39 -0500427 i = in_8(pixis_base + PIXIS_SPD);
Kumar Galafd83aa82008-07-25 13:31:05 -0500428 i &= 0x07;
429
430 switch (i) {
431 case 0:
432 val = 33333333;
433 break;
434 case 1:
435 val = 40000000;
436 break;
437 case 2:
438 val = 50000000;
439 break;
440 case 3:
441 val = 66666666;
442 break;
443 case 4:
444 val = 83333333;
445 break;
446 case 5:
447 val = 100000000;
448 break;
449 case 6:
450 val = 133333333;
451 break;
452 case 7:
453 val = 166666666;
454 break;
455 }
456
457 return val;
458}
459
460unsigned long
461get_board_ddr_clk(ulong dummy)
462{
463 u8 i;
464 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500465 u8 *pixis_base = (u8 *)PIXIS_BASE;
Kumar Galafd83aa82008-07-25 13:31:05 -0500466
Kumar Gala146c4b22009-07-22 10:12:39 -0500467 i = in_8(pixis_base + PIXIS_SPD);
Kumar Galafd83aa82008-07-25 13:31:05 -0500468 i &= 0x38;
469 i >>= 3;
470
471 switch (i) {
472 case 0:
473 val = 33333333;
474 break;
475 case 1:
476 val = 40000000;
477 break;
478 case 2:
479 val = 50000000;
480 break;
481 case 3:
482 val = 66666666;
483 break;
484 case 4:
485 val = 83333333;
486 break;
487 case 5:
488 val = 100000000;
489 break;
490 case 6:
491 val = 133333333;
492 break;
493 case 7:
494 val = 166666666;
495 break;
496 }
497 return val;
498}
499#endif
500
Jason Jin21181fd2008-10-10 11:41:00 +0800501int board_eth_init(bd_t *bis)
502{
503#ifdef CONFIG_TSEC_ENET
504 struct tsec_info_struct tsec_info[2];
505 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
506 int num = 0;
507 uint sdrs2_io_sel =
508 (gur->pordevsr & MPC85xx_PORDEVSR_SRDS2_IO_SEL) >> 27;
509
510#ifdef CONFIG_TSEC1
511 SET_STD_TSEC_INFO(tsec_info[num], 1);
512 if ((sdrs2_io_sel == 4) || (sdrs2_io_sel == 6)) {
513 tsec_info[num].phyaddr = 0;
514 tsec_info[num].flags |= TSEC_SGMII;
515 }
516 num++;
517#endif
518#ifdef CONFIG_TSEC3
519 SET_STD_TSEC_INFO(tsec_info[num], 3);
520 if (sdrs2_io_sel == 4) {
521 tsec_info[num].phyaddr = 1;
522 tsec_info[num].flags |= TSEC_SGMII;
523 }
524 num++;
525#endif
526
527 if (!num) {
528 printf("No TSECs initialized\n");
529 return 0;
530 }
531
Andy Flemingacaccae2008-12-05 20:10:22 -0600532#ifdef CONFIG_FSL_SGMII_RISER
Jason Jin21181fd2008-10-10 11:41:00 +0800533 if ((sdrs2_io_sel == 4) || (sdrs2_io_sel == 6))
534 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingacaccae2008-12-05 20:10:22 -0600535#endif
Jason Jin21181fd2008-10-10 11:41:00 +0800536
537 tsec_eth_init(bis, tsec_info, num);
538#endif
539 return pci_eth_init(bis);
540}
541
Kumar Galafd83aa82008-07-25 13:31:05 -0500542#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Galac10a0c42008-10-21 08:28:33 -0500543void ft_board_setup(void *blob, bd_t *bd)
544{
Kumar Galafd83aa82008-07-25 13:31:05 -0500545 ft_cpu_setup(blob, bd);
546
Kumar Galafd83aa82008-07-25 13:31:05 -0500547#ifdef CONFIG_PCI1
Kumar Galac10a0c42008-10-21 08:28:33 -0500548 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Kumar Gala0edddd92010-04-20 10:21:12 -0500549#else
550 ft_fsl_pci_setup(blob, "pci0", NULL);
Kumar Galafd83aa82008-07-25 13:31:05 -0500551#endif
552#ifdef CONFIG_PCIE2
Kumar Galac10a0c42008-10-21 08:28:33 -0500553 ft_fsl_pci_setup(blob, "pci1", &pcie2_hose);
Kumar Gala0edddd92010-04-20 10:21:12 -0500554#else
555 ft_fsl_pci_setup(blob, "pci1", NULL);
Kumar Galafd83aa82008-07-25 13:31:05 -0500556#endif
Kumar Galac10a0c42008-10-21 08:28:33 -0500557#ifdef CONFIG_PCIE2
558 ft_fsl_pci_setup(blob, "pci2", &pcie1_hose);
Kumar Gala0edddd92010-04-20 10:21:12 -0500559#else
560 ft_fsl_pci_setup(blob, "pci2", NULL);
Kumar Galafd83aa82008-07-25 13:31:05 -0500561#endif
Kumar Galac10a0c42008-10-21 08:28:33 -0500562#ifdef CONFIG_PCIE1
563 ft_fsl_pci_setup(blob, "pci3", &pcie3_hose);
Kumar Gala0edddd92010-04-20 10:21:12 -0500564#else
565 ft_fsl_pci_setup(blob, "pci3", NULL);
Kumar Galafd83aa82008-07-25 13:31:05 -0500566#endif
Andy Flemingacaccae2008-12-05 20:10:22 -0600567#ifdef CONFIG_FSL_SGMII_RISER
568 fsl_sgmii_riser_fdt_fixup(blob);
569#endif
Kumar Galafd83aa82008-07-25 13:31:05 -0500570}
571#endif