blob: a40be13906d1b8a17391ad5647c8d065d3ff8ecc [file] [log] [blame]
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05001/*
Kumar Gala6525d512010-07-08 22:37:44 -05002 * Copyright 2007-2010 Freescale Semiconductor, Inc.
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -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
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * 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 <command.h>
25#include <pci.h>
26#include <asm/processor.h>
27#include <asm/mmu.h>
28#include <asm/cache.h>
29#include <asm/immap_85xx.h>
30#include <asm/fsl_pci.h>
31#include <asm/fsl_ddr_sdram.h>
32#include <asm/io.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060033#include <asm/fsl_serdes.h>
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050034#include <miiphy.h>
35#include <libfdt.h>
36#include <fdt_support.h>
37#include <tsec.h>
38#include <asm/fsl_law.h>
39#include <asm/mp.h>
Roy Zang29c35182009-06-30 13:56:23 +080040#include <netdev.h>
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050041
Timur Tabi5a469602010-04-01 10:49:42 -050042#include "../common/ngpixis.h"
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050043#include "../common/sgmii_riser.h"
44
45DECLARE_GLOBAL_DATA_PTR;
46
47phys_size_t fixed_sdram(void);
48
49int checkboard(void)
50{
Timur Tabi5a469602010-04-01 10:49:42 -050051 u8 sw;
Kumar Gala6bb5b412009-07-14 22:42:01 -050052
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050053 puts("Board: P2020DS ");
54#ifdef CONFIG_PHYS_64BIT
55 puts("(36-bit addrmap) ");
56#endif
Kumar Gala6bb5b412009-07-14 22:42:01 -050057
Timur Tabi5a469602010-04-01 10:49:42 -050058 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
59 in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver));
Kumar Gala6bb5b412009-07-14 22:42:01 -050060
Timur Tabi5a469602010-04-01 10:49:42 -050061 sw = in_8(&PIXIS_SW(PIXIS_LBMAP_SWITCH));
62 sw = (sw & PIXIS_LBMAP_MASK) >> PIXIS_LBMAP_SHIFT;
63
64 if (sw < 0x8)
65 /* The lower two bits are the actual vbank number */
66 printf("vBank: %d\n", sw & 3);
67 else
68 puts("Promjet\n");
Kumar Gala6bb5b412009-07-14 22:42:01 -050069
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050070 return 0;
71}
72
73phys_size_t initdram(int board_type)
74{
75 phys_size_t dram_size = 0;
76
77 puts("Initializing....");
78
york394c46c2010-07-02 22:25:58 +000079#ifdef CONFIG_DDR_SPD
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050080 dram_size = fsl_ddr_sdram();
81#else
82 dram_size = fixed_sdram();
83
84 if (set_ddr_laws(CONFIG_SYS_DDR_SDRAM_BASE,
85 dram_size,
86 LAW_TRGT_IF_DDR) < 0) {
87 printf("ERROR setting Local Access Windows for DDR\n");
88 return 0;
89 };
90#endif
91 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
92 dram_size *= 0x100000;
93
94 puts(" DDR: ");
95 return dram_size;
96}
97
york394c46c2010-07-02 22:25:58 +000098#if !defined(CONFIG_DDR_SPD)
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050099/*
100 * Fixed sdram init -- doesn't use serial presence detect.
101 */
102
103phys_size_t fixed_sdram(void)
104{
105 volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC85xx_DDR_ADDR;
106 uint d_init;
107
108 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
109 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
110 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
111 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
112 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
113 ddr->sdram_md_cntl = CONFIG_SYS_DDR_MODE_CTRL;
114 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
115 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
116 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
117 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
118 ddr->ddr_zq_cntl = CONFIG_SYS_DDR_ZQ_CNTL;
119 ddr->ddr_wrlvl_cntl = CONFIG_SYS_DDR_WRLVL_CNTL;
120 ddr->ddr_cdr1 = CONFIG_SYS_DDR_CDR1;
121 ddr->timing_cfg_4 = CONFIG_SYS_DDR_TIMING_4;
122 ddr->timing_cfg_5 = CONFIG_SYS_DDR_TIMING_5;
123
124 if (!strcmp("performance", getenv("perf_mode"))) {
125 /* Performance Mode Values */
126
127 ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG_PERF;
128 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS_PERF;
129 ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS_PERF;
130 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1_PERF;
131 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2_PERF;
132
133 asm("sync;isync");
134
135 udelay(500);
136
137 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL_PERF;
138 } else {
139 /* Stable Mode Values */
140
141 ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG;
142 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
143 ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS;
144 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
145 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
146
147 /* ECC will be assumed in stable mode */
148 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
149 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
150 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
151
152 asm("sync;isync");
153
154 udelay(500);
155
156 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
157 }
158
159#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
160 d_init = 1;
161 debug("DDR - 1st controller: memory initializing\n");
162 /*
163 * Poll until memory is initialized.
164 * 512 Meg at 400 might hit this 200 times or so.
165 */
166 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
167 udelay(1000);
168 debug("DDR: memory initialized\n\n");
169 asm("sync; isync");
170 udelay(500);
171#endif
172
173 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
174}
175
176#endif
177
178#ifdef CONFIG_PCIE1
179static struct pci_controller pcie1_hose;
180#endif
181
182#ifdef CONFIG_PCIE2
183static struct pci_controller pcie2_hose;
184#endif
185
186#ifdef CONFIG_PCIE3
187static struct pci_controller pcie3_hose;
188#endif
189
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500190#ifdef CONFIG_PCI
191void pci_init_board(void)
192{
193 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala4958af82009-09-03 09:42:01 -0500194 struct fsl_pci_info pci_info[3];
Kumar Gala9263e822009-11-04 13:01:51 -0600195 u32 devdisr, pordevsr, io_sel;
Kumar Gala4958af82009-09-03 09:42:01 -0500196 int first_free_busno = 0;
197 int num = 0;
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500198
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500199 int pcie_ep, pcie_configured;
Kumar Gala4958af82009-09-03 09:42:01 -0500200
201 devdisr = in_be32(&gur->devdisr);
202 pordevsr = in_be32(&gur->pordevsr);
203 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500204
Kumar Gala9263e822009-11-04 13:01:51 -0600205 debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500206
Kumar Gala4958af82009-09-03 09:42:01 -0500207 if (!(pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
Peter Tysere7060dc2010-10-29 17:59:25 -0500208 printf("eTSEC2 is in sgmii mode.\n");
Kumar Gala4958af82009-09-03 09:42:01 -0500209 if (!(pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
Peter Tysere7060dc2010-10-29 17:59:25 -0500210 printf("eTSEC3 is in sgmii mode.\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500211
Kumar Gala4958af82009-09-03 09:42:01 -0500212 puts("\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500213#ifdef CONFIG_PCIE2
Kumar Gala5d27e022010-12-15 04:55:20 -0600214 pcie_configured = is_serdes_configured(PCIE2);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500215
216 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)) {
Kumar Gala4958af82009-09-03 09:42:01 -0500217 SET_STD_PCIE_INFO(pci_info[num], 2);
Kumar Gala9263e822009-11-04 13:01:51 -0600218 pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500219 printf("PCIE2: connected to ULI as %s (base addr %lx)\n",
220 pcie_ep ? "Endpoint" : "Root Complex",
221 pci_info[num].regs);
Kumar Gala4958af82009-09-03 09:42:01 -0500222 first_free_busno = fsl_pci_init_port(&pci_info[num++],
Kumar Gala01471d52009-11-04 01:29:04 -0600223 &pcie2_hose, first_free_busno);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500224
225 /*
226 * The workaround doesn't work on p2020 because the location
227 * we try and read isn't valid on p2020, fix this later
228 */
229#if 0
230 /*
231 * Activate ULI1575 legacy chip by performing a fake
232 * memory access. Needed to make ULI RTC work.
233 * Device 1d has the first on-board memory BAR.
234 */
235
236 pci_hose_read_config_dword(hose, PCI_BDF(2, 0x1d, 0),
237 PCI_BASE_ADDRESS_1, &temp32);
238 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
239 void *p = pci_mem_to_virt(PCI_BDF(2, 0x1d, 0),
240 temp32, 4, 0);
241 debug(" uli1575 read to %p\n", p);
242 in_be32(p);
243 }
244#endif
245 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500246 printf("PCIE2: disabled\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500247 }
Kumar Gala4958af82009-09-03 09:42:01 -0500248 puts("\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500249#else
Kumar Gala4958af82009-09-03 09:42:01 -0500250 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE2); /* disable */
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500251#endif
252
253#ifdef CONFIG_PCIE3
Kumar Gala5d27e022010-12-15 04:55:20 -0600254 pcie_configured = is_serdes_configured(PCIE3);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500255
256 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)) {
Kumar Gala4958af82009-09-03 09:42:01 -0500257 SET_STD_PCIE_INFO(pci_info[num], 3);
Kumar Gala9263e822009-11-04 13:01:51 -0600258 pcie_ep = fsl_setup_hose(&pcie3_hose, pci_info[num].regs);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500259 printf("PCIE3: connected to Slot 1 as %s (base addr %lx)\n",
260 pcie_ep ? "Endpoint" : "Root Complex",
261 pci_info[num].regs);
Kumar Gala4958af82009-09-03 09:42:01 -0500262 first_free_busno = fsl_pci_init_port(&pci_info[num++],
Kumar Gala01471d52009-11-04 01:29:04 -0600263 &pcie3_hose, first_free_busno);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500264 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500265 printf("PCIE3: disabled\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500266 }
Kumar Gala4958af82009-09-03 09:42:01 -0500267 puts("\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500268#else
Kumar Gala4958af82009-09-03 09:42:01 -0500269 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE3); /* disable */
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500270#endif
271
272#ifdef CONFIG_PCIE1
Kumar Gala5d27e022010-12-15 04:55:20 -0600273 pcie_configured = is_serdes_configured(PCIE1);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500274
275 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)) {
Kumar Gala4958af82009-09-03 09:42:01 -0500276 SET_STD_PCIE_INFO(pci_info[num], 1);
Kumar Gala9263e822009-11-04 13:01:51 -0600277 pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500278 printf("PCIE1: connected to Slot 2 as %s (base addr %lx)\n",
279 pcie_ep ? "Endpoint" : "Root Complex",
280 pci_info[num].regs);
Kumar Gala4958af82009-09-03 09:42:01 -0500281 first_free_busno = fsl_pci_init_port(&pci_info[num++],
Kumar Gala01471d52009-11-04 01:29:04 -0600282 &pcie1_hose, first_free_busno);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500283 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500284 printf("PCIE1: disabled\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500285 }
Kumar Gala4958af82009-09-03 09:42:01 -0500286 puts("\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500287#else
Kumar Gala4958af82009-09-03 09:42:01 -0500288 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500289#endif
290}
291#endif
292
293int board_early_init_r(void)
294{
295 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
Kumar Gala5fb6ea32009-11-13 09:25:07 -0600296 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500297
298 /*
299 * Remap Boot flash + PROMJET region to caching-inhibited
300 * so that flash can be erased properly.
301 */
302
303 /* Flush d-cache and invalidate i-cache of any FLASH data */
304 flush_dcache();
305 invalidate_icache();
306
307 /* invalidate existing TLB entry for flash + promjet */
308 disable_tlb(flash_esel);
309
310 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
311 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
312 0, flash_esel, BOOKE_PAGESZ_256M, 1);
313
314 return 0;
315}
316
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500317#ifdef CONFIG_TSEC_ENET
318int board_eth_init(bd_t *bis)
319{
320 struct tsec_info_struct tsec_info[4];
321 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
322 int num = 0;
323
324#ifdef CONFIG_TSEC1
325 SET_STD_TSEC_INFO(tsec_info[num], 1);
326 num++;
327#endif
328#ifdef CONFIG_TSEC2
329 SET_STD_TSEC_INFO(tsec_info[num], 2);
330 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
331 tsec_info[num].flags |= TSEC_SGMII;
332 num++;
333#endif
334#ifdef CONFIG_TSEC3
335 SET_STD_TSEC_INFO(tsec_info[num], 3);
336 if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS))
337 tsec_info[num].flags |= TSEC_SGMII;
338 num++;
339#endif
340
341 if (!num) {
342 printf("No TSECs initialized\n");
343
344 return 0;
345 }
346
347#ifdef CONFIG_FSL_SGMII_RISER
348 fsl_sgmii_riser_init(tsec_info, num);
349#endif
350
351 tsec_eth_init(bis, tsec_info, num);
352
Roy Zang29c35182009-06-30 13:56:23 +0800353 return pci_eth_init(bis);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500354}
355#endif
356
357#if defined(CONFIG_OF_BOARD_SETUP)
358void ft_board_setup(void *blob, bd_t *bd)
359{
360 phys_addr_t base;
361 phys_size_t size;
362
363 ft_cpu_setup(blob, bd);
364
365 base = getenv_bootm_low();
366 size = getenv_bootm_size();
367
368 fdt_fixup_memory(blob, (u64)base, (u64)size);
369
Kumar Gala6525d512010-07-08 22:37:44 -0500370 FT_FSL_PCI_SETUP;
371
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500372#ifdef CONFIG_FSL_SGMII_RISER
373 fsl_sgmii_riser_fdt_fixup(blob);
374#endif
375}
376#endif
377
378#ifdef CONFIG_MP
379void board_lmb_reserve(struct lmb *lmb)
380{
381 cpu_mp_lmb_reserve(lmb);
382}
383#endif