Merge branch '2020-05-07-more-kconfig-migrations'
[oweals/u-boot.git] / include / configs / ls1028a_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2019-2020 NXP
4  */
5
6 #ifndef __L1028A_COMMON_H
7 #define __L1028A_COMMON_H
8
9 #define CONFIG_REMAKE_ELF
10 #define CONFIG_FSL_LAYERSCAPE
11 #define CONFIG_MP
12
13 #include <asm/arch/stream_id_lsch3.h>
14 #include <asm/arch/config.h>
15 #include <asm/arch/soc.h>
16
17 /* Link Definitions */
18 #define CONFIG_SYS_INIT_SP_ADDR         CONFIG_SYS_TEXT_BASE
19
20 #define CONFIG_SKIP_LOWLEVEL_INIT
21
22 #define CONFIG_VERY_BIG_RAM
23 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000UL
24 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
25 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
26 #define CONFIG_SYS_DDR_BLOCK2_BASE      0x2080000000ULL
27 #define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS       1
28
29 /*
30  * SMP Definitinos
31  */
32 #define CPU_RELEASE_ADDR                secondary_boot_func
33
34 /* Generic Timer Definitions */
35 #define COUNTER_FREQUENCY               25000000        /* 25MHz */
36
37 /* Size of malloc() pool */
38 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 2048 * 1024)
39
40 /* I2C */
41 #ifndef CONFIG_DM_I2C
42 #define CONFIG_SYS_I2C
43 #endif
44
45 /* Serial Port */
46 #define CONFIG_CONS_INDEX       1
47 #define CONFIG_SYS_NS16550_SERIAL
48 #define CONFIG_SYS_NS16550_REG_SIZE     1
49 #define CONFIG_SYS_NS16550_CLK          (get_bus_freq(0) / 2)
50
51 #define CONFIG_BAUDRATE                 115200
52 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200 }
53
54 /* Miscellaneous configurable options */
55 #define CONFIG_SYS_LOAD_ADDR    (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
56
57 /* Physical Memory Map */
58 #define CONFIG_CHIP_SELECTS_PER_CTRL    4
59
60 #define CONFIG_HWCONFIG
61 #define HWCONFIG_BUFFER_SIZE            128
62
63 /* Allow to overwrite serial and ethaddr */
64 #define CONFIG_ENV_OVERWRITE
65
66 #define BOOT_TARGET_DEVICES(func) \
67         func(MMC, mmc, 0) \
68         func(MMC, mmc, 1) \
69         func(USB, usb, 0) \
70         func(DHCP, dhcp, na)
71 #include <config_distro_bootcmd.h>
72
73 #undef CONFIG_BOOTCOMMAND
74
75 #define XSPI_NOR_BOOTCOMMAND    \
76         "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
77         "env exists secureboot && esbc_halt;;"
78 #define SD_BOOTCOMMAND  \
79         "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
80         "env exists secureboot && esbc_halt;"
81 #define SD2_BOOTCOMMAND \
82         "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
83         "env exists secureboot && esbc_halt;"
84
85 /* Monitor Command Prompt */
86 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
87 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
88                                         sizeof(CONFIG_SYS_PROMPT) + 16)
89 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE /* Boot args buffer */
90
91 #ifndef CONFIG_CMDLINE_EDITING
92 #define CONFIG_CMDLINE_EDITING          1
93 #endif
94
95 #define CONFIG_SYS_MAXARGS              64      /* max command args */
96
97 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
98
99 /*  MMC  */
100 #ifdef CONFIG_MMC
101 #define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
102 #endif
103
104 #define CONFIG_SYS_MMC_ENV_DEV         0
105 #define OCRAM_NONSECURE_SIZE            0x00010000
106 #define CONFIG_SYS_FSL_QSPI_BASE        0x20000000
107
108 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
109
110 /* I2C bus multiplexer */
111 #define I2C_MUX_PCA_ADDR_PRI            0x77 /* Primary Mux*/
112 #define I2C_MUX_CH_DEFAULT              0x8
113
114 /* EEPROM */
115 #define CONFIG_ID_EEPROM
116 #define CONFIG_SYS_I2C_EEPROM_NXID
117 #define CONFIG_SYS_EEPROM_BUS_NUM               0
118 #define CONFIG_SYS_I2C_EEPROM_ADDR              0x57
119 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN          1
120 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS       3
121 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS   5
122
123 /* DisplayPort */
124 #define DP_PWD_EN_DEFAULT_MASK          0x8
125
126 #ifdef CONFIG_NXP_ESBC
127 #include <asm/fsl_secure_boot.h>
128 #endif
129
130 /* Ethernet */
131 /* smallest ENETC BD ring has 8 entries */
132 #define CONFIG_SYS_RX_ETH_BUFFER                8
133
134 #endif /* __L1028A_COMMON_H */