blob: 1b8bad179b5221ce18daec4f127eb5db18e09e10 [file] [log] [blame]
Anton Vorontsovfab6f552008-01-09 20:57:47 +03001/*
2 * Copyright (C) 2006 Freescale Semiconductor, Inc.
3 * Dave Liu <daveliu@freescale.com>
4 *
5 * Copyright (C) 2007 Logic Product Development, Inc.
6 * Peter Barada <peterb@logicpd.com>
7 *
8 * Copyright (C) 2007 MontaVista Software, Inc.
9 * Anton Vorontsov <avorontsov@ru.mvista.com>
10 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020011 * SPDX-License-Identifier: GPL-2.0+
Anton Vorontsovfab6f552008-01-09 20:57:47 +030012 */
13
14#ifndef __CONFIG_H
15#define __CONFIG_H
16
Anton Vorontsovfab6f552008-01-09 20:57:47 +030017/*
18 * High Level Configuration Options
19 */
20#define CONFIG_E300 1 /* E300 family */
21#define CONFIG_QE 1 /* Has QE */
Anton Vorontsovfab6f552008-01-09 20:57:47 +030022#define CONFIG_MPC8360 1 /* MPC8360 CPU specific */
23#define CONFIG_MPC8360ERDK 1 /* MPC8360ERDK board specific */
24
Wolfgang Denk2ae18242010-10-06 09:05:45 +020025#define CONFIG_SYS_TEXT_BASE 0xFF800000
26
Anton Vorontsovfab6f552008-01-09 20:57:47 +030027/*
28 * System Clock Setup
29 */
30#ifdef CONFIG_CLKIN_33MHZ
Anton Vorontsovf700e7d2008-03-24 20:47:05 +030031#define CONFIG_83XX_CLKIN 33333333
32#define CONFIG_SYS_CLK_FREQ 33333333
Wolfgang Denk2ae18242010-10-06 09:05:45 +020033#define CONFIG_PCI_33M 1
Anton Vorontsovfab6f552008-01-09 20:57:47 +030034#define HRCWL_CSB_TO_CLKIN_MPC8360ERDK HRCWL_CSB_TO_CLKIN_10X1
35#else
36#define CONFIG_83XX_CLKIN 66000000
37#define CONFIG_SYS_CLK_FREQ 66000000
Wolfgang Denk2ae18242010-10-06 09:05:45 +020038#define CONFIG_PCI_66M 1
Anton Vorontsovfab6f552008-01-09 20:57:47 +030039#define HRCWL_CSB_TO_CLKIN_MPC8360ERDK HRCWL_CSB_TO_CLKIN_5X1
40#endif /* CONFIG_CLKIN_33MHZ */
41
42/*
43 * Hardware Reset Configuration Word
44 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#define CONFIG_SYS_HRCW_LOW (\
Anton Vorontsovfab6f552008-01-09 20:57:47 +030046 HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
47 HRCWL_DDR_TO_SCB_CLK_1X1 |\
48 HRCWL_CSB_TO_CLKIN_MPC8360ERDK |\
49 HRCWL_CORE_TO_CSB_2X1 |\
50 HRCWL_CE_TO_PLL_1X15)
51
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#define CONFIG_SYS_HRCW_HIGH (\
Anton Vorontsovfab6f552008-01-09 20:57:47 +030053 HRCWH_PCI_HOST |\
54 HRCWH_PCI1_ARBITER_ENABLE |\
55 HRCWH_PCICKDRV_ENABLE |\
56 HRCWH_CORE_ENABLE |\
57 HRCWH_FROM_0X00000100 |\
58 HRCWH_BOOTSEQ_DISABLE |\
59 HRCWH_SW_WATCHDOG_DISABLE |\
60 HRCWH_ROM_LOC_LOCAL_16BIT |\
61 HRCWH_SECONDARY_DDR_DISABLE |\
62 HRCWH_BIG_ENDIAN |\
63 HRCWH_LALE_EARLY)
64
65/*
66 * System IO Config
67 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#define CONFIG_SYS_SICRH 0x00000000
69#define CONFIG_SYS_SICRL 0x40000000
Anton Vorontsovfab6f552008-01-09 20:57:47 +030070
Anton Vorontsovfab6f552008-01-09 20:57:47 +030071#define CONFIG_BOARD_EARLY_INIT_R
72
73/*
74 * IMMR new address
75 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#define CONFIG_SYS_IMMR 0xE0000000
Anton Vorontsovfab6f552008-01-09 20:57:47 +030077
78/*
79 * DDR Setup
80 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
82#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
83#define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
Joe Hershberger9a986552011-10-11 23:57:17 -050084#define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN \
85 | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
Anton Vorontsovfab6f552008-01-09 20:57:47 +030086
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#define CONFIG_SYS_83XX_DDR_USES_CS0
Anton Vorontsovfab6f552008-01-09 20:57:47 +030088
Anton Vorontsovd892b2d2008-03-24 20:46:57 +030089#define CONFIG_DDR_ECC /* support DDR ECC function */
90#define CONFIG_DDR_ECC_CMD /* Use DDR ECC user commands */
Anton Vorontsovfab6f552008-01-09 20:57:47 +030091
92/*
93 * DDRCDR - DDR Control Driver Register
94 */
Joe Hershberger2fef4022011-10-11 23:57:29 -050095#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_DHC_EN \
96 | DDRCDR_ODT \
97 | DDRCDR_Q_DRN)
98 /* 0x80080001 */
Anton Vorontsovfab6f552008-01-09 20:57:47 +030099
100#undef CONFIG_SPD_EEPROM /* Do not use SPD EEPROM for DDR setup */
101
102/*
103 * Manually set up DDR parameters
104 */
105#define CONFIG_DDR_II
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106#define CONFIG_SYS_DDR_SIZE 256 /* MB */
Joe Hershberger2fef4022011-10-11 23:57:29 -0500107#define CONFIG_SYS_DDR_CS0_BNDS 0x0000000f
Joe Hershberger9a986552011-10-11 23:57:17 -0500108#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
109 | CSCONFIG_ROW_BIT_13 \
110 | CSCONFIG_COL_BIT_10 \
Joe Hershberger2fef4022011-10-11 23:57:29 -0500111 | CSCONFIG_ODT_WR_ONLY_CURRENT)
Joe Hershberger9a986552011-10-11 23:57:17 -0500112#define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SDRAM_TYPE_DDR2 \
113 | SDRAM_CFG_ECC_EN)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#define CONFIG_SYS_DDR_SDRAM_CFG2 0x00001000
Joe Hershberger9a986552011-10-11 23:57:17 -0500115#define CONFIG_SYS_DDR_CLK_CNTL (DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
116#define CONFIG_SYS_DDR_INTERVAL ((256 << SDRAM_INTERVAL_BSTOPRE_SHIFT) \
117 | (1115 << SDRAM_INTERVAL_REFINT_SHIFT))
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118#define CONFIG_SYS_DDR_MODE 0x47800432
119#define CONFIG_SYS_DDR_MODE2 0x8000c000
Anton Vorontsovd892b2d2008-03-24 20:46:57 +0300120
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121#define CONFIG_SYS_DDR_TIMING_0 ((2 << TIMING_CFG0_MRS_CYC_SHIFT) | \
Anton Vorontsovd892b2d2008-03-24 20:46:57 +0300122 (9 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \
123 (3 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \
124 (3 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \
125 (0 << TIMING_CFG0_WWT_SHIFT) | \
126 (0 << TIMING_CFG0_RRT_SHIFT) | \
127 (0 << TIMING_CFG0_WRT_SHIFT) | \
128 (0 << TIMING_CFG0_RWT_SHIFT))
129
Joe Hershberger9a986552011-10-11 23:57:17 -0500130#define CONFIG_SYS_DDR_TIMING_1 ((TIMING_CFG1_CASLAT_30) | \
131 (2 << TIMING_CFG1_WRTORD_SHIFT) | \
132 (2 << TIMING_CFG1_ACTTOACT_SHIFT) | \
133 (3 << TIMING_CFG1_WRREC_SHIFT) | \
Anton Vorontsovd892b2d2008-03-24 20:46:57 +0300134 (10 << TIMING_CFG1_REFREC_SHIFT) | \
Joe Hershberger9a986552011-10-11 23:57:17 -0500135 (3 << TIMING_CFG1_ACTTORW_SHIFT) | \
136 (8 << TIMING_CFG1_ACTTOPRE_SHIFT) | \
137 (3 << TIMING_CFG1_PRETOACT_SHIFT))
Anton Vorontsovd892b2d2008-03-24 20:46:57 +0300138
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139#define CONFIG_SYS_DDR_TIMING_2 ((9 << TIMING_CFG2_FOUR_ACT_SHIFT) | \
Anton Vorontsovd892b2d2008-03-24 20:46:57 +0300140 (4 << TIMING_CFG2_CKE_PLS_SHIFT) | \
141 (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \
142 (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \
143 (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \
144 (0 << TIMING_CFG2_ADD_LAT_SHIFT) | \
145 (0 << TIMING_CFG2_CPO_SHIFT))
146
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200147#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300148
149/*
150 * Memory test
151 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152#undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */
153#define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest region */
154#define CONFIG_SYS_MEMTEST_END 0x00100000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300155
156/*
157 * The reserved memory
158 */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200159#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160#define CONFIG_SYS_FLASH_BASE 0xFF800000 /* FLASH base address */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300161
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
163#define CONFIG_SYS_RAMBOOT
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300164#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165#undef CONFIG_SYS_RAMBOOT
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300166#endif
167
Joe Hershberger9a986552011-10-11 23:57:17 -0500168#define CONFIG_SYS_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Mon */
Kim Phillipsc8a90642012-06-30 18:29:20 -0500169#define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserved for malloc */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300170
171/*
172 * Initial RAM Base Address Setup
173 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174#define CONFIG_SYS_INIT_RAM_LOCK 1
175#define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200176#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */
Joe Hershberger9a986552011-10-11 23:57:17 -0500177#define CONFIG_SYS_GBL_DATA_OFFSET \
178 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300179
180/*
181 * Local Bus Configuration & Clock Setup
182 */
Kim Phillipsc7190f02009-09-25 18:19:44 -0500183#define CONFIG_SYS_LCRR_DBYP LCRR_DBYP
184#define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4
Joe Hershberger9a986552011-10-11 23:57:17 -0500185#define CONFIG_SYS_LBC_LBCR 0x00000000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300186
187/*
188 * FLASH on the Local Bus
189 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
Joe Hershberger9a986552011-10-11 23:57:17 -0500191#define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200192#define CONFIG_SYS_FLASH_SIZE 8 /* max FLASH size is 32M */
193#define CONFIG_SYS_FLASH_PROTECTION 1 /* Use intel Flash protection. */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300194
Joe Hershberger9a986552011-10-11 23:57:17 -0500195 /* Window base at flash base */
196#define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500197#define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300198
Joe Hershberger9a986552011-10-11 23:57:17 -0500199#define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500200 | BR_PS_16 /* 16 bit port */ \
201 | BR_MS_GPCM /* MSEL = GPCM */ \
202 | BR_V) /* valid */
203#define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \
Joe Hershberger9a986552011-10-11 23:57:17 -0500204 | OR_UPM_XAM \
205 | OR_GPCM_CSNT \
206 | OR_GPCM_ACS_DIV2 \
207 | OR_GPCM_XACS \
208 | OR_GPCM_SCY_15 \
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500209 | OR_GPCM_TRLX_SET \
210 | OR_GPCM_EHTR_SET \
Joe Hershberger9a986552011-10-11 23:57:17 -0500211 | OR_GPCM_EAD)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300212
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200213#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
214#define CONFIG_SYS_MAX_FLASH_SECT 256 /* max sectors per device */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300215
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200216#undef CONFIG_SYS_FLASH_CHECKSUM
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300217
218/*
219 * NAND flash on the local bus
220 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200221#define CONFIG_SYS_NAND_BASE 0x60000000
Anton Vorontsov7ad95942008-03-24 20:46:51 +0300222#define CONFIG_CMD_NAND 1
223#define CONFIG_NAND_FSL_UPM 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200224#define CONFIG_SYS_MAX_NAND_DEVICE 1
Anton Vorontsov7ad95942008-03-24 20:46:51 +0300225#define CONFIG_MTD_NAND_VERIFY_WRITE
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300226
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227#define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_NAND_BASE
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500228/*
229 * [RFC] Comment said 4KB window; code said 256MB window; OR1 says 64MB
230 * ... What's correct?
231 */
232#define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_256MB)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300233
234/* Port size 8 bit, UPMA */
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500235#define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_NAND_BASE \
236 | BR_PS_8 \
237 | BR_MS_UPMA \
238 | BR_V)
239 /* 0x60000881 */
240#define CONFIG_SYS_OR1_PRELIM (OR_AM_64MB | OR_UPM_EAD)
241 /* 0xFC000001 */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300242
243/*
244 * Fujitsu MB86277 (MINT) graphics controller
245 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200246#define CONFIG_SYS_VIDEO_BASE 0x70000000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300247
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200248#define CONFIG_SYS_LBLAWBAR2_PRELIM CONFIG_SYS_VIDEO_BASE
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500249#define CONFIG_SYS_LBLAWAR2_PRELIM (LBLAWAR_EN | LBLAWAR_64MB)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300250
251/* Port size 32 bit, UPMB */
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500252#define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_VIDEO_BASE \
253 | BR_PS_32 \
254 | BR_MS_UPMB \
255 | BR_V)
256 /* 0x000018a1 */
257#define CONFIG_SYS_OR2_PRELIM (OR_AM_64MB | OR_UPM_EAD)
258 /* 0xFC000001 */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300259
260/*
261 * Serial Port
262 */
263#define CONFIG_CONS_INDEX 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200264#define CONFIG_SYS_NS16550
265#define CONFIG_SYS_NS16550_SERIAL
266#define CONFIG_SYS_NS16550_REG_SIZE 1
267#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300268
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269#define CONFIG_SYS_BAUDRATE_TABLE \
Joe Hershberger9a986552011-10-11 23:57:17 -0500270 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300271
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200272#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
273#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300274
275#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
Joe Hershberger9a986552011-10-11 23:57:17 -0500276#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300277/* Use the HUSH parser */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200278#define CONFIG_SYS_HUSH_PARSER
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300279
280/* Pass open firmware flat tree */
281#define CONFIG_OF_LIBFDT 1
282#define CONFIG_OF_BOARD_SETUP 1
Anton Vorontsov3a0cfdd2008-03-24 20:47:02 +0300283#define CONFIG_OF_STDOUT_VIA_ALIAS
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300284
285/* I2C */
Heiko Schocher00f792e2012-10-24 13:48:22 +0200286#define CONFIG_SYS_I2C
287#define CONFIG_SYS_I2C_FSL
288#define CONFIG_SYS_FSL_I2C_SPEED 400000
289#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
290#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
291#define CONFIG_SYS_FSL_I2C2_SPEED 400000
292#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
293#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
294#define CONFIG_SYS_I2C_NOPROBES { {0, 0x52} }
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300295
296/*
297 * General PCI
298 * Addresses are mapped 1-1.
299 */
300#define CONFIG_PCI
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300301
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200302#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
303#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
304#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
305#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
306#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
307#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
Joe Hershberger9a986552011-10-11 23:57:17 -0500308#define CONFIG_SYS_PCI1_IO_BASE 0xE0300000
309#define CONFIG_SYS_PCI1_IO_PHYS 0xE0300000
310#define CONFIG_SYS_PCI1_IO_SIZE 0x100000 /* 1M */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300311
312#ifdef CONFIG_PCI
Gabor Juhos842033e2013-05-30 07:06:12 +0000313#define CONFIG_PCI_INDIRECT_BRIDGE
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300314
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300315#define CONFIG_PCI_PNP /* do pci plug-and-play */
316
317#undef CONFIG_EEPRO100
318#undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200319#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300320
321#endif /* CONFIG_PCI */
322
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300323/*
324 * QE UEC ethernet configuration
325 */
326#define CONFIG_UEC_ETH
Kim Phillips78b7a8e2010-07-26 18:34:57 -0500327#define CONFIG_ETHPRIME "UEC0"
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300328
329#define CONFIG_UEC_ETH1 /* GETH1 */
330
331#ifdef CONFIG_UEC_ETH1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200332#define CONFIG_SYS_UEC1_UCC_NUM 0 /* UCC1 */
333#define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE
334#define CONFIG_SYS_UEC1_TX_CLK QE_CLK9
335#define CONFIG_SYS_UEC1_ETH_TYPE GIGA_ETH
336#define CONFIG_SYS_UEC1_PHY_ADDR 2
Joe Hershberger9a986552011-10-11 23:57:17 -0500337#define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_RXID
338#define CONFIG_SYS_UEC1_INTERFACE_SPEED 1000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300339#endif
340
341#define CONFIG_UEC_ETH2 /* GETH2 */
342
343#ifdef CONFIG_UEC_ETH2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200344#define CONFIG_SYS_UEC2_UCC_NUM 1 /* UCC2 */
345#define CONFIG_SYS_UEC2_RX_CLK QE_CLK_NONE
346#define CONFIG_SYS_UEC2_TX_CLK QE_CLK4
347#define CONFIG_SYS_UEC2_ETH_TYPE GIGA_ETH
348#define CONFIG_SYS_UEC2_PHY_ADDR 4
Joe Hershberger9a986552011-10-11 23:57:17 -0500349#define CONFIG_SYS_UEC2_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_RXID
350#define CONFIG_SYS_UEC2_INTERFACE_SPEED 1000
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300351#endif
352
353/*
354 * Environment
355 */
356
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200357#ifndef CONFIG_SYS_RAMBOOT
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200358#define CONFIG_ENV_IS_IN_FLASH 1
Joe Hershberger9a986552011-10-11 23:57:17 -0500359#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200360#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
361#define CONFIG_ENV_SIZE 0x20000
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200362#else /* CONFIG_SYS_RAMBOOT */
Joe Hershberger9a986552011-10-11 23:57:17 -0500363#define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +0200364#define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200365#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200366#define CONFIG_ENV_SIZE 0x2000
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200367#endif /* CONFIG_SYS_RAMBOOT */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300368
369#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300371
372/*
373 * BOOTP options
374 */
375#define CONFIG_BOOTP_BOOTFILESIZE
376#define CONFIG_BOOTP_BOOTPATH
377#define CONFIG_BOOTP_GATEWAY
378#define CONFIG_BOOTP_HOSTNAME
379
380
381/*
382 * Command line configuration.
383 */
384#include <config_cmd_default.h>
385
386#define CONFIG_CMD_PING
387#define CONFIG_CMD_I2C
388#define CONFIG_CMD_ASKENV
Anton Vorontsov3419eb62008-03-24 20:47:00 +0300389#define CONFIG_CMD_DHCP
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300390
391#if defined(CONFIG_PCI)
392#define CONFIG_CMD_PCI
393#endif
394
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200395#if defined(CONFIG_SYS_RAMBOOT)
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500396#undef CONFIG_CMD_SAVEENV
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300397#undef CONFIG_CMD_LOADS
398#endif
399
400#undef CONFIG_WATCHDOG /* watchdog disabled */
401
402/*
403 * Miscellaneous configurable options
404 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405#define CONFIG_SYS_LONGHELP /* undef to save memory */
406#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300407
408#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300410#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200411 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300412#endif
413
Joe Hershberger9a986552011-10-11 23:57:17 -0500414 /* Print Buffer Size */
415#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
416#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
417 /* Boot Argument Buffer Size */
418#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300419
420/*
421 * For booting Linux, the board info and command line data
Ira W. Snyder9f530d52010-09-10 15:42:32 -0700422 * have to be in the first 256 MB of memory, since this is
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300423 * the maximum mapped by the Linux kernel during initialization.
424 */
Joe Hershberger9a986552011-10-11 23:57:17 -0500425#define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300426
427/*
428 * Core HID Setup
429 */
Kim Phillips1a2e2032010-04-20 19:37:54 -0500430#define CONFIG_SYS_HID0_INIT 0x000000000
431#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
432 HID0_ENABLE_INSTRUCTION_CACHE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200433#define CONFIG_SYS_HID2 HID2_HBE
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300434
435/*
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300436 * MMU Setup
437 */
438
Becky Bruce31d82672008-05-08 19:02:12 -0500439#define CONFIG_HIGH_BATS 1 /* High BATs supported */
440
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300441/* DDR: cache cacheable */
Joe Hershberger9a986552011-10-11 23:57:17 -0500442#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500443 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500444 | BATL_MEMCOHERENCE)
445#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \
446 | BATU_BL_256M \
447 | BATU_VS \
448 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200449#define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
450#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300451
452/* IMMRBAR & PCI IO: cache-inhibit and guarded */
Joe Hershberger9a986552011-10-11 23:57:17 -0500453#define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500454 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500455 | BATL_CACHEINHIBIT \
456 | BATL_GUARDEDSTORAGE)
457#define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR \
458 | BATU_BL_4M \
459 | BATU_VS \
460 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200461#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
462#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300463
464/* NAND: cache-inhibit and guarded */
Joe Hershberger9a986552011-10-11 23:57:17 -0500465#define CONFIG_SYS_IBAT2L (CONFIG_SYS_NAND_BASE \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500466 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500467 | BATL_CACHEINHIBIT \
468 | BATL_GUARDEDSTORAGE)
469#define CONFIG_SYS_IBAT2U (CONFIG_SYS_NAND_BASE \
470 | BATU_BL_64M \
471 | BATU_VS \
472 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200473#define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
474#define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300475
476/* FLASH: icache cacheable, but dcache-inhibit and guarded */
Joe Hershberger9a986552011-10-11 23:57:17 -0500477#define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500478 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500479 | BATL_MEMCOHERENCE)
480#define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE \
481 | BATU_BL_32M \
482 | BATU_VS \
483 | BATU_VP)
484#define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500485 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500486 | BATL_CACHEINHIBIT \
487 | BATL_GUARDEDSTORAGE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200488#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300489
490/* Stack in dcache: cacheable, no memory coherence */
Joe Hershberger9a986552011-10-11 23:57:17 -0500491#define CONFIG_SYS_IBAT4L (CONFIG_SYS_INIT_RAM_ADDR \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500492 | BATL_PP_RW)
Joe Hershberger9a986552011-10-11 23:57:17 -0500493#define CONFIG_SYS_IBAT4U (CONFIG_SYS_INIT_RAM_ADDR \
494 | BATU_BL_128K \
495 | BATU_VS \
496 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200497#define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
498#define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300499
Joe Hershberger9a986552011-10-11 23:57:17 -0500500#define CONFIG_SYS_IBAT5L (CONFIG_SYS_VIDEO_BASE \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500501 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500502 | BATL_CACHEINHIBIT \
503 | BATL_GUARDEDSTORAGE)
504#define CONFIG_SYS_IBAT5U (CONFIG_SYS_VIDEO_BASE \
505 | BATU_BL_64M \
506 | BATU_VS \
507 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200508#define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L
509#define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300510
511#ifdef CONFIG_PCI
512/* PCI MEM space: cacheable */
Joe Hershberger9a986552011-10-11 23:57:17 -0500513#define CONFIG_SYS_IBAT6L (CONFIG_SYS_PCI1_MEM_PHYS \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500514 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500515 | BATL_MEMCOHERENCE)
516#define CONFIG_SYS_IBAT6U (CONFIG_SYS_PCI1_MEM_PHYS \
517 | BATU_BL_256M \
518 | BATU_VS \
519 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200520#define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
521#define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300522/* PCI MMIO space: cache-inhibit and guarded */
Joe Hershberger9a986552011-10-11 23:57:17 -0500523#define CONFIG_SYS_IBAT7L (CONFIG_SYS_PCI1_MMIO_PHYS \
Joe Hershberger72cd4082011-10-11 23:57:28 -0500524 | BATL_PP_RW \
Joe Hershberger9a986552011-10-11 23:57:17 -0500525 | BATL_CACHEINHIBIT \
526 | BATL_GUARDEDSTORAGE)
527#define CONFIG_SYS_IBAT7U (CONFIG_SYS_PCI1_MMIO_PHYS \
528 | BATU_BL_256M \
529 | BATU_VS \
530 | BATU_VP)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200531#define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
532#define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300533#else /* CONFIG_PCI */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200534#define CONFIG_SYS_IBAT6L (0)
535#define CONFIG_SYS_IBAT6U (0)
536#define CONFIG_SYS_IBAT7L (0)
537#define CONFIG_SYS_IBAT7U (0)
538#define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
539#define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
540#define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
541#define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300542#endif /* CONFIG_PCI */
543
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300544#if defined(CONFIG_CMD_KGDB)
545#define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300546#endif
547
548/*
549 * Environment Configuration
550 */
551#define CONFIG_ENV_OVERWRITE
552
553#if defined(CONFIG_UEC_ETH)
554#define CONFIG_HAS_ETH0
555#define CONFIG_HAS_ETH1
556#define CONFIG_HAS_ETH2
557#define CONFIG_HAS_ETH3
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300558#endif
559
560#define CONFIG_BAUDRATE 115200
561
562#define CONFIG_LOADADDR a00000
563#define CONFIG_HOSTNAME mpc8360erdk
Joe Hershbergerb3f44c22011-10-13 13:03:48 +0000564#define CONFIG_BOOTFILE "uImage"
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300565
Joe Hershberger8b3637c2011-10-13 13:03:47 +0000566#define CONFIG_ROOTPATH "/nfsroot/"
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300567
568#define CONFIG_BOOTDELAY 2 /* -1 disables auto-boot */
569#undef CONFIG_BOOTARGS /* the boot command will set bootargs */
570
571#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershberger9a986552011-10-11 23:57:17 -0500572 "netdev=eth0\0" \
573 "consoledev=ttyS0\0" \
574 "loadaddr=a00000\0" \
575 "fdtaddr=900000\0" \
576 "fdtfile=mpc836x_rdk.dtb\0" \
577 "fsfile=fs\0" \
578 "ubootfile=u-boot.bin\0" \
579 "mtdparts=mtdparts=60000000.nand-flash:4096k(kernel),128k(dtb),"\
580 "-(rootfs)\0" \
581 "setbootargs=setenv bootargs console=$consoledev,$baudrate " \
582 "$mtdparts panic=1\0" \
583 "adddhcpargs=setenv bootargs $bootargs ip=on\0" \
584 "addnfsargs=setenv bootargs $bootargs ip=$ipaddr:$serverip:" \
585 "$gatewayip:$netmask:$hostname:$netdev:off " \
586 "root=/dev/nfs rw nfsroot=$serverip:$rootpath\0" \
587 "addnandargs=setenv bootargs $bootargs root=/dev/mtdblock3 " \
588 "rootfstype=jffs2 rw\0" \
589 "tftp_get_uboot=tftp 100000 $ubootfile\0" \
590 "tftp_get_kernel=tftp $loadaddr $bootfile\0" \
591 "tftp_get_dtb=tftp $fdtaddr $fdtfile\0" \
592 "tftp_get_fs=tftp c00000 $fsfile\0" \
593 "nand_erase_kernel=nand erase 0 400000\0" \
594 "nand_erase_dtb=nand erase 400000 20000\0" \
595 "nand_erase_fs=nand erase 420000 3be0000\0" \
596 "nand_write_kernel=nand write.jffs2 $loadaddr 0 400000\0" \
597 "nand_write_dtb=nand write.jffs2 $fdtaddr 400000 20000\0" \
598 "nand_write_fs=nand write.jffs2 c00000 420000 $filesize\0" \
599 "nand_read_kernel=nand read.jffs2 $loadaddr 0 400000\0" \
600 "nand_read_dtb=nand read.jffs2 $fdtaddr 400000 20000\0" \
601 "nor_reflash=protect off ff800000 ff87ffff ; " \
602 "erase ff800000 ff87ffff ; " \
603 "cp.b 100000 ff800000 $filesize\0" \
604 "nand_reflash_kernel=run tftp_get_kernel nand_erase_kernel " \
605 "nand_write_kernel\0" \
606 "nand_reflash_dtb=run tftp_get_dtb nand_erase_dtb nand_write_dtb\0"\
607 "nand_reflash_fs=run tftp_get_fs nand_erase_fs nand_write_fs\0" \
608 "nand_reflash=run nand_reflash_kernel nand_reflash_dtb " \
609 "nand_reflash_fs\0" \
610 "boot_m=bootm $loadaddr - $fdtaddr\0" \
611 "dhcpboot=dhcp ; run setbootargs adddhcpargs tftp_get_dtb boot_m\0"\
612 "nfsboot=run setbootargs addnfsargs tftp_get_kernel tftp_get_dtb "\
613 "boot_m\0" \
614 "nandboot=run setbootargs addnandargs nand_read_kernel nand_read_dtb "\
615 "boot_m\0" \
616 ""
Anton Vorontsovfab6f552008-01-09 20:57:47 +0300617
618#define CONFIG_BOOTCOMMAND "run dhcpboot"
619
620#endif /* __CONFIG_H */