blob: aa548b20d7f79e0266df213f796bf9c18368e613 [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>
Tom Rini2f8a6db2021-12-14 13:36:40 -05006#include <clock_legacy.h>
Simon Glass7b51b572019-08-01 09:46:52 -06007#include <env.h>
Ashish Kumare84a3242017-08-31 16:12:54 +05308#include <i2c.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053011#include <malloc.h>
12#include <errno.h>
13#include <netdev.h>
14#include <fsl_ifc.h>
15#include <fsl_ddr.h>
16#include <fsl_sec.h>
Simon Glass401d1c42020-10-30 21:38:53 -060017#include <asm/global_data.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053018#include <asm/io.h>
19#include <fdt_support.h>
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090021#include <linux/libfdt.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053022#include <fsl-mc/fsl_mc.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060023#include <env_internal.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053024#include <asm/arch-fsl-layerscape/soc.h>
25#include <asm/arch/ppa.h>
Yangbo Lu44cdb5b2017-11-27 15:40:17 +080026#include <hwconfig.h>
Rajesh Bhagatef0789b2018-01-17 16:13:09 +053027#include <asm/arch/fsl_serdes.h>
28#include <asm/arch/soc.h>
Laurentiu Tudor5c6dc6c2019-07-30 17:29:58 +030029#include <asm/arch-fsl-layerscape/fsl_icid.h>
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -070030#include "../common/i2c_mux.h"
Ashish Kumare84a3242017-08-31 16:12:54 +053031
32#include "../common/qixis.h"
33#include "ls1088a_qixis.h"
Rajesh Bhagatef0789b2018-01-17 16:13:09 +053034#include "../common/vid.h"
35#include <fsl_immap.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053036
37DECLARE_GLOBAL_DATA_PTR;
38
Pankit Garg1a12b4a2018-12-27 04:37:57 +000039#ifdef CONFIG_TARGET_LS1088AQDS
40#ifdef CONFIG_TFABOOT
41struct ifc_regs ifc_cfg_ifc_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
42 {
43 "nor0",
44 CONFIG_SYS_NOR0_CSPR_EARLY,
45 CONFIG_SYS_NOR0_CSPR_EXT,
46 CONFIG_SYS_NOR_AMASK,
47 CONFIG_SYS_NOR_CSOR,
48 {
49 CONFIG_SYS_NOR_FTIM0,
50 CONFIG_SYS_NOR_FTIM1,
51 CONFIG_SYS_NOR_FTIM2,
52 CONFIG_SYS_NOR_FTIM3
53 },
54 0,
55 CONFIG_SYS_NOR0_CSPR,
56 0,
57 },
58 {
59 "nor1",
60 CONFIG_SYS_NOR1_CSPR_EARLY,
61 CONFIG_SYS_NOR0_CSPR_EXT,
62 CONFIG_SYS_NOR_AMASK_EARLY,
63 CONFIG_SYS_NOR_CSOR,
64 {
65 CONFIG_SYS_NOR_FTIM0,
66 CONFIG_SYS_NOR_FTIM1,
67 CONFIG_SYS_NOR_FTIM2,
68 CONFIG_SYS_NOR_FTIM3
69 },
70 0,
71 CONFIG_SYS_NOR1_CSPR,
72 CONFIG_SYS_NOR_AMASK,
73 },
74 {
75 "nand",
76 CONFIG_SYS_NAND_CSPR,
77 CONFIG_SYS_NAND_CSPR_EXT,
78 CONFIG_SYS_NAND_AMASK,
79 CONFIG_SYS_NAND_CSOR,
80 {
81 CONFIG_SYS_NAND_FTIM0,
82 CONFIG_SYS_NAND_FTIM1,
83 CONFIG_SYS_NAND_FTIM2,
84 CONFIG_SYS_NAND_FTIM3
85 },
86 },
87 {
88 "fpga",
89 CONFIG_SYS_FPGA_CSPR,
90 CONFIG_SYS_FPGA_CSPR_EXT,
91 SYS_FPGA_AMASK,
92 CONFIG_SYS_FPGA_CSOR,
93 {
94 SYS_FPGA_CS_FTIM0,
95 SYS_FPGA_CS_FTIM1,
96 SYS_FPGA_CS_FTIM2,
97 SYS_FPGA_CS_FTIM3
98 },
99 0,
100 SYS_FPGA_CSPR_FINAL,
101 0,
102 }
103};
104
105struct ifc_regs ifc_cfg_qspi_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
106 {
107 "nand",
108 CONFIG_SYS_NAND_CSPR,
109 CONFIG_SYS_NAND_CSPR_EXT,
110 CONFIG_SYS_NAND_AMASK,
111 CONFIG_SYS_NAND_CSOR,
112 {
113 CONFIG_SYS_NAND_FTIM0,
114 CONFIG_SYS_NAND_FTIM1,
115 CONFIG_SYS_NAND_FTIM2,
116 CONFIG_SYS_NAND_FTIM3
117 },
118 },
119 {
120 "reserved",
121 },
122 {
123 "fpga",
124 CONFIG_SYS_FPGA_CSPR,
125 CONFIG_SYS_FPGA_CSPR_EXT,
126 SYS_FPGA_AMASK,
127 CONFIG_SYS_FPGA_CSOR,
128 {
129 SYS_FPGA_CS_FTIM0,
130 SYS_FPGA_CS_FTIM1,
131 SYS_FPGA_CS_FTIM2,
132 SYS_FPGA_CS_FTIM3
133 },
134 0,
135 SYS_FPGA_CSPR_FINAL,
136 0,
137 }
138};
139
140void ifc_cfg_boot_info(struct ifc_regs_info *regs_info)
141{
142 enum boot_src src = get_boot_src();
143
144 if (src == BOOT_SOURCE_QSPI_NOR)
145 regs_info->regs = ifc_cfg_qspi_nor_boot;
146 else
147 regs_info->regs = ifc_cfg_ifc_nor_boot;
148
149 regs_info->cs_size = CONFIG_SYS_FSL_IFC_BANK_COUNT;
150}
151#endif /* CONFIG_TFABOOT */
152#endif /* CONFIG_TARGET_LS1088AQDS */
153
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530154int board_early_init_f(void)
155{
Ashish Kumar169d4932018-02-19 14:14:53 +0530156#if defined(CONFIG_SYS_I2C_EARLY_INIT) && defined(CONFIG_TARGET_LS1088AQDS)
157 i2c_early_init_f();
158#endif
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530159 fsl_lsch3_early_init_f();
160 return 0;
161}
162
163#ifdef CONFIG_FSL_QIXIS
Ashish Kumare84a3242017-08-31 16:12:54 +0530164unsigned long long get_qixis_addr(void)
165{
166 unsigned long long addr;
167
168 if (gd->flags & GD_FLG_RELOC)
169 addr = QIXIS_BASE_PHYS;
170 else
171 addr = QIXIS_BASE_PHYS_EARLY;
172
173 /*
174 * IFC address under 256MB is mapped to 0x30000000, any address above
175 * is mapped to 0x5_10000000 up to 4GB.
176 */
177 addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000;
178
179 return addr;
180}
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530181#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530182
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530183#if defined(CONFIG_VID)
184int init_func_vid(void)
185{
186 if (adjust_vdd(0) < 0)
187 printf("core voltage not adjusted\n");
188
189 return 0;
190}
Stephen Carlsonb5ee48c2021-02-08 11:11:29 +0100191
192u16 soc_get_fuse_vid(int vid_index)
193{
194 static const u16 vdd[32] = {
195 10250,
196 9875,
197 9750,
198 0, /* reserved */
199 0, /* reserved */
200 0, /* reserved */
201 0, /* reserved */
202 0, /* reserved */
203 9000,
204 0, /* reserved */
205 0, /* reserved */
206 0, /* reserved */
207 0, /* reserved */
208 0, /* reserved */
209 0, /* reserved */
210 0, /* reserved */
211 10000, /* 1.0000V */
212 10125,
213 10250,
214 0, /* reserved */
215 0, /* reserved */
216 0, /* reserved */
217 0, /* reserved */
218 0, /* reserved */
219 0, /* reserved */
220 0, /* reserved */
221 0, /* reserved */
222 0, /* reserved */
223 0, /* reserved */
224 0, /* reserved */
225 0, /* reserved */
226 0, /* reserved */
227 };
228
229 return vdd[vid_index];
230};
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530231#endif
232
Pramod Kumar5b595df2018-10-12 14:04:27 +0000233int is_pb_board(void)
234{
235 u8 board_id;
236
237 board_id = QIXIS_READ(id);
238 if (board_id == LS1088ARDB_PB_BOARD)
239 return 1;
240 else
241 return 0;
242}
243
244int fixup_ls1088ardb_pb_banner(void *fdt)
245{
246 fdt_setprop_string(fdt, 0, "model", "LS1088ARDB-PB Board");
247
248 return 0;
249}
250
Sumit Garg10e7eaf2018-01-06 09:04:24 +0530251#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530252int checkboard(void)
253{
Pankit Garg143af3c2018-12-27 04:37:55 +0000254#ifdef CONFIG_TFABOOT
255 enum boot_src src = get_boot_src();
256#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530257 char buf[64];
258 u8 sw;
259 static const char *const freq[] = {"100", "125", "156.25",
260 "100 separate SSCG"};
261 int clock;
262
Ashish Kumar77697762017-08-31 16:12:55 +0530263#ifdef CONFIG_TARGET_LS1088AQDS
264 printf("Board: LS1088A-QDS, ");
265#else
Pramod Kumar5b595df2018-10-12 14:04:27 +0000266 if (is_pb_board())
267 printf("Board: LS1088ARDB-PB, ");
268 else
269 printf("Board: LS1088A-RDB, ");
Ashish Kumar77697762017-08-31 16:12:55 +0530270#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530271
272 sw = QIXIS_READ(arch);
273 printf("Board Arch: V%d, ", sw >> 4);
274
Ashish Kumar77697762017-08-31 16:12:55 +0530275#ifdef CONFIG_TARGET_LS1088AQDS
276 printf("Board version: %c, boot from ", (sw & 0xf) + 'A' - 1);
277#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530278 printf("Board version: %c, boot from ", (sw & 0xf) + 'A');
Ashish Kumar77697762017-08-31 16:12:55 +0530279#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530280
281 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
282
283 sw = QIXIS_READ(brdcfg[0]);
284 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
285
Pankit Garg143af3c2018-12-27 04:37:55 +0000286#ifdef CONFIG_TFABOOT
287 if (src == BOOT_SOURCE_SD_MMC)
288 puts("SD card\n");
289#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530290#ifdef CONFIG_SD_BOOT
291 puts("SD card\n");
292#endif
Pankit Garg143af3c2018-12-27 04:37:55 +0000293#endif /* CONFIG_TFABOOT */
Ashish Kumare84a3242017-08-31 16:12:54 +0530294 switch (sw) {
Ashish Kumar77697762017-08-31 16:12:55 +0530295#ifdef CONFIG_TARGET_LS1088AQDS
Ashish Kumare84a3242017-08-31 16:12:54 +0530296 case 0:
Ashish Kumar77697762017-08-31 16:12:55 +0530297 case 1:
298 case 2:
299 case 3:
300 case 4:
301 case 5:
302 case 6:
303 case 7:
304 printf("vBank: %d\n", sw);
305 break;
306 case 8:
307 puts("PromJet\n");
308 break;
309 case 15:
310 puts("IFCCard\n");
311 break;
312 case 14:
313#else
314 case 0:
315#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530316 puts("QSPI:");
317 sw = QIXIS_READ(brdcfg[0]);
318 sw = (sw & QIXIS_QMAP_MASK) >> QIXIS_QMAP_SHIFT;
319 if (sw == 0 || sw == 4)
320 puts("0\n");
321 else if (sw == 1)
322 puts("1\n");
323 else
324 puts("EMU\n");
325 break;
326
327 default:
328 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
329 break;
330 }
331
Ashish Kumar77697762017-08-31 16:12:55 +0530332#ifdef CONFIG_TARGET_LS1088AQDS
333 printf("FPGA: v%d (%s), build %d",
334 (int)QIXIS_READ(scver), qixis_read_tag(buf),
335 (int)qixis_read_minor());
336 /* the timestamp string contains "\n" at the end */
337 printf(" on %s", qixis_read_time(buf));
338#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530339 printf("CPLD: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Ashish Kumar77697762017-08-31 16:12:55 +0530340#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530341
342 /*
343 * Display the actual SERDES reference clocks as configured by the
344 * dip switches on the board. Note that the SWx registers could
345 * technically be set to force the reference clocks to match the
346 * values that the SERDES expects (or vice versa). For now, however,
347 * we just display both values and hope the user notices when they
348 * don't match.
349 */
350 puts("SERDES1 Reference : ");
351 sw = QIXIS_READ(brdcfg[2]);
352 clock = (sw >> 6) & 3;
353 printf("Clock1 = %sMHz ", freq[clock]);
354 clock = (sw >> 4) & 3;
355 printf("Clock2 = %sMHz", freq[clock]);
356
357 puts("\nSERDES2 Reference : ");
358 clock = (sw >> 2) & 3;
359 printf("Clock1 = %sMHz ", freq[clock]);
360 clock = (sw >> 0) & 3;
361 printf("Clock2 = %sMHz\n", freq[clock]);
362
363 return 0;
364}
Ashish Kumard12b1662018-02-19 14:14:52 +0530365#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530366
367bool if_board_diff_clk(void)
368{
Ashish Kumar77697762017-08-31 16:12:55 +0530369#ifdef CONFIG_TARGET_LS1088AQDS
370 u8 diff_conf = QIXIS_READ(brdcfg[11]);
371 return diff_conf & 0x40;
372#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530373 u8 diff_conf = QIXIS_READ(dutcfg[11]);
374 return diff_conf & 0x80;
Ashish Kumar77697762017-08-31 16:12:55 +0530375#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530376}
377
Tom Rinie4c3ce72021-12-14 13:36:39 -0500378#ifdef CONFIG_DYNAMIC_SYS_CLK_FREQ
Ashish Kumare84a3242017-08-31 16:12:54 +0530379unsigned long get_board_sys_clk(void)
380{
381 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
382
383 switch (sysclk_conf & 0x0f) {
384 case QIXIS_SYSCLK_83:
385 return 83333333;
386 case QIXIS_SYSCLK_100:
387 return 100000000;
388 case QIXIS_SYSCLK_125:
389 return 125000000;
390 case QIXIS_SYSCLK_133:
391 return 133333333;
392 case QIXIS_SYSCLK_150:
393 return 150000000;
394 case QIXIS_SYSCLK_160:
395 return 160000000;
396 case QIXIS_SYSCLK_166:
397 return 166666666;
398 }
399
400 return 66666666;
401}
Tom Rinie4c3ce72021-12-14 13:36:39 -0500402#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530403
Tom Rini450de192021-12-14 13:36:37 -0500404#ifdef CONFIG_DYNAMIC_DDR_CLK_FREQ
Ashish Kumare84a3242017-08-31 16:12:54 +0530405unsigned long get_board_ddr_clk(void)
406{
407 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
408
409 if (if_board_diff_clk())
410 return get_board_sys_clk();
411 switch ((ddrclk_conf & 0x30) >> 4) {
412 case QIXIS_DDRCLK_100:
413 return 100000000;
414 case QIXIS_DDRCLK_125:
415 return 125000000;
416 case QIXIS_DDRCLK_133:
417 return 133333333;
418 }
419
420 return 66666666;
421}
Tom Rini450de192021-12-14 13:36:37 -0500422#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530423
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530424#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530425void board_retimer_init(void)
426{
427 u8 reg;
428
429 /* Retimer is connected to I2C1_CH5 */
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -0700430 select_i2c_ch_pca9547(I2C_MUX_CH5, 0);
Ashish Kumare84a3242017-08-31 16:12:54 +0530431
432 /* Access to Control/Shared register */
433 reg = 0x0;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200434#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530435 i2c_write(I2C_RETIMER_ADDR, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800436#else
437 struct udevice *dev;
438
439 i2c_get_chip_for_busnum(0, I2C_RETIMER_ADDR, 1, &dev);
440 dm_i2c_write(dev, 0xff, &reg, 1);
441#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530442
443 /* Read device revision and ID */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200444#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530445 i2c_read(I2C_RETIMER_ADDR, 1, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800446#else
447 dm_i2c_read(dev, 1, &reg, 1);
448#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530449 debug("Retimer version id = 0x%x\n", reg);
450
451 /* Enable Broadcast. All writes target all channel register sets */
452 reg = 0x0c;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200453#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530454 i2c_write(I2C_RETIMER_ADDR, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800455#else
456 dm_i2c_write(dev, 0xff, &reg, 1);
457#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530458
459 /* Reset Channel Registers */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200460#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530461 i2c_read(I2C_RETIMER_ADDR, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800462#else
463 dm_i2c_read(dev, 0, &reg, 1);
464#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530465 reg |= 0x4;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200466#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530467 i2c_write(I2C_RETIMER_ADDR, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800468#else
469 dm_i2c_write(dev, 0, &reg, 1);
470#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530471
472 /* Set data rate as 10.3125 Gbps */
473 reg = 0x90;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200474#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530475 i2c_write(I2C_RETIMER_ADDR, 0x60, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800476#else
477 dm_i2c_write(dev, 0x60, &reg, 1);
478#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530479 reg = 0xb3;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200480#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530481 i2c_write(I2C_RETIMER_ADDR, 0x61, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800482#else
483 dm_i2c_write(dev, 0x61, &reg, 1);
484#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530485 reg = 0x90;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200486#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530487 i2c_write(I2C_RETIMER_ADDR, 0x62, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800488#else
489 dm_i2c_write(dev, 0x62, &reg, 1);
490#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530491 reg = 0xb3;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200492#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530493 i2c_write(I2C_RETIMER_ADDR, 0x63, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800494#else
495 dm_i2c_write(dev, 0x63, &reg, 1);
496#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530497 reg = 0xcd;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200498#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530499 i2c_write(I2C_RETIMER_ADDR, 0x64, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800500#else
501 dm_i2c_write(dev, 0x64, &reg, 1);
502#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530503
504 /* Select VCO Divider to full rate (000) */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200505#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530506 i2c_read(I2C_RETIMER_ADDR, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800507#else
508 dm_i2c_read(dev, 0x2F, &reg, 1);
509#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530510 reg &= 0x0f;
511 reg |= 0x70;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200512#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumare84a3242017-08-31 16:12:54 +0530513 i2c_write(I2C_RETIMER_ADDR, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800514#else
515 dm_i2c_write(dev, 0x2F, &reg, 1);
516#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530517
Ashish Kumar77697762017-08-31 16:12:55 +0530518#ifdef CONFIG_TARGET_LS1088AQDS
519 /* Retimer is connected to I2C1_CH5 */
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -0700520 select_i2c_ch_pca9547(I2C_MUX_CH5, 0);
Ashish Kumare84a3242017-08-31 16:12:54 +0530521
Ashish Kumar77697762017-08-31 16:12:55 +0530522 /* Access to Control/Shared register */
523 reg = 0x0;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200524#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530525 i2c_write(I2C_RETIMER_ADDR2, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800526#else
527 i2c_get_chip_for_busnum(0, I2C_RETIMER_ADDR2, 1, &dev);
528 dm_i2c_write(dev, 0xff, &reg, 1);
529#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530530
531 /* Read device revision and ID */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200532#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530533 i2c_read(I2C_RETIMER_ADDR2, 1, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800534#else
535 dm_i2c_read(dev, 1, &reg, 1);
536#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530537 debug("Retimer version id = 0x%x\n", reg);
538
539 /* Enable Broadcast. All writes target all channel register sets */
540 reg = 0x0c;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200541#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530542 i2c_write(I2C_RETIMER_ADDR2, 0xff, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800543#else
544 dm_i2c_write(dev, 0xff, &reg, 1);
545#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530546
547 /* Reset Channel Registers */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200548#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530549 i2c_read(I2C_RETIMER_ADDR2, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800550#else
551 dm_i2c_read(dev, 0, &reg, 1);
552#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530553 reg |= 0x4;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200554#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530555 i2c_write(I2C_RETIMER_ADDR2, 0, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800556#else
557 dm_i2c_write(dev, 0, &reg, 1);
558#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530559
560 /* Set data rate as 10.3125 Gbps */
561 reg = 0x90;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200562#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530563 i2c_write(I2C_RETIMER_ADDR2, 0x60, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800564#else
565 dm_i2c_write(dev, 0x60, &reg, 1);
566#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530567 reg = 0xb3;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200568#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530569 i2c_write(I2C_RETIMER_ADDR2, 0x61, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800570#else
571 dm_i2c_write(dev, 0x61, &reg, 1);
572#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530573 reg = 0x90;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200574#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530575 i2c_write(I2C_RETIMER_ADDR2, 0x62, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800576#else
577 dm_i2c_write(dev, 0x62, &reg, 1);
578#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530579 reg = 0xb3;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200580#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530581 i2c_write(I2C_RETIMER_ADDR2, 0x63, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800582#else
583 dm_i2c_write(dev, 0x63, &reg, 1);
584#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530585 reg = 0xcd;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200586#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530587 i2c_write(I2C_RETIMER_ADDR2, 0x64, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800588#else
589 dm_i2c_write(dev, 0x64, &reg, 1);
590#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530591
592 /* Select VCO Divider to full rate (000) */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200593#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530594 i2c_read(I2C_RETIMER_ADDR2, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800595#else
596 dm_i2c_read(dev, 0x2F, &reg, 1);
597#endif
Ashish Kumar77697762017-08-31 16:12:55 +0530598 reg &= 0x0f;
599 reg |= 0x70;
Igor Opaniuk2147a162021-02-09 13:52:45 +0200600#if !CONFIG_IS_ENABLED(DM_I2C)
Ashish Kumar77697762017-08-31 16:12:55 +0530601 i2c_write(I2C_RETIMER_ADDR2, 0x2F, 1, &reg, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800602#else
603 dm_i2c_write(dev, 0x2F, &reg, 1);
604#endif
605
Ashish Kumar77697762017-08-31 16:12:55 +0530606#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530607 /*return the default channel*/
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -0700608 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Ashish Kumare84a3242017-08-31 16:12:54 +0530609}
610
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800611#ifdef CONFIG_MISC_INIT_R
612int misc_init_r(void)
613{
614#ifdef CONFIG_TARGET_LS1088ARDB
615 u8 brdcfg5;
616
617 if (hwconfig("esdhc-force-sd")) {
618 brdcfg5 = QIXIS_READ(brdcfg[5]);
619 brdcfg5 &= ~BRDCFG5_SPISDHC_MASK;
620 brdcfg5 |= BRDCFG5_FORCE_SD;
621 QIXIS_WRITE(brdcfg[5], brdcfg5);
622 }
623#endif
Chuanhua Han17489902019-08-01 16:36:57 +0800624
625#ifdef CONFIG_TARGET_LS1088AQDS
626 u8 brdcfg4, brdcfg5;
627
628 if (hwconfig("dspi-on-board")) {
629 brdcfg4 = QIXIS_READ(brdcfg[4]);
630 brdcfg4 &= ~BRDCFG4_USBOSC_MASK;
631 brdcfg4 |= BRDCFG4_SPI;
632 QIXIS_WRITE(brdcfg[4], brdcfg4);
633
634 brdcfg5 = QIXIS_READ(brdcfg[5]);
635 brdcfg5 &= ~BRDCFG5_SPR_MASK;
636 brdcfg5 |= BRDCFG5_SPI_ON_BOARD;
637 QIXIS_WRITE(brdcfg[5], brdcfg5);
638 } else if (hwconfig("dspi-off-board")) {
639 brdcfg4 = QIXIS_READ(brdcfg[4]);
640 brdcfg4 &= ~BRDCFG4_USBOSC_MASK;
641 brdcfg4 |= BRDCFG4_SPI;
642 QIXIS_WRITE(brdcfg[4], brdcfg4);
643
644 brdcfg5 = QIXIS_READ(brdcfg[5]);
645 brdcfg5 &= ~BRDCFG5_SPR_MASK;
646 brdcfg5 |= BRDCFG5_SPI_OFF_BOARD;
647 QIXIS_WRITE(brdcfg[5], brdcfg5);
648 }
649#endif
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800650 return 0;
651}
652#endif
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530653#endif
Yangbo Lu44cdb5b2017-11-27 15:40:17 +0800654
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530655int i2c_multiplexer_select_vid_channel(u8 channel)
656{
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -0700657 return select_i2c_ch_pca9547(channel, 0);
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530658}
659
660#ifdef CONFIG_TARGET_LS1088AQDS
661/* read the current value(SVDD) of the LTM Regulator Voltage */
662int get_serdes_volt(void)
663{
664 int ret, vcode = 0;
665 u8 chan = PWM_CHANNEL0;
666
667 /* Select the PAGE 0 using PMBus commands PAGE for VDD */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200668#if !CONFIG_IS_ENABLED(DM_I2C)
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530669 ret = i2c_write(I2C_SVDD_MONITOR_ADDR,
670 PMBUS_CMD_PAGE, 1, &chan, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800671#else
672 struct udevice *dev;
673
674 ret = i2c_get_chip_for_busnum(0, I2C_SVDD_MONITOR_ADDR, 1, &dev);
675 if (!ret)
676 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE,
677 &chan, 1);
678#endif
679
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530680 if (ret) {
681 printf("VID: failed to select VDD Page 0\n");
682 return ret;
683 }
684
685 /* Read the output voltage using PMBus command READ_VOUT */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200686#if !CONFIG_IS_ENABLED(DM_I2C)
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530687 ret = i2c_read(I2C_SVDD_MONITOR_ADDR,
688 PMBUS_CMD_READ_VOUT, 1, (void *)&vcode, 2);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800689#else
690 dm_i2c_read(dev, PMBUS_CMD_READ_VOUT, (void *)&vcode, 2);
691#endif
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530692 if (ret) {
693 printf("VID: failed to read the volatge\n");
694 return ret;
695 }
696
697 return vcode;
698}
699
700int set_serdes_volt(int svdd)
701{
702 int ret, vdd_last;
703 u8 buff[5] = {0x04, PWM_CHANNEL0, PMBUS_CMD_VOUT_COMMAND,
704 svdd & 0xFF, (svdd & 0xFF00) >> 8};
705
706 /* Write the desired voltage code to the SVDD regulator */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200707#if !CONFIG_IS_ENABLED(DM_I2C)
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530708 ret = i2c_write(I2C_SVDD_MONITOR_ADDR,
709 PMBUS_CMD_PAGE_PLUS_WRITE, 1, (void *)&buff, 5);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800710#else
711 struct udevice *dev;
712
713 ret = i2c_get_chip_for_busnum(0, I2C_SVDD_MONITOR_ADDR, 1, &dev);
714 if (!ret)
715 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE_PLUS_WRITE,
716 (void *)&buff, 5);
717#endif
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530718 if (ret) {
719 printf("VID: I2C failed to write to the volatge regulator\n");
720 return -1;
721 }
722
723 /* Wait for the volatge to get to the desired value */
724 do {
725 vdd_last = get_serdes_volt();
726 if (vdd_last < 0) {
727 printf("VID: Couldn't read sensor abort VID adjust\n");
728 return -1;
729 }
730 } while (vdd_last != svdd);
731
732 return 1;
733}
734#else
735int get_serdes_volt(void)
736{
737 return 0;
738}
739
740int set_serdes_volt(int svdd)
741{
742 int ret;
743 u8 brdcfg4;
744
745 printf("SVDD changing of RDB\n");
746
747 /* Read the BRDCFG54 via CLPD */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200748#if !CONFIG_IS_ENABLED(DM_I2C)
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530749 ret = i2c_read(CONFIG_SYS_I2C_FPGA_ADDR,
750 QIXIS_BRDCFG4_OFFSET, 1, (void *)&brdcfg4, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800751#else
752 struct udevice *dev;
753
754 ret = i2c_get_chip_for_busnum(0, CONFIG_SYS_I2C_FPGA_ADDR, 1, &dev);
755 if (!ret)
756 ret = dm_i2c_read(dev, QIXIS_BRDCFG4_OFFSET,
757 (void *)&brdcfg4, 1);
758#endif
759
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530760 if (ret) {
761 printf("VID: I2C failed to read the CPLD BRDCFG4\n");
762 return -1;
763 }
764
765 brdcfg4 = brdcfg4 | 0x08;
766
767 /* Write to the BRDCFG4 */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200768#if !CONFIG_IS_ENABLED(DM_I2C)
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530769 ret = i2c_write(CONFIG_SYS_I2C_FPGA_ADDR,
770 QIXIS_BRDCFG4_OFFSET, 1, (void *)&brdcfg4, 1);
Chuanhua Han5dd043a2019-07-23 18:43:11 +0800771#else
772 ret = dm_i2c_write(dev, QIXIS_BRDCFG4_OFFSET,
773 (void *)&brdcfg4, 1);
774#endif
775
Rajesh Bhagatef0789b2018-01-17 16:13:09 +0530776 if (ret) {
777 debug("VID: I2C failed to set the SVDD CPLD BRDCFG4\n");
778 return -1;
779 }
780
781 /* Wait for the volatge to get to the desired value */
782 udelay(10000);
783
784 return 1;
785}
786#endif
787
788/* this function disables the SERDES, changes the SVDD Voltage and enables it*/
789int board_adjust_vdd(int vdd)
790{
791 int ret = 0;
792
793 debug("%s: vdd = %d\n", __func__, vdd);
794
795 /* Special settings to be performed when voltage is 900mV */
796 if (vdd == 900) {
797 ret = setup_serdes_volt(vdd);
798 if (ret < 0) {
799 ret = -1;
800 goto exit;
801 }
802 }
803exit:
804 return ret;
805}
806
Rajesh Bhagat980d61a2018-01-17 16:13:10 +0530807#if !defined(CONFIG_SPL_BUILD)
Ashish Kumare84a3242017-08-31 16:12:54 +0530808int board_init(void)
809{
810 init_final_memctl_regs();
811#if defined(CONFIG_TARGET_LS1088ARDB) && defined(CONFIG_FSL_MC_ENET)
812 u32 __iomem *irq_ccsr = (u32 __iomem *)ISC_BASE;
813#endif
814
Stephen Carlsonf4cd4a72021-06-22 16:41:38 -0700815 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Ashish Kumare84a3242017-08-31 16:12:54 +0530816 board_retimer_init();
817
Ashish Kumare84a3242017-08-31 16:12:54 +0530818#if defined(CONFIG_TARGET_LS1088ARDB) && defined(CONFIG_FSL_MC_ENET)
819 /* invert AQR105 IRQ pins polarity */
820 out_le32(irq_ccsr + IRQCR_OFFSET / 4, AQR105_IRQ_MASK);
821#endif
822
Udit Agarwal30c41d22017-11-22 09:01:26 +0530823#ifdef CONFIG_FSL_CAAM
824 sec_init();
825#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530826#ifdef CONFIG_FSL_LS_PPA
827 ppa_init();
828#endif
Ioana Ciornei8b6558b2020-03-18 16:47:39 +0200829
830#if !defined(CONFIG_SYS_EARLY_PCI_INIT) && defined(CONFIG_DM_ETH)
831 pci_init();
832#endif
833
Ashish Kumare84a3242017-08-31 16:12:54 +0530834 return 0;
835}
836
Ashish Kumare84a3242017-08-31 16:12:54 +0530837void detail_board_ddr_info(void)
838{
839 puts("\nDDR ");
840 print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
841 print_ddr_info(0);
842}
843
Ashish Kumare84a3242017-08-31 16:12:54 +0530844#ifdef CONFIG_FSL_MC_ENET
Mian Yousaf Kaukab41307802019-01-29 16:38:30 +0100845void board_quiesce_devices(void)
846{
847 fsl_mc_ldpaa_exit(gd->bd);
848}
849
Ashish Kumare84a3242017-08-31 16:12:54 +0530850void fdt_fixup_board_enet(void *fdt)
851{
852 int offset;
853
854 offset = fdt_path_offset(fdt, "/fsl-mc");
855
856 if (offset < 0)
Mian Yousaf Kaukab730bd562019-01-29 16:38:31 +0100857 offset = fdt_path_offset(fdt, "/soc/fsl-mc");
Ashish Kumare84a3242017-08-31 16:12:54 +0530858
859 if (offset < 0) {
860 printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
861 __func__, offset);
862 return;
863 }
864
Mian Yousaf Kaukab7e968042018-12-18 14:01:17 +0100865 if (get_mc_boot_status() == 0 &&
866 (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0))
Ashish Kumare84a3242017-08-31 16:12:54 +0530867 fdt_status_okay(fdt, offset);
868 else
869 fdt_status_fail(fdt, offset);
870}
871#endif
872
873#ifdef CONFIG_OF_BOARD_SETUP
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530874void fsl_fdt_fixup_flash(void *fdt)
875{
876 int offset;
Pankit Garg143af3c2018-12-27 04:37:55 +0000877#ifdef CONFIG_TFABOOT
878 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
879 u32 val;
880#endif
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530881
882/*
883 * IFC-NOR and QSPI are muxed on SoC.
884 * So disable IFC node in dts if QSPI is enabled or
885 * disable QSPI node in dts in case QSPI is not enabled.
886 */
887
Pankit Garg143af3c2018-12-27 04:37:55 +0000888#ifdef CONFIG_TFABOOT
889 enum boot_src src = get_boot_src();
890 bool disable_ifc = false;
891
892 switch (src) {
893 case BOOT_SOURCE_IFC_NOR:
894 disable_ifc = false;
895 break;
896 case BOOT_SOURCE_QSPI_NOR:
897 disable_ifc = true;
898 break;
899 default:
900 val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4);
901 if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3))
902 disable_ifc = true;
903 break;
904 }
905
906 if (disable_ifc) {
907 offset = fdt_path_offset(fdt, "/soc/ifc/nor");
908
909 if (offset < 0)
910 offset = fdt_path_offset(fdt, "/ifc/nor");
911 } else {
912 offset = fdt_path_offset(fdt, "/soc/quadspi");
913
914 if (offset < 0)
915 offset = fdt_path_offset(fdt, "/quadspi");
916 }
917
918#else
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530919#ifdef CONFIG_FSL_QSPI
920 offset = fdt_path_offset(fdt, "/soc/ifc/nor");
921
922 if (offset < 0)
923 offset = fdt_path_offset(fdt, "/ifc/nor");
924#else
925 offset = fdt_path_offset(fdt, "/soc/quadspi");
926
927 if (offset < 0)
928 offset = fdt_path_offset(fdt, "/quadspi");
929#endif
Pankit Garg143af3c2018-12-27 04:37:55 +0000930#endif
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530931 if (offset < 0)
932 return;
933
934 fdt_status_disabled(fdt, offset);
935}
936
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900937int ft_board_setup(void *blob, struct bd_info *bd)
Ashish Kumare84a3242017-08-31 16:12:54 +0530938{
Mian Yousaf Kaukab41307802019-01-29 16:38:30 +0100939 int i;
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530940 u16 mc_memory_bank = 0;
941
942 u64 *base;
943 u64 *size;
944 u64 mc_memory_base = 0;
945 u64 mc_memory_size = 0;
946 u16 total_memory_banks;
Ashish Kumare84a3242017-08-31 16:12:54 +0530947
948 ft_cpu_setup(blob, bd);
949
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530950 fdt_fixup_mc_ddr(&mc_memory_base, &mc_memory_size);
951
952 if (mc_memory_base != 0)
953 mc_memory_bank++;
954
955 total_memory_banks = CONFIG_NR_DRAM_BANKS + mc_memory_bank;
956
957 base = calloc(total_memory_banks, sizeof(u64));
958 size = calloc(total_memory_banks, sizeof(u64));
959
Ashish Kumare84a3242017-08-31 16:12:54 +0530960 /* fixup DT for the two GPP DDR banks */
961 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
962 base[i] = gd->bd->bi_dram[i].start;
963 size[i] = gd->bd->bi_dram[i].size;
964 }
965
966#ifdef CONFIG_RESV_RAM
967 /* reduce size if reserved memory is within this bank */
968 if (gd->arch.resv_ram >= base[0] &&
969 gd->arch.resv_ram < base[0] + size[0])
970 size[0] = gd->arch.resv_ram - base[0];
971 else if (gd->arch.resv_ram >= base[1] &&
972 gd->arch.resv_ram < base[1] + size[1])
973 size[1] = gd->arch.resv_ram - base[1];
974#endif
975
Meenakshi Aggarwalcf0bbbd2019-05-23 15:13:43 +0530976 if (mc_memory_base != 0) {
977 for (i = 0; i <= total_memory_banks; i++) {
978 if (base[i] == 0 && size[i] == 0) {
979 base[i] = mc_memory_base;
980 size[i] = mc_memory_size;
981 break;
982 }
983 }
984 }
985
986 fdt_fixup_memory_banks(blob, base, size, total_memory_banks);
Ashish Kumare84a3242017-08-31 16:12:54 +0530987
Nipun Guptaa78df402018-08-20 16:01:14 +0530988 fdt_fsl_mc_fixup_iommu_map_entry(blob);
989
Ashish Kumar6b6b7e82017-11-09 11:14:24 +0530990 fsl_fdt_fixup_flash(blob);
991
Ashish Kumare84a3242017-08-31 16:12:54 +0530992#ifdef CONFIG_FSL_MC_ENET
993 fdt_fixup_board_enet(blob);
Ashish Kumare84a3242017-08-31 16:12:54 +0530994#endif
Laurentiu Tudor5c6dc6c2019-07-30 17:29:58 +0300995
996 fdt_fixup_icid(blob);
997
Pramod Kumar5b595df2018-10-12 14:04:27 +0000998 if (is_pb_board())
999 fixup_ls1088ardb_pb_banner(blob);
Ashish Kumare84a3242017-08-31 16:12:54 +05301000
1001 return 0;
1002}
1003#endif
Sumit Garg10e7eaf2018-01-06 09:04:24 +05301004#endif /* defined(CONFIG_SPL_BUILD) */
Pankit Garg143af3c2018-12-27 04:37:55 +00001005
1006#ifdef CONFIG_TFABOOT
1007#ifdef CONFIG_MTD_NOR_FLASH
1008int is_flash_available(void)
1009{
1010 char *env_hwconfig = env_get("hwconfig");
1011 enum boot_src src = get_boot_src();
1012 int is_nor_flash_available = 1;
1013
1014 switch (src) {
1015 case BOOT_SOURCE_IFC_NOR:
1016 is_nor_flash_available = 1;
1017 break;
1018 case BOOT_SOURCE_QSPI_NOR:
1019 is_nor_flash_available = 0;
1020 break;
1021 /*
1022 * In Case of SD boot,if qspi is defined in env_hwconfig
1023 * disable nor flash probe.
1024 */
1025 default:
1026 if (hwconfig_f("qspi", env_hwconfig))
1027 is_nor_flash_available = 0;
1028 break;
1029 }
1030 return is_nor_flash_available;
1031}
1032#endif
1033
Tom Rinidbcb4da2019-11-18 20:02:08 -05001034#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
Pankit Garg143af3c2018-12-27 04:37:55 +00001035void *env_sf_get_env_addr(void)
1036{
1037 return (void *)(CONFIG_SYS_FSL_QSPI_BASE + CONFIG_ENV_OFFSET);
1038}
1039#endif
Tom Rinidbcb4da2019-11-18 20:02:08 -05001040#endif