blob: 578ef80aa62b66f0f146fa1a0395459b0f974c52 [file] [log] [blame]
Heiko Schocher3c58a992007-01-11 15:44:44 +01001/*
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
Wolfgang Denk4f640012007-01-16 18:30:50 +010034 * 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 */
Heiko Schocher3c58a992007-01-11 15:44:44 +010060
Wolfgang Denkd2a7a742007-06-08 10:24:58 +020061#define CONFIG_SC3 1
Heiko Schocher3c58a992007-01-11 15:44:44 +010062#define CONFIG_4xx 1
63#define CONFIG_405GP 1
64
65#define CONFIG_BOARD_EARLY_INIT_F 1
66
67/*
Wolfgang Denk4f640012007-01-16 18:30:50 +010068 * 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.
Heiko Schocher3c58a992007-01-11 15:44:44 +010070 * Consider to inform your Linux IDE driver about the different addresses!
Wolfgang Denk4f640012007-01-16 18:30:50 +010071 * IDE_USES_ISA_EMULATION is only used if your CONFIG_COMMANDS macro includes
72 * the CFG_CMD_IDE macro!
Heiko Schocher3c58a992007-01-11 15:44:44 +010073 */
74#define IDE_USES_ISA_EMULATION
75
76/*-----------------------------------------------------------------------
77 * Serial Port
78 *----------------------------------------------------------------------*/
79#define CONFIG_SERIAL_MULTI
80#undef CONFIG_SERIAL_SOFTWARE_FIFO
81/*
82 * define CONFIG_POWER_DOWN if your cpu should power down while waiting for your input
83 * Works only, if you have enabled the CONFIG_SERIAL_SOFTWARE_FIFO feature
84 */
85#if CONFIG_SERIAL_SOFTWARE_FIFO
86 #define CONFIG_POWER_DOWN
87#endif
88
89/*
90 * define CONFIG_SYS_CLK_FREQ to your base crystal clock in Hz
91 */
92#define CONFIG_SYS_CLK_FREQ 33333333
93
94/*
95 * define CONFIG_BAUDRATE to the baudrate value you want to use as default
96 */
97#define CONFIG_BAUDRATE 115200
Wolfgang Denk86370712007-01-15 13:41:04 +010098#define CONFIG_BOOTDELAY 3 /* autoboot after 3 seconds */
Heiko Schocher3c58a992007-01-11 15:44:44 +010099
Wolfgang Denke13d35b2007-01-16 12:46:35 +0100100#define CONFIG_PREBOOT "echo;" \
101 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
102 "echo"
103
104#undef CONFIG_BOOTARGS
105
106#define CONFIG_EXTRA_ENV_SETTINGS \
107 "netdev=eth0\0" \
108 "nfsargs=setenv bootargs root=/dev/nfs rw " \
109 "nfsroot=${serverip}:${rootpath}\0" \
110 "ramargs=setenv bootargs root=/dev/ram rw\0" \
Heiko Schocher37efa392007-01-18 11:28:51 +0100111 "nand_args=setenv bootargs root=/dev/mtdblock5 rw" \
112 "rootfstype=jffs2\0" \
Wolfgang Denke13d35b2007-01-16 12:46:35 +0100113 "addip=setenv bootargs ${bootargs} " \
114 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
115 ":${hostname}:${netdev}:off panic=1\0" \
Wolfgang Denk7108f362007-03-13 16:05:55 +0100116 "addcons=setenv bootargs ${bootargs} " \
117 "console=ttyS0,${baudrate}\0" \
118 "flash_nfs=run nfsargs addip addcons;" \
Wolfgang Denke13d35b2007-01-16 12:46:35 +0100119 "bootm ${kernel_addr}\0" \
Wolfgang Denk7108f362007-03-13 16:05:55 +0100120 "flash_nand=run nand_args addip addcons;bootm ${kernel_addr}\0" \
121 "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addcons;" \
122 "bootm\0" \
Wolfgang Denke13d35b2007-01-16 12:46:35 +0100123 "rootpath=/opt/eldk/ppc_4xx\0" \
124 "bootfile=/tftpboot/sc3/uImage\0" \
Heiko Schocher800db312007-01-19 18:05:26 +0100125 "u-boot=/tftpboot/sc3/u-boot.bin\0" \
126 "setup=tftp 200000 /tftpboot/sc3/setup.img;autoscr 200000\0" \
Wolfgang Denke13d35b2007-01-16 12:46:35 +0100127 "kernel_addr=FFE08000\0" \
128 ""
129#undef CONFIG_BOOTCOMMAND
130
Heiko Schocher3c58a992007-01-11 15:44:44 +0100131#define CONFIG_SILENT_CONSOLE 1 /* enable silent startup */
132#define CFG_DEVICE_NULLDEV 1 /* include nulldev device */
133
134#if 1 /* feel free to disable for development */
135#define CONFIG_AUTOBOOT_KEYED /* Enable password protection */
Wolfgang Denk15c6b152007-04-11 17:22:55 +0200136#define CONFIG_AUTOBOOT_PROMPT "\nSC3 - booting... stop with ENTER\n"
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200137#define CONFIG_AUTOBOOT_DELAY_STR "\r" /* 1st "password" */
138#define CONFIG_AUTOBOOT_DELAY_STR2 "\n" /* 1st "password" */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100139#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 */
163#define CFG_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
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
Jon Loeliger49851be2007-07-04 22:33:30 -0500172/*
173 * Command line configuration.
174 */
175#include <config_cmd_default.h>
176
Heiko Schocher3c58a992007-01-11 15:44:44 +0100177
Jon Loeliger49851be2007-07-04 22:33:30 -0500178#define CONFIG_CMD_AUTOSCRIPT
179#define CONFIG_CMD_PCI
180#define CONFIG_CMD_IRQ
181#define CONFIG_CMD_NET
182#define CONFIG_CMD_MII
183#define CONFIG_CMD_PING
184#define CONFIG_CMD_NAND
185#define CONFIG_CMD_JFFS2
186#define CONFIG_CMD_I2C
187#define CONFIG_CMD_IDE
188#define CONFIG_CMD_DATE
189#define CONFIG_CMD_DHCP
190#define CONFIG_CMD_CACHE
191#define CONFIG_CMD_ELF
192
Heiko Schocher3c58a992007-01-11 15:44:44 +0100193
194#undef CONFIG_WATCHDOG /* watchdog disabled */
195
196/*
197 * Miscellaneous configurable options
198 */
199#define CFG_LONGHELP 1 /* undef to save memory */
200#define CFG_PROMPT "SC3> " /* Monitor Command Prompt */
201#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
202
203#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
204
205#define CFG_MAXARGS 16 /* max number of command args */
206#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
207
208#define CFG_MEMTEST_START 0x0400000 /* memtest works on */
209#define CFG_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
210
211/*
212 * If CFG_EXT_SERIAL_CLOCK, then the UART divisor is 1.
213 * If CFG_405_UART_ERRATA_59, then UART divisor is 31.
214 * Otherwise, UART divisor is determined by CPU Clock and CFG_BASE_BAUD value.
215 * The Linux BASE_BAUD define should match this configuration.
216 * baseBaud = cpuClock/(uartDivisor*16)
217 * If CFG_405_UART_ERRATA_59 and 200MHz CPU clock,
218 * set Linux BASE_BAUD to 403200.
219 *
220 * Consider the OPB clock! If it get lower the BASE_BAUD must be lower to
221 * (see 405GP datasheet for descritpion)
222 */
Wolfgang Denk86370712007-01-15 13:41:04 +0100223#undef CFG_EXT_SERIAL_CLOCK /* external serial clock */
224#undef CFG_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100225#define CFG_BASE_BAUD 921600 /* internal clock */
226
227/* The following table includes the supported baudrates */
228#define CFG_BAUDRATE_TABLE \
229 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
230
231#define CFG_LOAD_ADDR 0x1000000 /* default load address */
232#define CFG_EXTBDINFO 1 /* To use extended board_into (bd_t) */
233
234#define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
235
236/*-----------------------------------------------------------------------
237 * IIC stuff
238 *-----------------------------------------------------------------------
239 */
240#define CONFIG_HARD_I2C /* I2C with hardware support */
Wolfgang Denk86370712007-01-15 13:41:04 +0100241#undef CONFIG_SOFT_I2C /* I2C bit-banged */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100242
243#define I2C_INIT
244#define I2C_ACTIVE 0
245#define I2C_TRISTATE 0
246
247#define CFG_I2C_SPEED 100000 /* use the standard 100kHz speed */
248#define CFG_I2C_SLAVE 0x7F /* mask valid bits */
249
250#define CONFIG_RTC_DS1337
251#define CFG_I2C_RTC_ADDR 0x68
252
253/*-----------------------------------------------------------------------
254 * PCI stuff
255 *-----------------------------------------------------------------------
256 */
Wolfgang Denk86370712007-01-15 13:41:04 +0100257#define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */
258#define PCI_HOST_FORCE 1 /* configure as pci host */
259#define PCI_HOST_AUTO 2 /* detected via arbiter enable */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100260
Wolfgang Denk86370712007-01-15 13:41:04 +0100261#define CONFIG_PCI /* include pci support */
262#define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */
263#define CONFIG_PCI_PNP /* do pci plug-and-play */
264 /* resource configuration */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100265
266/* If you want to see, whats connected to your PCI bus */
267/* #define CONFIG_PCI_SCAN_SHOW */
268
Wolfgang Denk86370712007-01-15 13:41:04 +0100269#define CFG_PCI_SUBSYS_VENDORID 0x0000 /* PCI Vendor ID: to-do!!! */
270#define CFG_PCI_SUBSYS_DEVICEID 0x0000 /* PCI Device ID: to-do!!! */
271#define CFG_PCI_PTM1LA 0x00000000 /* point to sdram */
272#define CFG_PCI_PTM1MS 0x80000001 /* 2GB, enable hard-wired to 1 */
273#define CFG_PCI_PTM1PCI 0x00000000 /* Host: use this pci address */
274#define CFG_PCI_PTM2LA 0x00000000 /* disabled */
275#define CFG_PCI_PTM2MS 0x00000000 /* disabled */
276#define CFG_PCI_PTM2PCI 0x04000000 /* Host: use this pci address */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100277
278/*-----------------------------------------------------------------------
279 * External peripheral base address
280 *-----------------------------------------------------------------------
281 */
Jon Loeliger49851be2007-07-04 22:33:30 -0500282#if !defined(CONFIG_CMD_IDE)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100283
Wolfgang Denk86370712007-01-15 13:41:04 +0100284#undef CONFIG_IDE_LED /* no led for ide supported */
285#undef CONFIG_IDE_RESET /* no reset for ide supported */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100286
287/*-----------------------------------------------------------------------
288 * IDE/ATA stuff
289 *-----------------------------------------------------------------------
290 */
Jon Loeliger49851be2007-07-04 22:33:30 -0500291#else
Heiko Schocher3c58a992007-01-11 15:44:44 +0100292#define CONFIG_START_IDE 1 /* check, if use IDE */
293
Wolfgang Denk86370712007-01-15 13:41:04 +0100294#undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */
295#undef CONFIG_IDE_LED /* no led for ide supported */
296#undef CONFIG_IDE_RESET /* no reset for ide supported */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100297
298#define CONFIG_ATAPI
299#define CONFIG_DOS_PARTITION
300#define CFG_IDE_MAXDEVICE (CFG_IDE_MAXBUS*1) /* max. 1 drives per IDE bus */
301
302#ifndef IDE_USES_ISA_EMULATION
303
304/* New and faster access */
305#define CFG_ATA_BASE_ADDR 0x7A000000 /* start of ISA IO emulation */
306
307/* How many IDE busses are available */
308#define CFG_IDE_MAXBUS 1
309
310/* What IDE ports are available */
311#define CFG_ATA_IDE0_OFFSET 0x000 /* first is available */
312#undef CFG_ATA_IDE1_OFFSET /* second not available */
313
314/* access to the data port is calculated:
315 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_DATA_OFFSET + 0 */
316#define CFG_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */
317
318/* access to the registers is calculated:
319 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_REG_OFFSET + [1..7] */
320#define CFG_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */
321
322/* access to the alternate register is calculated:
323 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_ALT_OFFSET + 6 */
324#define CFG_ATA_ALT_OFFSET 0x008 /* Offset for alternate registers */
325
326#else /* IDE_USES_ISA_EMULATION */
327
328#define CFG_ATA_BASE_ADDR 0x79000000 /* start of ISA IO emulation */
329
330/* How many IDE busses are available */
331#define CFG_IDE_MAXBUS 1
332
333/* What IDE ports are available */
334#define CFG_ATA_IDE0_OFFSET 0x01F0 /* first is available */
335#undef CFG_ATA_IDE1_OFFSET /* second not available */
336
337/* access to the data port is calculated:
338 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_DATA_OFFSET + 0 */
339#define CFG_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */
340
341/* access to the registers is calculated:
342 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_REG_OFFSET + [1..7] */
343#define CFG_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */
344
345/* access to the alternate register is calculated:
346 CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_ALT_OFFSET + 6 */
347#define CFG_ATA_ALT_OFFSET 0x03F0 /* Offset for alternate registers */
348
349#endif /* IDE_USES_ISA_EMULATION */
350
Jon Loeliger49851be2007-07-04 22:33:30 -0500351#endif
Heiko Schocher3c58a992007-01-11 15:44:44 +0100352
353/*
354#define CFG_KEY_REG_BASE_ADDR 0xF0100000
355#define CFG_IR_REG_BASE_ADDR 0xF0200000
356#define CFG_FPGA_REG_BASE_ADDR 0xF0300000
357*/
358
359/*-----------------------------------------------------------------------
360 * Start addresses for the final memory configuration
361 * (Set up by the startup code)
362 * Please note that CFG_SDRAM_BASE _must_ start at 0
363 *
364 * CFG_FLASH_BASE -> start address of internal flash
365 * CFG_MONITOR_BASE -> start of u-boot
366 */
367#ifndef __ASSEMBLER__
368extern unsigned long offsetOfBigFlash;
369extern unsigned long offsetOfEnvironment;
370#endif
371
372#define CFG_SDRAM_BASE 0x00000000
373#define CFG_FLASH_BASE 0xFFE00000
374#define CFG_MONITOR_BASE 0xFFFC0000 /* placed last 256k */
375#define CFG_MONITOR_LEN (224 * 1024) /* Reserve 224 KiB for Monitor */
376#define CFG_MALLOC_LEN (128 * 1024) /* Reserve 128 KiB for malloc() */
377
378/*
379 * For booting Linux, the board info and command line data
380 * have to be in the first 8 MiB of memory, since this is
381 * the maximum mapped by the Linux kernel during initialization.
382 */
383#define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
384/*-----------------------------------------------------------------------
Wolfgang Denk86370712007-01-15 13:41:04 +0100385 * FLASH organization ## FIXME: lookup in datasheet
Heiko Schocher3c58a992007-01-11 15:44:44 +0100386 */
387#define CFG_MAX_FLASH_BANKS 2 /* max number of memory banks */
388#define CFG_MAX_FLASH_SECT 256 /* max number of sectors on one chip */
389
390#define CFG_FLASH_CFI /* flash is CFI compat. */
391#define CFG_FLASH_CFI_DRIVER /* Use common CFI driver*/
392#define CFG_FLASH_EMPTY_INFO /* print 'E' for empty sector */
393#define CFG_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/
394#define CFG_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
395#define CFG_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
Heiko Schocher800db312007-01-19 18:05:26 +0100396#define CFG_WRITE_SWAPPED_DATA /* swap Databytes between reading/writing */
Heiko Schocher3c58a992007-01-11 15:44:44 +0100397
398#define CFG_ENV_IS_IN_FLASH 1
399#if CFG_ENV_IS_IN_FLASH
Wolfgang Denk4f640012007-01-16 18:30:50 +0100400#define CFG_ENV_OFFSET 0x00000000 /* Offset of Environment Sector in bottom type */
401#define CFG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */
402#define CFG_ENV_SECT_SIZE 0x4000 /* see README - env sector total size */
403
404/* Address and size of Redundant Environment Sector */
405#define CFG_ENV_OFFSET_REDUND (CFG_ENV_OFFSET+CFG_ENV_SIZE)
406#define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE)
407
Heiko Schocher3c58a992007-01-11 15:44:44 +0100408#endif
409/* let us changing anything in our environment */
410#define CONFIG_ENV_OVERWRITE
411
412/*
413 * NAND-FLASH stuff
414 */
415#define CFG_MAX_NAND_DEVICE 1
416#define NAND_MAX_CHIPS 1
417#define CFG_NAND_BASE 0x77D00000
418
Heiko Schocher37efa392007-01-18 11:28:51 +0100419
420#define CONFIG_JFFS2_NAND 1 /* jffs2 on nand support */
421
Wolfgang Denk15c6b152007-04-11 17:22:55 +0200422/* No command line, one static partition */
Heiko Schocher37efa392007-01-18 11:28:51 +0100423#undef CONFIG_JFFS2_CMDLINE
424#define CONFIG_JFFS2_DEV "nand0"
Wolfgang Denk15c6b152007-04-11 17:22:55 +0200425#define CONFIG_JFFS2_PART_SIZE 0x01000000
426#define CONFIG_JFFS2_PART_OFFSET 0x00000000
Heiko Schocher37efa392007-01-18 11:28:51 +0100427
Heiko Schocher3c58a992007-01-11 15:44:44 +0100428/*-----------------------------------------------------------------------
429 * Cache Configuration
430 *
431 * CFG_DCACHE_SIZE -> size of data cache:
432 * - 405GP 8k
433 * - 405GPr 16k
434 * How to handle the difference in chache size?
435 * CFG_CACHELINE_SIZE -> size of one cache line: 32 bytes
436 * (used in cpu/ppc4xx/start.S)
437*/
438#define CFG_DCACHE_SIZE 16384
439
440#define CFG_CACHELINE_SIZE 32
441
Jon Loeliger49851be2007-07-04 22:33:30 -0500442#if defined(CONFIG_CMD_KGDB)
Heiko Schocher3c58a992007-01-11 15:44:44 +0100443 #define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */
444#endif
445
446/*
447 * Init Memory Controller:
448 *
449 */
450
451#define FLASH_BASE0_PRELIM CFG_FLASH_BASE
452#define FLASH_BASE1_PRELIM 0
453
454/*-----------------------------------------------------------------------
455 * Some informations about the internal SRAM (OCM=On Chip Memory)
456 *
457 * CFG_OCM_DATA_ADDR -> location
458 * CFG_OCM_DATA_SIZE -> size
459*/
460
461#define CFG_TEMP_STACK_OCM 1
462#define CFG_OCM_DATA_ADDR 0xF8000000
463#define CFG_OCM_DATA_SIZE 0x1000
464
465/*-----------------------------------------------------------------------
466 * Definitions for initial stack pointer and data area (in DPRAM):
467 * - we are using the internal 4k SRAM, so we don't need data cache mapping
468 * - internal SRAM (OCM=On Chip Memory) is placed to CFG_OCM_DATA_ADDR
469 * - Stackpointer will be located to
470 * (CFG_INIT_RAM_ADDR&0xFFFF0000) | (CFG_INIT_SP_OFFSET&0x0000FFFF)
471 * in cpu/ppc4xx/start.S
472 */
473
474#undef CFG_INIT_DCACHE_CS
475/* Where the internal SRAM starts */
Wolfgang Denk86370712007-01-15 13:41:04 +0100476#define CFG_INIT_RAM_ADDR CFG_OCM_DATA_ADDR
Heiko Schocher3c58a992007-01-11 15:44:44 +0100477/* Where the internal SRAM ends (only offset) */
Wolfgang Denk86370712007-01-15 13:41:04 +0100478#define CFG_INIT_RAM_END 0x0F00
Heiko Schocher3c58a992007-01-11 15:44:44 +0100479
480/*
481
482 CFG_INIT_RAM_ADDR ------> ------------ lower address
Wolfgang Denk86370712007-01-15 13:41:04 +0100483 | |
484 | ^ |
485 | | |
486 | | Stack |
Heiko Schocher3c58a992007-01-11 15:44:44 +0100487 CFG_GBL_DATA_OFFSET ----> ------------
Wolfgang Denk86370712007-01-15 13:41:04 +0100488 | |
489 | 64 Bytes |
490 | |
Heiko Schocher3c58a992007-01-11 15:44:44 +0100491 CFG_INIT_RAM_END ------> ------------ higher address
492 (offset only)
493
494*/
495/* size in bytes reserved for initial data */
496#define CFG_GBL_DATA_SIZE 64
497#define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
498/* Initial value of the stack pointern in internal SRAM */
499#define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
500
501/*
502 * Internal Definitions
503 *
504 * Boot Flags
505 */
506#define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
507#define BOOTFLAG_WARM 0x02 /* Software reboot */
508
509/* ################################################################################### */
510/* These defines will be used in cpu/ppc4xx/cpu_init.c to setup external chip selects */
511/* They are currently undefined cause they are initiaized in board/solidcard3/init.S */
512
513/* This chip select accesses the boot device */
514/* It depends on boot select switch if this device is 16 or 8 bit */
515
516#undef CFG_EBC_PB0AP
517#undef CFG_EBC_PB0CR
518
519#undef CFG_EBC_PB1AP
520#undef CFG_EBC_PB1CR
521
522#undef CFG_EBC_PB2AP
523#undef CFG_EBC_PB2CR
524
525#undef CFG_EBC_PB3AP
526#undef CFG_EBC_PB3CR
527
528#undef CFG_EBC_PB4AP
529#undef CFG_EBC_PB4CR
530
531#undef CFG_EBC_PB5AP
532#undef CFG_EBC_PB5CR
533
534#undef CFG_EBC_PB6AP
535#undef CFG_EBC_PB6CR
536
537#undef CFG_EBC_PB7AP
538#undef CFG_EBC_PB7CR
539
Heiko Schocher37efa392007-01-18 11:28:51 +0100540#define CFG_EBC_CFG 0xb84ef000
541
Heiko Schocher3c58a992007-01-11 15:44:44 +0100542#define CONFIG_SDRAM_BANK0 /* use the standard SDRAM initialization */
543#undef CONFIG_SPD_EEPROM
544
545/*
546 * Define this to get more information about system configuration
547 */
548/* #define SC3_DEBUGOUT */
549#undef SC3_DEBUGOUT
550
551/***********************************************************************
552 * External peripheral base address
553 ***********************************************************************/
554
555#define CFG_ISA_MEM_BASE_ADDRESS 0x78000000
556/*
557 Die Grafik-Treiber greifen über die Adresse in diesem Macro auf den Chip zu.
558 Das funktioniert bei deren Karten, weil sie eine PCI-Bridge benutzen, die
559 das gleiche Mapping durchführen kann, wie der SC520 (also Aufteilen von IO-Zugriffen
560 auf ISA- und PCI-Zyklen)
561 */
562#define CFG_ISA_IO_BASE_ADDRESS 0xE8000000
563/*#define CFG_ISA_IO_BASE_ADDRESS 0x79000000 */
564
565/************************************************************
566 * Video support
567 ************************************************************/
568
569#ifdef USE_VGA_GRAPHICS
570#define CONFIG_VIDEO /* To enable video controller support */
571#define CONFIG_VIDEO_CT69000
572#define CONFIG_CFB_CONSOLE
573/* #define CONFIG_VIDEO_LOGO */
574#define CONFIG_VGA_AS_SINGLE_DEVICE
575#define CONFIG_VIDEO_SW_CURSOR
576/* #define CONFIG_VIDEO_HW_CURSOR */
577#define CONFIG_VIDEO_ONBOARD /* Video controller is on-board */
578
579#define VIDEO_HW_RECTFILL
580#define VIDEO_HW_BITBLT
581
582#endif
583
584/************************************************************
585 * Ident
586 ************************************************************/
587#define CONFIG_SC3_VERSION "r1.4"
588
589#define POST_OUT(x) (*((volatile unsigned char*)(0x79000080))=x)
590
591#endif /* __CONFIG_H */