wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 3 | * Murray Jensen <Murray.Jensen@cmst.csiro.au> |
| 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 7 | * Marius Groeger <mgroeger@sysgo.de> |
| 8 | * |
| 9 | * (C) Copyright 2001 |
| 10 | * Advent Networks, Inc. <http://www.adventnetworks.com> |
| 11 | * Jay Monkman <jmonkman@adventnetworks.com> |
| 12 | * |
| 13 | * (C) Copyright 2001 |
| 14 | * Advent Networks, Inc. <http://www.adventnetworks.com> |
| 15 | * Oliver Brown <obrown@adventnetworks.com> |
| 16 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 17 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | /*********************************************************************/ |
| 21 | /* DESCRIPTION: |
| 22 | * This file contains the board configuartion for the GW8260 board. |
| 23 | * |
| 24 | * MODULE DEPENDENCY: |
| 25 | * None |
| 26 | * |
| 27 | * RESTRICTIONS/LIMITATIONS: |
| 28 | * None |
| 29 | * |
| 30 | * Copyright (c) 2001, Advent Networks, Inc. |
| 31 | */ |
| 32 | /*********************************************************************/ |
| 33 | |
| 34 | #ifndef __CONFIG_H |
| 35 | #define __CONFIG_H |
| 36 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 37 | #define CONFIG_SYS_TEXT_BASE 0x40000000 |
| 38 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 39 | /* Enable debug prints */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 40 | #undef DEBUG_BOOTP_EXT /* Debug received vendor fields */ |
| 41 | |
| 42 | /* What is the oscillator's (UX2) frequency in Hz? */ |
| 43 | #define CONFIG_8260_CLKIN (66 * 1000 * 1000) |
| 44 | |
| 45 | /*----------------------------------------------------------------------- |
| 46 | * MODCK_H & MODCLK[1-3] - Ref: Section 9.2 in MPC8206 User Manual |
| 47 | *----------------------------------------------------------------------- |
| 48 | * What should MODCK_H be? It is dependent on the oscillator |
| 49 | * frequency, MODCK[1-3], and desired CPM and core frequencies. |
| 50 | * Here are some example values (all frequencies are in MHz): |
| 51 | * |
| 52 | * MODCK_H MODCK[1-3] Osc CPM Core S2-6 S2-7 S2-8 |
| 53 | * ------- ---------- --- --- ---- ----- ----- ----- |
| 54 | * 0x5 0x5 66 133 133 Open Close Open |
| 55 | * 0x5 0x6 66 133 166 Open Open Close |
| 56 | * 0x5 0x7 66 133 200 Open Open Open |
| 57 | * 0x6 0x0 66 133 233 Close Close Close |
| 58 | * 0x6 0x1 66 133 266 Close Close Open |
| 59 | * 0x6 0x2 66 133 300 Close Open Close |
| 60 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 61 | #define CONFIG_SYS_SBC_MODCK_H 0x05 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 62 | |
| 63 | /* Define this if you want to boot from 0x00000100. If you don't define |
| 64 | * this, you will need to program the bootloader to 0xfff00000, and |
| 65 | * get the hardware reset config words at 0xfe000000. The simplest |
| 66 | * way to do that is to program the bootloader at both addresses. |
| 67 | * It is suggested that you just let U-Boot live at 0x00000000. |
| 68 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | #define CONFIG_SYS_SBC_BOOT_LOW 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 70 | |
| 71 | /* What should the base address of the main FLASH be and how big is |
Paul Gortmaker | b30d41c | 2011-09-17 13:47:47 +0000 | [diff] [blame] | 72 | * it (in MBytes)? This must contain CONFIG_SYS_TEXT_BASE. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 73 | * The main FLASH is whichever is connected to *CS0. U-Boot expects |
| 74 | * this to be the SIMM. |
| 75 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | #define CONFIG_SYS_FLASH0_BASE 0x40000000 |
| 77 | #define CONFIG_SYS_FLASH0_SIZE 8 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 78 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | /* Define CONFIG_SYS_FLASH_CHECKSUM to enable flash checksum during boot. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 80 | * Note: the 'flashchecksum' environment variable must also be set to 'y'. |
| 81 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 82 | #define CONFIG_SYS_FLASH_CHECKSUM |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 83 | |
| 84 | /* What should be the base address of SDRAM DIMM and how big is |
| 85 | * it (in Mbytes)? |
| 86 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #define CONFIG_SYS_SDRAM0_BASE 0x00000000 |
| 88 | #define CONFIG_SYS_SDRAM0_SIZE 64 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * DRAM tests |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | * CONFIG_SYS_DRAM_TEST - enables the following tests. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 93 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | * CONFIG_SYS_DRAM_TEST_DATA - Enables test for shorted or open data lines |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 95 | * Environment variable 'test_dram_data' must be |
| 96 | * set to 'y'. |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 97 | * CONFIG_SYS_DRAM_TEST_DATA - Enables test to verify that each word is uniquely |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 98 | * addressable. Environment variable |
| 99 | * 'test_dram_address' must be set to 'y'. |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | * CONFIG_SYS_DRAM_TEST_WALK - Enables test a 64-bit walking ones pattern test. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 101 | * This test takes about 6 minutes to test 64 MB. |
| 102 | * Environment variable 'test_dram_walk' must be |
| 103 | * set to 'y'. |
| 104 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_SYS_DRAM_TEST |
| 106 | #if defined(CONFIG_SYS_DRAM_TEST) |
| 107 | #define CONFIG_SYS_DRAM_TEST_DATA |
| 108 | #define CONFIG_SYS_DRAM_TEST_ADDRESS |
| 109 | #define CONFIG_SYS_DRAM_TEST_WALK |
| 110 | #endif /* CONFIG_SYS_DRAM_TEST */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 111 | |
| 112 | /* |
| 113 | * GW8260 with 16 MB DIMM: |
| 114 | * |
| 115 | * 0x0000 0000 Exception Vector code, 8k |
| 116 | * : |
| 117 | * 0x0000 1FFF |
| 118 | * 0x0000 2000 Free for Application Use |
| 119 | * : |
| 120 | * : |
| 121 | * |
| 122 | * : |
| 123 | * : |
| 124 | * 0x00F5 FF30 Monitor Stack (Growing downward) |
| 125 | * Monitor Stack Buffer (0x80) |
| 126 | * 0x00F5 FFB0 Board Info Data |
| 127 | * 0x00F6 0000 Malloc Arena |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 128 | * : CONFIG_ENV_SECT_SIZE, 256k |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | * : CONFIG_SYS_MALLOC_LEN, 128k |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 130 | * 0x00FC 0000 RAM Copy of Monitor Code |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | * : CONFIG_SYS_MONITOR_LEN, 256k |
| 132 | * 0x00FF FFFF [End of RAM], CONFIG_SYS_SDRAM_SIZE - 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 133 | */ |
| 134 | |
| 135 | /* |
| 136 | * GW8260 with 64 MB DIMM: |
| 137 | * |
| 138 | * 0x0000 0000 Exception Vector code, 8k |
| 139 | * : |
| 140 | * 0x0000 1FFF |
| 141 | * 0x0000 2000 Free for Application Use |
| 142 | * : |
| 143 | * : |
| 144 | * |
| 145 | * : |
| 146 | * : |
| 147 | * 0x03F5 FF30 Monitor Stack (Growing downward) |
| 148 | * Monitor Stack Buffer (0x80) |
| 149 | * 0x03F5 FFB0 Board Info Data |
| 150 | * 0x03F6 0000 Malloc Arena |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 151 | * : CONFIG_ENV_SECT_SIZE, 256k |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 152 | * : CONFIG_SYS_MALLOC_LEN, 128k |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 153 | * 0x03FC 0000 RAM Copy of Monitor Code |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 154 | * : CONFIG_SYS_MONITOR_LEN, 256k |
| 155 | * 0x03FF FFFF [End of RAM], CONFIG_SYS_SDRAM_SIZE - 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 156 | */ |
| 157 | |
| 158 | |
| 159 | /* |
| 160 | * select serial console configuration |
| 161 | * |
| 162 | * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then |
| 163 | * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4 |
| 164 | * for SCC). |
| 165 | * |
| 166 | * if CONFIG_CONS_NONE is defined, then the serial console routines must |
| 167 | * defined elsewhere. |
| 168 | */ |
| 169 | #define CONFIG_CONS_ON_SMC 1 /* define if console on SMC */ |
| 170 | #undef CONFIG_CONS_ON_SCC /* define if console on SCC */ |
| 171 | #undef CONFIG_CONS_NONE /* define if console on neither */ |
| 172 | #define CONFIG_CONS_INDEX 1 /* which SMC/SCC channel for console */ |
| 173 | |
| 174 | /* |
| 175 | * select ethernet configuration |
| 176 | * |
| 177 | * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then |
| 178 | * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3 |
| 179 | * for FCC) |
| 180 | * |
| 181 | * 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] | 182 | * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 183 | */ |
| 184 | |
| 185 | #undef CONFIG_ETHER_ON_SCC |
| 186 | #define CONFIG_ETHER_ON_FCC |
| 187 | #undef CONFIG_ETHER_NONE /* define if ethernet on neither */ |
| 188 | |
| 189 | #ifdef CONFIG_ETHER_ON_SCC |
| 190 | #define CONFIG_ETHER_INDEX 1 /* which SCC/FCC channel for ethernet */ |
| 191 | #endif /* CONFIG_ETHER_ON_SCC */ |
| 192 | |
| 193 | #ifdef CONFIG_ETHER_ON_FCC |
| 194 | #define CONFIG_ETHER_INDEX 2 /* which SCC/FCC channel for ethernet */ |
| 195 | #define CONFIG_MII /* MII PHY management */ |
| 196 | #define CONFIG_BITBANGMII /* bit-bang MII PHY management */ |
| 197 | /* |
| 198 | * Port pins used for bit-banged MII communictions (if applicable). |
| 199 | */ |
| 200 | #define MDIO_PORT 2 /* Port C */ |
Luigi 'Comio' Mantellini | be22544 | 2009-10-10 12:42:22 +0200 | [diff] [blame] | 201 | |
| 202 | #define MDIO_DECLARE volatile ioport_t *iop = ioport_addr ( \ |
| 203 | (immap_t *) CONFIG_SYS_IMMR, MDIO_PORT ) |
| 204 | #define MDC_DECLARE MDIO_DECLARE |
| 205 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 206 | #define MDIO_ACTIVE (iop->pdir |= 0x00400000) |
| 207 | #define MDIO_TRISTATE (iop->pdir &= ~0x00400000) |
| 208 | #define MDIO_READ ((iop->pdat & 0x00400000) != 0) |
| 209 | |
| 210 | #define MDIO(bit) if(bit) iop->pdat |= 0x00400000; \ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 211 | else iop->pdat &= ~0x00400000 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 212 | |
| 213 | #define MDC(bit) if(bit) iop->pdat |= 0x00200000; \ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 214 | else iop->pdat &= ~0x00200000 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 215 | |
| 216 | #define MIIDELAY udelay(1) |
| 217 | #endif /* CONFIG_ETHER_ON_FCC */ |
| 218 | |
| 219 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 2) |
| 220 | |
| 221 | /* |
| 222 | * - Rx-CLK is CLK13 |
| 223 | * - Tx-CLK is CLK14 |
| 224 | * - Select bus for bd/buffers (see 28-13) |
| 225 | * - Enable Full Duplex in FSMR |
| 226 | */ |
Mike Frysinger | d4590da | 2011-10-17 05:38:58 +0000 | [diff] [blame] | 227 | # define CONFIG_SYS_CMXFCR_MASK2 (CMXFCR_FC2|CMXFCR_RF2CS_MSK|CMXFCR_TF2CS_MSK) |
| 228 | # define CONFIG_SYS_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK13|CMXFCR_TF2CS_CLK14) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 229 | # define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 230 | # define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 231 | |
| 232 | #elif defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 3) |
| 233 | |
| 234 | /* |
| 235 | * - Rx-CLK is CLK15 |
| 236 | * - Tx-CLK is CLK16 |
| 237 | * - Select bus for bd/buffers (see 28-13) |
| 238 | * - Enable Full Duplex in FSMR |
| 239 | */ |
Mike Frysinger | d4590da | 2011-10-17 05:38:58 +0000 | [diff] [blame] | 240 | # define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3|CMXFCR_RF3CS_MSK|CMXFCR_TF3CS_MSK) |
| 241 | # define CONFIG_SYS_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15|CMXFCR_TF3CS_CLK16) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 242 | # define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 243 | # define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 244 | |
| 245 | #endif /* CONFIG_ETHER_ON_FCC, CONFIG_ETHER_INDEX */ |
| 246 | |
| 247 | /* Define this to reserve an entire FLASH sector (256 KB) for |
| 248 | * environment variables. Otherwise, the environment will be |
| 249 | * put in the same sector as U-Boot, and changing variables |
| 250 | * will erase U-Boot temporarily |
| 251 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 252 | #define CONFIG_ENV_IN_OWN_SECT |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 253 | |
| 254 | /* Define to allow the user to overwrite serial and ethaddr */ |
| 255 | #define CONFIG_ENV_OVERWRITE |
| 256 | |
| 257 | /* What should the console's baud rate be? */ |
| 258 | #define CONFIG_BAUDRATE 115200 |
| 259 | |
| 260 | /* Ethernet MAC address - This is set to all zeros to force an |
| 261 | * an error if we use BOOTP without setting |
| 262 | * the MAC address |
| 263 | */ |
| 264 | #define CONFIG_ETHADDR 00:00:00:00:00:00 |
| 265 | |
| 266 | /* Set to a positive value to delay for running BOOTCOMMAND */ |
| 267 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 268 | |
| 269 | /* Be selective on what keys can delay or stop the autoboot process |
| 270 | * To stop use: " " |
| 271 | */ |
| 272 | #define CONFIG_AUTOBOOT_KEYED |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 273 | #define CONFIG_AUTOBOOT_PROMPT \ |
| 274 | "Autobooting in %d seconds, press \" \" to stop\n", bootdelay |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 275 | #define CONFIG_AUTOBOOT_STOP_STR " " |
| 276 | #undef CONFIG_AUTOBOOT_DELAY_STR |
| 277 | #define DEBUG_BOOTKEYS 0 |
| 278 | |
Jon Loeliger | 2fd90ce | 2007-07-09 21:48:26 -0500 | [diff] [blame] | 279 | /* |
| 280 | * BOOTP options |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 281 | */ |
Jon Loeliger | 2fd90ce | 2007-07-09 21:48:26 -0500 | [diff] [blame] | 282 | #define CONFIG_BOOTP_SUBNETMASK |
| 283 | #define CONFIG_BOOTP_GATEWAY |
| 284 | #define CONFIG_BOOTP_HOSTNAME |
| 285 | #define CONFIG_BOOTP_BOOTPATH |
| 286 | |
| 287 | #define CONFIG_BOOTP_BOOTFILESIZE |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 288 | #define CONFIG_BOOTP_DNS |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 289 | |
| 290 | /* undef this to save memory */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 291 | #define CONFIG_SYS_LONGHELP |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 292 | |
| 293 | /* Monitor Command Prompt */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 294 | |
Jon Loeliger | 72eb0ef | 2007-07-04 22:32:19 -0500 | [diff] [blame] | 295 | |
| 296 | /* |
| 297 | * Command line configuration. |
| 298 | */ |
| 299 | #include <config_cmd_default.h> |
| 300 | |
| 301 | #define CONFIG_CMD_BEDBUG |
| 302 | #define CONFIG_CMD_ELF |
| 303 | #define CONFIG_CMD_ASKENV |
| 304 | #define CONFIG_CMD_REGINFO |
| 305 | #define CONFIG_CMD_IMMAP |
| 306 | #define CONFIG_CMD_MII |
| 307 | |
| 308 | #undef CONFIG_CMD_KGDB |
| 309 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 310 | |
| 311 | /* Where do the internal registers live? */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | #define CONFIG_SYS_IMMR 0xf0000000 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 313 | |
| 314 | /* Use the HUSH parser */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 315 | #define CONFIG_SYS_HUSH_PARSER |
| 316 | #ifdef CONFIG_SYS_HUSH_PARSER |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 317 | #endif |
| 318 | |
| 319 | /* What is the address of IO controller */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 320 | #define CONFIG_SYS_IO_BASE 0xe0000000 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 321 | |
| 322 | /***************************************************************************** |
| 323 | * |
| 324 | * You should not have to modify any of the following settings |
| 325 | * |
| 326 | *****************************************************************************/ |
| 327 | |
| 328 | #define CONFIG_MPC8260 1 /* This is an MPC8260 CPU */ |
| 329 | #define CONFIG_GW8260 1 /* on an GW8260 Board */ |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 330 | #define CONFIG_CPM2 1 /* Has a CPM2 */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 331 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 332 | /* |
| 333 | * Miscellaneous configurable options |
| 334 | */ |
Jon Loeliger | 72eb0ef | 2007-07-04 22:32:19 -0500 | [diff] [blame] | 335 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 336 | # define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 337 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 338 | # define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 339 | #endif |
| 340 | |
| 341 | /* Print Buffer Size */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 342 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)+16) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 343 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 344 | #define CONFIG_SYS_MAXARGS 8 /* max number of command args */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 345 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 346 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 347 | |
| 348 | /* Convert clocks to MHZ when passing board info to kernel. |
| 349 | * This must be defined for eariler 2.4 kernels (~2.4.4). |
| 350 | */ |
| 351 | #define CONFIG_CLOCKS_IN_MHZ |
| 352 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 353 | #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 354 | |
| 355 | |
| 356 | /* memtest works from the end of the exception vector table |
| 357 | * to the end of the DRAM less monitor and malloc area |
| 358 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 359 | #define CONFIG_SYS_MEMTEST_START 0x2000 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 360 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 361 | #define CONFIG_SYS_STACK_USAGE 0x10000 /* Reserve 64k for the stack usage */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 362 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 363 | #define CONFIG_SYS_MEM_END_USAGE ( CONFIG_SYS_MONITOR_LEN \ |
| 364 | + CONFIG_SYS_MALLOC_LEN \ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 365 | + CONFIG_ENV_SECT_SIZE \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 366 | + CONFIG_SYS_STACK_USAGE ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 367 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 368 | #define CONFIG_SYS_MEMTEST_END ( CONFIG_SYS_SDRAM_SIZE * 1024 * 1024 \ |
| 369 | - CONFIG_SYS_MEM_END_USAGE ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 370 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 371 | /* |
| 372 | * Low Level Configuration Settings |
| 373 | * (address mappings, register initial values, etc.) |
| 374 | * You should know what you are doing if you make changes here. |
| 375 | */ |
| 376 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 377 | #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_FLASH0_BASE |
| 378 | #define CONFIG_SYS_FLASH_SIZE CONFIG_SYS_FLASH0_SIZE |
| 379 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_SDRAM0_BASE |
| 380 | #define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_SDRAM0_SIZE |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 381 | |
| 382 | /*----------------------------------------------------------------------- |
| 383 | * Hard Reset Configuration Words |
| 384 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 385 | #if defined(CONFIG_SYS_SBC_BOOT_LOW) |
| 386 | # define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (HRCW_CIP | HRCW_BMS) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 387 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 388 | # define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (0) |
| 389 | #endif /* defined(CONFIG_SYS_SBC_BOOT_LOW) */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 390 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 391 | /* get the HRCW ISB field from CONFIG_SYS_IMMR */ |
| 392 | #define CONFIG_SYS_SBC_HRCW_IMMR ( ((CONFIG_SYS_IMMR & 0x10000000) >> 10) | \ |
| 393 | ((CONFIG_SYS_IMMR & 0x01000000) >> 7) | \ |
| 394 | ((CONFIG_SYS_IMMR & 0x00100000) >> 4) ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 395 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 396 | #define CONFIG_SYS_HRCW_MASTER ( HRCW_BPS11 | \ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 397 | HRCW_DPPC11 | \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 398 | CONFIG_SYS_SBC_HRCW_IMMR | \ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 399 | HRCW_MMR00 | \ |
| 400 | HRCW_LBPC11 | \ |
| 401 | HRCW_APPC10 | \ |
| 402 | HRCW_CS10PC00 | \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 403 | (CONFIG_SYS_SBC_MODCK_H & HRCW_MODCK_H1111) | \ |
| 404 | CONFIG_SYS_SBC_HRCW_BOOT_FLAGS ) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 405 | |
| 406 | /* no slaves */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 407 | #define CONFIG_SYS_HRCW_SLAVE1 0 |
| 408 | #define CONFIG_SYS_HRCW_SLAVE2 0 |
| 409 | #define CONFIG_SYS_HRCW_SLAVE3 0 |
| 410 | #define CONFIG_SYS_HRCW_SLAVE4 0 |
| 411 | #define CONFIG_SYS_HRCW_SLAVE5 0 |
| 412 | #define CONFIG_SYS_HRCW_SLAVE6 0 |
| 413 | #define CONFIG_SYS_HRCW_SLAVE7 0 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 414 | |
| 415 | /*----------------------------------------------------------------------- |
| 416 | * Definitions for initial stack pointer and data area (in DPRAM) |
| 417 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 418 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 419 | #define CONFIG_SYS_INIT_RAM_SIZE 0x4000 /* Size of used area in DPRAM */ |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 420 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 421 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 422 | |
| 423 | /*----------------------------------------------------------------------- |
| 424 | * Start addresses for the final memory configuration |
| 425 | * (Set up by the startup code) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 426 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
| 427 | * Note also that the logic that sets CONFIG_SYS_RAMBOOT is platform dependent. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 428 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 429 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH0_BASE |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 430 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 431 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Monitor */ |
| 432 | #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 kB for malloc() */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 433 | |
| 434 | /* |
| 435 | * For booting Linux, the board info and command line data |
| 436 | * have to be in the first 8 MB of memory, since this is |
| 437 | * the maximum mapped by the Linux kernel during initialization. |
| 438 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 439 | #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) /* Initial Memory map for Linux */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 440 | |
| 441 | /*----------------------------------------------------------------------- |
| 442 | * FLASH and environment organization |
| 443 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 444 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 445 | #define CONFIG_SYS_MAX_FLASH_SECT 32 /* max number of sectors on one chip */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 446 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 447 | #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Timeout for Flash Erase (in ms) */ |
| 448 | #define CONFIG_SYS_FLASH_WRITE_TOUT 1 /* Timeout for Flash Write (in ms) */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 449 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 450 | #define CONFIG_ENV_IS_IN_FLASH 1 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 451 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 452 | #ifdef CONFIG_ENV_IN_OWN_SECT |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 453 | # define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + (256 * 1024)) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 454 | # define CONFIG_ENV_SECT_SIZE (256 * 1024) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 455 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 456 | # define CONFIG_ENV_SIZE (16 * 1024)/* Size of Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 457 | # define CONFIG_ENV_ADD ((CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) - CONFIG_ENV_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 458 | # define CONFIG_ENV_SECT_SIZE (256 * 1024)/* see README - env sect real size */ |
| 459 | #endif /* CONFIG_ENV_IN_OWN_SECT */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 460 | |
| 461 | /*----------------------------------------------------------------------- |
| 462 | * Cache Configuration |
| 463 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 464 | #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 465 | |
Jon Loeliger | 72eb0ef | 2007-07-04 22:32:19 -0500 | [diff] [blame] | 466 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 467 | # define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 468 | #endif |
| 469 | |
| 470 | /*----------------------------------------------------------------------- |
| 471 | * HIDx - Hardware Implementation-dependent Registers 2-11 |
| 472 | *----------------------------------------------------------------------- |
| 473 | * HID0 also contains cache control - initially enable both caches and |
| 474 | * invalidate contents, then the final state leaves only the instruction |
| 475 | * cache enabled. Note that Power-On and Hard reset invalidate the caches, |
| 476 | * but Soft reset does not. |
| 477 | * |
| 478 | * HID1 has only read-only information - nothing to set. |
| 479 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 480 | #define CONFIG_SYS_HID0_INIT (HID0_ICE |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 481 | HID0_DCE |\ |
| 482 | HID0_ICFI |\ |
| 483 | HID0_DCI |\ |
| 484 | HID0_IFEM |\ |
| 485 | HID0_ABE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 486 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 487 | #define CONFIG_SYS_HID0_FINAL (HID0_ICE |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 488 | HID0_IFEM |\ |
| 489 | HID0_ABE |\ |
| 490 | HID0_EMCP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 491 | #define CONFIG_SYS_HID2 0 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 492 | |
| 493 | /*----------------------------------------------------------------------- |
| 494 | * RMR - Reset Mode Register |
| 495 | *----------------------------------------------------------------------- |
| 496 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 497 | #define CONFIG_SYS_RMR 0 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 498 | |
| 499 | /*----------------------------------------------------------------------- |
| 500 | * BCR - Bus Configuration 4-25 |
| 501 | *----------------------------------------------------------------------- |
| 502 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 503 | #define CONFIG_SYS_BCR (BCR_ETM) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 504 | |
| 505 | /*----------------------------------------------------------------------- |
| 506 | * SIUMCR - SIU Module Configuration 4-31 |
| 507 | *----------------------------------------------------------------------- |
| 508 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 509 | #define CONFIG_SYS_SIUMCR (SIUMCR_DPPC11 |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 510 | SIUMCR_L2CPC00 |\ |
| 511 | SIUMCR_APPC10 |\ |
| 512 | SIUMCR_MMR00) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 513 | |
| 514 | |
| 515 | /*----------------------------------------------------------------------- |
| 516 | * SYPCR - System Protection Control 11-9 |
| 517 | * SYPCR can only be written once after reset! |
| 518 | *----------------------------------------------------------------------- |
| 519 | * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable |
| 520 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 521 | #define CONFIG_SYS_SYPCR (SYPCR_SWTC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 522 | SYPCR_BMT |\ |
| 523 | SYPCR_PBME |\ |
| 524 | SYPCR_LBME |\ |
| 525 | SYPCR_SWRI |\ |
| 526 | SYPCR_SWP) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 527 | |
| 528 | /*----------------------------------------------------------------------- |
| 529 | * TMCNTSC - Time Counter Status and Control 4-40 |
| 530 | *----------------------------------------------------------------------- |
| 531 | * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk, |
| 532 | * and enable Time Counter |
| 533 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 534 | #define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 535 | TMCNTSC_ALR |\ |
| 536 | TMCNTSC_TCF |\ |
| 537 | TMCNTSC_TCE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 538 | |
| 539 | /*----------------------------------------------------------------------- |
| 540 | * PISCR - Periodic Interrupt Status and Control 4-42 |
| 541 | *----------------------------------------------------------------------- |
| 542 | * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable |
| 543 | * Periodic timer |
| 544 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 545 | #define CONFIG_SYS_PISCR (PISCR_PS |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 546 | PISCR_PTF |\ |
| 547 | PISCR_PTE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 548 | |
| 549 | /*----------------------------------------------------------------------- |
| 550 | * SCCR - System Clock Control 9-8 |
| 551 | *----------------------------------------------------------------------- |
| 552 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 553 | #define CONFIG_SYS_SCCR 0 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 554 | |
| 555 | /*----------------------------------------------------------------------- |
| 556 | * RCCR - RISC Controller Configuration 13-7 |
| 557 | *----------------------------------------------------------------------- |
| 558 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 559 | #define CONFIG_SYS_RCCR 0 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 560 | |
| 561 | /* |
| 562 | * Initialize Memory Controller: |
| 563 | * |
| 564 | * Bank Bus Machine PortSz Device |
| 565 | * ---- --- ------- ------ ------ |
| 566 | * 0 60x GPCM 32 bit FLASH (SIMM - 4MB) |
| 567 | * 1 60x GPCM 32 bit unused |
| 568 | * 2 60x SDRAM 64 bit SDRAM (DIMM - 16MB or 64MB) |
| 569 | * 3 60x SDRAM 64 bit unused |
| 570 | * 4 Local GPCM 8 bit IO (on board - 64k) |
| 571 | * 5 60x GPCM 8 bit unused |
| 572 | * 6 60x GPCM 8 bit unused |
| 573 | * 7 60x GPCM 8 bit unused |
| 574 | * |
| 575 | */ |
| 576 | |
| 577 | /*----------------------------------------------------------------------- |
| 578 | * BR0 - Base Register |
| 579 | * Ref: Section 10.3.1 on page 10-14 |
| 580 | * OR0 - Option Register |
| 581 | * Ref: Section 10.3.2 on page 10-18 |
| 582 | *----------------------------------------------------------------------- |
| 583 | */ |
| 584 | |
| 585 | /* Bank 0,1 - FLASH SIMM |
| 586 | * |
| 587 | * This expects the FLASH SIMM to be connected to *CS0 |
| 588 | * It consists of 4 AM29F016D parts. |
| 589 | * |
| 590 | * Note: For the 8 MB SIMM, *CS1 is unused. |
| 591 | */ |
| 592 | |
| 593 | /* BR0 is configured as follows: |
| 594 | * |
| 595 | * - Base address of 0x40000000 |
| 596 | * - 32 bit port size |
| 597 | * - Data errors checking is disabled |
| 598 | * - Read and write access |
| 599 | * - GPCM 60x bus |
| 600 | * - Access are handled by the memory controller according to MSEL |
| 601 | * - Not used for atomic operations |
| 602 | * - No data pipelining is done |
| 603 | * - Valid |
| 604 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 605 | #define CONFIG_SYS_BR0_PRELIM ((CONFIG_SYS_FLASH0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 606 | BRx_PS_32 |\ |
| 607 | BRx_MS_GPCM_P |\ |
| 608 | BRx_V) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 609 | |
| 610 | /* OR0 is configured as follows: |
| 611 | * |
| 612 | * - 8 MB |
| 613 | * - *BCTL0 is asserted upon access to the current memory bank |
| 614 | * - *CW / *WE are negated a quarter of a clock earlier |
| 615 | * - *CS is output at the same time as the address lines |
| 616 | * - Uses a clock cycle length of 5 |
| 617 | * - *PSDVAL is generated internally by the memory controller |
| 618 | * unless *GTA is asserted earlier externally. |
| 619 | * - Relaxed timing is generated by the GPCM for accesses |
| 620 | * initiated to this memory region. |
| 621 | * - One idle clock is inserted between a read access from the |
| 622 | * current bank and the next access. |
| 623 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 624 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 625 | ORxG_CSNT |\ |
| 626 | ORxG_ACS_DIV1 |\ |
| 627 | ORxG_SCY_5_CLK |\ |
| 628 | ORxG_TRLX |\ |
| 629 | ORxG_EHTR) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 630 | |
| 631 | /*----------------------------------------------------------------------- |
| 632 | * BR2 - Base Register |
| 633 | * Ref: Section 10.3.1 on page 10-14 |
| 634 | * OR2 - Option Register |
| 635 | * Ref: Section 10.3.2 on page 10-16 |
| 636 | *----------------------------------------------------------------------- |
| 637 | */ |
| 638 | |
| 639 | /* Bank 2 - SDRAM DIMM |
| 640 | * |
| 641 | * 16MB DIMM: P/N |
| 642 | * 64MB DIMM: P/N 1W-8864X8-4-P1-EST or |
| 643 | * MT4LSDT864AG-10EB1 (Micron) |
| 644 | * |
| 645 | * Note: *CS3 is unused for this DIMM |
| 646 | */ |
| 647 | |
| 648 | /* With a 16 MB or 64 MB DIMM, the BR2 is configured as follows: |
| 649 | * |
| 650 | * - Base address of 0x00000000 |
| 651 | * - 64 bit port size (60x bus only) |
| 652 | * - Data errors checking is disabled |
| 653 | * - Read and write access |
| 654 | * - SDRAM 60x bus |
| 655 | * - Access are handled by the memory controller according to MSEL |
| 656 | * - Not used for atomic operations |
| 657 | * - No data pipelining is done |
| 658 | * - Valid |
| 659 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 660 | #define CONFIG_SYS_BR2_PRELIM ((CONFIG_SYS_SDRAM0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 661 | BRx_PS_64 |\ |
| 662 | BRx_MS_SDRAM_P |\ |
| 663 | BRx_V) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 664 | |
| 665 | /* With a 16 MB DIMM, the OR2 is configured as follows: |
| 666 | * |
| 667 | * - 16 MB |
| 668 | * - 2 internal banks per device |
| 669 | * - Row start address bit is A9 with PSDMR[PBI] = 0 |
| 670 | * - 11 row address lines |
| 671 | * - Back-to-back page mode |
| 672 | * - Internal bank interleaving within save device enabled |
| 673 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 674 | #if (CONFIG_SYS_SDRAM0_SIZE == 16) |
| 675 | #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 676 | ORxS_BPD_2 |\ |
| 677 | ORxS_ROWST_PBI0_A9 |\ |
| 678 | ORxS_NUMR_11) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 679 | |
| 680 | /* With a 16 MB DIMM, the PSDMR is configured as follows: |
| 681 | * |
| 682 | * - Page Based Interleaving, |
| 683 | * - Refresh Enable, |
| 684 | * - Address Multiplexing where A5 is output on A14 pin |
| 685 | * (A6 on A15, and so on), |
| 686 | * - use address pins A16-A18 as bank select, |
| 687 | * - A9 is output on SDA10 during an ACTIVATE command, |
| 688 | * - earliest timing for ACTIVATE command after REFRESH command is 7 clocks, |
| 689 | * - earliest timing for ACTIVATE or REFRESH command after PRECHARGE command |
| 690 | * is 3 clocks, |
| 691 | * - earliest timing for READ/WRITE command after ACTIVATE command is |
| 692 | * 2 clocks, |
| 693 | * - earliest timing for PRECHARGE after last data was read is 1 clock, |
| 694 | * - earliest timing for PRECHARGE after last data was written is 1 clock, |
| 695 | * - CAS Latency is 2. |
| 696 | */ |
| 697 | |
| 698 | /*----------------------------------------------------------------------- |
| 699 | * PSDMR - 60x Bus SDRAM Mode Register |
| 700 | * Ref: Section 10.3.3 on page 10-21 |
| 701 | *----------------------------------------------------------------------- |
| 702 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 703 | #define CONFIG_SYS_PSDMR (PSDMR_RFEN |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 704 | PSDMR_SDAM_A14_IS_A5 |\ |
| 705 | PSDMR_BSMA_A16_A18 |\ |
| 706 | PSDMR_SDA10_PBI0_A9 |\ |
| 707 | PSDMR_RFRC_7_CLK |\ |
| 708 | PSDMR_PRETOACT_3W |\ |
| 709 | PSDMR_ACTTORW_2W |\ |
| 710 | PSDMR_LDOTOPRE_1C |\ |
| 711 | PSDMR_WRC_1C |\ |
| 712 | PSDMR_CL_2) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 713 | #endif /* (CONFIG_SYS_SDRAM0_SIZE == 16) */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 714 | |
| 715 | /* With a 64 MB DIMM, the OR2 is configured as follows: |
| 716 | * |
| 717 | * - 64 MB |
| 718 | * - 4 internal banks per device |
| 719 | * - Row start address bit is A8 with PSDMR[PBI] = 0 |
| 720 | * - 12 row address lines |
| 721 | * - Back-to-back page mode |
| 722 | * - Internal bank interleaving within save device enabled |
| 723 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 724 | #if (CONFIG_SYS_SDRAM0_SIZE == 64) |
| 725 | #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 726 | ORxS_BPD_4 |\ |
| 727 | ORxS_ROWST_PBI0_A8 |\ |
| 728 | ORxS_NUMR_12) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 729 | |
| 730 | /* With a 64 MB DIMM, the PSDMR is configured as follows: |
| 731 | * |
| 732 | * - Page Based Interleaving, |
| 733 | * - Refresh Enable, |
| 734 | * - Address Multiplexing where A5 is output on A14 pin |
| 735 | * (A6 on A15, and so on), |
| 736 | * - use address pins A14-A16 as bank select, |
| 737 | * - A9 is output on SDA10 during an ACTIVATE command, |
| 738 | * - earliest timing for ACTIVATE command after REFRESH command is 7 clocks, |
| 739 | * - earliest timing for ACTIVATE or REFRESH command after PRECHARGE command |
| 740 | * is 3 clocks, |
| 741 | * - earliest timing for READ/WRITE command after ACTIVATE command is |
| 742 | * 2 clocks, |
| 743 | * - earliest timing for PRECHARGE after last data was read is 1 clock, |
| 744 | * - earliest timing for PRECHARGE after last data was written is 1 clock, |
| 745 | * - CAS Latency is 2. |
| 746 | */ |
| 747 | |
| 748 | /*----------------------------------------------------------------------- |
| 749 | * PSDMR - 60x Bus SDRAM Mode Register |
| 750 | * Ref: Section 10.3.3 on page 10-21 |
| 751 | *----------------------------------------------------------------------- |
| 752 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 753 | #define CONFIG_SYS_PSDMR (PSDMR_RFEN |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 754 | PSDMR_SDAM_A14_IS_A5 |\ |
| 755 | PSDMR_BSMA_A14_A16 |\ |
| 756 | PSDMR_SDA10_PBI0_A9 |\ |
| 757 | PSDMR_RFRC_7_CLK |\ |
| 758 | PSDMR_PRETOACT_3W |\ |
| 759 | PSDMR_ACTTORW_2W |\ |
| 760 | PSDMR_LDOTOPRE_1C |\ |
| 761 | PSDMR_WRC_1C |\ |
| 762 | PSDMR_CL_2) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 763 | #endif /* (CONFIG_SYS_SDRAM0_SIZE == 64) */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 764 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 765 | #define CONFIG_SYS_PSRT 0x0e |
| 766 | #define CONFIG_SYS_MPTPR MPTPR_PTP_DIV32 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 767 | |
| 768 | |
| 769 | /*----------------------------------------------------------------------- |
| 770 | * BR4 - Base Register |
| 771 | * Ref: Section 10.3.1 on page 10-14 |
| 772 | * OR4 - Option Register |
| 773 | * Ref: Section 10.3.2 on page 10-18 |
| 774 | *----------------------------------------------------------------------- |
| 775 | */ |
| 776 | /* Bank 4 - Onboard Memory Mapped IO controller |
| 777 | * |
| 778 | * This expects the onboard IO controller to connected to *CS4 and |
| 779 | * the local bus. |
| 780 | * - Base address of 0xe0000000 |
| 781 | * - 8 bit port size (local bus only) |
| 782 | * - Read and write access |
| 783 | * - GPCM local bus |
| 784 | * - Not used for atomic operations |
| 785 | * - No data pipelining is done |
| 786 | * - Valid |
| 787 | * - extended hold time |
| 788 | * - 11 wait states |
| 789 | */ |
| 790 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 791 | #ifdef CONFIG_SYS_IO_BASE |
| 792 | # define CONFIG_SYS_BR4_PRELIM ((CONFIG_SYS_IO_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 793 | BRx_PS_8 |\ |
| 794 | BRx_MS_GPCM_L |\ |
| 795 | BRx_V) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 796 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 797 | # define CONFIG_SYS_OR4_PRELIM (ORxG_AM_MSK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 798 | ORxG_SCY_11_CLK |\ |
| 799 | ORxG_EHTR) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 800 | #endif /* CONFIG_SYS_IO_BASE */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 801 | #endif /* __CONFIG_H */ |