blob: cd6c686b890e30fdff77de2ace6a519b71d88330 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocher147d0a22010-07-07 12:26:34 +02002/*
3 * Copyright (C) Freescale Semiconductor, Inc. 2006.
4 *
5 * (C) Copyright 2010
6 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
Heiko Schocher147d0a22010-07-07 12:26:34 +02007 */
8/*
9 * ve8313 board configuration file
10 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
15/*
16 * High Level Configuration Options
17 */
18#define CONFIG_E300 1
Heiko Schocher147d0a22010-07-07 12:26:34 +020019
Gabor Juhosb4458732013-05-30 07:06:12 +000020#define CONFIG_PCI_INDIRECT_BRIDGE 1
Kumar Gala0d555f02010-08-19 01:48:14 -050021#define CONFIG_FSL_ELBC 1
Heiko Schocher147d0a22010-07-07 12:26:34 +020022
Heiko Schocher147d0a22010-07-07 12:26:34 +020023/*
24 * On-board devices
25 *
26 */
Heiko Schocher147d0a22010-07-07 12:26:34 +020027#define CONFIG_SYS_MEMTEST_START 0x00001000
28#define CONFIG_SYS_MEMTEST_END 0x07000000
29
Heiko Schocher147d0a22010-07-07 12:26:34 +020030/*
31 * Device configurations
32 */
33
34/*
35 * DDR Setup
36 */
Mario Sixc9f92772019-01-21 09:18:15 +010037#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory*/
38#define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_SDRAM_BASE
Heiko Schocher147d0a22010-07-07 12:26:34 +020039
40/*
41 * Manually set up DDR parameters, as this board does not
42 * have the SPD connected to I2C.
43 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050044#define CONFIG_SYS_DDR_SIZE 128 /* MB */
Joe Hershberger5ade3902011-10-11 23:57:31 -050045#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Heiko Schocher147d0a22010-07-07 12:26:34 +020046 | CSCONFIG_AP \
Joe Hershbergercc03b802011-10-11 23:57:29 -050047 | CSCONFIG_ODT_RD_NEVER \
48 | CSCONFIG_ODT_WR_ALL \
Joe Hershberger3214e4e2011-10-11 23:57:26 -050049 | CSCONFIG_ROW_BIT_13 \
50 | CSCONFIG_COL_BIT_10)
Heiko Schocher147d0a22010-07-07 12:26:34 +020051 /* 0x80840102 */
52
53#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershberger3214e4e2011-10-11 23:57:26 -050054#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
55 | (0 << TIMING_CFG0_WRT_SHIFT) \
56 | (3 << TIMING_CFG0_RRT_SHIFT) \
57 | (2 << TIMING_CFG0_WWT_SHIFT) \
58 | (7 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
59 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
60 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
61 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Heiko Schocher147d0a22010-07-07 12:26:34 +020062 /* 0x0e720802 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050063#define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \
64 | (6 << TIMING_CFG1_ACTTOPRE_SHIFT) \
65 | (2 << TIMING_CFG1_ACTTORW_SHIFT) \
66 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
67 | (6 << TIMING_CFG1_REFREC_SHIFT) \
68 | (2 << TIMING_CFG1_WRREC_SHIFT) \
69 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
70 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Heiko Schocher147d0a22010-07-07 12:26:34 +020071 /* 0x26256222 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050072#define CONFIG_SYS_DDR_TIMING_2 ((0 << TIMING_CFG2_ADD_LAT_SHIFT) \
73 | (5 << TIMING_CFG2_CPO_SHIFT) \
74 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
75 | (1 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
76 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
77 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
78 | (7 << TIMING_CFG2_FOUR_ACT_SHIFT))
Heiko Schocher147d0a22010-07-07 12:26:34 +020079 /* 0x029028c7 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050080#define CONFIG_SYS_DDR_INTERVAL ((0x320 << SDRAM_INTERVAL_REFINT_SHIFT) \
81 | (0x2000 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Heiko Schocher147d0a22010-07-07 12:26:34 +020082 /* 0x03202000 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050083#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Heiko Schocher147d0a22010-07-07 12:26:34 +020084 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -050085 | SDRAM_CFG_DBW_32)
Heiko Schocher147d0a22010-07-07 12:26:34 +020086 /* 0x43080000 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050087#define CONFIG_SYS_SDRAM_CFG2 0x00401000
88#define CONFIG_SYS_DDR_MODE ((0x4440 << SDRAM_MODE_ESD_SHIFT) \
89 | (0x0232 << SDRAM_MODE_SD_SHIFT))
Heiko Schocher147d0a22010-07-07 12:26:34 +020090 /* 0x44400232 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -050091#define CONFIG_SYS_DDR_MODE_2 0x8000C000
Heiko Schocher147d0a22010-07-07 12:26:34 +020092
93#define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
94 /*0x02000000*/
Joe Hershberger3214e4e2011-10-11 23:57:26 -050095#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Heiko Schocher147d0a22010-07-07 12:26:34 +020096 | DDRCDR_PZ_NOMZ \
97 | DDRCDR_NZ_NOMZ \
Joe Hershberger3214e4e2011-10-11 23:57:26 -050098 | DDRCDR_M_ODR)
Heiko Schocher147d0a22010-07-07 12:26:34 +020099 /* 0x73000002 */
100
101/*
102 * FLASH on the Local Bus
103 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200104#define CONFIG_SYS_FLASH_BASE 0xFE000000
105#define CONFIG_SYS_FLASH_SIZE 32 /* size in MB */
106#define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200107
Heiko Schocher147d0a22010-07-07 12:26:34 +0200108#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
109#define CONFIG_SYS_MAX_FLASH_SECT 256 /* sectors per dev */
110
111#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
112#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
113
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200114#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200115
116#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
117#define CONFIG_SYS_RAMBOOT
118#endif
119
120#define CONFIG_SYS_INIT_RAM_LOCK 1
121#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM address */
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500122#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
Heiko Schocher147d0a22010-07-07 12:26:34 +0200123
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500124#define CONFIG_SYS_GBL_DATA_OFFSET \
125 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Heiko Schocher147d0a22010-07-07 12:26:34 +0200126#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
127
128/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
129#define CONFIG_SYS_MONITOR_LEN (384 * 1024)
130#define CONFIG_SYS_MALLOC_LEN (512 * 1024)
131
132/*
133 * Local Bus LCRR and LBCR regs
134 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200135#define CONFIG_SYS_LBC_LBCR 0x00040000
136
137#define CONFIG_SYS_LBC_MRTPR 0x20000000
138
139/*
140 * NAND settings
141 */
142#define CONFIG_SYS_NAND_BASE 0x61000000
143#define CONFIG_SYS_MAX_NAND_DEVICE 1
Heiko Schocher147d0a22010-07-07 12:26:34 +0200144#define CONFIG_NAND_FSL_ELBC 1
145#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
146
Mario Six72aaee12019-01-21 09:17:42 +0100147
Heiko Schocher147d0a22010-07-07 12:26:34 +0200148
Mario Six72aaee12019-01-21 09:17:42 +0100149/* Still needed for spl_minimal.c */
150#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR1_PRELIM
151#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR1_PRELIM
Heiko Schocher147d0a22010-07-07 12:26:34 +0200152
Heiko Schocher147d0a22010-07-07 12:26:34 +0200153
Heiko Schocher147d0a22010-07-07 12:26:34 +0200154
Heiko Schocher147d0a22010-07-07 12:26:34 +0200155/*
156 * Serial Port
157 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200158#define CONFIG_SYS_NS16550_SERIAL
159#define CONFIG_SYS_NS16550_REG_SIZE 1
160#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
161
162#define CONFIG_SYS_BAUDRATE_TABLE \
163 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
164
165#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
166#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
167
Heiko Schocher147d0a22010-07-07 12:26:34 +0200168#if defined(CONFIG_PCI)
169/*
170 * General PCI
171 * Addresses are mapped 1-1.
172 */
173#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
174#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
175#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
176#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
177#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
178#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500179#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
180#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
181#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200182
Heiko Schocher147d0a22010-07-07 12:26:34 +0200183#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
184#endif
185
186/*
187 * TSEC
188 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200189
Heiko Schocher147d0a22010-07-07 12:26:34 +0200190#define CONFIG_TSEC1
191#ifdef CONFIG_TSEC1
192#define CONFIG_HAS_ETH0
193#define CONFIG_TSEC1_NAME "TSEC1"
194#define CONFIG_SYS_TSEC1_OFFSET 0x24000
195#define TSEC1_PHY_ADDR 0x01
196#define TSEC1_FLAGS 0
197#define TSEC1_PHYIDX 0
198#endif
199
200/* Options are: TSEC[0-1] */
201#define CONFIG_ETHPRIME "TSEC1"
202
203/*
204 * Environment
205 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500206#define CONFIG_ENV_ADDR \
207 (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
Heiko Schocher147d0a22010-07-07 12:26:34 +0200208#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
209#define CONFIG_ENV_SIZE 0x4000
210/* Address and size of Redundant Environment Sector */
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500211#define CONFIG_ENV_OFFSET_REDUND \
212 (CONFIG_ENV_OFFSET + CONFIG_ENV_SECT_SIZE)
Heiko Schocher147d0a22010-07-07 12:26:34 +0200213#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
214
215#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
216#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
217
218/*
219 * BOOTP options
220 */
221#define CONFIG_BOOTP_BOOTFILESIZE
Heiko Schocher147d0a22010-07-07 12:26:34 +0200222
223/*
224 * Command line configuration.
225 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200226
Heiko Schocher147d0a22010-07-07 12:26:34 +0200227/*
228 * Miscellaneous configurable options
229 */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200230#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200231#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
232
Heiko Schocher147d0a22010-07-07 12:26:34 +0200233#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot arg Buffer size */
Heiko Schocher147d0a22010-07-07 12:26:34 +0200234
235/*
236 * For booting Linux, the board info and command line data
Ira W. Snyderc5a22d02010-09-10 15:42:32 -0700237 * have to be in the first 256 MB of memory, since this is
Heiko Schocher147d0a22010-07-07 12:26:34 +0200238 * the maximum mapped by the Linux kernel during initialization.
239 */
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500240 /* Initial Memory map for Linux*/
241#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
Heiko Schocher147d0a22010-07-07 12:26:34 +0200242
Heiko Schocher147d0a22010-07-07 12:26:34 +0200243/* System IO Config */
244#define CONFIG_SYS_SICRH (0x01000000 | \
245 SICRH_ETSEC2_B | \
246 SICRH_ETSEC2_C | \
247 SICRH_ETSEC2_D | \
248 SICRH_ETSEC2_E | \
249 SICRH_ETSEC2_F | \
250 SICRH_ETSEC2_G | \
251 SICRH_TSOBI1 | \
252 SICRH_TSOBI2)
253 /* 0x010fff03 */
254#define CONFIG_SYS_SICRL (SICRL_LBC | \
255 SICRL_SPI_A | \
256 SICRL_SPI_B | \
257 SICRL_SPI_C | \
258 SICRL_SPI_D | \
259 SICRL_ETSEC2_A)
260 /* 0x33fc0003) */
261
Heiko Schocher147d0a22010-07-07 12:26:34 +0200262#define CONFIG_NETDEV eth0
263
Mario Six790d8442018-03-28 14:38:20 +0200264#define CONFIG_HOSTNAME "ve8313"
Heiko Schocher147d0a22010-07-07 12:26:34 +0200265#define CONFIG_UBOOTPATH ve8313/u-boot.bin
266
Heiko Schocher147d0a22010-07-07 12:26:34 +0200267#define CONFIG_EXTRA_ENV_SETTINGS \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200268 "netdev=" __stringify(CONFIG_NETDEV) "\0" \
269 "ethprime=" __stringify(CONFIG_TSEC1_NAME) "\0" \
270 "u-boot=" __stringify(CONFIG_UBOOTPATH) "\0" \
Heiko Schocher147d0a22010-07-07 12:26:34 +0200271 "u-boot_addr_r=100000\0" \
272 "load=tftp ${u-boot_addr_r} ${u-boot}\0" \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200273 "update=protect off " __stringify(CONFIG_SYS_FLASH_BASE) \
274 " +${filesize};" \
275 "erase " __stringify(CONFIG_SYS_FLASH_BASE) " +${filesize};" \
276 "cp.b ${u-boot_addr_r} " __stringify(CONFIG_SYS_FLASH_BASE) \
Joe Hershberger3214e4e2011-10-11 23:57:26 -0500277 " ${filesize};" \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200278 "protect on " __stringify(CONFIG_SYS_FLASH_BASE) " +${filesize}\0" \
Heiko Schocher147d0a22010-07-07 12:26:34 +0200279
280#endif /* __CONFIG_H */