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