blob: 3cdd627003f54dee8e74e7371892e6f4e36341db [file] [log] [blame]
Priyanka Jainfd45ca02018-11-28 13:04:27 +00001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Yangbo Lubb32e682021-06-03 10:51:19 +08003 * Copyright 2018-2021 NXP
Priyanka Jainfd45ca02018-11-28 13:04:27 +00004 */
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
Priyanka Jainfd45ca02018-11-28 13:04:27 +000015#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#define CONFIG_SKIP_LOWLEVEL_INIT
Priyanka Jainfd45ca02018-11-28 13:04:27 +000022
23/* DDR */
24#define CONFIG_FSL_DDR_INTERACTIVE /* Interactive debugging */
25#define CONFIG_SYS_FSL_DDR_INTLV_256B /* force 256 byte interleaving */
26#define CONFIG_VERY_BIG_RAM
27#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000UL
28#define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
29#define CONFIG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL
30#define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 2
31#define CONFIG_SYS_SDRAM_SIZE 0x200000000UL
32#define CONFIG_DDR_SPD
33#define CONFIG_DDR_ECC
34#define CONFIG_ECC_INIT_VIA_DDRCONTROLLER
35#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
36#define CONFIG_MEM_INIT_VALUE 0xdeadbeef
37#define SPD_EEPROM_ADDRESS1 0x51
38#define SPD_EEPROM_ADDRESS2 0x52
39#define SPD_EEPROM_ADDRESS3 0x53
40#define SPD_EEPROM_ADDRESS4 0x54
41#define SPD_EEPROM_ADDRESS5 0x55
42#define SPD_EEPROM_ADDRESS6 0x56
43#define SPD_EEPROM_ADDRESS SPD_EEPROM_ADDRESS1
44#define CONFIG_SYS_SPD_BUS_NUM 0 /* SPD on I2C bus 0 */
45#define CONFIG_DIMM_SLOTS_PER_CTLR 2
46#define CONFIG_CHIP_SELECTS_PER_CTRL 4
47#define CONFIG_FSL_DDR_BIST /* enable built-in memory test */
48#define CONFIG_SYS_MONITOR_LEN (936 * 1024)
49
50/* Miscellaneous configurable options */
51#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
52
53/* SMP Definitinos */
Michael Wallef056e0f2020-06-01 21:53:26 +020054#define CPU_RELEASE_ADDR secondary_boot_addr
Priyanka Jainfd45ca02018-11-28 13:04:27 +000055
56/* Generic Timer Definitions */
57/*
58 * This is not an accurate number. It is used in start.S. The frequency
59 * will be udpated later when get_bus_freq(0) is available.
60 */
61
62#define COUNTER_FREQUENCY 25000000 /* 25MHz */
63
64/* Size of malloc() pool */
65#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024)
66
67/* Serial Port */
68#define CONFIG_PL01X_SERIAL
69#define CONFIG_PL011_CLOCK (get_bus_freq(0) / 4)
70#define CONFIG_SYS_SERIAL0 0x21c0000
71#define CONFIG_SYS_SERIAL1 0x21d0000
72#define CONFIG_SYS_SERIAL2 0x21e0000
73#define CONFIG_SYS_SERIAL3 0x21f0000
74/*below might needs to be removed*/
75#define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0, \
76 (void *)CONFIG_SYS_SERIAL1, \
77 (void *)CONFIG_SYS_SERIAL2, \
78 (void *)CONFIG_SYS_SERIAL3 }
Priyanka Jainfd45ca02018-11-28 13:04:27 +000079#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
80
81/* MC firmware */
82#define CONFIG_SYS_LS_MC_DPC_MAX_LENGTH 0x20000
83#define CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET 0x00F00000
84#define CONFIG_SYS_LS_MC_DPL_MAX_LENGTH 0x20000
85#define CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET 0x00F20000
86#define CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS 5000
87
88/* Define phy_reset function to boot the MC based on mcinitcmd.
89 * This happens late enough to properly fixup u-boot env MAC addresses.
90 */
91#define CONFIG_RESET_PHY_R
92
93/*
94 * Carve out a DDR region which will not be used by u-boot/Linux
95 *
96 * It will be used by MC and Debug Server. The MC region must be
97 * 512MB aligned, so the min size to hide is 512MB.
98 */
99#ifdef CONFIG_FSL_MC_ENET
Meenakshi Aggarwal67f195c2019-02-27 14:41:02 +0530100#define CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE (256UL * 1024 * 1024)
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000101#endif
102
103/* I2C bus multiplexer */
104#define I2C_MUX_PCA_ADDR_PRI 0x77 /* Primary Mux*/
105#define I2C_MUX_CH_DEFAULT 0x8
106
107/* RTC */
108#define RTC
109#define CONFIG_SYS_I2C_RTC_ADDR 0x51 /* Channel 3*/
110
111/* EEPROM */
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000112#define CONFIG_SYS_I2C_EEPROM_NXID
113#define CONFIG_SYS_EEPROM_BUS_NUM 0
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000114
115/* Qixis */
116#define CONFIG_FSL_QIXIS
117#define CONFIG_QIXIS_I2C_ACCESS
118#define CONFIG_SYS_I2C_FPGA_ADDR 0x66
119
120/* PCI */
121#ifdef CONFIG_PCI
122#define CONFIG_SYS_PCI_64BIT
123#define CONFIG_PCI_SCAN_SHOW
124#endif
125
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000126/* SATA */
127
128#ifdef CONFIG_SCSI
129#define CONFIG_SCSI_AHCI_PLAT
130#define CONFIG_SYS_SATA1 AHCI_BASE_ADDR1
131#define CONFIG_SYS_SATA2 AHCI_BASE_ADDR2
132#define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
133#define CONFIG_SYS_SCSI_MAX_LUN 1
134#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
135 CONFIG_SYS_SCSI_MAX_LUN)
136#endif
137
138/* USB */
Tom Rini8a091622021-07-09 10:11:55 -0400139#ifdef CONFIG_USB_HOST
Meenakshi Aggarwal8a03b0d2020-12-04 20:17:28 +0530140#ifndef CONFIG_TARGET_LX2162AQDS
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000141#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
142#endif
Meenakshi Aggarwal8a03b0d2020-12-04 20:17:28 +0530143#endif
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000144
Biwen Li562a74d2021-02-05 19:02:00 +0800145/* GPIO */
146#ifdef CONFIG_DM_GPIO
147#ifndef CONFIG_MPC8XXX_GPIO
148#define CONFIG_MPC8XXX_GPIO
149#endif
150#endif
151
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000152#ifndef __ASSEMBLY__
153unsigned long get_board_sys_clk(void);
154unsigned long get_board_ddr_clk(void);
155#endif
156
157#define CONFIG_SYS_CLK_FREQ get_board_sys_clk()
158#define CONFIG_DDR_CLK_FREQ get_board_ddr_clk()
159#define COUNTER_FREQUENCY_REAL (CONFIG_SYS_CLK_FREQ / 4)
160
161#define CONFIG_HWCONFIG
162#define HWCONFIG_BUFFER_SIZE 128
163
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000164/* Monitor Command Prompt */
165#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
166#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
167 sizeof(CONFIG_SYS_PROMPT) + 16)
168#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000169#define CONFIG_SYS_MAXARGS 64 /* max command args */
170
171#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
172
173/* Initial environment variables */
Kuldeep Singh3e78c332020-03-12 15:13:00 +0530174#define XSPI_MC_INIT_CMD \
175 "sf probe 0:0 && " \
176 "sf read 0x80640000 0x640000 0x80000 && " \
Priyanka Jain5fde1642021-08-18 12:37:03 +0530177 "sf read $fdt_addr_r 0xf00000 0x100000 && " \
Kuldeep Singh3e78c332020-03-12 15:13:00 +0530178 "env exists secureboot && " \
179 "esbc_validate 0x80640000 && " \
180 "esbc_validate 0x80680000; " \
181 "sf read 0x80a00000 0xa00000 0x300000 && " \
182 "sf read 0x80e00000 0xe00000 0x100000; " \
183 "fsl_mc start mc 0x80a00000 0x80e00000\0"
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000184
185#define SD_MC_INIT_CMD \
Pankaj Bansal1972a532019-07-17 10:33:54 +0000186 "mmc read 0x80a00000 0x5000 0x1200;" \
187 "mmc read 0x80e00000 0x7000 0x800;" \
Priyanka Jain5fde1642021-08-18 12:37:03 +0530188 "mmc read $fdt_addr_r 0x7800 0x800;" \
Udit Agarwalf34581e2018-12-14 04:43:32 +0000189 "env exists secureboot && " \
Priyanka Singhe29ef972020-01-22 10:31:22 +0000190 "mmc read 0x80640000 0x3200 0x20 && " \
191 "mmc read 0x80680000 0x3400 0x20 && " \
192 "esbc_validate 0x80640000 && " \
193 "esbc_validate 0x80680000 ;" \
Pankaj Bansal1972a532019-07-17 10:33:54 +0000194 "fsl_mc start mc 0x80a00000 0x80e00000\0"
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000195
Meenakshi Aggarwale181a3d2020-04-27 19:56:40 +0530196#define SD2_MC_INIT_CMD \
197 "mmc dev 1; mmc read 0x80a00000 0x5000 0x1200;" \
198 "mmc read 0x80e00000 0x7000 0x800;" \
Priyanka Jain5fde1642021-08-18 12:37:03 +0530199 "mmc read $fdt_addr_r 0x7800 0x800;" \
Meenakshi Aggarwale181a3d2020-04-27 19:56:40 +0530200 "env exists secureboot && " \
201 "mmc read 0x80640000 0x3200 0x20 && " \
202 "mmc read 0x80680000 0x3400 0x20 && " \
203 "esbc_validate 0x80640000 && " \
204 "esbc_validate 0x80680000 ;" \
205 "fsl_mc start mc 0x80a00000 0x80e00000\0"
206
Priyanka Jain16744062019-01-24 05:22:18 +0000207#define EXTRA_ENV_SETTINGS \
208 "hwconfig=fsl_ddr:bank_intlv=auto\0" \
209 "ramdisk_addr=0x800000\0" \
210 "ramdisk_size=0x2000000\0" \
211 "fdt_high=0xa0000000\0" \
212 "initrd_high=0xffffffffffffffff\0" \
213 "fdt_addr=0x64f00000\0" \
214 "kernel_start=0x1000000\0" \
Priyanka Singhe29ef972020-01-22 10:31:22 +0000215 "kernelheader_start=0x600000\0" \
Priyanka Jain16744062019-01-24 05:22:18 +0000216 "scriptaddr=0x80000000\0" \
217 "scripthdraddr=0x80080000\0" \
218 "fdtheader_addr_r=0x80100000\0" \
219 "kernelheader_addr_r=0x80200000\0" \
220 "kernel_addr_r=0x81000000\0" \
221 "kernelheader_size=0x40000\0" \
222 "fdt_addr_r=0x90000000\0" \
223 "load_addr=0xa0000000\0" \
224 "kernel_size=0x2800000\0" \
225 "kernel_addr_sd=0x8000\0" \
Priyanka Singhe29ef972020-01-22 10:31:22 +0000226 "kernelhdr_addr_sd=0x3000\0" \
Manish Tomarebef67f2020-11-05 14:08:56 +0530227 "kernel_size_sd=0x14000\0" \
Udit Agarwal11e1a572019-11-20 08:49:06 +0000228 "kernelhdr_size_sd=0x20\0" \
Priyanka Jain16744062019-01-24 05:22:18 +0000229 "console=ttyAMA0,38400n8\0" \
230 BOOTENV \
231 "mcmemsize=0x70000000\0" \
232 XSPI_MC_INIT_CMD \
Priyanka Jain16744062019-01-24 05:22:18 +0000233 "scan_dev_for_boot_part=" \
234 "part list ${devtype} ${devnum} devplist; " \
235 "env exists devplist || setenv devplist 1; " \
236 "for distro_bootpart in ${devplist}; do " \
237 "if fstype ${devtype} " \
238 "${devnum}:${distro_bootpart} " \
239 "bootfstype; then " \
240 "run scan_dev_for_boot; " \
241 "fi; " \
242 "done\0" \
Priyanka Jain16744062019-01-24 05:22:18 +0000243 "boot_a_script=" \
244 "load ${devtype} ${devnum}:${distro_bootpart} " \
245 "${scriptaddr} ${prefix}${script}; " \
246 "env exists secureboot && load ${devtype} " \
247 "${devnum}:${distro_bootpart} " \
248 "${scripthdraddr} ${prefix}${boot_script_hdr} " \
249 "&& esbc_validate ${scripthdraddr};" \
250 "source ${scriptaddr}\0"
251
252#define XSPI_NOR_BOOTCOMMAND \
Kuldeep Singh3e78c332020-03-12 15:13:00 +0530253 "sf probe 0:0; " \
254 "sf read 0x806c0000 0x6c0000 0x40000; " \
255 "env exists mcinitcmd && env exists secureboot" \
256 " && esbc_validate 0x806c0000; " \
257 "sf read 0x80d00000 0xd00000 0x100000; " \
Priyanka Jain16744062019-01-24 05:22:18 +0000258 "env exists mcinitcmd && " \
Kuldeep Singh3e78c332020-03-12 15:13:00 +0530259 "fsl_mc lazyapply dpl 0x80d00000; " \
Priyanka Jain16744062019-01-24 05:22:18 +0000260 "run distro_bootcmd;run xspi_bootcmd; " \
261 "env exists secureboot && esbc_halt;"
262
263#define SD_BOOTCOMMAND \
264 "env exists mcinitcmd && mmcinfo; " \
Pankaj Bansal1972a532019-07-17 10:33:54 +0000265 "mmc read 0x80d00000 0x6800 0x800; " \
Priyanka Jain16744062019-01-24 05:22:18 +0000266 "env exists mcinitcmd && env exists secureboot " \
Priyanka Singhe29ef972020-01-22 10:31:22 +0000267 " && mmc read 0x806C0000 0x3600 0x20 " \
268 "&& esbc_validate 0x806C0000;env exists mcinitcmd " \
Pankaj Bansal1972a532019-07-17 10:33:54 +0000269 "&& fsl_mc lazyapply dpl 0x80d00000;" \
Priyanka Jain16744062019-01-24 05:22:18 +0000270 "run distro_bootcmd;run sd_bootcmd;" \
271 "env exists secureboot && esbc_halt;"
272
Meenakshi Aggarwalbebebab2020-02-19 23:30:45 +0530273#define SD2_BOOTCOMMAND \
Meenakshi Aggarwale181a3d2020-04-27 19:56:40 +0530274 "mmc dev 1; env exists mcinitcmd && mmcinfo; " \
Meenakshi Aggarwalbebebab2020-02-19 23:30:45 +0530275 "mmc read 0x80d00000 0x6800 0x800; " \
276 "env exists mcinitcmd && env exists secureboot " \
Meenakshi Aggarwale181a3d2020-04-27 19:56:40 +0530277 " && mmc read 0x806C0000 0x3600 0x20 " \
278 "&& esbc_validate 0x806C0000;env exists mcinitcmd " \
Meenakshi Aggarwalbebebab2020-02-19 23:30:45 +0530279 "&& fsl_mc lazyapply dpl 0x80d00000;" \
280 "run distro_bootcmd;run sd2_bootcmd;" \
281 "env exists secureboot && esbc_halt;"
282
Priyanka Jain16744062019-01-24 05:22:18 +0000283#define BOOT_TARGET_DEVICES(func) \
284 func(USB, usb, 0) \
285 func(MMC, mmc, 0) \
Meenakshi Aggarwalbebebab2020-02-19 23:30:45 +0530286 func(MMC, mmc, 1) \
Meenakshi Aggarwal26224642020-03-11 20:51:47 +0530287 func(SCSI, scsi, 0) \
288 func(DHCP, dhcp, na)
Priyanka Jain16744062019-01-24 05:22:18 +0000289#include <config_distro_bootcmd.h>
290
Priyanka Jainfd45ca02018-11-28 13:04:27 +0000291#endif /* __LX2_COMMON_H */