Convert CONFIG_HWCONFIG 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 CFG_SYS_DDR_SDRAM_BASE  0x80000000UL
17 #define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY  0
18 #define CFG_SYS_SDRAM_BASE              CFG_SYS_DDR_SDRAM_BASE
19 #define CFG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL
20
21 /*
22  * SMP Definitinos
23  */
24 #define CPU_RELEASE_ADDR                secondary_boot_addr
25
26 /* GPIO */
27
28 /* I2C */
29
30 /* Serial Port */
31 #define CFG_SYS_NS16550_CLK          (get_bus_freq(0) / 2)
32
33 /* Miscellaneous configurable options */
34
35 /* Physical Memory Map */
36
37 #define HWCONFIG_BUFFER_SIZE            128
38
39 #define BOOT_TARGET_DEVICES(func) \
40         func(MMC, mmc, 0) \
41         func(MMC, mmc, 1) \
42         func(USB, usb, 0) \
43         func(DHCP, dhcp, na)
44 #include <config_distro_bootcmd.h>
45
46 #define XSPI_NOR_BOOTCOMMAND    \
47         "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
48         "env exists secureboot && esbc_halt;;"
49 #define SD_BOOTCOMMAND  \
50         "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
51         "env exists secureboot && esbc_halt;"
52 #define SD2_BOOTCOMMAND \
53         "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
54         "env exists secureboot && esbc_halt;"
55
56 #define OCRAM_NONSECURE_SIZE            0x00010000
57 #define CFG_SYS_FSL_QSPI_BASE   0x20000000
58
59 /* I2C bus multiplexer */
60 #define I2C_MUX_PCA_ADDR_PRI            0x77 /* Primary Mux*/
61 #define I2C_MUX_CH_DEFAULT              0x8
62
63 /* DisplayPort */
64 #define DP_PWD_EN_DEFAULT_MASK          0x8
65
66 #ifdef CONFIG_NXP_ESBC
67 #include <asm/fsl_secure_boot.h>
68 #endif
69
70 #endif /* __L1028A_COMMON_H */