blob: 7a02cdc5b980e412f137c3918f3f8826e075ab6e [file] [log] [blame]
robert lazarski2533e452007-12-21 10:39:27 -05001/*
2 * Copyright 2007
3 * Robert Lazarski, Instituto Atlantico, robertlazarski@gmail.com
4 *
5 * Copyright 2007 Freescale Semiconductor, Inc.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <command.h>
28#include <pci.h>
29#include <asm/processor.h>
30#include <asm/immap_85xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050031#include <asm/fsl_pci.h>
Kumar Galafe436d02008-08-26 23:14:14 -050032#include <asm/fsl_ddr_sdram.h>
robert lazarski2533e452007-12-21 10:39:27 -050033#include <asm/io.h>
Kumar Galafe436d02008-08-26 23:14:14 -050034#include <asm/mmu.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060035#include <spd_sdram.h>
robert lazarski2533e452007-12-21 10:39:27 -050036#include <miiphy.h>
37#include <libfdt.h>
38#include <fdt_support.h>
39
robert lazarski2533e452007-12-21 10:39:27 -050040long int fixed_sdram(void);
41
42int board_early_init_f (void)
43{
44 return 0;
45}
46
47int checkboard (void)
48{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020049 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
50 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
51 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
robert lazarski2533e452007-12-21 10:39:27 -050052
53 if ((uint)&gur->porpllsr != 0xe00e0000) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +020054 printf("immap size error %lx\n",(ulong)&gur->porpllsr);
robert lazarski2533e452007-12-21 10:39:27 -050055 }
56 printf ("Board: ATUM8548\n");
57
58 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
59 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
60 ecm->eedr = 0xffffffff; /* Clear ecm errors */
61 ecm->eeer = 0xffffffff; /* Enable ecm errors */
62
63 return 0;
64}
65
66#if !defined(CONFIG_SPD_EEPROM)
67/*************************************************************************
68 * fixed sdram init -- doesn't use serial presence detect.
69 ************************************************************************/
70long int fixed_sdram (void)
71{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020072 volatile ccsr_ddr_t *ddr= (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
robert lazarski2533e452007-12-21 10:39:27 -050073
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020074 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
75 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
76 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
77 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
78 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
79 ddr->sdram_mode = CONFIG_SYS_DDR_MODE;
80 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
robert lazarski2533e452007-12-21 10:39:27 -050081 #if defined (CONFIG_DDR_ECC)
82 ddr->err_disable = 0x0000000D;
83 ddr->err_sbe = 0x00ff0000;
84 #endif
85 asm("sync;isync;msync");
86 udelay(500);
87 #if defined (CONFIG_DDR_ECC)
88 /* Enable ECC checking */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020089 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
robert lazarski2533e452007-12-21 10:39:27 -050090 #else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
robert lazarski2533e452007-12-21 10:39:27 -050092 #endif
93 asm("sync; isync; msync");
94 udelay(500);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
robert lazarski2533e452007-12-21 10:39:27 -050096}
97#endif /* !defined(CONFIG_SPD_EEPROM) */
98
Becky Brucebd99ae72008-06-09 16:03:40 -050099phys_size_t
robert lazarski2533e452007-12-21 10:39:27 -0500100initdram(int board_type)
101{
102 long dram_size = 0;
103
104 puts("Initializing\n");
105
106#if defined(CONFIG_SPD_EEPROM)
Kumar Galafe436d02008-08-26 23:14:14 -0500107 puts("fsl_ddr_sdram\n");
108 dram_size = fsl_ddr_sdram();
109 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
110 dram_size *= 0x100000;
robert lazarski2533e452007-12-21 10:39:27 -0500111#else
112 puts("fixed_sdram\n");
113 dram_size = fixed_sdram ();
114#endif
115
robert lazarski2533e452007-12-21 10:39:27 -0500116 puts(" DDR: ");
117 return dram_size;
118}
119
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200120#if defined(CONFIG_SYS_DRAM_TEST)
robert lazarski2533e452007-12-21 10:39:27 -0500121int
122testdram(void)
123{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200124 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
125 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
robert lazarski2533e452007-12-21 10:39:27 -0500126 uint *p;
127
128 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129 CONFIG_SYS_MEMTEST_START,
130 CONFIG_SYS_MEMTEST_END);
robert lazarski2533e452007-12-21 10:39:27 -0500131
132 printf("DRAM test phase 1:\n");
133 for (p = pstart; p < pend; p++) {
134 printf ("DRAM test attempting to write 0xaaaaaaaa at: %08x\n", (uint) p);
135 *p = 0xaaaaaaaa;
Wolfgang Denk545b06a2008-01-10 00:55:14 +0100136 }
robert lazarski2533e452007-12-21 10:39:27 -0500137
138 for (p = pstart; p < pend; p++) {
139 if (*p != 0xaaaaaaaa) {
140 printf ("DRAM test fails at: %08x\n", (uint) p);
141 return 1;
142 }
143 }
144
145 printf("DRAM test phase 2:\n");
146 for (p = pstart; p < pend; p++)
147 *p = 0x55555555;
148
149 for (p = pstart; p < pend; p++) {
150 if (*p != 0x55555555) {
151 printf ("DRAM test fails at: %08x\n", (uint) p);
152 return 1;
153 }
154 }
155
156 printf("DRAM test passed.\n");
157 return 0;
158}
159#endif
160
161#ifdef CONFIG_PCI1
162static struct pci_controller pci1_hose;
163#endif
164
165#ifdef CONFIG_PCI2
166static struct pci_controller pci2_hose;
167#endif
168
169#ifdef CONFIG_PCIE1
170static struct pci_controller pcie1_hose;
171#endif
172
173int first_free_busno=0;
174
175void
176pci_init_board(void)
177{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200178 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
robert lazarski2533e452007-12-21 10:39:27 -0500179
180 uint devdisr = gur->devdisr;
181 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
182 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
183
184 debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
185 devdisr, io_sel, host_agent);
186
Wolfgang Denk545b06a2008-01-10 00:55:14 +0100187 /* explicitly set 'Clock out select register' to echo SYSCLK input to our CPLD */
robert lazarski2533e452007-12-21 10:39:27 -0500188 gur->clkocr |= MPC85xx_ATUM_CLKOCR;
189
190 if (io_sel & 1) {
191 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
192 printf (" eTSEC1 is in sgmii mode.\n");
193 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
194 printf (" eTSEC2 is in sgmii mode.\n");
195 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
196 printf (" eTSEC3 is in sgmii mode.\n");
197 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII4_DIS))
198 printf (" eTSEC4 is in sgmii mode.\n");
199 }
200
201#ifdef CONFIG_PCIE1
202 {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200203 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
robert lazarski2533e452007-12-21 10:39:27 -0500204 struct pci_controller *hose = &pcie1_hose;
205 int pcie_ep = (host_agent == 5);
206 int pcie_configured = io_sel & 6;
Kumar Galac10a0c42008-10-21 08:28:33 -0500207 struct pci_region *r = hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500208
209 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
210 printf ("\n PCIE1 connected to slot as %s (base address %x)",
211 pcie_ep ? "End Point" : "Root Complex",
212 (uint)pci);
213 if (pci->pme_msg_det) {
214 pci->pme_msg_det = 0xffffffff;
215 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
216 }
217 printf ("\n");
218
219 /* inbound */
Kumar Galac10a0c42008-10-21 08:28:33 -0500220 r += fsl_pci_setup_inbound_windows(r);
robert lazarski2533e452007-12-21 10:39:27 -0500221
222 /* outbound memory */
Kumar Galac10a0c42008-10-21 08:28:33 -0500223 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200224 CONFIG_SYS_PCIE1_MEM_BASE,
225 CONFIG_SYS_PCIE1_MEM_PHYS,
226 CONFIG_SYS_PCIE1_MEM_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500227 PCI_REGION_MEM);
228
229 /* outbound io */
Kumar Galac10a0c42008-10-21 08:28:33 -0500230 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200231 CONFIG_SYS_PCIE1_IO_BASE,
232 CONFIG_SYS_PCIE1_IO_PHYS,
233 CONFIG_SYS_PCIE1_IO_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500234 PCI_REGION_IO);
235
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200236#ifdef CONFIG_SYS_PCIE1_MEM_BASE2
robert lazarski2533e452007-12-21 10:39:27 -0500237 /* outbound memory */
Kumar Galac10a0c42008-10-21 08:28:33 -0500238 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239 CONFIG_SYS_PCIE1_MEM_BASE2,
240 CONFIG_SYS_PCIE1_MEM_PHYS2,
241 CONFIG_SYS_PCIE1_MEM_SIZE2,
robert lazarski2533e452007-12-21 10:39:27 -0500242 PCI_REGION_MEM);
robert lazarski2533e452007-12-21 10:39:27 -0500243#endif
Kumar Galac10a0c42008-10-21 08:28:33 -0500244 hose->region_count = r - hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500245 hose->first_busno=first_free_busno;
246
Kumar Gala65e198d2009-08-03 20:44:55 -0500247 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
robert lazarski2533e452007-12-21 10:39:27 -0500248
249 first_free_busno=hose->last_busno+1;
250 printf(" PCIE1 on bus %02x - %02x\n",
251 hose->first_busno,hose->last_busno);
252
253 } else {
254 printf (" PCIE1: disabled\n");
255 }
256
257 }
258#else
259 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
260#endif
261
262#ifdef CONFIG_PCI1
263{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200264 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
robert lazarski2533e452007-12-21 10:39:27 -0500265 struct pci_controller *hose = &pci1_hose;
Kumar Galac10a0c42008-10-21 08:28:33 -0500266 struct pci_region *r = hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500267
268 uint pci_agent = (host_agent == 6);
269 uint pci_speed = 33333000; /*get_clock_freq (); PCI PSPEED in [4:5] */
270 uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
271 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
272 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
273
274 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
275 printf ("\n PCI1: %d bit, %s MHz, %s, %s, %s (base address %x)\n",
276 (pci_32) ? 32 : 64,
277 (pci_speed == 33333000) ? "33" :
278 (pci_speed == 66666000) ? "66" : "unknown",
279 pci_clk_sel ? "sync" : "async",
280 pci_agent ? "agent" : "host",
281 pci_arb ? "arbiter" : "external-arbiter",
282 (uint)pci
283 );
284
285 /* inbound */
Kumar Galac10a0c42008-10-21 08:28:33 -0500286 r += fsl_pci_setup_inbound_windows(r);
robert lazarski2533e452007-12-21 10:39:27 -0500287
288 /* outbound memory */
Kumar Galac10a0c42008-10-21 08:28:33 -0500289 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200290 CONFIG_SYS_PCI1_MEM_BASE,
291 CONFIG_SYS_PCI1_MEM_PHYS,
292 CONFIG_SYS_PCI1_MEM_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500293 PCI_REGION_MEM);
294
295 /* outbound io */
Kumar Galac10a0c42008-10-21 08:28:33 -0500296 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200297 CONFIG_SYS_PCI1_IO_BASE,
298 CONFIG_SYS_PCI1_IO_PHYS,
299 CONFIG_SYS_PCI1_IO_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500300 PCI_REGION_IO);
Kumar Galac10a0c42008-10-21 08:28:33 -0500301 hose->region_count = r - hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500302 hose->first_busno=first_free_busno;
robert lazarski2533e452007-12-21 10:39:27 -0500303
Kumar Gala65e198d2009-08-03 20:44:55 -0500304 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
robert lazarski2533e452007-12-21 10:39:27 -0500305 first_free_busno=hose->last_busno+1;
306 printf ("PCI1 on bus %02x - %02x\n",
307 hose->first_busno,hose->last_busno);
308 } else {
309 printf (" PCI1: disabled\n");
310 }
311}
312#else
313 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
314#endif
315
316#ifdef CONFIG_PCI2
317{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200318 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
robert lazarski2533e452007-12-21 10:39:27 -0500319 struct pci_controller *hose = &pci2_hose;
Kumar Galac10a0c42008-10-21 08:28:33 -0500320 struct pci_region *r = hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500321
322 if (!(devdisr & MPC85xx_DEVDISR_PCI2)) {
Kumar Galac10a0c42008-10-21 08:28:33 -0500323 r += fsl_pci_setup_inbound_windows(r);
robert lazarski2533e452007-12-21 10:39:27 -0500324
Kumar Galac10a0c42008-10-21 08:28:33 -0500325 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200326 CONFIG_SYS_PCI2_MEM_BASE,
327 CONFIG_SYS_PCI2_MEM_PHYS,
328 CONFIG_SYS_PCI2_MEM_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500329 PCI_REGION_MEM);
330
Kumar Galac10a0c42008-10-21 08:28:33 -0500331 pci_set_region(r++,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200332 CONFIG_SYS_PCI2_IO_BASE,
333 CONFIG_SYS_PCI2_IO_PHYS,
334 CONFIG_SYS_PCI2_IO_SIZE,
robert lazarski2533e452007-12-21 10:39:27 -0500335 PCI_REGION_IO);
Kumar Galac10a0c42008-10-21 08:28:33 -0500336 hose->region_count = r - hose->regions;
robert lazarski2533e452007-12-21 10:39:27 -0500337 hose->first_busno=first_free_busno;
robert lazarski2533e452007-12-21 10:39:27 -0500338
Kumar Gala65e198d2009-08-03 20:44:55 -0500339 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
robert lazarski2533e452007-12-21 10:39:27 -0500340 first_free_busno=hose->last_busno+1;
341 printf ("PCI2 on bus %02x - %02x\n",
342 hose->first_busno,hose->last_busno);
343 } else {
344 printf (" PCI2: disabled\n");
345 }
346}
347#else
348 gur->devdisr |= MPC85xx_DEVDISR_PCI2;
349#endif
350}
351
352
353int last_stage_init(void)
354{
Wolfgang Denk545b06a2008-01-10 00:55:14 +0100355 int ic = icache_status ();
robert lazarski2533e452007-12-21 10:39:27 -0500356 printf ("icache_status: %d\n", ic);
357 return 0;
358}
359
360#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Galac10a0c42008-10-21 08:28:33 -0500361void ft_board_setup(void *blob, bd_t *bd)
robert lazarski2533e452007-12-21 10:39:27 -0500362{
robert lazarski2533e452007-12-21 10:39:27 -0500363 ft_cpu_setup(blob, bd);
364
robert lazarski2533e452007-12-21 10:39:27 -0500365#ifdef CONFIG_PCI1
Kumar Galac10a0c42008-10-21 08:28:33 -0500366 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
robert lazarski2533e452007-12-21 10:39:27 -0500367#endif
368#ifdef CONFIG_PCI2
Kumar Galac10a0c42008-10-21 08:28:33 -0500369 ft_fsl_pci_setup(blob, "pci1", &pci2_hose);
robert lazarski2533e452007-12-21 10:39:27 -0500370#endif
371#ifdef CONFIG_PCIE1
Kumar Galac10a0c42008-10-21 08:28:33 -0500372 ft_fsl_pci_setup(blob, "pci2", &pcie1_hose);
robert lazarski2533e452007-12-21 10:39:27 -0500373#endif
robert lazarski2533e452007-12-21 10:39:27 -0500374}
375#endif