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