]>
Commit | Line | Data |
---|---|---|
e2b65ea9 | 1 | /* |
89a168f7 | 2 | * Copyright 2017 NXP |
e2b65ea9 YS |
3 | * Copyright 2015 Freescale Semiconductor |
4 | * | |
5 | * SPDX-License-Identifier: GPL-2.0+ | |
6 | */ | |
7 | ||
8 | #ifndef __LS2_RDB_H | |
9 | #define __LS2_RDB_H | |
10 | ||
44937214 | 11 | #include "ls2080a_common.h" |
e2b65ea9 YS |
12 | |
13 | #undef CONFIG_CONS_INDEX | |
14 | #define CONFIG_CONS_INDEX 2 | |
15 | ||
89a168f7 | 16 | #ifdef CONFIG_FSL_QSPI |
3049a583 PJ |
17 | #ifdef CONFIG_TARGET_LS2081ARDB |
18 | #define CONFIG_QIXIS_I2C_ACCESS | |
19 | #endif | |
89a168f7 PJ |
20 | #define CONFIG_SYS_I2C_EARLY_INIT |
21 | #define CONFIG_DISPLAY_BOARDINFO_LATE | |
22 | #endif | |
23 | ||
ed2530d0 RH |
24 | #define I2C_MUX_CH_VOL_MONITOR 0xa |
25 | #define I2C_VOL_MONITOR_ADDR 0x38 | |
26 | #define CONFIG_VOL_MONITOR_IR36021_READ | |
27 | #define CONFIG_VOL_MONITOR_IR36021_SET | |
28 | ||
29 | #define CONFIG_VID_FLS_ENV "ls2080ardb_vdd_mv" | |
30 | #ifndef CONFIG_SPL_BUILD | |
31 | #define CONFIG_VID | |
32 | #endif | |
33 | /* step the IR regulator in 5mV increments */ | |
34 | #define IR_VDD_STEP_DOWN 5 | |
35 | #define IR_VDD_STEP_UP 5 | |
36 | /* The lowest and highest voltage allowed for LS2080ARDB */ | |
37 | #define VDD_MV_MIN 819 | |
38 | #define VDD_MV_MAX 1212 | |
39 | ||
e2b65ea9 YS |
40 | #ifndef __ASSEMBLY__ |
41 | unsigned long get_board_sys_clk(void); | |
42 | #endif | |
43 | ||
44 | #define CONFIG_SYS_CLK_FREQ get_board_sys_clk() | |
45 | #define CONFIG_DDR_CLK_FREQ 133333333 | |
46 | #define COUNTER_FREQUENCY_REAL (CONFIG_SYS_CLK_FREQ/4) | |
47 | ||
48 | #define CONFIG_DDR_SPD | |
49 | #define CONFIG_DDR_ECC | |
50 | #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER | |
51 | #define CONFIG_MEM_INIT_VALUE 0xdeadbeef | |
52 | #define SPD_EEPROM_ADDRESS1 0x51 | |
53 | #define SPD_EEPROM_ADDRESS2 0x52 | |
fc7b3855 YS |
54 | #define SPD_EEPROM_ADDRESS3 0x53 |
55 | #define SPD_EEPROM_ADDRESS4 0x54 | |
e2b65ea9 YS |
56 | #define SPD_EEPROM_ADDRESS5 0x55 |
57 | #define SPD_EEPROM_ADDRESS6 0x56 /* dummy address */ | |
58 | #define SPD_EEPROM_ADDRESS SPD_EEPROM_ADDRESS1 | |
59 | #define CONFIG_SYS_SPD_BUS_NUM 0 /* SPD on I2C bus 0 */ | |
60 | #define CONFIG_DIMM_SLOTS_PER_CTLR 2 | |
61 | #define CONFIG_CHIP_SELECTS_PER_CTRL 4 | |
44937214 | 62 | #ifdef CONFIG_SYS_FSL_HAS_DP_DDR |
e2b65ea9 | 63 | #define CONFIG_DP_DDR_DIMM_SLOTS_PER_CTLR 1 |
44937214 | 64 | #endif |
e2b65ea9 YS |
65 | #define CONFIG_FSL_DDR_BIST /* enable built-in memory test */ |
66 | ||
989c5f0a TY |
67 | /* SATA */ |
68 | #define CONFIG_LIBATA | |
69 | #define CONFIG_SCSI_AHCI | |
70 | #define CONFIG_SCSI_AHCI_PLAT | |
989c5f0a TY |
71 | |
72 | #define CONFIG_SYS_SATA1 AHCI_BASE_ADDR1 | |
73 | #define CONFIG_SYS_SATA2 AHCI_BASE_ADDR2 | |
74 | ||
75 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 | |
76 | #define CONFIG_SYS_SCSI_MAX_LUN 1 | |
77 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ | |
78 | CONFIG_SYS_SCSI_MAX_LUN) | |
79 | ||
89a168f7 | 80 | #ifndef CONFIG_FSL_QSPI |
e2b65ea9 YS |
81 | /* undefined CONFIG_FSL_DDR_SYNC_REFRESH for simulator */ |
82 | ||
83 | #define CONFIG_SYS_NOR0_CSPR_EXT (0x0) | |
84 | #define CONFIG_SYS_NOR_AMASK IFC_AMASK(128*1024*1024) | |
85 | #define CONFIG_SYS_NOR_AMASK_EARLY IFC_AMASK(64*1024*1024) | |
86 | ||
87 | #define CONFIG_SYS_NOR0_CSPR \ | |
88 | (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \ | |
89 | CSPR_PORT_SIZE_16 | \ | |
90 | CSPR_MSEL_NOR | \ | |
91 | CSPR_V) | |
92 | #define CONFIG_SYS_NOR0_CSPR_EARLY \ | |
93 | (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS_EARLY) | \ | |
94 | CSPR_PORT_SIZE_16 | \ | |
95 | CSPR_MSEL_NOR | \ | |
96 | CSPR_V) | |
97 | #define CONFIG_SYS_NOR_CSOR CSOR_NOR_ADM_SHIFT(12) | |
98 | #define CONFIG_SYS_NOR_FTIM0 (FTIM0_NOR_TACSE(0x4) | \ | |
99 | FTIM0_NOR_TEADC(0x5) | \ | |
100 | FTIM0_NOR_TEAHC(0x5)) | |
101 | #define CONFIG_SYS_NOR_FTIM1 (FTIM1_NOR_TACO(0x35) | \ | |
102 | FTIM1_NOR_TRAD_NOR(0x1a) |\ | |
103 | FTIM1_NOR_TSEQRAD_NOR(0x13)) | |
104 | #define CONFIG_SYS_NOR_FTIM2 (FTIM2_NOR_TCS(0x4) | \ | |
105 | FTIM2_NOR_TCH(0x4) | \ | |
106 | FTIM2_NOR_TWPH(0x0E) | \ | |
107 | FTIM2_NOR_TWP(0x1c)) | |
108 | #define CONFIG_SYS_NOR_FTIM3 0x04000000 | |
109 | #define CONFIG_SYS_IFC_CCR 0x01000000 | |
110 | ||
e856bdcf | 111 | #ifdef CONFIG_MTD_NOR_FLASH |
e2b65ea9 YS |
112 | #define CONFIG_FLASH_CFI_DRIVER |
113 | #define CONFIG_SYS_FLASH_CFI | |
114 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE | |
115 | #define CONFIG_SYS_FLASH_QUIET_TEST | |
116 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ | |
117 | ||
118 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ | |
119 | #define CONFIG_SYS_MAX_FLASH_SECT 1024 /* sectors per device */ | |
120 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */ | |
121 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */ | |
122 | ||
123 | #define CONFIG_SYS_FLASH_EMPTY_INFO | |
124 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE,\ | |
125 | CONFIG_SYS_FLASH_BASE + 0x40000000} | |
126 | #endif | |
127 | ||
128 | #define CONFIG_NAND_FSL_IFC | |
129 | #define CONFIG_SYS_NAND_MAX_ECCPOS 256 | |
130 | #define CONFIG_SYS_NAND_MAX_OOBFREE 2 | |
131 | ||
e2b65ea9 YS |
132 | #define CONFIG_SYS_NAND_CSPR_EXT (0x0) |
133 | #define CONFIG_SYS_NAND_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ | |
134 | | CSPR_PORT_SIZE_8 /* Port Size = 8 bit */ \ | |
135 | | CSPR_MSEL_NAND /* MSEL = NAND */ \ | |
136 | | CSPR_V) | |
137 | #define CONFIG_SYS_NAND_AMASK IFC_AMASK(64 * 1024) | |
138 | ||
139 | #define CONFIG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \ | |
140 | | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \ | |
141 | | CSOR_NAND_ECC_MODE_4 /* 4-bit ECC */ \ | |
142 | | CSOR_NAND_RAL_3 /* RAL = 3Byes */ \ | |
143 | | CSOR_NAND_PGS_4K /* Page Size = 4K */ \ | |
144 | | CSOR_NAND_SPRZ_224 /* Spare size = 224 */ \ | |
145 | | CSOR_NAND_PB(128)) /* Pages Per Block 128*/ | |
146 | ||
147 | #define CONFIG_SYS_NAND_ONFI_DETECTION | |
148 | ||
149 | /* ONFI NAND Flash mode0 Timing Params */ | |
150 | #define CONFIG_SYS_NAND_FTIM0 (FTIM0_NAND_TCCST(0x0e) | \ | |
151 | FTIM0_NAND_TWP(0x30) | \ | |
152 | FTIM0_NAND_TWCHT(0x0e) | \ | |
153 | FTIM0_NAND_TWH(0x14)) | |
154 | #define CONFIG_SYS_NAND_FTIM1 (FTIM1_NAND_TADLE(0x64) | \ | |
155 | FTIM1_NAND_TWBE(0xab) | \ | |
156 | FTIM1_NAND_TRR(0x1c) | \ | |
157 | FTIM1_NAND_TRP(0x30)) | |
158 | #define CONFIG_SYS_NAND_FTIM2 (FTIM2_NAND_TRAD(0x1e) | \ | |
159 | FTIM2_NAND_TREH(0x14) | \ | |
160 | FTIM2_NAND_TWHRE(0x3c)) | |
161 | #define CONFIG_SYS_NAND_FTIM3 0x0 | |
162 | ||
163 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } | |
164 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 | |
165 | #define CONFIG_MTD_NAND_VERIFY_WRITE | |
e2b65ea9 YS |
166 | |
167 | #define CONFIG_SYS_NAND_BLOCK_SIZE (512 * 1024) | |
e2b65ea9 YS |
168 | #define CONFIG_FSL_QIXIS /* use common QIXIS code */ |
169 | #define QIXIS_LBMAP_SWITCH 0x06 | |
170 | #define QIXIS_LBMAP_MASK 0x0f | |
171 | #define QIXIS_LBMAP_SHIFT 0 | |
172 | #define QIXIS_LBMAP_DFLTBANK 0x00 | |
173 | #define QIXIS_LBMAP_ALTBANK 0x04 | |
32eda7cc | 174 | #define QIXIS_LBMAP_NAND 0x09 |
e2b65ea9 YS |
175 | #define QIXIS_RST_CTL_RESET 0x31 |
176 | #define QIXIS_RST_CTL_RESET_EN 0x30 | |
177 | #define QIXIS_RCFG_CTL_RECONFIG_IDLE 0x20 | |
178 | #define QIXIS_RCFG_CTL_RECONFIG_START 0x21 | |
179 | #define QIXIS_RCFG_CTL_WATCHDOG_ENBLE 0x08 | |
32eda7cc | 180 | #define QIXIS_RCW_SRC_NAND 0x119 |
e2b65ea9 YS |
181 | #define QIXIS_RST_FORCE_MEM 0x01 |
182 | ||
183 | #define CONFIG_SYS_CSPR3_EXT (0x0) | |
184 | #define CONFIG_SYS_CSPR3 (CSPR_PHYS_ADDR(QIXIS_BASE_PHYS_EARLY) \ | |
185 | | CSPR_PORT_SIZE_8 \ | |
186 | | CSPR_MSEL_GPCM \ | |
187 | | CSPR_V) | |
188 | #define CONFIG_SYS_CSPR3_FINAL (CSPR_PHYS_ADDR(QIXIS_BASE_PHYS) \ | |
189 | | CSPR_PORT_SIZE_8 \ | |
190 | | CSPR_MSEL_GPCM \ | |
191 | | CSPR_V) | |
192 | ||
193 | #define CONFIG_SYS_AMASK3 IFC_AMASK(64*1024) | |
194 | #define CONFIG_SYS_CSOR3 CSOR_GPCM_ADM_SHIFT(12) | |
195 | /* QIXIS Timing parameters for IFC CS3 */ | |
196 | #define CONFIG_SYS_CS3_FTIM0 (FTIM0_GPCM_TACSE(0x0e) | \ | |
197 | FTIM0_GPCM_TEADC(0x0e) | \ | |
198 | FTIM0_GPCM_TEAHC(0x0e)) | |
199 | #define CONFIG_SYS_CS3_FTIM1 (FTIM1_GPCM_TACO(0xff) | \ | |
200 | FTIM1_GPCM_TRAD(0x3f)) | |
201 | #define CONFIG_SYS_CS3_FTIM2 (FTIM2_GPCM_TCS(0xf) | \ | |
202 | FTIM2_GPCM_TCH(0xf) | \ | |
203 | FTIM2_GPCM_TWP(0x3E)) | |
204 | #define CONFIG_SYS_CS3_FTIM3 0x0 | |
205 | ||
32eda7cc SW |
206 | #if defined(CONFIG_SPL) && defined(CONFIG_NAND) |
207 | #define CONFIG_SYS_CSPR2_EXT CONFIG_SYS_NOR0_CSPR_EXT | |
208 | #define CONFIG_SYS_CSPR2 CONFIG_SYS_NOR0_CSPR_EARLY | |
209 | #define CONFIG_SYS_CSPR2_FINAL CONFIG_SYS_NOR0_CSPR | |
210 | #define CONFIG_SYS_AMASK2 CONFIG_SYS_NOR_AMASK | |
211 | #define CONFIG_SYS_CSOR2 CONFIG_SYS_NOR_CSOR | |
212 | #define CONFIG_SYS_CS2_FTIM0 CONFIG_SYS_NOR_FTIM0 | |
213 | #define CONFIG_SYS_CS2_FTIM1 CONFIG_SYS_NOR_FTIM1 | |
214 | #define CONFIG_SYS_CS2_FTIM2 CONFIG_SYS_NOR_FTIM2 | |
215 | #define CONFIG_SYS_CS2_FTIM3 CONFIG_SYS_NOR_FTIM3 | |
216 | #define CONFIG_SYS_CSPR0_EXT CONFIG_SYS_NAND_CSPR_EXT | |
217 | #define CONFIG_SYS_CSPR0 CONFIG_SYS_NAND_CSPR | |
218 | #define CONFIG_SYS_AMASK0 CONFIG_SYS_NAND_AMASK | |
219 | #define CONFIG_SYS_CSOR0 CONFIG_SYS_NAND_CSOR | |
220 | #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NAND_FTIM0 | |
221 | #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NAND_FTIM1 | |
222 | #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NAND_FTIM2 | |
223 | #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NAND_FTIM3 | |
224 | ||
32eda7cc SW |
225 | #define CONFIG_ENV_OFFSET (2048 * 1024) |
226 | #define CONFIG_ENV_SECT_SIZE 0x20000 | |
227 | #define CONFIG_ENV_SIZE 0x2000 | |
228 | #define CONFIG_SPL_PAD_TO 0x80000 | |
229 | #define CONFIG_SYS_NAND_U_BOOT_OFFS (1024 * 1024) | |
230 | #define CONFIG_SYS_NAND_U_BOOT_SIZE (512 * 1024) | |
231 | #else | |
e2b65ea9 YS |
232 | #define CONFIG_SYS_CSPR0_EXT CONFIG_SYS_NOR0_CSPR_EXT |
233 | #define CONFIG_SYS_CSPR0 CONFIG_SYS_NOR0_CSPR_EARLY | |
234 | #define CONFIG_SYS_CSPR0_FINAL CONFIG_SYS_NOR0_CSPR | |
235 | #define CONFIG_SYS_AMASK0 CONFIG_SYS_NOR_AMASK | |
236 | #define CONFIG_SYS_CSOR0 CONFIG_SYS_NOR_CSOR | |
237 | #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NOR_FTIM0 | |
238 | #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NOR_FTIM1 | |
239 | #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NOR_FTIM2 | |
240 | #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NOR_FTIM3 | |
241 | #define CONFIG_SYS_CSPR2_EXT CONFIG_SYS_NAND_CSPR_EXT | |
242 | #define CONFIG_SYS_CSPR2 CONFIG_SYS_NAND_CSPR | |
243 | #define CONFIG_SYS_AMASK2 CONFIG_SYS_NAND_AMASK | |
244 | #define CONFIG_SYS_CSOR2 CONFIG_SYS_NAND_CSOR | |
245 | #define CONFIG_SYS_CS2_FTIM0 CONFIG_SYS_NAND_FTIM0 | |
246 | #define CONFIG_SYS_CS2_FTIM1 CONFIG_SYS_NAND_FTIM1 | |
247 | #define CONFIG_SYS_CS2_FTIM2 CONFIG_SYS_NAND_FTIM2 | |
248 | #define CONFIG_SYS_CS2_FTIM3 CONFIG_SYS_NAND_FTIM3 | |
249 | ||
f5bf23d8 | 250 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x300000) |
32eda7cc SW |
251 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
252 | #define CONFIG_ENV_SIZE 0x2000 | |
253 | #endif | |
254 | ||
e2b65ea9 YS |
255 | /* Debug Server firmware */ |
256 | #define CONFIG_SYS_DEBUG_SERVER_FW_IN_NOR | |
257 | #define CONFIG_SYS_DEBUG_SERVER_FW_ADDR 0x580D00000ULL | |
89a168f7 | 258 | #endif |
e2b65ea9 YS |
259 | #define CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS 5000 |
260 | ||
3049a583 PJ |
261 | #ifdef CONFIG_TARGET_LS2081ARDB |
262 | #define CONFIG_FSL_QIXIS /* use common QIXIS code */ | |
263 | #define QIXIS_QMAP_MASK 0x07 | |
264 | #define QIXIS_QMAP_SHIFT 5 | |
265 | #define QIXIS_LBMAP_DFLTBANK 0x00 | |
266 | #define QIXIS_LBMAP_QSPI 0x00 | |
267 | #define QIXIS_RCW_SRC_QSPI 0x62 | |
268 | #define QIXIS_LBMAP_ALTBANK 0x20 | |
269 | #define QIXIS_RST_CTL_RESET 0x31 | |
270 | #define QIXIS_RCFG_CTL_RECONFIG_IDLE 0x20 | |
271 | #define QIXIS_RCFG_CTL_RECONFIG_START 0x21 | |
272 | #define QIXIS_RCFG_CTL_WATCHDOG_ENBLE 0x08 | |
273 | #define QIXIS_LBMAP_MASK 0x0f | |
274 | #define QIXIS_RST_CTL_RESET_EN 0x30 | |
275 | #endif | |
276 | ||
e2b65ea9 YS |
277 | /* |
278 | * I2C | |
279 | */ | |
3049a583 PJ |
280 | #ifdef CONFIG_TARGET_LS2081ARDB |
281 | #define CONFIG_SYS_I2C_FPGA_ADDR 0x66 | |
282 | #endif | |
4012350d PK |
283 | #define I2C_MUX_PCA_ADDR 0x75 |
284 | #define I2C_MUX_PCA_ADDR_PRI 0x75 /* Primary Mux*/ | |
e2b65ea9 YS |
285 | |
286 | /* I2C bus multiplexer */ | |
287 | #define I2C_MUX_CH_DEFAULT 0x8 | |
288 | ||
0c42a8de | 289 | /* SPI */ |
89a168f7 | 290 | #if defined(CONFIG_FSL_QSPI) || defined(CONFIG_FSL_DSPI) |
0c42a8de | 291 | #define CONFIG_SPI_FLASH |
89a168f7 | 292 | #ifdef CONFIG_FSL_QSPI |
21640db5 | 293 | #define CONFIG_SPI_FLASH_STMICRO |
0c42a8de | 294 | #endif |
89a168f7 | 295 | #ifdef CONFIG_FSL_QSPI |
3049a583 PJ |
296 | #ifdef CONFIG_TARGET_LS2081ARDB |
297 | #define CONFIG_SPI_FLASH_STMICRO | |
298 | #else | |
89a168f7 | 299 | #define CONFIG_SPI_FLASH_SPANSION |
3049a583 | 300 | #endif |
89a168f7 PJ |
301 | #define FSL_QSPI_FLASH_SIZE SZ_64M /* 64MB */ |
302 | #define FSL_QSPI_FLASH_NUM 2 | |
303 | #endif | |
304 | #endif | |
0c42a8de | 305 | |
e2b65ea9 YS |
306 | /* |
307 | * RTC configuration | |
308 | */ | |
309 | #define RTC | |
3049a583 PJ |
310 | #ifdef CONFIG_TARGET_LS2081ARDB |
311 | #define CONFIG_RTC_PCF8563 1 | |
312 | #define CONFIG_SYS_I2C_RTC_ADDR 0x51 | |
313 | #else | |
e2b65ea9 YS |
314 | #define CONFIG_RTC_DS3231 1 |
315 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 | |
3049a583 | 316 | #endif |
e2b65ea9 YS |
317 | |
318 | /* EEPROM */ | |
319 | #define CONFIG_ID_EEPROM | |
e2b65ea9 YS |
320 | #define CONFIG_SYS_I2C_EEPROM_NXID |
321 | #define CONFIG_SYS_EEPROM_BUS_NUM 0 | |
322 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57 | |
323 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 | |
324 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 | |
325 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 | |
326 | ||
e2b65ea9 | 327 | #define CONFIG_FSL_MEMAC |
e2b65ea9 YS |
328 | |
329 | #ifdef CONFIG_PCI | |
e2b65ea9 YS |
330 | #define CONFIG_PCI_SCAN_SHOW |
331 | #define CONFIG_CMD_PCI | |
e2b65ea9 YS |
332 | #endif |
333 | ||
8b06460e | 334 | /* MMC */ |
8b06460e | 335 | #ifdef CONFIG_MMC |
8b06460e YL |
336 | #define CONFIG_FSL_ESDHC |
337 | #define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 | |
8b06460e | 338 | #endif |
e2b65ea9 | 339 | |
5a4d744c YL |
340 | #define CONFIG_MISC_INIT_R |
341 | ||
e16b604e NB |
342 | /* |
343 | * USB | |
344 | */ | |
345 | #define CONFIG_HAS_FSL_XHCI_USB | |
e16b604e | 346 | #define CONFIG_USB_XHCI_FSL |
e16b604e | 347 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
e16b604e | 348 | |
b99ebaf9 AG |
349 | #undef CONFIG_CMDLINE_EDITING |
350 | #include <config_distro_defaults.h> | |
351 | ||
352 | #define BOOT_TARGET_DEVICES(func) \ | |
353 | func(USB, usb, 0) \ | |
354 | func(MMC, mmc, 0) \ | |
355 | func(SCSI, scsi, 0) \ | |
356 | func(DHCP, dhcp, na) | |
357 | #include <config_distro_bootcmd.h> | |
358 | ||
ec85721c VP |
359 | #ifdef CONFIG_QSPI_BOOT |
360 | #define MC_INIT_CMD \ | |
361 | "mcinitcmd=env exists secureboot && " \ | |
362 | "esbc_validate 0x20700000 && " \ | |
363 | "esbc_validate 0x20740000;" \ | |
364 | "fsl_mc start mc 0x20a00000 0x20e00000 \0" | |
365 | #else | |
366 | #define MC_INIT_CMD \ | |
367 | "mcinitcmd=env exists secureboot && " \ | |
368 | "esbc_validate 0x580700000 && " \ | |
369 | "esbc_validate 0x580740000; " \ | |
370 | "fsl_mc start mc 0x580a00000 0x580e00000 \0" | |
371 | #endif | |
372 | ||
e2b65ea9 YS |
373 | /* Initial environment variables */ |
374 | #undef CONFIG_EXTRA_ENV_SETTINGS | |
375 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
376 | "hwconfig=fsl_ddr:bank_intlv=auto\0" \ | |
e2b65ea9 YS |
377 | "ramdisk_addr=0x800000\0" \ |
378 | "ramdisk_size=0x2000000\0" \ | |
379 | "fdt_high=0xa0000000\0" \ | |
380 | "initrd_high=0xffffffffffffffff\0" \ | |
0a09d20b ZY |
381 | "fdt_addr=0x64f00000\0" \ |
382 | "kernel_addr=0x65000000\0" \ | |
ec85721c VP |
383 | "kernel_start=0x1000000\0" \ |
384 | "kernelheader_start=0x800000\0" \ | |
0a09d20b | 385 | "scriptaddr=0x80000000\0" \ |
ec85721c | 386 | "scripthdraddr=0x80080000\0" \ |
0a09d20b ZY |
387 | "fdtheader_addr_r=0x80100000\0" \ |
388 | "kernelheader_addr_r=0x80200000\0" \ | |
ec85721c | 389 | "kernelheader_addr=0x580800000\0" \ |
0a09d20b | 390 | "kernel_addr_r=0x81000000\0" \ |
ec85721c | 391 | "kernelheader_size=0x40000\0" \ |
0a09d20b ZY |
392 | "fdt_addr_r=0x90000000\0" \ |
393 | "load_addr=0xa0000000\0" \ | |
16ed8560 | 394 | "kernel_size=0x2800000\0" \ |
0a09d20b | 395 | "console=ttyAMA0,38400n8\0" \ |
ec85721c | 396 | MC_INIT_CMD \ |
0a09d20b ZY |
397 | BOOTENV \ |
398 | "boot_scripts=ls2088ardb_boot.scr\0" \ | |
ec85721c | 399 | "boot_script_hdr=hdr_ls2088ardb_bs.out\0" \ |
0a09d20b ZY |
400 | "scan_dev_for_boot_part=" \ |
401 | "part list ${devtype} ${devnum} devplist; " \ | |
402 | "env exists devplist || setenv devplist 1; " \ | |
403 | "for distro_bootpart in ${devplist}; do " \ | |
404 | "if fstype ${devtype} " \ | |
405 | "${devnum}:${distro_bootpart} " \ | |
406 | "bootfstype; then " \ | |
407 | "run scan_dev_for_boot; " \ | |
408 | "fi; " \ | |
409 | "done\0" \ | |
ec85721c VP |
410 | "scan_dev_for_boot=" \ |
411 | "echo Scanning ${devtype} " \ | |
412 | "${devnum}:${distro_bootpart}...; " \ | |
413 | "for prefix in ${boot_prefixes}; do " \ | |
414 | "run scan_dev_for_scripts; " \ | |
415 | "done;\0" \ | |
416 | "boot_a_script=" \ | |
417 | "load ${devtype} ${devnum}:${distro_bootpart} " \ | |
418 | "${scriptaddr} ${prefix}${script}; " \ | |
419 | "env exists secureboot && load ${devtype} " \ | |
420 | "${devnum}:${distro_bootpart} " \ | |
421 | "${scripthdraddr} ${prefix}${boot_script_hdr} " \ | |
422 | "&& esbc_validate ${scripthdraddr};" \ | |
423 | "source ${scriptaddr}\0" \ | |
0a09d20b ZY |
424 | "installer=load mmc 0:2 $load_addr " \ |
425 | "/flex_installer_arm64.itb; " \ | |
426 | "bootm $load_addr#ls2088ardb\0" \ | |
427 | "qspi_bootcmd=echo Trying load from qspi..;" \ | |
428 | "sf probe && sf read $load_addr " \ | |
ec85721c VP |
429 | "$kernel_start $kernel_size ; env exists secureboot &&" \ |
430 | "sf read $kernelheader_addr_r $kernelheader_start " \ | |
431 | "$kernelheader_size && esbc_validate ${kernelheader_addr_r}; "\ | |
0a09d20b ZY |
432 | " bootm $load_addr#$board\0" \ |
433 | "nor_bootcmd=echo Trying load from nor..;" \ | |
434 | "cp.b $kernel_addr $load_addr " \ | |
ec85721c VP |
435 | "$kernel_size ; env exists secureboot && " \ |
436 | "cp.b $kernelheader_addr $kernelheader_addr_r " \ | |
437 | "$kernelheader_size && esbc_validate ${kernelheader_addr_r}; "\ | |
438 | "bootm $load_addr#$board\0" | |
9ed44787 | 439 | |
b99ebaf9 | 440 | #undef CONFIG_BOOTCOMMAND |
89a168f7 | 441 | #ifdef CONFIG_QSPI_BOOT |
89a168f7 | 442 | /* Try to boot an on-QSPI kernel first, then do normal distro boot */ |
0a09d20b | 443 | #define CONFIG_BOOTCOMMAND \ |
ec85721c VP |
444 | "env exists mcinitcmd && env exists secureboot "\ |
445 | "&& esbc_validate 0x20780000; " \ | |
446 | "env exists mcinitcmd && " \ | |
447 | "fsl_mc lazyapply dpl 0x20d00000; " \ | |
448 | "run distro_bootcmd;run qspi_bootcmd; " \ | |
449 | "env exists secureboot && esbc_halt; " | |
9ed44787 | 450 | #else |
b99ebaf9 | 451 | /* Try to boot an on-NOR kernel first, then do normal distro boot */ |
0a09d20b | 452 | #define CONFIG_BOOTCOMMAND \ |
ec85721c VP |
453 | "env exists mcinitcmd && env exists secureboot "\ |
454 | "&& esbc_validate 0x580780000; env exists mcinitcmd "\ | |
455 | "&& fsl_mc lazyapply dpl 0x580d00000;" \ | |
456 | "run distro_bootcmd;run nor_bootcmd; " \ | |
457 | "env exists secureboot && esbc_halt; " | |
89a168f7 | 458 | #endif |
9ed44787 | 459 | |
56cd0760 PK |
460 | #undef CONFIG_BOOTARGS |
461 | #define CONFIG_BOOTARGS "console=ttyS1,115200 root=/dev/ram0 " \ | |
ed77b704 | 462 | "earlycon=uart8250,mmio,0x21c0600 " \ |
56cd0760 | 463 | "ramdisk_size=0x2000000 default_hugepagesz=2m" \ |
9e71bb9c | 464 | " hugepagesz=2m hugepages=256" |
56cd0760 | 465 | |
3484d953 PK |
466 | /* MAC/PHY configuration */ |
467 | #ifdef CONFIG_FSL_MC_ENET | |
468 | #define CONFIG_PHYLIB_10G | |
c69384e1 | 469 | #define CONFIG_PHY_AQUANTIA |
3484d953 | 470 | #define CONFIG_PHY_CORTINA |
3484d953 | 471 | #define CONFIG_SYS_CORTINA_FW_IN_NOR |
89a168f7 PJ |
472 | #ifdef CONFIG_QSPI_BOOT |
473 | #define CONFIG_CORTINA_FW_ADDR 0x20980000 | |
474 | #else | |
f5bf23d8 | 475 | #define CONFIG_CORTINA_FW_ADDR 0x580980000 |
89a168f7 | 476 | #endif |
3484d953 PK |
477 | #define CONFIG_CORTINA_FW_LENGTH 0x40000 |
478 | ||
479 | #define CORTINA_PHY_ADDR1 0x10 | |
480 | #define CORTINA_PHY_ADDR2 0x11 | |
481 | #define CORTINA_PHY_ADDR3 0x12 | |
482 | #define CORTINA_PHY_ADDR4 0x13 | |
483 | #define AQ_PHY_ADDR1 0x00 | |
484 | #define AQ_PHY_ADDR2 0x01 | |
485 | #define AQ_PHY_ADDR3 0x02 | |
486 | #define AQ_PHY_ADDR4 0x03 | |
abc7d0f7 | 487 | #define AQR405_IRQ_MASK 0x36 |
3484d953 PK |
488 | |
489 | #define CONFIG_MII | |
7ad9cc96 | 490 | #define CONFIG_ETHPRIME "DPMAC1@xgmii" |
95279315 | 491 | #define CONFIG_PHY_AQUANTIA |
3484d953 PK |
492 | #endif |
493 | ||
fcfdb6d5 SJ |
494 | #include <asm/fsl_secure_boot.h> |
495 | ||
e2b65ea9 | 496 | #endif /* __LS2_RDB_H */ |