blob: 7d7e2afad31cc1389e4a3dcdf404d42448dac0e4 [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
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 <pci.h>
25#include <asm/processor.h>
26#include <asm/immap_86xx.h>
27#include <spd.h>
Haiying Wang3d98b852007-01-22 12:37:30 -060028#include <asm/io.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050029
30#if defined(CONFIG_OF_FLAT_TREE)
31#include <ft_build.h>
32extern void ft_cpu_setup(void *blob, bd_t *bd);
33#endif
34
Haiying Wang3d98b852007-01-22 12:37:30 -060035#include "../freescale/common/pixis.h"
Jon Loeliger4d3d7292006-05-31 11:24:28 -050036
Jon Loeligerdebb7352006-04-26 17:58:56 -050037#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
38extern void ddr_enable_ecc(unsigned int dram_size);
39#endif
40
Jon Loeligercb5965f2006-05-31 12:44:44 -050041#if defined(CONFIG_SPD_EEPROM)
42#include "spd_sdram.h"
43#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -050044
Jon Loeligerdebb7352006-04-26 17:58:56 -050045void sdram_init(void);
46long int fixed_sdram(void);
47
48
Jon Loeliger80e955c2006-08-22 12:25:27 -050049int board_early_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050050{
Jon Loeligercb5965f2006-05-31 12:44:44 -050051 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050052}
53
Jon Loeliger80e955c2006-08-22 12:25:27 -050054int checkboard(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050055{
56 puts("Board: MPC8641HPCN\n");
57
58#ifdef CONFIG_PCI
59
Jon Loeligercb5965f2006-05-31 12:44:44 -050060 volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
61 volatile ccsr_gur_t *gur = &immap->im_gur;
62 volatile ccsr_pex_t *pex1 = &immap->im_pex1;
Jon Loeligerdebb7352006-04-26 17:58:56 -050063
Jon Loeligercb5965f2006-05-31 12:44:44 -050064 uint devdisr = gur->devdisr;
65 uint io_sel = (gur->pordevsr & MPC86xx_PORDEVSR_IO_SEL) >> 16;
66 uint host1_agent = (gur->porbmsr & MPC86xx_PORBMSR_HA) >> 17;
Jon Loeliger80e955c2006-08-22 12:25:27 -050067 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
Jon Loeligerdebb7352006-04-26 17:58:56 -050068
Jon Loeligercb5965f2006-05-31 12:44:44 -050069 if ((io_sel == 2 || io_sel == 3 || io_sel == 5
70 || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
71 && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
72 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
73 debug("0x%08x=0x%08x ", &pex1->pme_msg_det, pex1->pme_msg_det);
74 if (pex1->pme_msg_det) {
75 pex1->pme_msg_det = 0xffffffff;
76 debug(" with errors. Clearing. Now 0x%08x",
77 pex1->pme_msg_det);
78 }
Jon Loeliger80e955c2006-08-22 12:25:27 -050079 debug("\n");
Jon Loeligercb5965f2006-05-31 12:44:44 -050080 } else {
81 puts("PCI-EXPRESS 1: Disabled\n");
82 }
Jon Loeligerdebb7352006-04-26 17:58:56 -050083
84#else
Jon Loeligercb5965f2006-05-31 12:44:44 -050085 puts("PCI-EXPRESS1: Disabled\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -050086#endif
87
Jon Loeligerdebb7352006-04-26 17:58:56 -050088 return 0;
89}
90
91
92long int
93initdram(int board_type)
94{
95 long dram_size = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050096
97#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger80e955c2006-08-22 12:25:27 -050098 dram_size = spd_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050099#else
Jon Loeliger80e955c2006-08-22 12:25:27 -0500100 dram_size = fixed_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -0500101#endif
102
103#if defined(CFG_RAMBOOT)
104 puts(" DDR: ");
105 return dram_size;
106#endif
Jon Loeligercb5965f2006-05-31 12:44:44 -0500107
Jon Loeligerdebb7352006-04-26 17:58:56 -0500108#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
109 /*
110 * Initialize and enable DDR ECC.
111 */
112 ddr_enable_ecc(dram_size);
113#endif
114
Jon Loeligerdebb7352006-04-26 17:58:56 -0500115 puts(" DDR: ");
116 return dram_size;
117}
118
119
Jon Loeligerdebb7352006-04-26 17:58:56 -0500120#if defined(CFG_DRAM_TEST)
Jon Loeliger80e955c2006-08-22 12:25:27 -0500121int
122testdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500123{
124 uint *pstart = (uint *) CFG_MEMTEST_START;
125 uint *pend = (uint *) CFG_MEMTEST_END;
126 uint *p;
127
Jon Loeligercb5965f2006-05-31 12:44:44 -0500128 puts("SDRAM test phase 1:\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129 for (p = pstart; p < pend; p++)
130 *p = 0xaaaaaaaa;
131
132 for (p = pstart; p < pend; p++) {
133 if (*p != 0xaaaaaaaa) {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500134 printf("SDRAM test fails at: %08x\n", (uint) p);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500135 return 1;
136 }
137 }
138
Jon Loeligercb5965f2006-05-31 12:44:44 -0500139 puts("SDRAM test phase 2:\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500140 for (p = pstart; p < pend; p++)
141 *p = 0x55555555;
142
143 for (p = pstart; p < pend; p++) {
144 if (*p != 0x55555555) {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500145 printf("SDRAM test fails at: %08x\n", (uint) p);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500146 return 1;
147 }
148 }
149
Jon Loeligercb5965f2006-05-31 12:44:44 -0500150 puts("SDRAM test passed.\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151 return 0;
152}
153#endif
154
155
156#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500157/*
158 * Fixed sdram init -- doesn't use serial presence detect.
159 */
Jon Loeliger80e955c2006-08-22 12:25:27 -0500160long int
161fixed_sdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500162{
163#if !defined(CFG_RAMBOOT)
Jon Loeliger80e955c2006-08-22 12:25:27 -0500164 volatile immap_t *immap = (immap_t *) CFG_IMMR;
165 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500166
167 ddr->cs0_bnds = CFG_DDR_CS0_BNDS;
168 ddr->cs0_config = CFG_DDR_CS0_CONFIG;
169 ddr->ext_refrec = CFG_DDR_EXT_REFRESH;
170 ddr->timing_cfg_0 = CFG_DDR_TIMING_0;
171 ddr->timing_cfg_1 = CFG_DDR_TIMING_1;
172 ddr->timing_cfg_2 = CFG_DDR_TIMING_2;
173 ddr->sdram_mode_1 = CFG_DDR_MODE_1;
174 ddr->sdram_mode_2 = CFG_DDR_MODE_2;
175 ddr->sdram_interval = CFG_DDR_INTERVAL;
Jon Loeligercb5965f2006-05-31 12:44:44 -0500176 ddr->sdram_data_init = CFG_DDR_DATA_INIT;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500177 ddr->sdram_clk_cntl = CFG_DDR_CLK_CTRL;
Jon Loeligercb5965f2006-05-31 12:44:44 -0500178 ddr->sdram_ocd_cntl = CFG_DDR_OCD_CTRL;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500179 ddr->sdram_ocd_status = CFG_DDR_OCD_STATUS;
180
181#if defined (CONFIG_DDR_ECC)
182 ddr->err_disable = 0x0000008D;
183 ddr->err_sbe = 0x00ff0000;
184#endif
185 asm("sync;isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500186
Jon Loeligerdebb7352006-04-26 17:58:56 -0500187 udelay(500);
188
189#if defined (CONFIG_DDR_ECC)
190 /* Enable ECC checking */
191 ddr->sdram_cfg_1 = (CFG_DDR_CONTROL | 0x20000000);
192#else
193 ddr->sdram_cfg_1 = CFG_DDR_CONTROL;
194 ddr->sdram_cfg_2 = CFG_DDR_CONTROL2;
195#endif
196 asm("sync; isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500197
Jon Loeligerdebb7352006-04-26 17:58:56 -0500198 udelay(500);
199#endif
200 return CFG_SDRAM_SIZE * 1024 * 1024;
201}
202#endif /* !defined(CONFIG_SPD_EEPROM) */
203
204
205#if defined(CONFIG_PCI)
206/*
207 * Initialize PCI Devices, report devices found.
208 */
209
210#ifndef CONFIG_PCI_PNP
211static struct pci_config_table pci_fsl86xxads_config_table[] = {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500212 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
213 PCI_IDSEL_NUMBER, PCI_ANY_ID,
214 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
215 PCI_ENET0_MEMADDR,
216 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}},
217 {}
Jon Loeligerdebb7352006-04-26 17:58:56 -0500218};
219#endif
220
221
222static struct pci_controller hose = {
223#ifndef CONFIG_PCI_PNP
Jon Loeliger80e955c2006-08-22 12:25:27 -0500224 config_table:pci_mpc86xxcts_config_table,
Jon Loeligerdebb7352006-04-26 17:58:56 -0500225#endif
226};
227
Jon Loeliger80e955c2006-08-22 12:25:27 -0500228#endif /* CONFIG_PCI */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500229
Jon Loeliger80e955c2006-08-22 12:25:27 -0500230void pci_init_board(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500231{
232#ifdef CONFIG_PCI
233 extern void pci_mpc86xx_init(struct pci_controller *hose);
234
235 pci_mpc86xx_init(&hose);
236#endif /* CONFIG_PCI */
237}
238
239#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
240void
241ft_board_setup(void *blob, bd_t *bd)
242{
243 u32 *p;
244 int len;
245
246 ft_cpu_setup(blob, bd);
Jon Loeligercb5965f2006-05-31 12:44:44 -0500247
Jon Loeligerdebb7352006-04-26 17:58:56 -0500248 p = ft_get_prop(blob, "/memory/reg", &len);
249 if (p != NULL) {
250 *p++ = cpu_to_be32(bd->bi_memstart);
251 *p = cpu_to_be32(bd->bi_memsize);
252 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500253}
254#endif
255
Jon Loeligerdebb7352006-04-26 17:58:56 -0500256
Haiying Wang239db372006-07-28 12:41:18 -0400257/*
258 * get_board_sys_clk
259 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
260 */
261
Jon Loeliger80e955c2006-08-22 12:25:27 -0500262unsigned long
263get_board_sys_clk(ulong dummy)
Haiying Wang239db372006-07-28 12:41:18 -0400264{
265 u8 i, go_bit, rd_clks;
266 ulong val = 0;
267
268 go_bit = in8(PIXIS_BASE + PIXIS_VCTL);
269 go_bit &= 0x01;
270
271 rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0);
272 rd_clks &= 0x1C;
273
274 /*
275 * Only if both go bit and the SCLK bit in VCFGEN0 are set
276 * should we be using the AUX register. Remember, we also set the
277 * GO bit to boot from the alternate bank on the on-board flash
278 */
279
280 if (go_bit) {
281 if (rd_clks == 0x1c)
282 i = in8(PIXIS_BASE + PIXIS_AUX);
283 else
284 i = in8(PIXIS_BASE + PIXIS_SPD);
285 } else {
286 i = in8(PIXIS_BASE + PIXIS_SPD);
287 }
288
289 i &= 0x07;
290
291 switch (i) {
292 case 0:
293 val = 33000000;
294 break;
295 case 1:
296 val = 40000000;
297 break;
298 case 2:
299 val = 50000000;
300 break;
301 case 3:
302 val = 66000000;
303 break;
304 case 4:
305 val = 83000000;
306 break;
307 case 5:
308 val = 100000000;
309 break;
310 case 6:
311 val = 134000000;
312 break;
313 case 7:
314 val = 166000000;
315 break;
316 }
317
318 return val;
319}