Convert CONFIG_SYS_BOOTM_LEN to Kconfig
[platform/kernel/u-boot.git] / include / configs / ls1028a_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2019-2021 NXP
4  */
5
6 #ifndef __L1028A_COMMON_H
7 #define __L1028A_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 /* Link Definitions */
14
15 #define CONFIG_VERY_BIG_RAM
16 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000UL
17 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
18 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
19 #define CONFIG_SYS_DDR_BLOCK2_BASE      0x2080000000ULL
20 #define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS       1
21
22 /*
23  * SMP Definitinos
24  */
25 #define CPU_RELEASE_ADDR                secondary_boot_addr
26
27 /* GPIO */
28
29 /* I2C */
30
31 /* Serial Port */
32 #define CONFIG_SYS_NS16550_SERIAL
33 #define CONFIG_SYS_NS16550_REG_SIZE     1
34 #define CONFIG_SYS_NS16550_CLK          (get_bus_freq(0) / 2)
35
36 /* Miscellaneous configurable options */
37
38 /* Physical Memory Map */
39
40 #define CONFIG_HWCONFIG
41 #define HWCONFIG_BUFFER_SIZE            128
42
43 #define BOOT_TARGET_DEVICES(func) \
44         func(MMC, mmc, 0) \
45         func(MMC, mmc, 1) \
46         func(USB, usb, 0) \
47         func(DHCP, dhcp, na)
48 #include <config_distro_bootcmd.h>
49
50 #define XSPI_NOR_BOOTCOMMAND    \
51         "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
52         "env exists secureboot && esbc_halt;;"
53 #define SD_BOOTCOMMAND  \
54         "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
55         "env exists secureboot && esbc_halt;"
56 #define SD2_BOOTCOMMAND \
57         "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
58         "env exists secureboot && esbc_halt;"
59
60 #define OCRAM_NONSECURE_SIZE            0x00010000
61 #define CONFIG_SYS_FSL_QSPI_BASE        0x20000000
62
63 /* I2C bus multiplexer */
64 #define I2C_MUX_PCA_ADDR_PRI            0x77 /* Primary Mux*/
65 #define I2C_MUX_CH_DEFAULT              0x8
66
67 /* EEPROM */
68 #define CONFIG_SYS_I2C_EEPROM_NXID
69 #define CONFIG_SYS_EEPROM_BUS_NUM               0
70
71 /* DisplayPort */
72 #define DP_PWD_EN_DEFAULT_MASK          0x8
73
74 #ifdef CONFIG_NXP_ESBC
75 #include <asm/fsl_secure_boot.h>
76 #endif
77
78 #endif /* __L1028A_COMMON_H */