blob: 1bfbe88b5aafb7625757bda01ca2bc6fb0fafd96 [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Haiying Wang3d98b852007-01-22 12:37:30 -06002 * Copyright 2006, 2007 Freescale Semiconductor.
Jon Loeligerdebb7352006-04-26 17:58:56 -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
Ed Swarthout63cec582007-08-02 14:09:49 -050014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jon Loeligerdebb7352006-04-26 17:58:56 -050015 * 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 <pci.h>
25#include <asm/processor.h>
26#include <asm/immap_86xx.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050027#include <asm/immap_fsl_pci.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050028#include <spd.h>
Haiying Wang3d98b852007-01-22 12:37:30 -060029#include <asm/io.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050030
31#if defined(CONFIG_OF_FLAT_TREE)
32#include <ft_build.h>
33extern void ft_cpu_setup(void *blob, bd_t *bd);
34#endif
35
Haiying Wang3d98b852007-01-22 12:37:30 -060036#include "../freescale/common/pixis.h"
Jon Loeliger4d3d7292006-05-31 11:24:28 -050037
Jon Loeligerdebb7352006-04-26 17:58:56 -050038#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
39extern void ddr_enable_ecc(unsigned int dram_size);
40#endif
41
Jon Loeligercb5965f2006-05-31 12:44:44 -050042#if defined(CONFIG_SPD_EEPROM)
43#include "spd_sdram.h"
44#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -050045
Jon Loeligerdebb7352006-04-26 17:58:56 -050046void sdram_init(void);
47long int fixed_sdram(void);
48
49
Jon Loeliger80e955c2006-08-22 12:25:27 -050050int board_early_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050051{
Jon Loeligercb5965f2006-05-31 12:44:44 -050052 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050053}
54
Jon Loeliger80e955c2006-08-22 12:25:27 -050055int checkboard(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050056{
57 puts("Board: MPC8641HPCN\n");
58
Jon Loeligerdebb7352006-04-26 17:58:56 -050059 return 0;
60}
61
62
63long int
64initdram(int board_type)
65{
66 long dram_size = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050067
68#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger80e955c2006-08-22 12:25:27 -050069 dram_size = spd_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050070#else
Jon Loeliger80e955c2006-08-22 12:25:27 -050071 dram_size = fixed_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050072#endif
73
74#if defined(CFG_RAMBOOT)
75 puts(" DDR: ");
76 return dram_size;
77#endif
Jon Loeligercb5965f2006-05-31 12:44:44 -050078
Jon Loeligerdebb7352006-04-26 17:58:56 -050079#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
80 /*
81 * Initialize and enable DDR ECC.
82 */
83 ddr_enable_ecc(dram_size);
84#endif
85
Jon Loeligerdebb7352006-04-26 17:58:56 -050086 puts(" DDR: ");
87 return dram_size;
88}
89
90
Jon Loeligerdebb7352006-04-26 17:58:56 -050091#if defined(CFG_DRAM_TEST)
Jon Loeliger80e955c2006-08-22 12:25:27 -050092int
93testdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050094{
95 uint *pstart = (uint *) CFG_MEMTEST_START;
96 uint *pend = (uint *) CFG_MEMTEST_END;
97 uint *p;
98
Jon Loeligercb5965f2006-05-31 12:44:44 -050099 puts("SDRAM test phase 1:\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500100 for (p = pstart; p < pend; p++)
101 *p = 0xaaaaaaaa;
102
103 for (p = pstart; p < pend; p++) {
104 if (*p != 0xaaaaaaaa) {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500105 printf("SDRAM test fails at: %08x\n", (uint) p);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500106 return 1;
107 }
108 }
109
Jon Loeligercb5965f2006-05-31 12:44:44 -0500110 puts("SDRAM test phase 2:\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500111 for (p = pstart; p < pend; p++)
112 *p = 0x55555555;
113
114 for (p = pstart; p < pend; p++) {
115 if (*p != 0x55555555) {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500116 printf("SDRAM test fails at: %08x\n", (uint) p);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500117 return 1;
118 }
119 }
120
Jon Loeligercb5965f2006-05-31 12:44:44 -0500121 puts("SDRAM test passed.\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500122 return 0;
123}
124#endif
125
126
127#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500128/*
129 * Fixed sdram init -- doesn't use serial presence detect.
130 */
Jon Loeliger80e955c2006-08-22 12:25:27 -0500131long int
132fixed_sdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500133{
134#if !defined(CFG_RAMBOOT)
Jon Loeliger80e955c2006-08-22 12:25:27 -0500135 volatile immap_t *immap = (immap_t *) CFG_IMMR;
136 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500137
138 ddr->cs0_bnds = CFG_DDR_CS0_BNDS;
139 ddr->cs0_config = CFG_DDR_CS0_CONFIG;
140 ddr->ext_refrec = CFG_DDR_EXT_REFRESH;
141 ddr->timing_cfg_0 = CFG_DDR_TIMING_0;
142 ddr->timing_cfg_1 = CFG_DDR_TIMING_1;
143 ddr->timing_cfg_2 = CFG_DDR_TIMING_2;
144 ddr->sdram_mode_1 = CFG_DDR_MODE_1;
145 ddr->sdram_mode_2 = CFG_DDR_MODE_2;
146 ddr->sdram_interval = CFG_DDR_INTERVAL;
Jon Loeligercb5965f2006-05-31 12:44:44 -0500147 ddr->sdram_data_init = CFG_DDR_DATA_INIT;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500148 ddr->sdram_clk_cntl = CFG_DDR_CLK_CTRL;
Jon Loeligercb5965f2006-05-31 12:44:44 -0500149 ddr->sdram_ocd_cntl = CFG_DDR_OCD_CTRL;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500150 ddr->sdram_ocd_status = CFG_DDR_OCD_STATUS;
151
152#if defined (CONFIG_DDR_ECC)
153 ddr->err_disable = 0x0000008D;
154 ddr->err_sbe = 0x00ff0000;
155#endif
156 asm("sync;isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500157
Jon Loeligerdebb7352006-04-26 17:58:56 -0500158 udelay(500);
159
160#if defined (CONFIG_DDR_ECC)
161 /* Enable ECC checking */
162 ddr->sdram_cfg_1 = (CFG_DDR_CONTROL | 0x20000000);
163#else
164 ddr->sdram_cfg_1 = CFG_DDR_CONTROL;
165 ddr->sdram_cfg_2 = CFG_DDR_CONTROL2;
166#endif
167 asm("sync; isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500168
Jon Loeligerdebb7352006-04-26 17:58:56 -0500169 udelay(500);
170#endif
171 return CFG_SDRAM_SIZE * 1024 * 1024;
172}
173#endif /* !defined(CONFIG_SPD_EEPROM) */
174
175
176#if defined(CONFIG_PCI)
177/*
178 * Initialize PCI Devices, report devices found.
179 */
180
181#ifndef CONFIG_PCI_PNP
182static struct pci_config_table pci_fsl86xxads_config_table[] = {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500183 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
184 PCI_IDSEL_NUMBER, PCI_ANY_ID,
185 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
186 PCI_ENET0_MEMADDR,
187 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}},
188 {}
Jon Loeligerdebb7352006-04-26 17:58:56 -0500189};
190#endif
191
192
Ed Swarthout63cec582007-08-02 14:09:49 -0500193static struct pci_controller pci1_hose = {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500194#ifndef CONFIG_PCI_PNP
Ed Swarthout63cec582007-08-02 14:09:49 -0500195 config_table:pci_mpc86xxcts_config_table
Jon Loeligerdebb7352006-04-26 17:58:56 -0500196#endif
197};
Jon Loeliger80e955c2006-08-22 12:25:27 -0500198#endif /* CONFIG_PCI */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500199
Ed Swarthout63cec582007-08-02 14:09:49 -0500200#ifdef CONFIG_PCI2
201static struct pci_controller pci2_hose;
202#endif /* CONFIG_PCI2 */
203
204int first_free_busno = 0;
205
206
Jon Loeliger80e955c2006-08-22 12:25:27 -0500207void pci_init_board(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500208{
Ed Swarthout63cec582007-08-02 14:09:49 -0500209 volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
210 volatile ccsr_gur_t *gur = &immap->im_gur;
211 uint devdisr = gur->devdisr;
212 uint io_sel = (gur->pordevsr & MPC86xx_PORDEVSR_IO_SEL) >> 16;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500213
Ed Swarthout63cec582007-08-02 14:09:49 -0500214#ifdef CONFIG_PCI1
215{
216 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR;
217 extern void fsl_pci_init(struct pci_controller *hose);
218 struct pci_controller *hose = &pci1_hose;
219#ifdef DEBUG
220 uint host1_agent = (gur->porbmsr & MPC86xx_PORBMSR_HA) >> 17;
221 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
222#endif
223 if ((io_sel == 2 || io_sel == 3 || io_sel == 5
224 || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
225 && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
226 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
227 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
228 if (pci->pme_msg_det) {
229 pci->pme_msg_det = 0xffffffff;
230 debug(" with errors. Clearing. Now 0x%08x",
231 pci->pme_msg_det);
232 }
233 debug("\n");
234
235 /* inbound */
236 pci_set_region(hose->regions + 0,
237 CFG_PCI_MEMORY_BUS,
238 CFG_PCI_MEMORY_PHYS,
239 CFG_PCI_MEMORY_SIZE,
240 PCI_REGION_MEM | PCI_REGION_MEMORY);
241
242 /* outbound memory */
243 pci_set_region(hose->regions + 1,
244 CFG_PCI1_MEM_BASE,
245 CFG_PCI1_MEM_PHYS,
246 CFG_PCI1_MEM_SIZE,
247 PCI_REGION_MEM);
248
249 /* outbound io */
250 pci_set_region(hose->regions + 2,
251 CFG_PCI1_IO_BASE,
252 CFG_PCI1_IO_PHYS,
253 CFG_PCI1_IO_SIZE,
254 PCI_REGION_IO);
255
256 hose->region_count = 3;
257
258 hose->first_busno=first_free_busno;
259 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
260
261 fsl_pci_init(hose);
262
263 first_free_busno=hose->last_busno+1;
264 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
265 hose->first_busno,hose->last_busno);
266
267 /*
268 * Activate ULI1575 legacy chip by performing a fake
269 * memory access. Needed to make ULI RTC work.
270 */
Jon Loeligercf0b1852007-08-06 17:39:44 -0500271 in_be32((unsigned *) ((char *)(CFG_PCI1_MEM_BASE
272 + CFG_PCI1_MEM_SIZE - 0x1000000)));
Ed Swarthout63cec582007-08-02 14:09:49 -0500273
274 } else {
275 puts("PCI-EXPRESS 1: Disabled\n");
276 }
277}
278#else
279 puts("PCI-EXPRESS1: Disabled\n");
280#endif /* CONFIG_PCI1 */
281
282#ifdef CONFIG_PCI2
283{
284 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI2_ADDR;
285 extern void fsl_pci_init(struct pci_controller *hose);
286 struct pci_controller *hose = &pci2_hose;
287
288
289 /* inbound */
290 pci_set_region(hose->regions + 0,
291 CFG_PCI_MEMORY_BUS,
292 CFG_PCI_MEMORY_PHYS,
293 CFG_PCI_MEMORY_SIZE,
294 PCI_REGION_MEM | PCI_REGION_MEMORY);
295
296 /* outbound memory */
297 pci_set_region(hose->regions + 1,
298 CFG_PCI2_MEM_BASE,
299 CFG_PCI2_MEM_PHYS,
300 CFG_PCI2_MEM_SIZE,
301 PCI_REGION_MEM);
302
303 /* outbound io */
304 pci_set_region(hose->regions + 2,
305 CFG_PCI2_IO_BASE,
306 CFG_PCI2_IO_PHYS,
307 CFG_PCI2_IO_SIZE,
308 PCI_REGION_IO);
309
310 hose->region_count = 3;
311
312 hose->first_busno=first_free_busno;
313 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
314
315 fsl_pci_init(hose);
316
317 first_free_busno=hose->last_busno+1;
318 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
319 hose->first_busno,hose->last_busno);
320}
321#else
322 puts("PCI-EXPRESS 2: Disabled\n");
323#endif /* CONFIG_PCI2 */
324
Jon Loeligerdebb7352006-04-26 17:58:56 -0500325}
326
327#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
328void
329ft_board_setup(void *blob, bd_t *bd)
330{
331 u32 *p;
332 int len;
333
334 ft_cpu_setup(blob, bd);
Jon Loeligercb5965f2006-05-31 12:44:44 -0500335
Jon Loeligerdebb7352006-04-26 17:58:56 -0500336 p = ft_get_prop(blob, "/memory/reg", &len);
337 if (p != NULL) {
338 *p++ = cpu_to_be32(bd->bi_memstart);
339 *p = cpu_to_be32(bd->bi_memsize);
340 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500341}
342#endif
343
Jon Loeligerdebb7352006-04-26 17:58:56 -0500344
Haiying Wang239db372006-07-28 12:41:18 -0400345/*
346 * get_board_sys_clk
347 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
348 */
349
Jon Loeliger80e955c2006-08-22 12:25:27 -0500350unsigned long
351get_board_sys_clk(ulong dummy)
Haiying Wang239db372006-07-28 12:41:18 -0400352{
353 u8 i, go_bit, rd_clks;
354 ulong val = 0;
355
356 go_bit = in8(PIXIS_BASE + PIXIS_VCTL);
357 go_bit &= 0x01;
358
359 rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0);
360 rd_clks &= 0x1C;
361
362 /*
363 * Only if both go bit and the SCLK bit in VCFGEN0 are set
364 * should we be using the AUX register. Remember, we also set the
365 * GO bit to boot from the alternate bank on the on-board flash
366 */
367
368 if (go_bit) {
369 if (rd_clks == 0x1c)
370 i = in8(PIXIS_BASE + PIXIS_AUX);
371 else
372 i = in8(PIXIS_BASE + PIXIS_SPD);
373 } else {
374 i = in8(PIXIS_BASE + PIXIS_SPD);
375 }
376
377 i &= 0x07;
378
379 switch (i) {
380 case 0:
381 val = 33000000;
382 break;
383 case 1:
384 val = 40000000;
385 break;
386 case 2:
387 val = 50000000;
388 break;
389 case 3:
390 val = 66000000;
391 break;
392 case 4:
393 val = 83000000;
394 break;
395 case 5:
396 val = 100000000;
397 break;
398 case 6:
399 val = 134000000;
400 break;
401 case 7:
402 val = 166000000;
403 break;
404 }
405
406 return val;
407}