blob: 2f3831e2599281a7bbe0d20dd618fce2bdfe6c00 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chunhe Lan2016d452013-06-14 16:21:48 +08002/*
3 * Copyright 2013 Freescale Semiconductor, Inc.
4 *
5 * Authors: Roy Zang <tie-fei.zang@freescale.com>
6 * Chunhe Lan <Chunhe.Lan@freescale.com>
Chunhe Lan2016d452013-06-14 16:21:48 +08007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Chunhe Lan2016d452013-06-14 16:21:48 +080012#ifndef CONFIG_SYS_MONITOR_BASE
13#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
14#endif
15
16#ifndef CONFIG_RESET_VECTOR_ADDRESS
17#define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc
18#endif
19
20/* High Level Configuration Options */
Chunhe Lan2016d452013-06-14 16:21:48 +080021
Chunhe Lan2016d452013-06-14 16:21:48 +080022#define CONFIG_PCI_INDIRECT_BRIDGE /* indirect PCI bridge support */
Robert P. J. Daya8099812016-05-03 19:52:49 -040023#define CONFIG_PCIE1 /* PCIE controller 1 (slot 1) */
24#define CONFIG_PCIE2 /* PCIE controller 2 (slot 2) */
25#define CONFIG_PCIE3 /* PCIE controller 3 (slot 3) */
Chunhe Lan2016d452013-06-14 16:21:48 +080026#define CONFIG_FSL_PCI_INIT /* Use common FSL init code */
Chunhe Lan2016d452013-06-14 16:21:48 +080027#define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */
Chunhe Lan2016d452013-06-14 16:21:48 +080028
29#ifndef __ASSEMBLY__
30extern unsigned long get_clock_freq(void);
31#endif
32
33#define CONFIG_SYS_CLK_FREQ 66666666
34#define CONFIG_DDR_CLK_FREQ CONFIG_SYS_CLK_FREQ
35
36/*
37 * These can be toggled for performance analysis, otherwise use default.
38 */
39#define CONFIG_L2_CACHE /* toggle L2 cache */
40#define CONFIG_BTB /* toggle branch predition */
41#define CONFIG_HWCONFIG
42
43#define CONFIG_ENABLE_36BIT_PHYS
44
Chunhe Lan2016d452013-06-14 16:21:48 +080045/* Implement conversion of addresses in the LBC */
46#define CONFIG_SYS_LBC_LBCR 0x00000000
47#define CONFIG_SYS_LBC_LCRR LCRR_CLKDIV_8
48
49/* DDR Setup */
50#define CONFIG_VERY_BIG_RAM
51#define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000
52#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
53
54#define CONFIG_DIMM_SLOTS_PER_CTLR 1
55#define CONFIG_CHIP_SELECTS_PER_CTRL 1
56
57#define CONFIG_DDR_SPD
Chunhe Lan2016d452013-06-14 16:21:48 +080058#define CONFIG_SYS_SDRAM_SIZE 512u /* DDR is 512M */
59#define CONFIG_SYS_SPD_BUS_NUM 0
60#define SPD_EEPROM_ADDRESS 0x50
61#define CONFIG_SYS_DDR_RAW_TIMING
62
63/*
64 * Memory map
65 *
66 * 0x0000_0000 0x1fff_ffff DDR 512M cacheable
67 * 0x8000_0000 0xbfff_ffff PCI Express Mem 1G non-cacheable
68 * 0xc000_0000 0xdfff_ffff PCI 512M non-cacheable
69 * 0xe100_0000 0xe3ff_ffff PCI IO range 4M non-cacheable
70 * 0xff00_0000 0xff3f_ffff DPAA_QBMAN 4M cacheable
71 * 0xff60_0000 0xff7f_ffff CCSR 2M non-cacheable
72 * 0xffd0_0000 0xffd0_3fff L1 for stack 16K cacheable TLB0
73 *
74 * Localbus non-cacheable
75 *
76 * 0xec00_0000 0xefff_ffff NOR flash 64M non-cacheable
77 * 0xffa0_0000 0xffaf_ffff NAND 1M non-cacheable
78 */
79
80/*
81 * Local Bus Definitions
82 */
83#define CONFIG_SYS_FLASH_BASE 0xec000000 /* start of FLASH 64M */
84#define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE
85
86#define CONFIG_FLASH_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) \
87 | BR_PS_16 | BR_V)
88#define CONFIG_FLASH_OR_PRELIM 0xfc000ff7
89
Chunhe Lan2016d452013-06-14 16:21:48 +080090#define CONFIG_SYS_FLASH_EMPTY_INFO
91#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
92#define CONFIG_SYS_MAX_FLASH_SECT 512 /* sectors per device */
93#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
94#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
95
Chunhe Lan2016d452013-06-14 16:21:48 +080096#define CONFIG_SYS_INIT_RAM_LOCK
97#define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* Initial L1 address */
98#define CONFIG_SYS_INIT_RAM_SIZE 0x00004000/* Size of used area in RAM */
99#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
100 GENERATED_GBL_DATA_SIZE)
101#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
102
Prabhakar Kushwahaf4027312014-03-31 15:31:48 +0530103#define CONFIG_SYS_MONITOR_LEN (768 * 1024) /* Reserve 512 kB for Mon */
Chunhe Lan2016d452013-06-14 16:21:48 +0800104#define CONFIG_SYS_MALLOC_LEN (6 * 1024 * 1024) /* Reserved for malloc */
105
106#define CONFIG_SYS_NAND_BASE 0xffa00000
107#define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE
108
109#define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE }
110#define CONFIG_SYS_MAX_NAND_DEVICE 1
Chunhe Lan2016d452013-06-14 16:21:48 +0800111#define CONFIG_NAND_FSL_ELBC
112#define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
113
114/* NAND flash config */
115#define CONFIG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \
116 | (2<<BR_DECC_SHIFT) /* Use HW ECC */ \
117 | BR_PS_8 /* Port Size = 8bit */ \
118 | BR_MS_FCM /* MSEL = FCM */ \
119 | BR_V) /* valid */
120#define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_256KB /* length 256K */ \
121 | OR_FCM_PGS \
122 | OR_FCM_CSCT \
123 | OR_FCM_CST \
124 | OR_FCM_CHT \
125 | OR_FCM_SCY_1 \
126 | OR_FCM_TRLX \
127 | OR_FCM_EHTR)
128
129#define CONFIG_SYS_BR0_PRELIM CONFIG_FLASH_BR_PRELIM /* NOR Base Address */
130#define CONFIG_SYS_OR0_PRELIM CONFIG_FLASH_OR_PRELIM /* NOR Options */
131#define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM
132#define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */
133
134/* Serial Port */
Chunhe Lan2016d452013-06-14 16:21:48 +0800135#undef CONFIG_SERIAL_SOFTWARE_FIFO
Chunhe Lan2016d452013-06-14 16:21:48 +0800136#define CONFIG_SYS_NS16550_SERIAL
137#define CONFIG_SYS_NS16550_REG_SIZE 1
138#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
139
140#define CONFIG_SYS_BAUDRATE_TABLE \
141 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
142
143#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR + 0x4500)
144#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR + 0x4600)
145
Chunhe Lan2016d452013-06-14 16:21:48 +0800146/* I2C */
Heiko Schocherf2850742012-10-24 13:48:22 +0200147#define CONFIG_SYS_I2C
148#define CONFIG_SYS_I2C_FSL
149#define CONFIG_SYS_FSL_I2C_SPEED 400000
150#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
151#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
152#define CONFIG_SYS_FSL_I2C2_SPEED 400000
153#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
154#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
Chunhe Lan2016d452013-06-14 16:21:48 +0800155
156/*
157 * I2C2 EEPROM
158 */
159#define CONFIG_ID_EEPROM
160#ifdef CONFIG_ID_EEPROM
161#define CONFIG_SYS_I2C_EEPROM_NXID
162#endif
163#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
164#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
165#define CONFIG_SYS_EEPROM_BUS_NUM 0
166
Chunhe Lan2016d452013-06-14 16:21:48 +0800167/*
168 * General PCI
169 * Memory space is mapped 1-1, but I/O space must start from 0.
170 */
171
172/* controller 3, Slot 1, tgtid 3, Base address b000 */
173#define CONFIG_SYS_PCIE3_NAME "Slot 3"
174#define CONFIG_SYS_PCIE3_MEM_VIRT 0x80000000
175#define CONFIG_SYS_PCIE3_MEM_BUS 0x80000000
176#define CONFIG_SYS_PCIE3_MEM_PHYS 0x80000000
177#define CONFIG_SYS_PCIE3_MEM_SIZE 0x20000000 /* 512M */
178#define CONFIG_SYS_PCIE3_IO_VIRT 0xffc00000
179#define CONFIG_SYS_PCIE3_IO_BUS 0x00000000
180#define CONFIG_SYS_PCIE3_IO_PHYS 0xffc00000
181#define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */
182
183/* controller 2, direct to uli, tgtid 2, Base address 9000 */
184#define CONFIG_SYS_PCIE2_NAME "Slot 2"
185#define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000
186#define CONFIG_SYS_PCIE2_MEM_BUS 0xa0000000
187#define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000
188#define CONFIG_SYS_PCIE2_MEM_SIZE 0x20000000 /* 512M */
189#define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000
190#define CONFIG_SYS_PCIE2_IO_BUS 0x00000000
191#define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000
192#define CONFIG_SYS_PCIE2_IO_SIZE 0x00010000 /* 64k */
193
194/* controller 1, Slot 2, tgtid 1, Base address a000 */
195#define CONFIG_SYS_PCIE1_NAME "Slot 1"
196#define CONFIG_SYS_PCIE1_MEM_VIRT 0xc0000000
197#define CONFIG_SYS_PCIE1_MEM_BUS 0xc0000000
198#define CONFIG_SYS_PCIE1_MEM_PHYS 0xc0000000
199#define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */
200#define CONFIG_SYS_PCIE1_IO_VIRT 0xffc20000
201#define CONFIG_SYS_PCIE1_IO_BUS 0x00000000
202#define CONFIG_SYS_PCIE1_IO_PHYS 0xffc20000
203#define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */
204
205#if defined(CONFIG_PCI)
Chunhe Lan2016d452013-06-14 16:21:48 +0800206#define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
207#endif /* CONFIG_PCI */
208
209/*
210 * Environment
211 */
212#define CONFIG_ENV_OVERWRITE
213
Chunhe Lan2016d452013-06-14 16:21:48 +0800214#define CONFIG_LOADS_ECHO /* echo on for serial download */
215#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
216
217/*
Chunhe Lan2016d452013-06-14 16:21:48 +0800218 * USB
219 */
220#define CONFIG_HAS_FSL_DR_USB
221#ifdef CONFIG_HAS_FSL_DR_USB
Tom Riniceed5d22017-05-12 22:33:27 -0400222#ifdef CONFIG_USB_EHCI_HCD
Chunhe Lan2016d452013-06-14 16:21:48 +0800223#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
224#define CONFIG_USB_EHCI_FSL
Chunhe Lan2016d452013-06-14 16:21:48 +0800225#endif
226#endif
227
228/*
229 * Miscellaneous configurable options
230 */
Chunhe Lan2016d452013-06-14 16:21:48 +0800231#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Chunhe Lan2016d452013-06-14 16:21:48 +0800232
233/*
234 * For booting Linux, the board info and command line data
235 * have to be in the first 64 MB of memory, since this is
236 * the maximum mapped by the Linux kernel during initialization.
237 */
238#define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux*/
239#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
240
241/*
242 * Environment Configuration
243 */
244#define CONFIG_BOOTFILE "uImage"
245#define CONFIG_UBOOTPATH (u-boot.bin) /* U-Boot image on TFTP server */
246
247/* default location for tftp and bootm */
248#define CONFIG_LOADADDR 1000000
249
Chunhe Lan2016d452013-06-14 16:21:48 +0800250/* Qman/Bman */
Chunhe Lan2016d452013-06-14 16:21:48 +0800251#define CONFIG_SYS_QMAN_MEM_BASE 0xff000000
252#define CONFIG_SYS_QMAN_MEM_PHYS CONFIG_SYS_QMAN_MEM_BASE
253#define CONFIG_SYS_QMAN_MEM_SIZE 0x00200000
Jeffrey Ladouceurff2c6462014-12-08 14:54:01 -0500254#define CONFIG_SYS_QMAN_SP_CENA_SIZE 0x4000
255#define CONFIG_SYS_QMAN_SP_CINH_SIZE 0x1000
256#define CONFIG_SYS_QMAN_CENA_BASE CONFIG_SYS_QMAN_MEM_BASE
257#define CONFIG_SYS_QMAN_CENA_SIZE (CONFIG_SYS_QMAN_MEM_SIZE >> 1)
258#define CONFIG_SYS_QMAN_CINH_BASE (CONFIG_SYS_QMAN_MEM_BASE + \
259 CONFIG_SYS_QMAN_CENA_SIZE)
260#define CONFIG_SYS_QMAN_CINH_SIZE (CONFIG_SYS_QMAN_MEM_SIZE >> 1)
261#define CONFIG_SYS_QMAN_SWP_ISDR_REG 0xE08
Chunhe Lan2016d452013-06-14 16:21:48 +0800262#define CONFIG_SYS_BMAN_MEM_BASE 0xff200000
263#define CONFIG_SYS_BMAN_MEM_PHYS CONFIG_SYS_BMAN_MEM_BASE
264#define CONFIG_SYS_BMAN_MEM_SIZE 0x00200000
Jeffrey Ladouceurff2c6462014-12-08 14:54:01 -0500265#define CONFIG_SYS_BMAN_SP_CENA_SIZE 0x4000
266#define CONFIG_SYS_BMAN_SP_CINH_SIZE 0x1000
267#define CONFIG_SYS_BMAN_CENA_BASE CONFIG_SYS_BMAN_MEM_BASE
268#define CONFIG_SYS_BMAN_CENA_SIZE (CONFIG_SYS_BMAN_MEM_SIZE >> 1)
269#define CONFIG_SYS_BMAN_CINH_BASE (CONFIG_SYS_BMAN_MEM_BASE + \
270 CONFIG_SYS_BMAN_CENA_SIZE)
271#define CONFIG_SYS_BMAN_CINH_SIZE (CONFIG_SYS_BMAN_MEM_SIZE >> 1)
272#define CONFIG_SYS_BMAN_SWP_ISDR_REG 0xE08
Chunhe Lan2016d452013-06-14 16:21:48 +0800273
274/* For FM */
275#define CONFIG_SYS_DPAA_FMAN
Chunhe Lan2016d452013-06-14 16:21:48 +0800276
Chunhe Lan2016d452013-06-14 16:21:48 +0800277/* Default address of microcode for the Linux Fman driver */
278/* QE microcode/firmware address */
Zhao Qiang83a90842014-03-21 16:21:44 +0800279#define CONFIG_SYS_FMAN_FW_ADDR 0xEFF00000
Chunhe Lan2016d452013-06-14 16:21:48 +0800280#define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x10000
281#define CONFIG_SYS_FDT_PAD (0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH)
282
283#ifdef CONFIG_FMAN_ENET
284#define CONFIG_SYS_FM1_DTSEC1_PHY_ADDR 0x1
285#define CONFIG_SYS_FM1_DTSEC2_PHY_ADDR 0x2
286
287#define CONFIG_SYS_TBIPA_VALUE 8
Chunhe Lan2016d452013-06-14 16:21:48 +0800288#define CONFIG_ETHPRIME "FM1@DTSEC1"
289#endif
290
291#define CONFIG_EXTRA_ENV_SETTINGS \
Chunhe Lan2cd7cd22014-10-17 16:24:06 +0800292 "netdev=eth0\0" \
293 "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \
294 "loadaddr=1000000\0" \
295 "ubootaddr=" __stringify(CONFIG_SYS_TEXT_BASE) "\0" \
296 "tftpflash=tftpboot $loadaddr $uboot; " \
297 "protect off $ubootaddr +$filesize; " \
298 "erase $ubootaddr +$filesize; " \
299 "cp.b $loadaddr $ubootaddr $filesize; " \
300 "protect on $ubootaddr +$filesize; " \
301 "cmp.b $loadaddr $ubootaddr $filesize\0" \
302 "consoledev=ttyS0\0" \
303 "ramdiskaddr=2000000\0" \
304 "ramdiskfile=rootfs.ext2.gz.uboot\0" \
Scott Woodb7f4b852016-07-19 17:52:06 -0500305 "fdtaddr=1e00000\0" \
Chunhe Lan2cd7cd22014-10-17 16:24:06 +0800306 "fdtfile=p1023rdb.dtb\0" \
307 "othbootargs=ramdisk_size=600000\0" \
308 "bdev=sda1\0" \
Chunhe Lan2016d452013-06-14 16:21:48 +0800309 "hwconfig=usb1:dr_mode=host,phy_type=ulpi\0"
310
Chunhe Lan2cd7cd22014-10-17 16:24:06 +0800311#define CONFIG_HDBOOT \
312 "setenv bootargs root=/dev/$bdev rw " \
313 "console=$consoledev,$baudrate $othbootargs;" \
314 "tftp $loadaddr $bootfile;" \
315 "tftp $fdtaddr $fdtfile;" \
316 "bootm $loadaddr - $fdtaddr"
317
318#define CONFIG_NFSBOOTCOMMAND \
319 "setenv bootargs root=/dev/nfs rw " \
320 "nfsroot=$serverip:$rootpath " \
321 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
322 "console=$consoledev,$baudrate $othbootargs;" \
323 "tftp $loadaddr $bootfile;" \
324 "tftp $fdtaddr $fdtfile;" \
325 "bootm $loadaddr - $fdtaddr"
326
327#define CONFIG_RAMBOOTCOMMAND \
328 "setenv bootargs root=/dev/ram rw " \
329 "console=$consoledev,$baudrate $othbootargs;" \
330 "tftp $ramdiskaddr $ramdiskfile;" \
331 "tftp $loadaddr $bootfile;" \
332 "tftp $fdtaddr $fdtfile;" \
333 "bootm $loadaddr $ramdiskaddr $fdtaddr"
334
335#define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND
336
Chunhe Lan2016d452013-06-14 16:21:48 +0800337#endif /* __CONFIG_H */