blob: 6a1b8e3f53e945944a6897ae4ceb54aac906b355 [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>
York Sune12abcb2015-03-20 19:28:24 -07008#include <malloc.h>
9#include <errno.h>
10#include <netdev.h>
11#include <fsl_ifc.h>
12#include <fsl_ddr.h>
13#include <asm/io.h>
Yangbo Lucf005552015-05-28 14:53:55 +053014#include <hwconfig.h>
York Sune12abcb2015-03-20 19:28:24 -070015#include <fdt_support.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090016#include <linux/libfdt.h>
York Sune12abcb2015-03-20 19:28:24 -070017#include <fsl-mc/fsl_mc.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060018#include <env_internal.h>
Alexander Graf34f8e972016-11-17 01:02:59 +010019#include <efi_loader.h>
York Sune12abcb2015-03-20 19:28:24 -070020#include <i2c.h>
York Sun729f2d12017-03-06 09:02:34 -080021#include <asm/arch/mmu.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080022#include <asm/arch/soc.h>
Santan Kumarc61c6992017-03-07 11:21:03 +053023#include <asm/arch/ppa.h>
Saksham Jainc0c38d22016-03-23 16:24:35 +053024#include <fsl_sec.h>
Laurentiu Tudor4adff392019-10-18 09:01:54 +000025#include <asm/arch-fsl-layerscape/fsl_icid.h>
York Sune12abcb2015-03-20 19:28:24 -070026
Priyanka Jain6720d0a2017-04-28 10:41:34 +053027#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -070028#include "../common/qixis.h"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +053029#include "ls2080ardb_qixis.h"
Priyanka Jain6720d0a2017-04-28 10:41:34 +053030#endif
Rai Harninder6aa1f3b2016-03-23 17:04:38 +053031#include "../common/vid.h"
York Sune12abcb2015-03-20 19:28:24 -070032
Yangbo Lucf005552015-05-28 14:53:55 +053033#define PIN_MUX_SEL_SDHC 0x00
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +080034#define PIN_MUX_SEL_DSPI 0x0a
Yangbo Lucf005552015-05-28 14:53:55 +053035
36#define SET_SDHC_MUX_SEL(reg, value) ((reg & 0xf0) | value)
York Sune12abcb2015-03-20 19:28:24 -070037DECLARE_GLOBAL_DATA_PTR;
38
Yangbo Lucf005552015-05-28 14:53:55 +053039enum {
40 MUX_TYPE_SDHC,
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +080041 MUX_TYPE_DSPI,
Yangbo Lucf005552015-05-28 14:53:55 +053042};
43
York Sune12abcb2015-03-20 19:28:24 -070044unsigned long long get_qixis_addr(void)
45{
46 unsigned long long addr;
47
48 if (gd->flags & GD_FLG_RELOC)
49 addr = QIXIS_BASE_PHYS;
50 else
51 addr = QIXIS_BASE_PHYS_EARLY;
52
53 /*
54 * IFC address under 256MB is mapped to 0x30000000, any address above
55 * is mapped to 0x5_10000000 up to 4GB.
56 */
57 addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000;
58
59 return addr;
60}
61
62int checkboard(void)
63{
Priyanka Jain6720d0a2017-04-28 10:41:34 +053064#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -070065 u8 sw;
Priyanka Jain6720d0a2017-04-28 10:41:34 +053066#endif
Prabhakar Kushwaha67f2e9c2015-05-28 14:54:07 +053067 char buf[15];
68
69 cpu_name(buf);
70 printf("Board: %s-RDB, ", buf);
York Sune12abcb2015-03-20 19:28:24 -070071
Priyanka Jain75cd67f2017-04-27 15:08:07 +053072#ifdef CONFIG_TARGET_LS2081ARDB
Priyanka Jain6720d0a2017-04-28 10:41:34 +053073#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -070074 sw = QIXIS_READ(arch);
Priyanka Jain75cd67f2017-04-27 15:08:07 +053075 printf("Board version: %c, ", (sw & 0xf) + 'A');
76
77 sw = QIXIS_READ(brdcfg[0]);
Priyanka Jain75985792018-01-08 12:20:42 +053078 sw = (sw >> QIXIS_QMAP_SHIFT) & QIXIS_QMAP_MASK;
Priyanka Jain75cd67f2017-04-27 15:08:07 +053079 switch (sw) {
80 case 0:
81 puts("boot from QSPI DEV#0\n");
82 puts("QSPI_CSA_1 mapped to QSPI DEV#1\n");
83 break;
84 case 1:
85 puts("boot from QSPI DEV#1\n");
86 puts("QSPI_CSA_1 mapped to QSPI DEV#0\n");
87 break;
88 case 2:
89 puts("boot from QSPI EMU\n");
90 puts("QSPI_CSA_1 mapped to QSPI DEV#0\n");
91 break;
92 case 3:
93 puts("boot from QSPI EMU\n");
94 puts("QSPI_CSA_1 mapped to QSPI DEV#1\n");
95 break;
96 case 4:
97 puts("boot from QSPI DEV#0\n");
98 puts("QSPI_CSA_1 mapped to QSPI EMU\n");
99 break;
100 default:
101 printf("invalid setting of SW%u\n", sw);
102 break;
103 }
Priyanka Jain6e9d2952018-01-08 12:59:31 +0530104 printf("FPGA: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530105#endif
106 puts("SERDES1 Reference : ");
107 printf("Clock1 = 100MHz ");
108 printf("Clock2 = 161.13MHz");
109#else
110#ifdef CONFIG_FSL_QIXIS
111 sw = QIXIS_READ(arch);
112 printf("Board Arch: V%d, ", sw >> 4);
Prabhakar Kushwaha8368a592015-05-28 14:54:04 +0530113 printf("Board version: %c, boot from ", (sw & 0xf) + 'A');
York Sune12abcb2015-03-20 19:28:24 -0700114
115 sw = QIXIS_READ(brdcfg[0]);
116 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
117
118 if (sw < 0x8)
119 printf("vBank: %d\n", sw);
120 else if (sw == 0x9)
121 puts("NAND\n");
122 else
123 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
124
125 printf("FPGA: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata));
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530126#endif
York Sune12abcb2015-03-20 19:28:24 -0700127 puts("SERDES1 Reference : ");
128 printf("Clock1 = 156.25MHz ");
129 printf("Clock2 = 156.25MHz");
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530130#endif
York Sune12abcb2015-03-20 19:28:24 -0700131
132 puts("\nSERDES2 Reference : ");
133 printf("Clock1 = 100MHz ");
134 printf("Clock2 = 100MHz\n");
135
136 return 0;
137}
138
139unsigned long get_board_sys_clk(void)
140{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530141#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700142 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
143
144 switch (sysclk_conf & 0x0F) {
145 case QIXIS_SYSCLK_83:
146 return 83333333;
147 case QIXIS_SYSCLK_100:
148 return 100000000;
149 case QIXIS_SYSCLK_125:
150 return 125000000;
151 case QIXIS_SYSCLK_133:
152 return 133333333;
153 case QIXIS_SYSCLK_150:
154 return 150000000;
155 case QIXIS_SYSCLK_160:
156 return 160000000;
157 case QIXIS_SYSCLK_166:
158 return 166666666;
159 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530160#endif
161 return 100000000;
York Sune12abcb2015-03-20 19:28:24 -0700162}
163
164int select_i2c_ch_pca9547(u8 ch)
165{
166 int ret;
167
Chuanhua Hane9f2f9a2019-07-22 16:36:42 +0800168#ifndef CONFIG_DM_I2C
York Sune12abcb2015-03-20 19:28:24 -0700169 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
Chuanhua Hane9f2f9a2019-07-22 16:36:42 +0800170#else
171 struct udevice *dev;
172
173 ret = i2c_get_chip_for_busnum(0, I2C_MUX_PCA_ADDR_PRI, 1, &dev);
174 if (!ret)
175 ret = dm_i2c_write(dev, 0, &ch, 1);
176#endif
177
York Sune12abcb2015-03-20 19:28:24 -0700178 if (ret) {
179 puts("PCA: failed to select proper channel\n");
180 return ret;
181 }
182
183 return 0;
184}
185
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530186int i2c_multiplexer_select_vid_channel(u8 channel)
187{
188 return select_i2c_ch_pca9547(channel);
189}
190
Yangbo Lucf005552015-05-28 14:53:55 +0530191int config_board_mux(int ctrl_type)
192{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530193#ifdef CONFIG_FSL_QIXIS
Yangbo Lucf005552015-05-28 14:53:55 +0530194 u8 reg5;
195
196 reg5 = QIXIS_READ(brdcfg[5]);
197
198 switch (ctrl_type) {
199 case MUX_TYPE_SDHC:
200 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_SDHC);
201 break;
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800202 case MUX_TYPE_DSPI:
203 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_DSPI);
204 break;
Yangbo Lucf005552015-05-28 14:53:55 +0530205 default:
206 printf("Wrong mux interface type\n");
207 return -1;
208 }
209
210 QIXIS_WRITE(brdcfg[5], reg5);
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530211#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800212 return 0;
213}
214
215int board_init(void)
216{
York Sun8cbc1952016-05-26 13:59:03 -0700217#ifdef CONFIG_FSL_MC_ENET
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800218 u32 __iomem *irq_ccsr = (u32 __iomem *)ISC_BASE;
York Sun8cbc1952016-05-26 13:59:03 -0700219#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800220
221 init_final_memctl_regs();
222
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800223#ifdef CONFIG_ENV_IS_NOWHERE
224 gd->env_addr = (ulong)&default_environment[0];
225#endif
226 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
227
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530228#ifdef CONFIG_FSL_QIXIS
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800229 QIXIS_WRITE(rst_ctl, QIXIS_RST_CTL_RESET_EN);
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530230#endif
Udit Agarwalc83ea8a2017-08-16 07:13:29 -0400231
232#ifdef CONFIG_FSL_CAAM
233 sec_init();
234#endif
Santan Kumarc61c6992017-03-07 11:21:03 +0530235#ifdef CONFIG_FSL_LS_PPA
236 ppa_init();
237#endif
238
York Sun8cbc1952016-05-26 13:59:03 -0700239#ifdef CONFIG_FSL_MC_ENET
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800240 /* invert AQR405 IRQ pins polarity */
241 out_le32(irq_ccsr + IRQCR_OFFSET / 4, AQR405_IRQ_MASK);
York Sun8cbc1952016-05-26 13:59:03 -0700242#endif
Udit Agarwal62ed9a82017-02-03 22:53:38 +0530243#ifdef CONFIG_FSL_CAAM
244 sec_init();
245#endif
Shaohui Xie8c7ce822016-01-28 15:38:15 +0800246
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800247 return 0;
248}
249
250int board_early_init_f(void)
251{
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530252#ifdef CONFIG_SYS_I2C_EARLY_INIT
253 i2c_early_init_f();
254#endif
Haikun.Wang@freescale.comb8a258c2015-06-26 19:58:24 +0800255 fsl_lsch3_early_init_f();
Yangbo Lucf005552015-05-28 14:53:55 +0530256 return 0;
257}
258
259int misc_init_r(void)
260{
Santan Kumar0ce3f402017-06-15 17:07:01 +0530261 char *env_hwconfig;
262 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
263 u32 val;
Priyanka Jain0915dda2017-09-15 10:19:48 +0530264 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
265 u32 svr = gur_in32(&gur->svr);
Santan Kumar0ce3f402017-06-15 17:07:01 +0530266
267 val = in_le32(dcfg_ccsr + DCFG_RCWSR13 / 4);
268
Simon Glass64b723f2017-08-03 12:22:12 -0600269 env_hwconfig = env_get("hwconfig");
Santan Kumar0ce3f402017-06-15 17:07:01 +0530270
271 if (hwconfig_f("dspi", env_hwconfig) &&
272 DCFG_RCWSR13_DSPI == (val & (u32)(0xf << 8)))
273 config_board_mux(MUX_TYPE_DSPI);
274 else
275 config_board_mux(MUX_TYPE_SDHC);
276
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530277 /*
Santan Kumar20e7f5a2017-06-09 11:48:05 +0530278 * LS2081ARDB RevF board has smart voltage translator
Priyanka Jaind1587182017-04-25 10:12:31 +0530279 * which needs to be programmed to enable high speed SD interface
280 * by setting GPIO4_10 output to zero
281 */
Santan Kumar20e7f5a2017-06-09 11:48:05 +0530282#ifdef CONFIG_TARGET_LS2081ARDB
Priyanka Jaind1587182017-04-25 10:12:31 +0530283 out_le32(GPIO4_GPDIR_ADDR, (1 << 21 |
284 in_le32(GPIO4_GPDIR_ADDR)));
285 out_le32(GPIO4_GPDAT_ADDR, (~(1 << 21) &
286 in_le32(GPIO4_GPDAT_ADDR)));
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530287#endif
Yangbo Lucf005552015-05-28 14:53:55 +0530288 if (hwconfig("sdhc"))
289 config_board_mux(MUX_TYPE_SDHC);
290
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530291 if (adjust_vdd(0))
292 printf("Warning: Adjusting core voltage failed.\n");
Priyanka Jain0915dda2017-09-15 10:19:48 +0530293 /*
294 * Default value of board env is based on filename which is
295 * ls2080ardb. Modify board env for other supported SoCs
296 */
297 if ((SVR_SOC_VER(svr) == SVR_LS2088A) ||
298 (SVR_SOC_VER(svr) == SVR_LS2048A))
299 env_set("board", "ls2088ardb");
300 else if ((SVR_SOC_VER(svr) == SVR_LS2081A) ||
301 (SVR_SOC_VER(svr) == SVR_LS2041A))
302 env_set("board", "ls2081ardb");
Rai Harninder6aa1f3b2016-03-23 17:04:38 +0530303
Yangbo Lucf005552015-05-28 14:53:55 +0530304 return 0;
305}
306
York Sune12abcb2015-03-20 19:28:24 -0700307void detail_board_ddr_info(void)
308{
309 puts("\nDDR ");
310 print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
311 print_ddr_info(0);
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530312#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Suncbe8e1c2016-04-04 11:41:26 -0700313 if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) {
York Sune12abcb2015-03-20 19:28:24 -0700314 puts("\nDP-DDR ");
315 print_size(gd->bd->bi_dram[2].size, "");
316 print_ddr_info(CONFIG_DP_DDR_CTRL);
317 }
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530318#endif
York Sune12abcb2015-03-20 19:28:24 -0700319}
320
York Sune12abcb2015-03-20 19:28:24 -0700321#if defined(CONFIG_ARCH_MISC_INIT)
322int arch_misc_init(void)
323{
York Sune12abcb2015-03-20 19:28:24 -0700324 return 0;
325}
326#endif
327
York Sune12abcb2015-03-20 19:28:24 -0700328#ifdef CONFIG_FSL_MC_ENET
329void fdt_fixup_board_enet(void *fdt)
330{
331 int offset;
332
Stuart Yodera3466152016-03-02 16:37:13 -0600333 offset = fdt_path_offset(fdt, "/soc/fsl-mc");
York Sune12abcb2015-03-20 19:28:24 -0700334
335 if (offset < 0)
Stuart Yodera3466152016-03-02 16:37:13 -0600336 offset = fdt_path_offset(fdt, "/fsl-mc");
York Sune12abcb2015-03-20 19:28:24 -0700337
338 if (offset < 0) {
339 printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
340 __func__, offset);
341 return;
342 }
343
Mian Yousaf Kaukab97124652018-12-18 14:01:17 +0100344 if (get_mc_boot_status() == 0 &&
345 (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0))
York Sune12abcb2015-03-20 19:28:24 -0700346 fdt_status_okay(fdt, offset);
347 else
348 fdt_status_fail(fdt, offset);
349}
Alexander Graf2ebeb442016-11-17 01:02:57 +0100350
351void board_quiesce_devices(void)
352{
353 fsl_mc_ldpaa_exit(gd->bd);
354}
York Sune12abcb2015-03-20 19:28:24 -0700355#endif
356
357#ifdef CONFIG_OF_BOARD_SETUP
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530358void fsl_fdt_fixup_flash(void *fdt)
359{
360 int offset;
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000361#ifdef CONFIG_TFABOOT
362 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
363 u32 val;
364#endif
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530365
366/*
367 * IFC and QSPI are muxed on board.
368 * So disable IFC node in dts if QSPI is enabled or
369 * disable QSPI node in dts in case QSPI is not enabled.
370 */
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000371#ifdef CONFIG_TFABOOT
372 enum boot_src src = get_boot_src();
373 bool disable_ifc = false;
374
375 switch (src) {
376 case BOOT_SOURCE_IFC_NOR:
377 disable_ifc = false;
378 break;
379 case BOOT_SOURCE_QSPI_NOR:
380 disable_ifc = true;
381 break;
382 default:
383 val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4);
384 if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3))
385 disable_ifc = true;
386 break;
387 }
388
389 if (disable_ifc) {
390 offset = fdt_path_offset(fdt, "/soc/ifc");
391
392 if (offset < 0)
393 offset = fdt_path_offset(fdt, "/ifc");
394 } else {
395 offset = fdt_path_offset(fdt, "/soc/quadspi");
396
397 if (offset < 0)
398 offset = fdt_path_offset(fdt, "/quadspi");
399 }
400
401#else
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530402#ifdef CONFIG_FSL_QSPI
403 offset = fdt_path_offset(fdt, "/soc/ifc");
404
405 if (offset < 0)
406 offset = fdt_path_offset(fdt, "/ifc");
407#else
408 offset = fdt_path_offset(fdt, "/soc/quadspi");
409
410 if (offset < 0)
411 offset = fdt_path_offset(fdt, "/quadspi");
412#endif
Rajesh Bhagatd5691be2018-12-27 04:37:59 +0000413#endif
414
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530415 if (offset < 0)
416 return;
417
418 fdt_status_disabled(fdt, offset);
419}
420
York Sune12abcb2015-03-20 19:28:24 -0700421int ft_board_setup(void *blob, bd_t *bd)
422{
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530423 int i;
424 u16 mc_memory_bank = 0;
425
426 u64 *base;
427 u64 *size;
428 u64 mc_memory_base = 0;
429 u64 mc_memory_size = 0;
430 u16 total_memory_banks;
York Sune12abcb2015-03-20 19:28:24 -0700431
432 ft_cpu_setup(blob, bd);
433
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530434 fdt_fixup_mc_ddr(&mc_memory_base, &mc_memory_size);
435
436 if (mc_memory_base != 0)
437 mc_memory_bank++;
438
439 total_memory_banks = CONFIG_NR_DRAM_BANKS + mc_memory_bank;
440
441 base = calloc(total_memory_banks, sizeof(u64));
442 size = calloc(total_memory_banks, sizeof(u64));
443
Bhupesh Sharma0b10a1a2015-05-28 14:54:10 +0530444 /* fixup DT for the two GPP DDR banks */
445 base[0] = gd->bd->bi_dram[0].start;
446 size[0] = gd->bd->bi_dram[0].size;
447 base[1] = gd->bd->bi_dram[1].start;
448 size[1] = gd->bd->bi_dram[1].size;
449
York Sun4de24ef2017-03-06 09:02:28 -0800450#ifdef CONFIG_RESV_RAM
451 /* reduce size if reserved memory is within this bank */
452 if (gd->arch.resv_ram >= base[0] &&
453 gd->arch.resv_ram < base[0] + size[0])
454 size[0] = gd->arch.resv_ram - base[0];
455 else if (gd->arch.resv_ram >= base[1] &&
456 gd->arch.resv_ram < base[1] + size[1])
457 size[1] = gd->arch.resv_ram - base[1];
458#endif
459
Meenakshi Aggarwald67ae482019-05-23 15:13:43 +0530460 if (mc_memory_base != 0) {
461 for (i = 0; i <= total_memory_banks; i++) {
462 if (base[i] == 0 && size[i] == 0) {
463 base[i] = mc_memory_base;
464 size[i] = mc_memory_size;
465 break;
466 }
467 }
468 }
469
470 fdt_fixup_memory_banks(blob, base, size, total_memory_banks);
York Sune12abcb2015-03-20 19:28:24 -0700471
Nipun Guptad6912642018-08-20 16:01:14 +0530472 fdt_fsl_mc_fixup_iommu_map_entry(blob);
473
Sriram Dash9fd465c2016-09-16 17:12:15 +0530474 fsl_fdt_fixup_dr_usb(blob, bd);
Sriram Dash01820952016-06-13 09:58:36 +0530475
Santan Kumar39ea8bf2017-07-05 18:05:08 +0530476 fsl_fdt_fixup_flash(blob);
477
York Sune12abcb2015-03-20 19:28:24 -0700478#ifdef CONFIG_FSL_MC_ENET
479 fdt_fixup_board_enet(blob);
York Sune12abcb2015-03-20 19:28:24 -0700480#endif
481
Laurentiu Tudor4adff392019-10-18 09:01:54 +0000482 fdt_fixup_icid(blob);
483
York Sune12abcb2015-03-20 19:28:24 -0700484 return 0;
485}
486#endif
487
488void qixis_dump_switch(void)
489{
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530490#ifdef CONFIG_FSL_QIXIS
York Sune12abcb2015-03-20 19:28:24 -0700491 int i, nr_of_cfgsw;
492
493 QIXIS_WRITE(cms[0], 0x00);
494 nr_of_cfgsw = QIXIS_READ(cms[1]);
495
496 puts("DIP switch settings dump:\n");
497 for (i = 1; i <= nr_of_cfgsw; i++) {
498 QIXIS_WRITE(cms[0], i);
499 printf("SW%d = (0x%02x)\n", i, QIXIS_READ(cms[1]));
500 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530501#endif
York Sune12abcb2015-03-20 19:28:24 -0700502}
York Sunac192a92015-05-28 14:54:09 +0530503
504/*
505 * Board rev C and earlier has duplicated I2C addresses for 2nd controller.
506 * Both slots has 0x54, resulting 2nd slot unusable.
507 */
508void update_spd_address(unsigned int ctrl_num,
509 unsigned int slot,
510 unsigned int *addr)
511{
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530512#ifndef CONFIG_TARGET_LS2081ARDB
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530513#ifdef CONFIG_FSL_QIXIS
York Sunac192a92015-05-28 14:54:09 +0530514 u8 sw;
515
516 sw = QIXIS_READ(arch);
517 if ((sw & 0xf) < 0x3) {
518 if (ctrl_num == 1 && slot == 0)
519 *addr = SPD_EEPROM_ADDRESS4;
520 else if (ctrl_num == 1 && slot == 1)
521 *addr = SPD_EEPROM_ADDRESS3;
522 }
Priyanka Jain6720d0a2017-04-28 10:41:34 +0530523#endif
Priyanka Jain75cd67f2017-04-27 15:08:07 +0530524#endif
York Sunac192a92015-05-28 14:54:09 +0530525}