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