]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/freescale/p2020ds/p2020ds.c
Driver/DDR: Moving Freescale DDR driver to a common driver
[thirdparty/u-boot.git] / board / freescale / p2020ds / p2020ds.c
1 /*
2 * Copyright 2007-2012 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
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 <fsl_ddr_sdram.h>
16 #include <asm/io.h>
17 #include <asm/fsl_serdes.h>
18 #include <miiphy.h>
19 #include <libfdt.h>
20 #include <fdt_support.h>
21 #include <fsl_mdio.h>
22 #include <tsec.h>
23 #include <asm/fsl_law.h>
24 #include <netdev.h>
25
26 #include "../common/ngpixis.h"
27 #include "../common/sgmii_riser.h"
28
29 DECLARE_GLOBAL_DATA_PTR;
30
31 int 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
44 int checkboard(void)
45 {
46 u8 sw;
47
48 printf("Board: P2020DS Sys ID: 0x%02x, "
49 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
50 in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver));
51
52 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");
60
61 return 0;
62 }
63
64 #if !defined(CONFIG_DDR_SPD)
65 /*
66 * Fixed sdram init -- doesn't use serial presence detect.
67 */
68
69 phys_size_t fixed_sdram(void)
70 {
71 volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_FSL_DDR_ADDR;
72 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
139 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
146 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
147 }
148
149 #endif
150
151 #ifdef CONFIG_PCI
152 void pci_init_board(void)
153 {
154 fsl_pcie_init_board(0);
155 }
156 #endif
157
158 int board_early_init_r(void)
159 {
160 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
161 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
162
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
182 #ifdef CONFIG_TSEC_ENET
183 int board_eth_init(bd_t *bis)
184 {
185 struct fsl_pq_mdio_info mdio_info;
186 struct tsec_info_struct tsec_info[4];
187 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);
195 if (is_serdes_configured(SGMII_TSEC2)) {
196 puts("eTSEC2 is in sgmii mode.\n");
197 tsec_info[num].flags |= TSEC_SGMII;
198 }
199 num++;
200 #endif
201 #ifdef CONFIG_TSEC3
202 SET_STD_TSEC_INFO(tsec_info[num], 3);
203 if (is_serdes_configured(SGMII_TSEC3)) {
204 puts("eTSEC3 is in sgmii mode.\n");
205 tsec_info[num].flags |= TSEC_SGMII;
206 }
207 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
220 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
225 tsec_eth_init(bis, tsec_info, num);
226
227 return pci_eth_init(bis);
228 }
229 #endif
230
231 #if defined(CONFIG_OF_BOARD_SETUP)
232 void 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
244 #ifdef CONFIG_HAS_FSL_DR_USB
245 fdt_fixup_dr_usb(blob, bd);
246 #endif
247
248 FT_FSL_PCI_SETUP;
249
250 #ifdef CONFIG_FSL_SGMII_RISER
251 fsl_sgmii_riser_fdt_fixup(blob);
252 #endif
253 }
254 #endif