blob: 812111db10070b47098e7364fb446848d568b9ef [file] [log] [blame]
Jon Loeliger5c8aa972006-04-26 17:58:56 -05001/*
Kumar Galae78f6652010-07-09 00:02:34 -05002 * Copyright 2006, 2007, 2010 Freescale Semiconductor.
Jon Loeliger5c8aa972006-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 Swarthout91080f72007-08-02 14:09:49 -050014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jon Loeliger5c8aa972006-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 Gala9bbd6432009-04-02 13:22:48 -050027#include <asm/fsl_pci.h>
Kumar Galacad506c2008-08-26 15:01:35 -050028#include <asm/fsl_ddr_sdram.h>
Haiying Wang57b6e9c2007-01-22 12:37:30 -060029#include <asm/io.h>
Jon Loeliger6160aa42007-11-28 14:47:18 -060030#include <libfdt.h>
31#include <fdt_support.h>
Ben Warren65b86232008-08-31 21:41:08 -070032#include <netdev.h>
Jon Loeliger5c8aa972006-04-26 17:58:56 -050033
Becky Brucecc064ed2008-10-31 17:13:32 -050034phys_size_t fixed_sdram(void);
Jon Loeliger5c8aa972006-04-26 17:58:56 -050035
Jon Loeliger4fbb09c2006-08-22 12:25:27 -050036int board_early_init_f(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050037{
Jon Loeligere65e32e2006-05-31 12:44:44 -050038 return 0;
Jon Loeliger5c8aa972006-04-26 17:58:56 -050039}
40
Jon Loeliger4fbb09c2006-08-22 12:25:27 -050041int checkboard(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050042{
Kumar Galaaba63972009-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 Bruce977d7052009-02-12 10:43:32 -060057#ifdef CONFIG_PHYS_64BIT
58 printf (" 36-bit physical address map\n");
59#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -050060 return 0;
61}
62
york93799ca2010-07-02 22:25:52 +000063const char *board_hwconfig = "foo:bar=baz";
64const char *cpu_hwconfig = "foo:bar=baz";
Jon Loeliger5c8aa972006-04-26 17:58:56 -050065
Becky Brucebd99ae72008-06-09 16:03:40 -050066phys_size_t
Jon Loeliger5c8aa972006-04-26 17:58:56 -050067initdram(int board_type)
68{
Becky Brucecc064ed2008-10-31 17:13:32 -050069 phys_size_t dram_size = 0;
Jon Loeliger5c8aa972006-04-26 17:58:56 -050070
71#if defined(CONFIG_SPD_EEPROM)
Kumar Galacad506c2008-08-26 15:01:35 -050072 dram_size = fsl_ddr_sdram();
Jon Loeliger5c8aa972006-04-26 17:58:56 -050073#else
Jon Loeliger4fbb09c2006-08-22 12:25:27 -050074 dram_size = fixed_sdram();
Jon Loeliger5c8aa972006-04-26 17:58:56 -050075#endif
76
Timur Tabi107e9cd2010-03-29 12:51:07 -050077 setup_ddr_bat(dram_size);
78
Jon Loeliger5c8aa972006-04-26 17:58:56 -050079 puts(" DDR: ");
80 return dram_size;
81}
82
Jon Loeliger5c8aa972006-04-26 17:58:56 -050083
Jon Loeliger5c8aa972006-04-26 17:58:56 -050084#if !defined(CONFIG_SPD_EEPROM)
Jon Loeliger465b9d82006-04-27 10:15:16 -050085/*
86 * Fixed sdram init -- doesn't use serial presence detect.
87 */
Becky Brucecc064ed2008-10-31 17:13:32 -050088phys_size_t
Jon Loeliger4fbb09c2006-08-22 12:25:27 -050089fixed_sdram(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050090{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091#if !defined(CONFIG_SYS_RAMBOOT)
92 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeliger4fbb09c2006-08-22 12:25:27 -050093 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
Jon Loeliger5c8aa972006-04-26 17:58:56 -050094
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
96 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
97 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
98 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
99 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
100 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500101 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200102 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
103 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
104 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
105 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
106 ddr->sdram_ocd_cntl = CONFIG_SYS_DDR_OCD_CTRL;
107 ddr->sdram_ocd_status = CONFIG_SYS_DDR_OCD_STATUS;
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500108
109#if defined (CONFIG_DDR_ECC)
110 ddr->err_disable = 0x0000008D;
111 ddr->err_sbe = 0x00ff0000;
112#endif
113 asm("sync;isync");
Jon Loeligere65e32e2006-05-31 12:44:44 -0500114
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500115 udelay(500);
116
117#if defined (CONFIG_DDR_ECC)
118 /* Enable ECC checking */
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500119 ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000);
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500120#else
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500121 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200122 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500123#endif
124 asm("sync; isync");
Jon Loeligere65e32e2006-05-31 12:44:44 -0500125
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500126 udelay(500);
127#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200128 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500129}
130#endif /* !defined(CONFIG_SPD_EEPROM) */
131
132
133#if defined(CONFIG_PCI)
Kumar Galae78f6652010-07-09 00:02:34 -0500134static struct pci_controller pcie1_hose;
Jon Loeliger4fbb09c2006-08-22 12:25:27 -0500135#endif /* CONFIG_PCI */
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500136
Kumar Galae78f6652010-07-09 00:02:34 -0500137#ifdef CONFIG_PCIE2
138static struct pci_controller pcie2_hose;
139#endif /* CONFIG_PCIE2 */
Ed Swarthout91080f72007-08-02 14:09:49 -0500140
141int first_free_busno = 0;
142
Jon Loeliger4fbb09c2006-08-22 12:25:27 -0500143void pci_init_board(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500144{
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500145 struct fsl_pci_info pci_info[2];
146 int pcie_ep;
147 int num = 0;
148
Kumar Galae78f6652010-07-09 00:02:34 -0500149#ifdef CONFIG_PCIE1
Becky Bruce6c2bec32008-10-31 17:14:14 -0500150 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
151 volatile ccsr_gur_t *gur = &immap->im_gur;
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500152 uint devdisr = in_be32(&gur->devdisr);
Becky Bruce6c2bec32008-10-31 17:14:14 -0500153 uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
154 >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
Kumar Gala666ced12009-09-02 09:03:08 -0500155 int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Kumar Gala7772ccd2008-10-22 14:38:55 -0500156
Kumar Gala666ced12009-09-02 09:03:08 -0500157 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500158 SET_STD_PCIE_INFO(pci_info[num], 1);
159 pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500160 printf("PCIE1: connected to ULI as %s (base addr %lx)\n",
161 pcie_ep ? "Endpoint" : "Root Complex",
162 pci_info[num].regs);
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500163 first_free_busno = fsl_pci_init_port(&pci_info[num++],
164 &pcie1_hose, first_free_busno);
Ed Swarthout91080f72007-08-02 14:09:49 -0500165
166 /*
167 * Activate ULI1575 legacy chip by performing a fake
168 * memory access. Needed to make ULI RTC work.
169 */
Kumar Galae78f6652010-07-09 00:02:34 -0500170 in_be32((unsigned *) ((char *)(CONFIG_SYS_PCIE1_MEM_VIRT
171 + CONFIG_SYS_PCIE1_MEM_SIZE - 0x1000000)));
Ed Swarthout91080f72007-08-02 14:09:49 -0500172
173 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500174 puts("PCIE1: disabled\n");
Ed Swarthout91080f72007-08-02 14:09:49 -0500175 }
Ed Swarthout91080f72007-08-02 14:09:49 -0500176#else
Peter Tyser2b91f712010-10-29 17:59:24 -0500177 puts("PCIE1: disabled\n");
Kumar Galae78f6652010-07-09 00:02:34 -0500178#endif /* CONFIG_PCIE1 */
Ed Swarthout91080f72007-08-02 14:09:49 -0500179
Kumar Galae78f6652010-07-09 00:02:34 -0500180#ifdef CONFIG_PCIE2
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500181 SET_STD_PCIE_INFO(pci_info[num], 2);
182 pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500183 printf("PCIE2: connected as %s (base addr %lx)\n",
184 pcie_ep ? "Endpoint" : "Root Complex",
185 pci_info[num].regs);
Peter Tyser8d6f9fa2010-09-29 13:37:26 -0500186 first_free_busno = fsl_pci_init_port(&pci_info[num++],
187 &pcie2_hose, first_free_busno);
Ed Swarthout91080f72007-08-02 14:09:49 -0500188#else
Peter Tyser2b91f712010-10-29 17:59:24 -0500189 puts("PCIE2: disabled\n");
Kumar Galae78f6652010-07-09 00:02:34 -0500190#endif /* CONFIG_PCIE2 */
Ed Swarthout91080f72007-08-02 14:09:49 -0500191
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500192}
193
Jon Loeliger84640c92008-02-18 14:01:56 -0600194
Jon Loeliger6160aa42007-11-28 14:47:18 -0600195#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500196void
197ft_board_setup(void *blob, bd_t *bd)
198{
Becky Bruce48d3ce22008-11-07 13:46:19 -0600199 int off;
200 u64 *tmp;
201 u32 *addrcells;
202
Jon Loeliger84640c92008-02-18 14:01:56 -0600203 ft_cpu_setup(blob, bd);
Jon Loeliger6160aa42007-11-28 14:47:18 -0600204
Kumar Galad0f27d32010-07-08 22:37:44 -0500205 FT_FSL_PCI_SETUP;
Becky Bruce48d3ce22008-11-07 13:46:19 -0600206
207 /*
208 * Warn if it looks like the device tree doesn't match u-boot.
209 * This is just an estimation, based on the location of CCSR,
210 * which is defined by the "reg" property in the soc node.
211 */
212 off = fdt_path_offset(blob, "/soc8641");
213 addrcells = (u32 *)fdt_getprop(blob, 0, "#address-cells", NULL);
214 tmp = (u64 *)fdt_getprop(blob, off, "reg", NULL);
215
216 if (tmp) {
217 u64 addr;
Becky Bruceeccb5e72008-11-10 19:45:35 -0600218 if (addrcells && (*addrcells == 1))
Becky Bruce48d3ce22008-11-07 13:46:19 -0600219 addr = *(u32 *)tmp;
Becky Bruceeccb5e72008-11-10 19:45:35 -0600220 else
221 addr = *tmp;
Becky Bruce48d3ce22008-11-07 13:46:19 -0600222
223 if (addr != CONFIG_SYS_CCSRBAR_PHYS)
224 printf("WARNING: The CCSRBAR address in your .dts "
225 "does not match the address of the CCSR "
226 "in u-boot. This means your .dts might "
227 "be old.\n");
228 }
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500229}
230#endif
231
Jon Loeliger72f8a8e2006-05-31 11:24:28 -0500232
Haiying Wang43d624d2006-07-28 12:41:18 -0400233/*
234 * get_board_sys_clk
235 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
236 */
237
Jon Loeliger4fbb09c2006-08-22 12:25:27 -0500238unsigned long
239get_board_sys_clk(ulong dummy)
Haiying Wang43d624d2006-07-28 12:41:18 -0400240{
241 u8 i, go_bit, rd_clks;
242 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500243 u8 *pixis_base = (u8 *)PIXIS_BASE;
Haiying Wang43d624d2006-07-28 12:41:18 -0400244
Kumar Gala146c4b22009-07-22 10:12:39 -0500245 go_bit = in_8(pixis_base + PIXIS_VCTL);
Haiying Wang43d624d2006-07-28 12:41:18 -0400246 go_bit &= 0x01;
247
Kumar Gala146c4b22009-07-22 10:12:39 -0500248 rd_clks = in_8(pixis_base + PIXIS_VCFGEN0);
Haiying Wang43d624d2006-07-28 12:41:18 -0400249 rd_clks &= 0x1C;
250
251 /*
252 * Only if both go bit and the SCLK bit in VCFGEN0 are set
253 * should we be using the AUX register. Remember, we also set the
254 * GO bit to boot from the alternate bank on the on-board flash
255 */
256
257 if (go_bit) {
258 if (rd_clks == 0x1c)
Kumar Gala146c4b22009-07-22 10:12:39 -0500259 i = in_8(pixis_base + PIXIS_AUX);
Haiying Wang43d624d2006-07-28 12:41:18 -0400260 else
Kumar Gala146c4b22009-07-22 10:12:39 -0500261 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang43d624d2006-07-28 12:41:18 -0400262 } else {
Kumar Gala146c4b22009-07-22 10:12:39 -0500263 i = in_8(pixis_base + PIXIS_SPD);
Haiying Wang43d624d2006-07-28 12:41:18 -0400264 }
265
266 i &= 0x07;
267
268 switch (i) {
269 case 0:
270 val = 33000000;
271 break;
272 case 1:
273 val = 40000000;
274 break;
275 case 2:
276 val = 50000000;
277 break;
278 case 3:
279 val = 66000000;
280 break;
281 case 4:
282 val = 83000000;
283 break;
284 case 5:
285 val = 100000000;
286 break;
287 case 6:
288 val = 134000000;
289 break;
290 case 7:
291 val = 166000000;
292 break;
293 }
294
295 return val;
296}
Ben Warren65b86232008-08-31 21:41:08 -0700297
298int board_eth_init(bd_t *bis)
299{
300 /* Initialize TSECs */
301 cpu_eth_init(bis);
302 return pci_eth_init(bis);
303}
Peter Tyser69454402009-02-05 11:25:25 -0600304
305void board_reset(void)
306{
Kumar Gala146c4b22009-07-22 10:12:39 -0500307 u8 *pixis_base = (u8 *)PIXIS_BASE;
308
309 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser69454402009-02-05 11:25:25 -0600310
311 while (1)
312 ;
313}
Becky Brucebd9c0cf2009-03-31 18:38:37 -0500314
Kumar Gala56d150e2009-03-31 23:02:38 -0500315#ifdef CONFIG_MP
Becky Brucebd9c0cf2009-03-31 18:38:37 -0500316extern void cpu_mp_lmb_reserve(struct lmb *lmb);
317
318void board_lmb_reserve(struct lmb *lmb)
319{
320 cpu_mp_lmb_reserve(lmb);
321}
322#endif