Convert CONFIG_HOSTNAME et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / T102xRDB.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2014 Freescale Semiconductor, Inc.
4  * Copyright 2020-2021 NXP
5  */
6
7 /*
8  * T1024/T1023 RDB board configuration file
9  */
10
11 #ifndef __T1024RDB_H
12 #define __T1024RDB_H
13
14 #include <linux/stringify.h>
15
16 /* High Level Configuration Options */
17
18 #define CFG_SYS_NUM_CPC         CONFIG_SYS_NUM_DDR_CTLRS
19
20 #ifdef CONFIG_RAMBOOT_PBL
21 #define RESET_VECTOR_OFFSET             0x27FFC
22 #define BOOT_PAGE_OFFSET                0x27000
23
24 #ifdef CONFIG_MTD_RAW_NAND
25 #define CFG_SYS_NAND_U_BOOT_SIZE        (768 << 10)
26 #define CFG_SYS_NAND_U_BOOT_DST 0x30000000
27 #define CFG_SYS_NAND_U_BOOT_START       0x30000000
28 #endif
29
30 #ifdef CONFIG_SPIFLASH
31 #define CONFIG_RESET_VECTOR_ADDRESS             0x30000FFC
32 #define CFG_SYS_SPI_FLASH_U_BOOT_SIZE   (768 << 10)
33 #define CFG_SYS_SPI_FLASH_U_BOOT_DST            (0x30000000)
34 #define CFG_SYS_SPI_FLASH_U_BOOT_START  (0x30000000)
35 #define CFG_SYS_SPI_FLASH_U_BOOT_OFFS   (256 << 10)
36 #endif
37
38 #ifdef CONFIG_SDCARD
39 #define CONFIG_RESET_VECTOR_ADDRESS     0x30000FFC
40 #define CFG_SYS_MMC_U_BOOT_SIZE (768 << 10)
41 #define CFG_SYS_MMC_U_BOOT_DST  (0x30000000)
42 #define CFG_SYS_MMC_U_BOOT_START        (0x30000000)
43 #define CFG_SYS_MMC_U_BOOT_OFFS (260 << 10)
44 #endif
45
46 #endif /* CONFIG_RAMBOOT_PBL */
47
48 #ifndef CONFIG_RESET_VECTOR_ADDRESS
49 #define CONFIG_RESET_VECTOR_ADDRESS     0xeffffffc
50 #endif
51
52 /*
53  * for slave u-boot IMAGE instored in master memory space,
54  * PHYS must be aligned based on the SIZE
55  */
56 #define CFG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1 0xfff00000ull
57 #define CFG_SRIO_PCIE_BOOT_IMAGE_SIZE     0x100000 /* 1M */
58 #ifdef CONFIG_PHYS_64BIT
59 #define CFG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS 0xfef200000ull
60 #define CFG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2 0x3fff00000ull
61 #else
62 #define CFG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS 0xef200000
63 #define CFG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2 0xfff00000
64 #endif
65 /*
66  * for slave UCODE and ENV instored in master memory space,
67  * PHYS must be aligned based on the SIZE
68  */
69 #ifdef CONFIG_PHYS_64BIT
70 #define CFG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS 0xfef100000ull
71 #define CFG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS     0x3ffe00000ull
72 #else
73 #define CFG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS 0xef100000
74 #define CFG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS  0xffe00000
75 #endif
76 #define CFG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE       0x40000 /* 256K */
77 /* slave core release by master*/
78 #define CFG_SRIO_PCIE_BOOT_BRR_OFFSET   0xe00e4
79 #define CFG_SRIO_PCIE_BOOT_RELEASE_MASK 0x00000001 /* release core 0 */
80
81 /* PCIe Boot - Slave */
82 #ifdef CONFIG_SRIO_PCIE_BOOT_SLAVE
83 #define CFG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR 0xFFE00000
84 #define CFG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR_PHYS \
85                 (0x300000000ull | CFG_SYS_SRIO_PCIE_BOOT_UCODE_ENV_ADDR)
86 /* Set 1M boot space for PCIe boot */
87 #define CFG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR (CONFIG_TEXT_BASE & 0xfff00000)
88 #define CFG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR_PHYS  \
89                 (0x300000000ull | CFG_SYS_SRIO_PCIE_BOOT_SLAVE_ADDR)
90 #define CONFIG_RESET_VECTOR_ADDRESS 0xfffffffc
91 #endif
92
93 /*
94  * These can be toggled for performance analysis, otherwise use default.
95  */
96 #define CFG_SYS_INIT_L2CSR0             L2CSR0_L2E
97 #ifdef CONFIG_DDR_ECC
98 #define CONFIG_MEM_INIT_VALUE           0xdeadbeef
99 #endif
100
101 /*
102  *  Config the L3 Cache as L3 SRAM
103  */
104 #define CFG_SYS_INIT_L3_ADDR            0xFFFC0000
105 #define SPL_ENV_ADDR                    (CONFIG_SPL_GD_ADDR + 4 * 1024)
106
107 #ifdef CONFIG_PHYS_64BIT
108 #define CFG_SYS_DCSRBAR         0xf0000000
109 #define CFG_SYS_DCSRBAR_PHYS            0xf00000000ull
110 #endif
111
112 /*
113  * DDR Setup
114  */
115 #define CONFIG_VERY_BIG_RAM
116 #define CFG_SYS_DDR_SDRAM_BASE  0x00000000
117 #define CFG_SYS_SDRAM_BASE              CFG_SYS_DDR_SDRAM_BASE
118 #if defined(CONFIG_TARGET_T1024RDB)
119 #define SPD_EEPROM_ADDRESS      0x51
120 #define CFG_SYS_SDRAM_SIZE      4096    /* for fixed parameter use */
121 #elif defined(CONFIG_TARGET_T1023RDB)
122 #define CFG_SYS_SDRAM_SIZE   2048
123 #endif
124
125 /*
126  * IFC Definitions
127  */
128 #define CFG_SYS_FLASH_BASE      0xe8000000
129 #ifdef CONFIG_PHYS_64BIT
130 #define CFG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CFG_SYS_FLASH_BASE)
131 #else
132 #define CFG_SYS_FLASH_BASE_PHYS CFG_SYS_FLASH_BASE
133 #endif
134
135 #define CFG_SYS_NOR0_CSPR_EXT   (0xf)
136 #define CFG_SYS_NOR0_CSPR       (CSPR_PHYS_ADDR(CFG_SYS_FLASH_BASE_PHYS) | \
137                                 CSPR_PORT_SIZE_16 | \
138                                 CSPR_MSEL_NOR | \
139                                 CSPR_V)
140 #define CFG_SYS_NOR_AMASK       IFC_AMASK(128*1024*1024)
141
142 /* NOR Flash Timing Params */
143 #if defined(CONFIG_TARGET_T1024RDB)
144 #define CFG_SYS_NOR_CSOR        CSOR_NAND_TRHZ_80
145 #elif defined(CONFIG_TARGET_T1023RDB)
146 #define CFG_SYS_NOR_CSOR    (CSOR_NOR_ADM_SHIFT(0) | \
147                                 CSOR_NAND_TRHZ_80 | CSOR_NOR_ADM_SHFT_MODE_EN)
148 #endif
149 #define CFG_SYS_NOR_FTIM0       (FTIM0_NOR_TACSE(0x4) | \
150                                 FTIM0_NOR_TEADC(0x5) | \
151                                 FTIM0_NOR_TEAHC(0x5))
152 #define CFG_SYS_NOR_FTIM1       (FTIM1_NOR_TACO(0x35) | \
153                                 FTIM1_NOR_TRAD_NOR(0x1A) |\
154                                 FTIM1_NOR_TSEQRAD_NOR(0x13))
155 #define CFG_SYS_NOR_FTIM2       (FTIM2_NOR_TCS(0x4) | \
156                                 FTIM2_NOR_TCH(0x4) | \
157                                 FTIM2_NOR_TWPH(0x0E) | \
158                                 FTIM2_NOR_TWP(0x1c))
159 #define CFG_SYS_NOR_FTIM3       0x0
160
161 #define CFG_SYS_FLASH_BANKS_LIST        {CFG_SYS_FLASH_BASE_PHYS}
162
163 #ifdef CONFIG_TARGET_T1024RDB
164 /* CPLD on IFC */
165 #define CFG_SYS_CPLD_BASE               0xffdf0000
166 #define CFG_SYS_CPLD_BASE_PHYS  (0xf00000000ull | CFG_SYS_CPLD_BASE)
167 #define CFG_SYS_CSPR2_EXT               (0xf)
168 #define CFG_SYS_CSPR2           (CSPR_PHYS_ADDR(CFG_SYS_CPLD_BASE) \
169                                                 | CSPR_PORT_SIZE_8 \
170                                                 | CSPR_MSEL_GPCM \
171                                                 | CSPR_V)
172 #define CFG_SYS_AMASK2          IFC_AMASK(64*1024)
173 #define CFG_SYS_CSOR2           0x0
174
175 /* CPLD Timing parameters for IFC CS2 */
176 #define CFG_SYS_CS2_FTIM0               (FTIM0_GPCM_TACSE(0x0e) | \
177                                                 FTIM0_GPCM_TEADC(0x0e) | \
178                                                 FTIM0_GPCM_TEAHC(0x0e))
179 #define CFG_SYS_CS2_FTIM1               (FTIM1_GPCM_TACO(0x0e) | \
180                                                 FTIM1_GPCM_TRAD(0x1f))
181 #define CFG_SYS_CS2_FTIM2               (FTIM2_GPCM_TCS(0x0e) | \
182                                                 FTIM2_GPCM_TCH(0x8) | \
183                                                 FTIM2_GPCM_TWP(0x1f))
184 #define CFG_SYS_CS2_FTIM3               0x0
185 #endif
186
187 /* NAND Flash on IFC */
188 #define CFG_SYS_NAND_BASE               0xff800000
189 #ifdef CONFIG_PHYS_64BIT
190 #define CFG_SYS_NAND_BASE_PHYS  (0xf00000000ull | CFG_SYS_NAND_BASE)
191 #else
192 #define CFG_SYS_NAND_BASE_PHYS  CFG_SYS_NAND_BASE
193 #endif
194 #define CFG_SYS_NAND_CSPR_EXT   (0xf)
195 #define CFG_SYS_NAND_CSPR       (CSPR_PHYS_ADDR(CFG_SYS_NAND_BASE_PHYS) \
196                                 | CSPR_PORT_SIZE_8 /* Port Size = 8 bit */ \
197                                 | CSPR_MSEL_NAND        /* MSEL = NAND */ \
198                                 | CSPR_V)
199 #define CFG_SYS_NAND_AMASK      IFC_AMASK(64*1024)
200
201 #if defined(CONFIG_TARGET_T1024RDB)
202 #define CFG_SYS_NAND_CSOR       (CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
203                                 | CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
204                                 | CSOR_NAND_ECC_MODE_4  /* 4-bit ECC */ \
205                                 | CSOR_NAND_RAL_3       /* RAL = 3Byes */ \
206                                 | CSOR_NAND_PGS_4K      /* Page Size = 4K */ \
207                                 | CSOR_NAND_SPRZ_224    /* Spare size = 224 */ \
208                                 | CSOR_NAND_PB(64))     /*Pages Per Block = 64*/
209 #elif defined(CONFIG_TARGET_T1023RDB)
210 #define CFG_SYS_NAND_CSOR       (CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
211                                 | CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
212                                 | CSOR_NAND_ECC_MODE_4  /* 4-bit ECC */ \
213                                 | CSOR_NAND_RAL_3       /* RAL 3Bytes */ \
214                                 | CSOR_NAND_PGS_2K      /* Page Size = 2K */ \
215                                 | CSOR_NAND_SPRZ_128    /* Spare size = 128 */ \
216                                 | CSOR_NAND_PB(64))     /*Pages Per Block = 64*/
217 #endif
218
219 /* ONFI NAND Flash mode0 Timing Params */
220 #define CFG_SYS_NAND_FTIM0              (FTIM0_NAND_TCCST(0x07) | \
221                                         FTIM0_NAND_TWP(0x18)   | \
222                                         FTIM0_NAND_TWCHT(0x07) | \
223                                         FTIM0_NAND_TWH(0x0a))
224 #define CFG_SYS_NAND_FTIM1              (FTIM1_NAND_TADLE(0x32) | \
225                                         FTIM1_NAND_TWBE(0x39)  | \
226                                         FTIM1_NAND_TRR(0x0e)   | \
227                                         FTIM1_NAND_TRP(0x18))
228 #define CFG_SYS_NAND_FTIM2              (FTIM2_NAND_TRAD(0x0f) | \
229                                         FTIM2_NAND_TREH(0x0a) | \
230                                         FTIM2_NAND_TWHRE(0x1e))
231 #define CFG_SYS_NAND_FTIM3              0x0
232
233 #define CFG_SYS_NAND_BASE_LIST  { CFG_SYS_NAND_BASE }
234
235 #if defined(CONFIG_MTD_RAW_NAND)
236 #define CFG_SYS_CSPR0_EXT               CFG_SYS_NAND_CSPR_EXT
237 #define CFG_SYS_CSPR0           CFG_SYS_NAND_CSPR
238 #define CFG_SYS_AMASK0          CFG_SYS_NAND_AMASK
239 #define CFG_SYS_CSOR0           CFG_SYS_NAND_CSOR
240 #define CFG_SYS_CS0_FTIM0               CFG_SYS_NAND_FTIM0
241 #define CFG_SYS_CS0_FTIM1               CFG_SYS_NAND_FTIM1
242 #define CFG_SYS_CS0_FTIM2               CFG_SYS_NAND_FTIM2
243 #define CFG_SYS_CS0_FTIM3               CFG_SYS_NAND_FTIM3
244 #define CFG_SYS_CSPR1_EXT               CFG_SYS_NOR0_CSPR_EXT
245 #define CFG_SYS_CSPR1           CFG_SYS_NOR0_CSPR
246 #define CFG_SYS_AMASK1          CFG_SYS_NOR_AMASK
247 #define CFG_SYS_CSOR1           CFG_SYS_NOR_CSOR
248 #define CFG_SYS_CS1_FTIM0               CFG_SYS_NOR_FTIM0
249 #define CFG_SYS_CS1_FTIM1               CFG_SYS_NOR_FTIM1
250 #define CFG_SYS_CS1_FTIM2               CFG_SYS_NOR_FTIM2
251 #define CFG_SYS_CS1_FTIM3               CFG_SYS_NOR_FTIM3
252 #else
253 #define CFG_SYS_CSPR0_EXT               CFG_SYS_NOR0_CSPR_EXT
254 #define CFG_SYS_CSPR0           CFG_SYS_NOR0_CSPR
255 #define CFG_SYS_AMASK0          CFG_SYS_NOR_AMASK
256 #define CFG_SYS_CSOR0           CFG_SYS_NOR_CSOR
257 #define CFG_SYS_CS0_FTIM0               CFG_SYS_NOR_FTIM0
258 #define CFG_SYS_CS0_FTIM1               CFG_SYS_NOR_FTIM1
259 #define CFG_SYS_CS0_FTIM2               CFG_SYS_NOR_FTIM2
260 #define CFG_SYS_CS0_FTIM3               CFG_SYS_NOR_FTIM3
261 #define CFG_SYS_CSPR1_EXT               CFG_SYS_NAND_CSPR_EXT
262 #define CFG_SYS_CSPR1           CFG_SYS_NAND_CSPR
263 #define CFG_SYS_AMASK1          CFG_SYS_NAND_AMASK
264 #define CFG_SYS_CSOR1           CFG_SYS_NAND_CSOR
265 #define CFG_SYS_CS1_FTIM0               CFG_SYS_NAND_FTIM0
266 #define CFG_SYS_CS1_FTIM1               CFG_SYS_NAND_FTIM1
267 #define CFG_SYS_CS1_FTIM2               CFG_SYS_NAND_FTIM2
268 #define CFG_SYS_CS1_FTIM3               CFG_SYS_NAND_FTIM3
269 #endif
270
271 /* define to use L1 as initial stack */
272 #define CONFIG_L1_INIT_RAM
273 #define CFG_SYS_INIT_RAM_ADDR   0xfdd00000      /* Initial L1 address */
274 #ifdef CONFIG_PHYS_64BIT
275 #define CFG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf
276 #define CFG_SYS_INIT_RAM_ADDR_PHYS_LOW  0xfe03c000
277 /* The assembler doesn't like typecast */
278 #define CFG_SYS_INIT_RAM_ADDR_PHYS \
279         ((CFG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \
280           CFG_SYS_INIT_RAM_ADDR_PHYS_LOW)
281 #else
282 #define CFG_SYS_INIT_RAM_ADDR_PHYS      0xfe03c000 /* Initial L1 address */
283 #define CFG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0
284 #define CFG_SYS_INIT_RAM_ADDR_PHYS_LOW CFG_SYS_INIT_RAM_ADDR_PHYS
285 #endif
286 #define CFG_SYS_INIT_RAM_SIZE           0x00004000
287
288 #define CFG_SYS_INIT_SP_OFFSET  (CFG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
289
290 /* Serial Port */
291 #define CFG_SYS_NS16550_CLK             (get_bus_freq(0)/2)
292
293 #define CFG_SYS_BAUDRATE_TABLE  \
294         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
295
296 #define CFG_SYS_NS16550_COM1    (CFG_SYS_CCSRBAR+0x11C500)
297 #define CFG_SYS_NS16550_COM2    (CFG_SYS_CCSRBAR+0x11C600)
298 #define CFG_SYS_NS16550_COM3    (CFG_SYS_CCSRBAR+0x11D500)
299 #define CFG_SYS_NS16550_COM4    (CFG_SYS_CCSRBAR+0x11D600)
300
301 /* I2C */
302
303 #define I2C_PCA6408_BUS_NUM             1
304 #define I2C_PCA6408_ADDR                0x20
305
306 /* I2C bus multiplexer */
307 #define I2C_MUX_CH_DEFAULT      0x8
308
309 /*
310  * RTC configuration
311  */
312 #define CFG_SYS_I2C_RTC_ADDR    0x68
313
314 /*
315  * eSPI - Enhanced SPI
316  */
317
318 /*
319  * General PCIe
320  * Memory space is mapped 1-1, but I/O space must start from 0.
321  */
322
323 #ifdef CONFIG_PCI
324 /* controller 1, direct to uli, tgtid 3, Base address 20000 */
325 #ifdef CONFIG_PCIE1
326 #define CFG_SYS_PCIE1_MEM_VIRT  0x80000000
327 #define CFG_SYS_PCIE1_MEM_PHYS  0xc00000000ull
328 #define CFG_SYS_PCIE1_IO_VIRT   0xf8000000
329 #define CFG_SYS_PCIE1_IO_PHYS   0xff8000000ull
330 #endif
331
332 /* controller 2, Slot 2, tgtid 2, Base address 201000 */
333 #ifdef CONFIG_PCIE2
334 #define CFG_SYS_PCIE2_MEM_VIRT  0x90000000
335 #define CFG_SYS_PCIE2_MEM_PHYS  0xc10000000ull
336 #define CFG_SYS_PCIE2_IO_VIRT   0xf8010000
337 #define CFG_SYS_PCIE2_IO_PHYS   0xff8010000ull
338 #endif
339
340 /* controller 3, Slot 1, tgtid 1, Base address 202000 */
341 #ifdef CONFIG_PCIE3
342 #define CFG_SYS_PCIE3_MEM_VIRT  0xa0000000
343 #define CFG_SYS_PCIE3_MEM_PHYS  0xc20000000ull
344 #endif
345 #endif  /* CONFIG_PCI */
346
347 /*
348  * USB
349  */
350
351 /*
352  * SDHC
353  */
354 #ifdef CONFIG_MMC
355 #define CFG_SYS_FSL_ESDHC_ADDR  CFG_SYS_MPC85xx_ESDHC_ADDR
356 #endif
357
358 /* Qman/Bman */
359 #ifndef CONFIG_NOBQFMAN
360 #define CFG_SYS_BMAN_NUM_PORTALS        10
361 #define CFG_SYS_BMAN_MEM_BASE   0xf4000000
362 #ifdef CONFIG_PHYS_64BIT
363 #define CFG_SYS_BMAN_MEM_PHYS   0xff4000000ull
364 #else
365 #define CFG_SYS_BMAN_MEM_PHYS   CFG_SYS_BMAN_MEM_BASE
366 #endif
367 #define CFG_SYS_BMAN_MEM_SIZE   0x02000000
368 #define CFG_SYS_BMAN_SP_CENA_SIZE    0x4000
369 #define CFG_SYS_BMAN_SP_CINH_SIZE    0x1000
370 #define CFG_SYS_BMAN_CENA_BASE       CFG_SYS_BMAN_MEM_BASE
371 #define CFG_SYS_BMAN_CENA_SIZE       (CFG_SYS_BMAN_MEM_SIZE >> 1)
372 #define CFG_SYS_BMAN_CINH_BASE       (CFG_SYS_BMAN_MEM_BASE + \
373                                         CFG_SYS_BMAN_CENA_SIZE)
374 #define CFG_SYS_BMAN_CINH_SIZE       (CFG_SYS_BMAN_MEM_SIZE >> 1)
375 #define CFG_SYS_BMAN_SWP_ISDR_REG       0xE08
376 #define CFG_SYS_QMAN_NUM_PORTALS        10
377 #define CFG_SYS_QMAN_MEM_BASE   0xf6000000
378 #ifdef CONFIG_PHYS_64BIT
379 #define CFG_SYS_QMAN_MEM_PHYS   0xff6000000ull
380 #else
381 #define CFG_SYS_QMAN_MEM_PHYS   CFG_SYS_QMAN_MEM_BASE
382 #endif
383 #define CFG_SYS_QMAN_MEM_SIZE   0x02000000
384 #define CFG_SYS_QMAN_SP_CINH_SIZE    0x1000
385 #define CFG_SYS_QMAN_CENA_SIZE       (CFG_SYS_QMAN_MEM_SIZE >> 1)
386 #define CFG_SYS_QMAN_CINH_BASE       (CFG_SYS_QMAN_MEM_BASE + \
387                                         CFG_SYS_QMAN_CENA_SIZE)
388 #define CFG_SYS_QMAN_CINH_SIZE       (CFG_SYS_QMAN_MEM_SIZE >> 1)
389 #define CFG_SYS_QMAN_SWP_ISDR_REG       0xE08
390
391 #endif /* CONFIG_NOBQFMAN */
392
393 #ifdef CONFIG_SYS_DPAA_FMAN
394 #if defined(CONFIG_TARGET_T1024RDB)
395 #define RGMII_PHY1_ADDR         0x2
396 #define RGMII_PHY2_ADDR         0x6
397 #define SGMII_AQR_PHY_ADDR      0x2
398 #define FM1_10GEC1_PHY_ADDR     0x1
399 #elif defined(CONFIG_TARGET_T1023RDB)
400 #define RGMII_PHY1_ADDR         0x1
401 #define SGMII_RTK_PHY_ADDR      0x3
402 #define SGMII_AQR_PHY_ADDR      0x2
403 #endif
404 #endif
405
406 /*
407  * Dynamic MTD Partition support with mtdparts
408  */
409
410 /*
411  * Miscellaneous configurable options
412  */
413
414 /*
415  * For booting Linux, the board info and command line data
416  * have to be in the first 64 MB of memory, since this is
417  * the maximum mapped by the Linux kernel during initialization.
418  */
419 #define CFG_SYS_BOOTMAPSZ       (64 << 20)      /* Initial map for Linux*/
420
421 /*
422  * Environment Configuration
423  */
424 #define __USB_PHY_TYPE          utmi
425
426 #ifdef CONFIG_ARCH_T1024
427 #define ARCH_EXTRA_ENV_SETTINGS \
428         "bank_intlv=cs0_cs1\0"                  \
429         "ramdiskfile=t1024rdb/ramdisk.uboot\0"  \
430         "fdtfile=t1024rdb/t1024rdb.dtb\0"
431 #else
432 #define ARCH_EXTRA_ENV_SETTINGS \
433         "bank_intlv=null\0"                     \
434         "ramdiskfile=t1023rdb/ramdisk.uboot\0"  \
435         "fdtfile=t1023rdb/t1023rdb.dtb\0"
436 #endif
437
438 #define CONFIG_EXTRA_ENV_SETTINGS                               \
439         ARCH_EXTRA_ENV_SETTINGS                                 \
440         "hwconfig=fsl_ddr:ctlr_intlv=cacheline,"                \
441         "usb1:dr_mode=host,phy_type=" __stringify(__USB_PHY_TYPE) "\0"  \
442         "uboot=" CONFIG_UBOOTPATH "\0"          \
443         "ubootaddr=" __stringify(CONFIG_TEXT_BASE) "\0" \
444         "bootargs=root=/dev/ram rw console=ttyS0,115200\0" \
445         "netdev=eth0\0"                                         \
446         "tftpflash=tftpboot $loadaddr $uboot && "               \
447         "protect off $ubootaddr +$filesize && "                 \
448         "erase $ubootaddr +$filesize && "                       \
449         "cp.b $loadaddr $ubootaddr $filesize && "               \
450         "protect on $ubootaddr +$filesize && "                  \
451         "cmp.b $loadaddr $ubootaddr $filesize\0"                \
452         "consoledev=ttyS0\0"                                    \
453         "ramdiskaddr=2000000\0"                                 \
454         "fdtaddr=1e00000\0"                                     \
455         "bdev=sda3\0"
456
457 #include <asm/fsl_secure_boot.h>
458
459 #endif  /* __T1024RDB_H */