2 * Copyright 2006, 2007 Freescale Semiconductor.
4 * See file CREDITS for list of people who contributed to this
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.
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.
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,
25 #include <asm/processor.h>
26 #include <asm/immap_86xx.h>
27 #include <asm/immap_fsl_pci.h>
28 #include <spd_sdram.h>
31 #include <fdt_support.h>
33 #include "../common/pixis.h"
35 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
36 extern void ddr_enable_ecc(unsigned int dram_size
);
39 void sdram_init(void);
40 long int fixed_sdram(void);
43 int board_early_init_f(void)
50 puts("Board: MPC8641HPCN\n");
57 initdram(int board_type
)
61 #if defined(CONFIG_SPD_EEPROM)
62 dram_size
= spd_sdram();
64 dram_size
= fixed_sdram();
67 #if defined(CFG_RAMBOOT)
72 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
74 * Initialize and enable DDR ECC.
76 ddr_enable_ecc(dram_size
);
84 #if defined(CFG_DRAM_TEST)
88 uint
*pstart
= (uint
*) CFG_MEMTEST_START
;
89 uint
*pend
= (uint
*) CFG_MEMTEST_END
;
92 puts("SDRAM test phase 1:\n");
93 for (p
= pstart
; p
< pend
; p
++)
96 for (p
= pstart
; p
< pend
; p
++) {
97 if (*p
!= 0xaaaaaaaa) {
98 printf("SDRAM test fails at: %08x\n", (uint
) p
);
103 puts("SDRAM test phase 2:\n");
104 for (p
= pstart
; p
< pend
; p
++)
107 for (p
= pstart
; p
< pend
; p
++) {
108 if (*p
!= 0x55555555) {
109 printf("SDRAM test fails at: %08x\n", (uint
) p
);
114 puts("SDRAM test passed.\n");
120 #if !defined(CONFIG_SPD_EEPROM)
122 * Fixed sdram init -- doesn't use serial presence detect.
127 #if !defined(CFG_RAMBOOT)
128 volatile immap_t
*immap
= (immap_t
*) CFG_IMMR
;
129 volatile ccsr_ddr_t
*ddr
= &immap
->im_ddr1
;
131 ddr
->cs0_bnds
= CFG_DDR_CS0_BNDS
;
132 ddr
->cs0_config
= CFG_DDR_CS0_CONFIG
;
133 ddr
->ext_refrec
= CFG_DDR_EXT_REFRESH
;
134 ddr
->timing_cfg_0
= CFG_DDR_TIMING_0
;
135 ddr
->timing_cfg_1
= CFG_DDR_TIMING_1
;
136 ddr
->timing_cfg_2
= CFG_DDR_TIMING_2
;
137 ddr
->sdram_mode_1
= CFG_DDR_MODE_1
;
138 ddr
->sdram_mode_2
= CFG_DDR_MODE_2
;
139 ddr
->sdram_interval
= CFG_DDR_INTERVAL
;
140 ddr
->sdram_data_init
= CFG_DDR_DATA_INIT
;
141 ddr
->sdram_clk_cntl
= CFG_DDR_CLK_CTRL
;
142 ddr
->sdram_ocd_cntl
= CFG_DDR_OCD_CTRL
;
143 ddr
->sdram_ocd_status
= CFG_DDR_OCD_STATUS
;
145 #if defined (CONFIG_DDR_ECC)
146 ddr
->err_disable
= 0x0000008D;
147 ddr
->err_sbe
= 0x00ff0000;
153 #if defined (CONFIG_DDR_ECC)
154 /* Enable ECC checking */
155 ddr
->sdram_cfg_1
= (CFG_DDR_CONTROL
| 0x20000000);
157 ddr
->sdram_cfg_1
= CFG_DDR_CONTROL
;
158 ddr
->sdram_cfg_2
= CFG_DDR_CONTROL2
;
164 return CFG_SDRAM_SIZE
* 1024 * 1024;
166 #endif /* !defined(CONFIG_SPD_EEPROM) */
169 #if defined(CONFIG_PCI)
171 * Initialize PCI Devices, report devices found.
174 #ifndef CONFIG_PCI_PNP
175 static struct pci_config_table pci_fsl86xxads_config_table
[] = {
176 {PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
177 PCI_IDSEL_NUMBER
, PCI_ANY_ID
,
178 pci_cfgfunc_config_device
, {PCI_ENET0_IOADDR
,
180 PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
}},
186 static struct pci_controller pci1_hose
= {
187 #ifndef CONFIG_PCI_PNP
188 config_table
:pci_mpc86xxcts_config_table
191 #endif /* CONFIG_PCI */
194 static struct pci_controller pci2_hose
;
195 #endif /* CONFIG_PCI2 */
197 int first_free_busno
= 0;
200 void pci_init_board(void)
202 volatile immap_t
*immap
= (immap_t
*) CFG_CCSRBAR
;
203 volatile ccsr_gur_t
*gur
= &immap
->im_gur
;
204 uint devdisr
= gur
->devdisr
;
205 uint io_sel
= (gur
->pordevsr
& MPC8641_PORDEVSR_IO_SEL
)
206 >> MPC8641_PORDEVSR_IO_SEL_SHIFT
;
210 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CFG_PCI1_ADDR
;
211 extern void fsl_pci_init(struct pci_controller
*hose
);
212 struct pci_controller
*hose
= &pci1_hose
;
214 uint host1_agent
= (gur
->porbmsr
& MPC8641_PORBMSR_HA
)
215 >> MPC8641_PORBMSR_HA_SHIFT
;
216 uint pex1_agent
= (host1_agent
== 0) || (host1_agent
== 1);
218 if ((io_sel
== 2 || io_sel
== 3 || io_sel
== 5
219 || io_sel
== 6 || io_sel
== 7 || io_sel
== 0xF)
220 && !(devdisr
& MPC86xx_DEVDISR_PCIEX1
)) {
221 debug("PCI-EXPRESS 1: %s \n", pex1_agent
? "Agent" : "Host");
222 debug("0x%08x=0x%08x ", &pci
->pme_msg_det
, pci
->pme_msg_det
);
223 if (pci
->pme_msg_det
) {
224 pci
->pme_msg_det
= 0xffffffff;
225 debug(" with errors. Clearing. Now 0x%08x",
231 pci_set_region(hose
->regions
+ 0,
235 PCI_REGION_MEM
| PCI_REGION_MEMORY
);
237 /* outbound memory */
238 pci_set_region(hose
->regions
+ 1,
245 pci_set_region(hose
->regions
+ 2,
251 hose
->region_count
= 3;
253 hose
->first_busno
=first_free_busno
;
254 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
258 first_free_busno
=hose
->last_busno
+1;
259 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
260 hose
->first_busno
,hose
->last_busno
);
263 * Activate ULI1575 legacy chip by performing a fake
264 * memory access. Needed to make ULI RTC work.
266 in_be32((unsigned *) ((char *)(CFG_PCI1_MEM_BASE
267 + CFG_PCI1_MEM_SIZE
- 0x1000000)));
270 puts("PCI-EXPRESS 1: Disabled\n");
274 puts("PCI-EXPRESS1: Disabled\n");
275 #endif /* CONFIG_PCI1 */
279 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CFG_PCI2_ADDR
;
280 extern void fsl_pci_init(struct pci_controller
*hose
);
281 struct pci_controller
*hose
= &pci2_hose
;
285 pci_set_region(hose
->regions
+ 0,
289 PCI_REGION_MEM
| PCI_REGION_MEMORY
);
291 /* outbound memory */
292 pci_set_region(hose
->regions
+ 1,
299 pci_set_region(hose
->regions
+ 2,
305 hose
->region_count
= 3;
307 hose
->first_busno
=first_free_busno
;
308 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
312 first_free_busno
=hose
->last_busno
+1;
313 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
314 hose
->first_busno
,hose
->last_busno
);
317 puts("PCI-EXPRESS 2: Disabled\n");
318 #endif /* CONFIG_PCI2 */
323 #if defined(CONFIG_OF_BOARD_SETUP)
326 ft_board_setup(void *blob
, bd_t
*bd
)
331 ft_cpu_setup(blob
, bd
);
333 node
= fdt_path_offset(blob
, "/aliases");
337 path
= fdt_getprop(blob
, node
, "pci0", NULL
);
339 tmp
[1] = pci1_hose
.last_busno
- pci1_hose
.first_busno
;
340 do_fixup_by_path(blob
, path
, "bus-range", &tmp
, 8, 1);
344 path
= fdt_getprop(blob
, node
, "pci1", NULL
);
346 tmp
[1] = pci2_hose
.last_busno
- pci2_hose
.first_busno
;
347 do_fixup_by_path(blob
, path
, "bus-range", &tmp
, 8, 1);
357 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
361 get_board_sys_clk(ulong dummy
)
363 u8 i
, go_bit
, rd_clks
;
366 go_bit
= in8(PIXIS_BASE
+ PIXIS_VCTL
);
369 rd_clks
= in8(PIXIS_BASE
+ PIXIS_VCFGEN0
);
373 * Only if both go bit and the SCLK bit in VCFGEN0 are set
374 * should we be using the AUX register. Remember, we also set the
375 * GO bit to boot from the alternate bank on the on-board flash
380 i
= in8(PIXIS_BASE
+ PIXIS_AUX
);
382 i
= in8(PIXIS_BASE
+ PIXIS_SPD
);
384 i
= in8(PIXIS_BASE
+ PIXIS_SPD
);