blob: 2ef19ce696467d0edff6dab1e5738a0e9b7b551b [file] [log] [blame]
robert lazarskib964e932007-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>
31#include <asm/immap_fsl_pci.h>
Kumar Galaa947e4c2008-08-26 23:14:14 -050032#include <asm/fsl_ddr_sdram.h>
robert lazarskib964e932007-12-21 10:39:27 -050033#include <asm/io.h>
Kumar Galaa947e4c2008-08-26 23:14:14 -050034#include <asm/mmu.h>
Jon Loeligera30a5492008-03-04 10:03:03 -060035#include <spd_sdram.h>
robert lazarskib964e932007-12-21 10:39:27 -050036#include <miiphy.h>
37#include <libfdt.h>
38#include <fdt_support.h>
39
40#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
41extern void ddr_enable_ecc(unsigned int dram_size);
42#endif
43
robert lazarskib964e932007-12-21 10:39:27 -050044long int fixed_sdram(void);
45
46int board_early_init_f (void)
47{
48 return 0;
49}
50
51int checkboard (void)
52{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
54 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
55 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
robert lazarskib964e932007-12-21 10:39:27 -050056
57 if ((uint)&gur->porpllsr != 0xe00e0000) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +020058 printf("immap size error %lx\n",(ulong)&gur->porpllsr);
robert lazarskib964e932007-12-21 10:39:27 -050059 }
60 printf ("Board: ATUM8548\n");
61
62 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
63 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
64 ecm->eedr = 0xffffffff; /* Clear ecm errors */
65 ecm->eeer = 0xffffffff; /* Enable ecm errors */
66
67 return 0;
68}
69
70#if !defined(CONFIG_SPD_EEPROM)
71/*************************************************************************
72 * fixed sdram init -- doesn't use serial presence detect.
73 ************************************************************************/
74long int fixed_sdram (void)
75{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 volatile ccsr_ddr_t *ddr= (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
robert lazarskib964e932007-12-21 10:39:27 -050077
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
79 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
80 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
81 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
82 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
83 ddr->sdram_mode = CONFIG_SYS_DDR_MODE;
84 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
robert lazarskib964e932007-12-21 10:39:27 -050085 #if defined (CONFIG_DDR_ECC)
86 ddr->err_disable = 0x0000000D;
87 ddr->err_sbe = 0x00ff0000;
88 #endif
89 asm("sync;isync;msync");
90 udelay(500);
91 #if defined (CONFIG_DDR_ECC)
92 /* Enable ECC checking */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
robert lazarskib964e932007-12-21 10:39:27 -050094 #else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
robert lazarskib964e932007-12-21 10:39:27 -050096 #endif
97 asm("sync; isync; msync");
98 udelay(500);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
robert lazarskib964e932007-12-21 10:39:27 -0500100}
101#endif /* !defined(CONFIG_SPD_EEPROM) */
102
Becky Bruce9973e3c2008-06-09 16:03:40 -0500103phys_size_t
robert lazarskib964e932007-12-21 10:39:27 -0500104initdram(int board_type)
105{
106 long dram_size = 0;
107
108 puts("Initializing\n");
109
110#if defined(CONFIG_SPD_EEPROM)
Kumar Galaa947e4c2008-08-26 23:14:14 -0500111 puts("fsl_ddr_sdram\n");
112 dram_size = fsl_ddr_sdram();
113 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
114 dram_size *= 0x100000;
robert lazarskib964e932007-12-21 10:39:27 -0500115#else
116 puts("fixed_sdram\n");
117 dram_size = fixed_sdram ();
118#endif
119
120#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
121 /*
122 * Initialize and enable DDR ECC.
123 */
124 ddr_enable_ecc(dram_size);
125#endif
126 puts(" DDR: ");
127 return dram_size;
128}
129
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200130#if defined(CONFIG_SYS_DRAM_TEST)
robert lazarskib964e932007-12-21 10:39:27 -0500131int
132testdram(void)
133{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
135 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
robert lazarskib964e932007-12-21 10:39:27 -0500136 uint *p;
137
138 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139 CONFIG_SYS_MEMTEST_START,
140 CONFIG_SYS_MEMTEST_END);
robert lazarskib964e932007-12-21 10:39:27 -0500141
142 printf("DRAM test phase 1:\n");
143 for (p = pstart; p < pend; p++) {
144 printf ("DRAM test attempting to write 0xaaaaaaaa at: %08x\n", (uint) p);
145 *p = 0xaaaaaaaa;
Wolfgang Denkd3a65322008-01-10 00:55:14 +0100146 }
robert lazarskib964e932007-12-21 10:39:27 -0500147
148 for (p = pstart; p < pend; p++) {
149 if (*p != 0xaaaaaaaa) {
150 printf ("DRAM test fails at: %08x\n", (uint) p);
151 return 1;
152 }
153 }
154
155 printf("DRAM test phase 2:\n");
156 for (p = pstart; p < pend; p++)
157 *p = 0x55555555;
158
159 for (p = pstart; p < pend; p++) {
160 if (*p != 0x55555555) {
161 printf ("DRAM test fails at: %08x\n", (uint) p);
162 return 1;
163 }
164 }
165
166 printf("DRAM test passed.\n");
167 return 0;
168}
169#endif
170
171#ifdef CONFIG_PCI1
172static struct pci_controller pci1_hose;
173#endif
174
175#ifdef CONFIG_PCI2
176static struct pci_controller pci2_hose;
177#endif
178
179#ifdef CONFIG_PCIE1
180static struct pci_controller pcie1_hose;
181#endif
182
183int first_free_busno=0;
184
185void
186pci_init_board(void)
187{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
robert lazarskib964e932007-12-21 10:39:27 -0500189
190 uint devdisr = gur->devdisr;
191 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
192 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
193
194 debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
195 devdisr, io_sel, host_agent);
196
Wolfgang Denkd3a65322008-01-10 00:55:14 +0100197 /* explicitly set 'Clock out select register' to echo SYSCLK input to our CPLD */
robert lazarskib964e932007-12-21 10:39:27 -0500198 gur->clkocr |= MPC85xx_ATUM_CLKOCR;
199
200 if (io_sel & 1) {
201 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS))
202 printf (" eTSEC1 is in sgmii mode.\n");
203 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
204 printf (" eTSEC2 is in sgmii mode.\n");
205 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
206 printf (" eTSEC3 is in sgmii mode.\n");
207 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII4_DIS))
208 printf (" eTSEC4 is in sgmii mode.\n");
209 }
210
211#ifdef CONFIG_PCIE1
212 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200213 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
robert lazarskib964e932007-12-21 10:39:27 -0500214 extern void fsl_pci_init(struct pci_controller *hose);
215 struct pci_controller *hose = &pcie1_hose;
216 int pcie_ep = (host_agent == 5);
217 int pcie_configured = io_sel & 6;
218
219 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
220 printf ("\n PCIE1 connected to slot as %s (base address %x)",
221 pcie_ep ? "End Point" : "Root Complex",
222 (uint)pci);
223 if (pci->pme_msg_det) {
224 pci->pme_msg_det = 0xffffffff;
225 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
226 }
227 printf ("\n");
228
229 /* inbound */
230 pci_set_region(hose->regions + 0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231 CONFIG_SYS_PCI_MEMORY_BUS,
232 CONFIG_SYS_PCI_MEMORY_PHYS,
233 CONFIG_SYS_PCI_MEMORY_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500234 PCI_REGION_MEM | PCI_REGION_MEMORY);
235
236 /* outbound memory */
237 pci_set_region(hose->regions + 1,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200238 CONFIG_SYS_PCIE1_MEM_BASE,
239 CONFIG_SYS_PCIE1_MEM_PHYS,
240 CONFIG_SYS_PCIE1_MEM_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500241 PCI_REGION_MEM);
242
243 /* outbound io */
244 pci_set_region(hose->regions + 2,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200245 CONFIG_SYS_PCIE1_IO_BASE,
246 CONFIG_SYS_PCIE1_IO_PHYS,
247 CONFIG_SYS_PCIE1_IO_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500248 PCI_REGION_IO);
249
250 hose->region_count = 3;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200251#ifdef CONFIG_SYS_PCIE1_MEM_BASE2
robert lazarskib964e932007-12-21 10:39:27 -0500252 /* outbound memory */
253 pci_set_region(hose->regions + 3,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254 CONFIG_SYS_PCIE1_MEM_BASE2,
255 CONFIG_SYS_PCIE1_MEM_PHYS2,
256 CONFIG_SYS_PCIE1_MEM_SIZE2,
robert lazarskib964e932007-12-21 10:39:27 -0500257 PCI_REGION_MEM);
258 hose->region_count++;
259#endif
260 hose->first_busno=first_free_busno;
261
262 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
263
264 fsl_pci_init(hose);
265
266 first_free_busno=hose->last_busno+1;
267 printf(" PCIE1 on bus %02x - %02x\n",
268 hose->first_busno,hose->last_busno);
269
270 } else {
271 printf (" PCIE1: disabled\n");
272 }
273
274 }
275#else
276 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
277#endif
278
279#ifdef CONFIG_PCI1
280{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200281 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
robert lazarskib964e932007-12-21 10:39:27 -0500282 extern void fsl_pci_init(struct pci_controller *hose);
283 struct pci_controller *hose = &pci1_hose;
284
285 uint pci_agent = (host_agent == 6);
286 uint pci_speed = 33333000; /*get_clock_freq (); PCI PSPEED in [4:5] */
287 uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
288 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
289 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
290
291 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
292 printf ("\n PCI1: %d bit, %s MHz, %s, %s, %s (base address %x)\n",
293 (pci_32) ? 32 : 64,
294 (pci_speed == 33333000) ? "33" :
295 (pci_speed == 66666000) ? "66" : "unknown",
296 pci_clk_sel ? "sync" : "async",
297 pci_agent ? "agent" : "host",
298 pci_arb ? "arbiter" : "external-arbiter",
299 (uint)pci
300 );
301
302 /* inbound */
303 pci_set_region(hose->regions + 0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200304 CONFIG_SYS_PCI_MEMORY_BUS,
305 CONFIG_SYS_PCI_MEMORY_PHYS,
306 CONFIG_SYS_PCI_MEMORY_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500307 PCI_REGION_MEM | PCI_REGION_MEMORY);
308
309 /* outbound memory */
310 pci_set_region(hose->regions + 1,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200311 CONFIG_SYS_PCI1_MEM_BASE,
312 CONFIG_SYS_PCI1_MEM_PHYS,
313 CONFIG_SYS_PCI1_MEM_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500314 PCI_REGION_MEM);
315
316 /* outbound io */
317 pci_set_region(hose->regions + 2,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200318 CONFIG_SYS_PCI1_IO_BASE,
319 CONFIG_SYS_PCI1_IO_PHYS,
320 CONFIG_SYS_PCI1_IO_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500321 PCI_REGION_IO);
322 hose->region_count = 3;
323 hose->first_busno=first_free_busno;
324 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
325
326 fsl_pci_init(hose);
327 first_free_busno=hose->last_busno+1;
328 printf ("PCI1 on bus %02x - %02x\n",
329 hose->first_busno,hose->last_busno);
330 } else {
331 printf (" PCI1: disabled\n");
332 }
333}
334#else
335 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
336#endif
337
338#ifdef CONFIG_PCI2
339{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200340 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
robert lazarskib964e932007-12-21 10:39:27 -0500341 extern void fsl_pci_init(struct pci_controller *hose);
342 struct pci_controller *hose = &pci2_hose;
343
344 if (!(devdisr & MPC85xx_DEVDISR_PCI2)) {
345 pci_set_region(hose->regions + 0,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200346 CONFIG_SYS_PCI_MEMORY_BUS,
347 CONFIG_SYS_PCI_MEMORY_PHYS,
348 CONFIG_SYS_PCI_MEMORY_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500349 PCI_REGION_MEM | PCI_REGION_MEMORY);
350
351 pci_set_region(hose->regions + 1,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200352 CONFIG_SYS_PCI2_MEM_BASE,
353 CONFIG_SYS_PCI2_MEM_PHYS,
354 CONFIG_SYS_PCI2_MEM_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500355 PCI_REGION_MEM);
356
357 pci_set_region(hose->regions + 2,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200358 CONFIG_SYS_PCI2_IO_BASE,
359 CONFIG_SYS_PCI2_IO_PHYS,
360 CONFIG_SYS_PCI2_IO_SIZE,
robert lazarskib964e932007-12-21 10:39:27 -0500361 PCI_REGION_IO);
362 hose->region_count = 3;
363 hose->first_busno=first_free_busno;
364 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
365
366 fsl_pci_init(hose);
367 first_free_busno=hose->last_busno+1;
368 printf ("PCI2 on bus %02x - %02x\n",
369 hose->first_busno,hose->last_busno);
370 } else {
371 printf (" PCI2: disabled\n");
372 }
373}
374#else
375 gur->devdisr |= MPC85xx_DEVDISR_PCI2;
376#endif
377}
378
379
380int last_stage_init(void)
381{
Wolfgang Denkd3a65322008-01-10 00:55:14 +0100382 int ic = icache_status ();
robert lazarskib964e932007-12-21 10:39:27 -0500383 printf ("icache_status: %d\n", ic);
384 return 0;
385}
386
387#if defined(CONFIG_OF_BOARD_SETUP)
388
389void
390ft_board_setup(void *blob, bd_t *bd)
391{
392 int node, tmp[2];
393 const char *path;
394
395 ft_cpu_setup(blob, bd);
396
397 node = fdt_path_offset(blob, "/aliases");
398 tmp[0] = 0;
399 if (node >= 0) {
400#ifdef CONFIG_PCI1
401 path = fdt_getprop(blob, node, "pci0", NULL);
402 if (path) {
403 tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno;
404 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
405 }
406#endif
407#ifdef CONFIG_PCI2
408 path = fdt_getprop(blob, node, "pci1", NULL);
409 if (path) {
410 tmp[1] = pci2_hose.last_busno - pci2_hose.first_busno;
411 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
412 }
413#endif
414#ifdef CONFIG_PCIE1
415 path = fdt_getprop(blob, node, "pci2", NULL);
416 if (path) {
417 tmp[1] = pcie1_hose.last_busno - pcie1_hose.first_busno;
418 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
419 }
420#endif
421 }
422}
423#endif