blob: b352c334cf8eec912e2cf30a9d788085e95c61b9 [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>
Kumar Galac8514622009-04-02 13:22:48 -050027#include <asm/fsl_pci.h>
Kumar Gala6a8e5692008-08-26 15:01:35 -050028#include <asm/fsl_ddr_sdram.h>
Haiying Wang3d98b852007-01-22 12:37:30 -060029#include <asm/io.h>
Jon Loeligerea9f7392007-11-28 14:47:18 -060030#include <libfdt.h>
31#include <fdt_support.h>
Ben Warren0b252f52008-08-31 21:41:08 -070032#include <netdev.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050033
Becky Bruce4c77de32008-10-31 17:13:32 -050034phys_size_t fixed_sdram(void);
Jon Loeligerdebb7352006-04-26 17:58:56 -050035
Jon Loeliger80e955c2006-08-22 12:25:27 -050036int board_early_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050037{
Jon Loeligercb5965f2006-05-31 12:44:44 -050038 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050039}
40
Jon Loeliger80e955c2006-08-22 12:25:27 -050041int checkboard(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050042{
Kumar Gala9af9c6b2009-07-15 13:45:00 -050043 u8 vboot;
44 u8 *pixis_base = (u8 *)PIXIS_BASE;
45
46 printf ("Board: MPC8641HPCN, Sys ID: 0x%02x, "
47 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
48 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
49 in_8(pixis_base + PIXIS_PVER));
50
51 vboot = in_8(pixis_base + PIXIS_VBOOT);
52 if (vboot & PIXIS_VBOOT_FMAP)
53 printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6));
54 else
55 puts ("Promjet\n");
56
Becky Bruce2331e182009-02-12 10:43:32 -060057#ifdef CONFIG_PHYS_64BIT
58 printf (" 36-bit physical address map\n");
59#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -050060 return 0;
61}
62
63
Becky Bruce9973e3c2008-06-09 16:03:40 -050064phys_size_t
Jon Loeligerdebb7352006-04-26 17:58:56 -050065initdram(int board_type)
66{
Becky Bruce4c77de32008-10-31 17:13:32 -050067 phys_size_t dram_size = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050068
69#if defined(CONFIG_SPD_EEPROM)
Kumar Gala6a8e5692008-08-26 15:01:35 -050070 dram_size = fsl_ddr_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050071#else
Jon Loeliger80e955c2006-08-22 12:25:27 -050072 dram_size = fixed_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050073#endif
74
Timur Tabi9ff32d82010-03-29 12:51:07 -050075 setup_ddr_bat(dram_size);
76
Jon Loeligerdebb7352006-04-26 17:58:56 -050077 puts(" DDR: ");
78 return dram_size;
79}
80
81
Jon Loeligerdebb7352006-04-26 17:58:56 -050082#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger5c9efb32006-04-27 10:15:16 -050083/*
84 * Fixed sdram init -- doesn't use serial presence detect.
85 */
Becky Bruce4c77de32008-10-31 17:13:32 -050086phys_size_t
Jon Loeliger80e955c2006-08-22 12:25:27 -050087fixed_sdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050088{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089#if !defined(CONFIG_SYS_RAMBOOT)
90 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger80e955c2006-08-22 12:25:27 -050091 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeligerdebb7352006-04-26 17:58:56 -050092
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
94 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
95 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
96 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
97 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
98 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
Peter Tysere7ee23e2009-07-17 10:14:45 -050099 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
101 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
102 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
103 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
104 ddr->sdram_ocd_cntl = CONFIG_SYS_DDR_OCD_CTRL;
105 ddr->sdram_ocd_status = CONFIG_SYS_DDR_OCD_STATUS;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500106
107#if defined (CONFIG_DDR_ECC)
108 ddr->err_disable = 0x0000008D;
109 ddr->err_sbe = 0x00ff0000;
110#endif
111 asm("sync;isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500112
Jon Loeligerdebb7352006-04-26 17:58:56 -0500113 udelay(500);
114
115#if defined (CONFIG_DDR_ECC)
116 /* Enable ECC checking */
Peter Tysere7ee23e2009-07-17 10:14:45 -0500117 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500118#else
Peter Tysere7ee23e2009-07-17 10:14:45 -0500119 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500121#endif
122 asm("sync; isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500123
Jon Loeligerdebb7352006-04-26 17:58:56 -0500124 udelay(500);
125#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500127}
128#endif /* !defined(CONFIG_SPD_EEPROM) */
129
130
131#if defined(CONFIG_PCI)
Becky Bruce98693b82008-10-31 17:14:00 -0500132static struct pci_controller pci1_hose;
Jon Loeliger80e955c2006-08-22 12:25:27 -0500133#endif /* CONFIG_PCI */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500134
Ed Swarthout63cec582007-08-02 14:09:49 -0500135#ifdef CONFIG_PCI2
136static struct pci_controller pci2_hose;
137#endif /* CONFIG_PCI2 */
138
139int first_free_busno = 0;
140
Jon Loeliger80e955c2006-08-22 12:25:27 -0500141void pci_init_board(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500142{
Ed Swarthout63cec582007-08-02 14:09:49 -0500143#ifdef CONFIG_PCI1
144{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500146 struct pci_controller *hose = &pci1_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500147 struct pci_region *r = hose->regions;
Becky Bruceaf5d1002008-10-31 17:14:14 -0500148 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
149 volatile ccsr_gur_t *gur = &immap->im_gur;
150 uint devdisr = gur->devdisr;
151 uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
152 >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
Kumar Gala3e7b6c12009-09-02 09:03:08 -0500153 int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Kumar Galac2083e02008-10-22 14:38:55 -0500154
Ed Swarthout63cec582007-08-02 14:09:49 -0500155#ifdef DEBUG
Jon Loeligera551cee2008-02-20 14:22:26 -0600156 uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
157 >> MPC8641_PORBMSR_HA_SHIFT;
Ed Swarthout63cec582007-08-02 14:09:49 -0500158 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
159#endif
Kumar Gala3e7b6c12009-09-02 09:03:08 -0500160 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500161 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
162 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
163 if (pci->pme_msg_det) {
164 pci->pme_msg_det = 0xffffffff;
165 debug(" with errors. Clearing. Now 0x%08x",
166 pci->pme_msg_det);
167 }
168 debug("\n");
169
Ed Swarthout63cec582007-08-02 14:09:49 -0500170 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500171 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600172 CONFIG_SYS_PCI1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173 CONFIG_SYS_PCI1_MEM_PHYS,
174 CONFIG_SYS_PCI1_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500175 PCI_REGION_MEM);
176
177 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500178 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600179 CONFIG_SYS_PCI1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180 CONFIG_SYS_PCI1_IO_PHYS,
181 CONFIG_SYS_PCI1_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500182 PCI_REGION_IO);
183
Kumar Galac2083e02008-10-22 14:38:55 -0500184 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500185
186 hose->first_busno=first_free_busno;
Ed Swarthout63cec582007-08-02 14:09:49 -0500187
Kumar Galafb3143b2009-08-03 20:44:55 -0500188 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Ed Swarthout63cec582007-08-02 14:09:49 -0500189
190 first_free_busno=hose->last_busno+1;
191 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
192 hose->first_busno,hose->last_busno);
193
194 /*
195 * Activate ULI1575 legacy chip by performing a fake
196 * memory access. Needed to make ULI RTC work.
197 */
Becky Bruce49f46f32009-02-03 18:10:53 -0600198 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_VIRT
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199 + CONFIG_SYS_PCI1_MEM_SIZE - 0x1000000)));
Ed Swarthout63cec582007-08-02 14:09:49 -0500200
201 } else {
202 puts("PCI-EXPRESS 1: Disabled\n");
203 }
204}
205#else
206 puts("PCI-EXPRESS1: Disabled\n");
207#endif /* CONFIG_PCI1 */
208
209#ifdef CONFIG_PCI2
210{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200211 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500212 struct pci_controller *hose = &pci2_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500213 struct pci_region *r = hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500214
Ed Swarthout63cec582007-08-02 14:09:49 -0500215 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500216 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600217 CONFIG_SYS_PCI2_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200218 CONFIG_SYS_PCI2_MEM_PHYS,
219 CONFIG_SYS_PCI2_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500220 PCI_REGION_MEM);
221
222 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500223 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600224 CONFIG_SYS_PCI2_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 CONFIG_SYS_PCI2_IO_PHYS,
226 CONFIG_SYS_PCI2_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500227 PCI_REGION_IO);
228
Kumar Galac2083e02008-10-22 14:38:55 -0500229 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500230
231 hose->first_busno=first_free_busno;
Ed Swarthout63cec582007-08-02 14:09:49 -0500232
Kumar Galafb3143b2009-08-03 20:44:55 -0500233 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Ed Swarthout63cec582007-08-02 14:09:49 -0500234
235 first_free_busno=hose->last_busno+1;
236 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
237 hose->first_busno,hose->last_busno);
238}
239#else
240 puts("PCI-EXPRESS 2: Disabled\n");
241#endif /* CONFIG_PCI2 */
242
Jon Loeligerdebb7352006-04-26 17:58:56 -0500243}
244
Jon Loeliger13f54332008-02-18 14:01:56 -0600245
Jon Loeligerea9f7392007-11-28 14:47:18 -0600246#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500247void
248ft_board_setup(void *blob, bd_t *bd)
249{
Becky Bruced52082b2008-11-07 13:46:19 -0600250 int off;
251 u64 *tmp;
252 u32 *addrcells;
253
Jon Loeliger13f54332008-02-18 14:01:56 -0600254 ft_cpu_setup(blob, bd);
Jon Loeligerea9f7392007-11-28 14:47:18 -0600255
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500256#ifdef CONFIG_PCI1
Kumar Galac2083e02008-10-22 14:38:55 -0500257 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500258#endif
259#ifdef CONFIG_PCI2
Kumar Galac2083e02008-10-22 14:38:55 -0500260 ft_fsl_pci_setup(blob, "pci1", &pci2_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500261#endif
Becky Bruced52082b2008-11-07 13:46:19 -0600262
263 /*
264 * Warn if it looks like the device tree doesn't match u-boot.
265 * This is just an estimation, based on the location of CCSR,
266 * which is defined by the "reg" property in the soc node.
267 */
268 off = fdt_path_offset(blob, "/soc8641");
269 addrcells = (u32 *)fdt_getprop(blob, 0, "#address-cells", NULL);
270 tmp = (u64 *)fdt_getprop(blob, off, "reg", NULL);
271
272 if (tmp) {
273 u64 addr;
Becky Bruce3f510db2008-11-10 19:45:35 -0600274 if (addrcells && (*addrcells == 1))
Becky Bruced52082b2008-11-07 13:46:19 -0600275 addr = *(u32 *)tmp;
Becky Bruce3f510db2008-11-10 19:45:35 -0600276 else
277 addr = *tmp;
Becky Bruced52082b2008-11-07 13:46:19 -0600278
279 if (addr != CONFIG_SYS_CCSRBAR_PHYS)
280 printf("WARNING: The CCSRBAR address in your .dts "
281 "does not match the address of the CCSR "
282 "in u-boot. This means your .dts might "
283 "be old.\n");
284 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500285}
286#endif
287
Jon Loeligerdebb7352006-04-26 17:58:56 -0500288
Haiying Wang239db372006-07-28 12:41:18 -0400289/*
290 * get_board_sys_clk
291 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
292 */
293
Jon Loeliger80e955c2006-08-22 12:25:27 -0500294unsigned long
295get_board_sys_clk(ulong dummy)
Haiying Wang239db372006-07-28 12:41:18 -0400296{
297 u8 i, go_bit, rd_clks;
298 ulong val = 0;
Kumar Gala048e7ef2009-07-22 10:12:39 -0500299 u8 *pixis_base = (u8 *)PIXIS_BASE;
Haiying Wang239db372006-07-28 12:41:18 -0400300
Kumar Gala048e7ef2009-07-22 10:12:39 -0500301 go_bit = in_8(pixis_base + PIXIS_VCTL);
Haiying Wang239db372006-07-28 12:41:18 -0400302 go_bit &= 0x01;
303
Kumar Gala048e7ef2009-07-22 10:12:39 -0500304 rd_clks = in_8(pixis_base + PIXIS_VCFGEN0);
Haiying Wang239db372006-07-28 12:41:18 -0400305 rd_clks &= 0x1C;
306
307 /*
308 * Only if both go bit and the SCLK bit in VCFGEN0 are set
309 * should we be using the AUX register. Remember, we also set the
310 * GO bit to boot from the alternate bank on the on-board flash
311 */
312
313 if (go_bit) {
314 if (rd_clks == 0x1c)
Kumar Gala048e7ef2009-07-22 10:12:39 -0500315 i = in_8(pixis_base + PIXIS_AUX);
Haiying Wang239db372006-07-28 12:41:18 -0400316 else
Kumar Gala048e7ef2009-07-22 10:12:39 -0500317 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang239db372006-07-28 12:41:18 -0400318 } else {
Kumar Gala048e7ef2009-07-22 10:12:39 -0500319 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang239db372006-07-28 12:41:18 -0400320 }
321
322 i &= 0x07;
323
324 switch (i) {
325 case 0:
326 val = 33000000;
327 break;
328 case 1:
329 val = 40000000;
330 break;
331 case 2:
332 val = 50000000;
333 break;
334 case 3:
335 val = 66000000;
336 break;
337 case 4:
338 val = 83000000;
339 break;
340 case 5:
341 val = 100000000;
342 break;
343 case 6:
344 val = 134000000;
345 break;
346 case 7:
347 val = 166000000;
348 break;
349 }
350
351 return val;
352}
Ben Warren0b252f52008-08-31 21:41:08 -0700353
354int board_eth_init(bd_t *bis)
355{
356 /* Initialize TSECs */
357 cpu_eth_init(bis);
358 return pci_eth_init(bis);
359}
Peter Tyser4ef630d2009-02-05 11:25:25 -0600360
361void board_reset(void)
362{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500363 u8 *pixis_base = (u8 *)PIXIS_BASE;
364
365 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser4ef630d2009-02-05 11:25:25 -0600366
367 while (1)
368 ;
369}
Becky Brucef6ef8b72009-03-31 18:38:37 -0500370
Kumar Gala7649a592009-03-31 23:02:38 -0500371#ifdef CONFIG_MP
Becky Brucef6ef8b72009-03-31 18:38:37 -0500372extern void cpu_mp_lmb_reserve(struct lmb *lmb);
373
374void board_lmb_reserve(struct lmb *lmb)
375{
376 cpu_mp_lmb_reserve(lmb);
377}
378#endif