blob: e8722f20c139489173f72dd4ed3072a6a4827f52 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Sune12abcb2015-03-20 19:28:24 -07002/*
3 * Copyright 2015 Freescale Semiconductor
Alison Wang160a4352018-06-18 20:25:05 +08004 * Copyright 2017 NXP
York Sune12abcb2015-03-20 19:28:24 -07005 */
6#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06007#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
York Sune12abcb2015-03-20 19:28:24 -07009#include <malloc.h>
10#include <errno.h>
11#include <netdev.h>
12#include <fsl_ifc.h>
13#include <fsl_ddr.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
York Sune12abcb2015-03-20 19:28:24 -070015#include <asm/io.h>
Yangbo Lucf005552015-05-28 14:53:55 +053016#include <hwconfig.h>
York Sune12abcb2015-03-20 19:28:24 -070017#include <fdt_support.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090018#include <linux/libfdt.h>
York Sune12abcb2015-03-20 19:28:24 -070019#include <fsl-mc/fsl_mc.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060020#include <env_internal.h>
Alexander Graf34f8e972016-11-17 01:02:59 +010021#include <efi_loader.h>
York Sune12abcb2015-03-20 19:28:24 -070022#include <i2c.h>
York Sun729f2d12017-03-06 09:02:34 -080023#include <asm/arch/mmu.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080024#include <asm/arch/soc.h>
Santan Kumarc61c6992017-03-07 11:21:03 +053025#include <asm/arch/ppa.h>
Saksham Jainc0c38d22016-03-23 16:24:35 +053026#include <fsl_sec.h>
Laurentiu Tudor4adff392019-10-18 09:01:54 +000027#include <asm/arch-fsl-layerscape/fsl_icid.h>
Stephen Carlson4e979ac2021-06-22 16:42:02 -070028#include "../common/i2c_mux.h"
York Sune12abcb2015-03-20 19:28:24 -070029
Priyanka Jain6720d0a2017-04-28 10:41:34 +053030#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -070031#include "../common/qixis.h"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +053032#include "ls2080ardb_qixis.h"
Priyanka Jain6720d0a2017-04-28 10:41:34 +053033#endif
Rai Harninder6aa1f3b2016-03-23 17:04:38 +053034#include "../common/vid.h"
York Sune12abcb2015-03-20 19:28:24 -070035
Kuldeep Singhee510de2021-08-10 11:20:09 +053036#define CORTINA_FW_ADDR_IFCNOR 0x580980000
37#define CORTINA_FW_ADDR_IFCNOR_ALTBANK 0x584980000
38#define CORTINA_FW_ADDR_QSPI 0x980000
Yangbo Lucf005552015-05-28 14:53:55 +053039#define PIN_MUX_SEL_SDHC 0x00
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +080040#define PIN_MUX_SEL_DSPI 0x0a
Yangbo Lucf005552015-05-28 14:53:55 +053041
42#define SET_SDHC_MUX_SEL(reg, value) ((reg & 0xf0) | value)
York Sune12abcb2015-03-20 19:28:24 -070043DECLARE_GLOBAL_DATA_PTR;
44
Yangbo Lucf005552015-05-28 14:53:55 +053045enum {
46 MUX_TYPE_SDHC,
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +080047 MUX_TYPE_DSPI,
Yangbo Lucf005552015-05-28 14:53:55 +053048};
49
Stephen Carlsonc3301a22021-02-08 11:11:29 +010050#ifdef CONFIG_VID
51u16 soc_get_fuse_vid(int vid_index)
52{
53 static const u16 vdd[32] = {
54 10500,
55 0, /* reserved */
56 9750,
57 0, /* reserved */
58 9500,
59 0, /* reserved */
60 0, /* reserved */
61 0, /* reserved */
62 9000, /* reserved */
63 0, /* reserved */
64 0, /* reserved */
65 0, /* reserved */
66 0, /* reserved */
67 0, /* reserved */
68 0, /* reserved */
69 0, /* reserved */
70 10000, /* 1.0000V */
71 0, /* reserved */
72 10250,
73 0, /* reserved */
74 10500,
75 0, /* reserved */
76 0, /* reserved */
77 0, /* reserved */
78 0, /* reserved */
79 0, /* reserved */
80 0, /* reserved */
81 0, /* reserved */
82 0, /* reserved */
83 0, /* reserved */
84 0, /* reserved */
85 0, /* reserved */
86 };
87
88 return vdd[vid_index];
89};
90#endif
91
York Sune12abcb2015-03-20 19:28:24 -070092unsigned long long get_qixis_addr(void)
93{
94 unsigned long long addr;
95
96 if (gd->flags & GD_FLG_RELOC)
97 addr = QIXIS_BASE_PHYS;
98 else
99 addr = QIXIS_BASE_PHYS_EARLY;
100
101 /*
102 * IFC address under 256MB is mapped to 0x30000000, any address above
103 * is mapped to 0x5_10000000 up to 4GB.
104 */
105 addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000;
106
107 return addr;
108}
109
110int checkboard(void)
111{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530112#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700113 u8 sw;
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530114#endif
Prabhakar Kushwaha67f2e9c2015-05-28 14:54:07 +0530115 char buf[15];
116
117 cpu_name(buf);
118 printf("Board: %s-RDB, ", buf);
York Sune12abcb2015-03-20 19:28:24 -0700119
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530120#ifdef CONFIG_TARGET_LS2081ARDB
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530121#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700122 sw = QIXIS_READ(arch);
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530123 printf("Board version: %c, ", (sw & 0xf) + 'A');
124
125 sw = QIXIS_READ(brdcfg[0]);
Priyanka Jain75985792018-01-08 12:20:42 +0530126 sw = (sw >> QIXIS_QMAP_SHIFT) & QIXIS_QMAP_MASK;
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530127 switch (sw) {
128 case 0:
129 puts("boot from QSPI DEV#0\n");
130 puts("QSPI_CSA_1 mapped to QSPI DEV#1\n");
131 break;
132 case 1:
133 puts("boot from QSPI DEV#1\n");
134 puts("QSPI_CSA_1 mapped to QSPI DEV#0\n");
135 break;
136 case 2:
137 puts("boot from QSPI EMU\n");
138 puts("QSPI_CSA_1 mapped to QSPI DEV#0\n");
139 break;
140 case 3:
141 puts("boot from QSPI EMU\n");
142 puts("QSPI_CSA_1 mapped to QSPI DEV#1\n");
143 break;
144 case 4:
145 puts("boot from QSPI DEV#0\n");
146 puts("QSPI_CSA_1 mapped to QSPI EMU\n");
147 break;
148 default:
149 printf("invalid setting of SW%u\n", sw);
150 break;
151 }
Priyanka Jain6e9d2952018-01-08 12:59:31 +0530152 printf("FPGA: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530153#endif
154 puts("SERDES1 Reference : ");
155 printf("Clock1 = 100MHz ");
156 printf("Clock2 = 161.13MHz");
157#else
158#ifdef CONFIG_FSL_QIXIS
159 sw = QIXIS_READ(arch);
160 printf("Board Arch: V%d, ", sw >> 4);
Prabhakar Kushwaha8368a592015-05-28 14:54:04 +0530161 printf("Board version: %c, boot from ", (sw & 0xf) + 'A');
York Sune12abcb2015-03-20 19:28:24 -0700162
163 sw = QIXIS_READ(brdcfg[0]);
164 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
165
166 if (sw < 0x8)
167 printf("vBank: %d\n", sw);
168 else if (sw == 0x9)
169 puts("NAND\n");
170 else
171 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
172
173 printf("FPGA: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530174#endif
York Sune12abcb2015-03-20 19:28:24 -0700175 puts("SERDES1 Reference : ");
176 printf("Clock1 = 156.25MHz ");
177 printf("Clock2 = 156.25MHz");
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530178#endif
York Sune12abcb2015-03-20 19:28:24 -0700179
180 puts("\nSERDES2 Reference : ");
181 printf("Clock1 = 100MHz ");
182 printf("Clock2 = 100MHz\n");
183
184 return 0;
185}
186
187unsigned long get_board_sys_clk(void)
188{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530189#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700190 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
191
192 switch (sysclk_conf & 0x0F) {
193 case QIXIS_SYSCLK_83:
194 return 83333333;
195 case QIXIS_SYSCLK_100:
196 return 100000000;
197 case QIXIS_SYSCLK_125:
198 return 125000000;
199 case QIXIS_SYSCLK_133:
200 return 133333333;
201 case QIXIS_SYSCLK_150:
202 return 150000000;
203 case QIXIS_SYSCLK_160:
204 return 160000000;
205 case QIXIS_SYSCLK_166:
206 return 166666666;
207 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530208#endif
209 return 100000000;
York Sune12abcb2015-03-20 19:28:24 -0700210}
211
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530212int i2c_multiplexer_select_vid_channel(u8 channel)
213{
Stephen Carlson4e979ac2021-06-22 16:42:02 -0700214 return select_i2c_ch_pca9547(channel, 0);
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530215}
216
Yangbo Lucf005552015-05-28 14:53:55 +0530217int config_board_mux(int ctrl_type)
218{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530219#ifdef CONFIG_FSL_QIXIS
Yangbo Lucf005552015-05-28 14:53:55 +0530220 u8 reg5;
221
222 reg5 = QIXIS_READ(brdcfg[5]);
223
224 switch (ctrl_type) {
225 case MUX_TYPE_SDHC:
226 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_SDHC);
227 break;
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800228 case MUX_TYPE_DSPI:
229 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_DSPI);
230 break;
Yangbo Lucf005552015-05-28 14:53:55 +0530231 default:
232 printf("Wrong mux interface type\n");
233 return -1;
234 }
235
236 QIXIS_WRITE(brdcfg[5], reg5);
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530237#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800238 return 0;
239}
240
Kuldeep Singhee510de2021-08-10 11:20:09 +0530241ulong *cs4340_get_fw_addr(void)
242{
243#ifdef CONFIG_TFABOOT
244 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
245 u32 svr = gur_in32(&gur->svr);
246#endif
247 ulong cortina_fw_addr = CONFIG_CORTINA_FW_ADDR;
248
249#ifdef CONFIG_TFABOOT
250 /* LS2088A TFA boot */
251 if (SVR_SOC_VER(svr) == SVR_LS2088A) {
252 enum boot_src src = get_boot_src();
253 u8 sw;
254
255 switch (src) {
256 case BOOT_SOURCE_IFC_NOR:
257 sw = QIXIS_READ(brdcfg[0]);
258 sw = (sw & 0x0f);
259 if (sw == 0)
260 cortina_fw_addr = CORTINA_FW_ADDR_IFCNOR;
261 else if (sw == 4)
262 cortina_fw_addr = CORTINA_FW_ADDR_IFCNOR_ALTBANK;
263 break;
264 case BOOT_SOURCE_QSPI_NOR:
265 /* Only one bank in QSPI */
266 cortina_fw_addr = CORTINA_FW_ADDR_QSPI;
267 break;
268 default:
269 printf("WARNING: Boot source not found\n");
270 }
271 }
272#endif
273 return (ulong *)cortina_fw_addr;
274}
275
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800276int board_init(void)
277{
York Sun8cbc1952016-05-26 13:59:03 -0700278#ifdef CONFIG_FSL_MC_ENET
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800279 u32 __iomem *irq_ccsr = (u32 __iomem *)ISC_BASE;
York Sun8cbc1952016-05-26 13:59:03 -0700280#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800281
282 init_final_memctl_regs();
283
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800284#ifdef CONFIG_ENV_IS_NOWHERE
285 gd->env_addr = (ulong)&default_environment[0];
286#endif
Stephen Carlson4e979ac2021-06-22 16:42:02 -0700287 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800288
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530289#ifdef CONFIG_FSL_QIXIS
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800290 QIXIS_WRITE(rst_ctl, QIXIS_RST_CTL_RESET_EN);
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530291#endif
Udit Agarwalc83ea8a2017-08-16 07:13:29 -0400292
293#ifdef CONFIG_FSL_CAAM
294 sec_init();
295#endif
Santan Kumarc61c6992017-03-07 11:21:03 +0530296#ifdef CONFIG_FSL_LS_PPA
297 ppa_init();
298#endif
299
York Sun8cbc1952016-05-26 13:59:03 -0700300#ifdef CONFIG_FSL_MC_ENET
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800301 /* invert AQR405 IRQ pins polarity */
302 out_le32(irq_ccsr + IRQCR_OFFSET / 4, AQR405_IRQ_MASK);
York Sun8cbc1952016-05-26 13:59:03 -0700303#endif
Udit Agarwal62ed9a82017-02-03 22:53:38 +0530304#ifdef CONFIG_FSL_CAAM
305 sec_init();
306#endif
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800307
Ioana Ciorneicfa114a2020-03-18 16:47:40 +0200308#if !defined(CONFIG_SYS_EARLY_PCI_INIT) && defined(CONFIG_DM_ETH)
309 pci_init();
310#endif
311
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800312 return 0;
313}
314
315int board_early_init_f(void)
316{
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530317#ifdef CONFIG_SYS_I2C_EARLY_INIT
318 i2c_early_init_f();
319#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800320 fsl_lsch3_early_init_f();
Yangbo Lucf005552015-05-28 14:53:55 +0530321 return 0;
322}
323
324int misc_init_r(void)
325{
Santan Kumar0ce3f402017-06-15 17:07:01 +0530326 char *env_hwconfig;
327 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
328 u32 val;
Priyanka Jain0915dda2017-09-15 10:19:48 +0530329 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
330 u32 svr = gur_in32(&gur->svr);
Santan Kumar0ce3f402017-06-15 17:07:01 +0530331
332 val = in_le32(dcfg_ccsr + DCFG_RCWSR13 / 4);
333
Simon Glass64b723f2017-08-03 12:22:12 -0600334 env_hwconfig = env_get("hwconfig");
Santan Kumar0ce3f402017-06-15 17:07:01 +0530335
336 if (hwconfig_f("dspi", env_hwconfig) &&
337 DCFG_RCWSR13_DSPI == (val & (u32)(0xf << 8)))
338 config_board_mux(MUX_TYPE_DSPI);
339 else
340 config_board_mux(MUX_TYPE_SDHC);
341
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530342 /*
Santan Kumar20e7f5a2017-06-09 11:48:05 +0530343 * LS2081ARDB RevF board has smart voltage translator
Priyanka Jaind1587182017-04-25 10:12:31 +0530344 * which needs to be programmed to enable high speed SD interface
345 * by setting GPIO4_10 output to zero
346 */
Santan Kumar20e7f5a2017-06-09 11:48:05 +0530347#ifdef CONFIG_TARGET_LS2081ARDB
Priyanka Jaind1587182017-04-25 10:12:31 +0530348 out_le32(GPIO4_GPDIR_ADDR, (1 << 21 |
349 in_le32(GPIO4_GPDIR_ADDR)));
350 out_le32(GPIO4_GPDAT_ADDR, (~(1 << 21) &
351 in_le32(GPIO4_GPDAT_ADDR)));
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530352#endif
Yangbo Lucf005552015-05-28 14:53:55 +0530353 if (hwconfig("sdhc"))
354 config_board_mux(MUX_TYPE_SDHC);
355
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530356 if (adjust_vdd(0))
357 printf("Warning: Adjusting core voltage failed.\n");
Priyanka Jain0915dda2017-09-15 10:19:48 +0530358 /*
359 * Default value of board env is based on filename which is
360 * ls2080ardb. Modify board env for other supported SoCs
361 */
362 if ((SVR_SOC_VER(svr) == SVR_LS2088A) ||
363 (SVR_SOC_VER(svr) == SVR_LS2048A))
364 env_set("board", "ls2088ardb");
365 else if ((SVR_SOC_VER(svr) == SVR_LS2081A) ||
366 (SVR_SOC_VER(svr) == SVR_LS2041A))
367 env_set("board", "ls2081ardb");
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530368
Yangbo Lucf005552015-05-28 14:53:55 +0530369 return 0;
370}
371
York Sune12abcb2015-03-20 19:28:24 -0700372void detail_board_ddr_info(void)
373{
374 puts("\nDDR ");
375 print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
376 print_ddr_info(0);
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530377#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -0700378 if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) {
York Sune12abcb2015-03-20 19:28:24 -0700379 puts("\nDP-DDR ");
380 print_size(gd->bd->bi_dram[2].size, "");
381 print_ddr_info(CONFIG_DP_DDR_CTRL);
382 }
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530383#endif
York Sune12abcb2015-03-20 19:28:24 -0700384}
385
York Sune12abcb2015-03-20 19:28:24 -0700386#ifdef CONFIG_FSL_MC_ENET
387void fdt_fixup_board_enet(void *fdt)
388{
389 int offset;
390
Stuart Yodera3466152016-03-02 16:37:13 -0600391 offset = fdt_path_offset(fdt, "/soc/fsl-mc");
York Sune12abcb2015-03-20 19:28:24 -0700392
393 if (offset < 0)
Stuart Yodera3466152016-03-02 16:37:13 -0600394 offset = fdt_path_offset(fdt, "/fsl-mc");
York Sune12abcb2015-03-20 19:28:24 -0700395
396 if (offset < 0) {
397 printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
398 __func__, offset);
399 return;
400 }
401
Mian Yousaf Kaukab97124652018-12-18 14:01:17 +0100402 if (get_mc_boot_status() == 0 &&
403 (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0))
York Sune12abcb2015-03-20 19:28:24 -0700404 fdt_status_okay(fdt, offset);
405 else
406 fdt_status_fail(fdt, offset);
407}
Alexander Graf2ebeb442016-11-17 01:02:57 +0100408
409void board_quiesce_devices(void)
410{
411 fsl_mc_ldpaa_exit(gd->bd);
412}
York Sune12abcb2015-03-20 19:28:24 -0700413#endif
414
415#ifdef CONFIG_OF_BOARD_SETUP
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530416void fsl_fdt_fixup_flash(void *fdt)
417{
418 int offset;
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000419#ifdef CONFIG_TFABOOT
420 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
421 u32 val;
422#endif
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530423
424/*
425 * IFC and QSPI are muxed on board.
426 * So disable IFC node in dts if QSPI is enabled or
427 * disable QSPI node in dts in case QSPI is not enabled.
428 */
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000429#ifdef CONFIG_TFABOOT
430 enum boot_src src = get_boot_src();
431 bool disable_ifc = false;
432
433 switch (src) {
434 case BOOT_SOURCE_IFC_NOR:
435 disable_ifc = false;
436 break;
437 case BOOT_SOURCE_QSPI_NOR:
438 disable_ifc = true;
439 break;
440 default:
441 val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4);
442 if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3))
443 disable_ifc = true;
444 break;
445 }
446
447 if (disable_ifc) {
448 offset = fdt_path_offset(fdt, "/soc/ifc");
449
450 if (offset < 0)
451 offset = fdt_path_offset(fdt, "/ifc");
452 } else {
453 offset = fdt_path_offset(fdt, "/soc/quadspi");
454
455 if (offset < 0)
456 offset = fdt_path_offset(fdt, "/quadspi");
457 }
458
459#else
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530460#ifdef CONFIG_FSL_QSPI
461 offset = fdt_path_offset(fdt, "/soc/ifc");
462
463 if (offset < 0)
464 offset = fdt_path_offset(fdt, "/ifc");
465#else
466 offset = fdt_path_offset(fdt, "/soc/quadspi");
467
468 if (offset < 0)
469 offset = fdt_path_offset(fdt, "/quadspi");
470#endif
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000471#endif
472
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530473 if (offset < 0)
474 return;
475
476 fdt_status_disabled(fdt, offset);
477}
478
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900479int ft_board_setup(void *blob, struct bd_info *bd)
York Sune12abcb2015-03-20 19:28:24 -0700480{
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530481 int i;
482 u16 mc_memory_bank = 0;
483
484 u64 *base;
485 u64 *size;
486 u64 mc_memory_base = 0;
487 u64 mc_memory_size = 0;
488 u16 total_memory_banks;
York Sune12abcb2015-03-20 19:28:24 -0700489
490 ft_cpu_setup(blob, bd);
491
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530492 fdt_fixup_mc_ddr(&mc_memory_base, &mc_memory_size);
493
494 if (mc_memory_base != 0)
495 mc_memory_bank++;
496
497 total_memory_banks = CONFIG_NR_DRAM_BANKS + mc_memory_bank;
498
499 base = calloc(total_memory_banks, sizeof(u64));
500 size = calloc(total_memory_banks, sizeof(u64));
501
Bhupesh Sharma0b10a1a2015-05-28 14:54:10 +0530502 /* fixup DT for the two GPP DDR banks */
503 base[0] = gd->bd->bi_dram[0].start;
504 size[0] = gd->bd->bi_dram[0].size;
505 base[1] = gd->bd->bi_dram[1].start;
506 size[1] = gd->bd->bi_dram[1].size;
507
York Sun4de24ef2017-03-06 09:02:28 -0800508#ifdef CONFIG_RESV_RAM
509 /* reduce size if reserved memory is within this bank */
510 if (gd->arch.resv_ram >= base[0] &&
511 gd->arch.resv_ram < base[0] + size[0])
512 size[0] = gd->arch.resv_ram - base[0];
513 else if (gd->arch.resv_ram >= base[1] &&
514 gd->arch.resv_ram < base[1] + size[1])
515 size[1] = gd->arch.resv_ram - base[1];
516#endif
517
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530518 if (mc_memory_base != 0) {
519 for (i = 0; i <= total_memory_banks; i++) {
520 if (base[i] == 0 && size[i] == 0) {
521 base[i] = mc_memory_base;
522 size[i] = mc_memory_size;
523 break;
524 }
525 }
526 }
527
528 fdt_fixup_memory_banks(blob, base, size, total_memory_banks);
York Sune12abcb2015-03-20 19:28:24 -0700529
Nipun Guptad6912642018-08-20 16:01:14 +0530530 fdt_fsl_mc_fixup_iommu_map_entry(blob);
531
Sriram Dash9fd465c2016-09-16 17:12:15 +0530532 fsl_fdt_fixup_dr_usb(blob, bd);
Sriram Dash01820952016-06-13 09:58:36 +0530533
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530534 fsl_fdt_fixup_flash(blob);
535
York Sune12abcb2015-03-20 19:28:24 -0700536#ifdef CONFIG_FSL_MC_ENET
537 fdt_fixup_board_enet(blob);
York Sune12abcb2015-03-20 19:28:24 -0700538#endif
539
Laurentiu Tudor4adff392019-10-18 09:01:54 +0000540 fdt_fixup_icid(blob);
541
York Sune12abcb2015-03-20 19:28:24 -0700542 return 0;
543}
544#endif
545
546void qixis_dump_switch(void)
547{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530548#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700549 int i, nr_of_cfgsw;
550
551 QIXIS_WRITE(cms[0], 0x00);
552 nr_of_cfgsw = QIXIS_READ(cms[1]);
553
554 puts("DIP switch settings dump:\n");
555 for (i = 1; i <= nr_of_cfgsw; i++) {
556 QIXIS_WRITE(cms[0], i);
557 printf("SW%d = (0x%02x)\n", i, QIXIS_READ(cms[1]));
558 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530559#endif
York Sune12abcb2015-03-20 19:28:24 -0700560}
York Sunac192a92015-05-28 14:54:09 +0530561
562/*
563 * Board rev C and earlier has duplicated I2C addresses for 2nd controller.
564 * Both slots has 0x54, resulting 2nd slot unusable.
565 */
566void update_spd_address(unsigned int ctrl_num,
567 unsigned int slot,
568 unsigned int *addr)
569{
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530570#ifndef CONFIG_TARGET_LS2081ARDB
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530571#ifdef CONFIG_FSL_QIXIS
York Sunac192a92015-05-28 14:54:09 +0530572 u8 sw;
573
574 sw = QIXIS_READ(arch);
575 if ((sw & 0xf) < 0x3) {
576 if (ctrl_num == 1 && slot == 0)
577 *addr = SPD_EEPROM_ADDRESS4;
578 else if (ctrl_num == 1 && slot == 1)
579 *addr = SPD_EEPROM_ADDRESS3;
580 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530581#endif
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530582#endif
York Sunac192a92015-05-28 14:54:09 +0530583}