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/fsl_pci.h>
28 #include <asm/fsl_ddr_sdram.h>
31 #include <fdt_support.h>
34 #include "../common/pixis.h"
36 phys_size_t
fixed_sdram(void);
38 int board_early_init_f(void)
46 u8
*pixis_base
= (u8
*)PIXIS_BASE
;
48 printf ("Board: MPC8641HPCN, Sys ID: 0x%02x, "
49 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
50 in_8(pixis_base
+ PIXIS_ID
), in_8(pixis_base
+ PIXIS_VER
),
51 in_8(pixis_base
+ PIXIS_PVER
));
53 vboot
= in_8(pixis_base
+ PIXIS_VBOOT
);
54 if (vboot
& PIXIS_VBOOT_FMAP
)
55 printf ("vBank: %d\n", ((vboot
& PIXIS_VBOOT_FBANK
) >> 6));
59 #ifdef CONFIG_PHYS_64BIT
60 printf (" 36-bit physical address map\n");
67 initdram(int board_type
)
69 phys_size_t dram_size
= 0;
71 #if defined(CONFIG_SPD_EEPROM)
72 dram_size
= fsl_ddr_sdram();
74 dram_size
= fixed_sdram();
77 #if defined(CONFIG_SYS_RAMBOOT)
87 #if !defined(CONFIG_SPD_EEPROM)
89 * Fixed sdram init -- doesn't use serial presence detect.
94 #if !defined(CONFIG_SYS_RAMBOOT)
95 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
96 volatile ccsr_ddr_t
*ddr
= &immap
->im_ddr1
;
98 ddr
->cs0_bnds
= CONFIG_SYS_DDR_CS0_BNDS
;
99 ddr
->cs0_config
= CONFIG_SYS_DDR_CS0_CONFIG
;
100 ddr
->timing_cfg_3
= CONFIG_SYS_DDR_TIMING_3
;
101 ddr
->timing_cfg_0
= CONFIG_SYS_DDR_TIMING_0
;
102 ddr
->timing_cfg_1
= CONFIG_SYS_DDR_TIMING_1
;
103 ddr
->timing_cfg_2
= CONFIG_SYS_DDR_TIMING_2
;
104 ddr
->sdram_mode
= CONFIG_SYS_DDR_MODE_1
;
105 ddr
->sdram_mode_2
= CONFIG_SYS_DDR_MODE_2
;
106 ddr
->sdram_interval
= CONFIG_SYS_DDR_INTERVAL
;
107 ddr
->sdram_data_init
= CONFIG_SYS_DDR_DATA_INIT
;
108 ddr
->sdram_clk_cntl
= CONFIG_SYS_DDR_CLK_CTRL
;
109 ddr
->sdram_ocd_cntl
= CONFIG_SYS_DDR_OCD_CTRL
;
110 ddr
->sdram_ocd_status
= CONFIG_SYS_DDR_OCD_STATUS
;
112 #if defined (CONFIG_DDR_ECC)
113 ddr
->err_disable
= 0x0000008D;
114 ddr
->err_sbe
= 0x00ff0000;
120 #if defined (CONFIG_DDR_ECC)
121 /* Enable ECC checking */
122 ddr
->sdram_cfg
= (CONFIG_SYS_DDR_CONTROL
| 0x20000000);
124 ddr
->sdram_cfg
= CONFIG_SYS_DDR_CONTROL
;
125 ddr
->sdram_cfg_2
= CONFIG_SYS_DDR_CONTROL2
;
131 return CONFIG_SYS_SDRAM_SIZE
* 1024 * 1024;
133 #endif /* !defined(CONFIG_SPD_EEPROM) */
136 #if defined(CONFIG_PCI)
137 static struct pci_controller pci1_hose
;
138 #endif /* CONFIG_PCI */
141 static struct pci_controller pci2_hose
;
142 #endif /* CONFIG_PCI2 */
144 int first_free_busno
= 0;
146 void pci_init_board(void)
150 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CONFIG_SYS_PCI1_ADDR
;
151 struct pci_controller
*hose
= &pci1_hose
;
152 struct pci_region
*r
= hose
->regions
;
153 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_CCSRBAR
;
154 volatile ccsr_gur_t
*gur
= &immap
->im_gur
;
155 uint devdisr
= gur
->devdisr
;
156 uint io_sel
= (gur
->pordevsr
& MPC8641_PORDEVSR_IO_SEL
)
157 >> MPC8641_PORDEVSR_IO_SEL_SHIFT
;
160 uint host1_agent
= (gur
->porbmsr
& MPC8641_PORBMSR_HA
)
161 >> MPC8641_PORBMSR_HA_SHIFT
;
162 uint pex1_agent
= (host1_agent
== 0) || (host1_agent
== 1);
164 if ((io_sel
== 2 || io_sel
== 3 || io_sel
== 5
165 || io_sel
== 6 || io_sel
== 7 || io_sel
== 0xF)
166 && !(devdisr
& MPC86xx_DEVDISR_PCIEX1
)) {
167 debug("PCI-EXPRESS 1: %s \n", pex1_agent
? "Agent" : "Host");
168 debug("0x%08x=0x%08x ", &pci
->pme_msg_det
, pci
->pme_msg_det
);
169 if (pci
->pme_msg_det
) {
170 pci
->pme_msg_det
= 0xffffffff;
171 debug(" with errors. Clearing. Now 0x%08x",
176 /* outbound memory */
178 CONFIG_SYS_PCI1_MEM_BUS
,
179 CONFIG_SYS_PCI1_MEM_PHYS
,
180 CONFIG_SYS_PCI1_MEM_SIZE
,
185 CONFIG_SYS_PCI1_IO_BUS
,
186 CONFIG_SYS_PCI1_IO_PHYS
,
187 CONFIG_SYS_PCI1_IO_SIZE
,
191 r
+= fsl_pci_setup_inbound_windows(r
);
193 hose
->region_count
= r
- hose
->regions
;
195 hose
->first_busno
=first_free_busno
;
196 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
200 first_free_busno
=hose
->last_busno
+1;
201 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
202 hose
->first_busno
,hose
->last_busno
);
205 * Activate ULI1575 legacy chip by performing a fake
206 * memory access. Needed to make ULI RTC work.
208 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_VIRT
209 + CONFIG_SYS_PCI1_MEM_SIZE
- 0x1000000)));
212 puts("PCI-EXPRESS 1: Disabled\n");
216 puts("PCI-EXPRESS1: Disabled\n");
217 #endif /* CONFIG_PCI1 */
221 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CONFIG_SYS_PCI2_ADDR
;
222 struct pci_controller
*hose
= &pci2_hose
;
223 struct pci_region
*r
= hose
->regions
;
225 /* outbound memory */
227 CONFIG_SYS_PCI2_MEM_BUS
,
228 CONFIG_SYS_PCI2_MEM_PHYS
,
229 CONFIG_SYS_PCI2_MEM_SIZE
,
234 CONFIG_SYS_PCI2_IO_BUS
,
235 CONFIG_SYS_PCI2_IO_PHYS
,
236 CONFIG_SYS_PCI2_IO_SIZE
,
240 r
+= fsl_pci_setup_inbound_windows(r
);
242 hose
->region_count
= r
- hose
->regions
;
244 hose
->first_busno
=first_free_busno
;
245 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
249 first_free_busno
=hose
->last_busno
+1;
250 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
251 hose
->first_busno
,hose
->last_busno
);
254 puts("PCI-EXPRESS 2: Disabled\n");
255 #endif /* CONFIG_PCI2 */
260 #if defined(CONFIG_OF_BOARD_SETUP)
262 ft_board_setup(void *blob
, bd_t
*bd
)
268 ft_cpu_setup(blob
, bd
);
271 ft_fsl_pci_setup(blob
, "pci0", &pci1_hose
);
274 ft_fsl_pci_setup(blob
, "pci1", &pci2_hose
);
278 * Warn if it looks like the device tree doesn't match u-boot.
279 * This is just an estimation, based on the location of CCSR,
280 * which is defined by the "reg" property in the soc node.
282 off
= fdt_path_offset(blob
, "/soc8641");
283 addrcells
= (u32
*)fdt_getprop(blob
, 0, "#address-cells", NULL
);
284 tmp
= (u64
*)fdt_getprop(blob
, off
, "reg", NULL
);
288 if (addrcells
&& (*addrcells
== 1))
293 if (addr
!= CONFIG_SYS_CCSRBAR_PHYS
)
294 printf("WARNING: The CCSRBAR address in your .dts "
295 "does not match the address of the CCSR "
296 "in u-boot. This means your .dts might "
305 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
309 get_board_sys_clk(ulong dummy
)
311 u8 i
, go_bit
, rd_clks
;
313 u8
*pixis_base
= (u8
*)PIXIS_BASE
;
315 go_bit
= in_8(pixis_base
+ PIXIS_VCTL
);
318 rd_clks
= in_8(pixis_base
+ PIXIS_VCFGEN0
);
322 * Only if both go bit and the SCLK bit in VCFGEN0 are set
323 * should we be using the AUX register. Remember, we also set the
324 * GO bit to boot from the alternate bank on the on-board flash
329 i
= in_8(pixis_base
+ PIXIS_AUX
);
331 i
= in_8(pixis_base
+ PIXIS_SPD
);
333 i
= in_8(pixis_base
+ PIXIS_SPD
);
368 int board_eth_init(bd_t
*bis
)
370 /* Initialize TSECs */
372 return pci_eth_init(bis
);
375 void board_reset(void)
377 u8
*pixis_base
= (u8
*)PIXIS_BASE
;
379 out_8(pixis_base
+ PIXIS_RST
, 0);
386 extern void cpu_mp_lmb_reserve(struct lmb
*lmb
);
388 void board_lmb_reserve(struct lmb
*lmb
)
390 cpu_mp_lmb_reserve(lmb
);