include/: Remove obsolete references to CONFIG_COMMANDS
[platform/kernel/u-boot.git] / include / configs / sc3.h
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
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  */
60
61 #define CONFIG_SC3      1
62 #define CONFIG_4xx      1
63 #define CONFIG_405GP    1
64
65 #define CONFIG_BOARD_EARLY_INIT_F       1
66
67 /*
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.
70  * Consider to inform your Linux IDE driver about the different addresses!
71  * IDE_USES_ISA_EMULATION is only used if you define CONFIG_CMD_IDE!
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
97 #define CONFIG_BOOTDELAY        3 /* autoboot after 3 seconds         */
98
99 #define CONFIG_PREBOOT  "echo;" \
100         "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
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"                    \
110         "nand_args=setenv bootargs root=/dev/mtdblock5 rw"              \
111                 "rootfstype=jffs2\0"                                    \
112         "addip=setenv bootargs ${bootargs} "                            \
113                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
114                 ":${hostname}:${netdev}:off panic=1\0"                  \
115         "addcons=setenv bootargs ${bootargs} "                          \
116                 "console=ttyS0,${baudrate}\0"                           \
117         "flash_nfs=run nfsargs addip addcons;"                          \
118                 "bootm ${kernel_addr}\0"                                \
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"                                               \
122         "rootpath=/opt/eldk/ppc_4xx\0"                                  \
123         "bootfile=/tftpboot/sc3/uImage\0"                               \
124         "u-boot=/tftpboot/sc3/u-boot.bin\0"                             \
125         "setup=tftp 200000 /tftpboot/sc3/setup.img;autoscr 200000\0"    \
126         "kernel_addr=FFE08000\0"                                        \
127         ""
128 #undef CONFIG_BOOTCOMMAND
129
130 #define CONFIG_SILENT_CONSOLE   1       /* enable silent startup */
131 #define CFG_DEVICE_NULLDEV      1       /* include nulldev device       */
132
133 #if 1   /* feel free to disable for development */
134 #define CONFIG_AUTOBOOT_KEYED           /* Enable password protection   */
135 #define CONFIG_AUTOBOOT_PROMPT          "\nSC3 - booting... stop with ENTER\n"
136 #define CONFIG_AUTOBOOT_DELAY_STR       "\r"    /* 1st "password"       */
137 #define CONFIG_AUTOBOOT_DELAY_STR2      "\n"    /* 1st "password"       */
138 #endif
139
140 /*
141  * define CONFIG_BOOTCOMMAND to the autoboot commands. They will running after
142  * the CONFIG_BOOTDELAY delay to boot your machine
143  */
144 #define CONFIG_BOOTCOMMAND      "bootp;dcache on;bootm"
145
146 /*
147  * define CONFIG_BOOTARGS to the default kernel parameters. They will used if you don't
148  * set different values at the u-boot prompt
149  */
150 #ifdef USE_VGA_GRAPHICS
151  #define CONFIG_BOOTARGS        "root=/dev/nfs rw ip=bootp nfsroot=/tftpboot/solidcard3re"
152 #else
153  #define CONFIG_BOOTARGS        "console=ttyS0,115200 root=/dev/nfs rw ip=bootp"
154 #endif
155 /*
156  * Is the USB host controller assembled? If yes define CONFIG_ISP1161_PRESENT
157  * This reserves memory bank #4 for this purpose
158  */
159 #undef CONFIG_ISP1161_PRESENT
160
161 #undef CONFIG_LOADS_ECHO   /* no echo on for serial download    */
162 #define CFG_LOADS_BAUD_CHANGE   1       /* allow baudrate change        */
163
164 #define CONFIG_NET_MULTI
165 /* #define CONFIG_EEPRO100_SROM_WRITE */
166 /* #define CONFIG_SHOW_MAC */
167 #define CONFIG_EEPRO100
168 #define CONFIG_MII 1                    /* add 405GP MII PHY management         */
169 #define CONFIG_PHY_ADDR 1       /* the connected Phy defaults to address 1 */
170
171 /*
172  * Command line configuration.
173  */
174 #include <config_cmd_default.h>
175
176
177 #define CONFIG_CMD_AUTOSCRIPT
178 #define CONFIG_CMD_PCI
179 #define CONFIG_CMD_IRQ
180 #define CONFIG_CMD_NET
181 #define CONFIG_CMD_MII
182 #define CONFIG_CMD_PING
183 #define CONFIG_CMD_NAND
184 #define CONFIG_CMD_JFFS2
185 #define CONFIG_CMD_I2C
186 #define CONFIG_CMD_IDE
187 #define CONFIG_CMD_DATE
188 #define CONFIG_CMD_DHCP
189 #define CONFIG_CMD_CACHE
190 #define CONFIG_CMD_ELF
191
192
193 #undef CONFIG_WATCHDOG                  /* watchdog disabled            */
194
195 /*
196  * Miscellaneous configurable options
197  */
198 #define CFG_LONGHELP    1               /* undef to save memory         */
199 #define CFG_PROMPT      "SC3> " /* Monitor Command Prompt       */
200 #define CFG_CBSIZE      256             /* Console I/O Buffer Size      */
201
202 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
203
204 #define CFG_MAXARGS     16              /* max number of command args   */
205 #define CFG_BARGSIZE    CFG_CBSIZE      /* Boot Argument Buffer Size    */
206
207 #define CFG_MEMTEST_START       0x0400000       /* memtest works on     */
208 #define CFG_MEMTEST_END         0x0C00000       /* 4 ... 12 MB in DRAM  */
209
210 /*
211  * If CFG_EXT_SERIAL_CLOCK, then the UART divisor is 1.
212  * If CFG_405_UART_ERRATA_59, then UART divisor is 31.
213  * Otherwise, UART divisor is determined by CPU Clock and CFG_BASE_BAUD value.
214  * The Linux BASE_BAUD define should match this configuration.
215  *    baseBaud = cpuClock/(uartDivisor*16)
216  * If CFG_405_UART_ERRATA_59 and 200MHz CPU clock,
217  * set Linux BASE_BAUD to 403200.
218  *
219  * Consider the OPB clock! If it get lower the BASE_BAUD must be lower to
220  * (see 405GP datasheet for descritpion)
221  */
222 #undef  CFG_EXT_SERIAL_CLOCK            /* external serial clock */
223 #undef  CFG_405_UART_ERRATA_59          /* 405GP/CR Rev. D silicon */
224 #define CFG_BASE_BAUD           921600  /* internal clock */
225
226 /* The following table includes the supported baudrates */
227 #define CFG_BAUDRATE_TABLE  \
228     {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
229
230 #define CFG_LOAD_ADDR           0x1000000       /* default load address */
231 #define CFG_EXTBDINFO           1       /* To use extended board_into (bd_t) */
232
233 #define CFG_HZ                  1000    /* decrementer freq: 1 ms ticks */
234
235 /*-----------------------------------------------------------------------
236  * IIC stuff
237  *-----------------------------------------------------------------------
238  */
239 #define  CONFIG_HARD_I2C                /* I2C with hardware support    */
240 #undef  CONFIG_SOFT_I2C                 /* I2C bit-banged               */
241
242 #define I2C_INIT
243 #define I2C_ACTIVE 0
244 #define I2C_TRISTATE 0
245
246 #define CFG_I2C_SPEED           100000  /* use the standard 100kHz speed */
247 #define CFG_I2C_SLAVE           0x7F            /* mask valid bits */
248
249 #define CONFIG_RTC_DS1337
250 #define CFG_I2C_RTC_ADDR 0x68
251
252 /*-----------------------------------------------------------------------
253  * PCI stuff
254  *-----------------------------------------------------------------------
255  */
256 #define PCI_HOST_ADAPTER 0              /* configure ar pci adapter     */
257 #define PCI_HOST_FORCE  1               /* configure as pci host        */
258 #define PCI_HOST_AUTO   2               /* detected via arbiter enable  */
259
260 #define CONFIG_PCI                      /* include pci support          */
261 #define CONFIG_PCI_HOST PCI_HOST_FORCE  /* select pci host function     */
262 #define CONFIG_PCI_PNP                  /* do pci plug-and-play         */
263                                         /* resource configuration       */
264
265 /* If you want to see, whats connected to your PCI bus */
266 /* #define CONFIG_PCI_SCAN_SHOW */
267
268 #define CFG_PCI_SUBSYS_VENDORID 0x0000  /* PCI Vendor ID: to-do!!!      */
269 #define CFG_PCI_SUBSYS_DEVICEID 0x0000  /* PCI Device ID: to-do!!!      */
270 #define CFG_PCI_PTM1LA  0x00000000      /* point to sdram               */
271 #define CFG_PCI_PTM1MS  0x80000001      /* 2GB, enable hard-wired to 1  */
272 #define CFG_PCI_PTM1PCI 0x00000000      /* Host: use this pci address   */
273 #define CFG_PCI_PTM2LA  0x00000000      /* disabled                     */
274 #define CFG_PCI_PTM2MS  0x00000000      /* disabled                     */
275 #define CFG_PCI_PTM2PCI 0x04000000      /* Host: use this pci address   */
276
277 /*-----------------------------------------------------------------------
278  * External peripheral base address
279  *-----------------------------------------------------------------------
280  */
281 #if !defined(CONFIG_CMD_IDE)
282
283 #undef  CONFIG_IDE_LED                  /* no led for ide supported     */
284 #undef  CONFIG_IDE_RESET                /* no reset for ide supported   */
285
286 /*-----------------------------------------------------------------------
287  * IDE/ATA stuff
288  *-----------------------------------------------------------------------
289  */
290 #else
291 #define CONFIG_START_IDE        1       /* check, if use IDE */
292
293 #undef  CONFIG_IDE_8xx_DIRECT           /* no pcmcia interface required */
294 #undef  CONFIG_IDE_LED                  /* no led for ide supported     */
295 #undef  CONFIG_IDE_RESET                /* no reset for ide supported   */
296
297 #define CONFIG_ATAPI
298 #define CONFIG_DOS_PARTITION
299 #define CFG_IDE_MAXDEVICE       (CFG_IDE_MAXBUS*1) /* max. 1 drives per IDE bus */
300
301 #ifndef IDE_USES_ISA_EMULATION
302
303 /* New and faster access */
304 #define CFG_ATA_BASE_ADDR               0x7A000000      /* start of ISA IO emulation */
305
306 /* How many IDE busses are available */
307 #define CFG_IDE_MAXBUS          1
308
309 /* What IDE ports are available */
310 #define CFG_ATA_IDE0_OFFSET     0x000           /* first is available */
311 #undef  CFG_ATA_IDE1_OFFSET                     /* second not available */
312
313 /* access to the data port is calculated:
314    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_DATA_OFFSET + 0 */
315 #define CFG_ATA_DATA_OFFSET     0x0000  /* Offset for data I/O */
316
317 /* access to the registers is calculated:
318    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_REG_OFFSET + [1..7] */
319 #define CFG_ATA_REG_OFFSET      0x0000  /* Offset for normal register accesses  */
320
321 /* access to the alternate register is calculated:
322    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_ALT_OFFSET + 6 */
323 #define CFG_ATA_ALT_OFFSET      0x008           /* Offset for alternate registers       */
324
325 #else /* IDE_USES_ISA_EMULATION */
326
327 #define CFG_ATA_BASE_ADDR               0x79000000      /* start of ISA IO emulation */
328
329 /* How many IDE busses are available */
330 #define CFG_IDE_MAXBUS          1
331
332 /* What IDE ports are available */
333 #define CFG_ATA_IDE0_OFFSET     0x01F0  /* first is available */
334 #undef  CFG_ATA_IDE1_OFFSET                             /* second not available */
335
336 /* access to the data port is calculated:
337    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_DATA_OFFSET + 0 */
338 #define CFG_ATA_DATA_OFFSET     0x0000  /* Offset for data I/O */
339
340 /* access to the registers is calculated:
341    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_REG_OFFSET + [1..7] */
342 #define CFG_ATA_REG_OFFSET      0x0000  /* Offset for normal register accesses  */
343
344 /* access to the alternate register is calculated:
345    CFG_ATA_BASE_ADDR + CFG_ATA_IDE0_OFFSET + CFG_ATA_ALT_OFFSET + 6 */
346 #define CFG_ATA_ALT_OFFSET      0x03F0          /* Offset for alternate registers       */
347
348 #endif /* IDE_USES_ISA_EMULATION */
349
350 #endif
351
352 /*
353 #define CFG_KEY_REG_BASE_ADDR   0xF0100000
354 #define CFG_IR_REG_BASE_ADDR    0xF0200000
355 #define CFG_FPGA_REG_BASE_ADDR  0xF0300000
356 */
357
358 /*-----------------------------------------------------------------------
359  * Start addresses for the final memory configuration
360  * (Set up by the startup code)
361  * Please note that CFG_SDRAM_BASE _must_ start at 0
362  *
363  * CFG_FLASH_BASE   -> start address of internal flash
364  * CFG_MONITOR_BASE -> start of u-boot
365  */
366 #ifndef __ASSEMBLER__
367 extern unsigned long offsetOfBigFlash;
368 extern unsigned long offsetOfEnvironment;
369 #endif
370
371 #define CFG_SDRAM_BASE          0x00000000
372 #define CFG_FLASH_BASE          0xFFE00000
373 #define CFG_MONITOR_BASE        0xFFFC0000     /* placed last 256k */
374 #define CFG_MONITOR_LEN         (224 * 1024)    /* Reserve 224 KiB for Monitor  */
375 #define CFG_MALLOC_LEN          (128 * 1024)    /* Reserve 128 KiB for malloc() */
376
377 /*
378  * For booting Linux, the board info and command line data
379  * have to be in the first 8 MiB of memory, since this is
380  * the maximum mapped by the Linux kernel during initialization.
381  */
382 #define CFG_BOOTMAPSZ           (8 << 20)       /* Initial Memory map for Linux */
383 /*-----------------------------------------------------------------------
384  * FLASH organization ## FIXME: lookup in datasheet
385  */
386 #define CFG_MAX_FLASH_BANKS     2       /* max number of memory banks           */
387 #define CFG_MAX_FLASH_SECT      256     /* max number of sectors on one chip    */
388
389 #define CFG_FLASH_CFI                   /* flash is CFI compat. */
390 #define CFG_FLASH_CFI_DRIVER            /* Use common CFI driver*/
391 #define CFG_FLASH_EMPTY_INFO            /* print 'E' for empty sector   */
392 #define CFG_FLASH_QUIET_TEST    1       /* don't warn upon unknown flash*/
393 #define CFG_FLASH_ERASE_TOUT    120000  /* Timeout for Flash Erase (in ms)      */
394 #define CFG_FLASH_WRITE_TOUT    500     /* Timeout for Flash Write (in ms)      */
395 #define CFG_WRITE_SWAPPED_DATA          /* swap Databytes between reading/writing */
396
397 #define CFG_ENV_IS_IN_FLASH     1
398 #if CFG_ENV_IS_IN_FLASH
399 #define CFG_ENV_OFFSET          0x00000000  /* Offset of Environment Sector in bottom type */
400 #define CFG_ENV_SIZE            0x4000      /* Total Size of Environment Sector */
401 #define CFG_ENV_SECT_SIZE       0x4000      /* see README - env sector total size       */
402
403 /* Address and size of Redundant Environment Sector     */
404 #define CFG_ENV_OFFSET_REDUND   (CFG_ENV_OFFSET+CFG_ENV_SIZE)
405 #define CFG_ENV_SIZE_REDUND     (CFG_ENV_SIZE)
406
407 #endif
408 /* let us changing anything in our environment */
409 #define CONFIG_ENV_OVERWRITE
410
411 /*
412  * NAND-FLASH stuff
413  */
414 #define CFG_MAX_NAND_DEVICE     1
415 #define NAND_MAX_CHIPS          1
416 #define CFG_NAND_BASE           0x77D00000
417
418
419 #define CONFIG_JFFS2_NAND 1                     /* jffs2 on nand support */
420
421 /* No command line, one static partition */
422 #undef  CONFIG_JFFS2_CMDLINE
423 #define CONFIG_JFFS2_DEV                "nand0"
424 #define CONFIG_JFFS2_PART_SIZE          0x01000000
425 #define CONFIG_JFFS2_PART_OFFSET        0x00000000
426
427 /*-----------------------------------------------------------------------
428  * Cache Configuration
429  *
430  * CFG_DCACHE_SIZE -> size of data cache:
431  * - 405GP 8k
432  * - 405GPr 16k
433  * How to handle the difference in chache size?
434  * CFG_CACHELINE_SIZE -> size of one cache line: 32 bytes
435  * (used in cpu/ppc4xx/start.S)
436 */
437 #define CFG_DCACHE_SIZE    16384
438
439 #define CFG_CACHELINE_SIZE 32
440
441 #if defined(CONFIG_CMD_KGDB)
442  #define CFG_CACHELINE_SHIFT    5       /* log base 2 of the above value        */
443 #endif
444
445 /*
446  * Init Memory Controller:
447  *
448  */
449
450 #define FLASH_BASE0_PRELIM      CFG_FLASH_BASE
451 #define FLASH_BASE1_PRELIM      0
452
453 /*-----------------------------------------------------------------------
454  * Some informations about the internal SRAM (OCM=On Chip Memory)
455  *
456  * CFG_OCM_DATA_ADDR -> location
457  * CFG_OCM_DATA_SIZE -> size
458 */
459
460 #define CFG_TEMP_STACK_OCM      1
461 #define CFG_OCM_DATA_ADDR       0xF8000000
462 #define CFG_OCM_DATA_SIZE       0x1000
463
464 /*-----------------------------------------------------------------------
465  * Definitions for initial stack pointer and data area (in DPRAM):
466  * - we are using the internal 4k SRAM, so we don't need data cache mapping
467  * - internal SRAM (OCM=On Chip Memory) is placed to CFG_OCM_DATA_ADDR
468  * - Stackpointer will be located to
469  *   (CFG_INIT_RAM_ADDR&0xFFFF0000) | (CFG_INIT_SP_OFFSET&0x0000FFFF)
470  *   in cpu/ppc4xx/start.S
471  */
472
473 #undef CFG_INIT_DCACHE_CS
474 /* Where the internal SRAM starts */
475 #define CFG_INIT_RAM_ADDR       CFG_OCM_DATA_ADDR
476 /* Where the internal SRAM ends (only offset) */
477 #define CFG_INIT_RAM_END        0x0F00
478
479 /*
480
481  CFG_INIT_RAM_ADDR ------> ------------ lower address
482                            |          |
483                            |  ^       |
484                            |  |       |
485                            |  | Stack |
486  CFG_GBL_DATA_OFFSET ----> ------------
487                            |          |
488                            | 64 Bytes |
489                            |          |
490  CFG_INIT_RAM_END  ------> ------------ higher address
491   (offset only)
492
493 */
494 /* size in bytes reserved for initial data */
495 #define CFG_GBL_DATA_SIZE     64
496 #define CFG_GBL_DATA_OFFSET   (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
497 /* Initial value of the stack pointern in internal SRAM */
498 #define CFG_INIT_SP_OFFSET    CFG_GBL_DATA_OFFSET
499
500 /*
501  * Internal Definitions
502  *
503  * Boot Flags
504  */
505 #define BOOTFLAG_COLD   0x01            /* Normal Power-On: Boot from FLASH     */
506 #define BOOTFLAG_WARM   0x02            /* Software reboot                      */
507
508 /* ################################################################################### */
509 /* These defines will be used in cpu/ppc4xx/cpu_init.c to setup external chip selects  */
510 /* They are currently undefined cause they are initiaized in board/solidcard3/init.S   */
511
512 /* This chip select accesses the boot device */
513 /* It depends on boot select switch if this device is 16 or 8 bit */
514
515 #undef CFG_EBC_PB0AP
516 #undef CFG_EBC_PB0CR
517
518 #undef CFG_EBC_PB1AP
519 #undef CFG_EBC_PB1CR
520
521 #undef CFG_EBC_PB2AP
522 #undef CFG_EBC_PB2CR
523
524 #undef CFG_EBC_PB3AP
525 #undef CFG_EBC_PB3CR
526
527 #undef CFG_EBC_PB4AP
528 #undef CFG_EBC_PB4CR
529
530 #undef CFG_EBC_PB5AP
531 #undef CFG_EBC_PB5CR
532
533 #undef CFG_EBC_PB6AP
534 #undef CFG_EBC_PB6CR
535
536 #undef CFG_EBC_PB7AP
537 #undef CFG_EBC_PB7CR
538
539 #define CFG_EBC_CFG    0xb84ef000
540
541 #define CONFIG_SDRAM_BANK0      /* use the standard SDRAM initialization */
542 #undef CONFIG_SPD_EEPROM
543
544 /*
545  * Define this to get more information about system configuration
546  */
547 /* #define SC3_DEBUGOUT */
548 #undef SC3_DEBUGOUT
549
550 /***********************************************************************
551  * External peripheral base address
552  ***********************************************************************/
553
554 #define CFG_ISA_MEM_BASE_ADDRESS 0x78000000
555 /*
556  Die Grafik-Treiber greifen über die Adresse in diesem Macro auf den Chip zu.
557  Das funktioniert bei deren Karten, weil sie eine PCI-Bridge benutzen, die
558  das gleiche Mapping durchführen kann, wie der SC520 (also Aufteilen von IO-Zugriffen
559  auf ISA- und PCI-Zyklen)
560  */
561 #define CFG_ISA_IO_BASE_ADDRESS  0xE8000000
562 /*#define CFG_ISA_IO_BASE_ADDRESS  0x79000000 */
563
564 /************************************************************
565  * Video support
566  ************************************************************/
567
568 #ifdef USE_VGA_GRAPHICS
569 #define CONFIG_VIDEO            /* To enable video controller support */
570 #define CONFIG_VIDEO_CT69000
571 #define CONFIG_CFB_CONSOLE
572 /* #define CONFIG_VIDEO_LOGO */
573 #define CONFIG_VGA_AS_SINGLE_DEVICE
574 #define CONFIG_VIDEO_SW_CURSOR
575 /* #define CONFIG_VIDEO_HW_CURSOR */
576 #define CONFIG_VIDEO_ONBOARD    /* Video controller is on-board */
577
578 #define VIDEO_HW_RECTFILL
579 #define VIDEO_HW_BITBLT
580
581 #endif
582
583 /************************************************************
584  * Ident
585  ************************************************************/
586 #define CONFIG_SC3_VERSION "r1.4"
587
588 #define POST_OUT(x) (*((volatile unsigned char*)(0x79000080))=x)
589
590 #endif  /* __CONFIG_H */