]>
Commit | Line | Data |
---|---|---|
ca43ba18 HS |
1 | /* |
2 | * (C) Copyright 2007 | |
3 | * Heiko Schocher, DENX Software Engineering, <hs@denx.de>. | |
4 | * | |
5 | * From: | |
6 | * (C) Copyright 2003 | |
7 | * Juergen Beisert, EuroDesign embedded technologies, jbeisert@eurodsn.de | |
8 | * | |
9 | * See file CREDITS for list of people who contributed to this | |
10 | * project. | |
11 | * | |
12 | * This program is free software; you can redistribute it and/or | |
13 | * modify it under the terms of the GNU General Public License as | |
14 | * published by the Free Software Foundation; either version 2 of | |
15 | * the License, or (at your option) any later version. | |
16 | * | |
17 | * This program is distributed in the hope that it will be useful, | |
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 | * GNU General Public License for more details. | |
21 | * | |
22 | * You should have received a copy of the GNU General Public License | |
23 | * along with this program; if not, write to the Free Software | |
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
25 | * MA 02111-1307 USA | |
26 | */ | |
27 | ||
28 | #ifndef __CONFIG_H | |
29 | #define __CONFIG_H | |
30 | ||
31 | #undef USE_VGA_GRAPHICS | |
32 | ||
33 | /* Memory Map | |
6d3e0107 WD |
34 | * 0x00000000 .... 0x03FFFFFF -> RAM (up to 128MiB) |
35 | * 0x74000000 .... 0x740FFFFF -> CS#6 | |
36 | * 0x74100000 .... 0x741FFFFF -> CS#7 | |
37 | * 0x74200000 .... 0x742FFFFF -> CS4# if no internal USB | |
38 | * 0x74300000 .... 0x743FFFFF -> CS5# if no boosted IDE | |
39 | * 0x77C00000 .... 0x77CFFFFF -> CS4# USB HC (1 MiB) | |
40 | * 0x77D00000 .... 0x77DFFFFF -> CS1# NAND-Flash (1 MiB) | |
41 | * 0x78000000 .... 0x78FFFFFF -> CS2# ISA-Bus Speicherzugriff (16 MiB) | |
42 | * 0x79000000 .... 0x7900FFFF -> CS2# ISA-Bus IO-Zugriff (16 MiB, mapped: 64kiB) | |
43 | * 0x79010000 .... 0x79FFFFFF -> CS2# ISA-Bus IO-Zugriff (mirrored) | |
44 | * 0x7A000000 .... 0x7A0FFFFF -> CS5# IDE emulation (1MiB) | |
45 | * | |
46 | * 0x80000000 .... 0x9FFFFFFF -> PCI-Bus Speicherzugriff (512MiB, mapped: 1:1) | |
47 | * 0xA0000000 .... 0xBFFFFFFF -> PCI-Bus Speicherzugriff (512MiB, mapped: 0x00000000...0x1FFFFFFF) | |
48 | * 0xE8000000 .... 0xE800FFFF -> PCI-Bus IO-Zugriff (64kiB, translated to PCI: 0x0000...0xFFFF) | |
49 | * 0xE8800000 .... 0xEBFFFFFF -> PCI-Bus IO-Zugriff (56MiB, translated to PCI: 0x00800000...0x3FFFFFF) | |
50 | * 0xEED00000 .... 0xEED00003 -> PCI-Bus | |
51 | * 0xEF400000 .... 0xEF40003F -> PCI-Bus Local Configuration Registers | |
52 | * 0xEF40003F .... 0xEF5FFFFF -> reserved | |
53 | * 0xEF600000 .... 0xEFFFFFFF -> 405GP internal Devices (10 MiB) | |
54 | * 0xF0000000 .... 0xF01FFFFF -> Flash-ROM (2 MiB) | |
55 | * 0xF0200000 .... 0xF7FFFFFF -> free for flash devices | |
56 | * 0xF8000000 .... 0xF8000FFF -> OnChipMemory (4kiB) | |
57 | * 0xF8001000 .... 0xFFDFFFFF -> free for flash devices | |
58 | * 0xFFE00000 .... 0xFFFFFFFF -> BOOT-ROM (2 MiB) | |
59 | */ | |
ca43ba18 | 60 | |
9045f33c | 61 | #define CONFIG_SC3 1 |
ca43ba18 HS |
62 | #define CONFIG_4xx 1 |
63 | #define CONFIG_405GP 1 | |
64 | ||
65 | #define CONFIG_BOARD_EARLY_INIT_F 1 | |
66 | ||
67 | /* | |
6d3e0107 WD |
68 | * Define IDE_USES_ISA_EMULATION for slower IDE access in the ISA-IO address range |
69 | * If undefined, IDE access uses a seperat emulation with higher access speed. | |
ca43ba18 | 70 | * Consider to inform your Linux IDE driver about the different addresses! |
639221c7 | 71 | * IDE_USES_ISA_EMULATION is only used if you define CONFIG_CMD_IDE! |
ca43ba18 HS |
72 | */ |
73 | #define IDE_USES_ISA_EMULATION | |
74 | ||
75 | /*----------------------------------------------------------------------- | |
76 | * Serial Port | |
77 | *----------------------------------------------------------------------*/ | |
78 | #define CONFIG_SERIAL_MULTI | |
79 | #undef CONFIG_SERIAL_SOFTWARE_FIFO | |
80 | /* | |
81 | * define CONFIG_POWER_DOWN if your cpu should power down while waiting for your input | |
82 | * Works only, if you have enabled the CONFIG_SERIAL_SOFTWARE_FIFO feature | |
83 | */ | |
84 | #if CONFIG_SERIAL_SOFTWARE_FIFO | |
85 | #define CONFIG_POWER_DOWN | |
86 | #endif | |
87 | ||
88 | /* | |
89 | * define CONFIG_SYS_CLK_FREQ to your base crystal clock in Hz | |
90 | */ | |
91 | #define CONFIG_SYS_CLK_FREQ 33333333 | |
92 | ||
93 | /* | |
94 | * define CONFIG_BAUDRATE to the baudrate value you want to use as default | |
95 | */ | |
96 | #define CONFIG_BAUDRATE 115200 | |
f11033e7 | 97 | #define CONFIG_BOOTDELAY 3 /* autoboot after 3 seconds */ |
ca43ba18 | 98 | |
1bbbbdd2 | 99 | #define CONFIG_PREBOOT "echo;" \ |
32bf3d14 | 100 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
1bbbbdd2 WD |
101 | "echo" |
102 | ||
103 | #undef CONFIG_BOOTARGS | |
104 | ||
105 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
106 | "netdev=eth0\0" \ | |
107 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ | |
108 | "nfsroot=${serverip}:${rootpath}\0" \ | |
109 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ | |
cb482072 HS |
110 | "nand_args=setenv bootargs root=/dev/mtdblock5 rw" \ |
111 | "rootfstype=jffs2\0" \ | |
1bbbbdd2 WD |
112 | "addip=setenv bootargs ${bootargs} " \ |
113 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ | |
114 | ":${hostname}:${netdev}:off panic=1\0" \ | |
a7090b99 WD |
115 | "addcons=setenv bootargs ${bootargs} " \ |
116 | "console=ttyS0,${baudrate}\0" \ | |
117 | "flash_nfs=run nfsargs addip addcons;" \ | |
1bbbbdd2 | 118 | "bootm ${kernel_addr}\0" \ |
a7090b99 WD |
119 | "flash_nand=run nand_args addip addcons;bootm ${kernel_addr}\0" \ |
120 | "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addcons;" \ | |
121 | "bootm\0" \ | |
1bbbbdd2 WD |
122 | "rootpath=/opt/eldk/ppc_4xx\0" \ |
123 | "bootfile=/tftpboot/sc3/uImage\0" \ | |
d0b6e140 HS |
124 | "u-boot=/tftpboot/sc3/u-boot.bin\0" \ |
125 | "setup=tftp 200000 /tftpboot/sc3/setup.img;autoscr 200000\0" \ | |
1bbbbdd2 WD |
126 | "kernel_addr=FFE08000\0" \ |
127 | "" | |
128 | #undef CONFIG_BOOTCOMMAND | |
129 | ||
ca43ba18 | 130 | #define CONFIG_SILENT_CONSOLE 1 /* enable silent startup */ |
6d0f6bcf | 131 | #define CONFIG_SYS_DEVICE_NULLDEV 1 /* include nulldev device */ |
ca43ba18 HS |
132 | |
133 | #if 1 /* feel free to disable for development */ | |
134 | #define CONFIG_AUTOBOOT_KEYED /* Enable password protection */ | |
c37207d7 WD |
135 | #define CONFIG_AUTOBOOT_PROMPT \ |
136 | "\nSC3 - booting... stop with ENTER\n" | |
9045f33c WD |
137 | #define CONFIG_AUTOBOOT_DELAY_STR "\r" /* 1st "password" */ |
138 | #define CONFIG_AUTOBOOT_DELAY_STR2 "\n" /* 1st "password" */ | |
ca43ba18 HS |
139 | #endif |
140 | ||
141 | /* | |
142 | * define CONFIG_BOOTCOMMAND to the autoboot commands. They will running after | |
143 | * the CONFIG_BOOTDELAY delay to boot your machine | |
144 | */ | |
145 | #define CONFIG_BOOTCOMMAND "bootp;dcache on;bootm" | |
146 | ||
147 | /* | |
148 | * define CONFIG_BOOTARGS to the default kernel parameters. They will used if you don't | |
149 | * set different values at the u-boot prompt | |
150 | */ | |
151 | #ifdef USE_VGA_GRAPHICS | |
152 | #define CONFIG_BOOTARGS "root=/dev/nfs rw ip=bootp nfsroot=/tftpboot/solidcard3re" | |
153 | #else | |
154 | #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/nfs rw ip=bootp" | |
155 | #endif | |
156 | /* | |
157 | * Is the USB host controller assembled? If yes define CONFIG_ISP1161_PRESENT | |
158 | * This reserves memory bank #4 for this purpose | |
159 | */ | |
160 | #undef CONFIG_ISP1161_PRESENT | |
161 | ||
162 | #undef CONFIG_LOADS_ECHO /* no echo on for serial download */ | |
6d0f6bcf | 163 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
ca43ba18 HS |
164 | |
165 | #define CONFIG_NET_MULTI | |
166 | /* #define CONFIG_EEPRO100_SROM_WRITE */ | |
167 | /* #define CONFIG_SHOW_MAC */ | |
168 | #define CONFIG_EEPRO100 | |
169 | #define CONFIG_MII 1 /* add 405GP MII PHY management */ | |
170 | #define CONFIG_PHY_ADDR 1 /* the connected Phy defaults to address 1 */ | |
171 | ||
079a136c JL |
172 | /* |
173 | * BOOTP options | |
174 | */ | |
175 | #define CONFIG_BOOTP_BOOTFILESIZE | |
176 | #define CONFIG_BOOTP_BOOTPATH | |
177 | #define CONFIG_BOOTP_GATEWAY | |
178 | #define CONFIG_BOOTP_HOSTNAME | |
179 | ||
180 | ||
46da1e96 JL |
181 | /* |
182 | * Command line configuration. | |
183 | */ | |
184 | #include <config_cmd_default.h> | |
185 | ||
186 | ||
187 | #define CONFIG_CMD_AUTOSCRIPT | |
188 | #define CONFIG_CMD_PCI | |
189 | #define CONFIG_CMD_IRQ | |
190 | #define CONFIG_CMD_NET | |
191 | #define CONFIG_CMD_MII | |
192 | #define CONFIG_CMD_PING | |
193 | #define CONFIG_CMD_NAND | |
194 | #define CONFIG_CMD_JFFS2 | |
195 | #define CONFIG_CMD_I2C | |
196 | #define CONFIG_CMD_IDE | |
197 | #define CONFIG_CMD_DATE | |
198 | #define CONFIG_CMD_DHCP | |
199 | #define CONFIG_CMD_CACHE | |
200 | #define CONFIG_CMD_ELF | |
201 | ||
ca43ba18 HS |
202 | |
203 | #undef CONFIG_WATCHDOG /* watchdog disabled */ | |
204 | ||
205 | /* | |
206 | * Miscellaneous configurable options | |
207 | */ | |
6d0f6bcf JCPV |
208 | #define CONFIG_SYS_LONGHELP 1 /* undef to save memory */ |
209 | #define CONFIG_SYS_PROMPT "SC3> " /* Monitor Command Prompt */ | |
210 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ | |
ca43ba18 | 211 | |
6d0f6bcf | 212 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
ca43ba18 | 213 | |
6d0f6bcf JCPV |
214 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
215 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ | |
ca43ba18 | 216 | |
6d0f6bcf JCPV |
217 | #define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */ |
218 | #define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */ | |
ca43ba18 HS |
219 | |
220 | /* | |
6d0f6bcf JCPV |
221 | * If CONFIG_SYS_EXT_SERIAL_CLOCK, then the UART divisor is 1. |
222 | * If CONFIG_SYS_405_UART_ERRATA_59, then UART divisor is 31. | |
223 | * Otherwise, UART divisor is determined by CPU Clock and CONFIG_SYS_BASE_BAUD value. | |
ca43ba18 HS |
224 | * The Linux BASE_BAUD define should match this configuration. |
225 | * baseBaud = cpuClock/(uartDivisor*16) | |
6d0f6bcf | 226 | * If CONFIG_SYS_405_UART_ERRATA_59 and 200MHz CPU clock, |
ca43ba18 HS |
227 | * set Linux BASE_BAUD to 403200. |
228 | * | |
229 | * Consider the OPB clock! If it get lower the BASE_BAUD must be lower to | |
230 | * (see 405GP datasheet for descritpion) | |
231 | */ | |
6d0f6bcf JCPV |
232 | #undef CONFIG_SYS_EXT_SERIAL_CLOCK /* external serial clock */ |
233 | #undef CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */ | |
234 | #define CONFIG_SYS_BASE_BAUD 921600 /* internal clock */ | |
ca43ba18 HS |
235 | |
236 | /* The following table includes the supported baudrates */ | |
6d0f6bcf | 237 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
ca43ba18 HS |
238 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400} |
239 | ||
6d0f6bcf JCPV |
240 | #define CONFIG_SYS_LOAD_ADDR 0x1000000 /* default load address */ |
241 | #define CONFIG_SYS_EXTBDINFO 1 /* To use extended board_into (bd_t) */ | |
ca43ba18 | 242 | |
6d0f6bcf | 243 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */ |
ca43ba18 HS |
244 | |
245 | /*----------------------------------------------------------------------- | |
246 | * IIC stuff | |
247 | *----------------------------------------------------------------------- | |
248 | */ | |
249 | #define CONFIG_HARD_I2C /* I2C with hardware support */ | |
f11033e7 | 250 | #undef CONFIG_SOFT_I2C /* I2C bit-banged */ |
ca43ba18 HS |
251 | |
252 | #define I2C_INIT | |
253 | #define I2C_ACTIVE 0 | |
254 | #define I2C_TRISTATE 0 | |
255 | ||
6d0f6bcf JCPV |
256 | #define CONFIG_SYS_I2C_SPEED 100000 /* use the standard 100kHz speed */ |
257 | #define CONFIG_SYS_I2C_SLAVE 0x7F /* mask valid bits */ | |
ca43ba18 HS |
258 | |
259 | #define CONFIG_RTC_DS1337 | |
6d0f6bcf | 260 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 |
ca43ba18 HS |
261 | |
262 | /*----------------------------------------------------------------------- | |
263 | * PCI stuff | |
264 | *----------------------------------------------------------------------- | |
265 | */ | |
f11033e7 WD |
266 | #define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */ |
267 | #define PCI_HOST_FORCE 1 /* configure as pci host */ | |
268 | #define PCI_HOST_AUTO 2 /* detected via arbiter enable */ | |
ca43ba18 | 269 | |
f11033e7 WD |
270 | #define CONFIG_PCI /* include pci support */ |
271 | #define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */ | |
272 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ | |
273 | /* resource configuration */ | |
ca43ba18 HS |
274 | |
275 | /* If you want to see, whats connected to your PCI bus */ | |
276 | /* #define CONFIG_PCI_SCAN_SHOW */ | |
277 | ||
6d0f6bcf JCPV |
278 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x0000 /* PCI Vendor ID: to-do!!! */ |
279 | #define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0x0000 /* PCI Device ID: to-do!!! */ | |
280 | #define CONFIG_SYS_PCI_PTM1LA 0x00000000 /* point to sdram */ | |
281 | #define CONFIG_SYS_PCI_PTM1MS 0x80000001 /* 2GB, enable hard-wired to 1 */ | |
282 | #define CONFIG_SYS_PCI_PTM1PCI 0x00000000 /* Host: use this pci address */ | |
283 | #define CONFIG_SYS_PCI_PTM2LA 0x00000000 /* disabled */ | |
284 | #define CONFIG_SYS_PCI_PTM2MS 0x00000000 /* disabled */ | |
285 | #define CONFIG_SYS_PCI_PTM2PCI 0x04000000 /* Host: use this pci address */ | |
ca43ba18 HS |
286 | |
287 | /*----------------------------------------------------------------------- | |
288 | * External peripheral base address | |
289 | *----------------------------------------------------------------------- | |
290 | */ | |
46da1e96 | 291 | #if !defined(CONFIG_CMD_IDE) |
ca43ba18 | 292 | |
f11033e7 WD |
293 | #undef CONFIG_IDE_LED /* no led for ide supported */ |
294 | #undef CONFIG_IDE_RESET /* no reset for ide supported */ | |
ca43ba18 HS |
295 | |
296 | /*----------------------------------------------------------------------- | |
297 | * IDE/ATA stuff | |
298 | *----------------------------------------------------------------------- | |
299 | */ | |
46da1e96 | 300 | #else |
ca43ba18 HS |
301 | #define CONFIG_START_IDE 1 /* check, if use IDE */ |
302 | ||
f11033e7 WD |
303 | #undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */ |
304 | #undef CONFIG_IDE_LED /* no led for ide supported */ | |
305 | #undef CONFIG_IDE_RESET /* no reset for ide supported */ | |
ca43ba18 HS |
306 | |
307 | #define CONFIG_ATAPI | |
308 | #define CONFIG_DOS_PARTITION | |
6d0f6bcf | 309 | #define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS*1) /* max. 1 drives per IDE bus */ |
ca43ba18 HS |
310 | |
311 | #ifndef IDE_USES_ISA_EMULATION | |
312 | ||
313 | /* New and faster access */ | |
6d0f6bcf | 314 | #define CONFIG_SYS_ATA_BASE_ADDR 0x7A000000 /* start of ISA IO emulation */ |
ca43ba18 HS |
315 | |
316 | /* How many IDE busses are available */ | |
6d0f6bcf | 317 | #define CONFIG_SYS_IDE_MAXBUS 1 |
ca43ba18 HS |
318 | |
319 | /* What IDE ports are available */ | |
6d0f6bcf JCPV |
320 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x000 /* first is available */ |
321 | #undef CONFIG_SYS_ATA_IDE1_OFFSET /* second not available */ | |
ca43ba18 HS |
322 | |
323 | /* access to the data port is calculated: | |
6d0f6bcf JCPV |
324 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_DATA_OFFSET + 0 */ |
325 | #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */ | |
ca43ba18 HS |
326 | |
327 | /* access to the registers is calculated: | |
6d0f6bcf JCPV |
328 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_REG_OFFSET + [1..7] */ |
329 | #define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */ | |
ca43ba18 HS |
330 | |
331 | /* access to the alternate register is calculated: | |
6d0f6bcf JCPV |
332 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_ALT_OFFSET + 6 */ |
333 | #define CONFIG_SYS_ATA_ALT_OFFSET 0x008 /* Offset for alternate registers */ | |
ca43ba18 HS |
334 | |
335 | #else /* IDE_USES_ISA_EMULATION */ | |
336 | ||
6d0f6bcf | 337 | #define CONFIG_SYS_ATA_BASE_ADDR 0x79000000 /* start of ISA IO emulation */ |
ca43ba18 HS |
338 | |
339 | /* How many IDE busses are available */ | |
6d0f6bcf | 340 | #define CONFIG_SYS_IDE_MAXBUS 1 |
ca43ba18 HS |
341 | |
342 | /* What IDE ports are available */ | |
6d0f6bcf JCPV |
343 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x01F0 /* first is available */ |
344 | #undef CONFIG_SYS_ATA_IDE1_OFFSET /* second not available */ | |
ca43ba18 HS |
345 | |
346 | /* access to the data port is calculated: | |
6d0f6bcf JCPV |
347 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_DATA_OFFSET + 0 */ |
348 | #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */ | |
ca43ba18 HS |
349 | |
350 | /* access to the registers is calculated: | |
6d0f6bcf JCPV |
351 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_REG_OFFSET + [1..7] */ |
352 | #define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */ | |
ca43ba18 HS |
353 | |
354 | /* access to the alternate register is calculated: | |
6d0f6bcf JCPV |
355 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_ALT_OFFSET + 6 */ |
356 | #define CONFIG_SYS_ATA_ALT_OFFSET 0x03F0 /* Offset for alternate registers */ | |
ca43ba18 HS |
357 | |
358 | #endif /* IDE_USES_ISA_EMULATION */ | |
359 | ||
46da1e96 | 360 | #endif |
ca43ba18 HS |
361 | |
362 | /* | |
6d0f6bcf JCPV |
363 | #define CONFIG_SYS_KEY_REG_BASE_ADDR 0xF0100000 |
364 | #define CONFIG_SYS_IR_REG_BASE_ADDR 0xF0200000 | |
365 | #define CONFIG_SYS_FPGA_REG_BASE_ADDR 0xF0300000 | |
ca43ba18 HS |
366 | */ |
367 | ||
368 | /*----------------------------------------------------------------------- | |
369 | * Start addresses for the final memory configuration | |
370 | * (Set up by the startup code) | |
6d0f6bcf | 371 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
ca43ba18 | 372 | * |
6d0f6bcf JCPV |
373 | * CONFIG_SYS_FLASH_BASE -> start address of internal flash |
374 | * CONFIG_SYS_MONITOR_BASE -> start of u-boot | |
ca43ba18 HS |
375 | */ |
376 | #ifndef __ASSEMBLER__ | |
377 | extern unsigned long offsetOfBigFlash; | |
378 | extern unsigned long offsetOfEnvironment; | |
379 | #endif | |
380 | ||
6d0f6bcf JCPV |
381 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
382 | #define CONFIG_SYS_FLASH_BASE 0xFFE00000 | |
383 | #define CONFIG_SYS_MONITOR_BASE 0xFFFC0000 /* placed last 256k */ | |
384 | #define CONFIG_SYS_MONITOR_LEN (224 * 1024) /* Reserve 224 KiB for Monitor */ | |
385 | #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 KiB for malloc() */ | |
ca43ba18 HS |
386 | |
387 | /* | |
388 | * For booting Linux, the board info and command line data | |
389 | * have to be in the first 8 MiB of memory, since this is | |
390 | * the maximum mapped by the Linux kernel during initialization. | |
391 | */ | |
6d0f6bcf | 392 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
ca43ba18 | 393 | /*----------------------------------------------------------------------- |
f11033e7 | 394 | * FLASH organization ## FIXME: lookup in datasheet |
ca43ba18 | 395 | */ |
6d0f6bcf JCPV |
396 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */ |
397 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sectors on one chip */ | |
ca43ba18 | 398 | |
6d0f6bcf | 399 | #define CONFIG_SYS_FLASH_CFI /* flash is CFI compat. */ |
00b1883a | 400 | #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver*/ |
6d0f6bcf JCPV |
401 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector */ |
402 | #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/ | |
403 | #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ | |
404 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ | |
405 | #define CONFIG_SYS_WRITE_SWAPPED_DATA /* swap Databytes between reading/writing */ | |
ca43ba18 | 406 | |
5a1aceb0 JCPV |
407 | #define CONFIG_ENV_IS_IN_FLASH 1 |
408 | #ifdef CONFIG_ENV_IS_IN_FLASH | |
0e8d1586 JCPV |
409 | #define CONFIG_ENV_OFFSET 0x00000000 /* Offset of Environment Sector in bottom type */ |
410 | #define CONFIG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */ | |
411 | #define CONFIG_ENV_SECT_SIZE 0x4000 /* see README - env sector total size */ | |
6d3e0107 WD |
412 | |
413 | /* Address and size of Redundant Environment Sector */ | |
0e8d1586 JCPV |
414 | #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SIZE) |
415 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) | |
6d3e0107 | 416 | |
ca43ba18 HS |
417 | #endif |
418 | /* let us changing anything in our environment */ | |
419 | #define CONFIG_ENV_OVERWRITE | |
420 | ||
421 | /* | |
422 | * NAND-FLASH stuff | |
423 | */ | |
6d0f6bcf | 424 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
ca43ba18 | 425 | #define NAND_MAX_CHIPS 1 |
6d0f6bcf | 426 | #define CONFIG_SYS_NAND_BASE 0x77D00000 |
ca43ba18 | 427 | |
cb482072 HS |
428 | |
429 | #define CONFIG_JFFS2_NAND 1 /* jffs2 on nand support */ | |
430 | ||
51056dd9 | 431 | /* No command line, one static partition */ |
cb482072 HS |
432 | #undef CONFIG_JFFS2_CMDLINE |
433 | #define CONFIG_JFFS2_DEV "nand0" | |
51056dd9 WD |
434 | #define CONFIG_JFFS2_PART_SIZE 0x01000000 |
435 | #define CONFIG_JFFS2_PART_OFFSET 0x00000000 | |
cb482072 | 436 | |
ca43ba18 HS |
437 | /* |
438 | * Init Memory Controller: | |
439 | * | |
440 | */ | |
441 | ||
6d0f6bcf | 442 | #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE |
ca43ba18 HS |
443 | #define FLASH_BASE1_PRELIM 0 |
444 | ||
445 | /*----------------------------------------------------------------------- | |
446 | * Some informations about the internal SRAM (OCM=On Chip Memory) | |
447 | * | |
6d0f6bcf JCPV |
448 | * CONFIG_SYS_OCM_DATA_ADDR -> location |
449 | * CONFIG_SYS_OCM_DATA_SIZE -> size | |
ca43ba18 HS |
450 | */ |
451 | ||
6d0f6bcf JCPV |
452 | #define CONFIG_SYS_TEMP_STACK_OCM 1 |
453 | #define CONFIG_SYS_OCM_DATA_ADDR 0xF8000000 | |
454 | #define CONFIG_SYS_OCM_DATA_SIZE 0x1000 | |
ca43ba18 HS |
455 | |
456 | /*----------------------------------------------------------------------- | |
457 | * Definitions for initial stack pointer and data area (in DPRAM): | |
458 | * - we are using the internal 4k SRAM, so we don't need data cache mapping | |
6d0f6bcf | 459 | * - internal SRAM (OCM=On Chip Memory) is placed to CONFIG_SYS_OCM_DATA_ADDR |
ca43ba18 | 460 | * - Stackpointer will be located to |
6d0f6bcf | 461 | * (CONFIG_SYS_INIT_RAM_ADDR&0xFFFF0000) | (CONFIG_SYS_INIT_SP_OFFSET&0x0000FFFF) |
ca43ba18 HS |
462 | * in cpu/ppc4xx/start.S |
463 | */ | |
464 | ||
6d0f6bcf | 465 | #undef CONFIG_SYS_INIT_DCACHE_CS |
ca43ba18 | 466 | /* Where the internal SRAM starts */ |
6d0f6bcf | 467 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR |
ca43ba18 | 468 | /* Where the internal SRAM ends (only offset) */ |
6d0f6bcf | 469 | #define CONFIG_SYS_INIT_RAM_END 0x0F00 |
ca43ba18 HS |
470 | |
471 | /* | |
472 | ||
6d0f6bcf | 473 | CONFIG_SYS_INIT_RAM_ADDR ------> ------------ lower address |
f11033e7 WD |
474 | | | |
475 | | ^ | | |
476 | | | | | |
477 | | | Stack | | |
6d0f6bcf | 478 | CONFIG_SYS_GBL_DATA_OFFSET ----> ------------ |
f11033e7 WD |
479 | | | |
480 | | 64 Bytes | | |
481 | | | | |
6d0f6bcf | 482 | CONFIG_SYS_INIT_RAM_END ------> ------------ higher address |
ca43ba18 HS |
483 | (offset only) |
484 | ||
485 | */ | |
486 | /* size in bytes reserved for initial data */ | |
6d0f6bcf JCPV |
487 | #define CONFIG_SYS_GBL_DATA_SIZE 64 |
488 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE) | |
ca43ba18 | 489 | /* Initial value of the stack pointern in internal SRAM */ |
6d0f6bcf | 490 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
ca43ba18 HS |
491 | |
492 | /* | |
493 | * Internal Definitions | |
494 | * | |
495 | * Boot Flags | |
496 | */ | |
497 | #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */ | |
498 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ | |
499 | ||
500 | /* ################################################################################### */ | |
501 | /* These defines will be used in cpu/ppc4xx/cpu_init.c to setup external chip selects */ | |
502 | /* They are currently undefined cause they are initiaized in board/solidcard3/init.S */ | |
503 | ||
504 | /* This chip select accesses the boot device */ | |
505 | /* It depends on boot select switch if this device is 16 or 8 bit */ | |
506 | ||
6d0f6bcf JCPV |
507 | #undef CONFIG_SYS_EBC_PB0AP |
508 | #undef CONFIG_SYS_EBC_PB0CR | |
ca43ba18 | 509 | |
6d0f6bcf JCPV |
510 | #undef CONFIG_SYS_EBC_PB1AP |
511 | #undef CONFIG_SYS_EBC_PB1CR | |
ca43ba18 | 512 | |
6d0f6bcf JCPV |
513 | #undef CONFIG_SYS_EBC_PB2AP |
514 | #undef CONFIG_SYS_EBC_PB2CR | |
ca43ba18 | 515 | |
6d0f6bcf JCPV |
516 | #undef CONFIG_SYS_EBC_PB3AP |
517 | #undef CONFIG_SYS_EBC_PB3CR | |
ca43ba18 | 518 | |
6d0f6bcf JCPV |
519 | #undef CONFIG_SYS_EBC_PB4AP |
520 | #undef CONFIG_SYS_EBC_PB4CR | |
ca43ba18 | 521 | |
6d0f6bcf JCPV |
522 | #undef CONFIG_SYS_EBC_PB5AP |
523 | #undef CONFIG_SYS_EBC_PB5CR | |
ca43ba18 | 524 | |
6d0f6bcf JCPV |
525 | #undef CONFIG_SYS_EBC_PB6AP |
526 | #undef CONFIG_SYS_EBC_PB6CR | |
ca43ba18 | 527 | |
6d0f6bcf JCPV |
528 | #undef CONFIG_SYS_EBC_PB7AP |
529 | #undef CONFIG_SYS_EBC_PB7CR | |
ca43ba18 | 530 | |
6d0f6bcf | 531 | #define CONFIG_SYS_EBC_CFG 0xb84ef000 |
cb482072 | 532 | |
ca43ba18 HS |
533 | #define CONFIG_SDRAM_BANK0 /* use the standard SDRAM initialization */ |
534 | #undef CONFIG_SPD_EEPROM | |
535 | ||
536 | /* | |
537 | * Define this to get more information about system configuration | |
538 | */ | |
539 | /* #define SC3_DEBUGOUT */ | |
540 | #undef SC3_DEBUGOUT | |
541 | ||
542 | /*********************************************************************** | |
543 | * External peripheral base address | |
544 | ***********************************************************************/ | |
545 | ||
6d0f6bcf | 546 | #define CONFIG_SYS_ISA_MEM_BASE_ADDRESS 0x78000000 |
ca43ba18 HS |
547 | /* |
548 |