blob: 1a08afa69ec2b8b462a32eb81458101747d3d6a8 [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
Jon Loeliger4ce91772007-08-15 12:20:40 -050034#include "../common/pixis.h"
Jon Loeliger4d3d7292006-05-31 11:24:28 -050035
Becky Bruce4c77de32008-10-31 17:13:32 -050036phys_size_t fixed_sdram(void);
Jon Loeligerdebb7352006-04-26 17:58:56 -050037
Jon Loeliger80e955c2006-08-22 12:25:27 -050038int board_early_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050039{
Jon Loeligercb5965f2006-05-31 12:44:44 -050040 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050041}
42
Jon Loeliger80e955c2006-08-22 12:25:27 -050043int checkboard(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050044{
Kumar Gala9af9c6b2009-07-15 13:45:00 -050045 u8 vboot;
46 u8 *pixis_base = (u8 *)PIXIS_BASE;
47
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));
52
53 vboot = in_8(pixis_base + PIXIS_VBOOT);
54 if (vboot & PIXIS_VBOOT_FMAP)
55 printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6));
56 else
57 puts ("Promjet\n");
58
Becky Bruce2331e182009-02-12 10:43:32 -060059#ifdef CONFIG_PHYS_64BIT
60 printf (" 36-bit physical address map\n");
61#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -050062 return 0;
63}
64
65
Becky Bruce9973e3c2008-06-09 16:03:40 -050066phys_size_t
Jon Loeligerdebb7352006-04-26 17:58:56 -050067initdram(int board_type)
68{
Becky Bruce4c77de32008-10-31 17:13:32 -050069 phys_size_t dram_size = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050070
71#if defined(CONFIG_SPD_EEPROM)
Kumar Gala6a8e5692008-08-26 15:01:35 -050072 dram_size = fsl_ddr_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050073#else
Jon Loeliger80e955c2006-08-22 12:25:27 -050074 dram_size = fixed_sdram();
Jon Loeligerdebb7352006-04-26 17:58:56 -050075#endif
76
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077#if defined(CONFIG_SYS_RAMBOOT)
Jon Loeligerdebb7352006-04-26 17:58:56 -050078 puts(" DDR: ");
79 return dram_size;
80#endif
Jon Loeligercb5965f2006-05-31 12:44:44 -050081
Jon Loeligerdebb7352006-04-26 17:58:56 -050082 puts(" DDR: ");
83 return dram_size;
84}
85
86
Jon Loeligerdebb7352006-04-26 17:58:56 -050087#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger5c9efb32006-04-27 10:15:16 -050088/*
89 * Fixed sdram init -- doesn't use serial presence detect.
90 */
Becky Bruce4c77de32008-10-31 17:13:32 -050091phys_size_t
Jon Loeliger80e955c2006-08-22 12:25:27 -050092fixed_sdram(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050093{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094#if !defined(CONFIG_SYS_RAMBOOT)
95 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger80e955c2006-08-22 12:25:27 -050096 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeligerdebb7352006-04-26 17:58:56 -050097
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098 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;
Peter Tysere7ee23e2009-07-17 10:14:45 -0500104 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105 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;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500111
112#if defined (CONFIG_DDR_ECC)
113 ddr->err_disable = 0x0000008D;
114 ddr->err_sbe = 0x00ff0000;
115#endif
116 asm("sync;isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500117
Jon Loeligerdebb7352006-04-26 17:58:56 -0500118 udelay(500);
119
120#if defined (CONFIG_DDR_ECC)
121 /* Enable ECC checking */
Peter Tysere7ee23e2009-07-17 10:14:45 -0500122 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500123#else
Peter Tysere7ee23e2009-07-17 10:14:45 -0500124 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200125 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500126#endif
127 asm("sync; isync");
Jon Loeligercb5965f2006-05-31 12:44:44 -0500128
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129 udelay(500);
130#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500132}
133#endif /* !defined(CONFIG_SPD_EEPROM) */
134
135
136#if defined(CONFIG_PCI)
Becky Bruce98693b82008-10-31 17:14:00 -0500137static struct pci_controller pci1_hose;
Jon Loeliger80e955c2006-08-22 12:25:27 -0500138#endif /* CONFIG_PCI */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500139
Ed Swarthout63cec582007-08-02 14:09:49 -0500140#ifdef CONFIG_PCI2
141static struct pci_controller pci2_hose;
142#endif /* CONFIG_PCI2 */
143
144int first_free_busno = 0;
145
Jon Loeliger80e955c2006-08-22 12:25:27 -0500146void pci_init_board(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500147{
Ed Swarthout63cec582007-08-02 14:09:49 -0500148#ifdef CONFIG_PCI1
149{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200150 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500151 struct pci_controller *hose = &pci1_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500152 struct pci_region *r = hose->regions;
Becky Bruceaf5d1002008-10-31 17:14:14 -0500153 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;
Kumar Gala865f24d2009-09-02 09:03:08 -0500158 int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Kumar Galac2083e02008-10-22 14:38:55 -0500159
Ed Swarthout63cec582007-08-02 14:09:49 -0500160#ifdef DEBUG
Jon Loeligera551cee2008-02-20 14:22:26 -0600161 uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
162 >> MPC8641_PORBMSR_HA_SHIFT;
Ed Swarthout63cec582007-08-02 14:09:49 -0500163 uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
164#endif
Kumar Gala865f24d2009-09-02 09:03:08 -0500165 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500166 debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
167 debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
168 if (pci->pme_msg_det) {
169 pci->pme_msg_det = 0xffffffff;
170 debug(" with errors. Clearing. Now 0x%08x",
171 pci->pme_msg_det);
172 }
173 debug("\n");
174
Ed Swarthout63cec582007-08-02 14:09:49 -0500175 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500176 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600177 CONFIG_SYS_PCI1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 CONFIG_SYS_PCI1_MEM_PHYS,
179 CONFIG_SYS_PCI1_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500180 PCI_REGION_MEM);
181
182 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500183 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600184 CONFIG_SYS_PCI1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185 CONFIG_SYS_PCI1_IO_PHYS,
186 CONFIG_SYS_PCI1_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500187 PCI_REGION_IO);
188
Kumar Galac2083e02008-10-22 14:38:55 -0500189 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500190
191 hose->first_busno=first_free_busno;
Ed Swarthout63cec582007-08-02 14:09:49 -0500192
Kumar Galafb3143b2009-08-03 20:44:55 -0500193 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Ed Swarthout63cec582007-08-02 14:09:49 -0500194
195 first_free_busno=hose->last_busno+1;
196 printf (" PCI-EXPRESS 1 on bus %02x - %02x\n",
197 hose->first_busno,hose->last_busno);
198
199 /*
200 * Activate ULI1575 legacy chip by performing a fake
201 * memory access. Needed to make ULI RTC work.
202 */
Becky Bruce49f46f32009-02-03 18:10:53 -0600203 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_VIRT
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200204 + CONFIG_SYS_PCI1_MEM_SIZE - 0x1000000)));
Ed Swarthout63cec582007-08-02 14:09:49 -0500205
206 } else {
207 puts("PCI-EXPRESS 1: Disabled\n");
208 }
209}
210#else
211 puts("PCI-EXPRESS1: Disabled\n");
212#endif /* CONFIG_PCI1 */
213
214#ifdef CONFIG_PCI2
215{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200216 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR;
Ed Swarthout63cec582007-08-02 14:09:49 -0500217 struct pci_controller *hose = &pci2_hose;
Kumar Galac2083e02008-10-22 14:38:55 -0500218 struct pci_region *r = hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500219
Ed Swarthout63cec582007-08-02 14:09:49 -0500220 /* outbound memory */
Kumar Galac2083e02008-10-22 14:38:55 -0500221 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600222 CONFIG_SYS_PCI2_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200223 CONFIG_SYS_PCI2_MEM_PHYS,
224 CONFIG_SYS_PCI2_MEM_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500225 PCI_REGION_MEM);
226
227 /* outbound io */
Kumar Galac2083e02008-10-22 14:38:55 -0500228 pci_set_region(r++,
Becky Bruce49f46f32009-02-03 18:10:53 -0600229 CONFIG_SYS_PCI2_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200230 CONFIG_SYS_PCI2_IO_PHYS,
231 CONFIG_SYS_PCI2_IO_SIZE,
Ed Swarthout63cec582007-08-02 14:09:49 -0500232 PCI_REGION_IO);
233
Kumar Galac2083e02008-10-22 14:38:55 -0500234 hose->region_count = r - hose->regions;
Ed Swarthout63cec582007-08-02 14:09:49 -0500235
236 hose->first_busno=first_free_busno;
Ed Swarthout63cec582007-08-02 14:09:49 -0500237
Kumar Galafb3143b2009-08-03 20:44:55 -0500238 fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
Ed Swarthout63cec582007-08-02 14:09:49 -0500239
240 first_free_busno=hose->last_busno+1;
241 printf (" PCI-EXPRESS 2 on bus %02x - %02x\n",
242 hose->first_busno,hose->last_busno);
243}
244#else
245 puts("PCI-EXPRESS 2: Disabled\n");
246#endif /* CONFIG_PCI2 */
247
Jon Loeligerdebb7352006-04-26 17:58:56 -0500248}
249
Jon Loeliger13f54332008-02-18 14:01:56 -0600250
Jon Loeligerea9f7392007-11-28 14:47:18 -0600251#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500252void
253ft_board_setup(void *blob, bd_t *bd)
254{
Becky Bruced52082b2008-11-07 13:46:19 -0600255 int off;
256 u64 *tmp;
257 u32 *addrcells;
258
Jon Loeliger13f54332008-02-18 14:01:56 -0600259 ft_cpu_setup(blob, bd);
Jon Loeligerea9f7392007-11-28 14:47:18 -0600260
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500261#ifdef CONFIG_PCI1
Kumar Galac2083e02008-10-22 14:38:55 -0500262 ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500263#endif
264#ifdef CONFIG_PCI2
Kumar Galac2083e02008-10-22 14:38:55 -0500265 ft_fsl_pci_setup(blob, "pci1", &pci2_hose);
Ed Swarthoutf75e89e2007-08-30 01:58:48 -0500266#endif
Becky Bruced52082b2008-11-07 13:46:19 -0600267
268 /*
269 * Warn if it looks like the device tree doesn't match u-boot.
270 * This is just an estimation, based on the location of CCSR,
271 * which is defined by the "reg" property in the soc node.
272 */
273 off = fdt_path_offset(blob, "/soc8641");
274 addrcells = (u32 *)fdt_getprop(blob, 0, "#address-cells", NULL);
275 tmp = (u64 *)fdt_getprop(blob, off, "reg", NULL);
276
277 if (tmp) {
278 u64 addr;
Becky Bruce3f510db2008-11-10 19:45:35 -0600279 if (addrcells && (*addrcells == 1))
Becky Bruced52082b2008-11-07 13:46:19 -0600280 addr = *(u32 *)tmp;
Becky Bruce3f510db2008-11-10 19:45:35 -0600281 else
282 addr = *tmp;
Becky Bruced52082b2008-11-07 13:46:19 -0600283
284 if (addr != CONFIG_SYS_CCSRBAR_PHYS)
285 printf("WARNING: The CCSRBAR address in your .dts "
286 "does not match the address of the CCSR "
287 "in u-boot. This means your .dts might "
288 "be old.\n");
289 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500290}
291#endif
292
Jon Loeligerdebb7352006-04-26 17:58:56 -0500293
Haiying Wang239db372006-07-28 12:41:18 -0400294/*
295 * get_board_sys_clk
296 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
297 */
298
Jon Loeliger80e955c2006-08-22 12:25:27 -0500299unsigned long
300get_board_sys_clk(ulong dummy)
Haiying Wang239db372006-07-28 12:41:18 -0400301{
302 u8 i, go_bit, rd_clks;
303 ulong val = 0;
Kumar Gala048e7ef2009-07-22 10:12:39 -0500304 u8 *pixis_base = (u8 *)PIXIS_BASE;
Haiying Wang239db372006-07-28 12:41:18 -0400305
Kumar Gala048e7ef2009-07-22 10:12:39 -0500306 go_bit = in_8(pixis_base + PIXIS_VCTL);
Haiying Wang239db372006-07-28 12:41:18 -0400307 go_bit &= 0x01;
308
Kumar Gala048e7ef2009-07-22 10:12:39 -0500309 rd_clks = in_8(pixis_base + PIXIS_VCFGEN0);
Haiying Wang239db372006-07-28 12:41:18 -0400310 rd_clks &= 0x1C;
311
312 /*
313 * Only if both go bit and the SCLK bit in VCFGEN0 are set
314 * should we be using the AUX register. Remember, we also set the
315 * GO bit to boot from the alternate bank on the on-board flash
316 */
317
318 if (go_bit) {
319 if (rd_clks == 0x1c)
Kumar Gala048e7ef2009-07-22 10:12:39 -0500320 i = in_8(pixis_base + PIXIS_AUX);
Haiying Wang239db372006-07-28 12:41:18 -0400321 else
Kumar Gala048e7ef2009-07-22 10:12:39 -0500322 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang239db372006-07-28 12:41:18 -0400323 } else {
Kumar Gala048e7ef2009-07-22 10:12:39 -0500324 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang239db372006-07-28 12:41:18 -0400325 }
326
327 i &= 0x07;
328
329 switch (i) {
330 case 0:
331 val = 33000000;
332 break;
333 case 1:
334 val = 40000000;
335 break;
336 case 2:
337 val = 50000000;
338 break;
339 case 3:
340 val = 66000000;
341 break;
342 case 4:
343 val = 83000000;
344 break;
345 case 5:
346 val = 100000000;
347 break;
348 case 6:
349 val = 134000000;
350 break;
351 case 7:
352 val = 166000000;
353 break;
354 }
355
356 return val;
357}
Ben Warren0b252f52008-08-31 21:41:08 -0700358
359int board_eth_init(bd_t *bis)
360{
361 /* Initialize TSECs */
362 cpu_eth_init(bis);
363 return pci_eth_init(bis);
364}
Peter Tyser4ef630d2009-02-05 11:25:25 -0600365
366void board_reset(void)
367{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500368 u8 *pixis_base = (u8 *)PIXIS_BASE;
369
370 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser4ef630d2009-02-05 11:25:25 -0600371
372 while (1)
373 ;
374}
Becky Brucef6ef8b72009-03-31 18:38:37 -0500375
Kumar Gala7649a592009-03-31 23:02:38 -0500376#ifdef CONFIG_MP
Becky Brucef6ef8b72009-03-31 18:38:37 -0500377extern void cpu_mp_lmb_reserve(struct lmb *lmb);
378
379void board_lmb_reserve(struct lmb *lmb)
380{
381 cpu_mp_lmb_reserve(lmb);
382}
383#endif