Merge branch '2022-07-08-Kconfig-migrations' into next
[platform/kernel/u-boot.git] / include / configs / T104xRDB.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2014 Freescale Semiconductor, Inc.
4  * Copyright 2020-2021 NXP
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #include <linux/stringify.h>
11
12 /*
13  * T104x RDB board configuration file
14  */
15 #include <asm/config_mpc85xx.h>
16
17 #ifdef CONFIG_RAMBOOT_PBL
18 #define RESET_VECTOR_OFFSET             0x27FFC
19 #define BOOT_PAGE_OFFSET                0x27000
20
21 #ifdef CONFIG_MTD_RAW_NAND
22 #ifdef CONFIG_NXP_ESBC
23 #define CONFIG_U_BOOT_HDR_SIZE          (16 << 10)
24 /*
25  * HDR would be appended at end of image and copied to DDR along
26  * with U-Boot image.
27  */
28 #define CONFIG_SYS_NAND_U_BOOT_SIZE     ((768 << 10) + \
29                                          CONFIG_U_BOOT_HDR_SIZE)
30 #else
31 #define CONFIG_SYS_NAND_U_BOOT_SIZE     (768 << 10)
32 #endif
33 #define CONFIG_SYS_NAND_U_BOOT_DST      0x30000000
34 #define CONFIG_SYS_NAND_U_BOOT_START    0x30000000
35 #endif
36
37 #ifdef CONFIG_SPIFLASH
38 #define CONFIG_RESET_VECTOR_ADDRESS             0x30000FFC
39 #define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE        (768 << 10)
40 #define CONFIG_SYS_SPI_FLASH_U_BOOT_DST         (0x30000000)
41 #define CONFIG_SYS_SPI_FLASH_U_BOOT_START       (0x30000000)
42 #define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS        (256 << 10)
43 #endif
44
45 #ifdef CONFIG_SDCARD
46 #define CONFIG_RESET_VECTOR_ADDRESS             0x30000FFC
47 #define CONFIG_SYS_MMC_U_BOOT_SIZE      (768 << 10)
48 #define CONFIG_SYS_MMC_U_BOOT_DST       (0x30000000)
49 #define CONFIG_SYS_MMC_U_BOOT_START     (0x30000000)
50 #define CONFIG_SYS_MMC_U_BOOT_OFFS      (260 << 10)
51 #endif
52
53 #endif
54
55 /* High Level Configuration Options */
56
57 #ifndef CONFIG_RESET_VECTOR_ADDRESS
58 #define CONFIG_RESET_VECTOR_ADDRESS     0xeffffffc
59 #endif
60
61 #define CONFIG_SYS_NUM_CPC              CONFIG_SYS_NUM_DDR_CTLRS
62
63 /*
64  * These can be toggled for performance analysis, otherwise use default.
65  */
66 #define CONFIG_SYS_INIT_L2CSR0          L2CSR0_L2E
67 #ifdef CONFIG_DDR_ECC
68 #define CONFIG_MEM_INIT_VALUE           0xdeadbeef
69 #endif
70
71 /*
72  *  Config the L3 Cache as L3 SRAM
73  */
74 #define CONFIG_SYS_INIT_L3_ADDR         0xFFFC0000
75 /*
76  * For Secure Boot CONFIG_SYS_INIT_L3_ADDR will be redefined and hence
77  * Physical address (CONFIG_SYS_INIT_L3_ADDR) and virtual address
78  * (CONFIG_SYS_INIT_L3_VADDR) will be different.
79  */
80 #define CONFIG_SYS_INIT_L3_VADDR        0xFFFC0000
81 #define CONFIG_SYS_L3_SIZE              256 << 10
82 #define SPL_ENV_ADDR                    (CONFIG_SPL_GD_ADDR + 4 * 1024)
83
84 #define CONFIG_SYS_DCSRBAR              0xf0000000
85 #define CONFIG_SYS_DCSRBAR_PHYS         0xf00000000ull
86
87 /*
88  * DDR Setup
89  */
90 #define CONFIG_VERY_BIG_RAM
91 #define CONFIG_SYS_DDR_SDRAM_BASE       0x00000000
92 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
93
94 #define SPD_EEPROM_ADDRESS      0x51
95
96 #define CONFIG_SYS_SDRAM_SIZE   4096    /* for fixed parameter use */
97
98 /*
99  * IFC Definitions
100  */
101 #define CONFIG_SYS_FLASH_BASE   0xe8000000
102 #define CONFIG_SYS_FLASH_BASE_PHYS      (0xf00000000ull | CONFIG_SYS_FLASH_BASE)
103
104 #define CONFIG_SYS_NOR_CSPR_EXT (0xf)
105 #define CONFIG_SYS_NOR_CSPR     (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE) | \
106                                 CSPR_PORT_SIZE_16 | \
107                                 CSPR_MSEL_NOR | \
108                                 CSPR_V)
109 #define CONFIG_SYS_NOR_AMASK    IFC_AMASK(128*1024*1024)
110
111 /*
112  * TDM Definition
113  */
114 #define T1040_TDM_QUIRK_CCSR_BASE       0xfe000000
115
116 /* NOR Flash Timing Params */
117 #define CONFIG_SYS_NOR_CSOR     CSOR_NAND_TRHZ_80
118 #define CONFIG_SYS_NOR_FTIM0    (FTIM0_NOR_TACSE(0x4) | \
119                                 FTIM0_NOR_TEADC(0x5) | \
120                                 FTIM0_NOR_TEAHC(0x5))
121 #define CONFIG_SYS_NOR_FTIM1    (FTIM1_NOR_TACO(0x35) | \
122                                 FTIM1_NOR_TRAD_NOR(0x1A) |\
123                                 FTIM1_NOR_TSEQRAD_NOR(0x13))
124 #define CONFIG_SYS_NOR_FTIM2    (FTIM2_NOR_TCS(0x4) | \
125                                 FTIM2_NOR_TCH(0x4) | \
126                                 FTIM2_NOR_TWPH(0x0E) | \
127                                 FTIM2_NOR_TWP(0x1c))
128 #define CONFIG_SYS_NOR_FTIM3    0x0
129
130 #define CONFIG_SYS_FLASH_QUIET_TEST
131 #define CONFIG_FLASH_SHOW_PROGRESS      45 /* count down from 45/5: 9..1 */
132
133 #define CONFIG_SYS_MAX_FLASH_SECT       1024    /* sectors per device */
134 #define CONFIG_SYS_FLASH_ERASE_TOUT     60000   /* Flash Erase Timeout (ms) */
135 #define CONFIG_SYS_FLASH_WRITE_TOUT     500     /* Flash Write Timeout (ms) */
136
137 #define CONFIG_SYS_FLASH_EMPTY_INFO
138 #define CONFIG_SYS_FLASH_BANKS_LIST     {CONFIG_SYS_FLASH_BASE_PHYS}
139
140 /* CPLD on IFC */
141 #define CPLD_LBMAP_MASK                 0x3F
142 #define CPLD_BANK_SEL_MASK              0x07
143 #define CPLD_BANK_OVERRIDE              0x40
144 #define CPLD_LBMAP_ALTBANK              0x44 /* BANK OR | BANK 4 */
145 #define CPLD_LBMAP_DFLTBANK             0x40 /* BANK OR | BANK0 */
146 #define CPLD_LBMAP_RESET                0xFF
147 #define CPLD_LBMAP_SHIFT                0x03
148
149 #if defined(CONFIG_TARGET_T1042RDB_PI)
150 #define CPLD_DIU_SEL_DFP                0x80
151 #elif defined(CONFIG_TARGET_T1042D4RDB)
152 #define CPLD_DIU_SEL_DFP                0xc0
153 #endif
154
155 #if defined(CONFIG_TARGET_T1040D4RDB)
156 #define CPLD_INT_MASK_ALL               0xFF
157 #define CPLD_INT_MASK_THERM             0x80
158 #define CPLD_INT_MASK_DVI_DFP           0x40
159 #define CPLD_INT_MASK_QSGMII1           0x20
160 #define CPLD_INT_MASK_QSGMII2           0x10
161 #define CPLD_INT_MASK_SGMI1             0x08
162 #define CPLD_INT_MASK_SGMI2             0x04
163 #define CPLD_INT_MASK_TDMR1             0x02
164 #define CPLD_INT_MASK_TDMR2             0x01
165 #endif
166
167 #define CONFIG_SYS_CPLD_BASE    0xffdf0000
168 #define CONFIG_SYS_CPLD_BASE_PHYS       (0xf00000000ull | CONFIG_SYS_CPLD_BASE)
169 #define CONFIG_SYS_CSPR2_EXT    (0xf)
170 #define CONFIG_SYS_CSPR2        (CSPR_PHYS_ADDR(CONFIG_SYS_CPLD_BASE_PHYS) \
171                                 | CSPR_PORT_SIZE_8 \
172                                 | CSPR_MSEL_GPCM \
173                                 | CSPR_V)
174 #define CONFIG_SYS_AMASK2       IFC_AMASK(64*1024)
175 #define CONFIG_SYS_CSOR2        0x0
176 /* CPLD Timing parameters for IFC CS2 */
177 #define CONFIG_SYS_CS2_FTIM0            (FTIM0_GPCM_TACSE(0x0e) | \
178                                         FTIM0_GPCM_TEADC(0x0e) | \
179                                         FTIM0_GPCM_TEAHC(0x0e))
180 #define CONFIG_SYS_CS2_FTIM1            (FTIM1_GPCM_TACO(0x0e) | \
181                                         FTIM1_GPCM_TRAD(0x1f))
182 #define CONFIG_SYS_CS2_FTIM2            (FTIM2_GPCM_TCS(0x0e) | \
183                                         FTIM2_GPCM_TCH(0x8) | \
184                                         FTIM2_GPCM_TWP(0x1f))
185 #define CONFIG_SYS_CS2_FTIM3            0x0
186
187 /* NAND Flash on IFC */
188 #define CONFIG_SYS_NAND_BASE            0xff800000
189 #define CONFIG_SYS_NAND_BASE_PHYS       (0xf00000000ull | CONFIG_SYS_NAND_BASE)
190
191 #define CONFIG_SYS_NAND_CSPR_EXT        (0xf)
192 #define CONFIG_SYS_NAND_CSPR    (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \
193                                 | CSPR_PORT_SIZE_8 /* Port Size = 8 bit */ \
194                                 | CSPR_MSEL_NAND        /* MSEL = NAND */ \
195                                 | CSPR_V)
196 #define CONFIG_SYS_NAND_AMASK   IFC_AMASK(64*1024)
197
198 #define CONFIG_SYS_NAND_CSOR    (CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
199                                 | CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
200                                 | CSOR_NAND_ECC_MODE_4  /* 4-bit ECC */ \
201                                 | CSOR_NAND_RAL_3       /* RAL = 3Byes */ \
202                                 | CSOR_NAND_PGS_4K      /* Page Size = 4K */ \
203                                 | CSOR_NAND_SPRZ_224/* Spare size = 224 */ \
204                                 | CSOR_NAND_PB(64))     /*Pages Per Block = 64*/
205
206 /* ONFI NAND Flash mode0 Timing Params */
207 #define CONFIG_SYS_NAND_FTIM0           (FTIM0_NAND_TCCST(0x07) | \
208                                         FTIM0_NAND_TWP(0x18)   | \
209                                         FTIM0_NAND_TWCHT(0x07) | \
210                                         FTIM0_NAND_TWH(0x0a))
211 #define CONFIG_SYS_NAND_FTIM1           (FTIM1_NAND_TADLE(0x32) | \
212                                         FTIM1_NAND_TWBE(0x39)  | \
213                                         FTIM1_NAND_TRR(0x0e)   | \
214                                         FTIM1_NAND_TRP(0x18))
215 #define CONFIG_SYS_NAND_FTIM2           (FTIM2_NAND_TRAD(0x0f) | \
216                                         FTIM2_NAND_TREH(0x0a) | \
217                                         FTIM2_NAND_TWHRE(0x1e))
218 #define CONFIG_SYS_NAND_FTIM3           0x0
219
220 #define CONFIG_SYS_NAND_DDR_LAW         11
221 #define CONFIG_SYS_NAND_BASE_LIST       { CONFIG_SYS_NAND_BASE }
222 #define CONFIG_SYS_MAX_NAND_DEVICE      1
223
224 #if defined(CONFIG_MTD_RAW_NAND)
225 #define CONFIG_SYS_CSPR0_EXT            CONFIG_SYS_NAND_CSPR_EXT
226 #define CONFIG_SYS_CSPR0                CONFIG_SYS_NAND_CSPR
227 #define CONFIG_SYS_AMASK0               CONFIG_SYS_NAND_AMASK
228 #define CONFIG_SYS_CSOR0                CONFIG_SYS_NAND_CSOR
229 #define CONFIG_SYS_CS0_FTIM0            CONFIG_SYS_NAND_FTIM0
230 #define CONFIG_SYS_CS0_FTIM1            CONFIG_SYS_NAND_FTIM1
231 #define CONFIG_SYS_CS0_FTIM2            CONFIG_SYS_NAND_FTIM2
232 #define CONFIG_SYS_CS0_FTIM3            CONFIG_SYS_NAND_FTIM3
233 #define CONFIG_SYS_CSPR1_EXT            CONFIG_SYS_NOR_CSPR_EXT
234 #define CONFIG_SYS_CSPR1                CONFIG_SYS_NOR_CSPR
235 #define CONFIG_SYS_AMASK1               CONFIG_SYS_NOR_AMASK
236 #define CONFIG_SYS_CSOR1                CONFIG_SYS_NOR_CSOR
237 #define CONFIG_SYS_CS1_FTIM0            CONFIG_SYS_NOR_FTIM0
238 #define CONFIG_SYS_CS1_FTIM1            CONFIG_SYS_NOR_FTIM1
239 #define CONFIG_SYS_CS1_FTIM2            CONFIG_SYS_NOR_FTIM2
240 #define CONFIG_SYS_CS1_FTIM3            CONFIG_SYS_NOR_FTIM3
241 #else
242 #define CONFIG_SYS_CSPR0_EXT            CONFIG_SYS_NOR_CSPR_EXT
243 #define CONFIG_SYS_CSPR0                CONFIG_SYS_NOR_CSPR
244 #define CONFIG_SYS_AMASK0               CONFIG_SYS_NOR_AMASK
245 #define CONFIG_SYS_CSOR0                CONFIG_SYS_NOR_CSOR
246 #define CONFIG_SYS_CS0_FTIM0            CONFIG_SYS_NOR_FTIM0
247 #define CONFIG_SYS_CS0_FTIM1            CONFIG_SYS_NOR_FTIM1
248 #define CONFIG_SYS_CS0_FTIM2            CONFIG_SYS_NOR_FTIM2
249 #define CONFIG_SYS_CS0_FTIM3            CONFIG_SYS_NOR_FTIM3
250 #define CONFIG_SYS_CSPR1_EXT            CONFIG_SYS_NAND_CSPR_EXT
251 #define CONFIG_SYS_CSPR1                CONFIG_SYS_NAND_CSPR
252 #define CONFIG_SYS_AMASK1               CONFIG_SYS_NAND_AMASK
253 #define CONFIG_SYS_CSOR1                CONFIG_SYS_NAND_CSOR
254 #define CONFIG_SYS_CS1_FTIM0            CONFIG_SYS_NAND_FTIM0
255 #define CONFIG_SYS_CS1_FTIM1            CONFIG_SYS_NAND_FTIM1
256 #define CONFIG_SYS_CS1_FTIM2            CONFIG_SYS_NAND_FTIM2
257 #define CONFIG_SYS_CS1_FTIM3            CONFIG_SYS_NAND_FTIM3
258 #endif
259
260 #define CONFIG_HWCONFIG
261
262 /* define to use L1 as initial stack */
263 #define CONFIG_L1_INIT_RAM
264 #define CONFIG_SYS_INIT_RAM_LOCK
265 #define CONFIG_SYS_INIT_RAM_ADDR        0xfdd00000      /* Initial L1 address */
266 #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH      0xf
267 #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW       0xfe03c000
268 /* The assembler doesn't like typecast */
269 #define CONFIG_SYS_INIT_RAM_ADDR_PHYS \
270         ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \
271           CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW)
272 #define CONFIG_SYS_INIT_RAM_SIZE                0x00004000
273
274 #define CONFIG_SYS_INIT_SP_OFFSET       (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
275
276 #define CONFIG_SYS_MONITOR_LEN          (768 * 1024)
277
278 /* Serial Port - controlled on board with jumper J8
279  * open - index 2
280  * shorted - index 1
281  */
282 #define CONFIG_SYS_NS16550_SERIAL
283 #define CONFIG_SYS_NS16550_REG_SIZE     1
284 #define CONFIG_SYS_NS16550_CLK          (get_bus_freq(0)/2)
285
286 #define CONFIG_SYS_BAUDRATE_TABLE       \
287         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
288
289 #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x11C500)
290 #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x11C600)
291 #define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_CCSRBAR+0x11D500)
292 #define CONFIG_SYS_NS16550_COM4 (CONFIG_SYS_CCSRBAR+0x11D600)
293
294 /* I2C bus multiplexer */
295 #define I2C_MUX_PCA_ADDR                0x70
296 #define I2C_MUX_CH_DEFAULT      0x8
297
298 #if defined(CONFIG_TARGET_T1042RDB_PI)  || \
299         defined(CONFIG_TARGET_T1040D4RDB)       || \
300         defined(CONFIG_TARGET_T1042D4RDB)
301 /* LDI/DVI Encoder for display */
302 #define CONFIG_SYS_I2C_LDI_ADDR         0x38
303 #define CONFIG_SYS_I2C_DVI_ADDR         0x75
304 #define CONFIG_SYS_I2C_DVI_BUS_NUM      0
305
306 /*
307  * RTC configuration
308  */
309 #define RTC
310 #define CONFIG_RTC_DS1337               1
311 #define CONFIG_SYS_I2C_RTC_ADDR         0x68
312
313 /*DVI encoder*/
314 #define CONFIG_HDMI_ENCODER_I2C_ADDR  0x75
315 #endif
316
317 /*
318  * eSPI - Enhanced SPI
319  */
320
321 /*
322  * General PCI
323  * Memory space is mapped 1-1, but I/O space must start from 0.
324  */
325
326 #ifdef CONFIG_PCI
327 /* controller 1, direct to uli, tgtid 3, Base address 20000 */
328 #ifdef CONFIG_PCIE1
329 #define CONFIG_SYS_PCIE1_MEM_VIRT       0x80000000
330 #define CONFIG_SYS_PCIE1_MEM_PHYS       0xc00000000ull
331 #define CONFIG_SYS_PCIE1_IO_VIRT        0xf8000000
332 #define CONFIG_SYS_PCIE1_IO_PHYS        0xff8000000ull
333 #endif
334
335 /* controller 2, Slot 2, tgtid 2, Base address 201000 */
336 #ifdef CONFIG_PCIE2
337 #define CONFIG_SYS_PCIE2_MEM_VIRT       0x90000000
338 #define CONFIG_SYS_PCIE2_MEM_PHYS       0xc10000000ull
339 #define CONFIG_SYS_PCIE2_IO_VIRT        0xf8010000
340 #define CONFIG_SYS_PCIE2_IO_PHYS        0xff8010000ull
341 #endif
342
343 /* controller 3, Slot 1, tgtid 1, Base address 202000 */
344 #ifdef CONFIG_PCIE3
345 #define CONFIG_SYS_PCIE3_MEM_VIRT       0xa0000000
346 #define CONFIG_SYS_PCIE3_MEM_PHYS       0xc20000000ull
347 #define CONFIG_SYS_PCIE3_IO_VIRT        0xf8020000
348 #define CONFIG_SYS_PCIE3_IO_PHYS        0xff8020000ull
349 #endif
350
351 /* controller 4, Base address 203000 */
352 #ifdef CONFIG_PCIE4
353 #define CONFIG_SYS_PCIE4_MEM_VIRT       0xb0000000
354 #define CONFIG_SYS_PCIE4_MEM_PHYS       0xc30000000ull
355 #define CONFIG_SYS_PCIE4_IO_VIRT        0xf8030000
356 #define CONFIG_SYS_PCIE4_IO_PHYS        0xff8030000ull
357 #endif
358 #endif  /* CONFIG_PCI */
359
360 /*
361 * USB
362 */
363
364 #ifdef CONFIG_MMC
365 #define CONFIG_SYS_FSL_ESDHC_ADDR       CONFIG_SYS_MPC85xx_ESDHC_ADDR
366 #endif
367
368 /* Qman/Bman */
369 #ifndef CONFIG_NOBQFMAN
370 #define CONFIG_SYS_BMAN_NUM_PORTALS     10
371 #define CONFIG_SYS_BMAN_MEM_BASE        0xf4000000
372 #define CONFIG_SYS_BMAN_MEM_PHYS        0xff4000000ull
373 #define CONFIG_SYS_BMAN_MEM_SIZE        0x02000000
374 #define CONFIG_SYS_BMAN_SP_CENA_SIZE    0x4000
375 #define CONFIG_SYS_BMAN_SP_CINH_SIZE    0x1000
376 #define CONFIG_SYS_BMAN_CENA_BASE       CONFIG_SYS_BMAN_MEM_BASE
377 #define CONFIG_SYS_BMAN_CENA_SIZE       (CONFIG_SYS_BMAN_MEM_SIZE >> 1)
378 #define CONFIG_SYS_BMAN_CINH_BASE       (CONFIG_SYS_BMAN_MEM_BASE + \
379                                         CONFIG_SYS_BMAN_CENA_SIZE)
380 #define CONFIG_SYS_BMAN_CINH_SIZE       (CONFIG_SYS_BMAN_MEM_SIZE >> 1)
381 #define CONFIG_SYS_BMAN_SWP_ISDR_REG    0xE08
382 #define CONFIG_SYS_QMAN_NUM_PORTALS     10
383 #define CONFIG_SYS_QMAN_MEM_BASE        0xf6000000
384 #define CONFIG_SYS_QMAN_MEM_PHYS        0xff6000000ull
385 #define CONFIG_SYS_QMAN_MEM_SIZE        0x02000000
386 #define CONFIG_SYS_QMAN_SP_CENA_SIZE    0x4000
387 #define CONFIG_SYS_QMAN_SP_CINH_SIZE    0x1000
388 #define CONFIG_SYS_QMAN_CENA_BASE       CONFIG_SYS_QMAN_MEM_BASE
389 #define CONFIG_SYS_QMAN_CENA_SIZE       (CONFIG_SYS_QMAN_MEM_SIZE >> 1)
390 #define CONFIG_SYS_QMAN_CINH_BASE       (CONFIG_SYS_QMAN_MEM_BASE + \
391                                         CONFIG_SYS_QMAN_CENA_SIZE)
392 #define CONFIG_SYS_QMAN_CINH_SIZE       (CONFIG_SYS_QMAN_MEM_SIZE >> 1)
393 #define CONFIG_SYS_QMAN_SWP_ISDR_REG    0xE08
394
395 #define CONFIG_SYS_DPAA_FMAN
396 #define CONFIG_SYS_DPAA_PME
397
398 #define CONFIG_SYS_FDT_PAD              (0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH)
399 #endif /* CONFIG_NOBQFMAN */
400
401 #ifdef CONFIG_FMAN_ENET
402 #if defined(CONFIG_TARGET_T1040RDB) || defined(CONFIG_TARGET_T1042RDB)
403 #define CONFIG_SYS_SGMII1_PHY_ADDR             0x03
404 #elif defined(CONFIG_TARGET_T1040D4RDB)
405 #define CONFIG_SYS_SGMII1_PHY_ADDR             0x01
406 #elif defined(CONFIG_TARGET_T1042D4RDB)
407 #define CONFIG_SYS_SGMII1_PHY_ADDR             0x02
408 #define CONFIG_SYS_SGMII2_PHY_ADDR             0x03
409 #define CONFIG_SYS_SGMII3_PHY_ADDR             0x01
410 #endif
411
412 #if defined(CONFIG_TARGET_T1040D4RDB) || defined(CONFIG_TARGET_T1042D4RDB)
413 #define CONFIG_SYS_RGMII1_PHY_ADDR             0x04
414 #define CONFIG_SYS_RGMII2_PHY_ADDR             0x05
415 #else
416 #define CONFIG_SYS_RGMII1_PHY_ADDR             0x01
417 #define CONFIG_SYS_RGMII2_PHY_ADDR             0x02
418 #endif
419
420 /* Enable VSC9953 L2 Switch driver on T1040 SoC */
421 #if defined(CONFIG_TARGET_T1040RDB) || defined(CONFIG_TARGET_T1040D4RDB)
422 #define CONFIG_VSC9953
423 #ifdef CONFIG_TARGET_T1040RDB
424 #define CONFIG_SYS_FM1_QSGMII11_PHY_ADDR        0x04
425 #define CONFIG_SYS_FM1_QSGMII21_PHY_ADDR        0x08
426 #else
427 #define CONFIG_SYS_FM1_QSGMII11_PHY_ADDR        0x08
428 #define CONFIG_SYS_FM1_QSGMII21_PHY_ADDR        0x0c
429 #endif
430 #endif
431 #endif
432
433 /*
434  * Environment
435  */
436 #define CONFIG_LOADS_ECHO               /* echo on for serial download */
437 #define CONFIG_SYS_LOADS_BAUD_CHANGE    /* allow baudrate change */
438
439 /*
440  * Miscellaneous configurable options
441  */
442
443 /*
444  * For booting Linux, the board info and command line data
445  * have to be in the first 64 MB of memory, since this is
446  * the maximum mapped by the Linux kernel during initialization.
447  */
448 #define CONFIG_SYS_BOOTMAPSZ    (64 << 20)      /* Initial map for Linux*/
449
450 /*
451  * Dynamic MTD Partition support with mtdparts
452  */
453
454 /*
455  * Environment Configuration
456  */
457 #define CONFIG_ROOTPATH         "/opt/nfsroot"
458 #define CONFIG_UBOOTPATH        "u-boot.bin"    /* U-Boot image on TFTP server*/
459
460 #define __USB_PHY_TYPE  utmi
461 #define RAMDISKFILE     "t104xrdb/ramdisk.uboot"
462
463 #ifdef CONFIG_TARGET_T1040RDB
464 #define FDTFILE         "t1040rdb/t1040rdb.dtb"
465 #elif defined(CONFIG_TARGET_T1042RDB_PI)
466 #define FDTFILE         "t1042rdb_pi/t1042rdb_pi.dtb"
467 #elif defined(CONFIG_TARGET_T1042RDB)
468 #define FDTFILE         "t1042rdb/t1042rdb.dtb"
469 #elif defined(CONFIG_TARGET_T1040D4RDB)
470 #define FDTFILE         "t1042rdb/t1040d4rdb.dtb"
471 #elif defined(CONFIG_TARGET_T1042D4RDB)
472 #define FDTFILE         "t1042rdb/t1042d4rdb.dtb"
473 #endif
474
475 #define CONFIG_EXTRA_ENV_SETTINGS                               \
476         "hwconfig=fsl_ddr:bank_intlv=cs0_cs1;"                  \
477         "usb1:dr_mode=host,phy_type=" __stringify(__USB_PHY_TYPE) ";"\
478         "usb2:dr_mode=host,phy_type=" __stringify(__USB_PHY_TYPE) "\0"\
479         "netdev=eth0\0"                                         \
480         "uboot=" __stringify(CONFIG_UBOOTPATH) "\0"             \
481         "ubootaddr=" __stringify(CONFIG_SYS_TEXT_BASE) "\0"     \
482         "tftpflash=tftpboot $loadaddr $uboot && "               \
483         "protect off $ubootaddr +$filesize && "                 \
484         "erase $ubootaddr +$filesize && "                       \
485         "cp.b $loadaddr $ubootaddr $filesize && "               \
486         "protect on $ubootaddr +$filesize && "                  \
487         "cmp.b $loadaddr $ubootaddr $filesize\0"                \
488         "consoledev=ttyS0\0"                                    \
489         "ramdiskaddr=2000000\0"                                 \
490         "ramdiskfile=" __stringify(RAMDISKFILE) "\0"            \
491         "fdtaddr=1e00000\0"                                     \
492         "fdtfile=" __stringify(FDTFILE) "\0"                    \
493         "bdev=sda3\0"
494
495 #include <asm/fsl_secure_boot.h>
496
497 #endif  /* __CONFIG_H */