blob: 0542bf4ae1e6ac23894df9a8c9c99210e093a5a8 [file] [log] [blame]
Kumar Gala129ba612008-08-12 11:13:08 -05001/*
2 * Copyright 2007-2008 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 */
22
23#include <common.h>
24#include <command.h>
25#include <pci.h>
26#include <asm/processor.h>
27#include <asm/mmu.h>
Kumar Gala7c0d4a72008-09-22 14:11:11 -050028#include <asm/cache.h>
Kumar Gala129ba612008-08-12 11:13:08 -050029#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050030#include <asm/fsl_pci.h>
Kumar Gala129ba612008-08-12 11:13:08 -050031#include <asm/fsl_ddr_sdram.h>
32#include <asm/io.h>
33#include <miiphy.h>
34#include <libfdt.h>
35#include <fdt_support.h>
Liu Yu7e183ca2008-10-10 11:40:59 +080036#include <tsec.h>
Kumar Gala129ba612008-08-12 11:13:08 -050037
38#include "../common/pixis.h"
Liu Yu7e183ca2008-10-10 11:40:59 +080039#include "../common/sgmii_riser.h"
Kumar Gala129ba612008-08-12 11:13:08 -050040
Kumar Gala129ba612008-08-12 11:13:08 -050041long int fixed_sdram(void);
42
43int checkboard (void)
44{
Kumar Galacb69e4d2009-02-10 17:36:15 -060045 puts ("Board: MPC8572DS ");
46#ifdef CONFIG_PHYS_64BIT
47 puts ("(36-bit addrmap) ");
48#endif
49 printf ("Sys ID: 0x%02x, "
50 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x\n",
Kumar Gala129ba612008-08-12 11:13:08 -050051 in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
52 in8(PIXIS_BASE + PIXIS_PVER));
53 return 0;
54}
55
56phys_size_t initdram(int board_type)
57{
58 phys_size_t dram_size = 0;
59
60 puts("Initializing....");
61
62#ifdef CONFIG_SPD_EEPROM
63 dram_size = fsl_ddr_sdram();
Kumar Gala129ba612008-08-12 11:13:08 -050064#else
65 dram_size = fixed_sdram();
66#endif
Dave Liue57f0fa2008-10-28 17:53:45 +080067 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
68 dram_size *= 0x100000;
Kumar Gala129ba612008-08-12 11:13:08 -050069
Kumar Gala129ba612008-08-12 11:13:08 -050070 puts(" DDR: ");
71 return dram_size;
72}
73
74#if !defined(CONFIG_SPD_EEPROM)
75/*
76 * Fixed sdram init -- doesn't use serial presence detect.
77 */
78
79phys_size_t fixed_sdram (void)
80{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Kumar Gala129ba612008-08-12 11:13:08 -050082 volatile ccsr_ddr_t *ddr= &immap->im_ddr;
83 uint d_init;
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
86 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Gala129ba612008-08-12 11:13:08 -050087
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
89 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
90 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
91 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
92 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
93 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
94 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
95 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
96 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
97 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Gala129ba612008-08-12 11:13:08 -050098
99#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
101 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
102 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Gala129ba612008-08-12 11:13:08 -0500103#endif
104 asm("sync;isync");
105
106 udelay(500);
107
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Gala129ba612008-08-12 11:13:08 -0500109
110#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
111 d_init = 1;
112 debug("DDR - 1st controller: memory initializing\n");
113 /*
114 * Poll until memory is initialized.
115 * 512 Meg at 400 might hit this 200 times or so.
116 */
117 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
118 udelay(1000);
119 }
120 debug("DDR: memory initialized\n\n");
121 asm("sync; isync");
122 udelay(500);
123#endif
124
125 return 512 * 1024 * 1024;
126}
127
128#endif
129
130#ifdef CONFIG_PCIE1
131static struct pci_controller pcie1_hose;
132#endif
133
134#ifdef CONFIG_PCIE2
135static struct pci_controller pcie2_hose;
136#endif
137
138#ifdef CONFIG_PCIE3
139static struct pci_controller pcie3_hose;
140#endif
141
Kumar Gala2dba0de2008-10-21 08:28:33 -0500142extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
143extern void fsl_pci_init(struct pci_controller *hose);
144
Kumar Gala129ba612008-08-12 11:13:08 -0500145int first_free_busno=0;
146#ifdef CONFIG_PCI
147void pci_init_board(void)
148{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala129ba612008-08-12 11:13:08 -0500150 uint devdisr = gur->devdisr;
151 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
152 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
153
154 debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
155 devdisr, io_sel, host_agent);
156
157 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
158 printf (" eTSEC1 is in sgmii mode.\n");
159 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
160 printf (" eTSEC2 is in sgmii mode.\n");
161 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
162 printf (" eTSEC3 is in sgmii mode.\n");
163 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII4_DIS))
164 printf (" eTSEC4 is in sgmii mode.\n");
165
166
167#ifdef CONFIG_PCIE3
168 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
Kumar Gala129ba612008-08-12 11:13:08 -0500170 struct pci_controller *hose = &pcie3_hose;
171 int pcie_ep = (host_agent == 0) || (host_agent == 3) ||
172 (host_agent == 5) || (host_agent == 6);
Roy Zang9afc2ef2009-01-09 16:00:55 +0800173 int pcie_configured = (io_sel == 0x7);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500174 struct pci_region *r = hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500175 u32 temp32;
176
Roy Zang028e1162009-01-09 16:01:52 +0800177 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)){
Kumar Gala129ba612008-08-12 11:13:08 -0500178 printf ("\n PCIE3 connected to ULI as %s (base address %x)",
179 pcie_ep ? "End Point" : "Root Complex",
180 (uint)pci);
181 if (pci->pme_msg_det) {
182 pci->pme_msg_det = 0xffffffff;
183 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
184 }
185 printf ("\n");
186
187 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500188 r += fsl_pci_setup_inbound_windows(r);
Kumar Gala129ba612008-08-12 11:13:08 -0500189
190 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500191 pci_set_region(r++,
Kumar Gala10795f42008-12-02 16:08:36 -0600192 CONFIG_SYS_PCIE3_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200193 CONFIG_SYS_PCIE3_MEM_PHYS,
194 CONFIG_SYS_PCIE3_MEM_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500195 PCI_REGION_MEM);
196
197 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500198 pci_set_region(r++,
Kumar Gala5f91ef62008-12-02 16:08:37 -0600199 CONFIG_SYS_PCIE3_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200200 CONFIG_SYS_PCIE3_IO_PHYS,
201 CONFIG_SYS_PCIE3_IO_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500202 PCI_REGION_IO);
203
Kumar Gala2dba0de2008-10-21 08:28:33 -0500204 hose->region_count = r - hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500205 hose->first_busno=first_free_busno;
206 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
207
208 fsl_pci_init(hose);
209
210 first_free_busno=hose->last_busno+1;
211 printf (" PCIE3 on bus %02x - %02x\n",
212 hose->first_busno,hose->last_busno);
213
214 /*
215 * Activate ULI1575 legacy chip by performing a fake
216 * memory access. Needed to make ULI RTC work.
217 * Device 1d has the first on-board memory BAR.
218 */
219
220 pci_hose_read_config_dword(hose, PCI_BDF(2, 0x1d, 0 ),
221 PCI_BASE_ADDRESS_1, &temp32);
Kumar Gala5af0fdd2008-12-02 16:08:39 -0600222 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
Kumar Galaad97dce2009-02-09 22:03:05 -0600223 void *p = pci_mem_to_virt(PCI_BDF(2, 0x1d, 0),
224 temp32, 4, 0);
225 debug(" uli1572 read to %p\n", p);
226 in_be32(p);
Kumar Gala129ba612008-08-12 11:13:08 -0500227 }
228 } else {
229 printf (" PCIE3: disabled\n");
230 }
231
232 }
233#else
234 gur->devdisr |= MPC85xx_DEVDISR_PCIE3; /* disable */
235#endif
236
237#ifdef CONFIG_PCIE2
238 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200239 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
Kumar Gala129ba612008-08-12 11:13:08 -0500240 struct pci_controller *hose = &pcie2_hose;
241 int pcie_ep = (host_agent == 2) || (host_agent == 4) ||
Ed Swarthout86be5102008-10-09 00:29:27 -0500242 (host_agent == 6) || (host_agent == 0);
Roy Zang9afc2ef2009-01-09 16:00:55 +0800243 int pcie_configured = (io_sel == 0x3) || (io_sel == 0x7);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500244 struct pci_region *r = hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500245
Roy Zang028e1162009-01-09 16:01:52 +0800246 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)){
Kumar Gala129ba612008-08-12 11:13:08 -0500247 printf ("\n PCIE2 connected to Slot 1 as %s (base address %x)",
248 pcie_ep ? "End Point" : "Root Complex",
249 (uint)pci);
250 if (pci->pme_msg_det) {
251 pci->pme_msg_det = 0xffffffff;
252 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
253 }
254 printf ("\n");
255
256 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500257 r += fsl_pci_setup_inbound_windows(r);
Kumar Gala129ba612008-08-12 11:13:08 -0500258
259 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500260 pci_set_region(r++,
Kumar Gala10795f42008-12-02 16:08:36 -0600261 CONFIG_SYS_PCIE2_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262 CONFIG_SYS_PCIE2_MEM_PHYS,
263 CONFIG_SYS_PCIE2_MEM_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500264 PCI_REGION_MEM);
265
266 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500267 pci_set_region(r++,
Kumar Gala5f91ef62008-12-02 16:08:37 -0600268 CONFIG_SYS_PCIE2_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269 CONFIG_SYS_PCIE2_IO_PHYS,
270 CONFIG_SYS_PCIE2_IO_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500271 PCI_REGION_IO);
272
Kumar Gala2dba0de2008-10-21 08:28:33 -0500273 hose->region_count = r - hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500274 hose->first_busno=first_free_busno;
275 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
276
277 fsl_pci_init(hose);
278 first_free_busno=hose->last_busno+1;
279 printf (" PCIE2 on bus %02x - %02x\n",
280 hose->first_busno,hose->last_busno);
281
282 } else {
283 printf (" PCIE2: disabled\n");
284 }
285
286 }
287#else
288 gur->devdisr |= MPC85xx_DEVDISR_PCIE2; /* disable */
289#endif
290#ifdef CONFIG_PCIE1
291 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200292 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
Kumar Gala129ba612008-08-12 11:13:08 -0500293 struct pci_controller *hose = &pcie1_hose;
Ed Swarthout86be5102008-10-09 00:29:27 -0500294 int pcie_ep = (host_agent <= 1) || (host_agent == 4) ||
Kumar Gala129ba612008-08-12 11:13:08 -0500295 (host_agent == 5);
Roy Zang9afc2ef2009-01-09 16:00:55 +0800296 int pcie_configured = (io_sel == 0x2) || (io_sel == 0x3) ||
297 (io_sel == 0x7) || (io_sel == 0xb) ||
298 (io_sel == 0xc) || (io_sel == 0xf);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500299 struct pci_region *r = hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500300
301 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
302 printf ("\n PCIE1 connected to Slot 2 as %s (base address %x)",
303 pcie_ep ? "End Point" : "Root Complex",
304 (uint)pci);
305 if (pci->pme_msg_det) {
306 pci->pme_msg_det = 0xffffffff;
307 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
308 }
309 printf ("\n");
310
311 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500312 r += fsl_pci_setup_inbound_windows(r);
Kumar Gala129ba612008-08-12 11:13:08 -0500313
314 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500315 pci_set_region(r++,
Kumar Gala10795f42008-12-02 16:08:36 -0600316 CONFIG_SYS_PCIE1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200317 CONFIG_SYS_PCIE1_MEM_PHYS,
318 CONFIG_SYS_PCIE1_MEM_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500319 PCI_REGION_MEM);
320
321 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500322 pci_set_region(r++,
Kumar Gala5f91ef62008-12-02 16:08:37 -0600323 CONFIG_SYS_PCIE1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324 CONFIG_SYS_PCIE1_IO_PHYS,
325 CONFIG_SYS_PCIE1_IO_SIZE,
Kumar Gala129ba612008-08-12 11:13:08 -0500326 PCI_REGION_IO);
327
Kumar Gala2dba0de2008-10-21 08:28:33 -0500328 hose->region_count = r - hose->regions;
Kumar Gala129ba612008-08-12 11:13:08 -0500329 hose->first_busno=first_free_busno;
330
331 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
332
333 fsl_pci_init(hose);
334
335 first_free_busno=hose->last_busno+1;
336 printf(" PCIE1 on bus %02x - %02x\n",
337 hose->first_busno,hose->last_busno);
338
339 } else {
340 printf (" PCIE1: disabled\n");
341 }
342
343 }
344#else
345 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
346#endif
347}
348#endif
349
350int board_early_init_r(void)
351{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200352 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
Kumar Gala129ba612008-08-12 11:13:08 -0500353 const u8 flash_esel = 2;
354
355 /*
356 * Remap Boot flash + PROMJET region to caching-inhibited
357 * so that flash can be erased properly.
358 */
359
Kumar Gala7c0d4a72008-09-22 14:11:11 -0500360 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk3cbd8232008-11-02 16:14:22 +0100361 flush_dcache();
362 invalidate_icache();
Kumar Gala129ba612008-08-12 11:13:08 -0500363
364 /* invalidate existing TLB entry for flash + promjet */
365 disable_tlb(flash_esel);
366
Kumar Galac953ddf2008-12-02 14:19:34 -0600367 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Gala129ba612008-08-12 11:13:08 -0500368 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
369 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
370
371 return 0;
372}
373
374#ifdef CONFIG_GET_CLK_FROM_ICS307
375/* decode S[0-2] to Output Divider (OD) */
376static unsigned char ics307_S_to_OD[] = {
377 10, 2, 8, 4, 5, 7, 3, 6
378};
379
380/* Calculate frequency being generated by ICS307-02 clock chip based upon
381 * the control bytes being programmed into it. */
382/* XXX: This function should probably go into a common library */
383static unsigned long
384ics307_clk_freq (unsigned char cw0, unsigned char cw1, unsigned char cw2)
385{
386 const unsigned long InputFrequency = CONFIG_ICS307_REFCLK_HZ;
387 unsigned long VDW = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1);
388 unsigned long RDW = cw2 & 0x7F;
389 unsigned long OD = ics307_S_to_OD[cw0 & 0x7];
390 unsigned long freq;
391
392 /* CLK1Frequency = InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD) */
393
394 /* cw0: C1 C0 TTL F1 F0 S2 S1 S0
395 * cw1: V8 V7 V6 V5 V4 V3 V2 V1
396 * cw2: V0 R6 R5 R4 R3 R2 R1 R0
397 *
398 * R6:R0 = Reference Divider Word (RDW)
399 * V8:V0 = VCO Divider Word (VDW)
400 * S2:S0 = Output Divider Select (OD)
401 * F1:F0 = Function of CLK2 Output
402 * TTL = duty cycle
403 * C1:C0 = internal load capacitance for cyrstal
404 */
405
406 /* Adding 1 to get a "nicely" rounded number, but this needs
407 * more tweaking to get a "properly" rounded number. */
408
409 freq = 1 + (InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD));
410
411 debug("ICS307: CW[0-2]: %02X %02X %02X => %u Hz\n", cw0, cw1, cw2,
412 freq);
413 return freq;
414}
415
416unsigned long get_board_sys_clk(ulong dummy)
417{
418 return ics307_clk_freq (
419 in8(PIXIS_BASE + PIXIS_VSYSCLK0),
420 in8(PIXIS_BASE + PIXIS_VSYSCLK1),
421 in8(PIXIS_BASE + PIXIS_VSYSCLK2)
422 );
423}
424
425unsigned long get_board_ddr_clk(ulong dummy)
426{
427 return ics307_clk_freq (
428 in8(PIXIS_BASE + PIXIS_VDDRCLK0),
429 in8(PIXIS_BASE + PIXIS_VDDRCLK1),
430 in8(PIXIS_BASE + PIXIS_VDDRCLK2)
431 );
432}
433#else
434unsigned long get_board_sys_clk(ulong dummy)
435{
436 u8 i;
437 ulong val = 0;
438
439 i = in8(PIXIS_BASE + PIXIS_SPD);
440 i &= 0x07;
441
442 switch (i) {
443 case 0:
444 val = 33333333;
445 break;
446 case 1:
447 val = 40000000;
448 break;
449 case 2:
450 val = 50000000;
451 break;
452 case 3:
453 val = 66666666;
454 break;
455 case 4:
456 val = 83333333;
457 break;
458 case 5:
459 val = 100000000;
460 break;
461 case 6:
462 val = 133333333;
463 break;
464 case 7:
465 val = 166666666;
466 break;
467 }
468
469 return val;
470}
471
472unsigned long get_board_ddr_clk(ulong dummy)
473{
474 u8 i;
475 ulong val = 0;
476
477 i = in8(PIXIS_BASE + PIXIS_SPD);
478 i &= 0x38;
479 i >>= 3;
480
481 switch (i) {
482 case 0:
483 val = 33333333;
484 break;
485 case 1:
486 val = 40000000;
487 break;
488 case 2:
489 val = 50000000;
490 break;
491 case 3:
492 val = 66666666;
493 break;
494 case 4:
495 val = 83333333;
496 break;
497 case 5:
498 val = 100000000;
499 break;
500 case 6:
501 val = 133333333;
502 break;
503 case 7:
504 val = 166666666;
505 break;
506 }
507 return val;
508}
509#endif
510
Liu Yu7e183ca2008-10-10 11:40:59 +0800511#ifdef CONFIG_TSEC_ENET
512int board_eth_init(bd_t *bis)
513{
514 struct tsec_info_struct tsec_info[4];
515 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
516 int num = 0;
517
518#ifdef CONFIG_TSEC1
519 SET_STD_TSEC_INFO(tsec_info[num], 1);
520 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
521 tsec_info[num].flags |= TSEC_SGMII;
522 num++;
523#endif
524#ifdef CONFIG_TSEC2
525 SET_STD_TSEC_INFO(tsec_info[num], 2);
526 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
527 tsec_info[num].flags |= TSEC_SGMII;
528 num++;
529#endif
530#ifdef CONFIG_TSEC3
531 SET_STD_TSEC_INFO(tsec_info[num], 3);
532 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
533 tsec_info[num].flags |= TSEC_SGMII;
534 num++;
535#endif
536#ifdef CONFIG_TSEC4
537 SET_STD_TSEC_INFO(tsec_info[num], 4);
538 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII4_DIS))
539 tsec_info[num].flags |= TSEC_SGMII;
540 num++;
541#endif
542
543 if (!num) {
544 printf("No TSECs initialized\n");
545
546 return 0;
547 }
548
Andy Flemingfeede8b2008-12-05 20:10:22 -0600549#ifdef CONFIG_FSL_SGMII_RISER
Liu Yu7e183ca2008-10-10 11:40:59 +0800550 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingfeede8b2008-12-05 20:10:22 -0600551#endif
Liu Yu7e183ca2008-10-10 11:40:59 +0800552
553 tsec_eth_init(bis, tsec_info, num);
554
555 return 0;
556}
557#endif
558
Kumar Gala129ba612008-08-12 11:13:08 -0500559#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500560extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
Wolfgang Denk3cbd8232008-11-02 16:14:22 +0100561 struct pci_controller *hose);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500562
Kumar Gala129ba612008-08-12 11:13:08 -0500563void ft_board_setup(void *blob, bd_t *bd)
564{
Kumar Galab6730512009-02-09 22:03:04 -0600565 phys_addr_t base;
566 phys_size_t size;
Kumar Gala129ba612008-08-12 11:13:08 -0500567
568 ft_cpu_setup(blob, bd);
569
570 base = getenv_bootm_low();
571 size = getenv_bootm_size();
572
573 fdt_fixup_memory(blob, (u64)base, (u64)size);
574
Kumar Gala129ba612008-08-12 11:13:08 -0500575#ifdef CONFIG_PCIE3
Kumar Gala2dba0de2008-10-21 08:28:33 -0500576 ft_fsl_pci_setup(blob, "pci0", &pcie3_hose);
Kumar Gala129ba612008-08-12 11:13:08 -0500577#endif
578#ifdef CONFIG_PCIE2
Kumar Gala2dba0de2008-10-21 08:28:33 -0500579 ft_fsl_pci_setup(blob, "pci1", &pcie2_hose);
Kumar Gala129ba612008-08-12 11:13:08 -0500580#endif
581#ifdef CONFIG_PCIE1
Kumar Gala2dba0de2008-10-21 08:28:33 -0500582 ft_fsl_pci_setup(blob, "pci2", &pcie1_hose);
Kumar Gala129ba612008-08-12 11:13:08 -0500583#endif
Andy Flemingfeede8b2008-12-05 20:10:22 -0600584#ifdef CONFIG_FSL_SGMII_RISER
585 fsl_sgmii_riser_fdt_fixup(blob);
586#endif
Kumar Gala129ba612008-08-12 11:13:08 -0500587}
588#endif
589
590#ifdef CONFIG_MP
591extern void cpu_mp_lmb_reserve(struct lmb *lmb);
592
593void board_lmb_reserve(struct lmb *lmb)
594{
595 cpu_mp_lmb_reserve(lmb);
596}
597#endif