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