blob: 68298533430c8b51f3ba49b68b530fd472ac912f [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 Wood488af0d2012-12-06 13:33:18 +000017#define CONFIG_SPL_INIT_MINIMAL
Scott Wood488af0d2012-12-06 13:33:18 +000018#define CONFIG_SPL_FLUSH_IMAGE
19#define CONFIG_SPL_TARGET "u-boot-with-spl.bin"
20#define CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
21
22#ifdef CONFIG_SPL_BUILD
23#define CONFIG_NS16550_MIN_FUNCTIONS
24#endif
25
Scott Wood488af0d2012-12-06 13:33:18 +000026#define CONFIG_SYS_TEXT_BASE_SPL 0xfff00000
27#define CONFIG_SPL_MAX_SIZE (4 * 1024)
Benoît Thébaudeauf0180722013-04-11 09:35:49 +000028#define CONFIG_SPL_PAD_TO 0x4000
Scott Wood488af0d2012-12-06 13:33:18 +000029
Scott Woodf60c06e2010-11-24 13:28:40 +000030#define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
31#define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
32#define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
33#define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
34#define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
35#define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_RELOC + 0x10000)
36
Scott Wood488af0d2012-12-06 13:33:18 +000037#ifdef CONFIG_SPL_BUILD
Scott Woodf60c06e2010-11-24 13:28:40 +000038#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE_SPL /* start of monitor */
Scott Wood488af0d2012-12-06 13:33:18 +000039#endif
40
Scott Woodf60c06e2010-11-24 13:28:40 +000041#ifndef CONFIG_SYS_MONITOR_BASE
42#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
43#endif
44
Gabor Juhosb4458732013-05-30 07:06:12 +000045#define CONFIG_PCI_INDIRECT_BRIDGE
Scott Wood865b8ae2007-04-16 14:54:15 -050046
Timur Tabi3e1d49a2008-02-08 13:15:55 -060047/*
48 * On-board devices
York Sun224069c2008-05-15 15:26:27 -050049 *
50 * TSEC1 is VSC switch
51 * TSEC2 is SoC TSEC
Timur Tabi3e1d49a2008-02-08 13:15:55 -060052 */
53#define CONFIG_VSC7385_ENET
York Sun224069c2008-05-15 15:26:27 -050054#define CONFIG_TSEC2
Timur Tabi3e1d49a2008-02-08 13:15:55 -060055
Mario Six7299dec2019-01-21 09:17:36 +010056#if !defined(CONFIG_SPL_BUILD)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020057#define CONFIG_DEFAULT_IMMR CONFIG_SYS_IMMR
Scott Woodb71689b2008-06-30 14:13:28 -050058#endif
59
Scott Wood865b8ae2007-04-16 14:54:15 -050060/* Early revs of this board will lock up hard when attempting
61 * to access the PMC registers, unless a JTAG debugger is
62 * connected, or some resistor modifications are made.
63 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020064#define CONFIG_SYS_8313ERDB_BROKEN_PMC 1
Scott Wood865b8ae2007-04-16 14:54:15 -050065
Scott Wood865b8ae2007-04-16 14:54:15 -050066/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -060067 * Device configurations
68 */
69
70/* Vitesse 7385 */
71
72#ifdef CONFIG_VSC7385_ENET
73
York Sun224069c2008-05-15 15:26:27 -050074#define CONFIG_TSEC1
Timur Tabi3e1d49a2008-02-08 13:15:55 -060075
76/* The flash address and size of the VSC7385 firmware image */
77#define CONFIG_VSC7385_IMAGE 0xFE7FE000
78#define CONFIG_VSC7385_IMAGE_SIZE 8192
79
80#endif
81
82/*
Scott Wood865b8ae2007-04-16 14:54:15 -050083 * DDR Setup
84 */
Mario Sixc9f92772019-01-21 09:18:15 +010085#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory*/
Scott Wood865b8ae2007-04-16 14:54:15 -050086
87/*
88 * Manually set up DDR parameters, as this board does not
89 * seem to have the SPD connected to I2C.
90 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -050091#define CONFIG_SYS_DDR_SIZE 128 /* MB */
Joe Hershberger5ade3902011-10-11 23:57:31 -050092#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershbergercc03b802011-10-11 23:57:29 -050093 | CSCONFIG_ODT_RD_NEVER \
94 | CSCONFIG_ODT_WR_ONLY_CURRENT \
Joe Hershbergerb263cae2011-10-11 23:57:10 -050095 | CSCONFIG_ROW_BIT_13 \
96 | CSCONFIG_COL_BIT_10)
Poonam Aggrwalff452842008-01-14 09:41:14 +053097 /* 0x80010102 */
Scott Wood865b8ae2007-04-16 14:54:15 -050098
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020099#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500100#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
101 | (0 << TIMING_CFG0_WRT_SHIFT) \
102 | (0 << TIMING_CFG0_RRT_SHIFT) \
103 | (0 << TIMING_CFG0_WWT_SHIFT) \
104 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
105 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
106 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
107 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Scott Wood865b8ae2007-04-16 14:54:15 -0500108 /* 0x00220802 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500109#define CONFIG_SYS_DDR_TIMING_1 ((3 << TIMING_CFG1_PRETOACT_SHIFT) \
110 | (8 << TIMING_CFG1_ACTTOPRE_SHIFT) \
111 | (3 << TIMING_CFG1_ACTTORW_SHIFT) \
112 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
113 | (10 << TIMING_CFG1_REFREC_SHIFT) \
114 | (3 << TIMING_CFG1_WRREC_SHIFT) \
115 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
116 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530117 /* 0x3835a322 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500118#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
119 | (5 << TIMING_CFG2_CPO_SHIFT) \
120 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
121 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
122 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
123 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
124 | (6 << TIMING_CFG2_FOUR_ACT_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530125 /* 0x129048c6 */ /* P9-45,may need tuning */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500126#define CONFIG_SYS_DDR_INTERVAL ((1296 << SDRAM_INTERVAL_REFINT_SHIFT) \
127 | (1280 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530128 /* 0x05100500 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500129#if defined(CONFIG_DDR_2T_TIMING)
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500130#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500131 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500132 | SDRAM_CFG_DBW_32 \
133 | SDRAM_CFG_2T_EN)
134 /* 0x43088000 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500135#else
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500136#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500137 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershbergercc03b802011-10-11 23:57:29 -0500138 | SDRAM_CFG_DBW_32)
Scott Wood865b8ae2007-04-16 14:54:15 -0500139 /* 0x43080000 */
140#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200141#define CONFIG_SYS_SDRAM_CFG2 0x00401000
Scott Wood865b8ae2007-04-16 14:54:15 -0500142/* set burst length to 8 for 32-bit data path */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500143#define CONFIG_SYS_DDR_MODE ((0x4448 << SDRAM_MODE_ESD_SHIFT) \
144 | (0x0632 << SDRAM_MODE_SD_SHIFT))
Poonam Aggrwalff452842008-01-14 09:41:14 +0530145 /* 0x44480632 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500146#define CONFIG_SYS_DDR_MODE_2 0x8000C000
Scott Wood865b8ae2007-04-16 14:54:15 -0500147
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200148#define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
Scott Wood865b8ae2007-04-16 14:54:15 -0500149 /*0x02000000*/
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500150#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Scott Wood865b8ae2007-04-16 14:54:15 -0500151 | DDRCDR_PZ_NOMZ \
152 | DDRCDR_NZ_NOMZ \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500153 | DDRCDR_M_ODR)
Scott Wood865b8ae2007-04-16 14:54:15 -0500154
155/*
156 * FLASH on the Local Bus
157 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200158#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* start of FLASH */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500159#define CONFIG_SYS_FLASH_SIZE 8 /* flash size in MB */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500160#define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
Scott Wood865b8ae2007-04-16 14:54:15 -0500161
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500162#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
163#define CONFIG_SYS_MAX_FLASH_SECT 135 /* sectors per device */
Scott Wood865b8ae2007-04-16 14:54:15 -0500164
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200165#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
166#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Scott Wood865b8ae2007-04-16 14:54:15 -0500167
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500168#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) && \
Scott Wood488af0d2012-12-06 13:33:18 +0000169 !defined(CONFIG_SPL_BUILD)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200170#define CONFIG_SYS_RAMBOOT
Scott Wood865b8ae2007-04-16 14:54:15 -0500171#endif
172
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200173#define CONFIG_SYS_INIT_RAM_LOCK 1
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500174#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM addr */
175#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
Scott Wood865b8ae2007-04-16 14:54:15 -0500176
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500177#define CONFIG_SYS_GBL_DATA_OFFSET \
178 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200179#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
Scott Wood865b8ae2007-04-16 14:54:15 -0500180
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200181/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
Kevin Hao349a0152016-07-08 11:25:14 +0800182#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500183#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
Scott Wood865b8ae2007-04-16 14:54:15 -0500184
Miquel Raynal1f1ae152018-08-16 17:30:07 +0200185/* drivers/mtd/nand/raw/nand.c */
Mario Six7299dec2019-01-21 09:17:36 +0100186#if defined(CONFIG_SPL_BUILD)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200187#define CONFIG_SYS_NAND_BASE 0xFFF00000
Scott Woodb71689b2008-06-30 14:13:28 -0500188#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200189#define CONFIG_SYS_NAND_BASE 0xE2800000
Scott Woodb71689b2008-06-30 14:13:28 -0500190#endif
191
Scott Wood3f53f1a2010-08-30 18:04:52 -0500192#define CONFIG_MTD_PARTITION
Scott Wood3f53f1a2010-08-30 18:04:52 -0500193
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200194#define CONFIG_SYS_MAX_NAND_DEVICE 1
Scott Woodb7dac212008-06-26 14:06:52 -0500195#define CONFIG_NAND_FSL_ELBC 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200196#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500197#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024)
Scott Woodb71689b2008-06-30 14:13:28 -0500198
Mario Six7299dec2019-01-21 09:17:36 +0100199/* Still needed for spl_minimal.c */
200#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR0_PRELIM
201#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR0_PRELIM
Scott Woodb71689b2008-06-30 14:13:28 -0500202
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500203/* local bus write LED / read status buffer (BCSR) mapping */
204#define CONFIG_SYS_BCSR_ADDR 0xFA000000
205#define CONFIG_SYS_BCSR_SIZE (32 * 1024) /* 0x00008000 */
206 /* map at 0xFA000000 on LCS3 */
Mario Sixc1e29d92019-01-21 09:18:01 +0100207
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600208/* Vitesse 7385 */
209
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600210#ifdef CONFIG_VSC7385_ENET
211
Joe Hershbergerf05b9332011-10-11 23:57:30 -0500212 /* VSC7385 Base address on LCS2 */
213#define CONFIG_SYS_VSC7385_BASE 0xF0000000
214#define CONFIG_SYS_VSC7385_SIZE (128 * 1024) /* 0x00020000 */
215
Mario Sixc1e29d92019-01-21 09:18:01 +0100216
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600217#endif
Scott Wood865b8ae2007-04-16 14:54:15 -0500218
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600219#define CONFIG_MPC83XX_GPIO 1
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600220
Scott Wood865b8ae2007-04-16 14:54:15 -0500221/*
222 * Serial Port
223 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200224#define CONFIG_SYS_NS16550_SERIAL
225#define CONFIG_SYS_NS16550_REG_SIZE 1
Scott Wood865b8ae2007-04-16 14:54:15 -0500226
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200227#define CONFIG_SYS_BAUDRATE_TABLE \
Scott Wood865b8ae2007-04-16 14:54:15 -0500228 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
229
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200230#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
231#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Scott Wood865b8ae2007-04-16 14:54:15 -0500232
Scott Wood865b8ae2007-04-16 14:54:15 -0500233/* I2C */
Heiko Schocherf2850742012-10-24 13:48:22 +0200234#define CONFIG_SYS_I2C
235#define CONFIG_SYS_I2C_FSL
236#define CONFIG_SYS_FSL_I2C_SPEED 400000
237#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
238#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
239#define CONFIG_SYS_FSL_I2C2_SPEED 400000
240#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
241#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
242#define CONFIG_SYS_I2C_NOPROBES { {0, 0x69} }
Scott Wood865b8ae2007-04-16 14:54:15 -0500243
Scott Wood865b8ae2007-04-16 14:54:15 -0500244/*
245 * General PCI
246 * Addresses are mapped 1-1.
247 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200248#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
249#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
250#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
251#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
252#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
253#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
254#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
255#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
256#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
Scott Wood865b8ae2007-04-16 14:54:15 -0500257
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200258#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
Scott Wood865b8ae2007-04-16 14:54:15 -0500259
260/*
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600261 * TSEC
Scott Wood865b8ae2007-04-16 14:54:15 -0500262 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500263
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600264#define CONFIG_GMII /* MII PHY management */
Scott Wood865b8ae2007-04-16 14:54:15 -0500265
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600266#ifdef CONFIG_TSEC1
267#define CONFIG_HAS_ETH0
Kim Phillips177e58f2007-05-16 16:52:19 -0500268#define CONFIG_TSEC1_NAME "TSEC0"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600270#define TSEC1_PHY_ADDR 0x1c
271#define TSEC1_FLAGS TSEC_GIGABIT
272#define TSEC1_PHYIDX 0
273#endif
274
275#ifdef CONFIG_TSEC2
276#define CONFIG_HAS_ETH1
Kim Phillips177e58f2007-05-16 16:52:19 -0500277#define CONFIG_TSEC2_NAME "TSEC1"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200278#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Timur Tabi3e1d49a2008-02-08 13:15:55 -0600279#define TSEC2_PHY_ADDR 4
280#define TSEC2_FLAGS TSEC_GIGABIT
281#define TSEC2_PHYIDX 0
282#endif
283
Scott Wood865b8ae2007-04-16 14:54:15 -0500284/* Options are: TSEC[0-1] */
285#define CONFIG_ETHPRIME "TSEC1"
286
287/*
288 * Configure on-board RTC
289 */
290#define CONFIG_RTC_DS1337
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200291#define CONFIG_SYS_I2C_RTC_ADDR 0x68
Scott Wood865b8ae2007-04-16 14:54:15 -0500292
293/*
294 * Environment
295 */
Tom Rini5cd7ece2019-11-18 20:02:10 -0500296#define CONFIG_ENV_RANGE (CONFIG_SYS_NAND_BLOCK_SIZE * 4)
Scott Wood865b8ae2007-04-16 14:54:15 -0500297
298#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200299#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Scott Wood865b8ae2007-04-16 14:54:15 -0500300
Jon Loeliger3b7116d2007-07-04 22:30:06 -0500301/*
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500302 * BOOTP options
303 */
304#define CONFIG_BOOTP_BOOTFILESIZE
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500305
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500306/*
Jon Loeliger3b7116d2007-07-04 22:30:06 -0500307 * Command line configuration.
308 */
Scott Wood865b8ae2007-04-16 14:54:15 -0500309
Scott Wood865b8ae2007-04-16 14:54:15 -0500310/*
311 * Miscellaneous configurable options
312 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200313#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200314#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500315
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500316 /* Boot Argument Buffer Size */
317#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Scott Wood865b8ae2007-04-16 14:54:15 -0500318
319/*
320 * For booting Linux, the board info and command line data
Ira W. Snyderc5a22d02010-09-10 15:42:32 -0700321 * have to be in the first 256 MB of memory, since this is
Scott Wood865b8ae2007-04-16 14:54:15 -0500322 * the maximum mapped by the Linux kernel during initialization.
323 */
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500324 /* Initial Memory map for Linux*/
325#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
Kevin Hao9c747962016-07-08 11:25:15 +0800326#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Scott Wood865b8ae2007-04-16 14:54:15 -0500327
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200328#define CONFIG_SYS_RCWH_PCIHOST 0x80000000 /* PCIHOST */
Scott Wood865b8ae2007-04-16 14:54:15 -0500329
Mario Sixd10f3182019-01-21 09:17:53 +0100330#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0))
Scott Wood865b8ae2007-04-16 14:54:15 -0500331
332/* System IO Config */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200333#define CONFIG_SYS_SICRH (SICRH_TSOBI1 | SICRH_TSOBI2) /* RGMII */
Joe Hershberger37dabcc2011-11-11 15:55:38 -0600334 /* Enable Internal USB Phy and GPIO on LCD Connector */
335#define CONFIG_SYS_SICRL (SICRL_USBDR_10 | SICRL_LBC)
Scott Wood865b8ae2007-04-16 14:54:15 -0500336
Scott Wood865b8ae2007-04-16 14:54:15 -0500337/*
Scott Wood865b8ae2007-04-16 14:54:15 -0500338 * Environment Configuration
339 */
340#define CONFIG_ENV_OVERWRITE
341
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500342#define CONFIG_NETDEV "eth1"
Scott Wood865b8ae2007-04-16 14:54:15 -0500343
Mario Six790d8442018-03-28 14:38:20 +0200344#define CONFIG_HOSTNAME "mpc8313erdb"
Joe Hershberger257ff782011-10-13 13:03:47 +0000345#define CONFIG_ROOTPATH "/nfs/root/path"
Joe Hershbergere4da2482011-10-13 13:03:48 +0000346#define CONFIG_BOOTFILE "uImage"
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500347 /* U-Boot image on TFTP server */
348#define CONFIG_UBOOTPATH "u-boot.bin"
349#define CONFIG_FDTFILE "mpc8313erdb.dtb"
Scott Wood865b8ae2007-04-16 14:54:15 -0500350
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500351 /* default location for tftp and bootm */
352#define CONFIG_LOADADDR 800000
Scott Wood865b8ae2007-04-16 14:54:15 -0500353
Scott Wood865b8ae2007-04-16 14:54:15 -0500354#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500355 "netdev=" CONFIG_NETDEV "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500356 "ethprime=TSEC1\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500357 "uboot=" CONFIG_UBOOTPATH "\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200358 "tftpflash=tftpboot $loadaddr $uboot; " \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200359 "protect off " __stringify(CONFIG_SYS_TEXT_BASE) \
360 " +$filesize; " \
361 "erase " __stringify(CONFIG_SYS_TEXT_BASE) \
362 " +$filesize; " \
363 "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
364 " $filesize; " \
365 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) \
366 " +$filesize; " \
367 "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
368 " $filesize\0" \
Kim Phillipsfd3a3fc2009-08-21 16:34:38 -0500369 "fdtaddr=780000\0" \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500370 "fdtfile=" CONFIG_FDTFILE "\0" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500371 "console=ttyS0\0" \
372 "setbootargs=setenv bootargs " \
373 "root=$rootdev rw console=$console,$baudrate $othbootargs\0" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200374 "setipargs=setenv bootargs nfsroot=$serverip:$rootpath " \
Joe Hershbergerb263cae2011-10-11 23:57:10 -0500375 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:"\
376 "$netdev:off " \
Scott Wood865b8ae2007-04-16 14:54:15 -0500377 "root=$rootdev rw console=$console,$baudrate $othbootargs\0"
378
379#define CONFIG_NFSBOOTCOMMAND \
380 "setenv rootdev /dev/nfs;" \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200381 "run setbootargs;" \
382 "run setipargs;" \
Scott Wood865b8ae2007-04-16 14:54:15 -0500383 "tftp $loadaddr $bootfile;" \
384 "tftp $fdtaddr $fdtfile;" \
385 "bootm $loadaddr - $fdtaddr"
386
387#define CONFIG_RAMBOOTCOMMAND \
388 "setenv rootdev /dev/ram;" \
389 "run setbootargs;" \
390 "tftp $ramdiskaddr $ramdiskfile;" \
391 "tftp $loadaddr $bootfile;" \
392 "tftp $fdtaddr $fdtfile;" \
393 "bootm $loadaddr $ramdiskaddr $fdtaddr"
394
Scott Wood865b8ae2007-04-16 14:54:15 -0500395#endif /* __CONFIG_H */