blob: 198f3423e8ddca0a9599ff0b4ac8259d39be52f8 [file] [log] [blame]
wdenk0db5bca2003-03-31 17:27:09 +00001/*
2 * (C) Copyright 2003
3 * Martin Winistoerfer, martinwinistoerfer@gmx.ch.
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
wdenk8bde7f72003-06-27 21:31:46 +000020 * Foundation,
wdenk0db5bca2003-03-31 17:27:09 +000021 */
22
23/*
24 * File: cmi_mpc5xx.h
wdenk8bde7f72003-06-27 21:31:46 +000025 *
26 * Discription: Config header file for cmi
Wolfgang Denk53677ef2008-05-20 16:00:29 +020027 * board using an MPC5xx CPU
wdenk0db5bca2003-03-31 17:27:09 +000028 *
29 */
30
31#ifndef __CONFIG_H
32#define __CONFIG_H
33
34/*
35 * High Level Configuration Options
36 */
37
38#define CONFIG_MPC555 1 /* This is an MPC555 CPU */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020039#define CONFIG_CMI 1 /* Using the customized cmi board */
wdenk0db5bca2003-03-31 17:27:09 +000040
Wolfgang Denk2ae18242010-10-06 09:05:45 +020041#define CONFIG_SYS_TEXT_BASE 0x02000000 /* Boot from flash at location 0x00000000 */
42
wdenk0db5bca2003-03-31 17:27:09 +000043/* Serial Console Configuration */
44#define CONFIG_5xx_CONS_SCI1
45#undef CONFIG_5xx_CONS_SCI2
46
47#define CONFIG_BAUDRATE 57600
48
wdenk0db5bca2003-03-31 17:27:09 +000049
Jon Loeligerb730cda2007-07-04 22:31:35 -050050/*
Jon Loeliger80ff4f92007-07-10 09:29:01 -050051 * BOOTP options
52 */
53#define CONFIG_BOOTP_BOOTFILESIZE
54#define CONFIG_BOOTP_BOOTPATH
55#define CONFIG_BOOTP_GATEWAY
56#define CONFIG_BOOTP_HOSTNAME
57
58
59/*
Jon Loeligerb730cda2007-07-04 22:31:35 -050060 * Command line configuration.
61 */
62#include <config_cmd_default.h>
63
Wolfgang Denk2d1f23a2007-08-29 13:35:03 +020064#undef CONFIG_CMD_NET /* disabeled - causes compile errors */
65
Jon Loeligerb730cda2007-07-04 22:31:35 -050066#define CONFIG_CMD_MEMORY
67#define CONFIG_CMD_LOADB
68#define CONFIG_CMD_REGINFO
69#define CONFIG_CMD_FLASH
70#define CONFIG_CMD_LOADS
71#define CONFIG_CMD_ASKENV
72#define CONFIG_CMD_BDI
73#define CONFIG_CMD_CONSOLE
Mike Frysingerbdab39d2009-01-28 19:08:14 -050074#define CONFIG_CMD_SAVEENV
Jon Loeligerb730cda2007-07-04 22:31:35 -050075#define CONFIG_CMD_RUN
76#define CONFIG_CMD_IMI
77
wdenk0db5bca2003-03-31 17:27:09 +000078
79#if 0
80#define CONFIG_BOOTDELAY -1 /* autoboot disabled */
81#else
82#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
83#endif
Wolfgang Denk53677ef2008-05-20 16:00:29 +020084#define CONFIG_BOOTCOMMAND "go 02034004" /* autoboot command */
wdenk0db5bca2003-03-31 17:27:09 +000085
86#define CONFIG_BOOTARGS "" /* Assuming OS Image in 4 flash sector at offset 4004 */
87
Wolfgang Denk53677ef2008-05-20 16:00:29 +020088#define CONFIG_WATCHDOG /* turn on platform specific watchdog */
wdenk0db5bca2003-03-31 17:27:09 +000089
wdenk8bde7f72003-06-27 21:31:46 +000090#define CONFIG_STATUS_LED 1 /* Enable status led */
wdenk0db5bca2003-03-31 17:27:09 +000091
92#define CONFIG_LOADS_ECHO 1 /* Echo on for serial download */
93
94/*
wdenk8bde7f72003-06-27 21:31:46 +000095 * Miscellaneous configurable options
wdenk0db5bca2003-03-31 17:27:09 +000096 */
97
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098#define CONFIG_SYS_LONGHELP /* undef to save memory */
99#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
Jon Loeligerb730cda2007-07-04 22:31:35 -0500100#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200101#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
wdenk0db5bca2003-03-31 17:27:09 +0000102#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
wdenk0db5bca2003-03-31 17:27:09 +0000104#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
106#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
107#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenk0db5bca2003-03-31 17:27:09 +0000108
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109#define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */
110#define CONFIG_SYS_MEMTEST_END 0x000fa000 /* 1 MB in SRAM */
wdenk0db5bca2003-03-31 17:27:09 +0000111
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
wdenk0db5bca2003-03-31 17:27:09 +0000113
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#define CONFIG_SYS_HZ 1000 /* Decrementer freq: 1 ms ticks */
wdenk0db5bca2003-03-31 17:27:09 +0000115
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 1250000 }
wdenk0db5bca2003-03-31 17:27:09 +0000117
118
119/*
120 * Low Level Configuration Settings
121 */
122
123/*
124 * Internal Memory Mapped (This is not the IMMR content)
125 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126#define CONFIG_SYS_IMMR 0x01000000 /* Physical start adress of internal memory map */
wdenk0db5bca2003-03-31 17:27:09 +0000127
128/*
129 * Definitions for initial stack pointer and data area
130 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131#define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_IMMR + 0x003f9800) /* Physical start adress of internal MPC555 writable RAM */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200132#define CONFIG_SYS_INIT_RAM_SIZE (CONFIG_SYS_IMMR + 0x003fffff) /* Physical end adress of internal MPC555 used RAM area */
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200133#define CONFIG_SYS_GBL_DATA_OFFSET ((CONFIG_SYS_INIT_RAM_SIZE - CONFIG_SYS_INIT_RAM_ADDR) - GENERATED_GBL_DATA_SIZE) /* Offset from the beginning of ram */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134#define CONFIG_SYS_INIT_SP_ADDR 0x013fa000 /* Physical start adress of inital stack */
wdenk0db5bca2003-03-31 17:27:09 +0000135
136/*
137 * Start addresses for the final memory configuration
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
wdenk0db5bca2003-03-31 17:27:09 +0000139 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* Monitor won't change memory map */
141#define CONFIG_SYS_FLASH_BASE 0x02000000 /* External flash */
wdenk0db5bca2003-03-31 17:27:09 +0000142#define PLD_BASE 0x03000000 /* PLD */
143#define ANYBUS_BASE 0x03010000 /* Anybus Module */
144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145#define CONFIG_SYS_RESET_ADRESS 0x01000000 /* Adress which causes reset */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200146#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE /* CONFIG_SYS_TEXT_BASE is defined in the board config.mk file. */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200147 /* This adress is given to the linker with -Ttext to */
148 /* locate the text section at this adress. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
150#define CONFIG_SYS_MALLOC_LEN (64 << 10) /* Reserve 128 kB for malloc() */
wdenk0db5bca2003-03-31 17:27:09 +0000151
152/*
153 * For booting Linux, the board info and command line data
154 * have to be in the first 8 MB of memory, since this is
155 * the maximum mapped by the Linux kernel during initialization.
156 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenk0db5bca2003-03-31 17:27:09 +0000158
159
160/*-----------------------------------------------------------------------
wdenk8bde7f72003-06-27 21:31:46 +0000161 * FLASH organization
wdenk0db5bca2003-03-31 17:27:09 +0000162 *-----------------------------------------------------------------------
wdenk8bde7f72003-06-27 21:31:46 +0000163 *
wdenk0db5bca2003-03-31 17:27:09 +0000164 */
165
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of memory banks */
167#define CONFIG_SYS_MAX_FLASH_SECT 64 /* Max number of sectors on one chip */
168#define CONFIG_SYS_FLASH_ERASE_TOUT 180000 /* Timeout for Flash Erase (in ms) */
169#define CONFIG_SYS_FLASH_WRITE_TOUT 600 /* Timeout for Flash Write (in ms) */
170#define CONFIG_SYS_FLASH_PROTECTION 1 /* Physically section protection on */
wdenk0db5bca2003-03-31 17:27:09 +0000171
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200172#define CONFIG_ENV_IS_IN_FLASH 1
wdenk0db5bca2003-03-31 17:27:09 +0000173
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200174#ifdef CONFIG_ENV_IS_IN_FLASH
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200175#define CONFIG_ENV_OFFSET 0x00020000 /* Environment starts at this adress */
176#define CONFIG_ENV_SIZE 0x00010000 /* Set whole sector as env */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200177#define CONFIG_SYS_USE_PPCENV /* Environment embedded in sect .ppcenv */
wdenk0db5bca2003-03-31 17:27:09 +0000178#endif
179
180/*-----------------------------------------------------------------------
wdenk8bde7f72003-06-27 21:31:46 +0000181 * SYPCR - System Protection Control
wdenk0db5bca2003-03-31 17:27:09 +0000182 * SYPCR can only be written once after reset!
183 *-----------------------------------------------------------------------
184 * SW Watchdog freeze
185 */
186#if defined(CONFIG_WATCHDOG)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187#define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \
wdenk0db5bca2003-03-31 17:27:09 +0000188 SYPCR_SWE | SYPCR_SWRI| SYPCR_SWP)
189#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \
wdenk8bde7f72003-06-27 21:31:46 +0000191 SYPCR_SWP)
wdenk0db5bca2003-03-31 17:27:09 +0000192#endif /* CONFIG_WATCHDOG */
193
194/*-----------------------------------------------------------------------
195 * TBSCR - Time Base Status and Control
196 *-----------------------------------------------------------------------
197 * Clear Reference Interrupt Status, Timebase freezing enabled
198 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199#define CONFIG_SYS_TBSCR (TBSCR_REFA | TBSCR_REFB | TBSCR_TBF)
wdenk0db5bca2003-03-31 17:27:09 +0000200
201/*-----------------------------------------------------------------------
202 * PISCR - Periodic Interrupt Status and Control
203 *-----------------------------------------------------------------------
204 * Clear Periodic Interrupt Status, Interrupt Timer freezing enabled
205 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206#define CONFIG_SYS_PISCR (PISCR_PITF)
wdenk0db5bca2003-03-31 17:27:09 +0000207
208/*-----------------------------------------------------------------------
209 * SCCR - System Clock and reset Control Register
210 *-----------------------------------------------------------------------
211 * Set clock output, timebase and RTC source and divider,
212 * power management and some other internal clocks
213 */
214#define SCCR_MASK SCCR_EBDF00
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215#define CONFIG_SYS_SCCR (SCCR_TBS | SCCR_RTDIV | SCCR_RTSEL | \
wdenk0db5bca2003-03-31 17:27:09 +0000216 SCCR_COM00 | SCCR_DFNL000 | SCCR_DFNH000)
217
218/*-----------------------------------------------------------------------
219 * SIUMCR - SIU Module Configuration
220 *-----------------------------------------------------------------------
221 * Data show cycle
222 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200223#define CONFIG_SYS_SIUMCR (SIUMCR_DBGC00) /* Disable data show cycle */
wdenk0db5bca2003-03-31 17:27:09 +0000224
225/*-----------------------------------------------------------------------
226 * PLPRCR - PLL, Low-Power, and Reset Control Register
227 *-----------------------------------------------------------------------
228 * Set all bits to 40 Mhz
wdenk8bde7f72003-06-27 21:31:46 +0000229 *
wdenk0db5bca2003-03-31 17:27:09 +0000230 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231#define CONFIG_SYS_OSC_CLK ((uint)4000000) /* Oscillator clock is 4MHz */
232#define CONFIG_SYS_PLPRCR (PLPRCR_MF_9 | PLPRCR_DIVF_0)
wdenk8bde7f72003-06-27 21:31:46 +0000233
wdenk0db5bca2003-03-31 17:27:09 +0000234
235/*-----------------------------------------------------------------------
236 * UMCR - UIMB Module Configuration Register
237 *-----------------------------------------------------------------------
wdenk8bde7f72003-06-27 21:31:46 +0000238 *
wdenk0db5bca2003-03-31 17:27:09 +0000239 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240#define CONFIG_SYS_UMCR (UMCR_FSPEED) /* IMB clock same as U-bus */
wdenk0db5bca2003-03-31 17:27:09 +0000241
242/*-----------------------------------------------------------------------
243 * ICTRL - I-Bus Support Control Register
244 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200245#define CONFIG_SYS_ICTRL (ICTRL_ISCT_SER_7) /* Take out of serialized mode */
wdenk0db5bca2003-03-31 17:27:09 +0000246
247/*-----------------------------------------------------------------------
248 * USIU - Memory Controller Register
wdenk8bde7f72003-06-27 21:31:46 +0000249 *-----------------------------------------------------------------------
wdenk0db5bca2003-03-31 17:27:09 +0000250 */
251
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200252#define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BR_V | BR_BI | BR_PS_16)
253#define CONFIG_SYS_OR0_PRELIM (OR_ADDR_MK_FF | OR_SCY_3)
254#define CONFIG_SYS_BR1_PRELIM (ANYBUS_BASE)
255#define CONFIG_SYS_OR1_PRELIM (OR_ADDR_MK_FFFF | OR_SCY_1 | OR_ETHR)
256#define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_SDRAM_BASE | BR_V | BR_PS_32)
257#define CONFIG_SYS_OR2_PRELIM (OR_ADDR_MK_FF)
258#define CONFIG_SYS_BR3_PRELIM (PLD_BASE | BR_V | BR_BI | BR_LBDIR | BR_PS_8)
259#define CONFIG_SYS_OR3_PRELIM (OR_ADDR_MK_FF | OR_TRLX | OR_BSCY | OR_SCY_8 | \
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200260 OR_ACS_10 | OR_ETHR | OR_CSNT)
wdenk0db5bca2003-03-31 17:27:09 +0000261
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262#define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE /* We don't realign the flash */
wdenk0db5bca2003-03-31 17:27:09 +0000263
264/*-----------------------------------------------------------------------
wdenk8bde7f72003-06-27 21:31:46 +0000265 * DER - Timer Decrementer
wdenk0db5bca2003-03-31 17:27:09 +0000266 *-----------------------------------------------------------------------
267 * Initialise to zero
268 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269#define CONFIG_SYS_DER 0x00000000
wdenk0db5bca2003-03-31 17:27:09 +0000270
wdenk0db5bca2003-03-31 17:27:09 +0000271#endif /* __CONFIG_H */