blob: 3f758cef2f0e4eead4eac76849d93befc7c3c207 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ashish Kumare84a3242017-08-31 16:12:54 +05302/*
Pramod Kumar5b595df2018-10-12 14:04:27 +00003 * Copyright 2017-2018 NXP
Ashish Kumare84a3242017-08-31 16:12:54 +05304 */
5#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -06006#include <env.h>
Ashish Kumare84a3242017-08-31 16:12:54 +05307#include <i2c.h>
Simon Glass691d7192020-05-10 11:40:02 -06008#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053010#include <malloc.h>
11#include <errno.h>
12#include <netdev.h>
13#include <fsl_ifc.h>
14#include <fsl_ddr.h>
15#include <fsl_sec.h>
16#include <asm/io.h>
17#include <fdt_support.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090019#include <linux/libfdt.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053020#include <fsl-mc/fsl_mc.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060021#include <env_internal.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053022#include <asm/arch-fsl-layerscape/soc.h>
23#include <asm/arch/ppa.h>
Yangbo Lu44cdb5b2017-11-27 15:40:17 +080024#include <hwconfig.h>
Rajesh Bhagatef0789b2018-01-17 16:13:09 +053025#include <asm/arch/fsl_serdes.h>
26#include <asm/arch/soc.h>
Laurentiu Tudor5c6dc6c2019-07-30 17:29:58 +030027#include <asm/arch-fsl-layerscape/fsl_icid.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053028
29#include "../common/qixis.h"
30#include "ls1088a_qixis.h"
Rajesh Bhagatef0789b2018-01-17 16:13:09 +053031#include "../common/vid.h"
32#include <fsl_immap.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053033
34DECLARE_GLOBAL_DATA_PTR;
35
Pankit Garg1a12b4a2018-12-27 04:37:57 +000036#ifdef CONFIG_TARGET_LS1088AQDS
37#ifdef CONFIG_TFABOOT
38struct ifc_regs ifc_cfg_ifc_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
39 {
40 "nor0",
41 CONFIG_SYS_NOR0_CSPR_EARLY,
42 CONFIG_SYS_NOR0_CSPR_EXT,
43 CONFIG_SYS_NOR_AMASK,
44 CONFIG_SYS_NOR_CSOR,
45 {
46 CONFIG_SYS_NOR_FTIM0,
47 CONFIG_SYS_NOR_FTIM1,
48 CONFIG_SYS_NOR_FTIM2,
49 CONFIG_SYS_NOR_FTIM3
50 },
51 0,
52 CONFIG_SYS_NOR0_CSPR,
53 0,
54 },
55 {
56 "nor1",
57 CONFIG_SYS_NOR1_CSPR_EARLY,
58 CONFIG_SYS_NOR0_CSPR_EXT,
59 CONFIG_SYS_NOR_AMASK_EARLY,
60 CONFIG_SYS_NOR_CSOR,
61 {
62 CONFIG_SYS_NOR_FTIM0,
63 CONFIG_SYS_NOR_FTIM1,
64 CONFIG_SYS_NOR_FTIM2,
65 CONFIG_SYS_NOR_FTIM3
66 },
67 0,
68 CONFIG_SYS_NOR1_CSPR,
69 CONFIG_SYS_NOR_AMASK,
70 },
71 {
72 "nand",
73 CONFIG_SYS_NAND_CSPR,
74 CONFIG_SYS_NAND_CSPR_EXT,
75 CONFIG_SYS_NAND_AMASK,
76 CONFIG_SYS_NAND_CSOR,
77 {
78 CONFIG_SYS_NAND_FTIM0,
79 CONFIG_SYS_NAND_FTIM1,
80 CONFIG_SYS_NAND_FTIM2,
81 CONFIG_SYS_NAND_FTIM3
82 },
83 },
84 {
85 "fpga",
86 CONFIG_SYS_FPGA_CSPR,
87 CONFIG_SYS_FPGA_CSPR_EXT,
88 SYS_FPGA_AMASK,
89 CONFIG_SYS_FPGA_CSOR,
90 {
91 SYS_FPGA_CS_FTIM0,
92 SYS_FPGA_CS_FTIM1,
93 SYS_FPGA_CS_FTIM2,
94 SYS_FPGA_CS_FTIM3
95 },
96 0,
97 SYS_FPGA_CSPR_FINAL,
98 0,
99 }
100};
101
102struct ifc_regs ifc_cfg_qspi_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
103 {
104 "nand",
105 CONFIG_SYS_NAND_CSPR,
106 CONFIG_SYS_NAND_CSPR_EXT,
107 CONFIG_SYS_NAND_AMASK,
108 CONFIG_SYS_NAND_CSOR,
109 {
110 CONFIG_SYS_NAND_FTIM0,
111 CONFIG_SYS_NAND_FTIM1,
112 CONFIG_SYS_NAND_FTIM2,
113 CONFIG_SYS_NAND_FTIM3
114 },
115 },
116 {
117 "reserved",
118 },
119 {
120 "fpga",
121 CONFIG_SYS_FPGA_CSPR,
122 CONFIG_SYS_FPGA_CSPR_EXT,
123 SYS_FPGA_AMASK,
124 CONFIG_SYS_FPGA_CSOR,
125 {
126 SYS_FPGA_CS_FTIM0,
127 SYS_FPGA_CS_FTIM1,
128 SYS_FPGA_CS_FTIM2,
129 SYS_FPGA_CS_FTIM3
130 },
131 0,
132 SYS_FPGA_CSPR_FINAL,
133 0,
134 }
135};
136
137void ifc_cfg_boot_info(struct ifc_regs_info *regs_info)
138{
139 enum boot_src src = get_boot_src();
140
141 if (src == BOOT_SOURCE_QSPI_NOR)
142 regs_info->regs = ifc_cfg_qspi_nor_boot;
143 else
144 regs_info->regs = ifc_cfg_ifc_nor_boot;
145
146 regs_info->cs_size = CONFIG_SYS_FSL_IFC_BANK_COUNT;
147}
148#endif /* CONFIG_TFABOOT */
149#endif /* CONFIG_TARGET_LS1088AQDS */
150
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530151int board_early_init_f(void)
152{
Ashish Kumar169d4932018-02-19 14:14:53 +0530153#if defined(CONFIG_SYS_I2C_EARLY_INIT) && defined(CONFIG_TARGET_LS1088AQDS)
154 i2c_early_init_f();
155#endif
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530156 fsl_lsch3_early_init_f();
157 return 0;
158}
159
160#ifdef CONFIG_FSL_QIXIS
Ashish Kumare84a3242017-08-31 16:12:54 +0530161unsigned long long get_qixis_addr(void)
162{
163 unsigned long long addr;
164
165 if (gd->flags & GD_FLG_RELOC)
166 addr = QIXIS_BASE_PHYS;
167 else
168 addr = QIXIS_BASE_PHYS_EARLY;
169
170 /*
171 * IFC address under 256MB is mapped to 0x30000000, any address above
172 * is mapped to 0x5_10000000 up to 4GB.
173 */
174 addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000;
175
176 return addr;
177}
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530178#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530179
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530180#if defined(CONFIG_VID)
181int init_func_vid(void)
182{
183 if (adjust_vdd(0) < 0)
184 printf("core voltage not adjusted\n");
185
186 return 0;
187}
188#endif
189
Pramod Kumar5b595df2018-10-12 14:04:27 +0000190int is_pb_board(void)
191{
192 u8 board_id;
193
194 board_id = QIXIS_READ(id);
195 if (board_id == LS1088ARDB_PB_BOARD)
196 return 1;
197 else
198 return 0;
199}
200
201int fixup_ls1088ardb_pb_banner(void *fdt)
202{
203 fdt_setprop_string(fdt, 0, "model", "LS1088ARDB-PB Board");
204
205 return 0;
206}
207
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530208#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530209int checkboard(void)
210{
Pankit Garg143af3c2018-12-27 04:37:55 +0000211#ifdef CONFIG_TFABOOT
212 enum boot_src src = get_boot_src();
213#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530214 char buf[64];
215 u8 sw;
216 static const char *const freq[] = {"100", "125", "156.25",
217 "100 separate SSCG"};
218 int clock;
219
Ashish Kumar77697762017-08-31 16:12:55 +0530220#ifdef CONFIG_TARGET_LS1088AQDS
221 printf("Board: LS1088A-QDS, ");
222#else
Pramod Kumar5b595df2018-10-12 14:04:27 +0000223 if (is_pb_board())
224 printf("Board: LS1088ARDB-PB, ");
225 else
226 printf("Board: LS1088A-RDB, ");
Ashish Kumar77697762017-08-31 16:12:55 +0530227#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530228
229 sw = QIXIS_READ(arch);
230 printf("Board Arch: V%d, ", sw >> 4);
231
Ashish Kumar77697762017-08-31 16:12:55 +0530232#ifdef CONFIG_TARGET_LS1088AQDS
233 printf("Board version: %c, boot from ", (sw & 0xf) + 'A' - 1);
234#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530235 printf("Board version: %c, boot from ", (sw & 0xf) + 'A');
Ashish Kumar77697762017-08-31 16:12:55 +0530236#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530237
238 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
239
240 sw = QIXIS_READ(brdcfg[0]);
241 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
242
Pankit Garg143af3c2018-12-27 04:37:55 +0000243#ifdef CONFIG_TFABOOT
244 if (src == BOOT_SOURCE_SD_MMC)
245 puts("SD card\n");
246#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530247#ifdef CONFIG_SD_BOOT
248 puts("SD card\n");
249#endif
Pankit Garg143af3c2018-12-27 04:37:55 +0000250#endif /* CONFIG_TFABOOT */
Ashish Kumare84a3242017-08-31 16:12:54 +0530251 switch (sw) {
Ashish Kumar77697762017-08-31 16:12:55 +0530252#ifdef CONFIG_TARGET_LS1088AQDS
Ashish Kumare84a3242017-08-31 16:12:54 +0530253 case 0:
Ashish Kumar77697762017-08-31 16:12:55 +0530254 case 1:
255 case 2:
256 case 3:
257 case 4:
258 case 5:
259 case 6:
260 case 7:
261 printf("vBank: %d\n", sw);
262 break;
263 case 8:
264 puts("PromJet\n");
265 break;
266 case 15:
267 puts("IFCCard\n");
268 break;
269 case 14:
270#else
271 case 0:
272#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530273 puts("QSPI:");
274 sw = QIXIS_READ(brdcfg[0]);
275 sw = (sw & QIXIS_QMAP_MASK) >> QIXIS_QMAP_SHIFT;
276 if (sw == 0 || sw == 4)
277 puts("0\n");
278 else if (sw == 1)
279 puts("1\n");
280 else
281 puts("EMU\n");
282 break;
283
284 default:
285 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
286 break;
287 }
288
Ashish Kumar77697762017-08-31 16:12:55 +0530289#ifdef CONFIG_TARGET_LS1088AQDS
290 printf("FPGA: v%d (%s), build %d",
291 (int)QIXIS_READ(scver), qixis_read_tag(buf),
292 (int)qixis_read_minor());
293 /* the timestamp string contains "\n" at the end */
294 printf(" on %s", qixis_read_time(buf));
295#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530296 printf("CPLD: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Ashish Kumar77697762017-08-31 16:12:55 +0530297#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530298
299 /*
300 * Display the actual SERDES reference clocks as configured by the
301 * dip switches on the board. Note that the SWx registers could
302 * technically be set to force the reference clocks to match the
303 * values that the SERDES expects (or vice versa). For now, however,
304 * we just display both values and hope the user notices when they
305 * don't match.
306 */
307 puts("SERDES1 Reference : ");
308 sw = QIXIS_READ(brdcfg[2]);
309 clock = (sw >> 6) & 3;
310 printf("Clock1 = %sMHz ", freq[clock]);
311 clock = (sw >> 4) & 3;
312 printf("Clock2 = %sMHz", freq[clock]);
313
314 puts("\nSERDES2 Reference : ");
315 clock = (sw >> 2) & 3;
316 printf("Clock1 = %sMHz ", freq[clock]);
317 clock = (sw >> 0) & 3;
318 printf("Clock2 = %sMHz\n", freq[clock]);
319
320 return 0;
321}
Ashish Kumard12b1662018-02-19 14:14:52 +0530322#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530323
324bool if_board_diff_clk(void)
325{
Ashish Kumar77697762017-08-31 16:12:55 +0530326#ifdef CONFIG_TARGET_LS1088AQDS
327 u8 diff_conf = QIXIS_READ(brdcfg[11]);
328 return diff_conf & 0x40;
329#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530330 u8 diff_conf = QIXIS_READ(dutcfg[11]);
331 return diff_conf & 0x80;
Ashish Kumar77697762017-08-31 16:12:55 +0530332#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530333}
334
335unsigned long get_board_sys_clk(void)
336{
337 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
338
339 switch (sysclk_conf & 0x0f) {
340 case QIXIS_SYSCLK_83:
341 return 83333333;
342 case QIXIS_SYSCLK_100:
343 return 100000000;
344 case QIXIS_SYSCLK_125:
345 return 125000000;
346 case QIXIS_SYSCLK_133:
347 return 133333333;
348 case QIXIS_SYSCLK_150:
349 return 150000000;
350 case QIXIS_SYSCLK_160:
351 return 160000000;
352 case QIXIS_SYSCLK_166:
353 return 166666666;
354 }
355
356 return 66666666;
357}
358
359unsigned long get_board_ddr_clk(void)
360{
361 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
362
363 if (if_board_diff_clk())
364 return get_board_sys_clk();
365 switch ((ddrclk_conf & 0x30) >> 4) {
366 case QIXIS_DDRCLK_100:
367 return 100000000;
368 case QIXIS_DDRCLK_125:
369 return 125000000;
370 case QIXIS_DDRCLK_133:
371 return 133333333;
372 }
373
374 return 66666666;
375}
376
377int select_i2c_ch_pca9547(u8 ch)
378{
379 int ret;
380
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800381#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530382 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800383#else
384 struct udevice *dev;
385
386 ret = i2c_get_chip_for_busnum(0, I2C_MUX_PCA_ADDR_PRI, 1, &dev);
387 if (!ret)
388 ret = dm_i2c_write(dev, 0, &ch, 1);
389#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530390 if (ret) {
391 puts("PCA: failed to select proper channel\n");
392 return ret;
393 }
394
395 return 0;
396}
397
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530398#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530399void board_retimer_init(void)
400{
401 u8 reg;
402
403 /* Retimer is connected to I2C1_CH5 */
404 select_i2c_ch_pca9547(I2C_MUX_CH5);
405
406 /* Access to Control/Shared register */
407 reg = 0x0;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800408#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530409 i2c_write(I2C_RETIMER_ADDR, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800410#else
411 struct udevice *dev;
412
413 i2c_get_chip_for_busnum(0, I2C_RETIMER_ADDR, 1, &dev);
414 dm_i2c_write(dev, 0xff, &reg, 1);
415#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530416
417 /* Read device revision and ID */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800418#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530419 i2c_read(I2C_RETIMER_ADDR, 1, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800420#else
421 dm_i2c_read(dev, 1, &reg, 1);
422#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530423 debug("Retimer version id = 0x%x\n", reg);
424
425 /* Enable Broadcast. All writes target all channel register sets */
426 reg = 0x0c;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800427#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530428 i2c_write(I2C_RETIMER_ADDR, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800429#else
430 dm_i2c_write(dev, 0xff, &reg, 1);
431#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530432
433 /* Reset Channel Registers */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800434#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530435 i2c_read(I2C_RETIMER_ADDR, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800436#else
437 dm_i2c_read(dev, 0, &reg, 1);
438#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530439 reg |= 0x4;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800440#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530441 i2c_write(I2C_RETIMER_ADDR, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800442#else
443 dm_i2c_write(dev, 0, &reg, 1);
444#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530445
446 /* Set data rate as 10.3125 Gbps */
447 reg = 0x90;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800448#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530449 i2c_write(I2C_RETIMER_ADDR, 0x60, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800450#else
451 dm_i2c_write(dev, 0x60, &reg, 1);
452#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530453 reg = 0xb3;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800454#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530455 i2c_write(I2C_RETIMER_ADDR, 0x61, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800456#else
457 dm_i2c_write(dev, 0x61, &reg, 1);
458#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530459 reg = 0x90;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800460#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530461 i2c_write(I2C_RETIMER_ADDR, 0x62, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800462#else
463 dm_i2c_write(dev, 0x62, &reg, 1);
464#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530465 reg = 0xb3;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800466#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530467 i2c_write(I2C_RETIMER_ADDR, 0x63, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800468#else
469 dm_i2c_write(dev, 0x63, &reg, 1);
470#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530471 reg = 0xcd;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800472#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530473 i2c_write(I2C_RETIMER_ADDR, 0x64, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800474#else
475 dm_i2c_write(dev, 0x64, &reg, 1);
476#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530477
478 /* Select VCO Divider to full rate (000) */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800479#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530480 i2c_read(I2C_RETIMER_ADDR, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800481#else
482 dm_i2c_read(dev, 0x2F, &reg, 1);
483#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530484 reg &= 0x0f;
485 reg |= 0x70;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800486#ifndef CONFIG_DM_I2C
Ashish Kumare84a3242017-08-31 16:12:54 +0530487 i2c_write(I2C_RETIMER_ADDR, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800488#else
489 dm_i2c_write(dev, 0x2F, &reg, 1);
490#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530491
Ashish Kumar77697762017-08-31 16:12:55 +0530492#ifdef CONFIG_TARGET_LS1088AQDS
493 /* Retimer is connected to I2C1_CH5 */
494 select_i2c_ch_pca9547(I2C_MUX_CH5);
Ashish Kumare84a3242017-08-31 16:12:54 +0530495
Ashish Kumar77697762017-08-31 16:12:55 +0530496 /* Access to Control/Shared register */
497 reg = 0x0;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800498#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530499 i2c_write(I2C_RETIMER_ADDR2, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800500#else
501 i2c_get_chip_for_busnum(0, I2C_RETIMER_ADDR2, 1, &dev);
502 dm_i2c_write(dev, 0xff, &reg, 1);
503#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530504
505 /* Read device revision and ID */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800506#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530507 i2c_read(I2C_RETIMER_ADDR2, 1, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800508#else
509 dm_i2c_read(dev, 1, &reg, 1);
510#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530511 debug("Retimer version id = 0x%x\n", reg);
512
513 /* Enable Broadcast. All writes target all channel register sets */
514 reg = 0x0c;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800515#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530516 i2c_write(I2C_RETIMER_ADDR2, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800517#else
518 dm_i2c_write(dev, 0xff, &reg, 1);
519#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530520
521 /* Reset Channel Registers */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800522#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530523 i2c_read(I2C_RETIMER_ADDR2, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800524#else
525 dm_i2c_read(dev, 0, &reg, 1);
526#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530527 reg |= 0x4;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800528#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530529 i2c_write(I2C_RETIMER_ADDR2, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800530#else
531 dm_i2c_write(dev, 0, &reg, 1);
532#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530533
534 /* Set data rate as 10.3125 Gbps */
535 reg = 0x90;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800536#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530537 i2c_write(I2C_RETIMER_ADDR2, 0x60, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800538#else
539 dm_i2c_write(dev, 0x60, &reg, 1);
540#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530541 reg = 0xb3;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800542#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530543 i2c_write(I2C_RETIMER_ADDR2, 0x61, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800544#else
545 dm_i2c_write(dev, 0x61, &reg, 1);
546#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530547 reg = 0x90;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800548#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530549 i2c_write(I2C_RETIMER_ADDR2, 0x62, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800550#else
551 dm_i2c_write(dev, 0x62, &reg, 1);
552#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530553 reg = 0xb3;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800554#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530555 i2c_write(I2C_RETIMER_ADDR2, 0x63, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800556#else
557 dm_i2c_write(dev, 0x63, &reg, 1);
558#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530559 reg = 0xcd;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800560#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530561 i2c_write(I2C_RETIMER_ADDR2, 0x64, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800562#else
563 dm_i2c_write(dev, 0x64, &reg, 1);
564#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530565
566 /* Select VCO Divider to full rate (000) */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800567#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530568 i2c_read(I2C_RETIMER_ADDR2, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800569#else
570 dm_i2c_read(dev, 0x2F, &reg, 1);
571#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530572 reg &= 0x0f;
573 reg |= 0x70;
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800574#ifndef CONFIG_DM_I2C
Ashish Kumar77697762017-08-31 16:12:55 +0530575 i2c_write(I2C_RETIMER_ADDR2, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800576#else
577 dm_i2c_write(dev, 0x2F, &reg, 1);
578#endif
579
Ashish Kumar77697762017-08-31 16:12:55 +0530580#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530581 /*return the default channel*/
582 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
583}
584
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800585#ifdef CONFIG_MISC_INIT_R
586int misc_init_r(void)
587{
588#ifdef CONFIG_TARGET_LS1088ARDB
589 u8 brdcfg5;
590
591 if (hwconfig("esdhc-force-sd")) {
592 brdcfg5 = QIXIS_READ(brdcfg[5]);
593 brdcfg5 &= ~BRDCFG5_SPISDHC_MASK;
594 brdcfg5 |= BRDCFG5_FORCE_SD;
595 QIXIS_WRITE(brdcfg[5], brdcfg5);
596 }
597#endif
Chuanhua Han17489902019-08-01 16:36:57 +0800598
599#ifdef CONFIG_TARGET_LS1088AQDS
600 u8 brdcfg4, brdcfg5;
601
602 if (hwconfig("dspi-on-board")) {
603 brdcfg4 = QIXIS_READ(brdcfg[4]);
604 brdcfg4 &= ~BRDCFG4_USBOSC_MASK;
605 brdcfg4 |= BRDCFG4_SPI;
606 QIXIS_WRITE(brdcfg[4], brdcfg4);
607
608 brdcfg5 = QIXIS_READ(brdcfg[5]);
609 brdcfg5 &= ~BRDCFG5_SPR_MASK;
610 brdcfg5 |= BRDCFG5_SPI_ON_BOARD;
611 QIXIS_WRITE(brdcfg[5], brdcfg5);
612 } else if (hwconfig("dspi-off-board")) {
613 brdcfg4 = QIXIS_READ(brdcfg[4]);
614 brdcfg4 &= ~BRDCFG4_USBOSC_MASK;
615 brdcfg4 |= BRDCFG4_SPI;
616 QIXIS_WRITE(brdcfg[4], brdcfg4);
617
618 brdcfg5 = QIXIS_READ(brdcfg[5]);
619 brdcfg5 &= ~BRDCFG5_SPR_MASK;
620 brdcfg5 |= BRDCFG5_SPI_OFF_BOARD;
621 QIXIS_WRITE(brdcfg[5], brdcfg5);
622 }
623#endif
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800624 return 0;
625}
626#endif
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530627#endif
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800628
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530629int i2c_multiplexer_select_vid_channel(u8 channel)
630{
631 return select_i2c_ch_pca9547(channel);
632}
633
634#ifdef CONFIG_TARGET_LS1088AQDS
635/* read the current value(SVDD) of the LTM Regulator Voltage */
636int get_serdes_volt(void)
637{
638 int ret, vcode = 0;
639 u8 chan = PWM_CHANNEL0;
640
641 /* Select the PAGE 0 using PMBus commands PAGE for VDD */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800642#ifndef CONFIG_DM_I2C
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530643 ret = i2c_write(I2C_SVDD_MONITOR_ADDR,
644 PMBUS_CMD_PAGE, 1, &chan, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800645#else
646 struct udevice *dev;
647
648 ret = i2c_get_chip_for_busnum(0, I2C_SVDD_MONITOR_ADDR, 1, &dev);
649 if (!ret)
650 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE,
651 &chan, 1);
652#endif
653
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530654 if (ret) {
655 printf("VID: failed to select VDD Page 0\n");
656 return ret;
657 }
658
659 /* Read the output voltage using PMBus command READ_VOUT */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800660#ifndef CONFIG_DM_I2C
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530661 ret = i2c_read(I2C_SVDD_MONITOR_ADDR,
662 PMBUS_CMD_READ_VOUT, 1, (void *)&vcode, 2);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800663#else
664 dm_i2c_read(dev, PMBUS_CMD_READ_VOUT, (void *)&vcode, 2);
665#endif
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530666 if (ret) {
667 printf("VID: failed to read the volatge\n");
668 return ret;
669 }
670
671 return vcode;
672}
673
674int set_serdes_volt(int svdd)
675{
676 int ret, vdd_last;
677 u8 buff[5] = {0x04, PWM_CHANNEL0, PMBUS_CMD_VOUT_COMMAND,
678 svdd & 0xFF, (svdd & 0xFF00) >> 8};
679
680 /* Write the desired voltage code to the SVDD regulator */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800681#ifndef CONFIG_DM_I2C
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530682 ret = i2c_write(I2C_SVDD_MONITOR_ADDR,
683 PMBUS_CMD_PAGE_PLUS_WRITE, 1, (void *)&buff, 5);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800684#else
685 struct udevice *dev;
686
687 ret = i2c_get_chip_for_busnum(0, I2C_SVDD_MONITOR_ADDR, 1, &dev);
688 if (!ret)
689 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE_PLUS_WRITE,
690 (void *)&buff, 5);
691#endif
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530692 if (ret) {
693 printf("VID: I2C failed to write to the volatge regulator\n");
694 return -1;
695 }
696
697 /* Wait for the volatge to get to the desired value */
698 do {
699 vdd_last = get_serdes_volt();
700 if (vdd_last < 0) {
701 printf("VID: Couldn't read sensor abort VID adjust\n");
702 return -1;
703 }
704 } while (vdd_last != svdd);
705
706 return 1;
707}
708#else
709int get_serdes_volt(void)
710{
711 return 0;
712}
713
714int set_serdes_volt(int svdd)
715{
716 int ret;
717 u8 brdcfg4;
718
719 printf("SVDD changing of RDB\n");
720
721 /* Read the BRDCFG54 via CLPD */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800722#ifndef CONFIG_DM_I2C
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530723 ret = i2c_read(CONFIG_SYS_I2C_FPGA_ADDR,
724 QIXIS_BRDCFG4_OFFSET, 1, (void *)&brdcfg4, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800725#else
726 struct udevice *dev;
727
728 ret = i2c_get_chip_for_busnum(0, CONFIG_SYS_I2C_FPGA_ADDR, 1, &dev);
729 if (!ret)
730 ret = dm_i2c_read(dev, QIXIS_BRDCFG4_OFFSET,
731 (void *)&brdcfg4, 1);
732#endif
733
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530734 if (ret) {
735 printf("VID: I2C failed to read the CPLD BRDCFG4\n");
736 return -1;
737 }
738
739 brdcfg4 = brdcfg4 | 0x08;
740
741 /* Write to the BRDCFG4 */
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800742#ifndef CONFIG_DM_I2C
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530743 ret = i2c_write(CONFIG_SYS_I2C_FPGA_ADDR,
744 QIXIS_BRDCFG4_OFFSET, 1, (void *)&brdcfg4, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800745#else
746 ret = dm_i2c_write(dev, QIXIS_BRDCFG4_OFFSET,
747 (void *)&brdcfg4, 1);
748#endif
749
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530750 if (ret) {
751 debug("VID: I2C failed to set the SVDD CPLD BRDCFG4\n");
752 return -1;
753 }
754
755 /* Wait for the volatge to get to the desired value */
756 udelay(10000);
757
758 return 1;
759}
760#endif
761
762/* this function disables the SERDES, changes the SVDD Voltage and enables it*/
763int board_adjust_vdd(int vdd)
764{
765 int ret = 0;
766
767 debug("%s: vdd = %d\n", __func__, vdd);
768
769 /* Special settings to be performed when voltage is 900mV */
770 if (vdd == 900) {
771 ret = setup_serdes_volt(vdd);
772 if (ret < 0) {
773 ret = -1;
774 goto exit;
775 }
776 }
777exit:
778 return ret;
779}
780
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530781#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530782int board_init(void)
783{
784 init_final_memctl_regs();
785#if defined(CONFIG_TARGET_LS1088ARDB) && defined(CONFIG_FSL_MC_ENET)
786 u32 __iomem *irq_ccsr = (u32 __iomem *)ISC_BASE;
787#endif
788
789 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
790 board_retimer_init();
791
792#ifdef CONFIG_ENV_IS_NOWHERE
793 gd->env_addr = (ulong)&default_environment[0];
794#endif
795
796#if defined(CONFIG_TARGET_LS1088ARDB) && defined(CONFIG_FSL_MC_ENET)
797 /* invert AQR105 IRQ pins polarity */
798 out_le32(irq_ccsr + IRQCR_OFFSET / 4, AQR105_IRQ_MASK);
799#endif
800
Udit Agarwal30c41d22017-11-22 09:01:26 +0530801#ifdef CONFIG_FSL_CAAM
802 sec_init();
803#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530804#ifdef CONFIG_FSL_LS_PPA
805 ppa_init();
806#endif
Ioana Ciornei8b6558b2020-03-18 16:47:39 +0200807
808#if !defined(CONFIG_SYS_EARLY_PCI_INIT) && defined(CONFIG_DM_ETH)
809 pci_init();
810#endif
811
Ashish Kumare84a3242017-08-31 16:12:54 +0530812 return 0;
813}
814
Ashish Kumare84a3242017-08-31 16:12:54 +0530815void detail_board_ddr_info(void)
816{
817 puts("\nDDR ");
818 print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
819 print_ddr_info(0);
820}
821
Ashish Kumare84a3242017-08-31 16:12:54 +0530822#ifdef CONFIG_FSL_MC_ENET
Mian Yousaf Kaukab41307802019-01-29 16:38:30 +0100823void board_quiesce_devices(void)
824{
825 fsl_mc_ldpaa_exit(gd->bd);
826}
827
Ashish Kumare84a3242017-08-31 16:12:54 +0530828void fdt_fixup_board_enet(void *fdt)
829{
830 int offset;
831
832 offset = fdt_path_offset(fdt, "/fsl-mc");
833
834 if (offset < 0)
Mian Yousaf Kaukab730bd562019-01-29 16:38:31 +0100835 offset = fdt_path_offset(fdt, "/soc/fsl-mc");
Ashish Kumare84a3242017-08-31 16:12:54 +0530836
837 if (offset < 0) {
838 printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
839 __func__, offset);
840 return;
841 }
842
Mian Yousaf Kaukab7e968042018-12-18 14:01:17 +0100843 if (get_mc_boot_status() == 0 &&
844 (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0))
Ashish Kumare84a3242017-08-31 16:12:54 +0530845 fdt_status_okay(fdt, offset);
846 else
847 fdt_status_fail(fdt, offset);
848}
849#endif
850
851#ifdef CONFIG_OF_BOARD_SETUP
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530852void fsl_fdt_fixup_flash(void *fdt)
853{
854 int offset;
Pankit Garg143af3c2018-12-27 04:37:55 +0000855#ifdef CONFIG_TFABOOT
856 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
857 u32 val;
858#endif
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530859
860/*
861 * IFC-NOR and QSPI are muxed on SoC.
862 * So disable IFC node in dts if QSPI is enabled or
863 * disable QSPI node in dts in case QSPI is not enabled.
864 */
865
Pankit Garg143af3c2018-12-27 04:37:55 +0000866#ifdef CONFIG_TFABOOT
867 enum boot_src src = get_boot_src();
868 bool disable_ifc = false;
869
870 switch (src) {
871 case BOOT_SOURCE_IFC_NOR:
872 disable_ifc = false;
873 break;
874 case BOOT_SOURCE_QSPI_NOR:
875 disable_ifc = true;
876 break;
877 default:
878 val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4);
879 if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3))
880 disable_ifc = true;
881 break;
882 }
883
884 if (disable_ifc) {
885 offset = fdt_path_offset(fdt, "/soc/ifc/nor");
886
887 if (offset < 0)
888 offset = fdt_path_offset(fdt, "/ifc/nor");
889 } else {
890 offset = fdt_path_offset(fdt, "/soc/quadspi");
891
892 if (offset < 0)
893 offset = fdt_path_offset(fdt, "/quadspi");
894 }
895
896#else
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530897#ifdef CONFIG_FSL_QSPI
898 offset = fdt_path_offset(fdt, "/soc/ifc/nor");
899
900 if (offset < 0)
901 offset = fdt_path_offset(fdt, "/ifc/nor");
902#else
903 offset = fdt_path_offset(fdt, "/soc/quadspi");
904
905 if (offset < 0)
906 offset = fdt_path_offset(fdt, "/quadspi");
907#endif
Pankit Garg143af3c2018-12-27 04:37:55 +0000908#endif
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530909 if (offset < 0)
910 return;
911
912 fdt_status_disabled(fdt, offset);
913}
914
Ashish Kumare84a3242017-08-31 16:12:54 +0530915int ft_board_setup(void *blob, bd_t *bd)
916{
Mian Yousaf Kaukab41307802019-01-29 16:38:30 +0100917 int i;
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530918 u16 mc_memory_bank = 0;
919
920 u64 *base;
921 u64 *size;
922 u64 mc_memory_base = 0;
923 u64 mc_memory_size = 0;
924 u16 total_memory_banks;
Ashish Kumare84a3242017-08-31 16:12:54 +0530925
926 ft_cpu_setup(blob, bd);
927
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530928 fdt_fixup_mc_ddr(&mc_memory_base, &mc_memory_size);
929
930 if (mc_memory_base != 0)
931 mc_memory_bank++;
932
933 total_memory_banks = CONFIG_NR_DRAM_BANKS + mc_memory_bank;
934
935 base = calloc(total_memory_banks, sizeof(u64));
936 size = calloc(total_memory_banks, sizeof(u64));
937
Ashish Kumare84a3242017-08-31 16:12:54 +0530938 /* fixup DT for the two GPP DDR banks */
939 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
940 base[i] = gd->bd->bi_dram[i].start;
941 size[i] = gd->bd->bi_dram[i].size;
942 }
943
944#ifdef CONFIG_RESV_RAM
945 /* reduce size if reserved memory is within this bank */
946 if (gd->arch.resv_ram >= base[0] &&
947 gd->arch.resv_ram < base[0] + size[0])
948 size[0] = gd->arch.resv_ram - base[0];
949 else if (gd->arch.resv_ram >= base[1] &&
950 gd->arch.resv_ram < base[1] + size[1])
951 size[1] = gd->arch.resv_ram - base[1];
952#endif
953
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530954 if (mc_memory_base != 0) {
955 for (i = 0; i <= total_memory_banks; i++) {
956 if (base[i] == 0 && size[i] == 0) {
957 base[i] = mc_memory_base;
958 size[i] = mc_memory_size;
959 break;
960 }
961 }
962 }
963
964 fdt_fixup_memory_banks(blob, base, size, total_memory_banks);
Ashish Kumare84a3242017-08-31 16:12:54 +0530965
Nipun Guptaa78df402018-08-20 16:01:14 +0530966 fdt_fsl_mc_fixup_iommu_map_entry(blob);
967
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530968 fsl_fdt_fixup_flash(blob);
969
Ashish Kumare84a3242017-08-31 16:12:54 +0530970#ifdef CONFIG_FSL_MC_ENET
971 fdt_fixup_board_enet(blob);
Ashish Kumare84a3242017-08-31 16:12:54 +0530972#endif
Laurentiu Tudor5c6dc6c2019-07-30 17:29:58 +0300973
974 fdt_fixup_icid(blob);
975
Pramod Kumar5b595df2018-10-12 14:04:27 +0000976 if (is_pb_board())
977 fixup_ls1088ardb_pb_banner(blob);
Ashish Kumare84a3242017-08-31 16:12:54 +0530978
979 return 0;
980}
981#endif
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530982#endif /* defined(CONFIG_SPL_BUILD) */
Pankit Garg143af3c2018-12-27 04:37:55 +0000983
984#ifdef CONFIG_TFABOOT
985#ifdef CONFIG_MTD_NOR_FLASH
986int is_flash_available(void)
987{
988 char *env_hwconfig = env_get("hwconfig");
989 enum boot_src src = get_boot_src();
990 int is_nor_flash_available = 1;
991
992 switch (src) {
993 case BOOT_SOURCE_IFC_NOR:
994 is_nor_flash_available = 1;
995 break;
996 case BOOT_SOURCE_QSPI_NOR:
997 is_nor_flash_available = 0;
998 break;
999 /*
1000 * In Case of SD boot,if qspi is defined in env_hwconfig
1001 * disable nor flash probe.
1002 */
1003 default:
1004 if (hwconfig_f("qspi", env_hwconfig))
1005 is_nor_flash_available = 0;
1006 break;
1007 }
1008 return is_nor_flash_available;
1009}
1010#endif
1011
Tom Rinidbcb4da2019-11-18 20:02:08 -05001012#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
Pankit Garg143af3c2018-12-27 04:37:55 +00001013void *env_sf_get_env_addr(void)
1014{
1015 return (void *)(CONFIG_SYS_FSL_QSPI_BASE + CONFIG_ENV_OFFSET);
1016}
1017#endif
Tom Rinidbcb4da2019-11-18 20:02:08 -05001018#endif