blob: 545d869fcc93e537bc852549473f3870beaf4b8f [file] [log] [blame]
Jon Loeliger25d83d72007-04-11 16:51:02 -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 */
22
23#include <common.h>
24#include <command.h>
Ed Swarthout837f1ba2007-07-27 01:50:51 -050025#include <pci.h>
Jon Loeliger25d83d72007-04-11 16:51:02 -050026#include <asm/processor.h>
Kumar Gala1167a2f2008-08-26 08:02:30 -050027#include <asm/mmu.h>
Jon Loeliger25d83d72007-04-11 16:51:02 -050028#include <asm/immap_85xx.h>
Ed Swarthout837f1ba2007-07-27 01:50:51 -050029#include <asm/immap_fsl_pci.h>
Kumar Gala1167a2f2008-08-26 08:02:30 -050030#include <asm/fsl_ddr_sdram.h>
Kumar Gala56a92702007-08-30 16:18:18 -050031#include <asm/io.h>
Jon Loeliger25d83d72007-04-11 16:51:02 -050032#include <miiphy.h>
Kumar Galaaddce572007-11-26 17:12:24 -060033#include <libfdt.h>
34#include <fdt_support.h>
Andy Fleming216f2a72008-08-31 16:33:29 -050035#include <tsec.h>
Ben Warren0b252f52008-08-31 21:41:08 -070036#include <netdev.h>
Jon Loeliger25d83d72007-04-11 16:51:02 -050037
38#include "../common/pixis.h"
Andy Fleming216f2a72008-08-31 16:33:29 -050039#include "../common/sgmii_riser.h"
Jon Loeliger25d83d72007-04-11 16:51:02 -050040
Jon Loeliger25d83d72007-04-11 16:51:02 -050041#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
42extern void ddr_enable_ecc(unsigned int dram_size);
43#endif
44
Jon Loeliger25d83d72007-04-11 16:51:02 -050045int checkboard (void)
46{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
48 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
49 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
Jon Loeliger25d83d72007-04-11 16:51:02 -050050
Wolfgang Denk2f152782007-05-05 18:23:11 +020051 if ((uint)&gur->porpllsr != 0xe00e0000) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +020052 printf("immap size error %lx\n",(ulong)&gur->porpllsr);
Jon Loeliger25d83d72007-04-11 16:51:02 -050053 }
Kumar Galae5852782008-07-14 14:07:01 -050054 printf ("Board: MPC8544DS, System ID: 0x%02x, "
55 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
56 in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
57 in8(PIXIS_BASE + PIXIS_PVER));
Jon Loeliger25d83d72007-04-11 16:51:02 -050058
Ed Swarthout837f1ba2007-07-27 01:50:51 -050059 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
60 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
61 ecm->eedr = 0xffffffff; /* Clear ecm errors */
62 ecm->eeer = 0xffffffff; /* Enable ecm errors */
63
Jon Loeliger25d83d72007-04-11 16:51:02 -050064 return 0;
65}
66
Becky Bruce9973e3c2008-06-09 16:03:40 -050067phys_size_t
Jon Loeliger25d83d72007-04-11 16:51:02 -050068initdram(int board_type)
69{
70 long dram_size = 0;
71
72 puts("Initializing\n");
73
Kumar Gala1167a2f2008-08-26 08:02:30 -050074 dram_size = fsl_ddr_sdram();
75
76 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
77
78 dram_size *= 0x100000;
Jon Loeliger25d83d72007-04-11 16:51:02 -050079
80#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
81 /*
82 * Initialize and enable DDR ECC.
83 */
84 ddr_enable_ecc(dram_size);
85#endif
86 puts(" DDR: ");
87 return dram_size;
88}
89
Ed Swarthout837f1ba2007-07-27 01:50:51 -050090#ifdef CONFIG_PCI1
91static struct pci_controller pci1_hose;
92#endif
93
94#ifdef CONFIG_PCIE1
95static struct pci_controller pcie1_hose;
96#endif
97
98#ifdef CONFIG_PCIE2
99static struct pci_controller pcie2_hose;
100#endif
101
102#ifdef CONFIG_PCIE3
103static struct pci_controller pcie3_hose;
104#endif
105
Kumar Gala2dba0de2008-10-21 08:28:33 -0500106extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
107extern void fsl_pci_init(struct pci_controller *hose);
108
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500109int first_free_busno=0;
110
111void
112pci_init_board(void)
113{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500115 uint devdisr = gur->devdisr;
116 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
117 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
118
119 debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
120 devdisr, io_sel, host_agent);
121
122 if (io_sel & 1) {
123 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
124 printf (" eTSEC1 is in sgmii mode.\n");
125 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
126 printf (" eTSEC3 is in sgmii mode.\n");
127 }
128
129#ifdef CONFIG_PCIE3
130{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500132 struct pci_controller *hose = &pcie3_hose;
Ed Swarthoutf97abbf2008-04-25 01:08:32 -0500133 int pcie_ep = (host_agent == 1);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500134 int pcie_configured = io_sel >= 1;
Kumar Gala2dba0de2008-10-21 08:28:33 -0500135 struct pci_region *r = hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500136
137 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
138 printf ("\n PCIE3 connected to ULI as %s (base address %x)",
139 pcie_ep ? "End Point" : "Root Complex",
140 (uint)pci);
141 if (pci->pme_msg_det) {
142 pci->pme_msg_det = 0xffffffff;
143 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
144 }
145 printf ("\n");
146
147 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500148 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500149
150 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500151 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 CONFIG_SYS_PCIE3_MEM_BASE,
153 CONFIG_SYS_PCIE3_MEM_PHYS,
154 CONFIG_SYS_PCIE3_MEM_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500155 PCI_REGION_MEM);
156
157 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500158 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200159 CONFIG_SYS_PCIE3_IO_BASE,
160 CONFIG_SYS_PCIE3_IO_PHYS,
161 CONFIG_SYS_PCIE3_IO_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500162 PCI_REGION_IO);
163
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200164#ifdef CONFIG_SYS_PCIE3_MEM_BASE2
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500165 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500166 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167 CONFIG_SYS_PCIE3_MEM_BASE2,
168 CONFIG_SYS_PCIE3_MEM_PHYS2,
169 CONFIG_SYS_PCIE3_MEM_SIZE2,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500170 PCI_REGION_MEM);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500171#endif
Kumar Gala2dba0de2008-10-21 08:28:33 -0500172 hose->region_count = r - hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500173 hose->first_busno=first_free_busno;
174 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
175
176 fsl_pci_init(hose);
177
178 first_free_busno=hose->last_busno+1;
179 printf (" PCIE3 on bus %02x - %02x\n",
180 hose->first_busno,hose->last_busno);
181
Kumar Gala56a92702007-08-30 16:18:18 -0500182 /*
183 * Activate ULI1575 legacy chip by performing a fake
184 * memory access. Needed to make ULI RTC work.
185 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200186 in_be32((u32 *)CONFIG_SYS_PCIE3_MEM_BASE);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500187 } else {
188 printf (" PCIE3: disabled\n");
189 }
190
191 }
192#else
193 gur->devdisr |= MPC85xx_DEVDISR_PCIE3; /* disable */
194#endif
195
196#ifdef CONFIG_PCIE1
197 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500199 struct pci_controller *hose = &pcie1_hose;
200 int pcie_ep = (host_agent == 5);
201 int pcie_configured = io_sel & 6;
Kumar Gala2dba0de2008-10-21 08:28:33 -0500202 struct pci_region *r = hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500203
204 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
205 printf ("\n PCIE1 connected to Slot2 as %s (base address %x)",
206 pcie_ep ? "End Point" : "Root Complex",
207 (uint)pci);
208 if (pci->pme_msg_det) {
209 pci->pme_msg_det = 0xffffffff;
210 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
211 }
212 printf ("\n");
213
214 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500215 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500216
217 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500218 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200219 CONFIG_SYS_PCIE1_MEM_BASE,
220 CONFIG_SYS_PCIE1_MEM_PHYS,
221 CONFIG_SYS_PCIE1_MEM_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500222 PCI_REGION_MEM);
223
224 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500225 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200226 CONFIG_SYS_PCIE1_IO_BASE,
227 CONFIG_SYS_PCIE1_IO_PHYS,
228 CONFIG_SYS_PCIE1_IO_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500229 PCI_REGION_IO);
230
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231#ifdef CONFIG_SYS_PCIE1_MEM_BASE2
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500232 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500233 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200234 CONFIG_SYS_PCIE1_MEM_BASE2,
235 CONFIG_SYS_PCIE1_MEM_PHYS2,
236 CONFIG_SYS_PCIE1_MEM_SIZE2,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500237 PCI_REGION_MEM);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500238#endif
Kumar Gala2dba0de2008-10-21 08:28:33 -0500239 hose->region_count = r - hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500240 hose->first_busno=first_free_busno;
241
242 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
243
244 fsl_pci_init(hose);
245
246 first_free_busno=hose->last_busno+1;
247 printf(" PCIE1 on bus %02x - %02x\n",
248 hose->first_busno,hose->last_busno);
249
250 } else {
251 printf (" PCIE1: disabled\n");
252 }
253
254 }
255#else
256 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
257#endif
258
259#ifdef CONFIG_PCIE2
260 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200261 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500262 struct pci_controller *hose = &pcie2_hose;
263 int pcie_ep = (host_agent == 3);
264 int pcie_configured = io_sel & 4;
Kumar Gala2dba0de2008-10-21 08:28:33 -0500265 struct pci_region *r = hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500266
267 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
268 printf ("\n PCIE2 connected to Slot 1 as %s (base address %x)",
269 pcie_ep ? "End Point" : "Root Complex",
270 (uint)pci);
271 if (pci->pme_msg_det) {
272 pci->pme_msg_det = 0xffffffff;
273 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
274 }
275 printf ("\n");
276
277 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500278 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500279
280 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500281 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200282 CONFIG_SYS_PCIE2_MEM_BASE,
283 CONFIG_SYS_PCIE2_MEM_PHYS,
284 CONFIG_SYS_PCIE2_MEM_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500285 PCI_REGION_MEM);
286
287 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500288 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200289 CONFIG_SYS_PCIE2_IO_BASE,
290 CONFIG_SYS_PCIE2_IO_PHYS,
291 CONFIG_SYS_PCIE2_IO_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500292 PCI_REGION_IO);
293
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#ifdef CONFIG_SYS_PCIE2_MEM_BASE2
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500295 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500296 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200297 CONFIG_SYS_PCIE2_MEM_BASE2,
298 CONFIG_SYS_PCIE2_MEM_PHYS2,
299 CONFIG_SYS_PCIE2_MEM_SIZE2,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500300 PCI_REGION_MEM);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500301#endif
Kumar Gala2dba0de2008-10-21 08:28:33 -0500302 hose->region_count = r - hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500303 hose->first_busno=first_free_busno;
304 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
305
306 fsl_pci_init(hose);
307 first_free_busno=hose->last_busno+1;
308 printf (" PCIE2 on bus %02x - %02x\n",
309 hose->first_busno,hose->last_busno);
310
311 } else {
312 printf (" PCIE2: disabled\n");
313 }
314
315 }
316#else
317 gur->devdisr |= MPC85xx_DEVDISR_PCIE2; /* disable */
318#endif
319
320
321#ifdef CONFIG_PCI1
322{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200323 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500324 struct pci_controller *hose = &pci1_hose;
Kumar Gala2dba0de2008-10-21 08:28:33 -0500325 struct pci_region *r = hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500326
327 uint pci_agent = (host_agent == 6);
328 uint pci_speed = 66666000; /*get_clock_freq (); PCI PSPEED in [4:5] */
329 uint pci_32 = 1;
330 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
331 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
332
333
334 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
335 printf ("\n PCI: %d bit, %s MHz, %s, %s, %s (base address %x)\n",
336 (pci_32) ? 32 : 64,
337 (pci_speed == 33333000) ? "33" :
338 (pci_speed == 66666000) ? "66" : "unknown",
339 pci_clk_sel ? "sync" : "async",
340 pci_agent ? "agent" : "host",
341 pci_arb ? "arbiter" : "external-arbiter",
342 (uint)pci
343 );
344
345 /* inbound */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500346 r += fsl_pci_setup_inbound_windows(r);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500347
348 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500349 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200350 CONFIG_SYS_PCI1_MEM_BASE,
351 CONFIG_SYS_PCI1_MEM_PHYS,
352 CONFIG_SYS_PCI1_MEM_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500353 PCI_REGION_MEM);
354
355 /* outbound io */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500356 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200357 CONFIG_SYS_PCI1_IO_BASE,
358 CONFIG_SYS_PCI1_IO_PHYS,
359 CONFIG_SYS_PCI1_IO_SIZE,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500360 PCI_REGION_IO);
Kumar Gala2dba0de2008-10-21 08:28:33 -0500361
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200362#ifdef CONFIG_SYS_PCIE3_MEM_BASE2
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500363 /* outbound memory */
Kumar Gala2dba0de2008-10-21 08:28:33 -0500364 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200365 CONFIG_SYS_PCIE3_MEM_BASE2,
366 CONFIG_SYS_PCIE3_MEM_PHYS2,
367 CONFIG_SYS_PCIE3_MEM_SIZE2,
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500368 PCI_REGION_MEM);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500369#endif
Kumar Gala2dba0de2008-10-21 08:28:33 -0500370 hose->region_count = r - hose->regions;
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500371 hose->first_busno=first_free_busno;
372 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
373
374 fsl_pci_init(hose);
375 first_free_busno=hose->last_busno+1;
376 printf ("PCI on bus %02x - %02x\n",
377 hose->first_busno,hose->last_busno);
378 } else {
379 printf (" PCI: disabled\n");
380 }
381}
382#else
383 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
384#endif
385}
386
387
Jon Loeliger25d83d72007-04-11 16:51:02 -0500388int last_stage_init(void)
389{
390 return 0;
391}
392
393
394unsigned long
395get_board_sys_clk(ulong dummy)
396{
397 u8 i, go_bit, rd_clks;
398 ulong val = 0;
399
400 go_bit = in8(PIXIS_BASE + PIXIS_VCTL);
401 go_bit &= 0x01;
402
403 rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0);
404 rd_clks &= 0x1C;
405
406 /*
407 * Only if both go bit and the SCLK bit in VCFGEN0 are set
408 * should we be using the AUX register. Remember, we also set the
409 * GO bit to boot from the alternate bank on the on-board flash
410 */
411
412 if (go_bit) {
413 if (rd_clks == 0x1c)
414 i = in8(PIXIS_BASE + PIXIS_AUX);
415 else
416 i = in8(PIXIS_BASE + PIXIS_SPD);
417 } else {
418 i = in8(PIXIS_BASE + PIXIS_SPD);
419 }
420
421 i &= 0x07;
422
423 switch (i) {
424 case 0:
425 val = 33333333;
426 break;
427 case 1:
428 val = 40000000;
429 break;
430 case 2:
431 val = 50000000;
432 break;
433 case 3:
434 val = 66666666;
435 break;
436 case 4:
437 val = 83000000;
438 break;
439 case 5:
440 val = 100000000;
441 break;
442 case 6:
443 val = 133333333;
444 break;
445 case 7:
446 val = 166666666;
447 break;
448 }
449
450 return val;
451}
452
Andy Fleming216f2a72008-08-31 16:33:29 -0500453int board_eth_init(bd_t *bis)
454{
Ben Warren0b252f52008-08-31 21:41:08 -0700455#ifdef CONFIG_TSEC_ENET
Andy Fleming216f2a72008-08-31 16:33:29 -0500456 struct tsec_info_struct tsec_info[2];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200457 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Andy Fleming216f2a72008-08-31 16:33:29 -0500458 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
459 int num = 0;
460
461#ifdef CONFIG_TSEC1
462 SET_STD_TSEC_INFO(tsec_info[num], 1);
463 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
464 tsec_info[num].flags |= TSEC_SGMII;
465 num++;
466#endif
467#ifdef CONFIG_TSEC3
468 SET_STD_TSEC_INFO(tsec_info[num], 3);
469 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
470 tsec_info[num].flags |= TSEC_SGMII;
471 num++;
472#endif
473
474 if (!num) {
475 printf("No TSECs initialized\n");
476
477 return 0;
478 }
479
480 if (io_sel & 1)
481 fsl_sgmii_riser_init(tsec_info, num);
482
483
484 tsec_eth_init(bis, tsec_info, num);
Andy Fleming216f2a72008-08-31 16:33:29 -0500485#endif
Ben Warren0b252f52008-08-31 21:41:08 -0700486 return pci_eth_init(bis);
487}
Andy Fleming216f2a72008-08-31 16:33:29 -0500488
Kumar Galaaddce572007-11-26 17:12:24 -0600489#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500490extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
Wolfgang Denk3cbd8232008-11-02 16:14:22 +0100491 struct pci_controller *hose);
Kumar Galaaddce572007-11-26 17:12:24 -0600492
Kumar Gala2dba0de2008-10-21 08:28:33 -0500493void ft_board_setup(void *blob, bd_t *bd)
Jon Loeliger25d83d72007-04-11 16:51:02 -0500494{
Wolfgang Denk2f152782007-05-05 18:23:11 +0200495 ft_cpu_setup(blob, bd);
Jon Loeliger25d83d72007-04-11 16:51:02 -0500496
Kumar Gala2dba0de2008-10-21 08:28:33 -0500497
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500498#ifdef CONFIG_PCI1
Kumar Gala2dba0de2008-10-21 08:28:33 -0500499 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500500#endif
501#ifdef CONFIG_PCIE2
Kumar Gala2dba0de2008-10-21 08:28:33 -0500502 ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
Kumar Galaaddce572007-11-26 17:12:24 -0600503#endif
504#ifdef CONFIG_PCIE1
Kumar Gala2dba0de2008-10-21 08:28:33 -0500505 ft_fsl_pci_setup(blob, "pci2", &pcie3_hose);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500506#endif
507#ifdef CONFIG_PCIE3
Kumar Gala2dba0de2008-10-21 08:28:33 -0500508 ft_fsl_pci_setup(blob, "pci3", &pcie2_hose);
Ed Swarthout837f1ba2007-07-27 01:50:51 -0500509#endif
Jon Loeliger25d83d72007-04-11 16:51:02 -0500510}
511#endif