Merge tag 'xilinx-for-v2022.07-rc1' of https://source.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / include / configs / P1010RDB.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2010-2011 Freescale Semiconductor, Inc.
4  * Copyright 2020 NXP
5  */
6
7 /*
8  * P010 RDB board configuration file
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 #include <linux/stringify.h>
15
16 #include <asm/config_mpc85xx.h>
17
18 #ifdef CONFIG_SDCARD
19 #define CONFIG_SPL_FLUSH_IMAGE
20 #define CONFIG_SPL_TARGET               "u-boot-with-spl.bin"
21 #define CONFIG_SPL_PAD_TO               0x18000
22 #define CONFIG_SPL_MAX_SIZE             (96 * 1024)
23 #define CONFIG_SYS_MMC_U_BOOT_SIZE      (512 << 10)
24 #define CONFIG_SYS_MMC_U_BOOT_DST       (0x11000000)
25 #define CONFIG_SYS_MMC_U_BOOT_START     (0x11000000)
26 #define CONFIG_SYS_MMC_U_BOOT_OFFS      (96 << 10)
27 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
28 #ifdef CONFIG_SPL_BUILD
29 #define CONFIG_SPL_COMMON_INIT_DDR
30 #endif
31 #endif
32
33 #ifdef CONFIG_SPIFLASH
34 #ifdef CONFIG_NXP_ESBC
35 #define CONFIG_RAMBOOT_SPIFLASH
36 #define CONFIG_RESET_VECTOR_ADDRESS     0x110bfffc
37 #else
38 #define CONFIG_SPL_SPI_FLASH_MINIMAL
39 #define CONFIG_SPL_FLUSH_IMAGE
40 #define CONFIG_SPL_TARGET               "u-boot-with-spl.bin"
41 #define CONFIG_SPL_PAD_TO                       0x18000
42 #define CONFIG_SPL_MAX_SIZE                     (96 * 1024)
43 #define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE        (512 << 10)
44 #define CONFIG_SYS_SPI_FLASH_U_BOOT_DST         (0x11000000)
45 #define CONFIG_SYS_SPI_FLASH_U_BOOT_START       (0x11000000)
46 #define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS        (96 << 10)
47 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
48 #ifdef CONFIG_SPL_BUILD
49 #define CONFIG_SPL_COMMON_INIT_DDR
50 #endif
51 #endif
52 #endif
53
54 #ifdef CONFIG_MTD_RAW_NAND
55 #ifdef CONFIG_NXP_ESBC
56 #define CONFIG_SPL_INIT_MINIMAL
57 #define CONFIG_SPL_FLUSH_IMAGE
58 #define CONFIG_SPL_TARGET               "u-boot-with-spl.bin"
59
60 #define CONFIG_SPL_MAX_SIZE             8192
61 #define CONFIG_SPL_RELOC_TEXT_BASE      0x00100000
62 #define CONFIG_SPL_RELOC_STACK          0x00100000
63 #define CONFIG_SYS_NAND_U_BOOT_SIZE     ((768 << 10) - 0x2000)
64 #define CONFIG_SYS_NAND_U_BOOT_DST      (0x00200000 - CONFIG_SPL_MAX_SIZE)
65 #define CONFIG_SYS_NAND_U_BOOT_START    0x00200000
66 #else
67 #ifdef CONFIG_TPL_BUILD
68 #define CONFIG_SPL_FLUSH_IMAGE
69 #define CONFIG_SPL_NAND_INIT
70 #define CONFIG_SPL_COMMON_INIT_DDR
71 #define CONFIG_SPL_MAX_SIZE             (128 << 10)
72 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
73 #define CONFIG_SYS_NAND_U_BOOT_SIZE     (576 << 10)
74 #define CONFIG_SYS_NAND_U_BOOT_DST      (0x11000000)
75 #define CONFIG_SYS_NAND_U_BOOT_START    (0x11000000)
76 #elif defined(CONFIG_SPL_BUILD)
77 #define CONFIG_SPL_INIT_MINIMAL
78 #define CONFIG_SPL_NAND_MINIMAL
79 #define CONFIG_SPL_FLUSH_IMAGE
80 #define CONFIG_SPL_MAX_SIZE             8192
81 #define CONFIG_SYS_NAND_U_BOOT_SIZE     (128 << 10)
82 #define CONFIG_SYS_NAND_U_BOOT_DST      0xD0000000
83 #define CONFIG_SYS_NAND_U_BOOT_START    0xD0000000
84 #endif
85 #define CONFIG_SPL_PAD_TO       0x20000
86 #define CONFIG_TPL_PAD_TO       0x20000
87 #define CONFIG_SPL_TARGET       "u-boot-with-spl.bin"
88 #endif
89 #endif
90
91 #ifdef CONFIG_NAND_SECBOOT      /* NAND Boot */
92 #define CONFIG_RAMBOOT_NAND
93 #define CONFIG_RESET_VECTOR_ADDRESS     0x110bfffc
94 #endif
95
96 #ifndef CONFIG_RESET_VECTOR_ADDRESS
97 #define CONFIG_RESET_VECTOR_ADDRESS     0xeffffffc
98 #endif
99
100 #ifdef CONFIG_TPL_BUILD
101 #define CONFIG_SYS_MONITOR_BASE 0xD0001000
102 #elif defined(CONFIG_SPL_BUILD)
103 #define CONFIG_SYS_MONITOR_BASE CONFIG_SPL_TEXT_BASE
104 #else
105 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE    /* start of monitor */
106 #endif
107
108 /* High Level Configuration Options */
109
110 #if defined(CONFIG_PCI)
111 #define CONFIG_PCIE1                    /* PCIE controller 1 (slot 1) */
112 #define CONFIG_PCIE2                    /* PCIE controller 2 (slot 2) */
113
114 /*
115  * PCI Windows
116  * Memory space is mapped 1-1, but I/O space must start from 0.
117  */
118 /* controller 1, Slot 1, tgtid 1, Base address a000 */
119 #define CONFIG_SYS_PCIE1_MEM_VIRT       0x80000000
120 #ifdef CONFIG_PHYS_64BIT
121 #define CONFIG_SYS_PCIE1_MEM_PHYS       0xc00000000ull
122 #else
123 #define CONFIG_SYS_PCIE1_MEM_PHYS       0x80000000
124 #endif
125 #define CONFIG_SYS_PCIE1_IO_VIRT        0xffc00000
126 #ifdef CONFIG_PHYS_64BIT
127 #define CONFIG_SYS_PCIE1_IO_PHYS        0xfffc00000ull
128 #else
129 #define CONFIG_SYS_PCIE1_IO_PHYS        0xffc00000
130 #endif
131
132 /* controller 2, Slot 2, tgtid 2, Base address 9000 */
133 #define CONFIG_SYS_PCIE2_MEM_VIRT       0xa0000000
134 #ifdef CONFIG_PHYS_64BIT
135 #define CONFIG_SYS_PCIE2_MEM_PHYS       0xc20000000ull
136 #else
137 #define CONFIG_SYS_PCIE2_MEM_PHYS       0xa0000000
138 #endif
139 #define CONFIG_SYS_PCIE2_IO_VIRT        0xffc10000
140 #ifdef CONFIG_PHYS_64BIT
141 #define CONFIG_SYS_PCIE2_IO_PHYS        0xfffc10000ull
142 #else
143 #define CONFIG_SYS_PCIE2_IO_PHYS        0xffc10000
144 #endif
145
146 #define CONFIG_PCI_SCAN_SHOW            /* show pci devices on startup */
147 #endif
148
149 #define CONFIG_HWCONFIG
150 /*
151  * These can be toggled for performance analysis, otherwise use default.
152  */
153 #define CONFIG_L2_CACHE                 /* toggle L2 cache */
154
155
156 #define CONFIG_ENABLE_36BIT_PHYS
157
158 /* DDR Setup */
159 #define CONFIG_SYS_DDR_RAW_TIMING
160 #define CONFIG_SYS_SPD_BUS_NUM          1
161 #define SPD_EEPROM_ADDRESS              0x52
162
163 #define CONFIG_MEM_INIT_VALUE           0xDeadBeef
164
165 #ifndef __ASSEMBLY__
166 extern unsigned long get_sdram_size(void);
167 #endif
168 #define CONFIG_SYS_SDRAM_SIZE           get_sdram_size() /* DDR size */
169 #define CONFIG_SYS_DDR_SDRAM_BASE       0x00000000
170 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
171
172 #define CONFIG_DIMM_SLOTS_PER_CTLR      1
173
174 /* DDR3 Controller Settings */
175 #define CONFIG_SYS_DDR_CS0_BNDS         0x0000003f
176 #define CONFIG_SYS_DDR_CS0_CONFIG       0x80014302
177 #define CONFIG_SYS_DDR_CS0_CONFIG_2     0x00000000
178 #define CONFIG_SYS_DDR_DATA_INIT        0xdeadbeef
179 #define CONFIG_SYS_DDR_INIT_ADDR        0x00000000
180 #define CONFIG_SYS_DDR_INIT_EXT_ADDR    0x00000000
181 #define CONFIG_SYS_DDR_MODE_CONTROL     0x00000000
182 #define CONFIG_SYS_DDR_ZQ_CONTROL       0x89080600
183 #define CONFIG_SYS_DDR_SR_CNTR          0x00000000
184 #define CONFIG_SYS_DDR_RCW_1            0x00000000
185 #define CONFIG_SYS_DDR_RCW_2            0x00000000
186 #define CONFIG_SYS_DDR_CONTROL          0xc70c0008      /* Type = DDR3  */
187 #define CONFIG_SYS_DDR_CONTROL_2        0x24401000
188 #define CONFIG_SYS_DDR_TIMING_4         0x00000001
189 #define CONFIG_SYS_DDR_TIMING_5         0x03402400
190
191 #define CONFIG_SYS_DDR_TIMING_3_800     0x00030000
192 #define CONFIG_SYS_DDR_TIMING_0_800     0x00110104
193 #define CONFIG_SYS_DDR_TIMING_1_800     0x6f6b8644
194 #define CONFIG_SYS_DDR_TIMING_2_800     0x0FA888CF
195 #define CONFIG_SYS_DDR_CLK_CTRL_800     0x03000000
196 #define CONFIG_SYS_DDR_MODE_1_800       0x00441420
197 #define CONFIG_SYS_DDR_MODE_2_800       0x00000000
198 #define CONFIG_SYS_DDR_INTERVAL_800     0x0C300100
199 #define CONFIG_SYS_DDR_WRLVL_CONTROL_800 0x8675f608
200
201 /* settings for DDR3 at 667MT/s */
202 #define CONFIG_SYS_DDR_TIMING_3_667             0x00010000
203 #define CONFIG_SYS_DDR_TIMING_0_667             0x00110004
204 #define CONFIG_SYS_DDR_TIMING_1_667             0x5d59e544
205 #define CONFIG_SYS_DDR_TIMING_2_667             0x0FA890CD
206 #define CONFIG_SYS_DDR_CLK_CTRL_667             0x03000000
207 #define CONFIG_SYS_DDR_MODE_1_667               0x00441210
208 #define CONFIG_SYS_DDR_MODE_2_667               0x00000000
209 #define CONFIG_SYS_DDR_INTERVAL_667             0x0a280000
210 #define CONFIG_SYS_DDR_WRLVL_CONTROL_667        0x8675F608
211
212 #define CONFIG_SYS_CCSRBAR                      0xffe00000
213 #define CONFIG_SYS_CCSRBAR_PHYS_LOW             CONFIG_SYS_CCSRBAR
214
215 /* Don't relocate CCSRBAR while in NAND_SPL */
216 #ifdef CONFIG_SPL_BUILD
217 #define CONFIG_SYS_CCSR_DO_NOT_RELOCATE
218 #endif
219
220 /*
221  * Memory map
222  *
223  * 0x0000_0000  0x3fff_ffff     DDR                     1G cacheable
224  * 0x8000_0000  0xbfff_ffff     PCI Express Mem         1.5G non-cacheable
225  * 0xffc0_0000  0xffc3_ffff     PCI IO range            256k non-cacheable
226  *
227  * Localbus non-cacheable
228  * 0xff80_0000  0xff8f_ffff     NAND Flash              1M non-cacheable
229  * 0xffb0_0000  0xffbf_ffff     Board CPLD              1M non-cacheable
230  * 0xffd0_0000  0xffd0_3fff     L1 for stack            16K Cacheable TLB0
231  * 0xffe0_0000  0xffef_ffff     CCSR                    1M non-cacheable
232  */
233
234 /*
235  * IFC Definitions
236  */
237 /* NOR Flash on IFC */
238
239 #define CONFIG_SYS_FLASH_BASE           0xee000000
240 #define CONFIG_SYS_MAX_FLASH_SECT       256     /* 32M */
241
242 #ifdef CONFIG_PHYS_64BIT
243 #define CONFIG_SYS_FLASH_BASE_PHYS      (0xf00000000ull | CONFIG_SYS_FLASH_BASE)
244 #else
245 #define CONFIG_SYS_FLASH_BASE_PHYS      CONFIG_SYS_FLASH_BASE
246 #endif
247
248 #define CONFIG_SYS_NOR_CSPR     (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \
249                                 CSPR_PORT_SIZE_16 | \
250                                 CSPR_MSEL_NOR | \
251                                 CSPR_V)
252 #define CONFIG_SYS_NOR_AMASK    IFC_AMASK(32*1024*1024)
253 #define CONFIG_SYS_NOR_CSOR     CSOR_NOR_ADM_SHIFT(7)
254 /* NOR Flash Timing Params */
255 #define CONFIG_SYS_NOR_FTIM0    FTIM0_NOR_TACSE(0x4) | \
256                                 FTIM0_NOR_TEADC(0x5) | \
257                                 FTIM0_NOR_TEAHC(0x5)
258 #define CONFIG_SYS_NOR_FTIM1    FTIM1_NOR_TACO(0x1e) | \
259                                 FTIM1_NOR_TRAD_NOR(0x0f)
260 #define CONFIG_SYS_NOR_FTIM2    FTIM2_NOR_TCS(0x4) | \
261                                 FTIM2_NOR_TCH(0x4) | \
262                                 FTIM2_NOR_TWP(0x1c)
263 #define CONFIG_SYS_NOR_FTIM3    0x0
264
265 #define CONFIG_SYS_FLASH_BANKS_LIST     {CONFIG_SYS_FLASH_BASE_PHYS}
266 #define CONFIG_SYS_FLASH_QUIET_TEST
267 #define CONFIG_FLASH_SHOW_PROGRESS      45      /* count down from 45/5: 9..1 */
268
269 #undef CONFIG_SYS_FLASH_CHECKSUM
270 #define CONFIG_SYS_FLASH_ERASE_TOUT     60000   /* Flash Erase Timeout (ms) */
271 #define CONFIG_SYS_FLASH_WRITE_TOUT     500     /* Flash Write Timeout (ms) */
272
273 /* CFI for NOR Flash */
274 #define CONFIG_SYS_FLASH_EMPTY_INFO
275
276 /* NAND Flash on IFC */
277 #define CONFIG_SYS_NAND_BASE            0xff800000
278 #ifdef CONFIG_PHYS_64BIT
279 #define CONFIG_SYS_NAND_BASE_PHYS       0xfff800000ull
280 #else
281 #define CONFIG_SYS_NAND_BASE_PHYS       CONFIG_SYS_NAND_BASE
282 #endif
283
284 #define CONFIG_MTD_PARTITION
285
286 #define CONFIG_SYS_NAND_CSPR    (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \
287                                 | CSPR_PORT_SIZE_8      \
288                                 | CSPR_MSEL_NAND        \
289                                 | CSPR_V)
290 #define CONFIG_SYS_NAND_AMASK   IFC_AMASK(64*1024)
291
292 #if defined(CONFIG_TARGET_P1010RDB_PA)
293 #define CONFIG_SYS_NAND_CSOR    (CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
294                                 | CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
295                                 | CSOR_NAND_ECC_MODE_4  /* 4-bit ECC */ \
296                                 | CSOR_NAND_RAL_2       /* RAL = 2 Bytes */ \
297                                 | CSOR_NAND_PGS_512     /* Page Size = 512b */ \
298                                 | CSOR_NAND_SPRZ_16     /* Spare size = 16 */ \
299                                 | CSOR_NAND_PB(32))     /* 32 Pages Per Block */
300
301 #elif defined(CONFIG_TARGET_P1010RDB_PB)
302 #define CONFIG_SYS_NAND_CSOR   (CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
303                                 | CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
304                                 | CSOR_NAND_ECC_MODE_4  /* 4-bit ECC */ \
305                                 | CSOR_NAND_RAL_3       /* RAL = 3Byes */ \
306                                 | CSOR_NAND_PGS_4K      /* Page Size = 4K */ \
307                                 | CSOR_NAND_SPRZ_224    /* Spare size = 224 */ \
308                                 | CSOR_NAND_PB(128))  /*Pages Per Block = 128 */
309 #endif
310
311 #define CONFIG_SYS_NAND_BASE_LIST       { CONFIG_SYS_NAND_BASE }
312 #define CONFIG_SYS_MAX_NAND_DEVICE      1
313
314 #if defined(CONFIG_TARGET_P1010RDB_PA)
315 /* NAND Flash Timing Params */
316 #define CONFIG_SYS_NAND_FTIM0           FTIM0_NAND_TCCST(0x01) | \
317                                         FTIM0_NAND_TWP(0x0C)   | \
318                                         FTIM0_NAND_TWCHT(0x04) | \
319                                         FTIM0_NAND_TWH(0x05)
320 #define CONFIG_SYS_NAND_FTIM1           FTIM1_NAND_TADLE(0x1d) | \
321                                         FTIM1_NAND_TWBE(0x1d)  | \
322                                         FTIM1_NAND_TRR(0x07)   | \
323                                         FTIM1_NAND_TRP(0x0c)
324 #define CONFIG_SYS_NAND_FTIM2           FTIM2_NAND_TRAD(0x0c) | \
325                                         FTIM2_NAND_TREH(0x05) | \
326                                         FTIM2_NAND_TWHRE(0x0f)
327 #define CONFIG_SYS_NAND_FTIM3           FTIM3_NAND_TWW(0x04)
328
329 #elif defined(CONFIG_TARGET_P1010RDB_PB)
330 /* support MT29F16G08ABABAWP 4k-pagesize 2G-bytes NAND */
331 /* ONFI NAND Flash mode0 Timing Params */
332 #define CONFIG_SYS_NAND_FTIM0  (FTIM0_NAND_TCCST(0x07)| \
333                                         FTIM0_NAND_TWP(0x18)   | \
334                                         FTIM0_NAND_TWCHT(0x07) | \
335                                         FTIM0_NAND_TWH(0x0a))
336 #define CONFIG_SYS_NAND_FTIM1  (FTIM1_NAND_TADLE(0x32)| \
337                                         FTIM1_NAND_TWBE(0x39)  | \
338                                         FTIM1_NAND_TRR(0x0e)   | \
339                                         FTIM1_NAND_TRP(0x18))
340 #define CONFIG_SYS_NAND_FTIM2  (FTIM2_NAND_TRAD(0x0f) | \
341                                         FTIM2_NAND_TREH(0x0a)  | \
342                                         FTIM2_NAND_TWHRE(0x1e))
343 #define CONFIG_SYS_NAND_FTIM3   0x0
344 #endif
345
346 #define CONFIG_SYS_NAND_DDR_LAW         11
347
348 /* Set up IFC registers for boot location NOR/NAND */
349 #if defined(CONFIG_MTD_RAW_NAND) || defined(CONFIG_NAND_SECBOOT)
350 #define CONFIG_SYS_CSPR0                CONFIG_SYS_NAND_CSPR
351 #define CONFIG_SYS_AMASK0               CONFIG_SYS_NAND_AMASK
352 #define CONFIG_SYS_CSOR0                CONFIG_SYS_NAND_CSOR
353 #define CONFIG_SYS_CS0_FTIM0            CONFIG_SYS_NAND_FTIM0
354 #define CONFIG_SYS_CS0_FTIM1            CONFIG_SYS_NAND_FTIM1
355 #define CONFIG_SYS_CS0_FTIM2            CONFIG_SYS_NAND_FTIM2
356 #define CONFIG_SYS_CS0_FTIM3            CONFIG_SYS_NAND_FTIM3
357 #define CONFIG_SYS_CSPR1                CONFIG_SYS_NOR_CSPR
358 #define CONFIG_SYS_AMASK1               CONFIG_SYS_NOR_AMASK
359 #define CONFIG_SYS_CSOR1                CONFIG_SYS_NOR_CSOR
360 #define CONFIG_SYS_CS1_FTIM0            CONFIG_SYS_NOR_FTIM0
361 #define CONFIG_SYS_CS1_FTIM1            CONFIG_SYS_NOR_FTIM1
362 #define CONFIG_SYS_CS1_FTIM2            CONFIG_SYS_NOR_FTIM2
363 #define CONFIG_SYS_CS1_FTIM3            CONFIG_SYS_NOR_FTIM3
364 #else
365 #define CONFIG_SYS_CSPR0                CONFIG_SYS_NOR_CSPR
366 #define CONFIG_SYS_AMASK0               CONFIG_SYS_NOR_AMASK
367 #define CONFIG_SYS_CSOR0                CONFIG_SYS_NOR_CSOR
368 #define CONFIG_SYS_CS0_FTIM0            CONFIG_SYS_NOR_FTIM0
369 #define CONFIG_SYS_CS0_FTIM1            CONFIG_SYS_NOR_FTIM1
370 #define CONFIG_SYS_CS0_FTIM2            CONFIG_SYS_NOR_FTIM2
371 #define CONFIG_SYS_CS0_FTIM3            CONFIG_SYS_NOR_FTIM3
372 #define CONFIG_SYS_CSPR1                CONFIG_SYS_NAND_CSPR
373 #define CONFIG_SYS_AMASK1               CONFIG_SYS_NAND_AMASK
374 #define CONFIG_SYS_CSOR1                CONFIG_SYS_NAND_CSOR
375 #define CONFIG_SYS_CS1_FTIM0            CONFIG_SYS_NAND_FTIM0
376 #define CONFIG_SYS_CS1_FTIM1            CONFIG_SYS_NAND_FTIM1
377 #define CONFIG_SYS_CS1_FTIM2            CONFIG_SYS_NAND_FTIM2
378 #define CONFIG_SYS_CS1_FTIM3            CONFIG_SYS_NAND_FTIM3
379 #endif
380
381 /* CPLD on IFC */
382 #define CONFIG_SYS_CPLD_BASE            0xffb00000
383
384 #ifdef CONFIG_PHYS_64BIT
385 #define CONFIG_SYS_CPLD_BASE_PHYS       0xfffb00000ull
386 #else
387 #define CONFIG_SYS_CPLD_BASE_PHYS       CONFIG_SYS_CPLD_BASE
388 #endif
389
390 #define CONFIG_SYS_CSPR3        (CSPR_PHYS_ADDR(CONFIG_SYS_CPLD_BASE_PHYS) \
391                                 | CSPR_PORT_SIZE_8 \
392                                 | CSPR_MSEL_GPCM \
393                                 | CSPR_V)
394 #define CONFIG_SYS_AMASK3               IFC_AMASK(64*1024)
395 #define CONFIG_SYS_CSOR3                0x0
396 /* CPLD Timing parameters for IFC CS3 */
397 #define CONFIG_SYS_CS3_FTIM0            (FTIM0_GPCM_TACSE(0x0e) | \
398                                         FTIM0_GPCM_TEADC(0x0e) | \
399                                         FTIM0_GPCM_TEAHC(0x0e))
400 #define CONFIG_SYS_CS3_FTIM1            (FTIM1_GPCM_TACO(0x0e) | \
401                                         FTIM1_GPCM_TRAD(0x1f))
402 #define CONFIG_SYS_CS3_FTIM2            (FTIM2_GPCM_TCS(0x0e) | \
403                                         FTIM2_GPCM_TCH(0x8) | \
404                                         FTIM2_GPCM_TWP(0x1f))
405 #define CONFIG_SYS_CS3_FTIM3            0x0
406
407 #if defined(CONFIG_RAMBOOT_SDCARD) || defined(CONFIG_RAMBOOT_SPIFLASH) || \
408         defined(CONFIG_RAMBOOT_NAND)
409 #define CONFIG_SYS_RAMBOOT
410 #else
411 #undef CONFIG_SYS_RAMBOOT
412 #endif
413
414 #ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A003399
415 #if !defined(CONFIG_SPL) && !defined(CONFIG_SYS_RAMBOOT)
416 #define CONFIG_A003399_NOR_WORKAROUND
417 #endif
418 #endif
419
420 #define CONFIG_SYS_INIT_RAM_LOCK
421 #define CONFIG_SYS_INIT_RAM_ADDR        0xffd00000 /* stack in RAM */
422 #define CONFIG_SYS_INIT_RAM_SIZE        0x00004000 /* End of used area in RAM */
423
424 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_SIZE \
425                                                 - GENERATED_GBL_DATA_SIZE)
426 #define CONFIG_SYS_INIT_SP_OFFSET       CONFIG_SYS_GBL_DATA_OFFSET
427
428 #define CONFIG_SYS_MONITOR_LEN          (768 * 1024)
429
430 /*
431  * Config the L2 Cache as L2 SRAM
432  */
433 #if defined(CONFIG_SPL_BUILD)
434 #if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH)
435 #define CONFIG_SYS_INIT_L2_ADDR         0xD0000000
436 #define CONFIG_SYS_INIT_L2_ADDR_PHYS    CONFIG_SYS_INIT_L2_ADDR
437 #define CONFIG_SYS_L2_SIZE              (256 << 10)
438 #define CONFIG_SYS_INIT_L2_END  (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
439 #define CONFIG_SPL_RELOC_TEXT_BASE      0xD0001000
440 #define CONFIG_SPL_RELOC_STACK          (CONFIG_SYS_INIT_L2_ADDR + 112 * 1024)
441 #define CONFIG_SPL_RELOC_MALLOC_ADDR    (CONFIG_SYS_INIT_L2_ADDR + 128 * 1024)
442 #define CONFIG_SPL_RELOC_MALLOC_SIZE    (128 << 10)
443 #define CONFIG_SPL_GD_ADDR              (CONFIG_SYS_INIT_L2_ADDR + 96 * 1024)
444 #elif defined(CONFIG_MTD_RAW_NAND)
445 #ifdef CONFIG_TPL_BUILD
446 #define CONFIG_SYS_INIT_L2_ADDR         0xD0000000
447 #define CONFIG_SYS_INIT_L2_ADDR_PHYS    CONFIG_SYS_INIT_L2_ADDR
448 #define CONFIG_SYS_L2_SIZE              (256 << 10)
449 #define CONFIG_SYS_INIT_L2_END  (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
450 #define CONFIG_SPL_RELOC_TEXT_BASE      0xD0001000
451 #define CONFIG_SPL_RELOC_STACK          (CONFIG_SYS_INIT_L2_ADDR + 192 * 1024)
452 #define CONFIG_SPL_RELOC_MALLOC_ADDR    (CONFIG_SYS_INIT_L2_ADDR + 208 * 1024)
453 #define CONFIG_SPL_RELOC_MALLOC_SIZE    (48 << 10)
454 #define CONFIG_SPL_GD_ADDR              (CONFIG_SYS_INIT_L2_ADDR + 176 * 1024)
455 #else
456 #define CONFIG_SYS_INIT_L2_ADDR         0xD0000000
457 #define CONFIG_SYS_INIT_L2_ADDR_PHYS    CONFIG_SYS_INIT_L2_ADDR
458 #define CONFIG_SYS_L2_SIZE              (256 << 10)
459 #define CONFIG_SYS_INIT_L2_END  (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
460 #define CONFIG_SPL_RELOC_TEXT_BASE      (CONFIG_SYS_INIT_L2_END - 0x3000)
461 #define CONFIG_SPL_RELOC_STACK          ((CONFIG_SYS_INIT_L2_END - 1) & ~0xF)
462 #endif
463 #endif
464 #endif
465
466 /* Serial Port */
467 #undef  CONFIG_SERIAL_SOFTWARE_FIFO
468 #define CONFIG_SYS_NS16550_SERIAL
469 #define CONFIG_SYS_NS16550_REG_SIZE     1
470 #define CONFIG_SYS_NS16550_CLK          get_bus_freq(0)
471 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_INIT_MINIMAL)
472 #define CONFIG_NS16550_MIN_FUNCTIONS
473 #endif
474
475 #define CONFIG_SYS_BAUDRATE_TABLE       \
476         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
477
478 #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
479 #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
480
481 /* I2C */
482 #define I2C_PCA9557_ADDR1               0x18
483 #define I2C_PCA9557_ADDR2               0x19
484 #define I2C_PCA9557_BUS_NUM             0
485
486 /* I2C EEPROM */
487 #if defined(CONFIG_TARGET_P1010RDB_PB)
488 #ifdef CONFIG_ID_EEPROM
489 #define CONFIG_SYS_I2C_EEPROM_NXID
490 #endif
491 #define CONFIG_SYS_EEPROM_BUS_NUM       0
492 #define MAX_NUM_PORTS                   9 /* for 128Bytes EEPROM */
493 #endif
494 /* enable read and write access to EEPROM */
495
496 /* RTC */
497 #define CONFIG_RTC_PT7C4338
498 #define CONFIG_SYS_I2C_RTC_ADDR 0x68
499
500 /*
501  * SPI interface will not be available in case of NAND boot SPI CS0 will be
502  * used for SLIC
503  */
504 #if !defined(CONFIG_MTD_RAW_NAND) || !defined(CONFIG_NAND_SECBOOT)
505 /* eSPI - Enhanced SPI */
506 #endif
507
508 #if defined(CONFIG_TSEC_ENET)
509 #define CONFIG_MII_DEFAULT_TSEC 1       /* Allow unregistered phys */
510 #define CONFIG_TSEC1    1
511 #define CONFIG_TSEC1_NAME       "eTSEC1"
512 #define CONFIG_TSEC2    1
513 #define CONFIG_TSEC2_NAME       "eTSEC2"
514 #define CONFIG_TSEC3    1
515 #define CONFIG_TSEC3_NAME       "eTSEC3"
516
517 #define TSEC1_PHY_ADDR          1
518 #define TSEC2_PHY_ADDR          0
519 #define TSEC3_PHY_ADDR          2
520
521 #define TSEC1_FLAGS             (TSEC_GIGABIT | TSEC_REDUCED)
522 #define TSEC2_FLAGS             (TSEC_GIGABIT | TSEC_REDUCED)
523 #define TSEC3_FLAGS             (TSEC_GIGABIT | TSEC_REDUCED)
524
525 #define TSEC1_PHYIDX            0
526 #define TSEC2_PHYIDX            0
527 #define TSEC3_PHYIDX            0
528
529 #define CONFIG_ETHPRIME         "eTSEC1"
530
531 /* TBI PHY configuration for SGMII mode */
532 #define CONFIG_TSEC_TBICR_SETTINGS ( \
533                 TBICR_PHY_RESET \
534                 | TBICR_ANEG_ENABLE \
535                 | TBICR_FULL_DUPLEX \
536                 | TBICR_SPEED1_SET \
537                 )
538
539 #endif  /* CONFIG_TSEC_ENET */
540
541 /* SATA */
542 #define CONFIG_FSL_SATA_V2
543
544 #ifdef CONFIG_FSL_SATA
545 #define CONFIG_SATA1
546 #define CONFIG_SYS_SATA1                CONFIG_SYS_MPC85xx_SATA1_ADDR
547 #define CONFIG_SYS_SATA1_FLAGS          FLAGS_DMA
548 #define CONFIG_SATA2
549 #define CONFIG_SYS_SATA2                CONFIG_SYS_MPC85xx_SATA2_ADDR
550 #define CONFIG_SYS_SATA2_FLAGS          FLAGS_DMA
551
552 #define CONFIG_LBA48
553 #endif /* #ifdef CONFIG_FSL_SATA  */
554
555 #ifdef CONFIG_MMC
556 #define CONFIG_SYS_FSL_ESDHC_ADDR       CONFIG_SYS_MPC85xx_ESDHC_ADDR
557 #endif
558
559 #define CONFIG_HAS_FSL_DR_USB
560
561 #if defined(CONFIG_HAS_FSL_DR_USB)
562 #ifdef CONFIG_USB_EHCI_HCD
563 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
564 #endif
565 #endif
566
567 /*
568  * Environment
569  */
570 #if defined(CONFIG_SDCARD)
571 #define CONFIG_FSL_FIXED_MMC_LOCATION
572 #elif defined(CONFIG_MTD_RAW_NAND)
573 #ifdef CONFIG_TPL_BUILD
574 #define SPL_ENV_ADDR            (CONFIG_SYS_INIT_L2_ADDR + (160 << 10))
575 #else
576 #if defined(CONFIG_TARGET_P1010RDB_PA)
577 #define CONFIG_ENV_RANGE        (3 * CONFIG_ENV_SIZE) /* 3*16=48K for env */
578 #elif defined(CONFIG_TARGET_P1010RDB_PB)
579 #define CONFIG_ENV_RANGE        (32 * CONFIG_ENV_SIZE) /* new block size 512K */
580 #endif
581 #endif
582 #endif
583
584 #define CONFIG_LOADS_ECHO               /* echo on for serial download */
585 #define CONFIG_SYS_LOADS_BAUD_CHANGE    /* allow baudrate change */
586
587 #if defined(CONFIG_MMC) || defined(CONFIG_USB_EHCI_HCD) \
588                  || defined(CONFIG_FSL_SATA)
589 #endif
590
591 /*
592  * Miscellaneous configurable options
593  */
594
595 /*
596  * For booting Linux, the board info and command line data
597  * have to be in the first 64 MB of memory, since this is
598  * the maximum mapped by the Linux kernel during initialization.
599  */
600 #define CONFIG_SYS_BOOTMAPSZ    (64 << 20) /* Initial Memory map for Linux */
601 #define CONFIG_SYS_BOOTM_LEN    (64 << 20) /* Increase max gunzip size */
602
603 /*
604  * Environment Configuration
605  */
606
607 #if defined(CONFIG_TSEC_ENET)
608 #define CONFIG_HAS_ETH0
609 #define CONFIG_HAS_ETH1
610 #define CONFIG_HAS_ETH2
611 #endif
612
613 #define CONFIG_ROOTPATH         "/opt/nfsroot"
614 #define CONFIG_UBOOTPATH        u-boot.bin/* U-Boot image on TFTP server */
615
616 #define CONFIG_EXTRA_ENV_SETTINGS                               \
617         "hwconfig=" __stringify(CONFIG_DEF_HWCONFIG)  "\0"      \
618         "netdev=eth0\0"                                         \
619         "uboot=" __stringify(CONFIG_UBOOTPATH) "\0"             \
620         "loadaddr=1000000\0"                    \
621         "consoledev=ttyS0\0"                            \
622         "ramdiskaddr=2000000\0"                 \
623         "ramdiskfile=rootfs.ext2.gz.uboot\0"            \
624         "fdtaddr=1e00000\0"                             \
625         "fdtfile=p1010rdb.dtb\0"                \
626         "bdev=sda1\0"   \
627         "hwconfig=usb1:dr_mode=host,phy_type=utmi\0"    \
628         "othbootargs=ramdisk_size=600000\0" \
629         "usbfatboot=setenv bootargs root=/dev/ram rw "  \
630         "console=$consoledev,$baudrate $othbootargs; "  \
631         "usb start;"                    \
632         "fatload usb 0:2 $loadaddr $bootfile;"          \
633         "fatload usb 0:2 $fdtaddr $fdtfile;"    \
634         "fatload usb 0:2 $ramdiskaddr $ramdiskfile;"    \
635         "bootm $loadaddr $ramdiskaddr $fdtaddr\0"               \
636         "usbext2boot=setenv bootargs root=/dev/ram rw " \
637         "console=$consoledev,$baudrate $othbootargs; "  \
638         "usb start;"                    \
639         "ext2load usb 0:4 $loadaddr $bootfile;"         \
640         "ext2load usb 0:4 $fdtaddr $fdtfile;"   \
641         "ext2load usb 0:4 $ramdiskaddr $ramdiskfile;"   \
642         "bootm $loadaddr $ramdiskaddr $fdtaddr\0"       \
643         BOOTMODE
644
645 #if defined(CONFIG_TARGET_P1010RDB_PA)
646 #define BOOTMODE \
647         "boot_bank0=i2c dev 0; i2c mw 18 1 f1; i2c mw 18 3 f0;" \
648         "mw.b ffb00011 0; mw.b ffb00009 0; reset\0" \
649         "boot_bank1=i2c dev 0; i2c mw 18 1 f1; i2c mw 18 3 f0;" \
650         "mw.b ffb00011 0; mw.b ffb00009 1; reset\0" \
651         "boot_nand=i2c dev 0; i2c mw 18 1 f9; i2c mw 18 3 f0;" \
652         "mw.b ffb00011 0; mw.b ffb00017 1; reset\0"
653
654 #elif defined(CONFIG_TARGET_P1010RDB_PB)
655 #define BOOTMODE \
656         "boot_bank0=i2c dev 0; i2c mw 18 1 fe; i2c mw 18 3 0;" \
657         "i2c mw 19 1 2; i2c mw 19 3 e1; reset\0" \
658         "boot_bank1=i2c dev 0; i2c mw 18 1 fe; i2c mw 18 3 0;" \
659         "i2c mw 19 1 12; i2c mw 19 3 e1; reset\0" \
660         "boot_nand=i2c dev 0; i2c mw 18 1 fc; i2c mw 18 3 0;" \
661         "i2c mw 19 1 8; i2c mw 19 3 f7; reset\0" \
662         "boot_spi=i2c dev 0; i2c mw 18 1 fa; i2c mw 18 3 0;" \
663         "i2c mw 19 1 0; i2c mw 19 3 f7; reset\0" \
664         "boot_sd=i2c dev 0; i2c mw 18 1 f8; i2c mw 18 3 0;" \
665         "i2c mw 19 1 4; i2c mw 19 3 f3; reset\0"
666 #endif
667
668 #include <asm/fsl_secure_boot.h>
669
670 #endif  /* __CONFIG_H */