blob: 9fc22f0a6cbce993c52d35ec9aebf275c2a09a44 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Li Yang5f999732011-07-26 09:50:46 -05002/*
3 * Copyright 2010-2011 Freescale Semiconductor, Inc.
Biwen Lib0939dd2020-05-01 20:04:01 +08004 * Copyright 2020 NXP
Li Yang5f999732011-07-26 09:50:46 -05005 */
6
7/*
8 * QorIQ RDB boards configuration file
9 */
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Simon Glassfb64e362020-05-10 11:40:09 -060013#include <linux/stringify.h>
14
York Sun443108bf2016-11-17 13:52:44 -080015#if defined(CONFIG_TARGET_P1020RDB_PC)
Li Yang5f999732011-07-26 09:50:46 -050016#define CONFIG_VSC7385_ENET
17#define CONFIG_SLIC
18#define __SW_BOOT_MASK 0x03
19#define __SW_BOOT_NOR 0x5c
20#define __SW_BOOT_SPI 0x1c
21#define __SW_BOOT_SD 0x9c
22#define __SW_BOOT_NAND 0xec
23#define __SW_BOOT_PCIE 0x6c
Pali Rohár108bfdc2022-04-07 12:16:22 +020024#define __SW_NOR_BANK_MASK 0xfd
25#define __SW_NOR_BANK_UP 0x00
26#define __SW_NOR_BANK_LO 0x02
Pali Rohár6037f902022-04-25 16:50:43 +020027#define __SW_BOOT_NOR_BANK_UP 0x5c /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */
28#define __SW_BOOT_NOR_BANK_LO 0x5e /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */
29#define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */
Li Yang5f999732011-07-26 09:50:46 -050030#endif
31
Haijun.Zhanga434d0a2013-06-28 10:47:09 +080032/*
33 * P1020RDB-PD board has user selectable switches for evaluating different
34 * frequency and boot options for the P1020 device. The table that
35 * follow describe the available options. The front six binary number was in
36 * accordance with SW3[1:6].
37 * 111101 533 533 267 667 NOR Core0 boot; Core1 hold-off
38 * 101101 667 667 333 667 NOR Core0 boot; Core1 hold-off
39 * 011001 800 800 400 667 NOR Core0 boot; Core1 hold-off
40 * 001001 800 800 400 667 SD/MMC Core0 boot; Core1 hold-off
41 * 001101 800 800 400 667 SPI Core0 boot; Core1 hold-off
42 * 010001 800 800 400 667 NAND Core0 boot; Core1 hold-off
43 * 011101 800 800 400 667 PCIe-2 Core0 boot; Core1 hold-off
44 */
York Sun06732382016-11-17 13:53:33 -080045#if defined(CONFIG_TARGET_P1020RDB_PD)
Haijun.Zhanga434d0a2013-06-28 10:47:09 +080046#define CONFIG_VSC7385_ENET
47#define CONFIG_SLIC
48#define __SW_BOOT_MASK 0x03
49#define __SW_BOOT_NOR 0x64
50#define __SW_BOOT_SPI 0x34
51#define __SW_BOOT_SD 0x24
52#define __SW_BOOT_NAND 0x44
53#define __SW_BOOT_PCIE 0x74
Pali Rohár108bfdc2022-04-07 12:16:22 +020054#define __SW_NOR_BANK_MASK 0xfd
55#define __SW_NOR_BANK_UP 0x00
56#define __SW_NOR_BANK_LO 0x02
Pali Rohár6037f902022-04-25 16:50:43 +020057#define __SW_BOOT_NOR_BANK_UP 0x64 /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */
58#define __SW_BOOT_NOR_BANK_LO 0x66 /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */
59#define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */
Yangbo Lu140b2bb2014-10-16 10:58:55 +080060/*
61 * Dynamic MTD Partition support with mtdparts
62 */
Haijun.Zhanga434d0a2013-06-28 10:47:09 +080063#endif
64
York Sun9c01ff22016-11-17 14:19:18 -080065#if defined(CONFIG_TARGET_P2020RDB)
Li Yang5f999732011-07-26 09:50:46 -050066#define CONFIG_VSC7385_ENET
67#define __SW_BOOT_MASK 0x03
68#define __SW_BOOT_NOR 0xc8
69#define __SW_BOOT_SPI 0x28
Pali Rohár521973b2022-04-07 12:16:15 +020070#define __SW_BOOT_SD 0x68
71#define __SW_BOOT_SD2 0x18
Li Yang5f999732011-07-26 09:50:46 -050072#define __SW_BOOT_NAND 0xe8
73#define __SW_BOOT_PCIE 0xa8
Pali Rohár108bfdc2022-04-07 12:16:22 +020074#define __SW_NOR_BANK_MASK 0xfd
75#define __SW_NOR_BANK_UP 0x00
76#define __SW_NOR_BANK_LO 0x02
Pali Rohár6037f902022-04-25 16:50:43 +020077#define __SW_BOOT_NOR_BANK_UP 0xc8 /* (__SW_BOOT_NOR | __SW_NOR_BANK_UP) */
78#define __SW_BOOT_NOR_BANK_LO 0xca /* (__SW_BOOT_NOR | __SW_NOR_BANK_LO) */
79#define __SW_BOOT_NOR_BANK_MASK 0x01 /* (__SW_BOOT_MASK & __SW_NOR_BANK_MASK) */
Yangbo Lu140b2bb2014-10-16 10:58:55 +080080/*
81 * Dynamic MTD Partition support with mtdparts
82 */
Li Yang5f999732011-07-26 09:50:46 -050083#endif
84
85#ifdef CONFIG_SDCARD
Prabhakar Kushwahaf2036562014-01-14 11:34:26 +053086#define CONFIG_SYS_MMC_U_BOOT_SIZE (768 << 10)
Simon Glass72cc5382022-10-20 18:22:39 -060087#define CONFIG_SYS_MMC_U_BOOT_DST CONFIG_TEXT_BASE
88#define CONFIG_SYS_MMC_U_BOOT_START CONFIG_TEXT_BASE
Pali Rohár78cc13c2022-08-01 14:50:12 +020089#ifdef CONFIG_FSL_PREPBL_ESDHC_BOOT_SECTOR
90#define CONFIG_SYS_MMC_U_BOOT_OFFS (CONFIG_SPL_PAD_TO - CONFIG_FSL_PREPBL_ESDHC_BOOT_SECTOR_DATA*512)
91#else
Pali Rohár9f764102022-07-28 11:10:12 +080092#define CONFIG_SYS_MMC_U_BOOT_OFFS CONFIG_SPL_PAD_TO
Pali Rohár78cc13c2022-08-01 14:50:12 +020093#endif
Tom Rinia73788c2021-09-22 14:50:37 -040094#elif defined(CONFIG_SPIFLASH)
Prabhakar Kushwahaf2036562014-01-14 11:34:26 +053095#define CONFIG_SYS_SPI_FLASH_U_BOOT_SIZE (768 << 10)
Simon Glass72cc5382022-10-20 18:22:39 -060096#define CONFIG_SYS_SPI_FLASH_U_BOOT_DST CONFIG_TEXT_BASE
97#define CONFIG_SYS_SPI_FLASH_U_BOOT_START CONFIG_TEXT_BASE
Pali Rohár9f764102022-07-28 11:10:12 +080098#define CONFIG_SYS_SPI_FLASH_U_BOOT_OFFS CONFIG_SPL_PAD_TO
Tom Rinia73788c2021-09-22 14:50:37 -040099#elif defined(CONFIG_MTD_RAW_NAND)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800100#ifdef CONFIG_TPL_BUILD
Tom Rinib4213492022-11-12 17:36:51 -0500101#define CFG_SYS_NAND_U_BOOT_SIZE (832 << 10)
102#define CFG_SYS_NAND_U_BOOT_DST (0x11000000)
103#define CFG_SYS_NAND_U_BOOT_START (0x11000000)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800104#elif defined(CONFIG_SPL_BUILD)
Tom Rinib4213492022-11-12 17:36:51 -0500105#define CFG_SYS_NAND_U_BOOT_SIZE (128 << 10)
106#define CFG_SYS_NAND_U_BOOT_DST 0xf8f80000
107#define CFG_SYS_NAND_U_BOOT_START 0xf8f80000
Ying Zhangb8b404d2013-09-06 17:30:58 +0800108#endif /* not CONFIG_TPL_BUILD */
Li Yang5f999732011-07-26 09:50:46 -0500109#endif
110
Li Yang5f999732011-07-26 09:50:46 -0500111#ifndef CONFIG_RESET_VECTOR_ADDRESS
112#define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc
113#endif
114
Li Yang5f999732011-07-26 09:50:46 -0500115#define CONFIG_HWCONFIG
116/*
117 * These can be toggled for performance analysis, otherwise use default.
118 */
119#define CONFIG_L2_CACHE
Li Yang5f999732011-07-26 09:50:46 -0500120
Li Yang5f999732011-07-26 09:50:46 -0500121#define CONFIG_SYS_CCSRBAR 0xffe00000
122#define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR
123
Li Yang5f999732011-07-26 09:50:46 -0500124/* DDR Setup */
Li Yang5f999732011-07-26 09:50:46 -0500125#define SPD_EEPROM_ADDRESS 0x52
Li Yang5f999732011-07-26 09:50:46 -0500126
Priyanka Jainb1d24412020-09-21 11:56:39 +0530127#if defined(CONFIG_TARGET_P1020RDB_PD)
Li Yang5f999732011-07-26 09:50:46 -0500128#define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_2G
Li Yang5f999732011-07-26 09:50:46 -0500129#else
130#define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_1G
Li Yang5f999732011-07-26 09:50:46 -0500131#endif
132#define CONFIG_SYS_SDRAM_SIZE (1u << (CONFIG_SYS_SDRAM_SIZE_LAW - 19))
133#define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000
134#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
135
Li Yang5f999732011-07-26 09:50:46 -0500136/* Default settings for DDR3 */
York Sun9c01ff22016-11-17 14:19:18 -0800137#ifndef CONFIG_TARGET_P2020RDB
Li Yang5f999732011-07-26 09:50:46 -0500138#define CONFIG_SYS_DDR_CS0_BNDS 0x0000003f
139#define CONFIG_SYS_DDR_CS0_CONFIG 0x80014302
140#define CONFIG_SYS_DDR_CS0_CONFIG_2 0x00000000
141#define CONFIG_SYS_DDR_CS1_BNDS 0x0040007f
142#define CONFIG_SYS_DDR_CS1_CONFIG 0x80014302
143#define CONFIG_SYS_DDR_CS1_CONFIG_2 0x00000000
144
Li Yang5f999732011-07-26 09:50:46 -0500145#define CONFIG_SYS_DDR_INIT_ADDR 0x00000000
146#define CONFIG_SYS_DDR_INIT_EXT_ADDR 0x00000000
147#define CONFIG_SYS_DDR_MODE_CONTROL 0x00000000
148
149#define CONFIG_SYS_DDR_ZQ_CONTROL 0x89080600
150#define CONFIG_SYS_DDR_WRLVL_CONTROL 0x8655A608
151#define CONFIG_SYS_DDR_SR_CNTR 0x00000000
152#define CONFIG_SYS_DDR_RCW_1 0x00000000
153#define CONFIG_SYS_DDR_RCW_2 0x00000000
154#define CONFIG_SYS_DDR_CONTROL 0xC70C0000 /* Type = DDR3 */
155#define CONFIG_SYS_DDR_CONTROL_2 0x04401050
156#define CONFIG_SYS_DDR_TIMING_4 0x00220001
157#define CONFIG_SYS_DDR_TIMING_5 0x03402400
158
159#define CONFIG_SYS_DDR_TIMING_3 0x00020000
160#define CONFIG_SYS_DDR_TIMING_0 0x00330004
161#define CONFIG_SYS_DDR_TIMING_1 0x6f6B4846
162#define CONFIG_SYS_DDR_TIMING_2 0x0FA8C8CF
163#define CONFIG_SYS_DDR_CLK_CTRL 0x03000000
164#define CONFIG_SYS_DDR_MODE_1 0x40461520
165#define CONFIG_SYS_DDR_MODE_2 0x8000c000
166#define CONFIG_SYS_DDR_INTERVAL 0x0C300000
167#endif
168
Li Yang5f999732011-07-26 09:50:46 -0500169/*
170 * Memory map
171 *
Scott Wood5e621872012-10-02 19:35:18 -0500172 * 0x0000_0000 0x7fff_ffff DDR Up to 2GB cacheable
Li Yang5f999732011-07-26 09:50:46 -0500173 * 0x8000_0000 0xdfff_ffff PCI Express Mem 1.5G non-cacheable(PCIe * 3)
Scott Wood5e621872012-10-02 19:35:18 -0500174 * 0xec00_0000 0xefff_ffff NOR flash Up to 64M non-cacheable CS0/1
Scott Wood03fedda2012-10-12 18:02:24 -0500175 * 0xf8f8_0000 0xf8ff_ffff L2 SRAM Up to 512K cacheable
176 * (early boot only)
Scott Wood5e621872012-10-02 19:35:18 -0500177 * 0xff80_0000 0xff80_7fff NAND flash 32K non-cacheable CS1/0
Scott Wood5e621872012-10-02 19:35:18 -0500178 * 0xffa0_0000 0xffaf_ffff CPLD 1M non-cacheable CS3
179 * 0xffb0_0000 0xffbf_ffff VSC7385 switch 1M non-cacheable CS2
Li Yang5f999732011-07-26 09:50:46 -0500180 * 0xffc0_0000 0xffc3_ffff PCI IO range 256k non-cacheable
Scott Wood5e621872012-10-02 19:35:18 -0500181 * 0xffd0_0000 0xffd0_3fff L1 for stack 16K cacheable
Scott Wood5e621872012-10-02 19:35:18 -0500182 * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable
Li Yang5f999732011-07-26 09:50:46 -0500183 */
184
Li Yang5f999732011-07-26 09:50:46 -0500185/*
186 * Local Bus Definitions
187 */
Priyanka Jainb1d24412020-09-21 11:56:39 +0530188#if defined(CONFIG_TARGET_P1020RDB_PD)
Li Yang5f999732011-07-26 09:50:46 -0500189#define CONFIG_SYS_FLASH_BASE 0xec000000
Li Yang5f999732011-07-26 09:50:46 -0500190#else
Li Yang5f999732011-07-26 09:50:46 -0500191#define CONFIG_SYS_FLASH_BASE 0xef000000
192#endif
193
Li Yang5f999732011-07-26 09:50:46 -0500194#ifdef CONFIG_PHYS_64BIT
195#define CONFIG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CONFIG_SYS_FLASH_BASE)
196#else
197#define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE
198#endif
199
Timur Tabib56570c2012-07-06 07:39:26 +0000200#define CONFIG_FLASH_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) \
Li Yang5f999732011-07-26 09:50:46 -0500201 | BR_PS_16 | BR_V)
202
203#define CONFIG_FLASH_OR_PRELIM 0xfc000ff7
204
205#define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS}
Li Yang5f999732011-07-26 09:50:46 -0500206#define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */
207
Li Yang5f999732011-07-26 09:50:46 -0500208/* Nand Flash */
209#ifdef CONFIG_NAND_FSL_ELBC
Tom Rinib4213492022-11-12 17:36:51 -0500210#define CFG_SYS_NAND_BASE 0xff800000
Li Yang5f999732011-07-26 09:50:46 -0500211#ifdef CONFIG_PHYS_64BIT
Tom Rinib4213492022-11-12 17:36:51 -0500212#define CFG_SYS_NAND_BASE_PHYS 0xfff800000ull
Li Yang5f999732011-07-26 09:50:46 -0500213#else
Tom Rinib4213492022-11-12 17:36:51 -0500214#define CFG_SYS_NAND_BASE_PHYS CFG_SYS_NAND_BASE
Li Yang5f999732011-07-26 09:50:46 -0500215#endif
216
Tom Rinib4213492022-11-12 17:36:51 -0500217#define CFG_SYS_NAND_BASE_LIST { CFG_SYS_NAND_BASE }
Li Yang5f999732011-07-26 09:50:46 -0500218
Tom Rinib4213492022-11-12 17:36:51 -0500219#define CFG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CFG_SYS_NAND_BASE_PHYS) \
Li Yang5f999732011-07-26 09:50:46 -0500220 | (2<<BR_DECC_SHIFT) /* Use HW ECC */ \
221 | BR_PS_8 /* Port Size = 8 bit */ \
222 | BR_MS_FCM /* MSEL = FCM */ \
223 | BR_V) /* valid */
York Sun06732382016-11-17 13:53:33 -0800224#if defined(CONFIG_TARGET_P1020RDB_PD)
Tom Rinib4213492022-11-12 17:36:51 -0500225#define CFG_SYS_NAND_OR_PRELIM (OR_AM_32KB \
Haijun.Zhanga434d0a2013-06-28 10:47:09 +0800226 | OR_FCM_PGS /* Large Page*/ \
227 | OR_FCM_CSCT \
228 | OR_FCM_CST \
229 | OR_FCM_CHT \
230 | OR_FCM_SCY_1 \
231 | OR_FCM_TRLX \
232 | OR_FCM_EHTR)
233#else
Tom Rinib4213492022-11-12 17:36:51 -0500234#define CFG_SYS_NAND_OR_PRELIM (OR_AM_32KB /* small page */ \
Li Yang5f999732011-07-26 09:50:46 -0500235 | OR_FCM_CSCT \
236 | OR_FCM_CST \
237 | OR_FCM_CHT \
238 | OR_FCM_SCY_1 \
239 | OR_FCM_TRLX \
240 | OR_FCM_EHTR)
Haijun.Zhanga434d0a2013-06-28 10:47:09 +0800241#endif
Li Yang5f999732011-07-26 09:50:46 -0500242#endif /* CONFIG_NAND_FSL_ELBC */
243
Li Yang5f999732011-07-26 09:50:46 -0500244#define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* stack in RAM */
245#ifdef CONFIG_PHYS_64BIT
246#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf
247#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW CONFIG_SYS_INIT_RAM_ADDR
248/* The assembler doesn't like typecast */
249#define CONFIG_SYS_INIT_RAM_ADDR_PHYS \
250 ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \
251 CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW)
252#else
253/* Initial L1 address */
254#define CONFIG_SYS_INIT_RAM_ADDR_PHYS CONFIG_SYS_INIT_RAM_ADDR
255#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0
256#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW CONFIG_SYS_INIT_RAM_ADDR_PHYS
257#endif
258/* Size of used area in RAM */
259#define CONFIG_SYS_INIT_RAM_SIZE 0x00004000
260
Tom Rini55f37562022-05-24 14:14:02 -0400261#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Li Yang5f999732011-07-26 09:50:46 -0500262
Li Yang5f999732011-07-26 09:50:46 -0500263#define CONFIG_SYS_CPLD_BASE 0xffa00000
264#ifdef CONFIG_PHYS_64BIT
265#define CONFIG_SYS_CPLD_BASE_PHYS 0xfffa00000ull
266#else
267#define CONFIG_SYS_CPLD_BASE_PHYS CONFIG_SYS_CPLD_BASE
268#endif
269/* CPLD config size: 1Mb */
Li Yang5f999732011-07-26 09:50:46 -0500270
Li Yang5f999732011-07-26 09:50:46 -0500271/* Vsc7385 switch */
272#ifdef CONFIG_VSC7385_ENET
Pali Rohár3cac1972022-04-07 12:16:20 +0200273#define __VSCFW_ADDR "vscfw_addr=ef000000\0"
Li Yang5f999732011-07-26 09:50:46 -0500274#define CONFIG_SYS_VSC7385_BASE 0xffb00000
275
276#ifdef CONFIG_PHYS_64BIT
277#define CONFIG_SYS_VSC7385_BASE_PHYS 0xfffb00000ull
278#else
279#define CONFIG_SYS_VSC7385_BASE_PHYS CONFIG_SYS_VSC7385_BASE
280#endif
281
282#define CONFIG_SYS_VSC7385_BR_PRELIM \
283 (BR_PHYS_ADDR(CONFIG_SYS_VSC7385_BASE_PHYS) | BR_PS_8 | BR_V)
284#define CONFIG_SYS_VSC7385_OR_PRELIM (OR_AM_128KB | OR_GPCM_CSNT | \
285 OR_GPCM_XACS | OR_GPCM_SCY_15 | OR_GPCM_SETA | \
286 OR_GPCM_TRLX | OR_GPCM_EHTR | OR_GPCM_EAD)
287
Li Yang5f999732011-07-26 09:50:46 -0500288/* The size of the VSC7385 firmware image */
289#define CONFIG_VSC7385_IMAGE_SIZE 8192
290#endif
291
Pali Rohár3cac1972022-04-07 12:16:20 +0200292#ifndef __VSCFW_ADDR
293#define __VSCFW_ADDR ""
294#endif
295
Ying Zhang28027d72013-09-06 17:30:56 +0800296/*
297 * Config the L2 Cache as L2 SRAM
298*/
299#if defined(CONFIG_SPL_BUILD)
Ying Zhangf74fd4e2013-09-06 17:30:57 +0800300#if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH)
Ying Zhang28027d72013-09-06 17:30:56 +0800301#define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000
302#define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR
303#define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
Miquel Raynald0935362019-10-03 19:50:03 +0200304#elif defined(CONFIG_MTD_RAW_NAND)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800305#ifdef CONFIG_TPL_BUILD
306#define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000
307#define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR
308#define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800309#else
310#define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000
311#define CONFIG_SYS_INIT_L2_ADDR_PHYS CONFIG_SYS_INIT_L2_ADDR
312#define CONFIG_SYS_INIT_L2_END (CONFIG_SYS_INIT_L2_ADDR + CONFIG_SYS_L2_SIZE)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800313#endif /* CONFIG_TPL_BUILD */
Ying Zhang28027d72013-09-06 17:30:56 +0800314#endif
315#endif
316
Li Yang5f999732011-07-26 09:50:46 -0500317/* Serial Port - controlled on board with jumper J8
318 * open - index 2
319 * shorted - index 1
320 */
Li Yang5f999732011-07-26 09:50:46 -0500321#undef CONFIG_SERIAL_SOFTWARE_FIFO
Tom Rinidf6a2152022-11-16 13:10:28 -0500322#define CFG_SYS_NS16550_CLK get_bus_freq(0)
Li Yang5f999732011-07-26 09:50:46 -0500323
324#define CONFIG_SYS_BAUDRATE_TABLE \
325 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
326
Tom Rinidf6a2152022-11-16 13:10:28 -0500327#define CFG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
328#define CFG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
Li Yang5f999732011-07-26 09:50:46 -0500329
Li Yang5f999732011-07-26 09:50:46 -0500330/* I2C */
Igor Opaniukf7c91762021-02-09 13:52:45 +0200331#if !CONFIG_IS_ENABLED(DM_I2C)
Heiko Schocherf2850742012-10-24 13:48:22 +0200332#define CONFIG_SYS_I2C_NOPROBES { {0, 0x29} }
Biwen Lib0939dd2020-05-01 20:04:01 +0800333#endif
334
Li Yang5f999732011-07-26 09:50:46 -0500335/*
336 * I2C2 EEPROM
337 */
Li Yang5f999732011-07-26 09:50:46 -0500338
339#define CONFIG_RTC_PT7C4338
340#define CONFIG_SYS_I2C_RTC_ADDR 0x68
341#define CONFIG_SYS_I2C_PCA9557_ADDR 0x18
342
343/* enable read and write access to EEPROM */
Li Yang5f999732011-07-26 09:50:46 -0500344
Li Yang5f999732011-07-26 09:50:46 -0500345#if defined(CONFIG_PCI)
346/*
347 * General PCI
348 * Memory space is mapped 1-1, but I/O space must start from 0.
349 */
350
351/* controller 2, direct to uli, tgtid 2, Base address 9000 */
Li Yang5f999732011-07-26 09:50:46 -0500352#define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000
353#ifdef CONFIG_PHYS_64BIT
Li Yang5f999732011-07-26 09:50:46 -0500354#define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull
355#else
Li Yang5f999732011-07-26 09:50:46 -0500356#define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000
357#endif
Li Yang5f999732011-07-26 09:50:46 -0500358#define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000
Li Yang5f999732011-07-26 09:50:46 -0500359#ifdef CONFIG_PHYS_64BIT
360#define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull
361#else
362#define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000
363#endif
Li Yang5f999732011-07-26 09:50:46 -0500364
365/* controller 1, Slot 2, tgtid 1, Base address a000 */
Li Yang5f999732011-07-26 09:50:46 -0500366#define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000
367#ifdef CONFIG_PHYS_64BIT
Li Yang5f999732011-07-26 09:50:46 -0500368#define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull
369#else
Li Yang5f999732011-07-26 09:50:46 -0500370#define CONFIG_SYS_PCIE1_MEM_PHYS 0x80000000
371#endif
Li Yang5f999732011-07-26 09:50:46 -0500372#define CONFIG_SYS_PCIE1_IO_VIRT 0xffc00000
Li Yang5f999732011-07-26 09:50:46 -0500373#ifdef CONFIG_PHYS_64BIT
374#define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc00000ull
375#else
376#define CONFIG_SYS_PCIE1_IO_PHYS 0xffc00000
377#endif
Li Yang5f999732011-07-26 09:50:46 -0500378#endif /* CONFIG_PCI */
379
380#if defined(CONFIG_TSEC_ENET)
Li Yang5f999732011-07-26 09:50:46 -0500381#define CONFIG_TSEC1
382#define CONFIG_TSEC1_NAME "eTSEC1"
383#define CONFIG_TSEC2
384#define CONFIG_TSEC2_NAME "eTSEC2"
385#define CONFIG_TSEC3
386#define CONFIG_TSEC3_NAME "eTSEC3"
387
388#define TSEC1_PHY_ADDR 2
389#define TSEC2_PHY_ADDR 0
390#define TSEC3_PHY_ADDR 1
391
392#define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
393#define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
394#define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
395
396#define TSEC1_PHYIDX 0
397#define TSEC2_PHYIDX 0
398#define TSEC3_PHYIDX 0
Li Yang5f999732011-07-26 09:50:46 -0500399#endif /* CONFIG_TSEC_ENET */
400
Li Yang5f999732011-07-26 09:50:46 -0500401/*
402 * Environment
403 */
Tom Rini5989fd42022-06-20 08:07:42 -0400404#if defined(CONFIG_MTD_RAW_NAND)
Ying Zhangb8b404d2013-09-06 17:30:58 +0800405#ifdef CONFIG_TPL_BUILD
Tom Rini5cd7ece2019-11-18 20:02:10 -0500406#define SPL_ENV_ADDR (CONFIG_SYS_INIT_L2_ADDR + (160 << 10))
Ying Zhangb8b404d2013-09-06 17:30:58 +0800407#endif
Li Yang5f999732011-07-26 09:50:46 -0500408#endif
409
Li Yang5f999732011-07-26 09:50:46 -0500410/*
Li Yang5f999732011-07-26 09:50:46 -0500411 * USB
412 */
Li Yang5f999732011-07-26 09:50:46 -0500413
Li Yang5f999732011-07-26 09:50:46 -0500414#ifdef CONFIG_MMC
Tom Rini376b88a2022-10-28 20:27:13 -0400415#define CFG_SYS_FSL_ESDHC_ADDR CFG_SYS_MPC85xx_ESDHC_ADDR
Li Yang5f999732011-07-26 09:50:46 -0500416#endif
417
Li Yang5f999732011-07-26 09:50:46 -0500418/*
419 * Miscellaneous configurable options
420 */
Li Yang5f999732011-07-26 09:50:46 -0500421
422/*
423 * For booting Linux, the board info and command line data
424 * have to be in the first 64 MB of memory, since this is
425 * the maximum mapped by the Linux kernel during initialization.
426 */
427#define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory for Linux*/
Li Yang5f999732011-07-26 09:50:46 -0500428
Li Yang5f999732011-07-26 09:50:46 -0500429/*
430 * Environment Configuration
431 */
Mario Six790d8442018-03-28 14:38:20 +0200432#define CONFIG_HOSTNAME "unknown"
Joe Hershberger257ff782011-10-13 13:03:47 +0000433#define CONFIG_ROOTPATH "/opt/nfsroot"
Li Yang5f999732011-07-26 09:50:46 -0500434#define CONFIG_UBOOTPATH u-boot.bin /* U-Boot image on TFTP server */
435
Pali Roháredbaa2e2022-05-26 10:52:27 +0200436#include "p1_p2_bootsrc.h"
Li Yang5f999732011-07-26 09:50:46 -0500437
438#define CONFIG_EXTRA_ENV_SETTINGS \
439"netdev=eth0\0" \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200440"uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \
Li Yang5f999732011-07-26 09:50:46 -0500441"loadaddr=1000000\0" \
442"bootfile=uImage\0" \
443"tftpflash=tftpboot $loadaddr $uboot; " \
Simon Glass72cc5382022-10-20 18:22:39 -0600444 "protect off " __stringify(CONFIG_TEXT_BASE) " +$filesize; " \
445 "erase " __stringify(CONFIG_TEXT_BASE) " +$filesize; " \
446 "cp.b $loadaddr " __stringify(CONFIG_TEXT_BASE) " $filesize; " \
447 "protect on " __stringify(CONFIG_TEXT_BASE) " +$filesize; " \
448 "cmp.b $loadaddr " __stringify(CONFIG_TEXT_BASE) " $filesize\0" \
Li Yang5f999732011-07-26 09:50:46 -0500449"hwconfig=usb1:dr_mode=host,phy_type=ulpi\0" \
450"consoledev=ttyS0\0" \
451"ramdiskaddr=2000000\0" \
452"ramdiskfile=rootfs.ext2.gz.uboot\0" \
Scott Woodb7f4b852016-07-19 17:52:06 -0500453"fdtaddr=1e00000\0" \
Li Yang5f999732011-07-26 09:50:46 -0500454"bdev=sda1\0" \
455"jffs2nor=mtdblock3\0" \
456"norbootaddr=ef080000\0" \
457"norfdtaddr=ef040000\0" \
458"jffs2nand=mtdblock9\0" \
459"nandbootaddr=100000\0" \
460"nandfdtaddr=80000\0" \
461"ramdisk_size=120000\0" \
Pali Rohár3cac1972022-04-07 12:16:20 +0200462__VSCFW_ADDR \
Pali Roháredbaa2e2022-05-26 10:52:27 +0200463MAP_NOR_LO_CMD(map_lowernorbank) \
464MAP_NOR_UP_CMD(map_uppernorbank) \
465RST_NOR_CMD(norboot) \
Pali Rohár6037f902022-04-25 16:50:43 +0200466RST_NOR_LO_CMD(norlowerboot) \
467RST_NOR_UP_CMD(norupperboot) \
Pali Roháredbaa2e2022-05-26 10:52:27 +0200468RST_SPI_CMD(spiboot) \
469RST_SD_CMD(sdboot) \
Pali Rohár6037f902022-04-25 16:50:43 +0200470RST_SD2_CMD(sd2boot) \
Pali Roháredbaa2e2022-05-26 10:52:27 +0200471RST_NAND_CMD(nandboot) \
472RST_PCIE_CMD(pciboot) \
Pali Rohár6037f902022-04-25 16:50:43 +0200473RST_DEF_CMD(defboot) \
Pali Roháredbaa2e2022-05-26 10:52:27 +0200474""
Li Yang5f999732011-07-26 09:50:46 -0500475
Li Yang5f999732011-07-26 09:50:46 -0500476#define CONFIG_USB_FAT_BOOT \
477"setenv bootargs root=/dev/ram rw " \
478"console=$consoledev,$baudrate $othbootargs " \
479"ramdisk_size=$ramdisk_size;" \
480"usb start;" \
481"fatload usb 0:2 $loadaddr $bootfile;" \
482"fatload usb 0:2 $fdtaddr $fdtfile;" \
483"fatload usb 0:2 $ramdiskaddr $ramdiskfile;" \
484"bootm $loadaddr $ramdiskaddr $fdtaddr"
485
486#define CONFIG_USB_EXT2_BOOT \
487"setenv bootargs root=/dev/ram rw " \
488"console=$consoledev,$baudrate $othbootargs " \
489"ramdisk_size=$ramdisk_size;" \
490"usb start;" \
491"ext2load usb 0:4 $loadaddr $bootfile;" \
492"ext2load usb 0:4 $fdtaddr $fdtfile;" \
493"ext2load usb 0:4 $ramdiskaddr $ramdiskfile;" \
494"bootm $loadaddr $ramdiskaddr $fdtaddr"
495
496#define CONFIG_NORBOOT \
497"setenv bootargs root=/dev/$jffs2nor rw " \
498"console=$consoledev,$baudrate rootfstype=jffs2 $othbootargs;" \
499"bootm $norbootaddr - $norfdtaddr"
500
Li Yang5f999732011-07-26 09:50:46 -0500501#endif /* __CONFIG_H */