blob: 58a42231a9387548595a05921d713bc8fa3464ef [file] [log] [blame]
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05001/*
ramneek mehresh3d7506f2012-04-18 19:39:53 +00002 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05003 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05005 */
6
7#include <common.h>
8#include <command.h>
9#include <pci.h>
10#include <asm/processor.h>
11#include <asm/mmu.h>
12#include <asm/cache.h>
13#include <asm/immap_85xx.h>
14#include <asm/fsl_pci.h>
15#include <asm/fsl_ddr_sdram.h>
16#include <asm/io.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060017#include <asm/fsl_serdes.h>
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050018#include <miiphy.h>
19#include <libfdt.h>
20#include <fdt_support.h>
Andy Fleming063c1262011-04-08 02:10:54 -050021#include <fsl_mdio.h>
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050022#include <tsec.h>
23#include <asm/fsl_law.h>
Roy Zang29c35182009-06-30 13:56:23 +080024#include <netdev.h>
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050025
Timur Tabi5a469602010-04-01 10:49:42 -050026#include "../common/ngpixis.h"
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050027#include "../common/sgmii_riser.h"
28
29DECLARE_GLOBAL_DATA_PTR;
30
Jerry Huang9c4d8762011-01-24 17:09:53 +000031int board_early_init_f(void)
32{
33#ifdef CONFIG_MMC
34 ccsr_gur_t *gur = (ccsr_gur_t *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
35
36 setbits_be32(&gur->pmuxcr,
37 (MPC85xx_PMUXCR_SDHC_CD |
38 MPC85xx_PMUXCR_SDHC_WP));
39#endif
40
41 return 0;
42}
43
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050044int checkboard(void)
45{
Timur Tabi5a469602010-04-01 10:49:42 -050046 u8 sw;
Kumar Gala6bb5b412009-07-14 22:42:01 -050047
Timur Tabi5d065c32012-03-15 11:42:27 +000048 printf("Board: P2020DS Sys ID: 0x%02x, "
49 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Timur Tabi5a469602010-04-01 10:49:42 -050050 in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver));
Kumar Gala6bb5b412009-07-14 22:42:01 -050051
Timur Tabi5a469602010-04-01 10:49:42 -050052 sw = in_8(&PIXIS_SW(PIXIS_LBMAP_SWITCH));
53 sw = (sw & PIXIS_LBMAP_MASK) >> PIXIS_LBMAP_SHIFT;
54
55 if (sw < 0x8)
56 /* The lower two bits are the actual vbank number */
57 printf("vBank: %d\n", sw & 3);
58 else
59 puts("Promjet\n");
Kumar Gala6bb5b412009-07-14 22:42:01 -050060
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050061 return 0;
62}
63
york394c46c2010-07-02 22:25:58 +000064#if !defined(CONFIG_DDR_SPD)
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050065/*
66 * Fixed sdram init -- doesn't use serial presence detect.
67 */
68
69phys_size_t fixed_sdram(void)
70{
Andy Fleminge76cd5d2012-10-23 19:03:46 -050071 volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR;
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -050072 uint d_init;
73
74 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
75 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
76 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
77 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
78 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
79 ddr->sdram_md_cntl = CONFIG_SYS_DDR_MODE_CTRL;
80 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
81 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
82 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
83 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
84 ddr->ddr_zq_cntl = CONFIG_SYS_DDR_ZQ_CNTL;
85 ddr->ddr_wrlvl_cntl = CONFIG_SYS_DDR_WRLVL_CNTL;
86 ddr->ddr_cdr1 = CONFIG_SYS_DDR_CDR1;
87 ddr->timing_cfg_4 = CONFIG_SYS_DDR_TIMING_4;
88 ddr->timing_cfg_5 = CONFIG_SYS_DDR_TIMING_5;
89
90 if (!strcmp("performance", getenv("perf_mode"))) {
91 /* Performance Mode Values */
92
93 ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG_PERF;
94 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS_PERF;
95 ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS_PERF;
96 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1_PERF;
97 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2_PERF;
98
99 asm("sync;isync");
100
101 udelay(500);
102
103 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL_PERF;
104 } else {
105 /* Stable Mode Values */
106
107 ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG;
108 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
109 ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS;
110 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
111 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
112
113 /* ECC will be assumed in stable mode */
114 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
115 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
116 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
117
118 asm("sync;isync");
119
120 udelay(500);
121
122 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
123 }
124
125#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
126 d_init = 1;
127 debug("DDR - 1st controller: memory initializing\n");
128 /*
129 * Poll until memory is initialized.
130 * 512 Meg at 400 might hit this 200 times or so.
131 */
132 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
133 udelay(1000);
134 debug("DDR: memory initialized\n\n");
135 asm("sync; isync");
136 udelay(500);
137#endif
138
Becky Bruce38dba0c2010-12-17 17:17:56 -0600139 if (set_ddr_laws(CONFIG_SYS_DDR_SDRAM_BASE,
140 CONFIG_SYS_SDRAM_SIZE * 1024 * 1024,
141 LAW_TRGT_IF_DDR) < 0) {
142 printf("ERROR setting Local Access Windows for DDR\n");
143 return 0;
144 };
145
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500146 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
147}
148
149#endif
150
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500151#ifdef CONFIG_PCI
152void pci_init_board(void)
153{
Kumar Gala4d5723d2010-12-17 07:01:00 -0600154 fsl_pcie_init_board(0);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500155}
156#endif
157
158int board_early_init_r(void)
159{
160 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
Kumar Gala5fb6ea32009-11-13 09:25:07 -0600161 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500162
163 /*
164 * Remap Boot flash + PROMJET region to caching-inhibited
165 * so that flash can be erased properly.
166 */
167
168 /* Flush d-cache and invalidate i-cache of any FLASH data */
169 flush_dcache();
170 invalidate_icache();
171
172 /* invalidate existing TLB entry for flash + promjet */
173 disable_tlb(flash_esel);
174
175 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
176 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
177 0, flash_esel, BOOKE_PAGESZ_256M, 1);
178
179 return 0;
180}
181
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500182#ifdef CONFIG_TSEC_ENET
183int board_eth_init(bd_t *bis)
184{
Andy Fleming063c1262011-04-08 02:10:54 -0500185 struct fsl_pq_mdio_info mdio_info;
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500186 struct tsec_info_struct tsec_info[4];
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500187 int num = 0;
188
189#ifdef CONFIG_TSEC1
190 SET_STD_TSEC_INFO(tsec_info[num], 1);
191 num++;
192#endif
193#ifdef CONFIG_TSEC2
194 SET_STD_TSEC_INFO(tsec_info[num], 2);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600195 if (is_serdes_configured(SGMII_TSEC2)) {
196 puts("eTSEC2 is in sgmii mode.\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500197 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600198 }
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500199 num++;
200#endif
201#ifdef CONFIG_TSEC3
202 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600203 if (is_serdes_configured(SGMII_TSEC3)) {
204 puts("eTSEC3 is in sgmii mode.\n");
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500205 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600206}
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500207 num++;
208#endif
209
210 if (!num) {
211 printf("No TSECs initialized\n");
212
213 return 0;
214 }
215
216#ifdef CONFIG_FSL_SGMII_RISER
217 fsl_sgmii_riser_init(tsec_info, num);
218#endif
219
Andy Fleming063c1262011-04-08 02:10:54 -0500220 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
221 mdio_info.name = DEFAULT_MII_NAME;
222
223 fsl_pq_mdio_init(bis, &mdio_info);
224
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500225 tsec_eth_init(bis, tsec_info, num);
226
Roy Zang29c35182009-06-30 13:56:23 +0800227 return pci_eth_init(bis);
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500228}
229#endif
230
231#if defined(CONFIG_OF_BOARD_SETUP)
232void ft_board_setup(void *blob, bd_t *bd)
233{
234 phys_addr_t base;
235 phys_size_t size;
236
237 ft_cpu_setup(blob, bd);
238
239 base = getenv_bootm_low();
240 size = getenv_bootm_size();
241
242 fdt_fixup_memory(blob, (u64)base, (u64)size);
243
ramneek mehresh3d7506f2012-04-18 19:39:53 +0000244#ifdef CONFIG_HAS_FSL_DR_USB
245 fdt_fixup_dr_usb(blob, bd);
246#endif
247
Kumar Gala6525d512010-07-08 22:37:44 -0500248 FT_FSL_PCI_SETUP;
249
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -0500250#ifdef CONFIG_FSL_SGMII_RISER
251 fsl_sgmii_riser_fdt_fixup(blob);
252#endif
253}
254#endif