1 /*
2  * Copyright 2014-2015 Freescale Semiconductor
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <fsl_immap.h>
9 #include <fsl_ifc.h>
10 #include <ahci.h>
11 #include <scsi.h>
12 #include <asm/arch/fsl_serdes.h>
13 #include <asm/arch/soc.h>
14 #include <asm/io.h>
15 #include <asm/global_data.h>
16 #include <asm/arch-fsl-layerscape/config.h>
17 #ifdef CONFIG_LAYERSCAPE_NS_ACCESS
18 #include <fsl_csu.h>
19 #endif
20 #ifdef CONFIG_SYS_FSL_DDR
21 #include <fsl_ddr_sdram.h>
22 #include <fsl_ddr.h>
23 #endif
24 #ifdef CONFIG_CHAIN_OF_TRUST
25 #include <fsl_validate.h>
26 #endif
27 #include <fsl_immap.h>
28 
29 DECLARE_GLOBAL_DATA_PTR;
30 
31 bool soc_has_dp_ddr(void)
32 {
33 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
34 	u32 svr = gur_in32(&gur->svr);
35 
36 	/* LS2085A, LS2088A, LS2048A has DP_DDR */
37 	if ((SVR_SOC_VER(svr) == SVR_LS2085A) ||
38 	    (SVR_SOC_VER(svr) == SVR_LS2088A) ||
39 	    (SVR_SOC_VER(svr) == SVR_LS2048A))
40 		return true;
41 
42 	return false;
43 }
44 
45 bool soc_has_aiop(void)
46 {
47 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
48 	u32 svr = gur_in32(&gur->svr);
49 
50 	/* LS2085A has AIOP */
51 	if (SVR_SOC_VER(svr) == SVR_LS2085A)
52 		return true;
53 
54 	return false;
55 }
56 
57 static inline void set_usb_txvreftune(u32 __iomem *scfg, u32 offset)
58 {
59 	scfg_clrsetbits32(scfg + offset / 4,
60 			0xF << 6,
61 			SCFG_USB_TXVREFTUNE << 6);
62 }
63 
64 static void erratum_a009008(void)
65 {
66 #ifdef CONFIG_SYS_FSL_ERRATUM_A009008
67 	u32 __iomem *scfg = (u32 __iomem *)SCFG_BASE;
68 
69 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
70 	defined(CONFIG_ARCH_LS1012A)
71 	set_usb_txvreftune(scfg, SCFG_USB3PRM1CR_USB1);
72 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
73 	set_usb_txvreftune(scfg, SCFG_USB3PRM1CR_USB2);
74 	set_usb_txvreftune(scfg, SCFG_USB3PRM1CR_USB3);
75 #endif
76 #elif defined(CONFIG_ARCH_LS2080A)
77 	set_usb_txvreftune(scfg, SCFG_USB3PRM1CR);
78 #endif
79 #endif /* CONFIG_SYS_FSL_ERRATUM_A009008 */
80 }
81 
82 static inline void set_usb_sqrxtune(u32 __iomem *scfg, u32 offset)
83 {
84 	scfg_clrbits32(scfg + offset / 4,
85 			SCFG_USB_SQRXTUNE_MASK << 23);
86 }
87 
88 static void erratum_a009798(void)
89 {
90 #ifdef CONFIG_SYS_FSL_ERRATUM_A009798
91 	u32 __iomem *scfg = (u32 __iomem *)SCFG_BASE;
92 
93 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
94 	defined(CONFIG_ARCH_LS1012A)
95 	set_usb_sqrxtune(scfg, SCFG_USB3PRM1CR_USB1);
96 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
97 	set_usb_sqrxtune(scfg, SCFG_USB3PRM1CR_USB2);
98 	set_usb_sqrxtune(scfg, SCFG_USB3PRM1CR_USB3);
99 #endif
100 #elif defined(CONFIG_ARCH_LS2080A)
101 	set_usb_sqrxtune(scfg, SCFG_USB3PRM1CR);
102 #endif
103 #endif /* CONFIG_SYS_FSL_ERRATUM_A009798 */
104 }
105 
106 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
107 	defined(CONFIG_ARCH_LS1012A)
108 static inline void set_usb_pcstxswingfull(u32 __iomem *scfg, u32 offset)
109 {
110 	scfg_clrsetbits32(scfg + offset / 4,
111 			0x7F << 9,
112 			SCFG_USB_PCSTXSWINGFULL << 9);
113 }
114 #endif
115 
116 static void erratum_a008997(void)
117 {
118 #ifdef CONFIG_SYS_FSL_ERRATUM_A008997
119 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
120 	defined(CONFIG_ARCH_LS1012A)
121 	u32 __iomem *scfg = (u32 __iomem *)SCFG_BASE;
122 
123 	set_usb_pcstxswingfull(scfg, SCFG_USB3PRM2CR_USB1);
124 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
125 	set_usb_pcstxswingfull(scfg, SCFG_USB3PRM2CR_USB2);
126 	set_usb_pcstxswingfull(scfg, SCFG_USB3PRM2CR_USB3);
127 #endif
128 #endif
129 #endif /* CONFIG_SYS_FSL_ERRATUM_A008997 */
130 }
131 
132 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
133 	defined(CONFIG_ARCH_LS1012A)
134 
135 #define PROGRAM_USB_PHY_RX_OVRD_IN_HI(phy)	\
136 	out_be16((phy) + SCFG_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_1);	\
137 	out_be16((phy) + SCFG_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_2);	\
138 	out_be16((phy) + SCFG_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_3);	\
139 	out_be16((phy) + SCFG_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_4)
140 
141 #elif defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
142 
143 #define PROGRAM_USB_PHY_RX_OVRD_IN_HI(phy)	\
144 	out_le16((phy) + DCSR_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_1); \
145 	out_le16((phy) + DCSR_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_2); \
146 	out_le16((phy) + DCSR_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_3); \
147 	out_le16((phy) + DCSR_USB_PHY_RX_OVRD_IN_HI, USB_PHY_RX_EQ_VAL_4)
148 
149 #endif
150 
151 static void erratum_a009007(void)
152 {
153 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A) || \
154 	defined(CONFIG_ARCH_LS1012A)
155 	void __iomem *usb_phy = (void __iomem *)SCFG_USB_PHY1;
156 
157 	PROGRAM_USB_PHY_RX_OVRD_IN_HI(usb_phy);
158 #if defined(CONFIG_ARCH_LS1043A) || defined(CONFIG_ARCH_LS1046A)
159 	usb_phy = (void __iomem *)SCFG_USB_PHY2;
160 	PROGRAM_USB_PHY_RX_OVRD_IN_HI(usb_phy);
161 
162 	usb_phy = (void __iomem *)SCFG_USB_PHY3;
163 	PROGRAM_USB_PHY_RX_OVRD_IN_HI(usb_phy);
164 #endif
165 #elif defined(CONFIG_ARCH_LS2080A) || defined(CONFIG_ARCH_LS1088A)
166 	void __iomem *dcsr = (void __iomem *)DCSR_BASE;
167 
168 	PROGRAM_USB_PHY_RX_OVRD_IN_HI(dcsr + DCSR_USB_PHY1);
169 	PROGRAM_USB_PHY_RX_OVRD_IN_HI(dcsr + DCSR_USB_PHY2);
170 #endif /* CONFIG_SYS_FSL_ERRATUM_A009007 */
171 }
172 
173 #if defined(CONFIG_FSL_LSCH3)
174 /*
175  * This erratum requires setting a value to eddrtqcr1 to
176  * optimal the DDR performance.
177  */
178 static void erratum_a008336(void)
179 {
180 #ifdef CONFIG_SYS_FSL_ERRATUM_A008336
181 	u32 *eddrtqcr1;
182 
183 #ifdef CONFIG_SYS_FSL_DCSR_DDR_ADDR
184 	eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR_ADDR + 0x800;
185 	if (fsl_ddr_get_version(0) == 0x50200)
186 		out_le32(eddrtqcr1, 0x63b30002);
187 #endif
188 #ifdef CONFIG_SYS_FSL_DCSR_DDR2_ADDR
189 	eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR2_ADDR + 0x800;
190 	if (fsl_ddr_get_version(0) == 0x50200)
191 		out_le32(eddrtqcr1, 0x63b30002);
192 #endif
193 #endif
194 }
195 
196 /*
197  * This erratum requires a register write before being Memory
198  * controller 3 being enabled.
199  */
200 static void erratum_a008514(void)
201 {
202 #ifdef CONFIG_SYS_FSL_ERRATUM_A008514
203 	u32 *eddrtqcr1;
204 
205 #ifdef CONFIG_SYS_FSL_DCSR_DDR3_ADDR
206 	eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR3_ADDR + 0x800;
207 	out_le32(eddrtqcr1, 0x63b20002);
208 #endif
209 #endif
210 }
211 #ifdef CONFIG_SYS_FSL_ERRATUM_A009635
212 #define PLATFORM_CYCLE_ENV_VAR	"a009635_interval_val"
213 
214 static unsigned long get_internval_val_mhz(void)
215 {
216 	char *interval = env_get(PLATFORM_CYCLE_ENV_VAR);
217 	/*
218 	 *  interval is the number of platform cycles(MHz) between
219 	 *  wake up events generated by EPU.
220 	 */
221 	ulong interval_mhz = get_bus_freq(0) / (1000 * 1000);
222 
223 	if (interval)
224 		interval_mhz = simple_strtoul(interval, NULL, 10);
225 
226 	return interval_mhz;
227 }
228 
229 void erratum_a009635(void)
230 {
231 	u32 val;
232 	unsigned long interval_mhz = get_internval_val_mhz();
233 
234 	if (!interval_mhz)
235 		return;
236 
237 	val = in_le32(DCSR_CGACRE5);
238 	writel(val | 0x00000200, DCSR_CGACRE5);
239 
240 	val = in_le32(EPU_EPCMPR5);
241 	writel(interval_mhz, EPU_EPCMPR5);
242 	val = in_le32(EPU_EPCCR5);
243 	writel(val | 0x82820000, EPU_EPCCR5);
244 	val = in_le32(EPU_EPSMCR5);
245 	writel(val | 0x002f0000, EPU_EPSMCR5);
246 	val = in_le32(EPU_EPECR5);
247 	writel(val | 0x20000000, EPU_EPECR5);
248 	val = in_le32(EPU_EPGCR);
249 	writel(val | 0x80000000, EPU_EPGCR);
250 }
251 #endif	/* CONFIG_SYS_FSL_ERRATUM_A009635 */
252 
253 static void erratum_rcw_src(void)
254 {
255 #if defined(CONFIG_SPL) && defined(CONFIG_NAND_BOOT)
256 	u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
257 	u32 __iomem *dcfg_dcsr = (u32 __iomem *)DCFG_DCSR_BASE;
258 	u32 val;
259 
260 	val = in_le32(dcfg_ccsr + DCFG_PORSR1 / 4);
261 	val &= ~DCFG_PORSR1_RCW_SRC;
262 	val |= DCFG_PORSR1_RCW_SRC_NOR;
263 	out_le32(dcfg_dcsr + DCFG_DCSR_PORCR1 / 4, val);
264 #endif
265 }
266 
267 #define I2C_DEBUG_REG 0x6
268 #define I2C_GLITCH_EN 0x8
269 /*
270  * This erratum requires setting glitch_en bit to enable
271  * digital glitch filter to improve clock stability.
272  */
273 #ifdef CONFIG_SYS_FSL_ERRATUM_A009203
274 static void erratum_a009203(void)
275 {
276 #ifdef CONFIG_SYS_I2C
277 	u8 __iomem *ptr;
278 #ifdef I2C1_BASE_ADDR
279 	ptr = (u8 __iomem *)(I2C1_BASE_ADDR + I2C_DEBUG_REG);
280 
281 	writeb(I2C_GLITCH_EN, ptr);
282 #endif
283 #ifdef I2C2_BASE_ADDR
284 	ptr = (u8 __iomem *)(I2C2_BASE_ADDR + I2C_DEBUG_REG);
285 
286 	writeb(I2C_GLITCH_EN, ptr);
287 #endif
288 #ifdef I2C3_BASE_ADDR
289 	ptr = (u8 __iomem *)(I2C3_BASE_ADDR + I2C_DEBUG_REG);
290 
291 	writeb(I2C_GLITCH_EN, ptr);
292 #endif
293 #ifdef I2C4_BASE_ADDR
294 	ptr = (u8 __iomem *)(I2C4_BASE_ADDR + I2C_DEBUG_REG);
295 
296 	writeb(I2C_GLITCH_EN, ptr);
297 #endif
298 #endif
299 }
300 #endif
301 
302 void bypass_smmu(void)
303 {
304 	u32 val;
305 	val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
306 	out_le32(SMMU_SCR0, val);
307 	val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
308 	out_le32(SMMU_NSCR0, val);
309 }
310 void fsl_lsch3_early_init_f(void)
311 {
312 	erratum_rcw_src();
313 #ifdef CONFIG_FSL_IFC
314 	init_early_memctl_regs();	/* tighten IFC timing */
315 #endif
316 #ifdef CONFIG_SYS_FSL_ERRATUM_A009203
317 	erratum_a009203();
318 #endif
319 	erratum_a008514();
320 	erratum_a008336();
321 	erratum_a009008();
322 	erratum_a009798();
323 	erratum_a008997();
324 	erratum_a009007();
325 #ifdef CONFIG_CHAIN_OF_TRUST
326 	/* In case of Secure Boot, the IBR configures the SMMU
327 	* to allow only Secure transactions.
328 	* SMMU must be reset in bypass mode.
329 	* Set the ClientPD bit and Clear the USFCFG Bit
330 	*/
331 	if (fsl_check_boot_mode_secure() == 1)
332 		bypass_smmu();
333 #endif
334 }
335 
336 #ifdef CONFIG_SCSI_AHCI_PLAT
337 int sata_init(void)
338 {
339 	struct ccsr_ahci __iomem *ccsr_ahci;
340 
341 #ifdef CONFIG_SYS_SATA2
342 	ccsr_ahci  = (void *)CONFIG_SYS_SATA2;
343 	out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
344 	out_le32(&ccsr_ahci->pp2c, AHCI_PORT_PHY2_CFG);
345 	out_le32(&ccsr_ahci->pp3c, AHCI_PORT_PHY3_CFG);
346 	out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
347 	out_le32(&ccsr_ahci->axicc, AHCI_PORT_AXICC_CFG);
348 #endif
349 
350 #ifdef CONFIG_SYS_SATA1
351 	ccsr_ahci  = (void *)CONFIG_SYS_SATA1;
352 	out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
353 	out_le32(&ccsr_ahci->pp2c, AHCI_PORT_PHY2_CFG);
354 	out_le32(&ccsr_ahci->pp3c, AHCI_PORT_PHY3_CFG);
355 	out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
356 	out_le32(&ccsr_ahci->axicc, AHCI_PORT_AXICC_CFG);
357 
358 	ahci_init((void __iomem *)CONFIG_SYS_SATA1);
359 	scsi_scan(false);
360 #endif
361 
362 	return 0;
363 }
364 #endif
365 
366 #elif defined(CONFIG_FSL_LSCH2)
367 #ifdef CONFIG_SCSI_AHCI_PLAT
368 int sata_init(void)
369 {
370 	struct ccsr_ahci __iomem *ccsr_ahci = (void *)CONFIG_SYS_SATA;
371 
372 	/* Disable SATA ECC */
373 	out_le32((void *)CONFIG_SYS_DCSR_DCFG_ADDR + 0x520, 0x80000000);
374 	out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
375 	out_le32(&ccsr_ahci->pp2c, AHCI_PORT_PHY2_CFG);
376 	out_le32(&ccsr_ahci->pp3c, AHCI_PORT_PHY3_CFG);
377 	out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
378 	out_le32(&ccsr_ahci->axicc, AHCI_PORT_AXICC_CFG);
379 
380 	ahci_init((void __iomem *)CONFIG_SYS_SATA);
381 	scsi_scan(false);
382 
383 	return 0;
384 }
385 #endif
386 
387 static void erratum_a009929(void)
388 {
389 #ifdef CONFIG_SYS_FSL_ERRATUM_A009929
390 	struct ccsr_gur *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
391 	u32 __iomem *dcsr_cop_ccp = (void *)CONFIG_SYS_DCSR_COP_CCP_ADDR;
392 	u32 rstrqmr1 = gur_in32(&gur->rstrqmr1);
393 
394 	rstrqmr1 |= 0x00000400;
395 	gur_out32(&gur->rstrqmr1, rstrqmr1);
396 	writel(0x01000000, dcsr_cop_ccp);
397 #endif
398 }
399 
400 /*
401  * This erratum requires setting a value to eddrtqcr1 to optimal
402  * the DDR performance. The eddrtqcr1 register is in SCFG space
403  * of LS1043A and the offset is 0x157_020c.
404  */
405 #if defined(CONFIG_SYS_FSL_ERRATUM_A009660) \
406 	&& defined(CONFIG_SYS_FSL_ERRATUM_A008514)
407 #error A009660 and A008514 can not be both enabled.
408 #endif
409 
410 static void erratum_a009660(void)
411 {
412 #ifdef CONFIG_SYS_FSL_ERRATUM_A009660
413 	u32 *eddrtqcr1 = (void *)CONFIG_SYS_FSL_SCFG_ADDR + 0x20c;
414 	out_be32(eddrtqcr1, 0x63b20042);
415 #endif
416 }
417 
418 static void erratum_a008850_early(void)
419 {
420 #ifdef CONFIG_SYS_FSL_ERRATUM_A008850
421 	/* part 1 of 2 */
422 	struct ccsr_cci400 __iomem *cci = (void *)(CONFIG_SYS_IMMR +
423 						CONFIG_SYS_CCI400_OFFSET);
424 	struct ccsr_ddr __iomem *ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
425 
426 	/* Skip if running at lower exception level */
427 	if (current_el() < 3)
428 		return;
429 
430 	/* disables propagation of barrier transactions to DDRC from CCI400 */
431 	out_le32(&cci->ctrl_ord, CCI400_CTRLORD_TERM_BARRIER);
432 
433 	/* disable the re-ordering in DDRC */
434 	ddr_out32(&ddr->eor, DDR_EOR_RD_REOD_DIS | DDR_EOR_WD_REOD_DIS);
435 #endif
436 }
437 
438 void erratum_a008850_post(void)
439 {
440 #ifdef CONFIG_SYS_FSL_ERRATUM_A008850
441 	/* part 2 of 2 */
442 	struct ccsr_cci400 __iomem *cci = (void *)(CONFIG_SYS_IMMR +
443 						CONFIG_SYS_CCI400_OFFSET);
444 	struct ccsr_ddr __iomem *ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
445 	u32 tmp;
446 
447 	/* Skip if running at lower exception level */
448 	if (current_el() < 3)
449 		return;
450 
451 	/* enable propagation of barrier transactions to DDRC from CCI400 */
452 	out_le32(&cci->ctrl_ord, CCI400_CTRLORD_EN_BARRIER);
453 
454 	/* enable the re-ordering in DDRC */
455 	tmp = ddr_in32(&ddr->eor);
456 	tmp &= ~(DDR_EOR_RD_REOD_DIS | DDR_EOR_WD_REOD_DIS);
457 	ddr_out32(&ddr->eor, tmp);
458 #endif
459 }
460 
461 #ifdef CONFIG_SYS_FSL_ERRATUM_A010315
462 void erratum_a010315(void)
463 {
464 	int i;
465 
466 	for (i = PCIE1; i <= PCIE4; i++)
467 		if (!is_serdes_configured(i)) {
468 			debug("PCIe%d: disabled all R/W permission!\n", i);
469 			set_pcie_ns_access(i, 0);
470 		}
471 }
472 #endif
473 
474 static void erratum_a010539(void)
475 {
476 #if defined(CONFIG_SYS_FSL_ERRATUM_A010539) && defined(CONFIG_QSPI_BOOT)
477 	struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
478 	u32 porsr1;
479 
480 	porsr1 = in_be32(&gur->porsr1);
481 	porsr1 &= ~FSL_CHASSIS2_CCSR_PORSR1_RCW_MASK;
482 	out_be32((void *)(CONFIG_SYS_DCSR_DCFG_ADDR + DCFG_DCSR_PORCR1),
483 		 porsr1);
484 #endif
485 }
486 
487 /* Get VDD in the unit mV from voltage ID */
488 int get_core_volt_from_fuse(void)
489 {
490 	struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
491 	int vdd;
492 	u32 fusesr;
493 	u8 vid;
494 
495 	fusesr = in_be32(&gur->dcfg_fusesr);
496 	debug("%s: fusesr = 0x%x\n", __func__, fusesr);
497 	vid = (fusesr >> FSL_CHASSIS2_DCFG_FUSESR_ALTVID_SHIFT) &
498 		FSL_CHASSIS2_DCFG_FUSESR_ALTVID_MASK;
499 	if ((vid == 0) || (vid == FSL_CHASSIS2_DCFG_FUSESR_ALTVID_MASK)) {
500 		vid = (fusesr >> FSL_CHASSIS2_DCFG_FUSESR_VID_SHIFT) &
501 			FSL_CHASSIS2_DCFG_FUSESR_VID_MASK;
502 	}
503 	debug("%s: VID = 0x%x\n", __func__, vid);
504 	switch (vid) {
505 	case 0x00: /* VID isn't supported */
506 		vdd = -EINVAL;
507 		debug("%s: The VID feature is not supported\n", __func__);
508 		break;
509 	case 0x08: /* 0.9V silicon */
510 		vdd = 900;
511 		break;
512 	case 0x10: /* 1.0V silicon */
513 		vdd = 1000;
514 		break;
515 	default:  /* Other core voltage */
516 		vdd = -EINVAL;
517 		printf("%s: The VID(%x) isn't supported\n", __func__, vid);
518 		break;
519 	}
520 	debug("%s: The required minimum volt of CORE is %dmV\n", __func__, vdd);
521 
522 	return vdd;
523 }
524 
525 __weak int board_switch_core_volt(u32 vdd)
526 {
527 	return 0;
528 }
529 
530 static int setup_core_volt(u32 vdd)
531 {
532 	return board_setup_core_volt(vdd);
533 }
534 
535 #ifdef CONFIG_SYS_FSL_DDR
536 static void ddr_enable_0v9_volt(bool en)
537 {
538 	struct ccsr_ddr __iomem *ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
539 	u32 tmp;
540 
541 	tmp = ddr_in32(&ddr->ddr_cdr1);
542 
543 	if (en)
544 		tmp |= DDR_CDR1_V0PT9_EN;
545 	else
546 		tmp &= ~DDR_CDR1_V0PT9_EN;
547 
548 	ddr_out32(&ddr->ddr_cdr1, tmp);
549 }
550 #endif
551 
552 int setup_chip_volt(void)
553 {
554 	int vdd;
555 
556 	vdd = get_core_volt_from_fuse();
557 	/* Nothing to do for silicons doesn't support VID */
558 	if (vdd < 0)
559 		return vdd;
560 
561 	if (setup_core_volt(vdd))
562 		printf("%s: Switch core VDD to %dmV failed\n", __func__, vdd);
563 #ifdef CONFIG_SYS_HAS_SERDES
564 	if (setup_serdes_volt(vdd))
565 		printf("%s: Switch SVDD to %dmV failed\n", __func__, vdd);
566 #endif
567 
568 #ifdef CONFIG_SYS_FSL_DDR
569 	if (vdd == 900)
570 		ddr_enable_0v9_volt(true);
571 #endif
572 
573 	return 0;
574 }
575 
576 void fsl_lsch2_early_init_f(void)
577 {
578 	struct ccsr_cci400 *cci = (struct ccsr_cci400 *)(CONFIG_SYS_IMMR +
579 					CONFIG_SYS_CCI400_OFFSET);
580 	struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
581 
582 #ifdef CONFIG_LAYERSCAPE_NS_ACCESS
583 	enable_layerscape_ns_access();
584 #endif
585 
586 #ifdef CONFIG_FSL_IFC
587 	init_early_memctl_regs();	/* tighten IFC timing */
588 #endif
589 
590 #if defined(CONFIG_FSL_QSPI) && !defined(CONFIG_QSPI_BOOT)
591 	out_be32(&scfg->qspi_cfg, SCFG_QSPI_CLKSEL);
592 #endif
593 	/* Make SEC reads and writes snoopable */
594 	setbits_be32(&scfg->snpcnfgcr, SCFG_SNPCNFGCR_SECRDSNP |
595 		     SCFG_SNPCNFGCR_SECWRSNP |
596 		     SCFG_SNPCNFGCR_SATARDSNP |
597 		     SCFG_SNPCNFGCR_SATAWRSNP);
598 
599 	/*
600 	 * Enable snoop requests and DVM message requests for
601 	 * Slave insterface S4 (A53 core cluster)
602 	 */
603 	if (current_el() == 3) {
604 		out_le32(&cci->slave[4].snoop_ctrl,
605 			 CCI400_DVM_MESSAGE_REQ_EN | CCI400_SNOOP_REQ_EN);
606 	}
607 
608 	/* Erratum */
609 	erratum_a008850_early(); /* part 1 of 2 */
610 	erratum_a009929();
611 	erratum_a009660();
612 	erratum_a010539();
613 	erratum_a009008();
614 	erratum_a009798();
615 	erratum_a008997();
616 	erratum_a009007();
617 }
618 #endif
619 
620 #ifdef CONFIG_QSPI_AHB_INIT
621 /* Enable 4bytes address support and fast read */
622 int qspi_ahb_init(void)
623 {
624 	u32 *qspi_lut, lut_key, *qspi_key;
625 
626 	qspi_key = (void *)SYS_FSL_QSPI_ADDR + 0x300;
627 	qspi_lut = (void *)SYS_FSL_QSPI_ADDR + 0x310;
628 
629 	lut_key = in_be32(qspi_key);
630 
631 	if (lut_key == 0x5af05af0) {
632 		/* That means the register is BE */
633 		out_be32(qspi_key, 0x5af05af0);
634 		/* Unlock the lut table */
635 		out_be32(qspi_key + 1, 0x00000002);
636 		out_be32(qspi_lut, 0x0820040c);
637 		out_be32(qspi_lut + 1, 0x1c080c08);
638 		out_be32(qspi_lut + 2, 0x00002400);
639 		/* Lock the lut table */
640 		out_be32(qspi_key, 0x5af05af0);
641 		out_be32(qspi_key + 1, 0x00000001);
642 	} else {
643 		/* That means the register is LE */
644 		out_le32(qspi_key, 0x5af05af0);
645 		/* Unlock the lut table */
646 		out_le32(qspi_key + 1, 0x00000002);
647 		out_le32(qspi_lut, 0x0820040c);
648 		out_le32(qspi_lut + 1, 0x1c080c08);
649 		out_le32(qspi_lut + 2, 0x00002400);
650 		/* Lock the lut table */
651 		out_le32(qspi_key, 0x5af05af0);
652 		out_le32(qspi_key + 1, 0x00000001);
653 	}
654 
655 	return 0;
656 }
657 #endif
658 
659 #ifdef CONFIG_BOARD_LATE_INIT
660 int board_late_init(void)
661 {
662 #ifdef CONFIG_SCSI_AHCI_PLAT
663 	sata_init();
664 #endif
665 #ifdef CONFIG_CHAIN_OF_TRUST
666 	fsl_setenv_chain_of_trust();
667 #endif
668 #ifdef CONFIG_QSPI_AHB_INIT
669 	qspi_ahb_init();
670 #endif
671 
672 	return 0;
673 }
674 #endif
675