blob: e0bfd0881c5fe7894a5c3991d27675acaf8b58ba [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 *
26 * Configuration settings for the MUSENKI board.
27 *
28 */
29
30/* ------------------------------------------------------------------------- */
31
32/*
33 * board/config.h - configuration options, board specific
34 */
35
36#ifndef __CONFIG_H
37#define __CONFIG_H
38
39/*
40 * High Level Configuration Options
41 * (easy to change)
42 */
43
44#define CONFIG_MPC824X 1
45#define CONFIG_MPC8245 1
46#define CONFIG_MUSENKI 1
47
Wolfgang Denk291ba1b2010-10-06 09:05:45 +020048#define CONFIG_SYS_TEXT_BASE 0xFFF00000
wdenkc6097192002-11-03 00:24:07 +000049
50#define CONFIG_CONS_INDEX 1
51#define CONFIG_BAUDRATE 9600
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020052#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
wdenkc6097192002-11-03 00:24:07 +000053
54#define CONFIG_BOOTDELAY 5
55
wdenkc6097192002-11-03 00:24:07 +000056
Jon Loeliger446e1f52007-07-08 14:14:17 -050057/*
Jon Loeligered26c742007-07-10 09:10:49 -050058 * BOOTP options
59 */
60#define CONFIG_BOOTP_BOOTFILESIZE
61#define CONFIG_BOOTP_BOOTPATH
62#define CONFIG_BOOTP_GATEWAY
63#define CONFIG_BOOTP_HOSTNAME
64
65
66/*
Jon Loeliger446e1f52007-07-08 14:14:17 -050067 * Command line configuration.
68 */
69#include <config_cmd_default.h>
wdenkc6097192002-11-03 00:24:07 +000070
71
72/*
73 * Miscellaneous configurable options
74 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020075#undef CONFIG_SYS_LONGHELP /* undef to save memory */
76#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
77#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
wdenkc6097192002-11-03 00:24:07 +000078
79/* Print Buffer Size
80 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
82#define CONFIG_SYS_MAXARGS 8 /* Max number of command args */
83#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
84#define CONFIG_SYS_LOAD_ADDR 0x00100000 /* Default load address */
wdenkc6097192002-11-03 00:24:07 +000085
86/*-----------------------------------------------------------------------
87 * PCI stuff
88 *-----------------------------------------------------------------------
89 */
Wolfgang Denka1be4762008-05-20 16:00:29 +020090#define CONFIG_PCI /* include pci support */
wdenkc6097192002-11-03 00:24:07 +000091#undef CONFIG_PCI_PNP
92
93#define CONFIG_NET_MULTI /* Multi ethernet cards support */
94
95#define CONFIG_TULIP
96
97#define PCI_ENET0_IOADDR 0x80000000
98#define PCI_ENET0_MEMADDR 0x80000000
99#define PCI_ENET1_IOADDR 0x81000000
100#define PCI_ENET1_MEMADDR 0x81000000
101
102
103/*-----------------------------------------------------------------------
104 * Start addresses for the final memory configuration
105 * (Set up by the startup code)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200106 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
wdenkc6097192002-11-03 00:24:07 +0000107 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200108#define CONFIG_SYS_SDRAM_BASE 0x00000000
wdenkc6097192002-11-03 00:24:07 +0000109
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200110#define CONFIG_SYS_FLASH_BASE0_PRELIM 0xFF800000 /* FLASH bank on RCS#0 */
111#define CONFIG_SYS_FLASH_BASE1_PRELIM 0xFF000000 /* FLASH bank on RCS#1 */
112#define CONFIG_SYS_FLASH_BASE CONFIG_SYS_FLASH_BASE0_PRELIM
wdenkc6097192002-11-03 00:24:07 +0000113
114/* even though FLASHP_BASE is FF800000, with 4MB is RCS0, the
115 * reset vector is actually located at FFB00100, but the 8245
116 * takes care of us.
117 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200118#define CONFIG_SYS_RESET_ADDRESS 0xFFF00100
wdenkc6097192002-11-03 00:24:07 +0000119
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200120#define CONFIG_SYS_EUMB_ADDR 0xFC000000
wdenkc6097192002-11-03 00:24:07 +0000121
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200122#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200123#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
124#define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
wdenkc6097192002-11-03 00:24:07 +0000125
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200126#define CONFIG_SYS_MEMTEST_START 0x00004000 /* memtest works on */
127#define CONFIG_SYS_MEMTEST_END 0x02000000 /* 0 ... 32 MB in DRAM */
wdenkc6097192002-11-03 00:24:07 +0000128
129 /* Maximum amount of RAM.
130 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200131#define CONFIG_SYS_MAX_RAM_SIZE 0x08000000 /* 0 .. 128 MB of (S)DRAM */
wdenkc6097192002-11-03 00:24:07 +0000132
133
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200134#if CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE
135#undef CONFIG_SYS_RAMBOOT
wdenkc6097192002-11-03 00:24:07 +0000136#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200137#define CONFIG_SYS_RAMBOOT
wdenkc6097192002-11-03 00:24:07 +0000138#endif
139
140/*
141 * NS16550 Configuration
142 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143#define CONFIG_SYS_NS16550
144#define CONFIG_SYS_NS16550_SERIAL
wdenkc6097192002-11-03 00:24:07 +0000145
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146#define CONFIG_SYS_NS16550_REG_SIZE 1
wdenkc6097192002-11-03 00:24:07 +0000147
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200148#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
wdenkc6097192002-11-03 00:24:07 +0000149
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200150#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_EUMB_ADDR + 0x4500)
151#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_EUMB_ADDR + 0x4600)
wdenkc6097192002-11-03 00:24:07 +0000152
153/*-----------------------------------------------------------------------
154 * Definitions for initial stack pointer and data area
155 */
156
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200157/* #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200158/*#define CONFIG_SYS_GBL_DATA_SIZE 256*/
159#define CONFIG_SYS_GBL_DATA_SIZE 128
160#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
161#define CONFIG_SYS_INIT_RAM_END 0x1000
162#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000163
164
165/*
166 * Low Level Configuration Settings
167 * (address mappings, register initial values, etc.)
168 * You should know what you are doing if you make changes here.
169 * For the detail description refer to the MPC8240 user's manual.
170 */
171
172#define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200173#define CONFIG_SYS_HZ 1000
wdenkc6097192002-11-03 00:24:07 +0000174
175 /* Bit-field values for MCCR1.
176 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200177#define CONFIG_SYS_ROMNAL 7
178#define CONFIG_SYS_ROMFAL 11
179#define CONFIG_SYS_DBUS_SIZE 0x3
wdenkc6097192002-11-03 00:24:07 +0000180
181 /* Bit-field values for MCCR2.
182 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200183#define CONFIG_SYS_TSWAIT 0x5 /* Transaction Start Wait States timer */
184#define CONFIG_SYS_REFINT 0x400 /* Refresh interval FIXME: was 0t430 */
wdenkc6097192002-11-03 00:24:07 +0000185
186 /* Burst To Precharge. Bits of this value go to MCCR3 and MCCR4.
187 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200188#define CONFIG_SYS_BSTOPRE 121
wdenkc6097192002-11-03 00:24:07 +0000189
190 /* Bit-field values for MCCR3.
191 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200192#define CONFIG_SYS_REFREC 8 /* Refresh to activate interval */
wdenkc6097192002-11-03 00:24:07 +0000193
194 /* Bit-field values for MCCR4.
195 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200196#define CONFIG_SYS_PRETOACT 3 /* Precharge to activate interval FIXME: was 2 */
197#define CONFIG_SYS_ACTTOPRE 5 /* Activate to Precharge interval FIXME: was 5 */
198#define CONFIG_SYS_ACTORW 3 /* FIXME was 2 */
199#define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latancy */
200#define CONFIG_SYS_SDMODE_WRAP 0 /* SDMODE wrap type */
201#define CONFIG_SYS_REGISTERD_TYPE_BUFFER 1
202#define CONFIG_SYS_EXTROM 1
203#define CONFIG_SYS_REGDIMM 0
wdenkc6097192002-11-03 00:24:07 +0000204
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200205#define CONFIG_SYS_PGMAX 0x32 /* how long the 8240 reatins the currently accessed page in memory FIXME: was 0x32*/
wdenkc6097192002-11-03 00:24:07 +0000206
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200207#define CONFIG_SYS_SDRAM_DSCD 0x20 /* SDRAM data in sample clock delay - note bottom 3 bits MUST be 0 */
wdenkc6097192002-11-03 00:24:07 +0000208
209/* Memory bank settings.
210 * Only bits 20-29 are actually used from these vales to set the
211 * start/end addresses. The upper two bits will always be 0, and the lower
212 * 20 bits will be 0x00000 for a start address, or 0xfffff for an end
213 * address. Refer to the MPC8240 book.
214 */
215
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200216#define CONFIG_SYS_BANK0_START 0x00000000
217#define CONFIG_SYS_BANK0_END (CONFIG_SYS_MAX_RAM_SIZE - 1)
218#define CONFIG_SYS_BANK0_ENABLE 1
219#define CONFIG_SYS_BANK1_START 0x3ff00000
220#define CONFIG_SYS_BANK1_END 0x3fffffff
221#define CONFIG_SYS_BANK1_ENABLE 0
222#define CONFIG_SYS_BANK2_START 0x3ff00000
223#define CONFIG_SYS_BANK2_END 0x3fffffff
224#define CONFIG_SYS_BANK2_ENABLE 0
225#define CONFIG_SYS_BANK3_START 0x3ff00000
226#define CONFIG_SYS_BANK3_END 0x3fffffff
227#define CONFIG_SYS_BANK3_ENABLE 0
228#define CONFIG_SYS_BANK4_START 0x3ff00000
229#define CONFIG_SYS_BANK4_END 0x3fffffff
230#define CONFIG_SYS_BANK4_ENABLE 0
231#define CONFIG_SYS_BANK5_START 0x3ff00000
232#define CONFIG_SYS_BANK5_END 0x3fffffff
233#define CONFIG_SYS_BANK5_ENABLE 0
234#define CONFIG_SYS_BANK6_START 0x3ff00000
235#define CONFIG_SYS_BANK6_END 0x3fffffff
236#define CONFIG_SYS_BANK6_ENABLE 0
237#define CONFIG_SYS_BANK7_START 0x3ff00000
238#define CONFIG_SYS_BANK7_END 0x3fffffff
239#define CONFIG_SYS_BANK7_ENABLE 0
wdenkc6097192002-11-03 00:24:07 +0000240
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200241#define CONFIG_SYS_ODCR 0xff
wdenkc6097192002-11-03 00:24:07 +0000242
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200243#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
244#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
wdenkc6097192002-11-03 00:24:07 +0000245
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200246#define CONFIG_SYS_IBAT1L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10 | BATL_MEMCOHERENCE)
247#define CONFIG_SYS_IBAT1U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
wdenkc6097192002-11-03 00:24:07 +0000248
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200249#define CONFIG_SYS_IBAT2L (0x80000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
250#define CONFIG_SYS_IBAT2U (0x80000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenkc6097192002-11-03 00:24:07 +0000251
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200252#define CONFIG_SYS_IBAT3L (0xF0000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
253#define CONFIG_SYS_IBAT3U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenkc6097192002-11-03 00:24:07 +0000254
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200255#define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
256#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
257#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
258#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
259#define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
260#define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
261#define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
262#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
wdenkc6097192002-11-03 00:24:07 +0000263
264/*
265 * For booting Linux, the board info and command line data
266 * have to be in the first 8 MB of memory, since this is
267 * the maximum mapped by the Linux kernel during initialization.
268 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenkc6097192002-11-03 00:24:07 +0000270
271/*-----------------------------------------------------------------------
272 * FLASH organization
273 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200274#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* Max number of flash banks */
275#define CONFIG_SYS_MAX_FLASH_SECT 64 /* Max number of sectors per flash */
wdenkc6097192002-11-03 00:24:07 +0000276
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200277#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
278#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
wdenkc6097192002-11-03 00:24:07 +0000279
280
281 /* Warining: environment is not EMBEDDED in the U-Boot code.
282 * It's stored in flash separately.
283 */
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +0200284#define CONFIG_ENV_IS_IN_FLASH 1
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200285#define CONFIG_ENV_ADDR 0xFFFF0000
286#define CONFIG_ENV_SIZE 0x00010000 /* Size of the Environment */
287#define CONFIG_ENV_SECT_SIZE 0x20000 /* Size of the Environment Sector */
wdenkc6097192002-11-03 00:24:07 +0000288
289/*-----------------------------------------------------------------------
290 * Cache Configuration
291 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200292#define CONFIG_SYS_CACHELINE_SIZE 32
Jon Loeliger446e1f52007-07-08 14:14:17 -0500293#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200294# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
wdenkc6097192002-11-03 00:24:07 +0000295#endif
296
wdenkc6097192002-11-03 00:24:07 +0000297#endif /* __CONFIG_H */