wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Frank Panno <fpanno@delphintech.com>, Delphin Technology AG |
| 4 | * |
| 5 | * This file is based on similar values for other boards found in other |
| 6 | * U-Boot config files, and some that I found in the EP8260 manual. |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | /* |
| 28 | * board/config.h - configuration options, board specific |
| 29 | * |
| 30 | * Note: my board is a "SBC 8260 H, V.1.1" |
| 31 | * - 64M 60x Bus SDRAM |
| 32 | * - 32M Local Bus SDRAM |
| 33 | * - 16M Flash (4 x AM29DL323DB90WDI) |
| 34 | * - 128k NVRAM with RTC |
| 35 | */ |
| 36 | |
| 37 | #ifndef __CONFIG_H |
| 38 | #define __CONFIG_H |
| 39 | |
| 40 | /* What is the oscillator's (UX2) frequency in Hz? */ |
| 41 | #define CONFIG_8260_CLKIN (66 * 1000 * 1000) |
| 42 | |
| 43 | /*----------------------------------------------------------------------- |
| 44 | * MODCK_H & MODCLK[1-3] - Ref: Section 9.2 in MPC8206 User Manual |
| 45 | *----------------------------------------------------------------------- |
| 46 | * What should MODCK_H be? It is dependent on the oscillator |
| 47 | * frequency, MODCK[1-3], and desired CPM and core frequencies. |
| 48 | * Here are some example values (all frequencies are in MHz): |
| 49 | * |
| 50 | * MODCK_H MODCK[1-3] Osc CPM Core |
| 51 | * ------- ---------- --- --- ---- |
| 52 | * 0x2 0x2 33 133 133 |
| 53 | * 0x2 0x3 33 133 166 |
| 54 | * 0x2 0x4 33 133 200 |
| 55 | * 0x2 0x5 33 133 233 |
| 56 | * 0x2 0x6 33 133 266 |
| 57 | * |
| 58 | * 0x5 0x5 66 133 133 |
| 59 | * 0x5 0x6 66 133 166 |
| 60 | * 0x5 0x7 66 133 200 * |
| 61 | * 0x6 0x0 66 133 233 |
| 62 | * 0x6 0x1 66 133 266 |
| 63 | * 0x6 0x2 66 133 300 |
| 64 | */ |
| 65 | #define CFG_SBC_MODCK_H 0x05 |
| 66 | |
| 67 | /* Define this if you want to boot from 0x00000100. If you don't define |
| 68 | * this, you will need to program the bootloader to 0xfff00000, and |
| 69 | * get the hardware reset config words at 0xfe000000. The simplest |
| 70 | * way to do that is to program the bootloader at both addresses. |
| 71 | * It is suggested that you just let U-Boot live at 0x00000000. |
| 72 | */ |
| 73 | /* #define CFG_SBC_BOOT_LOW 1 */ /* only for HRCW */ |
| 74 | /* #undef CFG_SBC_BOOT_LOW */ |
| 75 | |
| 76 | /* The reset command will not work as expected if the reset address does |
| 77 | * not point to the correct address. |
| 78 | */ |
| 79 | |
| 80 | #define CFG_RESET_ADDRESS 0xFFF00100 |
| 81 | |
| 82 | /* What should the base address of the main FLASH be and how big is |
| 83 | * it (in MBytes)? This must contain TEXT_BASE from board/ep8260/config.mk |
| 84 | * The main FLASH is whichever is connected to *CS0. U-Boot expects |
| 85 | * this to be the SIMM. |
| 86 | */ |
| 87 | #define CFG_FLASH0_BASE 0xFF000000 |
| 88 | #define CFG_FLASH0_SIZE 16 |
| 89 | |
| 90 | /* What should the base address of the secondary FLASH be and how big |
| 91 | * is it (in Mbytes)? The secondary FLASH is whichever is connected |
| 92 | * to *CS6. U-Boot expects this to be the on board FLASH. If you don't |
| 93 | * want it enabled, don't define these constants. |
| 94 | */ |
| 95 | #define CFG_FLASH1_BASE 0 |
| 96 | #define CFG_FLASH1_SIZE 0 |
| 97 | #undef CFG_FLASH1_BASE |
| 98 | #undef CFG_FLASH1_SIZE |
| 99 | |
| 100 | /* What should be the base address of SDRAM DIMM (60x bus) and how big is |
| 101 | * it (in Mbytes)? |
| 102 | */ |
| 103 | #define CFG_SDRAM0_BASE 0x00000000 |
| 104 | #define CFG_SDRAM0_SIZE 64 |
| 105 | |
| 106 | /* define CFG_LSDRAM if you want to enable the 32M SDRAM on the |
| 107 | * local bus (8260 local bus is NOT cacheable!) |
| 108 | */ |
| 109 | /* #define CFG_LSDRAM */ |
| 110 | #undef CFG_LSDRAM |
| 111 | |
| 112 | #ifdef CFG_LSDRAM |
| 113 | /* What should be the base address of SDRAM DIMM (local bus) and how big is |
| 114 | * it (in Mbytes)? |
| 115 | */ |
| 116 | #define CFG_SDRAM1_BASE 0x04000000 |
| 117 | #define CFG_SDRAM1_SIZE 32 |
| 118 | #else |
| 119 | #define CFG_SDRAM1_BASE 0 |
| 120 | #define CFG_SDRAM1_SIZE 0 |
| 121 | #undef CFG_SDRAM1_BASE |
| 122 | #undef CFG_SDRAM1_SIZE |
| 123 | #endif /* CFG_LSDRAM */ |
| 124 | |
| 125 | /* What should be the base address of NVRAM and how big is |
| 126 | * it (in Bytes) |
| 127 | */ |
| 128 | #define CFG_NVRAM_BASE_ADDR 0xFa080000 |
| 129 | #define CFG_NVRAM_SIZE (128*1024)-16 |
| 130 | |
| 131 | /* The RTC is a Dallas DS1556 |
| 132 | */ |
| 133 | #define CONFIG_RTC_DS1556 |
| 134 | |
| 135 | /* What should be the base address of the LEDs and switch S0? |
| 136 | * If you don't want them enabled, don't define this. |
| 137 | */ |
| 138 | #define CFG_LED_BASE 0x00000000 |
| 139 | #undef CFG_LED_BASE |
| 140 | |
| 141 | /* |
| 142 | * select serial console configuration |
| 143 | * |
| 144 | * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then |
| 145 | * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4 |
| 146 | * for SCC). |
| 147 | * |
| 148 | * if CONFIG_CONS_NONE is defined, then the serial console routines must |
| 149 | * defined elsewhere. |
| 150 | */ |
| 151 | #define CONFIG_CONS_ON_SMC /* define if console on SMC */ |
| 152 | #undef CONFIG_CONS_ON_SCC /* define if console on SCC */ |
| 153 | #undef CONFIG_CONS_NONE /* define if console on neither */ |
| 154 | #define CONFIG_CONS_INDEX 1 /* which SMC/SCC channel for console */ |
| 155 | |
| 156 | /* |
| 157 | * select ethernet configuration |
| 158 | * |
| 159 | * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then |
| 160 | * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3 |
| 161 | * for FCC) |
| 162 | * |
| 163 | * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be |
| 164 | * defined elsewhere (as for the console), or CFG_CMD_NET must be removed |
| 165 | * from CONFIG_COMMANDS to remove support for networking. |
| 166 | */ |
| 167 | #undef CONFIG_ETHER_ON_SCC /* define if ethernet on SCC */ |
| 168 | #define CONFIG_ETHER_ON_FCC /* define if ethernet on FCC */ |
| 169 | #undef CONFIG_ETHER_NONE /* define if ethernet on neither */ |
| 170 | #define CONFIG_ETHER_INDEX 3 /* which SCC/FCC channel for ethernet */ |
| 171 | |
| 172 | #if ( CONFIG_ETHER_INDEX == 3 ) |
| 173 | |
| 174 | /* |
| 175 | * - Rx-CLK is CLK15 |
| 176 | * - Tx-CLK is CLK16 |
| 177 | * - RAM for BD/Buffers is on the local Bus (see 28-13) |
| 178 | * - Enable Half Duplex in FSMR |
| 179 | */ |
| 180 | # define CFG_CMXFCR_MASK (CMXFCR_FC3|CMXFCR_RF3CS_MSK|CMXFCR_TF3CS_MSK) |
| 181 | # define CFG_CMXFCR_VALUE (CMXFCR_RF3CS_CLK15|CMXFCR_TF3CS_CLK16) |
| 182 | |
| 183 | /* |
| 184 | * - RAM for BD/Buffers is on the local Bus (see 28-13) |
| 185 | */ |
| 186 | #ifdef CFG_LSDRAM |
| 187 | #define CFG_CPMFCR_RAMTYPE 3 |
| 188 | #else /* CFG_LSDRAM */ |
| 189 | #define CFG_CPMFCR_RAMTYPE 0 |
| 190 | #endif /* CFG_LSDRAM */ |
| 191 | |
| 192 | /* - Enable Half Duplex in FSMR */ |
| 193 | /* # define CFG_FCC_PSMR (FCC_PSMR_FDE|FCC_PSMR_LPB) */ |
| 194 | # define CFG_FCC_PSMR 0 |
| 195 | |
| 196 | #else /* CONFIG_ETHER_INDEX */ |
| 197 | # error "on EP8260 ethernet must be FCC3" |
| 198 | #endif /* CONFIG_ETHER_INDEX */ |
| 199 | |
| 200 | /* |
| 201 | * select i2c support configuration |
| 202 | * |
| 203 | * Supported configurations are {none, software, hardware} drivers. |
| 204 | * If the software driver is chosen, there are some additional |
| 205 | * configuration items that the driver uses to drive the port pins. |
| 206 | */ |
| 207 | #undef CONFIG_HARD_I2C /* I2C with hardware support */ |
| 208 | #define CONFIG_SOFT_I2C 1 /* I2C bit-banged */ |
| 209 | #define CFG_I2C_SPEED 400000 /* I2C speed and slave address */ |
| 210 | #define CFG_I2C_SLAVE 0x7F |
| 211 | |
| 212 | /* |
| 213 | * Software (bit-bang) I2C driver configuration |
| 214 | */ |
| 215 | #ifdef CONFIG_SOFT_I2C |
| 216 | #define I2C_PORT 3 /* Port A=0, B=1, C=2, D=3 */ |
| 217 | #define I2C_ACTIVE (iop->pdir |= 0x00010000) |
| 218 | #define I2C_TRISTATE (iop->pdir &= ~0x00010000) |
| 219 | #define I2C_READ ((iop->pdat & 0x00010000) != 0) |
| 220 | #define I2C_SDA(bit) if(bit) iop->pdat |= 0x00010000; \ |
| 221 | else iop->pdat &= ~0x00010000 |
| 222 | #define I2C_SCL(bit) if(bit) iop->pdat |= 0x00020000; \ |
| 223 | else iop->pdat &= ~0x00020000 |
| 224 | #define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */ |
| 225 | #endif /* CONFIG_SOFT_I2C */ |
| 226 | |
| 227 | /* #define CONFIG_RTC_DS174x */ |
| 228 | |
| 229 | /* Define this to reserve an entire FLASH sector (256 KB) for |
| 230 | * environment variables. Otherwise, the environment will be |
| 231 | * put in the same sector as U-Boot, and changing variables |
| 232 | * will erase U-Boot temporarily |
| 233 | */ |
| 234 | #define CFG_ENV_IN_OWN_SECT |
| 235 | |
| 236 | /* Define to allow the user to overwrite serial and ethaddr */ |
| 237 | #define CONFIG_ENV_OVERWRITE |
| 238 | |
| 239 | /* What should the console's baud rate be? */ |
| 240 | /* #define CONFIG_BAUDRATE 57600 */ |
| 241 | #define CONFIG_BAUDRATE 115200 |
| 242 | |
| 243 | /* Ethernet MAC address */ |
| 244 | #define CONFIG_ETHADDR 00:10:EC:00:30:8C |
| 245 | |
| 246 | #define CONFIG_IPADDR 192.168.254.130 |
| 247 | #define CONFIG_SERVERIP 192.168.254.49 |
| 248 | |
| 249 | /* Set to a positive value to delay for running BOOTCOMMAND */ |
| 250 | #define CONFIG_BOOTDELAY -1 |
| 251 | |
| 252 | /* undef this to save memory */ |
| 253 | #define CFG_LONGHELP |
| 254 | |
| 255 | /* Monitor Command Prompt */ |
| 256 | #define CFG_PROMPT "=> " |
| 257 | |
| 258 | /* Define this variable to enable the "hush" shell (from |
| 259 | Busybox) as command line interpreter, thus enabling |
| 260 | powerful command line syntax like |
| 261 | if...then...else...fi conditionals or `&&' and '||' |
| 262 | constructs ("shell scripts"). |
| 263 | If undefined, you get the old, much simpler behaviour |
| 264 | with a somewhat smapper memory footprint. |
| 265 | */ |
| 266 | #define CFG_HUSH_PARSER |
| 267 | #define CFG_PROMPT_HUSH_PS2 "> " |
| 268 | |
| 269 | /* What U-Boot subsytems do you want enabled? */ |
| 270 | /* |
| 271 | */ |
wdenk | eedcd07 | 2004-09-08 22:03:11 +0000 | [diff] [blame^] | 272 | #define CONFIG_COMMANDS ( CFG_CMD_ALL & \ |
| 273 | ~( CFG_CMD_BMP | \ |
| 274 | CFG_CMD_BSP | \ |
| 275 | CFG_CMD_DCR | \ |
| 276 | CFG_CMD_DHCP | \ |
| 277 | CFG_CMD_DOC | \ |
| 278 | CFG_CMD_DTT | \ |
| 279 | CFG_CMD_EEPROM | \ |
| 280 | CFG_CMD_FDC | \ |
| 281 | CFG_CMD_FDOS | \ |
| 282 | CFG_CMD_HWFLOW | \ |
| 283 | CFG_CMD_IDE | \ |
| 284 | CFG_CMD_JFFS2 | \ |
| 285 | CFG_CMD_KGDB | \ |
| 286 | CFG_CMD_MII | \ |
| 287 | CFG_CMD_MMC | \ |
| 288 | CFG_CMD_NAND | \ |
| 289 | CFG_CMD_PCI | \ |
| 290 | CFG_CMD_PCMCIA | \ |
| 291 | CFG_CMD_REISER | \ |
| 292 | CFG_CMD_SCSI | \ |
| 293 | CFG_CMD_SPI | \ |
| 294 | CFG_CMD_USB | \ |
| 295 | CFG_CMD_VFD | \ |
| 296 | CFG_CMD_XIMG ) ) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 297 | |
| 298 | /* Where do the internal registers live? */ |
| 299 | #define CFG_IMMR 0xF0000000 |
| 300 | #define CFG_DEFAULT_IMMR 0x00010000 |
| 301 | |
| 302 | /* Where do the on board registers (CS4) live? */ |
| 303 | #define CFG_REGS_BASE 0xFA000000 |
| 304 | |
| 305 | /***************************************************************************** |
| 306 | * |
| 307 | * You should not have to modify any of the following settings |
| 308 | * |
| 309 | *****************************************************************************/ |
| 310 | |
| 311 | #define CONFIG_MPC8260 1 /* This is an MPC8260 CPU */ |
| 312 | #define CONFIG_EP8260 11 /* on an Embedded Planet EP8260 Board, Rev. 11 */ |
| 313 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 314 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 315 | |
| 316 | /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ |
| 317 | #include <cmd_confdefs.h> |
| 318 | |
| 319 | /* |
| 320 | * Miscellaneous configurable options |
| 321 | */ |
| 322 | #if (CONFIG_COMMANDS & CFG_CMD_KGDB) |
| 323 | # define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 324 | #else |
| 325 | # define CFG_CBSIZE 256 /* Console I/O Buffer Size */ |
| 326 | #endif |
| 327 | |
| 328 | /* Print Buffer Size */ |
| 329 | #define CFG_PBSIZE (CFG_CBSIZE + sizeof(CFG_PROMPT)+16) |
| 330 | |
| 331 | #define CFG_MAXARGS 8 /* max number of command args */ |
| 332 | |
| 333 | #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */ |
| 334 | |
| 335 | #ifdef CFG_LSDRAM |
| 336 | #define CFG_MEMTEST_START 0x04000000 /* memtest works on */ |
| 337 | #define CFG_MEMTEST_END 0x06000000 /* 64-96 MB in SDRAM */ |
| 338 | #else |
| 339 | #define CFG_MEMTEST_START 0x00000000 /* memtest works on */ |
| 340 | #define CFG_MEMTEST_END 0x02000000 /* 0-32 MB in SDRAM */ |
| 341 | #endif /* CFG_LSDRAM */ |
| 342 | |
| 343 | #define CONFIG_CLOCKS_IN_MHZ 1 /* clocks passsed to Linux in MHz */ |
| 344 | |
| 345 | #define CFG_LOAD_ADDR 0x00100000 /* default load address */ |
| 346 | #define CFG_TFTP_LOADADDR 0x00100000 /* default load address for network file downloads */ |
| 347 | |
| 348 | #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */ |
| 349 | |
| 350 | /* valid baudrates */ |
| 351 | #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| 352 | |
| 353 | /* |
| 354 | * Low Level Configuration Settings |
| 355 | * (address mappings, register initial values, etc.) |
| 356 | * You should know what you are doing if you make changes here. |
| 357 | */ |
| 358 | |
| 359 | #define CFG_FLASH_BASE CFG_FLASH0_BASE |
| 360 | #define CFG_SDRAM_BASE CFG_SDRAM0_BASE |
| 361 | |
| 362 | /*----------------------------------------------------------------------- |
| 363 | * Hard Reset Configuration Words |
| 364 | */ |
| 365 | |
| 366 | #if defined(CFG_SBC_BOOT_LOW) |
| 367 | # define CFG_SBC_HRCW_BOOT_FLAGS (HRCW_CIP | HRCW_BMS) |
| 368 | #else |
| 369 | # define CFG_SBC_HRCW_BOOT_FLAGS (0x00000000) |
| 370 | #endif /* defined(CFG_SBC_BOOT_LOW) */ |
| 371 | |
| 372 | /* get the HRCW ISB field from CFG_IMMR */ |
| 373 | /* |
| 374 | #define CFG_SBC_HRCW_IMMR ( ((CFG_IMMR & 0x10000000) >> 10) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 375 | ((CFG_IMMR & 0x01000000) >> 7) |\ |
| 376 | ((CFG_IMMR & 0x00100000) >> 4) ) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 377 | |
| 378 | #define CFG_HRCW_MASTER (HRCW_EBM |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 379 | HRCW_L2CPC01 |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 380 | CFG_SBC_HRCW_IMMR |\ |
| 381 | HRCW_APPC10 |\ |
| 382 | HRCW_CS10PC01 |\ |
| 383 | HRCW_MODCK_H0101 |\ |
| 384 | CFG_SBC_HRCW_BOOT_FLAGS) |
| 385 | */ |
| 386 | #define CFG_HRCW_MASTER 0x10400245 |
| 387 | |
| 388 | /* no slaves */ |
| 389 | #define CFG_HRCW_SLAVE1 0 |
| 390 | #define CFG_HRCW_SLAVE2 0 |
| 391 | #define CFG_HRCW_SLAVE3 0 |
| 392 | #define CFG_HRCW_SLAVE4 0 |
| 393 | #define CFG_HRCW_SLAVE5 0 |
| 394 | #define CFG_HRCW_SLAVE6 0 |
| 395 | #define CFG_HRCW_SLAVE7 0 |
| 396 | |
| 397 | /*----------------------------------------------------------------------- |
| 398 | * Definitions for initial stack pointer and data area (in DPRAM) |
| 399 | */ |
| 400 | #define CFG_INIT_RAM_ADDR CFG_IMMR |
| 401 | #define CFG_INIT_RAM_END 0x4000 /* End of used area in DPRAM */ |
| 402 | #define CFG_GBL_DATA_SIZE 128 /* bytes reserved for initial data */ |
| 403 | #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) |
| 404 | #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET |
| 405 | |
| 406 | /*----------------------------------------------------------------------- |
| 407 | * Start addresses for the final memory configuration |
| 408 | * (Set up by the startup code) |
| 409 | * Please note that CFG_SDRAM_BASE _must_ start at 0 |
| 410 | * Note also that the logic that sets CFG_RAMBOOT is platform dependent. |
| 411 | */ |
| 412 | #define CFG_MONITOR_BASE TEXT_BASE |
| 413 | |
| 414 | |
| 415 | #if (CFG_MONITOR_BASE < CFG_FLASH_BASE) |
| 416 | # define CFG_RAMBOOT |
| 417 | #endif |
| 418 | |
| 419 | #define CFG_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ |
| 420 | #define CFG_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ |
| 421 | |
| 422 | /* |
| 423 | * For booting Linux, the board info and command line data |
| 424 | * have to be in the first 8 MB of memory, since this is |
| 425 | * the maximum mapped by the Linux kernel during initialization. |
| 426 | */ |
| 427 | #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
| 428 | |
| 429 | /*----------------------------------------------------------------------- |
| 430 | * FLASH and environment organization |
| 431 | */ |
| 432 | #define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 433 | #define CFG_MAX_FLASH_SECT 71 /* max number of sectors on one chip */ |
| 434 | |
| 435 | #define CFG_FLASH_ERASE_TOUT 8000 /* Timeout for Flash Erase (in ms) */ |
| 436 | #define CFG_FLASH_WRITE_TOUT 1 /* Timeout for Flash Write (in ms) */ |
| 437 | |
| 438 | #ifndef CFG_RAMBOOT |
| 439 | # define CFG_ENV_IS_IN_FLASH 1 |
| 440 | |
| 441 | # ifdef CFG_ENV_IN_OWN_SECT |
| 442 | # define CFG_ENV_ADDR (CFG_MONITOR_BASE + 0x40000) |
| 443 | # define CFG_ENV_SECT_SIZE 0x40000 |
| 444 | # else |
| 445 | # define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN - CFG_ENV_SECT_SIZE) |
| 446 | # define CFG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */ |
| 447 | # define CFG_ENV_SECT_SIZE 0x10000 /* see README - env sect real size */ |
| 448 | # endif /* CFG_ENV_IN_OWN_SECT */ |
| 449 | #else |
| 450 | # define CFG_ENV_IS_IN_NVRAM 1 |
| 451 | # define CFG_ENV_ADDR (CFG_MONITOR_BASE - 0x1000) |
| 452 | # define CFG_ENV_SIZE 0x200 |
| 453 | #endif /* CFG_RAMBOOT */ |
| 454 | |
| 455 | /*----------------------------------------------------------------------- |
| 456 | * Cache Configuration |
| 457 | */ |
| 458 | #define CFG_CACHELINE_SIZE 32 /* For MPC8260 CPU */ |
| 459 | |
| 460 | #if (CONFIG_COMMANDS & CFG_CMD_KGDB) |
| 461 | # define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
| 462 | #endif |
| 463 | |
| 464 | /*----------------------------------------------------------------------- |
| 465 | * HIDx - Hardware Implementation-dependent Registers 2-11 |
| 466 | *----------------------------------------------------------------------- |
| 467 | * HID0 also contains cache control - initially enable both caches and |
| 468 | * invalidate contents, then the final state leaves only the instruction |
| 469 | * cache enabled. Note that Power-On and Hard reset invalidate the caches, |
| 470 | * but Soft reset does not. |
| 471 | * |
| 472 | * HID1 has only read-only information - nothing to set. |
| 473 | */ |
| 474 | #define CFG_HID0_INIT (HID0_ICE |\ |
| 475 | HID0_DCE |\ |
| 476 | HID0_ICFI |\ |
| 477 | HID0_DCI |\ |
| 478 | HID0_IFEM |\ |
| 479 | HID0_ABE) |
| 480 | #ifdef CFG_LSDRAM |
| 481 | /* 8260 local bus is NOT cacheable */ |
| 482 | #define CFG_HID0_FINAL (/*HID0_ICE |*/\ |
| 483 | HID0_IFEM |\ |
| 484 | HID0_ABE |\ |
| 485 | HID0_EMCP) |
| 486 | #else /* !CFG_LSDRAM */ |
| 487 | #define CFG_HID0_FINAL (HID0_ICE |\ |
| 488 | HID0_IFEM |\ |
| 489 | HID0_ABE |\ |
| 490 | HID0_EMCP) |
| 491 | #endif /* CFG_LSDRAM */ |
| 492 | |
| 493 | #define CFG_HID2 0 |
| 494 | |
| 495 | /*----------------------------------------------------------------------- |
| 496 | * RMR - Reset Mode Register |
| 497 | *----------------------------------------------------------------------- |
| 498 | */ |
| 499 | #define CFG_RMR 0 |
| 500 | |
| 501 | /*----------------------------------------------------------------------- |
| 502 | * BCR - Bus Configuration 4-25 |
| 503 | *----------------------------------------------------------------------- |
| 504 | */ |
| 505 | /*#define CFG_BCR (BCR_EBM |\ |
| 506 | BCR_PLDP |\ |
| 507 | BCR_EAV |\ |
| 508 | BCR_NPQM1) |
| 509 | */ |
| 510 | #define CFG_BCR 0x80C08000 |
| 511 | /*----------------------------------------------------------------------- |
| 512 | * SIUMCR - SIU Module Configuration 4-31 |
| 513 | *----------------------------------------------------------------------- |
| 514 | */ |
| 515 | |
| 516 | #define CFG_SIUMCR (SIUMCR_L2CPC01 |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 517 | SIUMCR_APPC10 |\ |
| 518 | SIUMCR_CS10PC01) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 519 | |
| 520 | |
| 521 | /*----------------------------------------------------------------------- |
| 522 | * SYPCR - System Protection Control 11-9 |
| 523 | * SYPCR can only be written once after reset! |
| 524 | *----------------------------------------------------------------------- |
| 525 | * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable |
| 526 | */ |
| 527 | #ifdef CFG_LSDRAM |
| 528 | #define CFG_SYPCR (SYPCR_SWTC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 529 | SYPCR_BMT |\ |
| 530 | SYPCR_PBME |\ |
| 531 | SYPCR_LBME |\ |
| 532 | SYPCR_SWP) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 533 | #else |
| 534 | #define CFG_SYPCR (SYPCR_SWTC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 535 | SYPCR_BMT |\ |
| 536 | SYPCR_PBME |\ |
| 537 | SYPCR_SWP) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 538 | #endif |
| 539 | /*----------------------------------------------------------------------- |
| 540 | * TMCNTSC - Time Counter Status and Control 4-40 |
| 541 | *----------------------------------------------------------------------- |
| 542 | * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk, |
| 543 | * and enable Time Counter |
| 544 | */ |
| 545 | #define CFG_TMCNTSC (TMCNTSC_SEC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 546 | TMCNTSC_ALR |\ |
| 547 | TMCNTSC_TCF |\ |
| 548 | TMCNTSC_TCE) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 549 | |
| 550 | /*----------------------------------------------------------------------- |
| 551 | * PISCR - Periodic Interrupt Status and Control 4-42 |
| 552 | *----------------------------------------------------------------------- |
| 553 | * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable |
| 554 | * Periodic timer |
| 555 | */ |
| 556 | /*#define CFG_PISCR (PISCR_PS |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 557 | PISCR_PTF |\ |
| 558 | PISCR_PTE)*/ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 559 | #define CFG_PISCR 0 |
| 560 | /*----------------------------------------------------------------------- |
| 561 | * SCCR - System Clock Control 9-8 |
| 562 | *----------------------------------------------------------------------- |
| 563 | */ |
| 564 | #define CFG_SCCR (SCCR_DFBRG01) |
| 565 | |
| 566 | /*----------------------------------------------------------------------- |
| 567 | * RCCR - RISC Controller Configuration 13-7 |
| 568 | *----------------------------------------------------------------------- |
| 569 | */ |
| 570 | #define CFG_RCCR 0 |
| 571 | |
| 572 | /*----------------------------------------------------------------------- |
| 573 | * MPTPR - Memory Refresh Timer Prescale Register 10-32 |
| 574 | *----------------------------------------------------------------------- |
| 575 | */ |
| 576 | #define CFG_MPTPR (0x0A00 & MPTPR_PTP_MSK) |
| 577 | |
| 578 | /* |
| 579 | * Init Memory Controller: |
| 580 | * |
| 581 | * Bank Bus Machine PortSz Device |
| 582 | * ---- --- ------- ------ ------ |
| 583 | * 0 60x GPCM 64 bit FLASH (BGA - 16MB AMD AM29DL323DB90WDI) |
| 584 | * 1 60x SDRAM 64 bit SDRAM (BGA - 64MB Micron 48LC8M16A2TG) |
| 585 | * 2 Local SDRAM 32 bit SDRAM (BGA - 32MB Micron 48LC8M16A2TG) |
| 586 | * 3 unused |
| 587 | * 4 60x GPCM 8 bit Board Regs, NVRTC |
| 588 | * 5 unused |
| 589 | * 6 unused |
| 590 | * 7 unused |
| 591 | * 8 PCMCIA |
| 592 | * 9 unused |
| 593 | * 10 unused |
| 594 | * 11 unused |
| 595 | */ |
| 596 | |
| 597 | /*----------------------------------------------------------------------- |
| 598 | * BRx - Base Register |
| 599 | * Ref: Section 10.3.1 on page 10-14 |
| 600 | * ORx - Option Register |
| 601 | * Ref: Section 10.3.2 on page 10-18 |
| 602 | *----------------------------------------------------------------------- |
| 603 | */ |
| 604 | |
| 605 | /* Bank 0 - FLASH |
| 606 | * |
| 607 | */ |
| 608 | #define CFG_BR0_PRELIM ((CFG_FLASH0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 609 | BRx_PS_64 |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 610 | BRx_DECC_NONE |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 611 | BRx_MS_GPCM_P |\ |
| 612 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 613 | |
| 614 | #define CFG_OR0_PRELIM (MEG_TO_AM(CFG_FLASH0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 615 | ORxG_CSNT |\ |
| 616 | ORxG_ACS_DIV1 |\ |
| 617 | ORxG_SCY_6_CLK |\ |
| 618 | ORxG_EHTR) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 619 | |
| 620 | /* Bank 1 - SDRAM |
| 621 | * PSDRAM |
| 622 | */ |
| 623 | #define CFG_BR1_PRELIM ((CFG_SDRAM0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 624 | BRx_PS_64 |\ |
| 625 | BRx_MS_SDRAM_P |\ |
| 626 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 627 | |
| 628 | #define CFG_OR1_PRELIM (MEG_TO_AM(CFG_SDRAM0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 629 | ORxS_BPD_4 |\ |
| 630 | ORxS_ROWST_PBI1_A6 |\ |
| 631 | ORxS_NUMR_12) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 632 | |
| 633 | #define CFG_PSDMR 0xC34E2462 |
| 634 | #define CFG_PSRT 0x64 |
| 635 | |
| 636 | |
| 637 | #ifdef CFG_LSDRAM |
| 638 | /* Bank 2 - SDRAM |
| 639 | * LSDRAM |
| 640 | */ |
| 641 | |
| 642 | #define CFG_BR2_PRELIM ((CFG_SDRAM1_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 643 | BRx_PS_32 |\ |
| 644 | BRx_MS_SDRAM_L |\ |
| 645 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 646 | |
| 647 | #define CFG_OR2_PRELIM (MEG_TO_AM(CFG_SDRAM1_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 648 | ORxS_BPD_4 |\ |
| 649 | ORxS_ROWST_PBI0_A9 |\ |
| 650 | ORxS_NUMR_12) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 651 | |
| 652 | #define CFG_LSDMR 0x416A2562 |
| 653 | #define CFG_LSRT 0x64 |
| 654 | #else |
| 655 | #define CFG_LSRT 0x0 |
| 656 | #endif /* CFG_LSDRAM */ |
| 657 | |
| 658 | /* Bank 4 - On board registers |
| 659 | * NVRTC and BCSR |
| 660 | */ |
| 661 | #define CFG_BR4_PRELIM ((CFG_REGS_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 662 | BRx_PS_8 |\ |
| 663 | BRx_MS_GPCM_P |\ |
| 664 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 665 | /* |
| 666 | #define CFG_OR4_PRELIM (ORxG_AM_MSK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 667 | ORxG_CSNT |\ |
| 668 | ORxG_ACS_DIV1 |\ |
| 669 | ORxG_SCY_10_CLK |\ |
| 670 | ORxG_TRLX) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 671 | */ |
| 672 | #define CFG_OR4_PRELIM 0xfff00854 |
| 673 | |
| 674 | /* Bank 8 - On board registers |
| 675 | * PCMCIA (currently not working!) |
| 676 | */ |
| 677 | #define CFG_BR8_PRELIM ((CFG_REGS_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 678 | BRx_PS_16 |\ |
| 679 | BRx_MS_GPCM_P |\ |
| 680 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 681 | |
| 682 | #define CFG_OR8_PRELIM (ORxG_AM_MSK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 683 | ORxG_CSNT |\ |
| 684 | ORxG_ACS_DIV1 |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 685 | ORxG_SETA |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 686 | ORxG_SCY_10_CLK) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 687 | |
| 688 | /* |
| 689 | * Internal Definitions |
| 690 | * |
| 691 | * Boot Flags |
| 692 | */ |
| 693 | #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */ |
| 694 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ |
| 695 | |
| 696 | #endif /* __CONFIG_H */ |