Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 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 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef __CONFIG_H |
| 13 | #define __CONFIG_H |
| 14 | |
| 15 | #undef USE_VGA_GRAPHICS |
| 16 | |
| 17 | /* Memory Map |
Wolfgang Denk | 6d3e010 | 2007-01-16 18:30:50 +0100 | [diff] [blame] | 18 | * 0x00000000 .... 0x03FFFFFF -> RAM (up to 128MiB) |
| 19 | * 0x74000000 .... 0x740FFFFF -> CS#6 |
| 20 | * 0x74100000 .... 0x741FFFFF -> CS#7 |
| 21 | * 0x74200000 .... 0x742FFFFF -> CS4# if no internal USB |
| 22 | * 0x74300000 .... 0x743FFFFF -> CS5# if no boosted IDE |
| 23 | * 0x77C00000 .... 0x77CFFFFF -> CS4# USB HC (1 MiB) |
| 24 | * 0x77D00000 .... 0x77DFFFFF -> CS1# NAND-Flash (1 MiB) |
| 25 | * 0x78000000 .... 0x78FFFFFF -> CS2# ISA-Bus Speicherzugriff (16 MiB) |
| 26 | * 0x79000000 .... 0x7900FFFF -> CS2# ISA-Bus IO-Zugriff (16 MiB, mapped: 64kiB) |
| 27 | * 0x79010000 .... 0x79FFFFFF -> CS2# ISA-Bus IO-Zugriff (mirrored) |
| 28 | * 0x7A000000 .... 0x7A0FFFFF -> CS5# IDE emulation (1MiB) |
| 29 | * |
| 30 | * 0x80000000 .... 0x9FFFFFFF -> PCI-Bus Speicherzugriff (512MiB, mapped: 1:1) |
| 31 | * 0xA0000000 .... 0xBFFFFFFF -> PCI-Bus Speicherzugriff (512MiB, mapped: 0x00000000...0x1FFFFFFF) |
| 32 | * 0xE8000000 .... 0xE800FFFF -> PCI-Bus IO-Zugriff (64kiB, translated to PCI: 0x0000...0xFFFF) |
| 33 | * 0xE8800000 .... 0xEBFFFFFF -> PCI-Bus IO-Zugriff (56MiB, translated to PCI: 0x00800000...0x3FFFFFF) |
| 34 | * 0xEED00000 .... 0xEED00003 -> PCI-Bus |
| 35 | * 0xEF400000 .... 0xEF40003F -> PCI-Bus Local Configuration Registers |
| 36 | * 0xEF40003F .... 0xEF5FFFFF -> reserved |
| 37 | * 0xEF600000 .... 0xEFFFFFFF -> 405GP internal Devices (10 MiB) |
| 38 | * 0xF0000000 .... 0xF01FFFFF -> Flash-ROM (2 MiB) |
| 39 | * 0xF0200000 .... 0xF7FFFFFF -> free for flash devices |
| 40 | * 0xF8000000 .... 0xF8000FFF -> OnChipMemory (4kiB) |
| 41 | * 0xF8001000 .... 0xFFDFFFFF -> free for flash devices |
| 42 | * 0xFFE00000 .... 0xFFFFFFFF -> BOOT-ROM (2 MiB) |
| 43 | */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 44 | |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 45 | #define CONFIG_SC3 1 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 46 | #define CONFIG_4xx 1 |
| 47 | #define CONFIG_405GP 1 |
| 48 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_TEXT_BASE 0xFFFA0000 |
| 50 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 51 | #define CONFIG_BOARD_EARLY_INIT_F 1 |
Peter Tyser | 3a8f28d | 2009-09-16 22:03:07 -0500 | [diff] [blame] | 52 | #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r() */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 53 | |
| 54 | /* |
Wolfgang Denk | 6d3e010 | 2007-01-16 18:30:50 +0100 | [diff] [blame] | 55 | * Define IDE_USES_ISA_EMULATION for slower IDE access in the ISA-IO address range |
| 56 | * If undefined, IDE access uses a seperat emulation with higher access speed. |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 57 | * Consider to inform your Linux IDE driver about the different addresses! |
Jon Loeliger | 639221c | 2007-07-09 17:15:49 -0500 | [diff] [blame] | 58 | * IDE_USES_ISA_EMULATION is only used if you define CONFIG_CMD_IDE! |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 59 | */ |
| 60 | #define IDE_USES_ISA_EMULATION |
| 61 | |
| 62 | /*----------------------------------------------------------------------- |
| 63 | * Serial Port |
| 64 | *----------------------------------------------------------------------*/ |
Stefan Roese | 550650d | 2010-09-20 16:05:31 +0200 | [diff] [blame] | 65 | #define CONFIG_CONS_INDEX 1 /* Use UART0 */ |
| 66 | #define CONFIG_SYS_NS16550 |
| 67 | #define CONFIG_SYS_NS16550_SERIAL |
| 68 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 69 | #define CONFIG_SYS_NS16550_CLK get_serial_clock() |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | * define CONFIG_SYS_CLK_FREQ to your base crystal clock in Hz |
| 73 | */ |
| 74 | #define CONFIG_SYS_CLK_FREQ 33333333 |
| 75 | |
| 76 | /* |
| 77 | * define CONFIG_BAUDRATE to the baudrate value you want to use as default |
| 78 | */ |
| 79 | #define CONFIG_BAUDRATE 115200 |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 80 | #define CONFIG_BOOTDELAY 3 /* autoboot after 3 seconds */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 81 | |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 82 | #define CONFIG_PREBOOT "echo;" \ |
Wolfgang Denk | 32bf3d1 | 2008-03-03 12:16:44 +0100 | [diff] [blame] | 83 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 84 | "echo" |
| 85 | |
| 86 | #undef CONFIG_BOOTARGS |
| 87 | |
| 88 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 89 | "netdev=eth0\0" \ |
| 90 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
| 91 | "nfsroot=${serverip}:${rootpath}\0" \ |
| 92 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 93 | "nand_args=setenv bootargs root=/dev/mtdblock5 rw" \ |
| 94 | "rootfstype=jffs2\0" \ |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 95 | "addip=setenv bootargs ${bootargs} " \ |
| 96 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ |
| 97 | ":${hostname}:${netdev}:off panic=1\0" \ |
Wolfgang Denk | a7090b9 | 2007-03-13 16:05:55 +0100 | [diff] [blame] | 98 | "addcons=setenv bootargs ${bootargs} " \ |
| 99 | "console=ttyS0,${baudrate}\0" \ |
| 100 | "flash_nfs=run nfsargs addip addcons;" \ |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 101 | "bootm ${kernel_addr}\0" \ |
Wolfgang Denk | a7090b9 | 2007-03-13 16:05:55 +0100 | [diff] [blame] | 102 | "flash_nand=run nand_args addip addcons;bootm ${kernel_addr}\0" \ |
| 103 | "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addcons;" \ |
| 104 | "bootm\0" \ |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 105 | "rootpath=/opt/eldk/ppc_4xx\0" \ |
| 106 | "bootfile=/tftpboot/sc3/uImage\0" \ |
Heiko Schocher | d0b6e14 | 2007-01-19 18:05:26 +0100 | [diff] [blame] | 107 | "u-boot=/tftpboot/sc3/u-boot.bin\0" \ |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 108 | "setup=tftp 200000 /tftpboot/sc3/setup.img;source 200000\0" \ |
Wolfgang Denk | 1bbbbdd | 2007-01-16 12:46:35 +0100 | [diff] [blame] | 109 | "kernel_addr=FFE08000\0" \ |
| 110 | "" |
| 111 | #undef CONFIG_BOOTCOMMAND |
| 112 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 113 | #define CONFIG_SILENT_CONSOLE 1 /* enable silent startup */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | #define CONFIG_SYS_DEVICE_NULLDEV 1 /* include nulldev device */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 115 | |
| 116 | #if 1 /* feel free to disable for development */ |
| 117 | #define CONFIG_AUTOBOOT_KEYED /* Enable password protection */ |
Wolfgang Denk | c37207d | 2008-07-16 16:38:59 +0200 | [diff] [blame] | 118 | #define CONFIG_AUTOBOOT_PROMPT \ |
| 119 | "\nSC3 - booting... stop with ENTER\n" |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 120 | #define CONFIG_AUTOBOOT_DELAY_STR "\r" /* 1st "password" */ |
| 121 | #define CONFIG_AUTOBOOT_DELAY_STR2 "\n" /* 1st "password" */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 122 | #endif |
| 123 | |
| 124 | /* |
| 125 | * define CONFIG_BOOTCOMMAND to the autoboot commands. They will running after |
| 126 | * the CONFIG_BOOTDELAY delay to boot your machine |
| 127 | */ |
| 128 | #define CONFIG_BOOTCOMMAND "bootp;dcache on;bootm" |
| 129 | |
| 130 | /* |
| 131 | * define CONFIG_BOOTARGS to the default kernel parameters. They will used if you don't |
| 132 | * set different values at the u-boot prompt |
| 133 | */ |
| 134 | #ifdef USE_VGA_GRAPHICS |
| 135 | #define CONFIG_BOOTARGS "root=/dev/nfs rw ip=bootp nfsroot=/tftpboot/solidcard3re" |
| 136 | #else |
| 137 | #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/nfs rw ip=bootp" |
| 138 | #endif |
| 139 | /* |
| 140 | * Is the USB host controller assembled? If yes define CONFIG_ISP1161_PRESENT |
| 141 | * This reserves memory bank #4 for this purpose |
| 142 | */ |
| 143 | #undef CONFIG_ISP1161_PRESENT |
| 144 | |
| 145 | #undef CONFIG_LOADS_ECHO /* no echo on for serial download */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 146 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 147 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 148 | /* #define CONFIG_EEPRO100_SROM_WRITE */ |
| 149 | /* #define CONFIG_SHOW_MAC */ |
| 150 | #define CONFIG_EEPRO100 |
Ben Warren | 96e21f8 | 2008-10-27 23:50:15 -0700 | [diff] [blame] | 151 | |
| 152 | #define CONFIG_PPC4xx_EMAC |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 153 | #define CONFIG_MII 1 /* add 405GP MII PHY management */ |
| 154 | #define CONFIG_PHY_ADDR 1 /* the connected Phy defaults to address 1 */ |
| 155 | |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 156 | /* |
Jon Loeliger | 079a136 | 2007-07-10 10:12:10 -0500 | [diff] [blame] | 157 | * BOOTP options |
| 158 | */ |
| 159 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 160 | #define CONFIG_BOOTP_BOOTPATH |
| 161 | #define CONFIG_BOOTP_GATEWAY |
| 162 | #define CONFIG_BOOTP_HOSTNAME |
| 163 | |
| 164 | |
| 165 | /* |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 166 | * Command line configuration. |
| 167 | */ |
| 168 | #include <config_cmd_default.h> |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 169 | |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 170 | |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 171 | #define CONFIG_CMD_CACHE |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 172 | #define CONFIG_CMD_DATE |
| 173 | #define CONFIG_CMD_DHCP |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 174 | #define CONFIG_CMD_ELF |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 175 | #define CONFIG_CMD_I2C |
| 176 | #define CONFIG_CMD_IDE |
| 177 | #define CONFIG_CMD_IRQ |
| 178 | #define CONFIG_CMD_JFFS2 |
| 179 | #define CONFIG_CMD_MII |
| 180 | #define CONFIG_CMD_NAND |
| 181 | #define CONFIG_CMD_NET |
| 182 | #define CONFIG_CMD_PCI |
| 183 | #define CONFIG_CMD_PING |
| 184 | #define CONFIG_CMD_SOURCE |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 185 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 186 | |
| 187 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
| 188 | |
| 189 | /* |
| 190 | * Miscellaneous configurable options |
| 191 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 192 | #define CONFIG_SYS_LONGHELP 1 /* undef to save memory */ |
| 193 | #define CONFIG_SYS_PROMPT "SC3> " /* Monitor Command Prompt */ |
| 194 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 195 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 196 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 197 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 198 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 199 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 200 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 201 | #define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */ |
| 202 | #define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 203 | |
| 204 | /* |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 205 | * If CONFIG_SYS_EXT_SERIAL_CLOCK, then the UART divisor is 1. |
| 206 | * If CONFIG_SYS_405_UART_ERRATA_59, then UART divisor is 31. |
| 207 | * Otherwise, UART divisor is determined by CPU Clock and CONFIG_SYS_BASE_BAUD value. |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 208 | * The Linux BASE_BAUD define should match this configuration. |
| 209 | * baseBaud = cpuClock/(uartDivisor*16) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 210 | * If CONFIG_SYS_405_UART_ERRATA_59 and 200MHz CPU clock, |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 211 | * set Linux BASE_BAUD to 403200. |
| 212 | * |
| 213 | * Consider the OPB clock! If it get lower the BASE_BAUD must be lower to |
| 214 | * (see 405GP datasheet for descritpion) |
| 215 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 216 | #undef CONFIG_SYS_EXT_SERIAL_CLOCK /* external serial clock */ |
| 217 | #undef CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */ |
| 218 | #define CONFIG_SYS_BASE_BAUD 921600 /* internal clock */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 219 | |
| 220 | /* The following table includes the supported baudrates */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 221 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 222 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400} |
| 223 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 224 | #define CONFIG_SYS_LOAD_ADDR 0x1000000 /* default load address */ |
| 225 | #define CONFIG_SYS_EXTBDINFO 1 /* To use extended board_into (bd_t) */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 226 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 227 | /*----------------------------------------------------------------------- |
| 228 | * IIC stuff |
| 229 | *----------------------------------------------------------------------- |
| 230 | */ |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 231 | #define CONFIG_SYS_I2C |
| 232 | #define CONFIG_SYS_I2C_PPC4XX |
| 233 | #define CONFIG_SYS_I2C_PPC4XX_CH0 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 234 | |
| 235 | #define I2C_INIT |
| 236 | #define I2C_ACTIVE 0 |
| 237 | #define I2C_TRISTATE 0 |
| 238 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 239 | #define CONFIG_SYS_I2C_PPC4XX_SPEED_0 100000 |
| 240 | #define CONFIG_SYS_I2C_PPC4XX_SLAVE_0 0x7F /* mask valid bits */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 241 | |
| 242 | #define CONFIG_RTC_DS1337 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 243 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 244 | |
| 245 | /*----------------------------------------------------------------------- |
| 246 | * PCI stuff |
| 247 | *----------------------------------------------------------------------- |
| 248 | */ |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 249 | #define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */ |
| 250 | #define PCI_HOST_FORCE 1 /* configure as pci host */ |
| 251 | #define PCI_HOST_AUTO 2 /* detected via arbiter enable */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 252 | |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 253 | #define CONFIG_PCI /* include pci support */ |
Gabor Juhos | 842033e | 2013-05-30 07:06:12 +0000 | [diff] [blame] | 254 | #define CONFIG_PCI_INDIRECT_BRIDGE /* indirect PCI bridge support */ |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 255 | #define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */ |
| 256 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
| 257 | /* resource configuration */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 258 | |
| 259 | /* If you want to see, whats connected to your PCI bus */ |
| 260 | /* #define CONFIG_PCI_SCAN_SHOW */ |
| 261 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 262 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x0000 /* PCI Vendor ID: to-do!!! */ |
| 263 | #define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0x0000 /* PCI Device ID: to-do!!! */ |
| 264 | #define CONFIG_SYS_PCI_PTM1LA 0x00000000 /* point to sdram */ |
| 265 | #define CONFIG_SYS_PCI_PTM1MS 0x80000001 /* 2GB, enable hard-wired to 1 */ |
| 266 | #define CONFIG_SYS_PCI_PTM1PCI 0x00000000 /* Host: use this pci address */ |
| 267 | #define CONFIG_SYS_PCI_PTM2LA 0x00000000 /* disabled */ |
| 268 | #define CONFIG_SYS_PCI_PTM2MS 0x00000000 /* disabled */ |
| 269 | #define CONFIG_SYS_PCI_PTM2PCI 0x04000000 /* Host: use this pci address */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 270 | |
| 271 | /*----------------------------------------------------------------------- |
| 272 | * External peripheral base address |
| 273 | *----------------------------------------------------------------------- |
| 274 | */ |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 275 | #if !defined(CONFIG_CMD_IDE) |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 276 | |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 277 | #undef CONFIG_IDE_LED /* no led for ide supported */ |
| 278 | #undef CONFIG_IDE_RESET /* no reset for ide supported */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 279 | |
| 280 | /*----------------------------------------------------------------------- |
| 281 | * IDE/ATA stuff |
| 282 | *----------------------------------------------------------------------- |
| 283 | */ |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 284 | #else |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 285 | #define CONFIG_START_IDE 1 /* check, if use IDE */ |
| 286 | |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 287 | #undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */ |
| 288 | #undef CONFIG_IDE_LED /* no led for ide supported */ |
| 289 | #undef CONFIG_IDE_RESET /* no reset for ide supported */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 290 | |
| 291 | #define CONFIG_ATAPI |
| 292 | #define CONFIG_DOS_PARTITION |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 293 | #define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS*1) /* max. 1 drives per IDE bus */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 294 | |
| 295 | #ifndef IDE_USES_ISA_EMULATION |
| 296 | |
| 297 | /* New and faster access */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 298 | #define CONFIG_SYS_ATA_BASE_ADDR 0x7A000000 /* start of ISA IO emulation */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 299 | |
| 300 | /* How many IDE busses are available */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 301 | #define CONFIG_SYS_IDE_MAXBUS 1 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 302 | |
| 303 | /* What IDE ports are available */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 304 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x000 /* first is available */ |
| 305 | #undef CONFIG_SYS_ATA_IDE1_OFFSET /* second not available */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 306 | |
| 307 | /* access to the data port is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 308 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_DATA_OFFSET + 0 */ |
| 309 | #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 310 | |
| 311 | /* access to the registers is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_REG_OFFSET + [1..7] */ |
| 313 | #define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 314 | |
| 315 | /* access to the alternate register is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 316 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_ALT_OFFSET + 6 */ |
| 317 | #define CONFIG_SYS_ATA_ALT_OFFSET 0x008 /* Offset for alternate registers */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 318 | |
| 319 | #else /* IDE_USES_ISA_EMULATION */ |
| 320 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 321 | #define CONFIG_SYS_ATA_BASE_ADDR 0x79000000 /* start of ISA IO emulation */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 322 | |
| 323 | /* How many IDE busses are available */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 324 | #define CONFIG_SYS_IDE_MAXBUS 1 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 325 | |
| 326 | /* What IDE ports are available */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 327 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x01F0 /* first is available */ |
| 328 | #undef CONFIG_SYS_ATA_IDE1_OFFSET /* second not available */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 329 | |
| 330 | /* access to the data port is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 331 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_DATA_OFFSET + 0 */ |
| 332 | #define CONFIG_SYS_ATA_DATA_OFFSET 0x0000 /* Offset for data I/O */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 333 | |
| 334 | /* access to the registers is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 335 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_REG_OFFSET + [1..7] */ |
| 336 | #define CONFIG_SYS_ATA_REG_OFFSET 0x0000 /* Offset for normal register accesses */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 337 | |
| 338 | /* access to the alternate register is calculated: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 339 | CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET + CONFIG_SYS_ATA_ALT_OFFSET + 6 */ |
| 340 | #define CONFIG_SYS_ATA_ALT_OFFSET 0x03F0 /* Offset for alternate registers */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 341 | |
| 342 | #endif /* IDE_USES_ISA_EMULATION */ |
| 343 | |
Jon Loeliger | 46da1e9 | 2007-07-04 22:33:30 -0500 | [diff] [blame] | 344 | #endif |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 345 | |
| 346 | /* |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 347 | #define CONFIG_SYS_KEY_REG_BASE_ADDR 0xF0100000 |
| 348 | #define CONFIG_SYS_IR_REG_BASE_ADDR 0xF0200000 |
| 349 | #define CONFIG_SYS_FPGA_REG_BASE_ADDR 0xF0300000 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 350 | */ |
| 351 | |
| 352 | /*----------------------------------------------------------------------- |
| 353 | * Start addresses for the final memory configuration |
| 354 | * (Set up by the startup code) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 355 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 356 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 357 | * CONFIG_SYS_FLASH_BASE -> start address of internal flash |
| 358 | * CONFIG_SYS_MONITOR_BASE -> start of u-boot |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 359 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 360 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
| 361 | #define CONFIG_SYS_FLASH_BASE 0xFFE00000 |
Heiko Schocher | 5bea7e6 | 2010-07-27 07:07:24 +0200 | [diff] [blame] | 362 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 363 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* Start of U-Boot */ |
Heiko Schocher | 5bea7e6 | 2010-07-27 07:07:24 +0200 | [diff] [blame] | 364 | #define CONFIG_SYS_MONITOR_LEN (0xFFFFFFFF - CONFIG_SYS_MONITOR_BASE + 1) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 365 | #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 KiB for malloc() */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 366 | |
| 367 | /* |
| 368 | * For booting Linux, the board info and command line data |
| 369 | * have to be in the first 8 MiB of memory, since this is |
| 370 | * the maximum mapped by the Linux kernel during initialization. |
| 371 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 372 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 373 | /*----------------------------------------------------------------------- |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 374 | * FLASH organization ## FIXME: lookup in datasheet |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 375 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 376 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */ |
| 377 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sectors on one chip */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 378 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 379 | #define CONFIG_SYS_FLASH_CFI /* flash is CFI compat. */ |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 380 | #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 381 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector */ |
| 382 | #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/ |
| 383 | #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |
| 384 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
| 385 | #define CONFIG_SYS_WRITE_SWAPPED_DATA /* swap Databytes between reading/writing */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 386 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 387 | #define CONFIG_ENV_IS_IN_FLASH 1 |
| 388 | #ifdef CONFIG_ENV_IS_IN_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 389 | #define CONFIG_ENV_OFFSET 0x00000000 /* Offset of Environment Sector in bottom type */ |
| 390 | #define CONFIG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */ |
| 391 | #define CONFIG_ENV_SECT_SIZE 0x4000 /* see README - env sector total size */ |
Wolfgang Denk | 6d3e010 | 2007-01-16 18:30:50 +0100 | [diff] [blame] | 392 | |
| 393 | /* Address and size of Redundant Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 394 | #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SIZE) |
| 395 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
Wolfgang Denk | 6d3e010 | 2007-01-16 18:30:50 +0100 | [diff] [blame] | 396 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 397 | #endif |
| 398 | /* let us changing anything in our environment */ |
| 399 | #define CONFIG_ENV_OVERWRITE |
| 400 | |
| 401 | /* |
| 402 | * NAND-FLASH stuff |
| 403 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 405 | #define CONFIG_SYS_NAND_BASE 0x77D00000 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 406 | |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 407 | #define CONFIG_JFFS2_NAND 1 /* jffs2 on nand support */ |
| 408 | |
Wolfgang Denk | 51056dd | 2007-04-11 17:22:55 +0200 | [diff] [blame] | 409 | /* No command line, one static partition */ |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 410 | #undef CONFIG_CMD_MTDPARTS |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 411 | #define CONFIG_JFFS2_DEV "nand0" |
Wolfgang Denk | 51056dd | 2007-04-11 17:22:55 +0200 | [diff] [blame] | 412 | #define CONFIG_JFFS2_PART_SIZE 0x01000000 |
| 413 | #define CONFIG_JFFS2_PART_OFFSET 0x00000000 |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 414 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 415 | /* |
| 416 | * Init Memory Controller: |
| 417 | * |
| 418 | */ |
| 419 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 420 | #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 421 | #define FLASH_BASE1_PRELIM 0 |
| 422 | |
| 423 | /*----------------------------------------------------------------------- |
| 424 | * Some informations about the internal SRAM (OCM=On Chip Memory) |
| 425 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 426 | * CONFIG_SYS_OCM_DATA_ADDR -> location |
| 427 | * CONFIG_SYS_OCM_DATA_SIZE -> size |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 428 | */ |
| 429 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 430 | #define CONFIG_SYS_TEMP_STACK_OCM 1 |
| 431 | #define CONFIG_SYS_OCM_DATA_ADDR 0xF8000000 |
| 432 | #define CONFIG_SYS_OCM_DATA_SIZE 0x1000 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 433 | |
| 434 | /*----------------------------------------------------------------------- |
| 435 | * Definitions for initial stack pointer and data area (in DPRAM): |
| 436 | * - we are using the internal 4k SRAM, so we don't need data cache mapping |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 437 | * - internal SRAM (OCM=On Chip Memory) is placed to CONFIG_SYS_OCM_DATA_ADDR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 438 | * - Stackpointer will be located to |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 439 | * (CONFIG_SYS_INIT_RAM_ADDR&0xFFFF0000) | (CONFIG_SYS_INIT_SP_OFFSET&0x0000FFFF) |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 440 | * in arch/powerpc/cpu/ppc4xx/start.S |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 441 | */ |
| 442 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 443 | #undef CONFIG_SYS_INIT_DCACHE_CS |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 444 | /* Where the internal SRAM starts */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 445 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 446 | /* Where the internal SRAM ends (only offset) */ |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 447 | #define CONFIG_SYS_INIT_RAM_SIZE 0x0F00 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 448 | |
| 449 | /* |
| 450 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 451 | CONFIG_SYS_INIT_RAM_ADDR ------> ------------ lower address |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 452 | | | |
| 453 | | ^ | |
| 454 | | | | |
| 455 | | | Stack | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 456 | CONFIG_SYS_GBL_DATA_OFFSET ----> ------------ |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 457 | | | |
| 458 | | 64 Bytes | |
| 459 | | | |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 460 | CONFIG_SYS_INIT_RAM_SIZE ------> ------------ higher address |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 461 | (offset only) |
| 462 | |
| 463 | */ |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 464 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 465 | /* Initial value of the stack pointern in internal SRAM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 466 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 467 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 468 | /* ################################################################################### */ |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 469 | /* These defines will be used in arch/powerpc/cpu/ppc4xx/cpu_init.c to setup external chip selects */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 470 | /* They are currently undefined cause they are initiaized in board/solidcard3/init.S */ |
| 471 | |
| 472 | /* This chip select accesses the boot device */ |
| 473 | /* It depends on boot select switch if this device is 16 or 8 bit */ |
| 474 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 475 | #undef CONFIG_SYS_EBC_PB0AP |
| 476 | #undef CONFIG_SYS_EBC_PB0CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 477 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 478 | #undef CONFIG_SYS_EBC_PB1AP |
| 479 | #undef CONFIG_SYS_EBC_PB1CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 480 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 481 | #undef CONFIG_SYS_EBC_PB2AP |
| 482 | #undef CONFIG_SYS_EBC_PB2CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 483 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 484 | #undef CONFIG_SYS_EBC_PB3AP |
| 485 | #undef CONFIG_SYS_EBC_PB3CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 486 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 487 | #undef CONFIG_SYS_EBC_PB4AP |
| 488 | #undef CONFIG_SYS_EBC_PB4CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 489 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 490 | #undef CONFIG_SYS_EBC_PB5AP |
| 491 | #undef CONFIG_SYS_EBC_PB5CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 492 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 493 | #undef CONFIG_SYS_EBC_PB6AP |
| 494 | #undef CONFIG_SYS_EBC_PB6CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 495 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 496 | #undef CONFIG_SYS_EBC_PB7AP |
| 497 | #undef CONFIG_SYS_EBC_PB7CR |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 498 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 499 | #define CONFIG_SYS_EBC_CFG 0xb84ef000 |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 500 | |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 501 | #undef CONFIG_SDRAM_BANK0 /* use private SDRAM initialization */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 502 | #undef CONFIG_SPD_EEPROM |
| 503 | |
| 504 | /* |
| 505 | * Define this to get more information about system configuration |
| 506 | */ |
| 507 | /* #define SC3_DEBUGOUT */ |
| 508 | #undef SC3_DEBUGOUT |
| 509 | |
| 510 | /*********************************************************************** |
| 511 | * External peripheral base address |
| 512 | ***********************************************************************/ |
| 513 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 514 | #define CONFIG_SYS_ISA_MEM_BASE_ADDRESS 0x78000000 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 515 | /* |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 516 | Die Grafik-Treiber greifen über die Adresse in diesem Macro auf den Chip zu. |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 517 | Das funktioniert bei deren Karten, weil sie eine PCI-Bridge benutzen, die |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 518 | das gleiche Mapping durchführen kann, wie der SC520 (also Aufteilen von IO-Zugriffen |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 519 | auf ISA- und PCI-Zyklen) |
| 520 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 521 | #define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0xE8000000 |
| 522 | /*#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0x79000000 */ |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 523 | |
| 524 | /************************************************************ |
| 525 | * Video support |
| 526 | ************************************************************/ |
| 527 | |
| 528 | #ifdef USE_VGA_GRAPHICS |
| 529 | #define CONFIG_VIDEO /* To enable video controller support */ |
| 530 | #define CONFIG_VIDEO_CT69000 |
| 531 | #define CONFIG_CFB_CONSOLE |
| 532 | /* #define CONFIG_VIDEO_LOGO */ |
| 533 | #define CONFIG_VGA_AS_SINGLE_DEVICE |
| 534 | #define CONFIG_VIDEO_SW_CURSOR |
| 535 | /* #define CONFIG_VIDEO_HW_CURSOR */ |
| 536 | #define CONFIG_VIDEO_ONBOARD /* Video controller is on-board */ |
| 537 | |
| 538 | #define VIDEO_HW_RECTFILL |
| 539 | #define VIDEO_HW_BITBLT |
| 540 | |
| 541 | #endif |
| 542 | |
| 543 | /************************************************************ |
| 544 | * Ident |
| 545 | ************************************************************/ |
| 546 | #define CONFIG_SC3_VERSION "r1.4" |
| 547 | |
| 548 | #define POST_OUT(x) (*((volatile unsigned char*)(0x79000080))=x) |
| 549 | |
| 550 | #endif /* __CONFIG_H */ |