MIPS: remove CONFIG_SYS_MHZ
[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
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 CONFIG_SYS_NS16550_SERIAL
32 #define CONFIG_SYS_NS16550_REG_SIZE     1
33 #define CONFIG_SYS_NS16550_CLK          (get_bus_freq(0) / 2)
34
35 /* Miscellaneous configurable options */
36
37 /* Physical Memory Map */
38
39 #define CONFIG_HWCONFIG
40 #define HWCONFIG_BUFFER_SIZE            128
41
42 #define BOOT_TARGET_DEVICES(func) \
43         func(MMC, mmc, 0) \
44         func(MMC, mmc, 1) \
45         func(USB, usb, 0) \
46         func(DHCP, dhcp, na)
47 #include <config_distro_bootcmd.h>
48
49 #define XSPI_NOR_BOOTCOMMAND    \
50         "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
51         "env exists secureboot && esbc_halt;;"
52 #define SD_BOOTCOMMAND  \
53         "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
54         "env exists secureboot && esbc_halt;"
55 #define SD2_BOOTCOMMAND \
56         "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
57         "env exists secureboot && esbc_halt;"
58
59 #define OCRAM_NONSECURE_SIZE            0x00010000
60 #define CONFIG_SYS_FSL_QSPI_BASE        0x20000000
61
62 /* I2C bus multiplexer */
63 #define I2C_MUX_PCA_ADDR_PRI            0x77 /* Primary Mux*/
64 #define I2C_MUX_CH_DEFAULT              0x8
65
66 /* DisplayPort */
67 #define DP_PWD_EN_DEFAULT_MASK          0x8
68
69 #ifdef CONFIG_NXP_ESBC
70 #include <asm/fsl_secure_boot.h>
71 #endif
72
73 #endif /* __L1028A_COMMON_H */