Convert CONFIG_SYS_CBSIZE 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 #define CONFIG_SYS_INIT_SP_ADDR         CONFIG_SYS_TEXT_BASE
15
16 #define CONFIG_VERY_BIG_RAM
17 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000UL
18 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
19 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
20 #define CONFIG_SYS_DDR_BLOCK2_BASE      0x2080000000ULL
21 #define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS       1
22
23 /*
24  * SMP Definitinos
25  */
26 #define CPU_RELEASE_ADDR                secondary_boot_addr
27
28 /* GPIO */
29
30 /* I2C */
31
32 /* Serial Port */
33 #define CONFIG_SYS_NS16550_SERIAL
34 #define CONFIG_SYS_NS16550_REG_SIZE     1
35 #define CONFIG_SYS_NS16550_CLK          (get_bus_freq(0) / 2)
36
37 /* Miscellaneous configurable options */
38
39 /* Physical Memory Map */
40
41 #define CONFIG_HWCONFIG
42 #define HWCONFIG_BUFFER_SIZE            128
43
44 #define BOOT_TARGET_DEVICES(func) \
45         func(MMC, mmc, 0) \
46         func(MMC, mmc, 1) \
47         func(USB, usb, 0) \
48         func(DHCP, dhcp, na)
49 #include <config_distro_bootcmd.h>
50
51 #define XSPI_NOR_BOOTCOMMAND    \
52         "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
53         "env exists secureboot && esbc_halt;;"
54 #define SD_BOOTCOMMAND  \
55         "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
56         "env exists secureboot && esbc_halt;"
57 #define SD2_BOOTCOMMAND \
58         "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
59         "env exists secureboot && esbc_halt;"
60
61 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE /* Boot args buffer */
62
63 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
64
65 #define OCRAM_NONSECURE_SIZE            0x00010000
66 #define CONFIG_SYS_FSL_QSPI_BASE        0x20000000
67
68 /* I2C bus multiplexer */
69 #define I2C_MUX_PCA_ADDR_PRI            0x77 /* Primary Mux*/
70 #define I2C_MUX_CH_DEFAULT              0x8
71
72 /* EEPROM */
73 #define CONFIG_SYS_I2C_EEPROM_NXID
74 #define CONFIG_SYS_EEPROM_BUS_NUM               0
75
76 /* DisplayPort */
77 #define DP_PWD_EN_DEFAULT_MASK          0x8
78
79 #ifdef CONFIG_NXP_ESBC
80 #include <asm/fsl_secure_boot.h>
81 #endif
82
83 #endif /* __L1028A_COMMON_H */