blob: 9f1dec82b876895635df68c4d5f7f2e6b39b93af [file] [log] [blame]
wdenkefa329c2004-03-23 20:18:25 +00001/*
wdenk414eec32005-04-02 22:37:54 +00002 * (C) Copyright 2003-2005
wdenkefa329c2004-03-23 20:18:25 +00003 * 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#ifndef __CONFIG_H
25#define __CONFIG_H
26
27/*
28 * High Level Configuration Options
29 * (easy to change)
30 */
31
32#define CONFIG_MPC5200
wdenk62b4ac92004-05-05 08:31:53 +000033#define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */
wdenkefa329c2004-03-23 20:18:25 +000034#define CONFIG_PM520 1 /* ... on PM520 board */
35
36#define CFG_MPC5XXX_CLKIN 33000000 /* ... running at 33MHz */
37
wdenk49822e22004-06-19 21:19:10 +000038#define CONFIG_MISC_INIT_R
39
wdenkefa329c2004-03-23 20:18:25 +000040#define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
41#define BOOTFLAG_WARM 0x02 /* Software reboot */
42
43#define CFG_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */
44#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
45# define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
46#endif
47
48/*
49 * Serial console configuration
50 */
51#define CONFIG_PSC_CONSOLE 1 /* console is on PSC1 */
52#define CONFIG_BAUDRATE 9600 /* ... at 9600 bps */
53#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
54
55
56#ifdef CONFIG_MPC5200 /* MPC5100 PCI is not supported yet. */
57/*
58 * PCI Mapping:
59 * 0x40000000 - 0x4fffffff - PCI Memory
60 * 0x50000000 - 0x50ffffff - PCI IO Space
61 */
62#define CONFIG_PCI 1
63#define CONFIG_PCI_PNP 1
64#define CONFIG_PCI_SCAN_SHOW 1
65
66#define CONFIG_PCI_MEM_BUS 0x40000000
67#define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
68#define CONFIG_PCI_MEM_SIZE 0x10000000
69
70#define CONFIG_PCI_IO_BUS 0x50000000
71#define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
72#define CONFIG_PCI_IO_SIZE 0x01000000
73
74#define CONFIG_NET_MULTI 1
Marian Balakowicz63ff0042005-10-28 22:30:33 +020075#define CONFIG_MII 1
wdenkefa329c2004-03-23 20:18:25 +000076#define CONFIG_EEPRO100 1
77#define CFG_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */
78#undef CONFIG_NS8382X
79
80#define ADD_PCI_CMD CFG_CMD_PCI
81
82#else /* MPC5100 */
83
84#define ADD_PCI_CMD 0 /* no CFG_CMD_PCI */
85
86#endif
87
wdenk49822e22004-06-19 21:19:10 +000088/* Partitions */
89#define CONFIG_DOS_PARTITION
90
91/* USB */
92#if 1
93#define CONFIG_USB_OHCI
94#define ADD_USB_CMD CFG_CMD_USB | CFG_CMD_FAT
95#define CONFIG_USB_STORAGE
96#else
97#define ADD_USB_CMD 0
98#endif
99
100#if defined(CONFIG_BOOT_ROM)
101#define ADD_DOC_CMD 0
102#else
103#define ADD_DOC_CMD CFG_CMD_DOC
104#endif
105
wdenkefa329c2004-03-23 20:18:25 +0000106/*
107 * Supported commands
108 */
wdenk414eec32005-04-02 22:37:54 +0000109#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \
110 ADD_DOC_CMD | \
111 ADD_PCI_CMD | \
112 ADD_USB_CMD | \
113 CFG_CMD_BEDBUG | \
114 CFG_CMD_DATE | \
115 CFG_CMD_DHCP | \
116 CFG_CMD_EEPROM | \
117 CFG_CMD_FAT | \
118 CFG_CMD_I2C | \
119 CFG_CMD_IDE | \
120 CFG_CMD_NFS | \
121 CFG_CMD_SNTP )
wdenkefa329c2004-03-23 20:18:25 +0000122
123/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
124#include <cmd_confdefs.h>
125
126/*
127 * Autobooting
128 */
129#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
wdenk49822e22004-06-19 21:19:10 +0000130
131#define CONFIG_PREBOOT "echo;" \
132 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
133 "echo"
134
135#undef CONFIG_BOOTARGS
136
137#define CONFIG_EXTRA_ENV_SETTINGS \
138 "netdev=eth0\0" \
139 "hostname=pm520\0" \
140 "nfsargs=setenv bootargs root=/dev/nfs rw " \
Wolfgang Denkfe126d82005-11-20 21:40:11 +0100141 "nfsroot=${serverip}:${rootpath}\0" \
wdenk49822e22004-06-19 21:19:10 +0000142 "ramargs=setenv bootargs root=/dev/ram rw\0" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +0100143 "addip=setenv bootargs ${bootargs} " \
144 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
145 ":${hostname}:${netdev}:off panic=1\0" \
wdenk49822e22004-06-19 21:19:10 +0000146 "flash_nfs=run nfsargs addip;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +0100147 "bootm ${kernel_addr}\0" \
wdenk49822e22004-06-19 21:19:10 +0000148 "flash_self=run ramargs addip;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +0100149 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
150 "net_nfs=tftp 200000 ${bootfile};run nfsargs addip;bootm\0" \
wdenk49822e22004-06-19 21:19:10 +0000151 "rootpath=/opt/eldk30/ppc_82xx\0" \
152 "bootfile=/tftpboot/PM520/uImage\0" \
153 ""
154
155#define CONFIG_BOOTCOMMAND "run flash_self"
wdenkefa329c2004-03-23 20:18:25 +0000156
157#if defined(CONFIG_MPC5200)
158/*
159 * IPB Bus clocking configuration.
160 */
161#undef CFG_IPBSPEED_133 /* define for 133MHz speed */
162#endif
163/*
164 * I2C configuration
165 */
166#define CONFIG_HARD_I2C 1 /* I2C with hardware support */
167#define CFG_I2C_MODULE 2 /* Select I2C module #1 or #2 */
168
169#define CFG_I2C_SPEED 100000 /* 100 kHz */
170#define CFG_I2C_SLAVE 0x7F
171
172/*
173 * EEPROM configuration
174 */
175#define CFG_I2C_EEPROM_ADDR 0x58
176#define CFG_I2C_EEPROM_ADDR_LEN 1
177#define CFG_EEPROM_PAGE_WRITE_BITS 4
178#define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
179
180/*
181 * RTC configuration
182 */
183#define CONFIG_RTC_PCF8563
184#define CFG_I2C_RTC_ADDR 0x51
185
186/*
wdenk49822e22004-06-19 21:19:10 +0000187 * Disk-On-Chip configuration
wdenkefa329c2004-03-23 20:18:25 +0000188 */
wdenk49822e22004-06-19 21:19:10 +0000189
190#define CFG_DOC_SHORT_TIMEOUT
191#define CFG_MAX_DOC_DEVICE 1 /* Max number of DOC devices */
192
193#define CFG_DOC_SUPPORT_2000
194#define CFG_DOC_SUPPORT_MILLENNIUM
195#define CFG_DOC_BASE 0xE0000000
196#define CFG_DOC_SIZE 0x00100000
197
198#if defined(CONFIG_BOOT_ROM)
199/*
200 * Flash configuration (8,16 or 32 MB)
201 * TEXT base always at 0xFFF00000
202 * ENV_ADDR always at 0xFFF40000
203 * FLASH_BASE at 0xFC000000 for 32 MB
204 * 0xFD000000 for 16 MB
205 * 0xFD800000 for 8 MB
206 */
207#define CFG_FLASH_BASE 0xfc000000
208#define CFG_FLASH_SIZE 0x02000000
209#define CFG_BOOTROM_BASE 0xFFF00000
210#define CFG_BOOTROM_SIZE 0x00080000
211#define CFG_ENV_ADDR (0xFDF00000 + 0x40000)
212#else
213/*
214 * Flash configuration (8,16 or 32 MB)
215 * TEXT base always at 0xFFF00000
216 * ENV_ADDR always at 0xFFF40000
217 * FLASH_BASE at 0xFE000000 for 32 MB
218 * 0xFF000000 for 16 MB
219 * 0xFF800000 for 8 MB
220 */
221#define CFG_FLASH_BASE 0xfe000000
222#define CFG_FLASH_SIZE 0x02000000
223#define CFG_ENV_ADDR (0xFFF00000 + 0x40000)
224#endif
wdenkefa329c2004-03-23 20:18:25 +0000225#define CFG_MAX_FLASH_BANKS 1 /* max num of memory banks */
226
227#define CFG_MAX_FLASH_SECT 128 /* max num of sects on one chip */
228
229#define CFG_FLASH_ERASE_TOUT 240000 /* Flash Erase Timeout (in ms) */
230#define CFG_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (in ms) */
231#define CFG_FLASH_LOCK_TOUT 5 /* Timeout for Flash Set Lock Bit (in ms) */
232#define CFG_FLASH_UNLOCK_TOUT 10000 /* Timeout for Flash Clear Lock Bits (in ms) */
233#define CFG_FLASH_PROTECTION /* "Real" (hardware) sectors protection */
234
235#define PHYS_FLASH_SECT_SIZE 0x00040000 /* 256 KB sectors (x2) */
236
237#undef CONFIG_FLASH_16BIT /* Flash is 32-bit */
238
239
240/*
241 * Environment settings
242 */
243#define CFG_ENV_IS_IN_FLASH 1
244#define CFG_ENV_SIZE 0x10000
245#define CFG_ENV_SECT_SIZE 0x40000
246#define CONFIG_ENV_OVERWRITE 1
247
248/*
249 * Memory map
250 */
251#define CFG_MBAR 0xf0000000
252#define CFG_SDRAM_BASE 0x00000000
253#define CFG_DEFAULT_MBAR 0x80000000
254
255/* Use SRAM until RAM will be available */
256#define CFG_INIT_RAM_ADDR MPC5XXX_SRAM
257#define CFG_INIT_RAM_END MPC5XXX_SRAM_SIZE /* End of used area in DPRAM */
258
259
260#define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
261#define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
262#define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
263
264#define CFG_MONITOR_BASE TEXT_BASE
265#if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
266# define CFG_RAMBOOT 1
267#endif
268
269#define CFG_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
270#define CFG_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
271#define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
272
273/*
274 * Ethernet configuration
275 */
wdenk62b4ac92004-05-05 08:31:53 +0000276#define CONFIG_MPC5xxx_FEC 1
277/*
278 * Define CONFIG_FEC_10MBIT to force FEC at 10Mb
279 */
280/* #define CONFIG_FEC_10MBIT 1 */
wdenkefa329c2004-03-23 20:18:25 +0000281#define CONFIG_PHY_ADDR 0x00
282
283/*
284 * GPIO configuration
285 */
286#define CFG_GPS_PORT_CONFIG 0x10000004
287
288/*
289 * Miscellaneous configurable options
290 */
291#define CFG_LONGHELP /* undef to save memory */
292#define CFG_PROMPT "=> " /* Monitor Command Prompt */
293#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
294#define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
295#else
296#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
297#endif
298#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
299#define CFG_MAXARGS 16 /* max number of command args */
300#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
301
302#define CFG_MEMTEST_START 0x00100000 /* memtest works on */
303#define CFG_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
304
305#define CFG_LOAD_ADDR 0x100000 /* default load address */
306
307#define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
308
309/*
310 * Various low-level settings
311 */
312#if defined(CONFIG_MPC5200)
313#define CFG_HID0_INIT HID0_ICE | HID0_ICFI
314#define CFG_HID0_FINAL HID0_ICE
315#else
316#define CFG_HID0_INIT 0
317#define CFG_HID0_FINAL 0
318#endif
319
wdenk49822e22004-06-19 21:19:10 +0000320#if defined(CONFIG_BOOT_ROM)
321#define CFG_BOOTCS_START CFG_BOOTROM_BASE
322#define CFG_BOOTCS_SIZE CFG_BOOTROM_SIZE
323#define CFG_BOOTCS_CFG 0x00047800
324#define CFG_CS0_START CFG_BOOTROM_BASE
325#define CFG_CS0_SIZE CFG_BOOTROM_SIZE
326#define CFG_CS1_START CFG_FLASH_BASE
327#define CFG_CS1_SIZE CFG_FLASH_SIZE
328#define CFG_CS1_CFG 0x0004fb00
329#else
wdenkefa329c2004-03-23 20:18:25 +0000330#define CFG_BOOTCS_START CFG_FLASH_BASE
331#define CFG_BOOTCS_SIZE CFG_FLASH_SIZE
332#define CFG_BOOTCS_CFG 0x0004fb00
333#define CFG_CS0_START CFG_FLASH_BASE
334#define CFG_CS0_SIZE CFG_FLASH_SIZE
wdenk49822e22004-06-19 21:19:10 +0000335#define CFG_CS1_START CFG_DOC_BASE
336#define CFG_CS1_SIZE CFG_DOC_SIZE
337#define CFG_CS1_CFG 0x00047800
338#endif
wdenkefa329c2004-03-23 20:18:25 +0000339
340#define CFG_CS_BURST 0x00000000
341#define CFG_CS_DEADCYCLE 0x33333333
342
343#define CFG_RESET_ADDRESS 0xff000000
344
wdenk49822e22004-06-19 21:19:10 +0000345/*-----------------------------------------------------------------------
346 * USB stuff
347 *-----------------------------------------------------------------------
348 */
349#define CONFIG_USB_CLOCK 0x0001BBBB
350#define CONFIG_USB_CONFIG 0x00005000
351
352/*-----------------------------------------------------------------------
353 * IDE/ATA stuff Supports IDE harddisk
354 *-----------------------------------------------------------------------
355 */
356
357#undef CONFIG_IDE_8xx_PCCARD /* Use IDE with PC Card Adapter */
358
359#undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */
360#undef CONFIG_IDE_LED /* LED for ide not supported */
361
362#undef CONFIG_IDE_RESET /* reset for ide supported */
363#define CONFIG_IDE_PREINIT
364
365#define CFG_IDE_MAXBUS 1 /* max. 1 IDE bus */
366#define CFG_IDE_MAXDEVICE 2 /* max. 2 drive per IDE bus */
367
368#define CFG_ATA_IDE0_OFFSET 0x0000
369
370#define CFG_ATA_BASE_ADDR MPC5XXX_ATA
371
372/* Offset for data I/O */
373#define CFG_ATA_DATA_OFFSET (0x0060)
374
375/* Offset for normal register accesses */
376#define CFG_ATA_REG_OFFSET (CFG_ATA_DATA_OFFSET)
377
378/* Offset for alternate registers */
379#define CFG_ATA_ALT_OFFSET (0x005C)
380
381/* Interval between registers */
382#define CFG_ATA_STRIDE 4
383
wdenkefa329c2004-03-23 20:18:25 +0000384#endif /* __CONFIG_H */