wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * Elmeg Communications Systems GmbH, Juergen Selent (j.selent@elmeg.de) |
| 4 | * |
| 5 | * Support for the Elmeg VoVPN Gateway Module |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #ifndef __CONFIG_H |
| 24 | #define __CONFIG_H |
| 25 | |
| 26 | /* define cpu used */ |
| 27 | #define CONFIG_MPC8272 1 |
| 28 | |
| 29 | /* define busmode: 8260 */ |
| 30 | #undef CONFIG_BUSMODE_60x |
| 31 | |
| 32 | /* system clock rate (CLKIN) - equal to the 60x and local bus speed */ |
| 33 | #ifdef CONFIG_CLKIN_66MHz |
| 34 | #define CONFIG_8260_CLKIN 66666666 /* in Hz */ |
| 35 | #else |
| 36 | #define CONFIG_8260_CLKIN 100000000 /* in Hz */ |
| 37 | #endif |
| 38 | |
| 39 | /* call board_early_init_f */ |
| 40 | #define CONFIG_BOARD_EARLY_INIT_F 1 |
| 41 | |
| 42 | /* have misc_init_r() function */ |
| 43 | #define CONFIG_MISC_INIT_R 1 |
| 44 | |
| 45 | /* have reset_phy_r() function */ |
| 46 | #define CONFIG_RESET_PHY_R 1 |
| 47 | |
| 48 | /* have special reset function */ |
| 49 | #define CONFIG_HAVE_OWN_RESET 1 |
| 50 | |
| 51 | /* allow serial and ethaddr to be overwritten */ |
| 52 | #define CONFIG_ENV_OVERWRITE |
| 53 | |
| 54 | /* watchdog disabled */ |
| 55 | #undef CONFIG_WATCHDOG |
| 56 | |
| 57 | /* include support for bzip2 compressed images */ |
| 58 | #undef CONFIG_BZIP2 |
| 59 | |
| 60 | /* status led */ |
| 61 | #undef CONFIG_STATUS_LED /* XXX jse */ |
| 62 | |
| 63 | /* vendor parameter protection */ |
| 64 | #define CONFIG_ENV_OVERWRITE |
| 65 | |
| 66 | /* |
| 67 | * select serial console configuration |
| 68 | * |
| 69 | * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then |
| 70 | * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4 |
| 71 | * for SCC). |
| 72 | */ |
| 73 | #define CONFIG_CONS_ON_SMC |
| 74 | #undef CONFIG_CONS_ON_SCC |
| 75 | #undef CONFIG_CONS_NONE |
| 76 | #define CONFIG_CONS_INDEX 1 |
| 77 | |
| 78 | /* serial port default baudrate */ |
| 79 | #define CONFIG_BAUDRATE 115200 |
| 80 | |
| 81 | /* echo on for serial download */ |
| 82 | #define CONFIG_LOADS_ECHO 1 |
| 83 | |
| 84 | /* don't allow baudrate change */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 85 | #undef CONFIG_SYS_LOADS_BAUD_CHANGE |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 86 | |
| 87 | /* supported baudrates */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * select ethernet configuration |
| 92 | * |
| 93 | * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then |
| 94 | * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3 |
| 95 | * for FCC) |
| 96 | * |
| 97 | * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be |
Jon Loeliger | 639221c | 2007-07-09 17:15:49 -0500 | [diff] [blame] | 98 | * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset. |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 99 | */ |
| 100 | #undef CONFIG_ETHER_ON_SCC |
| 101 | #define CONFIG_ETHER_ON_FCC |
| 102 | #undef CONFIG_ETHER_NONE |
| 103 | |
| 104 | #ifdef CONFIG_ETHER_ON_FCC |
| 105 | |
| 106 | /* which SCC/FCC channel for ethernet */ |
| 107 | #define CONFIG_ETHER_INDEX 1 |
| 108 | |
| 109 | /* Marvell Switch SMI base addr */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 110 | #define CONFIG_SYS_PHY_ADDR 0x10 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 111 | |
| 112 | /* FCC1 RMII REFCLK is CLK10 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | #define CONFIG_SYS_CMXFCR_VALUE CMXFCR_TF1CS_CLK10 |
| 114 | #define CONFIG_SYS_CMXFCR_MASK (CMXFCR_FC1|CMXFCR_TF1CS_MSK) |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 115 | |
| 116 | /* BDs and buffers on 60x bus */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 118 | |
| 119 | /* Local Protect, Full duplex, Flowcontrol, RMII */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_LPB|FCC_PSMR_FDE|\ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 121 | FCC_PSMR_FCE|FCC_PSMR_RMII) |
| 122 | |
| 123 | /* bit-bang MII PHY management */ |
| 124 | #define CONFIG_BITBANGMII |
| 125 | |
| 126 | #define MDIO_PORT 1 /* Port B */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | #define CONFIG_SYS_MDIO_PIN 0x00002000 /* PB18 */ |
| 128 | #define CONFIG_SYS_MDC_PIN 0x00001000 /* PB19 */ |
| 129 | #define MDIO_ACTIVE (iop->pdir |= CONFIG_SYS_MDIO_PIN) |
| 130 | #define MDIO_TRISTATE (iop->pdir &= ~CONFIG_SYS_MDIO_PIN) |
| 131 | #define MDIO_READ ((iop->pdat & CONFIG_SYS_MDIO_PIN) != 0) |
| 132 | #define MDIO(bit) if(bit) iop->pdat |= CONFIG_SYS_MDIO_PIN; \ |
| 133 | else iop->pdat &= ~CONFIG_SYS_MDIO_PIN |
| 134 | #define MDC(bit) if(bit) iop->pdat |= CONFIG_SYS_MDC_PIN; \ |
| 135 | else iop->pdat &= ~CONFIG_SYS_MDC_PIN |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 136 | #define MIIDELAY udelay(1) |
| 137 | |
| 138 | #endif |
| 139 | |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 140 | /* |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 141 | * BOOTP options |
| 142 | */ |
| 143 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 144 | #define CONFIG_BOOTP_BOOTPATH |
| 145 | #define CONFIG_BOOTP_GATEWAY |
| 146 | #define CONFIG_BOOTP_HOSTNAME |
| 147 | |
| 148 | |
| 149 | /* |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 150 | * Command line configuration. |
| 151 | */ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 152 | |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 153 | #define CONFIG_CMD_AUTOSCRIPT |
| 154 | #define CONFIG_CMD_BDI |
| 155 | #define CONFIG_CMD_CONSOLE |
| 156 | #define CONFIG_CMD_ECHO |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 157 | #define CONFIG_CMD_SAVEENV |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 158 | #define CONFIG_CMD_FLASH |
| 159 | #define CONFIG_CMD_IMI |
| 160 | #define CONFIG_CMD_IMLS |
| 161 | #define CONFIG_CMD_LOADB |
| 162 | #define CONFIG_CMD_MEMORY |
| 163 | #define CONFIG_CMD_MISC |
| 164 | #define CONFIG_CMD_NET |
| 165 | #define CONFIG_CMD_PING |
| 166 | #define CONFIG_CMD_RUN |
| 167 | |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * boot options & environment |
| 171 | */ |
| 172 | #define CONFIG_BOOTDELAY 3 |
| 173 | #define CONFIG_BOOTCOMMAND "run flash_self" |
| 174 | #undef CONFIG_BOOTARGS |
| 175 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 176 | "clean_nv=erase fff20000 ffffffff\0" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 177 | "update_boss=tftp 100000 PPC/logic157.bin; protect off fff00000 ffffffff; erase fff00000 ffffffff; cp.b 100000 fff00000 ${filesize}; tftp 100000 PPC/bootmon157.bin; cp.b 100000 fff20000 ${filesize}\0" \ |
| 178 | "update_lx=tftp 100000 ${kernel}; erase ${kernel_addr} ffefffff; cp.b 100000 ${kernel_addr} ${filesize}\0" \ |
| 179 | "update_fs=tftp 100000 ${fs}.${fstype}; erase ff840000 ffdfffff; cp.b 100000 ff840000 ${filesize}\0" \ |
| 180 | "update_ub=tftp 100000 ${uboot}; protect off fff00000 fff1ffff; erase fff00000 fff1ffff; cp.b 100000 fff00000 ${filesize}; protect off ff820000 ff83ffff; erase ff820000 ff83ffff\0" \ |
| 181 | "flashargs=setenv bootargs root=${rootdev} rw rootfstype=${fstype}\0" \ |
| 182 | "nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath}\0" \ |
| 183 | "addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev}:off\0" \ |
| 184 | "addmisc=setenv bootargs ${bootargs} console=${console},${baudrate} ethaddr=${ethaddr} panic=1\0" \ |
| 185 | "net_nfs=tftpboot 400000 ${kernel}; run nfsargs addip addmisc; bootm\0" \ |
| 186 | "net_self=tftpboot 400000 ${kernel}; run flashargs addmisc; bootm\0" \ |
| 187 | "flash_self=run flashargs addmisc; bootm ${kernel_addr}\0" \ |
| 188 | "flash_nfs=run nfsargs addip addmisc; bootm ${kernel_addr}\0" \ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 189 | "fstype=cramfs\0" \ |
| 190 | "rootpath=/root_fs\0" \ |
| 191 | "uboot=PPC/u-boot.bin\0" \ |
| 192 | "kernel=PPC/uImage\0" \ |
| 193 | "kernel_addr=ffe00000\0" \ |
| 194 | "fs=PPC/root_fs\0" \ |
| 195 | "console=ttyS0\0" \ |
| 196 | "netdev=eth0\0" \ |
| 197 | "rootdev=31:3\0" \ |
| 198 | "ethaddr=00:09:4f:01:02:03\0" \ |
| 199 | "ipaddr=10.0.0.201\0" \ |
| 200 | "netmask=255.255.255.0\0" \ |
| 201 | "serverip=10.0.0.136\0" \ |
| 202 | "gatewayip=10.0.0.10\0" \ |
| 203 | "hostname=bastard\0" \ |
| 204 | "" |
| 205 | |
| 206 | |
| 207 | /* |
| 208 | * miscellaneous configurable options |
| 209 | */ |
| 210 | |
| 211 | /* undef to save memory */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | #define CONFIG_SYS_LONGHELP |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 213 | |
| 214 | /* monitor command prompt */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 215 | #define CONFIG_SYS_PROMPT "=> " |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 216 | |
| 217 | /* console i/o buffer size */ |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 218 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 219 | #define CONFIG_SYS_CBSIZE 1024 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 220 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 221 | #define CONFIG_SYS_CBSIZE 256 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 222 | #endif |
| 223 | |
| 224 | /* print buffer size */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 226 | |
| 227 | /* max number of command args */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 228 | #define CONFIG_SYS_MAXARGS 16 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 229 | |
| 230 | /* boot argument buffer size */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 231 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 232 | |
| 233 | /* memtest works on */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 234 | #define CONFIG_SYS_MEMTEST_START 0x00100000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 235 | /* 1 ... 15 MB in DRAM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | #define CONFIG_SYS_MEMTEST_END 0x00f00000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 237 | /* full featured memtest */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 238 | #define CONFIG_SYS_ALT_MEMTEST |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 239 | |
| 240 | /* default load address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 241 | #define CONFIG_SYS_LOAD_ADDR 0x00100000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 242 | |
| 243 | /* decrementer freq: 1 ms ticks */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 244 | #define CONFIG_SYS_HZ 1000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 245 | |
| 246 | /* configure flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 247 | #define CONFIG_SYS_FLASH_BASE 0xff800000 |
| 248 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 249 | #define CONFIG_SYS_MAX_FLASH_SECT 64 |
| 250 | #define CONFIG_SYS_FLASH_SIZE 8 |
| 251 | #undef CONFIG_SYS_FLASH_16BIT |
| 252 | #define CONFIG_SYS_FLASH_ERASE_TOUT 240000 |
| 253 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 |
| 254 | #define CONFIG_SYS_FLASH_LOCK_TOUT 500 |
| 255 | #define CONFIG_SYS_FLASH_UNLOCK_TOUT 10000 |
| 256 | #define CONFIG_SYS_FLASH_PROTECTION |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 257 | |
| 258 | /* monitor in flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 259 | #define CONFIG_SYS_MONITOR_OFFSET 0x00700000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 260 | |
| 261 | /* environment in flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 262 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 263 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00020000) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 264 | #define CONFIG_ENV_SIZE 0x00020000 |
| 265 | #define CONFIG_ENV_SECT_SIZE 0x00020000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 266 | |
| 267 | /* |
| 268 | * Initial memory map for linux |
| 269 | * For booting Linux, the board info and command line data |
| 270 | * have to be in the first 8 MB of memory, since this is |
| 271 | * the maximum mapped by the Linux kernel during initialization. |
| 272 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 273 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 274 | |
| 275 | /* hard reset configuration words */ |
| 276 | #ifdef CONFIG_CLKIN_66MHz |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 277 | #define CONFIG_SYS_HRCW_MASTER 0x04643050 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 278 | #else |
| 279 | #error NO HRCW FOR 100MHZ SPECIFIED !!! |
| 280 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 281 | #define CONFIG_SYS_HRCW_SLAVE1 0x00000000 |
| 282 | #define CONFIG_SYS_HRCW_SLAVE2 0x00000000 |
| 283 | #define CONFIG_SYS_HRCW_SLAVE3 0x00000000 |
| 284 | #define CONFIG_SYS_HRCW_SLAVE4 0x00000000 |
| 285 | #define CONFIG_SYS_HRCW_SLAVE5 0x00000000 |
| 286 | #define CONFIG_SYS_HRCW_SLAVE6 0x00000000 |
| 287 | #define CONFIG_SYS_HRCW_SLAVE7 0x00000000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 288 | |
| 289 | /* internal memory mapped register */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 290 | #define CONFIG_SYS_IMMR 0xF0000000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 291 | |
| 292 | /* definitions for initial stack pointer and data area (in DPRAM) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 293 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR |
| 294 | #define CONFIG_SYS_INIT_RAM_END 0x2000 |
| 295 | #define CONFIG_SYS_GBL_DATA_SIZE 128 |
| 296 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE) |
| 297 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 298 | |
| 299 | /* |
| 300 | * Start addresses for the final memory configuration |
| 301 | * (Set up by the startup code) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 302 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 303 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 304 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
| 305 | #define CONFIG_SYS_SDRAM_SIZE (32*1024*1024) |
| 306 | #define CONFIG_SYS_MONITOR_BASE TEXT_BASE |
| 307 | #define CONFIG_SYS_MONITOR_FLASH (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_OFFSET) |
| 308 | #define CONFIG_SYS_MONITOR_LEN 0x00020000 |
| 309 | #define CONFIG_SYS_MALLOC_LEN 0x00020000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 310 | |
| 311 | /* boot flags */ |
| 312 | #define BOOTFLAG_COLD 0x01 /* normal power-on */ |
| 313 | #define BOOTFLAG_WARM 0x02 /* software reboot */ |
| 314 | |
| 315 | /* cache configuration */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 316 | #define CONFIG_SYS_CACHELINE_SIZE 32 /* for MPC8260 */ |
Jon Loeliger | a556290 | 2007-07-08 15:31:57 -0500 | [diff] [blame] | 317 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 318 | #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of above */ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 319 | #endif |
| 320 | |
| 321 | /* |
| 322 | * HIDx - Hardware Implementation-dependent Registers |
| 323 | *----------------------------------------------------------------------- |
| 324 | * HID0 also contains cache control - initially enable both caches and |
| 325 | * invalidate contents, then the final state leaves only the instruction |
| 326 | * cache enabled. Note that Power-On and Hard reset invalidate the caches, |
| 327 | * but Soft reset does not. |
| 328 | * |
| 329 | * HID1 has only read-only information - nothing to set. |
| 330 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 331 | #define CONFIG_SYS_HID0_INIT (HID0_ICE|HID0_DCE|\ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 332 | HID0_ICFI|HID0_DCI|HID0_IFEM|HID0_ABE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 333 | #define CONFIG_SYS_HID0_FINAL (HID0_IFEM|HID0_ABE) |
| 334 | #define CONFIG_SYS_HID2 0 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 335 | |
| 336 | /* RMR - reset mode register - turn on checkstop reset enable */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | #define CONFIG_SYS_RMR RMR_CSRE |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 338 | |
| 339 | /* BCR - bus configuration */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 340 | #define CONFIG_SYS_BCR 0x00000000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 341 | |
| 342 | /* SIUMCR - siu module configuration */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 343 | #define CONFIG_SYS_SIUMCR 0x4905c000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 344 | |
| 345 | /* SYPCR - system protection control */ |
| 346 | #if defined(CONFIG_WATCHDOG) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 347 | #define CONFIG_SYS_SYPCR 0xffffff87 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 348 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 349 | #define CONFIG_SYS_SYPCR 0xffffff83 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 350 | #endif |
| 351 | |
| 352 | /* TMCNTSC - time counter status and control */ |
| 353 | /* clear interrupts XXX jse */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 354 | /*#define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR) */ |
| 355 | #define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR|\ |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 356 | TMCNTSC_TCF|TMCNTSC_TCE) |
| 357 | |
| 358 | /* PISCR - periodic interrupt status and control */ |
| 359 | /* clear interrupts XXX jse */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 360 | /*#define CONFIG_SYS_PISCR (PISCR_PS) */ |
| 361 | #define CONFIG_SYS_PISCR (PISCR_PS|PISCR_PTF|PISCR_PTE) |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 362 | |
| 363 | /* SCCR - system clock control */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 364 | #define CONFIG_SYS_SCCR 0x000001a9 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 365 | |
| 366 | /* RCCR - risc controller configuration */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 367 | #define CONFIG_SYS_RCCR 0 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 368 | |
| 369 | /* |
| 370 | * MEMORY MAP |
| 371 | * ---------- |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 372 | * CS0 - FLASH 8MB/8Bit base=0xff800000 (boot: 0xfe000000, 8x mirrored) |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 373 | * CS1 - SDRAM 32MB/64Bit base=0x00000000 |
| 374 | * CS2 - DSP/SL1 1MB/16Bit base=0xf0100000 |
| 375 | * CS3 - DSP/SL2 1MB/16Bit base=0xf0200000 |
| 376 | * CS4 - DSP/SL3 1MB/16Bit base=0xf0300000 |
| 377 | * CS5 - DSP/SL4 1MB/16Bit base=0xf0400000 |
| 378 | * CS7 - DPRAM 1KB/8Bit base=0xf0500000, size=32KB (32x mirrored) |
| 379 | * x - IMMR 384KB base=0xf0000000 |
| 380 | */ |
| 381 | /* XXX jse 100MHz TODO */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 382 | #define CONFIG_SYS_BR0_PRELIM 0xff800801 |
| 383 | #define CONFIG_SYS_OR0_PRELIM 0xff801e44 |
| 384 | #define CONFIG_SYS_BR1_PRELIM 0x00000041 |
| 385 | #define CONFIG_SYS_OR1_PRELIM 0xfe002ec0 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 386 | #if 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 387 | #define CONFIG_SYS_BR2_PRELIM 0xf0101001 |
| 388 | #define CONFIG_SYS_OR2_PRELIM 0xfff00ef4 |
| 389 | #define CONFIG_SYS_BR3_PRELIM 0xf0201001 |
| 390 | #define CONFIG_SYS_OR3_PRELIM 0xfff00ef4 |
| 391 | #define CONFIG_SYS_BR4_PRELIM 0xf0301001 |
| 392 | #define CONFIG_SYS_OR4_PRELIM 0xfff00ef4 |
| 393 | #define CONFIG_SYS_BR5_PRELIM 0xf0401001 |
| 394 | #define CONFIG_SYS_OR5_PRELIM 0xfff00ef4 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 395 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 396 | #define CONFIG_SYS_BR2_PRELIM 0xf0101081 |
| 397 | #define CONFIG_SYS_OR2_PRELIM 0xfff00104 |
| 398 | #define CONFIG_SYS_BR3_PRELIM 0xf0201081 |
| 399 | #define CONFIG_SYS_OR3_PRELIM 0xfff00104 |
| 400 | #define CONFIG_SYS_BR4_PRELIM 0xf0301081 |
| 401 | #define CONFIG_SYS_OR4_PRELIM 0xfff00104 |
| 402 | #define CONFIG_SYS_BR5_PRELIM 0xf0401081 |
| 403 | #define CONFIG_SYS_OR5_PRELIM 0xfff00104 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 404 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 405 | #define CONFIG_SYS_BR7_PRELIM 0xf0500881 |
| 406 | #define CONFIG_SYS_OR7_PRELIM 0xffff8104 |
| 407 | #define CONFIG_SYS_MPTPR 0x2700 |
| 408 | #define CONFIG_SYS_PSDMR 0x822a2452 /* optimal */ |
| 409 | /*#define CONFIG_SYS_PSDMR 0x822a48a3 */ /* relaxed */ |
| 410 | #define CONFIG_SYS_PSRT 0x1a |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 411 | |
| 412 | /* "bad" address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 413 | #define CONFIG_SYS_RESET_ADDRESS 0x40000000 |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 414 | |
| 415 | #endif /* __CONFIG_H */ |