blob: aa6e30e6b2a6da648255e55163779785b32a5557 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Shaohui Xie126fe702016-09-07 17:56:14 +08002/*
3 * Copyright 2016 Freescale Semiconductor, Inc.
Gaurav Jain89765562022-03-24 11:50:35 +05304 * Copyright 2019-2021 NXP
Shaohui Xie126fe702016-09-07 17:56:14 +08005 */
6
7#include <common.h>
Tom Rini2f8a6db2021-12-14 13:36:40 -05008#include <clock_legacy.h>
Shaohui Xie126fe702016-09-07 17:56:14 +08009#include <i2c.h>
10#include <fdt_support.h>
Simon Glass3eace372017-04-06 12:47:04 -060011#include <fsl_ddr_sdram.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Shaohui Xie126fe702016-09-07 17:56:14 +080014#include <asm/io.h>
15#include <asm/arch/clock.h>
16#include <asm/arch/fsl_serdes.h>
Hou Zhiqiang2ac2e202017-04-14 14:48:23 +080017#include <asm/arch/ppa.h>
Shaohui Xie126fe702016-09-07 17:56:14 +080018#include <asm/arch/fdt.h>
York Sun4961eaf2017-03-06 09:02:34 -080019#include <asm/arch/mmu.h>
Rajesh Bhagat50e2d412018-11-05 18:02:40 +000020#include <asm/arch/cpu.h>
Shaohui Xie126fe702016-09-07 17:56:14 +080021#include <asm/arch/soc.h>
Laurentiu Tudor3cb4fe62018-08-09 15:19:46 +030022#include <asm/arch-fsl-layerscape/fsl_icid.h>
Shaohui Xie126fe702016-09-07 17:56:14 +080023#include <ahci.h>
24#include <hwconfig.h>
25#include <mmc.h>
26#include <scsi.h>
27#include <fm_eth.h>
28#include <fsl_csu.h>
29#include <fsl_esdhc.h>
30#include <fsl_ifc.h>
31#include <spl.h>
Stephen Carlson1a0db012021-06-22 16:40:27 -070032#include "../common/i2c_mux.h"
Shaohui Xie126fe702016-09-07 17:56:14 +080033
34#include "../common/vid.h"
35#include "../common/qixis.h"
36#include "ls1046aqds_qixis.h"
37
38DECLARE_GLOBAL_DATA_PTR;
39
Rajesh Bhagat50e2d412018-11-05 18:02:40 +000040#ifdef CONFIG_TFABOOT
41struct ifc_regs ifc_cfg_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
42 {
43 "nor0",
44 CONFIG_SYS_NOR0_CSPR,
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
55 },
56 {
57 "nor1",
58 CONFIG_SYS_NOR1_CSPR,
59 CONFIG_SYS_NOR1_CSPR_EXT,
60 CONFIG_SYS_NOR_AMASK,
61 CONFIG_SYS_NOR_CSOR,
62 {
63 CONFIG_SYS_NOR_FTIM0,
64 CONFIG_SYS_NOR_FTIM1,
65 CONFIG_SYS_NOR_FTIM2,
66 CONFIG_SYS_NOR_FTIM3
67 },
68 },
69 {
70 "nand",
71 CONFIG_SYS_NAND_CSPR,
72 CONFIG_SYS_NAND_CSPR_EXT,
73 CONFIG_SYS_NAND_AMASK,
74 CONFIG_SYS_NAND_CSOR,
75 {
76 CONFIG_SYS_NAND_FTIM0,
77 CONFIG_SYS_NAND_FTIM1,
78 CONFIG_SYS_NAND_FTIM2,
79 CONFIG_SYS_NAND_FTIM3
80 },
81 },
82 {
83 "fpga",
84 CONFIG_SYS_FPGA_CSPR,
85 CONFIG_SYS_FPGA_CSPR_EXT,
86 CONFIG_SYS_FPGA_AMASK,
87 CONFIG_SYS_FPGA_CSOR,
88 {
89 CONFIG_SYS_FPGA_FTIM0,
90 CONFIG_SYS_FPGA_FTIM1,
91 CONFIG_SYS_FPGA_FTIM2,
92 CONFIG_SYS_FPGA_FTIM3
93 },
94 }
95};
96
97struct ifc_regs ifc_cfg_nand_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = {
98 {
99 "nand",
100 CONFIG_SYS_NAND_CSPR,
101 CONFIG_SYS_NAND_CSPR_EXT,
102 CONFIG_SYS_NAND_AMASK,
103 CONFIG_SYS_NAND_CSOR,
104 {
105 CONFIG_SYS_NAND_FTIM0,
106 CONFIG_SYS_NAND_FTIM1,
107 CONFIG_SYS_NAND_FTIM2,
108 CONFIG_SYS_NAND_FTIM3
109 },
110 },
111 {
112 "nor0",
113 CONFIG_SYS_NOR0_CSPR,
114 CONFIG_SYS_NOR0_CSPR_EXT,
115 CONFIG_SYS_NOR_AMASK,
116 CONFIG_SYS_NOR_CSOR,
117 {
118 CONFIG_SYS_NOR_FTIM0,
119 CONFIG_SYS_NOR_FTIM1,
120 CONFIG_SYS_NOR_FTIM2,
121 CONFIG_SYS_NOR_FTIM3
122 },
123 },
124 {
125 "nor1",
126 CONFIG_SYS_NOR1_CSPR,
127 CONFIG_SYS_NOR1_CSPR_EXT,
128 CONFIG_SYS_NOR_AMASK,
129 CONFIG_SYS_NOR_CSOR,
130 {
131 CONFIG_SYS_NOR_FTIM0,
132 CONFIG_SYS_NOR_FTIM1,
133 CONFIG_SYS_NOR_FTIM2,
134 CONFIG_SYS_NOR_FTIM3
135 },
136 },
137 {
138 "fpga",
139 CONFIG_SYS_FPGA_CSPR,
140 CONFIG_SYS_FPGA_CSPR_EXT,
141 CONFIG_SYS_FPGA_AMASK,
142 CONFIG_SYS_FPGA_CSOR,
143 {
144 CONFIG_SYS_FPGA_FTIM0,
145 CONFIG_SYS_FPGA_FTIM1,
146 CONFIG_SYS_FPGA_FTIM2,
147 CONFIG_SYS_FPGA_FTIM3
148 },
149 }
150};
151
152void ifc_cfg_boot_info(struct ifc_regs_info *regs_info)
153{
154 enum boot_src src = get_boot_src();
155
156 if (src == BOOT_SOURCE_IFC_NAND)
157 regs_info->regs = ifc_cfg_nand_boot;
158 else
159 regs_info->regs = ifc_cfg_nor_boot;
160 regs_info->cs_size = CONFIG_SYS_FSL_IFC_BANK_COUNT;
161}
162
163#endif
164
Shaohui Xie126fe702016-09-07 17:56:14 +0800165enum {
166 MUX_TYPE_GPIO,
167};
168
169int checkboard(void)
170{
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000171#ifdef CONFIG_TFABOOT
172 enum boot_src src = get_boot_src();
173#endif
Shaohui Xie126fe702016-09-07 17:56:14 +0800174 char buf[64];
175#ifndef CONFIG_SD_BOOT
176 u8 sw;
177#endif
178
179 puts("Board: LS1046AQDS, boot from ");
180
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000181#ifdef CONFIG_TFABOOT
182 if (src == BOOT_SOURCE_SD_MMC)
183 puts("SD\n");
184 else {
185#endif
186
Shaohui Xie126fe702016-09-07 17:56:14 +0800187#ifdef CONFIG_SD_BOOT
188 puts("SD\n");
189#else
190 sw = QIXIS_READ(brdcfg[0]);
191 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
192
193 if (sw < 0x8)
194 printf("vBank: %d\n", sw);
195 else if (sw == 0x8)
196 puts("PromJet\n");
197 else if (sw == 0x9)
198 puts("NAND\n");
199 else if (sw == 0xF)
200 printf("QSPI\n");
201 else
202 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
203#endif
204
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000205#ifdef CONFIG_TFABOOT
206 }
207#endif
Shaohui Xie126fe702016-09-07 17:56:14 +0800208 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x\n",
209 QIXIS_READ(id), QIXIS_READ(arch));
210
211 printf("FPGA: v%d (%s), build %d\n",
212 (int)QIXIS_READ(scver), qixis_read_tag(buf),
213 (int)qixis_read_minor());
214
215 return 0;
216}
217
218bool if_board_diff_clk(void)
219{
220 u8 diff_conf = QIXIS_READ(brdcfg[11]);
221
222 return diff_conf & 0x40;
223}
224
225unsigned long get_board_sys_clk(void)
226{
227 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
228
229 switch (sysclk_conf & 0x0f) {
230 case QIXIS_SYSCLK_64:
231 return 64000000;
232 case QIXIS_SYSCLK_83:
233 return 83333333;
234 case QIXIS_SYSCLK_100:
235 return 100000000;
236 case QIXIS_SYSCLK_125:
237 return 125000000;
238 case QIXIS_SYSCLK_133:
239 return 133333333;
240 case QIXIS_SYSCLK_150:
241 return 150000000;
242 case QIXIS_SYSCLK_160:
243 return 160000000;
244 case QIXIS_SYSCLK_166:
245 return 166666666;
246 }
247
248 return 66666666;
249}
250
251unsigned long get_board_ddr_clk(void)
252{
253 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
254
255 if (if_board_diff_clk())
256 return get_board_sys_clk();
257 switch ((ddrclk_conf & 0x30) >> 4) {
258 case QIXIS_DDRCLK_100:
259 return 100000000;
260 case QIXIS_DDRCLK_125:
261 return 125000000;
262 case QIXIS_DDRCLK_133:
263 return 133333333;
264 }
265
266 return 66666666;
267}
268
Shaohui Xiefdc2b542016-10-28 14:24:02 +0800269#ifdef CONFIG_LPUART
270u32 get_lpuart_clk(void)
271{
272 return gd->bus_clk;
273}
274#endif
275
Shaohui Xie126fe702016-09-07 17:56:14 +0800276int dram_init(void)
277{
278 /*
279 * When resuming from deep sleep, the I2C channel may not be
280 * in the default channel. So, switch to the default channel
281 * before accessing DDR SPD.
Biwen Libb1165f2020-02-05 22:02:17 +0800282 *
283 * PCA9547 mount on I2C1 bus
Shaohui Xie126fe702016-09-07 17:56:14 +0800284 */
Biwen Libb1165f2020-02-05 22:02:17 +0800285 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Simon Glass3eace372017-04-06 12:47:04 -0600286 fsl_initdram();
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000287#if (!defined(CONFIG_SPL) && !defined(CONFIG_TFABOOT)) || \
288 defined(CONFIG_SPL_BUILD)
York Sun4961eaf2017-03-06 09:02:34 -0800289 /* This will break-before-make MMU for DDR */
290 update_early_mmu_table();
291#endif
Shaohui Xie126fe702016-09-07 17:56:14 +0800292
293 return 0;
294}
295
296int i2c_multiplexer_select_vid_channel(u8 channel)
297{
Biwen Libb1165f2020-02-05 22:02:17 +0800298 return select_i2c_ch_pca9547(channel, 0);
Shaohui Xie126fe702016-09-07 17:56:14 +0800299}
300
301int board_early_init_f(void)
302{
Biwen Lie70e10b2020-07-02 11:13:01 +0800303 u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR;
Shaohui Xie126fe702016-09-07 17:56:14 +0800304#ifdef CONFIG_HAS_FSL_XHCI_USB
305 struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
306 u32 usb_pwrfault;
307#endif
Shaohui Xiefdc2b542016-10-28 14:24:02 +0800308#ifdef CONFIG_LPUART
309 u8 uart;
310#endif
Shaohui Xie126fe702016-09-07 17:56:14 +0800311
Biwen Lie70e10b2020-07-02 11:13:01 +0800312 /*
313 * Enable secure system counter for timer
314 */
315 out_le32(cntcr, 0x1);
316
Tom Rini52c7e372021-08-18 23:12:25 -0400317#if defined(CONFIG_SYS_I2C_EARLY_INIT)
Shaohui Xie126fe702016-09-07 17:56:14 +0800318 i2c_early_init_f();
319#endif
320 fsl_lsch2_early_init_f();
321
322#ifdef CONFIG_HAS_FSL_XHCI_USB
323 out_be32(&scfg->rcwpmuxcr0, 0x3333);
324 out_be32(&scfg->usbdrvvbus_selcr, SCFG_USBDRVVBUS_SELCR_USB1);
325 usb_pwrfault = (SCFG_USBPWRFAULT_DEDICATED <<
326 SCFG_USBPWRFAULT_USB3_SHIFT) |
327 (SCFG_USBPWRFAULT_DEDICATED <<
328 SCFG_USBPWRFAULT_USB2_SHIFT) |
329 (SCFG_USBPWRFAULT_SHARED <<
330 SCFG_USBPWRFAULT_USB1_SHIFT);
331 out_be32(&scfg->usbpwrfault_selcr, usb_pwrfault);
332#endif
333
Shaohui Xiefdc2b542016-10-28 14:24:02 +0800334#ifdef CONFIG_LPUART
335 /* We use lpuart0 as system console */
336 uart = QIXIS_READ(brdcfg[14]);
337 uart &= ~CFG_UART_MUX_MASK;
338 uart |= CFG_LPUART_EN << CFG_UART_MUX_SHIFT;
339 QIXIS_WRITE(brdcfg[14], uart);
340#endif
341
Shaohui Xie126fe702016-09-07 17:56:14 +0800342 return 0;
343}
344
345#ifdef CONFIG_FSL_DEEP_SLEEP
346/* determine if it is a warm boot */
347bool is_warm_boot(void)
348{
349#define DCFG_CCSR_CRSTSR_WDRFR (1 << 3)
350 struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
351
352 if (in_be32(&gur->crstsr) & DCFG_CCSR_CRSTSR_WDRFR)
353 return 1;
354
355 return 0;
356}
357#endif
358
359int config_board_mux(int ctrl_type)
360{
361 u8 reg14;
362
363 reg14 = QIXIS_READ(brdcfg[14]);
364
365 switch (ctrl_type) {
366 case MUX_TYPE_GPIO:
367 reg14 = (reg14 & (~0x6)) | 0x2;
368 break;
369 default:
370 puts("Unsupported mux interface type\n");
371 return -1;
372 }
373
374 QIXIS_WRITE(brdcfg[14], reg14);
375
376 return 0;
377}
378
379int config_serdes_mux(void)
380{
381 return 0;
382}
383
384#ifdef CONFIG_MISC_INIT_R
385int misc_init_r(void)
386{
387 if (hwconfig("gpio"))
388 config_board_mux(MUX_TYPE_GPIO);
389
390 return 0;
391}
392#endif
393
394int board_init(void)
395{
Biwen Libb1165f2020-02-05 22:02:17 +0800396 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Shaohui Xie126fe702016-09-07 17:56:14 +0800397
398#ifdef CONFIG_SYS_FSL_SERDES
399 config_serdes_mux();
400#endif
401
Shaohui Xie126fe702016-09-07 17:56:14 +0800402 if (adjust_vdd(0))
403 printf("Warning: Adjusting core voltage failed.\n");
404
Hou Zhiqiang2ac2e202017-04-14 14:48:23 +0800405#ifdef CONFIG_FSL_LS_PPA
406 ppa_init();
407#endif
408
Udit Agarwal5536c3c2019-11-07 16:11:32 +0000409#ifdef CONFIG_NXP_ESBC
Sumit Gargb7c19ea2017-03-23 13:48:17 +0530410 /*
411 * In case of Secure Boot, the IBR configures the SMMU
412 * to allow only Secure transactions.
413 * SMMU must be reset in bypass mode.
414 * Set the ClientPD bit and Clear the USFCFG Bit
415 */
416 u32 val;
417 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
418 out_le32(SMMU_SCR0, val);
419 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
420 out_le32(SMMU_NSCR0, val);
421#endif
422
Shaohui Xie126fe702016-09-07 17:56:14 +0800423 return 0;
424}
425
426#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900427int ft_board_setup(void *blob, struct bd_info *bd)
Shaohui Xie126fe702016-09-07 17:56:14 +0800428{
429 u64 base[CONFIG_NR_DRAM_BANKS];
430 u64 size[CONFIG_NR_DRAM_BANKS];
431 u8 reg;
432
433 /* fixup DT for the two DDR banks */
434 base[0] = gd->bd->bi_dram[0].start;
435 size[0] = gd->bd->bi_dram[0].size;
436 base[1] = gd->bd->bi_dram[1].start;
437 size[1] = gd->bd->bi_dram[1].size;
438
439 fdt_fixup_memory_banks(blob, base, size, 2);
440 ft_cpu_setup(blob, bd);
441
Tom Rinicd9b71c2022-08-09 10:16:22 -0400442#ifdef CONFIG_FMAN_ENET
Shaohui Xie126fe702016-09-07 17:56:14 +0800443 fdt_fixup_board_enet(blob);
444#endif
445
Laurentiu Tudor3cb4fe62018-08-09 15:19:46 +0300446 fdt_fixup_icid(blob);
447
Shaohui Xie126fe702016-09-07 17:56:14 +0800448 reg = QIXIS_READ(brdcfg[0]);
449 reg = (reg & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
450
451 /* Disable IFC if QSPI is enabled */
452 if (reg == 0xF)
453 do_fixup_by_compat(blob, "fsl,ifc",
454 "status", "disabled", 8 + 1, 1);
455
456 return 0;
457}
458#endif
459
460u8 flash_read8(void *addr)
461{
462 return __raw_readb(addr + 1);
463}
464
465void flash_write16(u16 val, void *addr)
466{
467 u16 shftval = (((val >> 8) & 0xff) | ((val << 8) & 0xff00));
468
469 __raw_writew(shftval, addr);
470}
471
472u16 flash_read16(void *addr)
473{
474 u16 val = __raw_readw(addr);
475
476 return (((val) >> 8) & 0x00ff) | (((val) << 8) & 0xff00);
477}
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000478
Tom Rinidbcb4da2019-11-18 20:02:08 -0500479#if defined(CONFIG_TFABOOT) && defined(CONFIG_ENV_IS_IN_SPI_FLASH)
Rajesh Bhagat50e2d412018-11-05 18:02:40 +0000480void *env_sf_get_env_addr(void)
481{
482 return (void *)(CONFIG_SYS_FSL_QSPI_BASE + CONFIG_ENV_OFFSET);
483}
484#endif