blob: 9d4a6716c76f5db173d98ff0860c40aaa818f38f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Scott Wood865b8ae2007-04-16 14:54:15 -05002/*
Scott Wood3f53f1a2010-08-30 18:04:52 -05003 * Copyright (C) Freescale Semiconductor, Inc. 2006, 2010.
Scott Wood865b8ae2007-04-16 14:54:15 -05004 */
5/*
6 * mpc8313epb board configuration file
7 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
12/*
13 * High Level Configuration Options
14 */
15#define CONFIG_E300 1
Scott Wood865b8ae2007-04-16 14:54:15 -050016
Scott Woodf60c06e2010-11-24 13:28:40 +000017#ifndef CONFIG_SYS_MONITOR_BASE
18#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
19#endif
20
Gabor Juhosb4458732013-05-30 07:06:12 +000021#define CONFIG_PCI_INDIRECT_BRIDGE
Scott Wood865b8ae2007-04-16 14:54:15 -050022
Timur Tabi3e1d49a2008-02-08 13:15:55 -060023/*
24 * On-board devices
York Sun224069c2008-05-15 15:26:27 -050025 *
26 * TSEC1 is VSC switch
27 * TSEC2 is SoC TSEC
Timur Tabi3e1d49a2008-02-08 13:15:55 -060028 */
29#define CONFIG_VSC7385_ENET
York Sun224069c2008-05-15 15:26:27 -050030#define CONFIG_TSEC2
Timur Tabi3e1d49a2008-02-08 13:15:55 -060031
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020032#define CONFIG_SYS_MEMTEST_START 0x00001000
33#define CONFIG_SYS_MEMTEST_END 0x07f00000
Scott Wood865b8ae2007-04-16 14:54:15 -050034
35/* Early revs of this board will lock up hard when attempting
36 * to access the PMC registers, unless a JTAG debugger is
37 * connected, or some resistor modifications are made.
38 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020039#define CONFIG_SYS_8313ERDB_BROKEN_PMC 1
Scott Wood865b8ae2007-04-16 14:54:15 -050040
Scott Wood865b8ae2007-04-16 14:54:15 -050041/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -060042 * Device configurations
43 */
44
45/* Vitesse 7385 */
46
47#ifdef CONFIG_VSC7385_ENET
48
York Sun224069c2008-05-15 15:26:27 -050049#define CONFIG_TSEC1
Timur Tabi3e1d49a2008-02-08 13:15:55 -060050
51/* The flash address and size of the VSC7385 firmware image */
52#define CONFIG_VSC7385_IMAGE 0xFE7FE000
53#define CONFIG_VSC7385_IMAGE_SIZE 8192
54
55#endif
56
57/*
Scott Wood865b8ae2007-04-16 14:54:15 -050058 * DDR Setup
59 */
Mario Sixc9f92772019-01-21 09:18:15 +010060#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory*/
Scott Wood865b8ae2007-04-16 14:54:15 -050061
62/*
63 * Manually set up DDR parameters, as this board does not
64 * seem to have the SPD connected to I2C.
65 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050066#define CONFIG_SYS_DDR_SIZE 128 /* MB */
Joe Hershberger5ade3902011-10-11 23:57:31 -050067#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershbergercc03b802011-10-11 23:57:29 -050068 | CSCONFIG_ODT_RD_NEVER \
69 | CSCONFIG_ODT_WR_ONLY_CURRENT \
Joe Hershbergerb263cae2011-10-11 23:57:10 -050070 | CSCONFIG_ROW_BIT_13 \
71 | CSCONFIG_COL_BIT_10)
Poonam Aggrwalff452842008-01-14 09:41:14 +053072 /* 0x80010102 */
Scott Wood865b8ae2007-04-16 14:54:15 -050073
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020074#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershbergerb263cae2011-10-11 23:57:10 -050075#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
76 | (0 << TIMING_CFG0_WRT_SHIFT) \
77 | (0 << TIMING_CFG0_RRT_SHIFT) \
78 | (0 << TIMING_CFG0_WWT_SHIFT) \
79 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
80 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
81 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
82 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Scott Wood865b8ae2007-04-16 14:54:15 -050083 /* 0x00220802 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050084#define CONFIG_SYS_DDR_TIMING_1 ((3 << TIMING_CFG1_PRETOACT_SHIFT) \
85 | (8 << TIMING_CFG1_ACTTOPRE_SHIFT) \
86 | (3 << TIMING_CFG1_ACTTORW_SHIFT) \
87 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
88 | (10 << TIMING_CFG1_REFREC_SHIFT) \
89 | (3 << TIMING_CFG1_WRREC_SHIFT) \
90 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
91 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +053092 /* 0x3835a322 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050093#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
94 | (5 << TIMING_CFG2_CPO_SHIFT) \
95 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
96 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
97 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
98 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
99 | (6 << TIMING_CFG2_FOUR_ACT_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530100 /* 0x129048c6 */ /* P9-45,may need tuning */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500101#define CONFIG_SYS_DDR_INTERVAL ((1296 << SDRAM_INTERVAL_REFINT_SHIFT) \
102 | (1280 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530103 /* 0x05100500 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500104#if defined(CONFIG_DDR_2T_TIMING)
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500105#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500106 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500107 | SDRAM_CFG_DBW_32 \
108 | SDRAM_CFG_2T_EN)
109 /* 0x43088000 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500110#else
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500111#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500112 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500113 | SDRAM_CFG_DBW_32)
Scott Wood865b8ae2007-04-16 14:54:15 -0500114 /* 0x43080000 */
115#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200116#define CONFIG_SYS_SDRAM_CFG2 0x00401000
Scott Wood865b8ae2007-04-16 14:54:15 -0500117/* set burst length to 8 for 32-bit data path */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500118#define CONFIG_SYS_DDR_MODE ((0x4448 << SDRAM_MODE_ESD_SHIFT) \
119 | (0x0632 << SDRAM_MODE_SD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530120 /* 0x44480632 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500121#define CONFIG_SYS_DDR_MODE_2 0x8000C000
Scott Wood865b8ae2007-04-16 14:54:15 -0500122
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200123#define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
Scott Wood865b8ae2007-04-16 14:54:15 -0500124 /*0x02000000*/
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500125#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Scott Wood865b8ae2007-04-16 14:54:15 -0500126 | DDRCDR_PZ_NOMZ \
127 | DDRCDR_NZ_NOMZ \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500128 | DDRCDR_M_ODR)
Scott Wood865b8ae2007-04-16 14:54:15 -0500129
130/*
131 * FLASH on the Local Bus
132 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200133#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* start of FLASH */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500134#define CONFIG_SYS_FLASH_SIZE 8 /* flash size in MB */
Mario Six7299dec2019-01-21 09:17:36 +0100135#define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500136#define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
Scott Wood865b8ae2007-04-16 14:54:15 -0500137
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500138#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
139#define CONFIG_SYS_MAX_FLASH_SECT 135 /* sectors per device */
Scott Wood865b8ae2007-04-16 14:54:15 -0500140
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200141#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
142#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Scott Wood865b8ae2007-04-16 14:54:15 -0500143
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500144#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) && \
Scott Wood488af0d2012-12-06 13:33:18 +0000145 !defined(CONFIG_SPL_BUILD)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146#define CONFIG_SYS_RAMBOOT
Scott Wood865b8ae2007-04-16 14:54:15 -0500147#endif
148
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200149#define CONFIG_SYS_INIT_RAM_LOCK 1
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500150#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM addr */
151#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
Scott Wood865b8ae2007-04-16 14:54:15 -0500152
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500153#define CONFIG_SYS_GBL_DATA_OFFSET \
154 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200155#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
Scott Wood865b8ae2007-04-16 14:54:15 -0500156
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200157/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
Kevin Hao349a0152016-07-08 11:25:14 +0800158#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500159#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
Scott Wood865b8ae2007-04-16 14:54:15 -0500160
Mario Six7299dec2019-01-21 09:17:36 +0100161/* drivers/mtd/nand/nand.c */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200162#define CONFIG_SYS_NAND_BASE 0xE2800000
Scott Woodb71689b2008-06-30 14:13:28 -0500163
Scott Wood3f53f1a2010-08-30 18:04:52 -0500164#define CONFIG_MTD_PARTITION
Scott Wood3f53f1a2010-08-30 18:04:52 -0500165
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200166#define CONFIG_SYS_MAX_NAND_DEVICE 1
Scott Woodb7dac212008-06-26 14:06:52 -0500167#define CONFIG_NAND_FSL_ELBC 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200168#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500169#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024)
Scott Woodb71689b2008-06-30 14:13:28 -0500170
Mario Six7299dec2019-01-21 09:17:36 +0100171/* Still needed for spl_minimal.c */
172#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR1_PRELIM
173#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR1_PRELIM
Scott Woodb71689b2008-06-30 14:13:28 -0500174
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500175/* local bus write LED / read status buffer (BCSR) mapping */
176#define CONFIG_SYS_BCSR_ADDR 0xFA000000
177#define CONFIG_SYS_BCSR_SIZE (32 * 1024) /* 0x00008000 */
178 /* map at 0xFA000000 on LCS3 */
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600179/* Vitesse 7385 */
180
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600181#ifdef CONFIG_VSC7385_ENET
182
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500183 /* VSC7385 Base address on LCS2 */
184#define CONFIG_SYS_VSC7385_BASE 0xF0000000
185#define CONFIG_SYS_VSC7385_SIZE (128 * 1024) /* 0x00020000 */
186
Mario Sixc1e29d92019-01-21 09:18:01 +0100187
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600188#endif
Scott Wood865b8ae2007-04-16 14:54:15 -0500189
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600190#define CONFIG_MPC83XX_GPIO 1
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600191
Scott Wood865b8ae2007-04-16 14:54:15 -0500192/*
193 * Serial Port
194 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195#define CONFIG_SYS_NS16550_SERIAL
196#define CONFIG_SYS_NS16550_REG_SIZE 1
Scott Wood865b8ae2007-04-16 14:54:15 -0500197
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198#define CONFIG_SYS_BAUDRATE_TABLE \
Scott Wood865b8ae2007-04-16 14:54:15 -0500199 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
200
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200201#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
202#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Scott Wood865b8ae2007-04-16 14:54:15 -0500203
Scott Wood865b8ae2007-04-16 14:54:15 -0500204/* I2C */
Heiko Schocherf2850742012-10-24 13:48:22 +0200205#define CONFIG_SYS_I2C
206#define CONFIG_SYS_I2C_FSL
207#define CONFIG_SYS_FSL_I2C_SPEED 400000
208#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
209#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
210#define CONFIG_SYS_FSL_I2C2_SPEED 400000
211#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
212#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
213#define CONFIG_SYS_I2C_NOPROBES { {0, 0x69} }
Scott Wood865b8ae2007-04-16 14:54:15 -0500214
Scott Wood865b8ae2007-04-16 14:54:15 -0500215/*
216 * General PCI
217 * Addresses are mapped 1-1.
218 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200219#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
220#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
221#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
222#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
223#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
224#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
225#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
226#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
227#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
Scott Wood865b8ae2007-04-16 14:54:15 -0500228
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200229#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
Scott Wood865b8ae2007-04-16 14:54:15 -0500230
231/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600232 * TSEC
Scott Wood865b8ae2007-04-16 14:54:15 -0500233 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500234
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600235#define CONFIG_GMII /* MII PHY management */
Scott Wood865b8ae2007-04-16 14:54:15 -0500236
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600237#ifdef CONFIG_TSEC1
238#define CONFIG_HAS_ETH0
Kim Phillips177e58f2007-05-16 16:52:19 -0500239#define CONFIG_TSEC1_NAME "TSEC0"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200240#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600241#define TSEC1_PHY_ADDR 0x1c
242#define TSEC1_FLAGS TSEC_GIGABIT
243#define TSEC1_PHYIDX 0
244#endif
245
246#ifdef CONFIG_TSEC2
247#define CONFIG_HAS_ETH1
Kim Phillips177e58f2007-05-16 16:52:19 -0500248#define CONFIG_TSEC2_NAME "TSEC1"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200249#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600250#define TSEC2_PHY_ADDR 4
251#define TSEC2_FLAGS TSEC_GIGABIT
252#define TSEC2_PHYIDX 0
253#endif
254
Scott Wood865b8ae2007-04-16 14:54:15 -0500255/* Options are: TSEC[0-1] */
256#define CONFIG_ETHPRIME "TSEC1"
257
258/*
259 * Configure on-board RTC
260 */
261#define CONFIG_RTC_DS1337
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200262#define CONFIG_SYS_I2C_RTC_ADDR 0x68
Scott Wood865b8ae2007-04-16 14:54:15 -0500263
264/*
265 * Environment
266 */
Mario Six7299dec2019-01-21 09:17:36 +0100267#if !defined(CONFIG_SYS_RAMBOOT)
Scott Wood865b8ae2007-04-16 14:54:15 -0500268/* Address and size of Redundant Environment Sector */
Scott Wood865b8ae2007-04-16 14:54:15 -0500269#endif
270
271#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200272#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Scott Wood865b8ae2007-04-16 14:54:15 -0500273
Jon Loeliger3b7116d2007-07-04 22:30:06 -0500274/*
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500275 * BOOTP options
276 */
277#define CONFIG_BOOTP_BOOTFILESIZE
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500278
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500279/*
Jon Loeliger3b7116d2007-07-04 22:30:06 -0500280 * Command line configuration.
281 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500282
Scott Wood865b8ae2007-04-16 14:54:15 -0500283/*
284 * Miscellaneous configurable options
285 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200286#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200287#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500288
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500289 /* Boot Argument Buffer Size */
290#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Scott Wood865b8ae2007-04-16 14:54:15 -0500291
292/*
293 * For booting Linux, the board info and command line data
Ira W. Snyderc5a22d02010-09-10 15:42:32 -0700294 * have to be in the first 256 MB of memory, since this is
Scott Wood865b8ae2007-04-16 14:54:15 -0500295 * the maximum mapped by the Linux kernel during initialization.
296 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500297 /* Initial Memory map for Linux*/
298#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
Kevin Hao9c747962016-07-08 11:25:15 +0800299#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500300
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200301#define CONFIG_SYS_RCWH_PCIHOST 0x80000000 /* PCIHOST */
Scott Wood865b8ae2007-04-16 14:54:15 -0500302
Mario Sixd10f3182019-01-21 09:17:53 +0100303#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0))
Scott Wood865b8ae2007-04-16 14:54:15 -0500304
305/* System IO Config */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200306#define CONFIG_SYS_SICRH (SICRH_TSOBI1 | SICRH_TSOBI2) /* RGMII */
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600307 /* Enable Internal USB Phy and GPIO on LCD Connector */
308#define CONFIG_SYS_SICRL (SICRL_USBDR_10 | SICRL_LBC)
Scott Wood865b8ae2007-04-16 14:54:15 -0500309
Scott Wood865b8ae2007-04-16 14:54:15 -0500310/*
Scott Wood865b8ae2007-04-16 14:54:15 -0500311 * Environment Configuration
312 */
313#define CONFIG_ENV_OVERWRITE
314
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500315#define CONFIG_NETDEV "eth1"
Scott Wood865b8ae2007-04-16 14:54:15 -0500316
Mario Six790d8442018-03-28 14:38:20 +0200317#define CONFIG_HOSTNAME "mpc8313erdb"
Joe Hershberger257ff782011-10-13 13:03:47 +0000318#define CONFIG_ROOTPATH "/nfs/root/path"
Joe Hershbergere4da2482011-10-13 13:03:48 +0000319#define CONFIG_BOOTFILE "uImage"
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500320 /* U-Boot image on TFTP server */
321#define CONFIG_UBOOTPATH "u-boot.bin"
322#define CONFIG_FDTFILE "mpc8313erdb.dtb"
Scott Wood865b8ae2007-04-16 14:54:15 -0500323
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500324 /* default location for tftp and bootm */
325#define CONFIG_LOADADDR 800000
Scott Wood865b8ae2007-04-16 14:54:15 -0500326
Scott Wood865b8ae2007-04-16 14:54:15 -0500327#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500328 "netdev=" CONFIG_NETDEV "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500329 "ethprime=TSEC1\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500330 "uboot=" CONFIG_UBOOTPATH "\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200331 "tftpflash=tftpboot $loadaddr $uboot; " \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200332 "protect off " __stringify(CONFIG_SYS_TEXT_BASE) \
333 " +$filesize; " \
334 "erase " __stringify(CONFIG_SYS_TEXT_BASE) \
335 " +$filesize; " \
336 "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
337 " $filesize; " \
338 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) \
339 " +$filesize; " \
340 "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
341 " $filesize\0" \
Kim Phillipsfd3a3fc2009-08-21 16:34:38 -0500342 "fdtaddr=780000\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500343 "fdtfile=" CONFIG_FDTFILE "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500344 "console=ttyS0\0" \
345 "setbootargs=setenv bootargs " \
346 "root=$rootdev rw console=$console,$baudrate $othbootargs\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200347 "setipargs=setenv bootargs nfsroot=$serverip:$rootpath " \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500348 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:"\
349 "$netdev:off " \
Scott Wood865b8ae2007-04-16 14:54:15 -0500350 "root=$rootdev rw console=$console,$baudrate $othbootargs\0"
351
352#define CONFIG_NFSBOOTCOMMAND \
353 "setenv rootdev /dev/nfs;" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200354 "run setbootargs;" \
355 "run setipargs;" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500356 "tftp $loadaddr $bootfile;" \
357 "tftp $fdtaddr $fdtfile;" \
358 "bootm $loadaddr - $fdtaddr"
359
360#define CONFIG_RAMBOOTCOMMAND \
361 "setenv rootdev /dev/ram;" \
362 "run setbootargs;" \
363 "tftp $ramdiskaddr $ramdiskfile;" \
364 "tftp $loadaddr $bootfile;" \
365 "tftp $fdtaddr $fdtfile;" \
366 "bootm $loadaddr $ramdiskaddr $fdtaddr"
367
Scott Wood865b8ae2007-04-16 14:54:15 -0500368#endif /* __CONFIG_H */