blob: c223ea5613c5ad6decf71b815f6566eeca56fc73 [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
Simon Glassfb64e362020-05-10 11:40:09 -060021#include <linux/stringify.h>
Gabor Juhosb4458732013-05-30 07:06:12 +000022#define CONFIG_PCI_INDIRECT_BRIDGE
Scott Wood865b8ae2007-04-16 14:54:15 -050023
Timur Tabi3e1d49a2008-02-08 13:15:55 -060024/*
25 * On-board devices
York Sun224069c2008-05-15 15:26:27 -050026 *
27 * TSEC1 is VSC switch
28 * TSEC2 is SoC TSEC
Timur Tabi3e1d49a2008-02-08 13:15:55 -060029 */
30#define CONFIG_VSC7385_ENET
York Sun224069c2008-05-15 15:26:27 -050031#define CONFIG_TSEC2
Timur Tabi3e1d49a2008-02-08 13:15:55 -060032
Scott Wood865b8ae2007-04-16 14:54:15 -050033/* Early revs of this board will lock up hard when attempting
34 * to access the PMC registers, unless a JTAG debugger is
35 * connected, or some resistor modifications are made.
36 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037#define CONFIG_SYS_8313ERDB_BROKEN_PMC 1
Scott Wood865b8ae2007-04-16 14:54:15 -050038
Scott Wood865b8ae2007-04-16 14:54:15 -050039/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -060040 * Device configurations
41 */
42
43/* Vitesse 7385 */
44
45#ifdef CONFIG_VSC7385_ENET
46
York Sun224069c2008-05-15 15:26:27 -050047#define CONFIG_TSEC1
Timur Tabi3e1d49a2008-02-08 13:15:55 -060048
49/* The flash address and size of the VSC7385 firmware image */
50#define CONFIG_VSC7385_IMAGE 0xFE7FE000
51#define CONFIG_VSC7385_IMAGE_SIZE 8192
52
53#endif
54
55/*
Scott Wood865b8ae2007-04-16 14:54:15 -050056 * DDR Setup
57 */
Mario Sixc9f92772019-01-21 09:18:15 +010058#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory*/
Scott Wood865b8ae2007-04-16 14:54:15 -050059
60/*
61 * Manually set up DDR parameters, as this board does not
62 * seem to have the SPD connected to I2C.
63 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050064#define CONFIG_SYS_DDR_SIZE 128 /* MB */
Joe Hershberger5ade3902011-10-11 23:57:31 -050065#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershbergercc03b802011-10-11 23:57:29 -050066 | CSCONFIG_ODT_RD_NEVER \
67 | CSCONFIG_ODT_WR_ONLY_CURRENT \
Joe Hershbergerb263cae2011-10-11 23:57:10 -050068 | CSCONFIG_ROW_BIT_13 \
69 | CSCONFIG_COL_BIT_10)
Poonam Aggrwalff452842008-01-14 09:41:14 +053070 /* 0x80010102 */
Scott Wood865b8ae2007-04-16 14:54:15 -050071
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020072#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershbergerb263cae2011-10-11 23:57:10 -050073#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
74 | (0 << TIMING_CFG0_WRT_SHIFT) \
75 | (0 << TIMING_CFG0_RRT_SHIFT) \
76 | (0 << TIMING_CFG0_WWT_SHIFT) \
77 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
78 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
79 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
80 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Scott Wood865b8ae2007-04-16 14:54:15 -050081 /* 0x00220802 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050082#define CONFIG_SYS_DDR_TIMING_1 ((3 << TIMING_CFG1_PRETOACT_SHIFT) \
83 | (8 << TIMING_CFG1_ACTTOPRE_SHIFT) \
84 | (3 << TIMING_CFG1_ACTTORW_SHIFT) \
85 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
86 | (10 << TIMING_CFG1_REFREC_SHIFT) \
87 | (3 << TIMING_CFG1_WRREC_SHIFT) \
88 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
89 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +053090 /* 0x3835a322 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050091#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
92 | (5 << TIMING_CFG2_CPO_SHIFT) \
93 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
94 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
95 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
96 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
97 | (6 << TIMING_CFG2_FOUR_ACT_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +053098 /* 0x129048c6 */ /* P9-45,may need tuning */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050099#define CONFIG_SYS_DDR_INTERVAL ((1296 << SDRAM_INTERVAL_REFINT_SHIFT) \
100 | (1280 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530101 /* 0x05100500 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500102#if defined(CONFIG_DDR_2T_TIMING)
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500103#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500104 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500105 | SDRAM_CFG_DBW_32 \
106 | SDRAM_CFG_2T_EN)
107 /* 0x43088000 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500108#else
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500109#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500110 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500111 | SDRAM_CFG_DBW_32)
Scott Wood865b8ae2007-04-16 14:54:15 -0500112 /* 0x43080000 */
113#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114#define CONFIG_SYS_SDRAM_CFG2 0x00401000
Scott Wood865b8ae2007-04-16 14:54:15 -0500115/* set burst length to 8 for 32-bit data path */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500116#define CONFIG_SYS_DDR_MODE ((0x4448 << SDRAM_MODE_ESD_SHIFT) \
117 | (0x0632 << SDRAM_MODE_SD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530118 /* 0x44480632 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500119#define CONFIG_SYS_DDR_MODE_2 0x8000C000
Scott Wood865b8ae2007-04-16 14:54:15 -0500120
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200121#define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
Scott Wood865b8ae2007-04-16 14:54:15 -0500122 /*0x02000000*/
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500123#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Scott Wood865b8ae2007-04-16 14:54:15 -0500124 | DDRCDR_PZ_NOMZ \
125 | DDRCDR_NZ_NOMZ \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500126 | DDRCDR_M_ODR)
Scott Wood865b8ae2007-04-16 14:54:15 -0500127
128/*
129 * FLASH on the Local Bus
130 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200131#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* start of FLASH */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500132#define CONFIG_SYS_FLASH_SIZE 8 /* flash size in MB */
Mario Six7299dec2019-01-21 09:17:36 +0100133#define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500134#define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
Scott Wood865b8ae2007-04-16 14:54:15 -0500135
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500136#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
137#define CONFIG_SYS_MAX_FLASH_SECT 135 /* sectors per device */
Scott Wood865b8ae2007-04-16 14:54:15 -0500138
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200139#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
140#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Scott Wood865b8ae2007-04-16 14:54:15 -0500141
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500142#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) && \
Scott Wood488af0d2012-12-06 13:33:18 +0000143 !defined(CONFIG_SPL_BUILD)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200144#define CONFIG_SYS_RAMBOOT
Scott Wood865b8ae2007-04-16 14:54:15 -0500145#endif
146
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200147#define CONFIG_SYS_INIT_RAM_LOCK 1
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500148#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM addr */
149#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
Scott Wood865b8ae2007-04-16 14:54:15 -0500150
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500151#define CONFIG_SYS_GBL_DATA_OFFSET \
152 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200153#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
Scott Wood865b8ae2007-04-16 14:54:15 -0500154
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200155/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
Kevin Hao349a0152016-07-08 11:25:14 +0800156#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500157#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
Scott Wood865b8ae2007-04-16 14:54:15 -0500158
Mario Six7299dec2019-01-21 09:17:36 +0100159/* drivers/mtd/nand/nand.c */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200160#define CONFIG_SYS_NAND_BASE 0xE2800000
Scott Woodb71689b2008-06-30 14:13:28 -0500161
Scott Wood3f53f1a2010-08-30 18:04:52 -0500162#define CONFIG_MTD_PARTITION
Scott Wood3f53f1a2010-08-30 18:04:52 -0500163
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200164#define CONFIG_SYS_MAX_NAND_DEVICE 1
Scott Woodb7dac212008-06-26 14:06:52 -0500165#define CONFIG_NAND_FSL_ELBC 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200166#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500167#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024)
Scott Woodb71689b2008-06-30 14:13:28 -0500168
Mario Six7299dec2019-01-21 09:17:36 +0100169/* Still needed for spl_minimal.c */
170#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR1_PRELIM
171#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR1_PRELIM
Scott Woodb71689b2008-06-30 14:13:28 -0500172
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500173/* local bus write LED / read status buffer (BCSR) mapping */
174#define CONFIG_SYS_BCSR_ADDR 0xFA000000
175#define CONFIG_SYS_BCSR_SIZE (32 * 1024) /* 0x00008000 */
176 /* map at 0xFA000000 on LCS3 */
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600177/* Vitesse 7385 */
178
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600179#ifdef CONFIG_VSC7385_ENET
180
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500181 /* VSC7385 Base address on LCS2 */
182#define CONFIG_SYS_VSC7385_BASE 0xF0000000
183#define CONFIG_SYS_VSC7385_SIZE (128 * 1024) /* 0x00020000 */
184
Mario Sixc1e29d92019-01-21 09:18:01 +0100185
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600186#endif
Scott Wood865b8ae2007-04-16 14:54:15 -0500187
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600188#define CONFIG_MPC83XX_GPIO 1
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600189
Scott Wood865b8ae2007-04-16 14:54:15 -0500190/*
191 * Serial Port
192 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200193#define CONFIG_SYS_NS16550_SERIAL
194#define CONFIG_SYS_NS16550_REG_SIZE 1
Scott Wood865b8ae2007-04-16 14:54:15 -0500195
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200196#define CONFIG_SYS_BAUDRATE_TABLE \
Scott Wood865b8ae2007-04-16 14:54:15 -0500197 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
198
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200199#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
200#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Scott Wood865b8ae2007-04-16 14:54:15 -0500201
Scott Wood865b8ae2007-04-16 14:54:15 -0500202/* I2C */
Heiko Schocherf2850742012-10-24 13:48:22 +0200203#define CONFIG_SYS_I2C
204#define CONFIG_SYS_I2C_FSL
205#define CONFIG_SYS_FSL_I2C_SPEED 400000
206#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
207#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
208#define CONFIG_SYS_FSL_I2C2_SPEED 400000
209#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
210#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
211#define CONFIG_SYS_I2C_NOPROBES { {0, 0x69} }
Scott Wood865b8ae2007-04-16 14:54:15 -0500212
Scott Wood865b8ae2007-04-16 14:54:15 -0500213/*
214 * General PCI
215 * Addresses are mapped 1-1.
216 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200217#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
218#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
219#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
220#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
221#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
222#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
223#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
224#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
225#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
Scott Wood865b8ae2007-04-16 14:54:15 -0500226
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200227#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
Scott Wood865b8ae2007-04-16 14:54:15 -0500228
229/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600230 * TSEC
Scott Wood865b8ae2007-04-16 14:54:15 -0500231 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500232
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600233#define CONFIG_GMII /* MII PHY management */
Scott Wood865b8ae2007-04-16 14:54:15 -0500234
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600235#ifdef CONFIG_TSEC1
236#define CONFIG_HAS_ETH0
Kim Phillips177e58f2007-05-16 16:52:19 -0500237#define CONFIG_TSEC1_NAME "TSEC0"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200238#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600239#define TSEC1_PHY_ADDR 0x1c
240#define TSEC1_FLAGS TSEC_GIGABIT
241#define TSEC1_PHYIDX 0
242#endif
243
244#ifdef CONFIG_TSEC2
245#define CONFIG_HAS_ETH1
Kim Phillips177e58f2007-05-16 16:52:19 -0500246#define CONFIG_TSEC2_NAME "TSEC1"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200247#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600248#define TSEC2_PHY_ADDR 4
249#define TSEC2_FLAGS TSEC_GIGABIT
250#define TSEC2_PHYIDX 0
251#endif
252
Scott Wood865b8ae2007-04-16 14:54:15 -0500253/* Options are: TSEC[0-1] */
254#define CONFIG_ETHPRIME "TSEC1"
255
256/*
257 * Configure on-board RTC
258 */
259#define CONFIG_RTC_DS1337
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200260#define CONFIG_SYS_I2C_RTC_ADDR 0x68
Scott Wood865b8ae2007-04-16 14:54:15 -0500261
262/*
263 * Environment
264 */
Mario Six7299dec2019-01-21 09:17:36 +0100265#if !defined(CONFIG_SYS_RAMBOOT)
Scott Wood865b8ae2007-04-16 14:54:15 -0500266/* Address and size of Redundant Environment Sector */
Scott Wood865b8ae2007-04-16 14:54:15 -0500267#endif
268
269#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200270#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Scott Wood865b8ae2007-04-16 14:54:15 -0500271
Jon Loeliger3b7116d2007-07-04 22:30:06 -0500272/*
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500273 * BOOTP options
274 */
275#define CONFIG_BOOTP_BOOTFILESIZE
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500276
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500277/*
Scott Wood865b8ae2007-04-16 14:54:15 -0500278 * Miscellaneous configurable options
279 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200280#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200281#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500282
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500283 /* Boot Argument Buffer Size */
284#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Scott Wood865b8ae2007-04-16 14:54:15 -0500285
286/*
287 * For booting Linux, the board info and command line data
Ira W. Snyderc5a22d02010-09-10 15:42:32 -0700288 * have to be in the first 256 MB of memory, since this is
Scott Wood865b8ae2007-04-16 14:54:15 -0500289 * the maximum mapped by the Linux kernel during initialization.
290 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500291 /* Initial Memory map for Linux*/
292#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
Kevin Hao9c747962016-07-08 11:25:15 +0800293#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500294
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200295#define CONFIG_SYS_RCWH_PCIHOST 0x80000000 /* PCIHOST */
Scott Wood865b8ae2007-04-16 14:54:15 -0500296
Mario Sixd10f3182019-01-21 09:17:53 +0100297#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0))
Scott Wood865b8ae2007-04-16 14:54:15 -0500298
299/* System IO Config */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200300#define CONFIG_SYS_SICRH (SICRH_TSOBI1 | SICRH_TSOBI2) /* RGMII */
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600301 /* Enable Internal USB Phy and GPIO on LCD Connector */
302#define CONFIG_SYS_SICRL (SICRL_USBDR_10 | SICRL_LBC)
Scott Wood865b8ae2007-04-16 14:54:15 -0500303
Scott Wood865b8ae2007-04-16 14:54:15 -0500304/*
Scott Wood865b8ae2007-04-16 14:54:15 -0500305 * Environment Configuration
306 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500307
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500308#define CONFIG_NETDEV "eth1"
Scott Wood865b8ae2007-04-16 14:54:15 -0500309
Mario Six790d8442018-03-28 14:38:20 +0200310#define CONFIG_HOSTNAME "mpc8313erdb"
Joe Hershberger257ff782011-10-13 13:03:47 +0000311#define CONFIG_ROOTPATH "/nfs/root/path"
Joe Hershbergere4da2482011-10-13 13:03:48 +0000312#define CONFIG_BOOTFILE "uImage"
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500313 /* U-Boot image on TFTP server */
314#define CONFIG_UBOOTPATH "u-boot.bin"
315#define CONFIG_FDTFILE "mpc8313erdb.dtb"
Scott Wood865b8ae2007-04-16 14:54:15 -0500316
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500317 /* default location for tftp and bootm */
318#define CONFIG_LOADADDR 800000
Scott Wood865b8ae2007-04-16 14:54:15 -0500319
Scott Wood865b8ae2007-04-16 14:54:15 -0500320#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500321 "netdev=" CONFIG_NETDEV "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500322 "ethprime=TSEC1\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500323 "uboot=" CONFIG_UBOOTPATH "\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200324 "tftpflash=tftpboot $loadaddr $uboot; " \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200325 "protect off " __stringify(CONFIG_SYS_TEXT_BASE) \
326 " +$filesize; " \
327 "erase " __stringify(CONFIG_SYS_TEXT_BASE) \
328 " +$filesize; " \
329 "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
330 " $filesize; " \
331 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) \
332 " +$filesize; " \
333 "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
334 " $filesize\0" \
Kim Phillipsfd3a3fc2009-08-21 16:34:38 -0500335 "fdtaddr=780000\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500336 "fdtfile=" CONFIG_FDTFILE "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500337 "console=ttyS0\0" \
338 "setbootargs=setenv bootargs " \
339 "root=$rootdev rw console=$console,$baudrate $othbootargs\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200340 "setipargs=setenv bootargs nfsroot=$serverip:$rootpath " \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500341 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:"\
342 "$netdev:off " \
Scott Wood865b8ae2007-04-16 14:54:15 -0500343 "root=$rootdev rw console=$console,$baudrate $othbootargs\0"
344
345#define CONFIG_NFSBOOTCOMMAND \
346 "setenv rootdev /dev/nfs;" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200347 "run setbootargs;" \
348 "run setipargs;" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500349 "tftp $loadaddr $bootfile;" \
350 "tftp $fdtaddr $fdtfile;" \
351 "bootm $loadaddr - $fdtaddr"
352
353#define CONFIG_RAMBOOTCOMMAND \
354 "setenv rootdev /dev/ram;" \
355 "run setbootargs;" \
356 "tftp $ramdiskaddr $ramdiskfile;" \
357 "tftp $loadaddr $bootfile;" \
358 "tftp $fdtaddr $fdtfile;" \
359 "bootm $loadaddr $ramdiskaddr $fdtaddr"
360
Scott Wood865b8ae2007-04-16 14:54:15 -0500361#endif /* __CONFIG_H */