1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2018-2021 NXP
4  */
5 
6 #ifndef __LX2_COMMON_H
7 #define __LX2_COMMON_H
8 
9 #include <asm/arch/stream_id_lsch3.h>
10 #include <asm/arch/config.h>
11 #include <asm/arch/soc.h>
12 
13 #define CFG_SYS_FLASH_BASE		0x20000000
14 
15 /* DDR */
16 #define CFG_SYS_DDR_SDRAM_BASE		0x80000000UL
17 #define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY	0
18 #define CFG_SYS_DDR_BLOCK2_BASE		0x2080000000ULL
19 #define CFG_SYS_SDRAM_SIZE			0x200000000UL
20 #define CFG_SYS_SDRAM_BASE		CFG_SYS_DDR_SDRAM_BASE
21 #define SPD_EEPROM_ADDRESS1		0x51
22 #define SPD_EEPROM_ADDRESS2		0x52
23 #define SPD_EEPROM_ADDRESS3		0x53
24 #define SPD_EEPROM_ADDRESS4		0x54
25 #define SPD_EEPROM_ADDRESS5		0x55
26 #define SPD_EEPROM_ADDRESS6		0x56
27 #define SPD_EEPROM_ADDRESS		SPD_EEPROM_ADDRESS1
28 
29 /* Miscellaneous configurable options */
30 
31 /* SMP Definitinos  */
32 #define CPU_RELEASE_ADDR		secondary_boot_addr
33 
34 /* Generic Timer Definitions */
35 /*
36  * This is not an accurate number. It is used in start.S. The frequency
37  * will be udpated later when get_bus_freq(0) is available.
38  */
39 
40 /* Serial Port */
41 #define CFG_PL011_CLOCK		(get_bus_freq(0) / 4)
42 #define CFG_SYS_SERIAL0		0x21c0000
43 #define CFG_SYS_SERIAL1		0x21d0000
44 #define CFG_SYS_SERIAL2		0x21e0000
45 #define CFG_SYS_SERIAL3		0x21f0000
46 /*below might needs to be removed*/
47 #define CFG_PL01x_PORTS		{(void *)CFG_SYS_SERIAL0, \
48 					(void *)CFG_SYS_SERIAL1, \
49 					(void *)CFG_SYS_SERIAL2, \
50 					(void *)CFG_SYS_SERIAL3 }
51 
52 /* MC firmware */
53 #define CFG_SYS_LS_MC_DPC_MAX_LENGTH		0x20000
54 #define CFG_SYS_LS_MC_DRAM_DPC_OFFSET	0x00F00000
55 #define CFG_SYS_LS_MC_DPL_MAX_LENGTH		0x20000
56 #define CFG_SYS_LS_MC_DRAM_DPL_OFFSET	0x00F20000
57 #define CFG_SYS_LS_MC_BOOT_TIMEOUT_MS	5000
58 
59 /*
60  * Carve out a DDR region which will not be used by u-boot/Linux
61  *
62  * It will be used by MC and Debug Server. The MC region must be
63  * 512MB aligned, so the min size to hide is 512MB.
64  */
65 #ifdef CONFIG_FSL_MC_ENET
66 #define CFG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE	(256UL * 1024 * 1024)
67 #endif
68 
69 /* I2C bus multiplexer */
70 #define I2C_MUX_PCA_ADDR_PRI		0x77 /* Primary Mux*/
71 #define I2C_MUX_CH_DEFAULT		0x8
72 
73 /* RTC */
74 #define CFG_SYS_I2C_RTC_ADDR		0x51  /* Channel 3*/
75 
76 /* Qixis */
77 #define CFG_SYS_I2C_FPGA_ADDR		0x66
78 
79 /* USB */
80 
81 #define COUNTER_FREQUENCY_REAL		(get_board_sys_clk() / 4)
82 
83 #define HWCONFIG_BUFFER_SIZE		128
84 
85 /* Initial environment variables */
86 #define XSPI_MC_INIT_CMD				\
87 	"sf probe 0:0 && "				\
88 	"sf read 0x80640000 0x640000 0x80000 && "	\
89 	"sf read $fdt_addr_r 0xf00000 0x100000 && "	\
90 	"env exists secureboot && "			\
91 	"esbc_validate 0x80640000 && "			\
92 	"esbc_validate 0x80680000; "			\
93 	"sf read 0x80a00000 0xa00000 0x300000 && "	\
94 	"sf read 0x80e00000 0xe00000 0x100000; "	\
95 	"fsl_mc start mc 0x80a00000 0x80e00000\0"
96 
97 #define SD_MC_INIT_CMD				\
98 	"mmc read 0x80a00000 0x5000 0x1200;"	\
99 	"mmc read 0x80e00000 0x7000 0x800;"	\
100 	"mmc read $fdt_addr_r 0x7800 0x800;"	\
101 	"env exists secureboot && "		\
102 	"mmc read 0x80640000 0x3200 0x20 && "	\
103 	"mmc read 0x80680000 0x3400 0x20 && "	\
104 	"esbc_validate 0x80640000 && "		\
105 	"esbc_validate 0x80680000 ;"		\
106 	"fsl_mc start mc 0x80a00000 0x80e00000\0"
107 
108 #define SD2_MC_INIT_CMD				\
109 	"mmc dev 1; mmc read 0x80a00000 0x5000 0x1200;"	\
110 	"mmc read 0x80e00000 0x7000 0x800;"	\
111 	"mmc read $fdt_addr_r 0x7800 0x800;"	\
112 	"env exists secureboot && "		\
113 	"mmc read 0x80640000 0x3200 0x20 && "	\
114 	"mmc read 0x80680000 0x3400 0x20 && "	\
115 	"esbc_validate 0x80640000 && "		\
116 	"esbc_validate 0x80680000 ;"		\
117 	"fsl_mc start mc 0x80a00000 0x80e00000\0"
118 
119 #define EXTRA_ENV_SETTINGS			\
120 	"hwconfig=fsl_ddr:bank_intlv=auto\0"	\
121 	"ramdisk_addr=0x800000\0"		\
122 	"ramdisk_size=0x2000000\0"		\
123 	"fdt_high=0xa0000000\0"			\
124 	"initrd_high=0xffffffffffffffff\0"	\
125 	"kernel_start=0x1000000\0"		\
126 	"kernelheader_start=0x600000\0"		\
127 	"scriptaddr=0x80000000\0"		\
128 	"scripthdraddr=0x80080000\0"		\
129 	"fdtheader_addr_r=0x80100000\0"		\
130 	"kernelheader_addr_r=0x80200000\0"	\
131 	"kernel_addr_r=0x81000000\0"		\
132 	"kernelheader_size=0x40000\0"		\
133 	"fdt_addr_r=0x90000000\0"		\
134 	"load_addr=0xa0000000\0"		\
135 	"kernel_size=0x2800000\0"		\
136 	"kernel_addr_sd=0x8000\0"		\
137 	"kernelhdr_addr_sd=0x3000\0"            \
138 	"kernel_size_sd=0x14000\0"              \
139 	"kernelhdr_size_sd=0x20\0"              \
140 	"console=ttyAMA0,38400n8\0"		\
141 	BOOTENV					\
142 	"mcmemsize=0x70000000\0"		\
143 	XSPI_MC_INIT_CMD				\
144 	"scan_dev_for_boot_part="		\
145 		"part list ${devtype} ${devnum} devplist; "	\
146 		"env exists devplist || setenv devplist 1; "	\
147 		"for distro_bootpart in ${devplist}; do "	\
148 			"if fstype ${devtype} "			\
149 				"${devnum}:${distro_bootpart} "	\
150 				"bootfstype; then "		\
151 				"run scan_dev_for_boot; "	\
152 			"fi; "					\
153 		"done\0"					\
154 	"boot_a_script="					\
155 		"load ${devtype} ${devnum}:${distro_bootpart} "	\
156 			"${scriptaddr} ${prefix}${script}; "	\
157 		"env exists secureboot && load ${devtype} "	\
158 			"${devnum}:${distro_bootpart} "		\
159 			"${scripthdraddr} ${prefix}${boot_script_hdr} "	\
160 			"&& esbc_validate ${scripthdraddr};"	\
161 		"source ${scriptaddr}\0"
162 
163 #define XSPI_NOR_BOOTCOMMAND						\
164 			"sf probe 0:0; "				\
165 			"sf read 0x806c0000 0x6c0000 0x40000; "		\
166 			"env exists mcinitcmd && env exists secureboot"	\
167 			" && esbc_validate 0x806c0000; "		\
168 			"sf read 0x80d00000 0xd00000 0x100000; "	\
169 			"env exists mcinitcmd && "			\
170 			"fsl_mc lazyapply dpl 0x80d00000; "		\
171 			"run distro_bootcmd;run xspi_bootcmd; "		\
172 			"env exists secureboot && esbc_halt;"
173 
174 #define SD_BOOTCOMMAND						\
175 		"env exists mcinitcmd && mmcinfo; "		\
176 		"mmc read 0x80d00000 0x6800 0x800; "		\
177 		"env exists mcinitcmd && env exists secureboot "	\
178 		" && mmc read 0x806C0000 0x3600 0x20 "		\
179 		"&& esbc_validate 0x806C0000;env exists mcinitcmd "	\
180 		"&& fsl_mc lazyapply dpl 0x80d00000;"		\
181 		"run distro_bootcmd;run sd_bootcmd;"		\
182 		"env exists secureboot && esbc_halt;"
183 
184 #define SD2_BOOTCOMMAND						\
185 		"mmc dev 1; env exists mcinitcmd && mmcinfo; "	\
186 		"mmc read 0x80d00000 0x6800 0x800; "		\
187 		"env exists mcinitcmd && env exists secureboot "	\
188 		" && mmc read 0x806C0000 0x3600 0x20 "		\
189 		"&& esbc_validate 0x806C0000;env exists mcinitcmd "	\
190 		"&& fsl_mc lazyapply dpl 0x80d00000;"		\
191 		"run distro_bootcmd;run sd2_bootcmd;"		\
192 		"env exists secureboot && esbc_halt;"
193 
194 #ifdef CONFIG_CMD_USB
195 #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
196 #else
197 #define BOOT_TARGET_DEVICES_USB(func)
198 #endif
199 
200 #ifdef CONFIG_MMC
201 #define BOOT_TARGET_DEVICES_MMC(func, instance) func(MMC, mmc, instance)
202 #else
203 #define BOOT_TARGET_DEVICES_MMC(func)
204 #endif
205 
206 #ifdef CONFIG_SCSI
207 #define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0)
208 #else
209 #define BOOT_TARGET_DEVICES_SCSI(func)
210 #endif
211 
212 #ifdef CONFIG_CMD_DHCP
213 #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
214 #else
215 #define BOOT_TARGET_DEVICES_DHCP(func)
216 #endif
217 
218 #define BOOT_TARGET_DEVICES(func) \
219 	BOOT_TARGET_DEVICES_USB(func) \
220 	BOOT_TARGET_DEVICES_MMC(func, 0) \
221 	BOOT_TARGET_DEVICES_MMC(func, 1) \
222 	BOOT_TARGET_DEVICES_SCSI(func) \
223 	BOOT_TARGET_DEVICES_DHCP(func)
224 #include <config_distro_bootcmd.h>
225 
226 #endif /* __LX2_COMMON_H */
227