]>
Commit | Line | Data |
---|---|---|
0b2e13d9 CL |
1 | /* |
2 | * Copyright 2014 Freescale Semiconductor, Inc. | |
3 | * | |
4 | * SPDX-License-Identifier: GPL-2.0+ | |
5 | */ | |
6 | ||
7 | /* | |
8 | * T4240 RDB board configuration file | |
9 | */ | |
10 | #ifndef __CONFIG_H | |
11 | #define __CONFIG_H | |
12 | ||
13 | #define CONFIG_T4240RDB | |
14 | #define CONFIG_PHYS_64BIT | |
9a509cf6 CL |
15 | #define CONFIG_SYS_GENERIC_BOARD |
16 | #define CONFIG_DISPLAY_BOARDINFO | |
0b2e13d9 CL |
17 | |
18 | #define CONFIG_FSL_SATA_V2 | |
19 | #define CONFIG_PCIE4 | |
20 | ||
21 | #define CONFIG_ICS307_REFCLK_HZ 25000000 /* ICS307 ref clk freq */ | |
22 | ||
23 | #ifdef CONFIG_RAMBOOT_PBL | |
0b2e13d9 CL |
24 | #define CONFIG_SYS_FSL_PBL_PBI $(SRCTREE)/board/freescale/t4rdb/t4_pbi.cfg |
25 | #define CONFIG_SYS_FSL_PBL_RCW $(SRCTREE)/board/freescale/t4rdb/t4_rcw.cfg | |
373762c3 CL |
26 | #ifndef CONFIG_SDCARD |
27 | #define CONFIG_RAMBOOT_TEXT_BASE CONFIG_SYS_TEXT_BASE | |
28 | #define CONFIG_RESET_VECTOR_ADDRESS 0xfffffffc | |
29 | #else | |
30 | #define CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT | |
31 | #define CONFIG_SPL_ENV_SUPPORT | |
32 | #define CONFIG_SPL_SERIAL_SUPPORT | |
33 | #define CONFIG_SPL_FLUSH_IMAGE | |
34 | #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" | |
35 | #define CONFIG_SPL_LIBGENERIC_SUPPORT | |
36 | #define CONFIG_SPL_LIBCOMMON_SUPPORT | |
37 | #define CONFIG_SPL_I2C_SUPPORT | |
38 | #define CONFIG_SPL_DRIVERS_MISC_SUPPORT | |
39 | #define CONFIG_FSL_LAW /* Use common FSL init code */ | |
40 | #define CONFIG_SYS_TEXT_BASE 0x00201000 | |
41 | #define CONFIG_SPL_TEXT_BASE 0xFFFD8000 | |
42 | #define CONFIG_SPL_PAD_TO 0x40000 | |
43 | #define CONFIG_SPL_MAX_SIZE 0x28000 | |
44 | #define RESET_VECTOR_OFFSET 0x27FFC | |
45 | #define BOOT_PAGE_OFFSET 0x27000 | |
46 | ||
47 | #ifdef CONFIG_SDCARD | |
48 | #define CONFIG_RESET_VECTOR_ADDRESS 0x200FFC | |
49 | #define CONFIG_SPL_MMC_SUPPORT | |
50 | #define CONFIG_SPL_MMC_MINIMAL | |
51 | #define CONFIG_SYS_MMC_U_BOOT_SIZE (768 << 10) | |
52 | #define CONFIG_SYS_MMC_U_BOOT_DST 0x00200000 | |
53 | #define CONFIG_SYS_MMC_U_BOOT_START 0x00200000 | |
54 | #define CONFIG_SYS_MMC_U_BOOT_OFFS (260 << 10) | |
55 | #ifndef CONFIG_SPL_BUILD | |
56 | #define CONFIG_SYS_MPC85XX_NO_RESETVEC | |
57 | #endif | |
58 | #define CONFIG_SYS_LDSCRIPT "arch/powerpc/cpu/mpc85xx/u-boot.lds" | |
59 | #define CONFIG_SPL_MMC_BOOT | |
60 | #endif | |
61 | ||
62 | #ifdef CONFIG_SPL_BUILD | |
63 | #define CONFIG_SPL_SKIP_RELOCATE | |
64 | #define CONFIG_SPL_COMMON_INIT_DDR | |
65 | #define CONFIG_SYS_CCSR_DO_NOT_RELOCATE | |
66 | #define CONFIG_SYS_NO_FLASH | |
67 | #endif | |
68 | ||
0b2e13d9 | 69 | #endif |
373762c3 | 70 | #endif /* CONFIG_RAMBOOT_PBL */ |
0b2e13d9 CL |
71 | |
72 | #define CONFIG_DDR_ECC | |
73 | ||
74 | #define CONFIG_CMD_REGINFO | |
75 | ||
76 | /* High Level Configuration Options */ | |
77 | #define CONFIG_BOOKE | |
78 | #define CONFIG_E500 /* BOOKE e500 family */ | |
79 | #define CONFIG_E500MC /* BOOKE e500mc family */ | |
80 | #define CONFIG_SYS_BOOK3E_HV /* Category E.HV supported */ | |
81 | #define CONFIG_MP /* support multiple processors */ | |
82 | ||
83 | #ifndef CONFIG_SYS_TEXT_BASE | |
84 | #define CONFIG_SYS_TEXT_BASE 0xeff40000 | |
85 | #endif | |
86 | ||
87 | #ifndef CONFIG_RESET_VECTOR_ADDRESS | |
88 | #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc | |
89 | #endif | |
90 | ||
91 | #define CONFIG_SYS_FSL_CPC /* Corenet Platform Cache */ | |
92 | #define CONFIG_SYS_NUM_CPC CONFIG_NUM_DDR_CONTROLLERS | |
93 | #define CONFIG_FSL_IFC /* Enable IFC Support */ | |
737537ef | 94 | #define CONFIG_FSL_CAAM /* Enable SEC/CAAM */ |
0b2e13d9 CL |
95 | #define CONFIG_PCI /* Enable PCI/PCIE */ |
96 | #define CONFIG_PCIE1 /* PCIE controler 1 */ | |
97 | #define CONFIG_PCIE2 /* PCIE controler 2 */ | |
98 | #define CONFIG_PCIE3 /* PCIE controler 3 */ | |
99 | #define CONFIG_FSL_PCI_INIT /* Use common FSL init code */ | |
100 | #define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */ | |
101 | ||
102 | #define CONFIG_FSL_LAW /* Use common FSL init code */ | |
103 | ||
104 | #define CONFIG_ENV_OVERWRITE | |
105 | ||
106 | /* | |
107 | * These can be toggled for performance analysis, otherwise use default. | |
108 | */ | |
109 | #define CONFIG_SYS_CACHE_STASHING | |
110 | #define CONFIG_BTB /* toggle branch predition */ | |
111 | #ifdef CONFIG_DDR_ECC | |
112 | #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER | |
113 | #define CONFIG_MEM_INIT_VALUE 0xdeadbeef | |
114 | #endif | |
115 | ||
116 | #define CONFIG_ENABLE_36BIT_PHYS | |
117 | ||
118 | #define CONFIG_ADDR_MAP | |
119 | #define CONFIG_SYS_NUM_ADDR_MAP 64 /* number of TLB1 entries */ | |
120 | ||
121 | #define CONFIG_SYS_MEMTEST_START 0x00200000 /* memtest works on */ | |
122 | #define CONFIG_SYS_MEMTEST_END 0x00400000 | |
123 | #define CONFIG_SYS_ALT_MEMTEST | |
124 | #define CONFIG_PANIC_HANG /* do not reset board on panic */ | |
125 | ||
126 | /* | |
127 | * Config the L3 Cache as L3 SRAM | |
128 | */ | |
373762c3 CL |
129 | #define CONFIG_SYS_INIT_L3_ADDR 0xFFFC0000 |
130 | #define CONFIG_SYS_L3_SIZE (512 << 10) | |
131 | #define CONFIG_SPL_GD_ADDR (CONFIG_SYS_INIT_L3_ADDR + 32 * 1024) | |
132 | #ifdef CONFIG_RAMBOOT_PBL | |
133 | #define CONFIG_ENV_ADDR (CONFIG_SPL_GD_ADDR + 4 * 1024) | |
134 | #endif | |
135 | #define CONFIG_SPL_RELOC_MALLOC_ADDR (CONFIG_SPL_GD_ADDR + 12 * 1024) | |
136 | #define CONFIG_SPL_RELOC_MALLOC_SIZE (50 << 10) | |
137 | #define CONFIG_SPL_RELOC_STACK (CONFIG_SPL_GD_ADDR + 64 * 1024) | |
138 | #define CONFIG_SPL_RELOC_STACK_SIZE (22 << 10) | |
0b2e13d9 CL |
139 | |
140 | #define CONFIG_SYS_DCSRBAR 0xf0000000 | |
141 | #define CONFIG_SYS_DCSRBAR_PHYS 0xf00000000ull | |
142 | ||
143 | /* | |
144 | * DDR Setup | |
145 | */ | |
146 | #define CONFIG_VERY_BIG_RAM | |
147 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 | |
148 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE | |
149 | ||
150 | /* CONFIG_NUM_DDR_CONTROLLERS is defined in include/asm/config_mpc85xx.h */ | |
151 | #define CONFIG_DIMM_SLOTS_PER_CTLR 1 | |
152 | #define CONFIG_CHIP_SELECTS_PER_CTRL 4 | |
153 | #define CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE | |
154 | ||
155 | #define CONFIG_DDR_SPD | |
156 | #define CONFIG_SYS_FSL_DDR3 | |
157 | ||
158 | ||
159 | /* | |
160 | * IFC Definitions | |
161 | */ | |
162 | #define CONFIG_SYS_FLASH_BASE 0xe0000000 | |
163 | #define CONFIG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CONFIG_SYS_FLASH_BASE) | |
164 | ||
165 | ||
373762c3 CL |
166 | #ifdef CONFIG_SPL_BUILD |
167 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SPL_TEXT_BASE | |
168 | #else | |
0b2e13d9 | 169 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
373762c3 | 170 | #endif |
0b2e13d9 CL |
171 | |
172 | #define CONFIG_BOARD_EARLY_INIT_R /* call board_early_init_r function */ | |
173 | #define CONFIG_MISC_INIT_R | |
174 | ||
175 | #define CONFIG_HWCONFIG | |
176 | ||
177 | /* define to use L1 as initial stack */ | |
178 | #define CONFIG_L1_INIT_RAM | |
179 | #define CONFIG_SYS_INIT_RAM_LOCK | |
180 | #define CONFIG_SYS_INIT_RAM_ADDR 0xfdd00000 /* Initial L1 address */ | |
181 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf | |
182 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW 0xfe0ec000 | |
183 | /* The assembler doesn't like typecast */ | |
184 | #define CONFIG_SYS_INIT_RAM_ADDR_PHYS \ | |
185 | ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \ | |
186 | CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) | |
187 | #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 | |
188 | ||
189 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \ | |
190 | GENERATED_GBL_DATA_SIZE) | |
191 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET | |
192 | ||
373762c3 | 193 | #define CONFIG_SYS_MONITOR_LEN (768 * 1024) |
0b2e13d9 CL |
194 | #define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024) |
195 | ||
196 | /* Serial Port - controlled on board with jumper J8 | |
197 | * open - index 2 | |
198 | * shorted - index 1 | |
199 | */ | |
200 | #define CONFIG_CONS_INDEX 1 | |
201 | #define CONFIG_SYS_NS16550 | |
202 | #define CONFIG_SYS_NS16550_SERIAL | |
203 | #define CONFIG_SYS_NS16550_REG_SIZE 1 | |
204 | #define CONFIG_SYS_NS16550_CLK (get_bus_freq(0)/2) | |
205 | ||
206 | #define CONFIG_SYS_BAUDRATE_TABLE \ | |
207 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200} | |
208 | ||
209 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x11C500) | |
210 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x11C600) | |
211 | #define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_CCSRBAR+0x11D500) | |
212 | #define CONFIG_SYS_NS16550_COM4 (CONFIG_SYS_CCSRBAR+0x11D600) | |
213 | ||
214 | /* Use the HUSH parser */ | |
215 | #define CONFIG_SYS_HUSH_PARSER | |
216 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " | |
217 | ||
218 | /* pass open firmware flat tree */ | |
219 | #define CONFIG_OF_LIBFDT | |
220 | #define CONFIG_OF_BOARD_SETUP | |
221 | #define CONFIG_OF_STDOUT_VIA_ALIAS | |
222 | ||
223 | /* new uImage format support */ | |
224 | #define CONFIG_FIT | |
225 | #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ | |
226 | ||
227 | /* I2C */ | |
228 | #define CONFIG_SYS_I2C | |
229 | #define CONFIG_SYS_I2C_FSL | |
230 | #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F | |
231 | #define CONFIG_SYS_FSL_I2C_OFFSET 0x118000 | |
232 | #define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F | |
233 | #define CONFIG_SYS_FSL_I2C2_OFFSET 0x118100 | |
234 | ||
235 | /* | |
236 | * General PCI | |
237 | * Memory space is mapped 1-1, but I/O space must start from 0. | |
238 | */ | |
239 | ||
240 | /* controller 1, direct to uli, tgtid 3, Base address 20000 */ | |
241 | #define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000 | |
242 | #define CONFIG_SYS_PCIE1_MEM_BUS 0xe0000000 | |
243 | #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull | |
244 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */ | |
245 | #define CONFIG_SYS_PCIE1_IO_VIRT 0xf8000000 | |
246 | #define CONFIG_SYS_PCIE1_IO_BUS 0x00000000 | |
247 | #define CONFIG_SYS_PCIE1_IO_PHYS 0xff8000000ull | |
248 | #define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */ | |
249 | ||
250 | /* controller 2, Slot 2, tgtid 2, Base address 201000 */ | |
251 | #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000 | |
252 | #define CONFIG_SYS_PCIE2_MEM_BUS 0xe0000000 | |
253 | #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull | |
254 | #define CONFIG_SYS_PCIE2_MEM_SIZE 0x20000000 /* 512M */ | |
255 | #define CONFIG_SYS_PCIE2_IO_VIRT 0xf8010000 | |
256 | #define CONFIG_SYS_PCIE2_IO_BUS 0x00000000 | |
257 | #define CONFIG_SYS_PCIE2_IO_PHYS 0xff8010000ull | |
258 | #define CONFIG_SYS_PCIE2_IO_SIZE 0x00010000 /* 64k */ | |
259 | ||
260 | /* controller 3, Slot 1, tgtid 1, Base address 202000 */ | |
261 | #define CONFIG_SYS_PCIE3_MEM_VIRT 0xc0000000 | |
262 | #define CONFIG_SYS_PCIE3_MEM_BUS 0xe0000000 | |
263 | #define CONFIG_SYS_PCIE3_MEM_PHYS 0xc40000000ull | |
264 | #define CONFIG_SYS_PCIE3_MEM_SIZE 0x20000000 /* 512M */ | |
265 | #define CONFIG_SYS_PCIE3_IO_VIRT 0xf8020000 | |
266 | #define CONFIG_SYS_PCIE3_IO_BUS 0x00000000 | |
267 | #define CONFIG_SYS_PCIE3_IO_PHYS 0xff8020000ull | |
268 | #define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */ | |
269 | ||
270 | /* controller 4, Base address 203000 */ | |
271 | #define CONFIG_SYS_PCIE4_MEM_BUS 0xe0000000 | |
272 | #define CONFIG_SYS_PCIE4_MEM_PHYS 0xc60000000ull | |
273 | #define CONFIG_SYS_PCIE4_MEM_SIZE 0x20000000 /* 512M */ | |
274 | #define CONFIG_SYS_PCIE4_IO_BUS 0x00000000 | |
275 | #define CONFIG_SYS_PCIE4_IO_PHYS 0xff8030000ull | |
276 | #define CONFIG_SYS_PCIE4_IO_SIZE 0x00010000 /* 64k */ | |
277 | ||
278 | #ifdef CONFIG_PCI | |
279 | #define CONFIG_PCI_INDIRECT_BRIDGE | |
0b2e13d9 | 280 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
0b2e13d9 CL |
281 | |
282 | #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ | |
283 | #define CONFIG_DOS_PARTITION | |
284 | #endif /* CONFIG_PCI */ | |
285 | ||
286 | /* SATA */ | |
287 | #ifdef CONFIG_FSL_SATA_V2 | |
288 | #define CONFIG_LIBATA | |
289 | #define CONFIG_FSL_SATA | |
290 | ||
291 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 | |
292 | #define CONFIG_SATA1 | |
293 | #define CONFIG_SYS_SATA1 CONFIG_SYS_MPC85xx_SATA1_ADDR | |
294 | #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA | |
295 | #define CONFIG_SATA2 | |
296 | #define CONFIG_SYS_SATA2 CONFIG_SYS_MPC85xx_SATA2_ADDR | |
297 | #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA | |
298 | ||
299 | #define CONFIG_LBA48 | |
300 | #define CONFIG_CMD_SATA | |
301 | #define CONFIG_DOS_PARTITION | |
302 | #define CONFIG_CMD_EXT2 | |
303 | #endif | |
304 | ||
305 | #ifdef CONFIG_FMAN_ENET | |
306 | #define CONFIG_MII /* MII PHY management */ | |
307 | #define CONFIG_ETHPRIME "FM1@DTSEC1" | |
308 | #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */ | |
309 | #endif | |
310 | ||
311 | /* | |
312 | * Environment | |
313 | */ | |
314 | #define CONFIG_LOADS_ECHO /* echo on for serial download */ | |
315 | #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */ | |
316 | ||
317 | /* | |
318 | * Command line configuration. | |
319 | */ | |
0b2e13d9 CL |
320 | #define CONFIG_CMD_DHCP |
321 | #define CONFIG_CMD_ELF | |
322 | #define CONFIG_CMD_ERRATA | |
323 | #define CONFIG_CMD_GREPENV | |
324 | #define CONFIG_CMD_IRQ | |
325 | #define CONFIG_CMD_I2C | |
326 | #define CONFIG_CMD_MII | |
327 | #define CONFIG_CMD_PING | |
0b2e13d9 CL |
328 | |
329 | #ifdef CONFIG_PCI | |
330 | #define CONFIG_CMD_PCI | |
0b2e13d9 CL |
331 | #endif |
332 | ||
333 | /* | |
334 | * Miscellaneous configurable options | |
335 | */ | |
336 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ | |
337 | #define CONFIG_CMDLINE_EDITING /* Command-line editing */ | |
338 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ | |
339 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ | |
340 | #ifdef CONFIG_CMD_KGDB | |
341 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ | |
342 | #else | |
343 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ | |
344 | #endif | |
345 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) | |
346 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ | |
347 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE/* Boot Argument Buffer Size */ | |
348 | ||
349 | /* | |
350 | * For booting Linux, the board info and command line data | |
351 | * have to be in the first 64 MB of memory, since this is | |
352 | * the maximum mapped by the Linux kernel during initialization. | |
353 | */ | |
354 | #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial map for Linux*/ | |
355 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ | |
356 | ||
357 | #ifdef CONFIG_CMD_KGDB | |
358 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ | |
359 | #endif | |
360 | ||
361 | /* | |
362 | * Environment Configuration | |
363 | */ | |
364 | #define CONFIG_ROOTPATH "/opt/nfsroot" | |
365 | #define CONFIG_BOOTFILE "uImage" | |
366 | #define CONFIG_UBOOTPATH "u-boot.bin" /* U-Boot image on TFTP server*/ | |
367 | ||
368 | /* default location for tftp and bootm */ | |
369 | #define CONFIG_LOADADDR 1000000 | |
370 | ||
371 | ||
372 | #define CONFIG_BAUDRATE 115200 | |
373 | ||
374 | #define CONFIG_HVBOOT \ | |
375 | "setenv bootargs config-addr=0x60000000; " \ | |
376 | "bootm 0x01000000 - 0x00f00000" | |
377 | ||
378 | #ifdef CONFIG_SYS_NO_FLASH | |
379 | #ifndef CONFIG_RAMBOOT_PBL | |
380 | #define CONFIG_ENV_IS_NOWHERE | |
381 | #endif | |
382 | #else | |
383 | #define CONFIG_FLASH_CFI_DRIVER | |
384 | #define CONFIG_SYS_FLASH_CFI | |
385 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE | |
386 | #endif | |
387 | ||
388 | #if defined(CONFIG_SPIFLASH) | |
389 | #define CONFIG_SYS_EXTRA_ENV_RELOC | |
390 | #define CONFIG_ENV_IS_IN_SPI_FLASH | |
391 | #define CONFIG_ENV_SPI_BUS 0 | |
392 | #define CONFIG_ENV_SPI_CS 0 | |
393 | #define CONFIG_ENV_SPI_MAX_HZ 10000000 | |
394 | #define CONFIG_ENV_SPI_MODE 0 | |
395 | #define CONFIG_ENV_SIZE 0x2000 /* 8KB */ | |
396 | #define CONFIG_ENV_OFFSET 0x100000 /* 1MB */ | |
397 | #define CONFIG_ENV_SECT_SIZE 0x10000 | |
398 | #elif defined(CONFIG_SDCARD) | |
399 | #define CONFIG_SYS_EXTRA_ENV_RELOC | |
400 | #define CONFIG_ENV_IS_IN_MMC | |
401 | #define CONFIG_SYS_MMC_ENV_DEV 0 | |
402 | #define CONFIG_ENV_SIZE 0x2000 | |
373762c3 | 403 | #define CONFIG_ENV_OFFSET (512 * 0x800) |
0b2e13d9 CL |
404 | #elif defined(CONFIG_NAND) |
405 | #define CONFIG_SYS_EXTRA_ENV_RELOC | |
406 | #define CONFIG_ENV_IS_IN_NAND | |
407 | #define CONFIG_ENV_SIZE CONFIG_SYS_NAND_BLOCK_SIZE | |
408 | #define CONFIG_ENV_OFFSET (7 * CONFIG_SYS_NAND_BLOCK_SIZE) | |
409 | #elif defined(CONFIG_ENV_IS_NOWHERE) | |
410 | #define CONFIG_ENV_SIZE 0x2000 | |
411 | #else | |
412 | #define CONFIG_ENV_IS_IN_FLASH | |
413 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE) | |
414 | #define CONFIG_ENV_SIZE 0x2000 | |
415 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) */ | |
416 | #endif | |
417 | ||
418 | #define CONFIG_SYS_CLK_FREQ 66666666 | |
419 | #define CONFIG_DDR_CLK_FREQ 133333333 | |
420 | ||
421 | #ifndef __ASSEMBLY__ | |
422 | unsigned long get_board_sys_clk(void); | |
423 | unsigned long get_board_ddr_clk(void); | |
424 | #endif | |
425 | ||
426 | /* | |
427 | * DDR Setup | |
428 | */ | |
429 | #define CONFIG_SYS_SPD_BUS_NUM 0 | |
430 | #define SPD_EEPROM_ADDRESS1 0x52 | |
431 | #define SPD_EEPROM_ADDRESS2 0x54 | |
432 | #define SPD_EEPROM_ADDRESS3 0x56 | |
433 | #define SPD_EEPROM_ADDRESS SPD_EEPROM_ADDRESS1 /* for p3041/p5010 */ | |
434 | #define CONFIG_SYS_SDRAM_SIZE 4096 /* for fixed parameter use */ | |
435 | ||
436 | /* | |
437 | * IFC Definitions | |
438 | */ | |
439 | #define CONFIG_SYS_NOR0_CSPR_EXT (0xf) | |
440 | #define CONFIG_SYS_NOR0_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS \ | |
441 | + 0x8000000) | \ | |
442 | CSPR_PORT_SIZE_16 | \ | |
443 | CSPR_MSEL_NOR | \ | |
444 | CSPR_V) | |
445 | #define CONFIG_SYS_NOR1_CSPR_EXT (0xf) | |
446 | #define CONFIG_SYS_NOR1_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \ | |
447 | CSPR_PORT_SIZE_16 | \ | |
448 | CSPR_MSEL_NOR | \ | |
449 | CSPR_V) | |
450 | #define CONFIG_SYS_NOR_AMASK IFC_AMASK(128*1024*1024) | |
451 | /* NOR Flash Timing Params */ | |
452 | #define CONFIG_SYS_NOR_CSOR CSOR_NAND_TRHZ_80 | |
453 | ||
454 | #define CONFIG_SYS_NOR_FTIM0 (FTIM0_NOR_TACSE(0x4) | \ | |
455 | FTIM0_NOR_TEADC(0x5) | \ | |
456 | FTIM0_NOR_TEAHC(0x5)) | |
457 | #define CONFIG_SYS_NOR_FTIM1 (FTIM1_NOR_TACO(0x35) | \ | |
458 | FTIM1_NOR_TRAD_NOR(0x1A) |\ | |
459 | FTIM1_NOR_TSEQRAD_NOR(0x13)) | |
460 | #define CONFIG_SYS_NOR_FTIM2 (FTIM2_NOR_TCS(0x4) | \ | |
461 | FTIM2_NOR_TCH(0x4) | \ | |
462 | FTIM2_NOR_TWPH(0x0E) | \ | |
463 | FTIM2_NOR_TWP(0x1c)) | |
464 | #define CONFIG_SYS_NOR_FTIM3 0x0 | |
465 | ||
466 | #define CONFIG_SYS_FLASH_QUIET_TEST | |
467 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ | |
468 | ||
469 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* number of banks */ | |
470 | #define CONFIG_SYS_MAX_FLASH_SECT 1024 /* sectors per device */ | |
471 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */ | |
472 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */ | |
473 | ||
474 | #define CONFIG_SYS_FLASH_EMPTY_INFO | |
475 | #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS \ | |
476 | + 0x8000000, CONFIG_SYS_FLASH_BASE_PHYS} | |
477 | ||
478 | /* NAND Flash on IFC */ | |
479 | #define CONFIG_NAND_FSL_IFC | |
480 | #define CONFIG_SYS_NAND_MAX_ECCPOS 256 | |
481 | #define CONFIG_SYS_NAND_MAX_OOBFREE 2 | |
482 | #define CONFIG_SYS_NAND_BASE 0xff800000 | |
483 | #define CONFIG_SYS_NAND_BASE_PHYS (0xf00000000ull | CONFIG_SYS_NAND_BASE) | |
484 | ||
485 | #define CONFIG_SYS_NAND_CSPR_EXT (0xf) | |
486 | #define CONFIG_SYS_NAND_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ | |
487 | | CSPR_PORT_SIZE_8 /* Port Size = 8 bit */ \ | |
488 | | CSPR_MSEL_NAND /* MSEL = NAND */ \ | |
489 | | CSPR_V) | |
490 | #define CONFIG_SYS_NAND_AMASK IFC_AMASK(64*1024) | |
491 | ||
492 | #define CONFIG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \ | |
493 | | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \ | |
494 | | CSOR_NAND_ECC_MODE_4 /* 4-bit ECC */ \ | |
495 | | CSOR_NAND_RAL_3 /* RAL = 2Byes */ \ | |
496 | | CSOR_NAND_PGS_4K /* Page Size = 4K */ \ | |
497 | | CSOR_NAND_SPRZ_224 /* Spare size = 224 */ \ | |
498 | | CSOR_NAND_PB(128)) /*Page Per Block = 128*/ | |
499 | ||
500 | #define CONFIG_SYS_NAND_ONFI_DETECTION | |
501 | ||
502 | /* ONFI NAND Flash mode0 Timing Params */ | |
503 | #define CONFIG_SYS_NAND_FTIM0 (FTIM0_NAND_TCCST(0x07) | \ | |
504 | FTIM0_NAND_TWP(0x18) | \ | |
505 | FTIM0_NAND_TWCHT(0x07) | \ | |
506 | FTIM0_NAND_TWH(0x0a)) | |
507 | #define CONFIG_SYS_NAND_FTIM1 (FTIM1_NAND_TADLE(0x32) | \ | |
508 | FTIM1_NAND_TWBE(0x39) | \ | |
509 | FTIM1_NAND_TRR(0x0e) | \ | |
510 | FTIM1_NAND_TRP(0x18)) | |
511 | #define CONFIG_SYS_NAND_FTIM2 (FTIM2_NAND_TRAD(0x0f) | \ | |
512 | FTIM2_NAND_TREH(0x0a) | \ | |
513 | FTIM2_NAND_TWHRE(0x1e)) | |
514 | #define CONFIG_SYS_NAND_FTIM3 0x0 | |
515 | ||
516 | #define CONFIG_SYS_NAND_DDR_LAW 11 | |
517 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } | |
518 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 | |
0b2e13d9 CL |
519 | #define CONFIG_CMD_NAND |
520 | ||
521 | #define CONFIG_SYS_NAND_BLOCK_SIZE (512 * 1024) | |
522 | ||
523 | #if defined(CONFIG_NAND) | |
524 | #define CONFIG_SYS_CSPR0_EXT CONFIG_SYS_NAND_CSPR_EXT | |
525 | #define CONFIG_SYS_CSPR0 CONFIG_SYS_NAND_CSPR | |
526 | #define CONFIG_SYS_AMASK0 CONFIG_SYS_NAND_AMASK | |
527 | #define CONFIG_SYS_CSOR0 CONFIG_SYS_NAND_CSOR | |
528 | #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NAND_FTIM0 | |
529 | #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NAND_FTIM1 | |
530 | #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NAND_FTIM2 | |
531 | #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NAND_FTIM3 | |
532 | #define CONFIG_SYS_CSPR2_EXT CONFIG_SYS_NOR0_CSPR_EXT | |
533 | #define CONFIG_SYS_CSPR2 CONFIG_SYS_NOR0_CSPR | |
534 | #define CONFIG_SYS_AMASK2 CONFIG_SYS_NOR_AMASK | |
535 | #define CONFIG_SYS_CSOR2 CONFIG_SYS_NOR_CSOR | |
536 | #define CONFIG_SYS_CS2_FTIM0 CONFIG_SYS_NOR_FTIM0 | |
537 | #define CONFIG_SYS_CS2_FTIM1 CONFIG_SYS_NOR_FTIM1 | |
538 | #define CONFIG_SYS_CS2_FTIM2 CONFIG_SYS_NOR_FTIM2 | |
539 | #define CONFIG_SYS_CS2_FTIM3 CONFIG_SYS_NOR_FTIM3 | |
540 | #else | |
541 | #define CONFIG_SYS_CSPR0_EXT CONFIG_SYS_NOR0_CSPR_EXT | |
542 | #define CONFIG_SYS_CSPR0 CONFIG_SYS_NOR0_CSPR | |
543 | #define CONFIG_SYS_AMASK0 CONFIG_SYS_NOR_AMASK | |
544 | #define CONFIG_SYS_CSOR0 CONFIG_SYS_NOR_CSOR | |
545 | #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NOR_FTIM0 | |
546 | #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NOR_FTIM1 | |
547 | #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NOR_FTIM2 | |
548 | #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NOR_FTIM3 | |
549 | #define CONFIG_SYS_CSPR1_EXT CONFIG_SYS_NAND_CSPR_EXT | |
550 | #define CONFIG_SYS_CSPR1 CONFIG_SYS_NAND_CSPR | |
551 | #define CONFIG_SYS_AMASK1 CONFIG_SYS_NAND_AMASK | |
552 | #define CONFIG_SYS_CSOR1 CONFIG_SYS_NAND_CSOR | |
553 | #define CONFIG_SYS_CS1_FTIM0 CONFIG_SYS_NAND_FTIM0 | |
554 | #define CONFIG_SYS_CS1_FTIM1 CONFIG_SYS_NAND_FTIM1 | |
555 | #define CONFIG_SYS_CS1_FTIM2 CONFIG_SYS_NAND_FTIM2 | |
556 | #define CONFIG_SYS_CS1_FTIM3 CONFIG_SYS_NAND_FTIM3 | |
557 | #endif | |
558 | #define CONFIG_SYS_CSPR2_EXT CONFIG_SYS_NOR1_CSPR_EXT | |
559 | #define CONFIG_SYS_CSPR2 CONFIG_SYS_NOR1_CSPR | |
560 | #define CONFIG_SYS_AMASK2 CONFIG_SYS_NOR_AMASK | |
561 | #define CONFIG_SYS_CSOR2 CONFIG_SYS_NOR_CSOR | |
562 | #define CONFIG_SYS_CS2_FTIM0 CONFIG_SYS_NOR_FTIM0 | |
563 | #define CONFIG_SYS_CS2_FTIM1 CONFIG_SYS_NOR_FTIM1 | |
564 | #define CONFIG_SYS_CS2_FTIM2 CONFIG_SYS_NOR_FTIM2 | |
565 | #define CONFIG_SYS_CS2_FTIM3 CONFIG_SYS_NOR_FTIM3 | |
566 | ||
ab06b236 CL |
567 | /* CPLD on IFC */ |
568 | #define CONFIG_SYS_CPLD_BASE 0xffdf0000 | |
569 | #define CONFIG_SYS_CPLD_BASE_PHYS (0xf00000000ull | CONFIG_SYS_CPLD_BASE) | |
570 | #define CONFIG_SYS_CSPR3_EXT (0xf) | |
571 | #define CONFIG_SYS_CSPR3 (CSPR_PHYS_ADDR(CONFIG_SYS_CPLD_BASE_PHYS) \ | |
572 | | CSPR_PORT_SIZE_8 \ | |
573 | | CSPR_MSEL_GPCM \ | |
574 | | CSPR_V) | |
575 | ||
576 | #define CONFIG_SYS_AMASK3 IFC_AMASK(4*1024) | |
577 | #define CONFIG_SYS_CSOR3 0x0 | |
578 | ||
579 | /* CPLD Timing parameters for IFC CS3 */ | |
580 | #define CONFIG_SYS_CS3_FTIM0 (FTIM0_GPCM_TACSE(0x0e) | \ | |
581 | FTIM0_GPCM_TEADC(0x0e) | \ | |
582 | FTIM0_GPCM_TEAHC(0x0e)) | |
583 | #define CONFIG_SYS_CS3_FTIM1 (FTIM1_GPCM_TACO(0x0e) | \ | |
584 | FTIM1_GPCM_TRAD(0x1f)) | |
585 | #define CONFIG_SYS_CS3_FTIM2 (FTIM2_GPCM_TCS(0x0e) | \ | |
1b5c2b51 | 586 | FTIM2_GPCM_TCH(0x8) | \ |
ab06b236 CL |
587 | FTIM2_GPCM_TWP(0x1f)) |
588 | #define CONFIG_SYS_CS3_FTIM3 0x0 | |
589 | ||
0b2e13d9 CL |
590 | #if defined(CONFIG_RAMBOOT_PBL) |
591 | #define CONFIG_SYS_RAMBOOT | |
592 | #endif | |
593 | ||
594 | ||
595 | /* I2C */ | |
596 | #define CONFIG_SYS_FSL_I2C_SPEED 100000 /* I2C speed */ | |
597 | #define CONFIG_SYS_FSL_I2C2_SPEED 100000 /* I2C2 speed */ | |
598 | #define I2C_MUX_PCA_ADDR_PRI 0x77 /* I2C bus multiplexer,primary */ | |
599 | #define I2C_MUX_PCA_ADDR_SEC 0x76 /* I2C bus multiplexer,secondary */ | |
600 | ||
601 | #define I2C_MUX_CH_DEFAULT 0x8 | |
602 | #define I2C_MUX_CH_VOL_MONITOR 0xa | |
603 | #define I2C_MUX_CH_VSC3316_FS 0xc | |
604 | #define I2C_MUX_CH_VSC3316_BS 0xd | |
605 | ||
606 | /* Voltage monitor on channel 2*/ | |
607 | #define I2C_VOL_MONITOR_ADDR 0x40 | |
608 | #define I2C_VOL_MONITOR_BUS_V_OFFSET 0x2 | |
609 | #define I2C_VOL_MONITOR_BUS_V_OVF 0x1 | |
610 | #define I2C_VOL_MONITOR_BUS_V_SHIFT 3 | |
611 | ||
612 | /* | |
613 | * eSPI - Enhanced SPI | |
614 | */ | |
615 | #define CONFIG_FSL_ESPI | |
0b2e13d9 CL |
616 | #define CONFIG_SPI_FLASH_SST |
617 | #define CONFIG_CMD_SF | |
618 | #define CONFIG_SF_DEFAULT_SPEED 10000000 | |
619 | #define CONFIG_SF_DEFAULT_MODE 0 | |
620 | ||
621 | ||
622 | /* Qman/Bman */ | |
623 | #ifndef CONFIG_NOBQFMAN | |
624 | #define CONFIG_SYS_DPAA_QBMAN /* Support Q/Bman */ | |
625 | #define CONFIG_SYS_BMAN_NUM_PORTALS 50 | |
626 | #define CONFIG_SYS_BMAN_MEM_BASE 0xf4000000 | |
627 | #define CONFIG_SYS_BMAN_MEM_PHYS 0xff4000000ull | |
628 | #define CONFIG_SYS_BMAN_MEM_SIZE 0x02000000 | |
3fa66db4 JL |
629 | #define CONFIG_SYS_BMAN_SP_CENA_SIZE 0x4000 |
630 | #define CONFIG_SYS_BMAN_SP_CINH_SIZE 0x1000 | |
631 | #define CONFIG_SYS_BMAN_CENA_BASE CONFIG_SYS_BMAN_MEM_BASE | |
632 | #define CONFIG_SYS_BMAN_CENA_SIZE (CONFIG_SYS_BMAN_MEM_SIZE >> 1) | |
633 | #define CONFIG_SYS_BMAN_CINH_BASE (CONFIG_SYS_BMAN_MEM_BASE + \ | |
634 | CONFIG_SYS_BMAN_CENA_SIZE) | |
635 | #define CONFIG_SYS_BMAN_CINH_SIZE (CONFIG_SYS_BMAN_MEM_SIZE >> 1) | |
636 | #define CONFIG_SYS_BMAN_SWP_ISDR_REG 0xE08 | |
0b2e13d9 CL |
637 | #define CONFIG_SYS_QMAN_NUM_PORTALS 50 |
638 | #define CONFIG_SYS_QMAN_MEM_BASE 0xf6000000 | |
639 | #define CONFIG_SYS_QMAN_MEM_PHYS 0xff6000000ull | |
640 | #define CONFIG_SYS_QMAN_MEM_SIZE 0x02000000 | |
3fa66db4 JL |
641 | #define CONFIG_SYS_QMAN_SP_CENA_SIZE 0x4000 |
642 | #define CONFIG_SYS_QMAN_SP_CINH_SIZE 0x1000 | |
643 | #define CONFIG_SYS_QMAN_CENA_BASE CONFIG_SYS_QMAN_MEM_BASE | |
644 | #define CONFIG_SYS_QMAN_CENA_SIZE (CONFIG_SYS_QMAN_MEM_SIZE >> 1) | |
645 | #define CONFIG_SYS_QMAN_CINH_BASE (CONFIG_SYS_QMAN_MEM_BASE + \ | |
646 | CONFIG_SYS_QMAN_CENA_SIZE) | |
647 | #define CONFIG_SYS_QMAN_CINH_SIZE (CONFIG_SYS_QMAN_MEM_SIZE >> 1) | |
648 | #define CONFIG_SYS_QMAN_SWP_ISDR_REG 0xE08 | |
0b2e13d9 CL |
649 | |
650 | #define CONFIG_SYS_DPAA_FMAN | |
651 | #define CONFIG_SYS_DPAA_PME | |
652 | #define CONFIG_SYS_PMAN | |
653 | #define CONFIG_SYS_DPAA_DCE | |
654 | #define CONFIG_SYS_DPAA_RMAN | |
655 | #define CONFIG_SYS_INTERLAKEN | |
656 | ||
657 | /* Default address of microcode for the Linux Fman driver */ | |
658 | #if defined(CONFIG_SPIFLASH) | |
659 | /* | |
660 | * env is stored at 0x100000, sector size is 0x10000, ucode is stored after | |
661 | * env, so we got 0x110000. | |
662 | */ | |
663 | #define CONFIG_SYS_QE_FW_IN_SPIFLASH | |
664 | #define CONFIG_SYS_FMAN_FW_ADDR 0x110000 | |
665 | #elif defined(CONFIG_SDCARD) | |
666 | /* | |
667 | * PBL SD boot image should stored at 0x1000(8 blocks), the size of the image is | |
373762c3 CL |
668 | * about 1MB (2048 blocks), Env is stored after the image, and the env size is |
669 | * 0x2000 (16 blocks), 8 + 2048 + 16 = 2072, enlarge it to 2080. | |
0b2e13d9 CL |
670 | */ |
671 | #define CONFIG_SYS_QE_FMAN_FW_IN_MMC | |
373762c3 | 672 | #define CONFIG_SYS_FMAN_FW_ADDR (512 * 0x820) |
0b2e13d9 CL |
673 | #elif defined(CONFIG_NAND) |
674 | #define CONFIG_SYS_QE_FMAN_FW_IN_NAND | |
675 | #define CONFIG_SYS_FMAN_FW_ADDR (8 * CONFIG_SYS_NAND_BLOCK_SIZE) | |
676 | #else | |
677 | #define CONFIG_SYS_QE_FMAN_FW_IN_NOR | |
678 | #define CONFIG_SYS_FMAN_FW_ADDR 0xEFF00000 | |
679 | #endif | |
680 | #define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x10000 | |
681 | #define CONFIG_SYS_FDT_PAD (0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH) | |
682 | #endif /* CONFIG_NOBQFMAN */ | |
683 | ||
684 | #ifdef CONFIG_SYS_DPAA_FMAN | |
685 | #define CONFIG_FMAN_ENET | |
686 | #define CONFIG_PHYLIB_10G | |
687 | #define CONFIG_PHY_VITESSE | |
688 | #define CONFIG_PHY_CORTINA | |
a8efe79c | 689 | #define CONFIG_SYS_CORTINA_FW_IN_NOR |
0b2e13d9 CL |
690 | #define CONFIG_CORTINA_FW_ADDR 0xefe00000 |
691 | #define CONFIG_CORTINA_FW_LENGTH 0x40000 | |
692 | #define CONFIG_PHY_TERANETICS | |
693 | #define SGMII_PHY_ADDR1 0x0 | |
694 | #define SGMII_PHY_ADDR2 0x1 | |
695 | #define SGMII_PHY_ADDR3 0x2 | |
696 | #define SGMII_PHY_ADDR4 0x3 | |
697 | #define SGMII_PHY_ADDR5 0x4 | |
698 | #define SGMII_PHY_ADDR6 0x5 | |
699 | #define SGMII_PHY_ADDR7 0x6 | |
700 | #define SGMII_PHY_ADDR8 0x7 | |
701 | #define FM1_10GEC1_PHY_ADDR 0x10 | |
702 | #define FM1_10GEC2_PHY_ADDR 0x11 | |
703 | #define FM2_10GEC1_PHY_ADDR 0x12 | |
704 | #define FM2_10GEC2_PHY_ADDR 0x13 | |
705 | #define CORTINA_PHY_ADDR1 FM1_10GEC1_PHY_ADDR | |
706 | #define CORTINA_PHY_ADDR2 FM1_10GEC2_PHY_ADDR | |
707 | #define CORTINA_PHY_ADDR3 FM2_10GEC1_PHY_ADDR | |
708 | #define CORTINA_PHY_ADDR4 FM2_10GEC2_PHY_ADDR | |
709 | #endif | |
710 | ||
711 | ||
712 | /* SATA */ | |
713 | #ifdef CONFIG_FSL_SATA_V2 | |
714 | #define CONFIG_LIBATA | |
715 | #define CONFIG_FSL_SATA | |
716 | ||
717 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 | |
718 | #define CONFIG_SATA1 | |
719 | #define CONFIG_SYS_SATA1 CONFIG_SYS_MPC85xx_SATA1_ADDR | |
720 | #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA | |
721 | #define CONFIG_SATA2 | |
722 | #define CONFIG_SYS_SATA2 CONFIG_SYS_MPC85xx_SATA2_ADDR | |
723 | #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA | |
724 | ||
725 | #define CONFIG_LBA48 | |
726 | #define CONFIG_CMD_SATA | |
727 | #define CONFIG_DOS_PARTITION | |
728 | #define CONFIG_CMD_EXT2 | |
729 | #endif | |
730 | ||
731 | #ifdef CONFIG_FMAN_ENET | |
732 | #define CONFIG_MII /* MII PHY management */ | |
733 | #define CONFIG_ETHPRIME "FM1@DTSEC1" | |
734 | #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */ | |
735 | #endif | |
736 | ||
737 | /* | |
738 | * USB | |
739 | */ | |
740 | #define CONFIG_CMD_USB | |
741 | #define CONFIG_USB_STORAGE | |
742 | #define CONFIG_USB_EHCI | |
743 | #define CONFIG_USB_EHCI_FSL | |
744 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET | |
745 | #define CONFIG_CMD_EXT2 | |
746 | #define CONFIG_HAS_FSL_DR_USB | |
747 | ||
748 | #define CONFIG_MMC | |
749 | ||
750 | #ifdef CONFIG_MMC | |
751 | #define CONFIG_FSL_ESDHC | |
752 | #define CONFIG_SYS_FSL_ESDHC_ADDR CONFIG_SYS_MPC85xx_ESDHC_ADDR | |
753 | #define CONFIG_SYS_FSL_ESDHC_BROKEN_TIMEOUT | |
754 | #define CONFIG_CMD_MMC | |
755 | #define CONFIG_GENERIC_MMC | |
756 | #define CONFIG_CMD_EXT2 | |
757 | #define CONFIG_CMD_FAT | |
758 | #define CONFIG_DOS_PARTITION | |
929dfdc2 | 759 | #define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
0b2e13d9 CL |
760 | #endif |
761 | ||
737537ef RG |
762 | /* Hash command with SHA acceleration supported in hardware */ |
763 | #ifdef CONFIG_FSL_CAAM | |
764 | #define CONFIG_CMD_HASH | |
765 | #define CONFIG_SHA_HW_ACCEL | |
766 | #endif | |
767 | ||
0b2e13d9 CL |
768 | #define CONFIG_BOOTDELAY 10 /* -1 disables auto-boot */ |
769 | ||
770 | #define __USB_PHY_TYPE utmi | |
771 | ||
772 | /* | |
773 | * T4240 has 3 DDR controllers. Default to 3-way interleaving. It can be | |
774 | * 3way_1KB, 3way_4KB, 3way_8KB. T4160 has 2 DDR controllers. Default to 2-way | |
775 | * interleaving. It can be cacheline, page, bank, superbank. | |
776 | * See doc/README.fsl-ddr for details. | |
777 | */ | |
1a344456 | 778 | #ifdef CONFIG_PPC_T4240 |
0b2e13d9 | 779 | #define CTRL_INTLV_PREFERED 3way_4KB |
1a344456 CL |
780 | #else |
781 | #define CTRL_INTLV_PREFERED cacheline | |
782 | #endif | |
0b2e13d9 CL |
783 | |
784 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
785 | "hwconfig=fsl_ddr:" \ | |
786 | "ctlr_intlv=" __stringify(CTRL_INTLV_PREFERED) "," \ | |
787 | "bank_intlv=auto;" \ | |
788 | "usb1:dr_mode=host,phy_type=" __stringify(__USB_PHY_TYPE) "\0"\ | |
789 | "netdev=eth0\0" \ | |
790 | "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \ | |
791 | "ubootaddr=" __stringify(CONFIG_SYS_TEXT_BASE) "\0" \ | |
792 | "tftpflash=tftpboot $loadaddr $uboot && " \ | |
793 | "protect off $ubootaddr +$filesize && " \ | |
794 | "erase $ubootaddr +$filesize && " \ | |
795 | "cp.b $loadaddr $ubootaddr $filesize && " \ | |
796 | "protect on $ubootaddr +$filesize && " \ | |
797 | "cmp.b $loadaddr $ubootaddr $filesize\0" \ | |
798 | "consoledev=ttyS0\0" \ | |
799 | "ramdiskaddr=2000000\0" \ | |
800 | "ramdiskfile=t4240rdb/ramdisk.uboot\0" \ | |
801 | "fdtaddr=c00000\0" \ | |
802 | "fdtfile=t4240rdb/t4240rdb.dtb\0" \ | |
803 | "bdev=sda3\0" | |
804 | ||
805 | #define CONFIG_HVBOOT \ | |
806 | "setenv bootargs config-addr=0x60000000; " \ | |
807 | "bootm 0x01000000 - 0x00f00000" | |
808 | ||
809 | #define CONFIG_LINUX \ | |
810 | "setenv bootargs root=/dev/ram rw " \ | |
811 | "console=$consoledev,$baudrate $othbootargs;" \ | |
812 | "setenv ramdiskaddr 0x02000000;" \ | |
813 | "setenv fdtaddr 0x00c00000;" \ | |
814 | "setenv loadaddr 0x1000000;" \ | |
815 | "bootm $loadaddr $ramdiskaddr $fdtaddr" | |
816 | ||
817 | #define CONFIG_HDBOOT \ | |
818 | "setenv bootargs root=/dev/$bdev rw " \ | |
819 | "console=$consoledev,$baudrate $othbootargs;" \ | |
820 | "tftp $loadaddr $bootfile;" \ | |
821 | "tftp $fdtaddr $fdtfile;" \ | |
822 | "bootm $loadaddr - $fdtaddr" | |
823 | ||
824 | #define CONFIG_NFSBOOTCOMMAND \ | |
825 | "setenv bootargs root=/dev/nfs rw " \ | |
826 | "nfsroot=$serverip:$rootpath " \ | |
827 | "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \ | |
828 | "console=$consoledev,$baudrate $othbootargs;" \ | |
829 | "tftp $loadaddr $bootfile;" \ | |
830 | "tftp $fdtaddr $fdtfile;" \ | |
831 | "bootm $loadaddr - $fdtaddr" | |
832 | ||
833 | #define CONFIG_RAMBOOTCOMMAND \ | |
834 | "setenv bootargs root=/dev/ram rw " \ | |
835 | "console=$consoledev,$baudrate $othbootargs;" \ | |
836 | "tftp $ramdiskaddr $ramdiskfile;" \ | |
837 | "tftp $loadaddr $bootfile;" \ | |
838 | "tftp $fdtaddr $fdtfile;" \ | |
839 | "bootm $loadaddr $ramdiskaddr $fdtaddr" | |
840 | ||
841 | #define CONFIG_BOOTCOMMAND CONFIG_LINUX | |
842 | ||
843 | #include <asm/fsl_secure_boot.h> | |
844 | ||
845 | #ifdef CONFIG_SECURE_BOOT | |
846 | /* Secure Boot target was not getting build for T4240 because of | |
847 | * increased binary size. So the size is being reduced by removing USB | |
848 | * which is anyways not used in Secure Environment. | |
849 | */ | |
850 | #undef CONFIG_CMD_USB | |
789490b6 | 851 | #define CONFIG_CMD_BLOB |
0b2e13d9 CL |
852 | #endif |
853 | ||
854 | #endif /* __CONFIG_H */ |