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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /* |
| 12 | * board/config.h - configuration options, board specific |
wdenk | a562e1b | 2005-01-09 18:21:42 +0000 | [diff] [blame] | 13 | * |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 14 | * "EP8260 H, V.1.1" |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 15 | * - 64M 60x Bus SDRAM |
| 16 | * - 32M Local Bus SDRAM |
| 17 | * - 16M Flash (4 x AM29DL323DB90WDI) |
| 18 | * - 128k NVRAM with RTC |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 19 | * |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 20 | * "EP8260 H2, V.1.3" (CONFIG_SYS_EP8260_H2) |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 21 | * - 300MHz/133MHz/66MHz |
| 22 | * - 64M 60x Bus SDRAM |
| 23 | * - 32M Local Bus SDRAM |
| 24 | * - 32M Flash |
| 25 | * - 128k NVRAM with RTC |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #ifndef __CONFIG_H |
| 29 | #define __CONFIG_H |
| 30 | |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 31 | /* Define this to enable support the EP8260 H2 version */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 32 | #define CONFIG_SYS_EP8260_H2 1 |
| 33 | /* #undef CONFIG_SYS_EP8260_H2 */ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 34 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 35 | #define CONFIG_SYS_TEXT_BASE 0xFFF00000 |
| 36 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 37 | #define CONFIG_CPM2 1 /* Has a CPM2 */ |
| 38 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 39 | /* What is the oscillator's (UX2) frequency in Hz? */ |
| 40 | #define CONFIG_8260_CLKIN (66 * 1000 * 1000) |
| 41 | |
| 42 | /*----------------------------------------------------------------------- |
| 43 | * MODCK_H & MODCLK[1-3] - Ref: Section 9.2 in MPC8206 User Manual |
| 44 | *----------------------------------------------------------------------- |
| 45 | * What should MODCK_H be? It is dependent on the oscillator |
| 46 | * frequency, MODCK[1-3], and desired CPM and core frequencies. |
| 47 | * Here are some example values (all frequencies are in MHz): |
| 48 | * |
| 49 | * MODCK_H MODCK[1-3] Osc CPM Core |
| 50 | * ------- ---------- --- --- ---- |
| 51 | * 0x2 0x2 33 133 133 |
| 52 | * 0x2 0x3 33 133 166 |
| 53 | * 0x2 0x4 33 133 200 |
| 54 | * 0x2 0x5 33 133 233 |
| 55 | * 0x2 0x6 33 133 266 |
| 56 | * |
| 57 | * 0x5 0x5 66 133 133 |
| 58 | * 0x5 0x6 66 133 166 |
| 59 | * 0x5 0x7 66 133 200 * |
| 60 | * 0x6 0x0 66 133 233 |
| 61 | * 0x6 0x1 66 133 266 |
| 62 | * 0x6 0x2 66 133 300 |
| 63 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_SYS_EP8260_H2 |
| 65 | #define CONFIG_SYS_SBC_MODCK_H (HRCW_MODCK_H0110) |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 66 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 67 | #define CONFIG_SYS_SBC_MODCK_H (HRCW_MODCK_H0110) |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 68 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 69 | |
| 70 | /* Define this if you want to boot from 0x00000100. If you don't define |
| 71 | * this, you will need to program the bootloader to 0xfff00000, and |
| 72 | * get the hardware reset config words at 0xfe000000. The simplest |
| 73 | * way to do that is to program the bootloader at both addresses. |
| 74 | * It is suggested that you just let U-Boot live at 0x00000000. |
| 75 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | /* #define CONFIG_SYS_SBC_BOOT_LOW 1 */ /* only for HRCW */ |
| 77 | /* #undef CONFIG_SYS_SBC_BOOT_LOW */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 78 | |
| 79 | /* The reset command will not work as expected if the reset address does |
| 80 | * not point to the correct address. |
| 81 | */ |
| 82 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 83 | #define CONFIG_SYS_RESET_ADDRESS 0xFFF00100 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 84 | |
| 85 | /* What should the base address of the main FLASH be and how big is |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 86 | * it (in MBytes)? This must contain CONFIG_SYS_TEXT_BASE from board/ep8260/config.mk |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 87 | * The main FLASH is whichever is connected to *CS0. U-Boot expects |
| 88 | * this to be the SIMM. |
| 89 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 90 | #ifdef CONFIG_SYS_EP8260_H2 |
| 91 | #define CONFIG_SYS_FLASH0_BASE 0xFE000000 |
| 92 | #define CONFIG_SYS_FLASH0_SIZE 32 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 93 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #define CONFIG_SYS_FLASH0_BASE 0xFF000000 |
| 95 | #define CONFIG_SYS_FLASH0_SIZE 16 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 96 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 97 | |
| 98 | /* What should the base address of the secondary FLASH be and how big |
| 99 | * is it (in Mbytes)? The secondary FLASH is whichever is connected |
| 100 | * to *CS6. U-Boot expects this to be the on board FLASH. If you don't |
| 101 | * want it enabled, don't define these constants. |
| 102 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | #define CONFIG_SYS_FLASH1_BASE 0 |
| 104 | #define CONFIG_SYS_FLASH1_SIZE 0 |
| 105 | #undef CONFIG_SYS_FLASH1_BASE |
| 106 | #undef CONFIG_SYS_FLASH1_SIZE |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 107 | |
| 108 | /* What should be the base address of SDRAM DIMM (60x bus) and how big is |
| 109 | * it (in Mbytes)? |
| 110 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 111 | #define CONFIG_SYS_SDRAM0_BASE 0x00000000 |
| 112 | #define CONFIG_SYS_SDRAM0_SIZE 64 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 113 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | /* define CONFIG_SYS_LSDRAM if you want to enable the 32M SDRAM on the |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 115 | * local bus (8260 local bus is NOT cacheable!) |
| 116 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | /* #define CONFIG_SYS_LSDRAM */ |
| 118 | #undef CONFIG_SYS_LSDRAM |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 119 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | #ifdef CONFIG_SYS_LSDRAM |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 121 | /* What should be the base address of SDRAM DIMM (local bus) and how big is |
| 122 | * it (in Mbytes)? |
| 123 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 124 | #define CONFIG_SYS_SDRAM1_BASE 0x04000000 |
| 125 | #define CONFIG_SYS_SDRAM1_SIZE 32 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 126 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | #define CONFIG_SYS_SDRAM1_BASE 0 |
| 128 | #define CONFIG_SYS_SDRAM1_SIZE 0 |
| 129 | #undef CONFIG_SYS_SDRAM1_BASE |
| 130 | #undef CONFIG_SYS_SDRAM1_SIZE |
| 131 | #endif /* CONFIG_SYS_LSDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 132 | |
| 133 | /* What should be the base address of NVRAM and how big is |
| 134 | * it (in Bytes) |
| 135 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 136 | #define CONFIG_SYS_NVRAM_BASE_ADDR 0xFA080000 |
| 137 | #define CONFIG_SYS_NVRAM_SIZE (128*1024)-16 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 138 | |
| 139 | /* The RTC is a Dallas DS1556 |
| 140 | */ |
| 141 | #define CONFIG_RTC_DS1556 |
| 142 | |
| 143 | /* What should be the base address of the LEDs and switch S0? |
| 144 | * If you don't want them enabled, don't define this. |
| 145 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 146 | #define CONFIG_SYS_LED_BASE 0x00000000 |
| 147 | #undef CONFIG_SYS_LED_BASE |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | * select serial console configuration |
| 151 | * |
| 152 | * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then |
| 153 | * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4 |
| 154 | * for SCC). |
| 155 | * |
| 156 | * if CONFIG_CONS_NONE is defined, then the serial console routines must |
| 157 | * defined elsewhere. |
| 158 | */ |
| 159 | #define CONFIG_CONS_ON_SMC /* define if console on SMC */ |
| 160 | #undef CONFIG_CONS_ON_SCC /* define if console on SCC */ |
| 161 | #undef CONFIG_CONS_NONE /* define if console on neither */ |
| 162 | #define CONFIG_CONS_INDEX 1 /* which SMC/SCC channel for console */ |
| 163 | |
| 164 | /* |
| 165 | * select ethernet configuration |
| 166 | * |
| 167 | * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then |
| 168 | * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3 |
| 169 | * for FCC) |
| 170 | * |
| 171 | * 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] | 172 | * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 173 | */ |
| 174 | #undef CONFIG_ETHER_ON_SCC /* define if ethernet on SCC */ |
| 175 | #define CONFIG_ETHER_ON_FCC /* define if ethernet on FCC */ |
| 176 | #undef CONFIG_ETHER_NONE /* define if ethernet on neither */ |
| 177 | #define CONFIG_ETHER_INDEX 3 /* which SCC/FCC channel for ethernet */ |
| 178 | |
| 179 | #if ( CONFIG_ETHER_INDEX == 3 ) |
| 180 | |
| 181 | /* |
| 182 | * - Rx-CLK is CLK15 |
| 183 | * - Tx-CLK is CLK16 |
| 184 | * - RAM for BD/Buffers is on the local Bus (see 28-13) |
| 185 | * - Enable Half Duplex in FSMR |
| 186 | */ |
Mike Frysinger | d4590da | 2011-10-17 05:38:58 +0000 | [diff] [blame] | 187 | # define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3|CMXFCR_RF3CS_MSK|CMXFCR_TF3CS_MSK) |
| 188 | # define CONFIG_SYS_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15|CMXFCR_TF3CS_CLK16) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * - RAM for BD/Buffers is on the local Bus (see 28-13) |
| 192 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 193 | #ifdef CONFIG_SYS_LSDRAM |
| 194 | #define CONFIG_SYS_CPMFCR_RAMTYPE 3 |
| 195 | #else /* CONFIG_SYS_LSDRAM */ |
| 196 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 |
| 197 | #endif /* CONFIG_SYS_LSDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 198 | |
| 199 | /* - Enable Half Duplex in FSMR */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 200 | /* # define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE|FCC_PSMR_LPB) */ |
| 201 | # define CONFIG_SYS_FCC_PSMR 0 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 202 | |
| 203 | #else /* CONFIG_ETHER_INDEX */ |
| 204 | # error "on EP8260 ethernet must be FCC3" |
| 205 | #endif /* CONFIG_ETHER_INDEX */ |
| 206 | |
| 207 | /* |
| 208 | * select i2c support configuration |
| 209 | * |
| 210 | * Supported configurations are {none, software, hardware} drivers. |
| 211 | * If the software driver is chosen, there are some additional |
| 212 | * configuration items that the driver uses to drive the port pins. |
| 213 | */ |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 214 | #define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */ |
| 215 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 216 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 217 | #define CONFIG_SYS_I2C_SLAVE 0x7F /* This is for HARD, must go */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 218 | |
| 219 | /* |
| 220 | * Software (bit-bang) I2C driver configuration |
| 221 | */ |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 222 | #ifdef CONFIG_SYS_I2C_SOFT |
| 223 | #define CONFIG_SYS_I2C |
| 224 | #define CONFIG_SYS_I2C_SOFT_SPEED 50000 |
| 225 | #define CONFIG_SYS_I2C_SOFT_SLAVE 0xFE |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 226 | #define I2C_PORT 3 /* Port A=0, B=1, C=2, D=3 */ |
| 227 | #define I2C_ACTIVE (iop->pdir |= 0x00010000) |
| 228 | #define I2C_TRISTATE (iop->pdir &= ~0x00010000) |
| 229 | #define I2C_READ ((iop->pdat & 0x00010000) != 0) |
| 230 | #define I2C_SDA(bit) if(bit) iop->pdat |= 0x00010000; \ |
| 231 | else iop->pdat &= ~0x00010000 |
| 232 | #define I2C_SCL(bit) if(bit) iop->pdat |= 0x00020000; \ |
| 233 | else iop->pdat &= ~0x00020000 |
| 234 | #define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */ |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 235 | #endif /* CONFIG_SYS_I2C_SOFT */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 236 | |
| 237 | /* #define CONFIG_RTC_DS174x */ |
| 238 | |
| 239 | /* Define this to reserve an entire FLASH sector (256 KB) for |
| 240 | * environment variables. Otherwise, the environment will be |
| 241 | * put in the same sector as U-Boot, and changing variables |
| 242 | * will erase U-Boot temporarily |
| 243 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 244 | #define CONFIG_ENV_IN_OWN_SECT |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 245 | |
| 246 | /* Define to allow the user to overwrite serial and ethaddr */ |
| 247 | #define CONFIG_ENV_OVERWRITE |
| 248 | |
| 249 | /* What should the console's baud rate be? */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 250 | #ifdef CONFIG_SYS_EP8260_H2 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 251 | #define CONFIG_BAUDRATE 9600 |
| 252 | #else |
wdenk | a562e1b | 2005-01-09 18:21:42 +0000 | [diff] [blame] | 253 | #define CONFIG_BAUDRATE 115200 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 254 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 255 | |
| 256 | /* Ethernet MAC address */ |
| 257 | #define CONFIG_ETHADDR 00:10:EC:00:30:8C |
| 258 | |
| 259 | #define CONFIG_IPADDR 192.168.254.130 |
| 260 | #define CONFIG_SERVERIP 192.168.254.49 |
| 261 | |
| 262 | /* Set to a positive value to delay for running BOOTCOMMAND */ |
| 263 | #define CONFIG_BOOTDELAY -1 |
| 264 | |
| 265 | /* undef this to save memory */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 266 | #define CONFIG_SYS_LONGHELP |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 267 | |
| 268 | /* Monitor Command Prompt */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 269 | #define CONFIG_SYS_PROMPT "=> " |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 270 | |
| 271 | /* Define this variable to enable the "hush" shell (from |
| 272 | Busybox) as command line interpreter, thus enabling |
| 273 | powerful command line syntax like |
| 274 | if...then...else...fi conditionals or `&&' and '||' |
| 275 | constructs ("shell scripts"). |
| 276 | If undefined, you get the old, much simpler behaviour |
| 277 | with a somewhat smapper memory footprint. |
| 278 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 279 | #define CONFIG_SYS_HUSH_PARSER |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 280 | |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 281 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 282 | /* |
Jon Loeliger | 80ff4f9 | 2007-07-10 09:29:01 -0500 | [diff] [blame] | 283 | * BOOTP options |
| 284 | */ |
| 285 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 286 | #define CONFIG_BOOTP_BOOTPATH |
| 287 | #define CONFIG_BOOTP_GATEWAY |
| 288 | #define CONFIG_BOOTP_HOSTNAME |
| 289 | |
| 290 | |
| 291 | /* |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 292 | * Command line configuration. |
| 293 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 4e62041 | 2007-10-24 18:16:01 +0200 | [diff] [blame] | 294 | #include <config_cmd_default.h> |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 295 | |
Jean-Christophe PLAGNIOL-VILLARD | 4e62041 | 2007-10-24 18:16:01 +0200 | [diff] [blame] | 296 | #define CONFIG_CMD_ASKENV |
| 297 | #define CONFIG_CMD_BEDBUG |
| 298 | #define CONFIG_CMD_CACHE |
| 299 | #define CONFIG_CMD_CDP |
| 300 | #define CONFIG_CMD_DATE |
| 301 | #define CONFIG_CMD_DIAG |
| 302 | #define CONFIG_CMD_ELF |
| 303 | #define CONFIG_CMD_FAT |
| 304 | #define CONFIG_CMD_I2C |
| 305 | #define CONFIG_CMD_IMMAP |
| 306 | #define CONFIG_CMD_IRQ |
| 307 | #define CONFIG_CMD_PING |
| 308 | #define CONFIG_CMD_PORTIO |
| 309 | #define CONFIG_CMD_REGINFO |
| 310 | #define CONFIG_CMD_SAVES |
| 311 | #define CONFIG_CMD_SDRAM |
| 312 | #define CONFIG_CMD_SNTP |
| 313 | |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 314 | #undef CONFIG_CMD_XIMG |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 315 | |
| 316 | /* Where do the internal registers live? */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 317 | #define CONFIG_SYS_IMMR 0xF0000000 |
| 318 | #define CONFIG_SYS_DEFAULT_IMMR 0x00010000 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 319 | |
| 320 | /* Where do the on board registers (CS4) live? */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 321 | #define CONFIG_SYS_REGS_BASE 0xFA000000 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 322 | |
| 323 | /***************************************************************************** |
| 324 | * |
| 325 | * You should not have to modify any of the following settings |
| 326 | * |
| 327 | *****************************************************************************/ |
| 328 | |
| 329 | #define CONFIG_MPC8260 1 /* This is an MPC8260 CPU */ |
| 330 | #define CONFIG_EP8260 11 /* on an Embedded Planet EP8260 Board, Rev. 11 */ |
| 331 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 332 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 333 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 334 | /* |
| 335 | * Miscellaneous configurable options |
| 336 | */ |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 337 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 338 | # define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 339 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 340 | # define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 341 | #endif |
| 342 | |
| 343 | /* Print Buffer Size */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 344 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)+16) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 345 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 346 | #define CONFIG_SYS_MAXARGS 8 /* max number of command args */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 347 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 348 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 349 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 350 | #ifdef CONFIG_SYS_LSDRAM |
| 351 | #define CONFIG_SYS_MEMTEST_START 0x04000000 /* memtest works on */ |
| 352 | #define CONFIG_SYS_MEMTEST_END 0x06000000 /* 64-96 MB in SDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 353 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 354 | #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */ |
| 355 | #define CONFIG_SYS_MEMTEST_END 0x02000000 /* 0-32 MB in SDRAM */ |
| 356 | #endif /* CONFIG_SYS_LSDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 357 | |
| 358 | #define CONFIG_CLOCKS_IN_MHZ 1 /* clocks passsed to Linux in MHz */ |
| 359 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 360 | #define CONFIG_SYS_LOAD_ADDR 0x00100000 /* default load address */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 361 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 362 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 363 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 364 | /* |
| 365 | * Low Level Configuration Settings |
| 366 | * (address mappings, register initial values, etc.) |
| 367 | * You should know what you are doing if you make changes here. |
| 368 | */ |
| 369 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 370 | #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_FLASH0_BASE |
| 371 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_SDRAM0_BASE |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 372 | |
| 373 | /*----------------------------------------------------------------------- |
| 374 | * Hard Reset Configuration Words |
| 375 | */ |
| 376 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 377 | #if defined(CONFIG_SYS_SBC_BOOT_LOW) |
| 378 | # define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (HRCW_CIP | HRCW_BMS) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 379 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 380 | # define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (0x00000000) |
| 381 | #endif /* defined(CONFIG_SYS_SBC_BOOT_LOW) */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 382 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 383 | #ifdef CONFIG_SYS_EP8260_H2 |
| 384 | /* get the HRCW ISB field from CONFIG_SYS_DEFAULT_IMMR */ |
| 385 | #define CONFIG_SYS_SBC_HRCW_IMMR ( ((CONFIG_SYS_DEFAULT_IMMR & 0x10000000) >> 10) |\ |
| 386 | ((CONFIG_SYS_DEFAULT_IMMR & 0x01000000) >> 7) |\ |
| 387 | ((CONFIG_SYS_DEFAULT_IMMR & 0x00100000) >> 4) ) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 388 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 389 | #define CONFIG_SYS_HRCW_MASTER (HRCW_EBM |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 390 | HRCW_L2CPC01 |\ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 391 | CONFIG_SYS_SBC_HRCW_IMMR |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 392 | HRCW_APPC10 |\ |
| 393 | HRCW_CS10PC01 |\ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 394 | CONFIG_SYS_SBC_MODCK_H |\ |
| 395 | CONFIG_SYS_SBC_HRCW_BOOT_FLAGS) |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 396 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 397 | #define CONFIG_SYS_HRCW_MASTER 0x10400245 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 398 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 399 | |
| 400 | /* no slaves */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 401 | #define CONFIG_SYS_HRCW_SLAVE1 0 |
| 402 | #define CONFIG_SYS_HRCW_SLAVE2 0 |
| 403 | #define CONFIG_SYS_HRCW_SLAVE3 0 |
| 404 | #define CONFIG_SYS_HRCW_SLAVE4 0 |
| 405 | #define CONFIG_SYS_HRCW_SLAVE5 0 |
| 406 | #define CONFIG_SYS_HRCW_SLAVE6 0 |
| 407 | #define CONFIG_SYS_HRCW_SLAVE7 0 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 408 | |
| 409 | /*----------------------------------------------------------------------- |
| 410 | * Definitions for initial stack pointer and data area (in DPRAM) |
| 411 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 412 | #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 413 | #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] | 414 | #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] | 415 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 416 | |
| 417 | /*----------------------------------------------------------------------- |
| 418 | * Start addresses for the final memory configuration |
| 419 | * (Set up by the startup code) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 420 | * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0 |
| 421 | * Note also that the logic that sets CONFIG_SYS_RAMBOOT is platform dependent. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 422 | */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 423 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 424 | |
| 425 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 426 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 427 | # define CONFIG_SYS_RAMBOOT |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 428 | #endif |
| 429 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 430 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ |
| 431 | #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 432 | |
| 433 | /* |
| 434 | * For booting Linux, the board info and command line data |
| 435 | * have to be in the first 8 MB of memory, since this is |
| 436 | * the maximum mapped by the Linux kernel during initialization. |
| 437 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 438 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 439 | |
| 440 | /*----------------------------------------------------------------------- |
| 441 | * FLASH and environment organization |
| 442 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 443 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 444 | #ifdef CONFIG_SYS_EP8260_H2 |
| 445 | #define CONFIG_SYS_MAX_FLASH_SECT 128 /* max number of sectors on one chip */ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 446 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 447 | #define CONFIG_SYS_MAX_FLASH_SECT 71 /* max number of sectors on one chip */ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 448 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 449 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 450 | #ifdef CONFIG_SYS_EP8260_H2 |
| 451 | #define CONFIG_SYS_FLASH_ERASE_TOUT 240000 /* Timeout for Flash Erase (in ms) */ |
| 452 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
Wolfgang Denk | bd51626 | 2005-09-25 16:56:15 +0200 | [diff] [blame] | 453 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 454 | #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Timeout for Flash Erase (in ms) */ |
| 455 | #define CONFIG_SYS_FLASH_WRITE_TOUT 1 /* Timeout for Flash Write (in ms) */ |
Wolfgang Denk | bd51626 | 2005-09-25 16:56:15 +0200 | [diff] [blame] | 456 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 457 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 458 | #ifndef CONFIG_SYS_RAMBOOT |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 459 | # define CONFIG_ENV_IS_IN_FLASH 1 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 460 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 461 | # ifdef CONFIG_ENV_IN_OWN_SECT |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 462 | # define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + 0x40000) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 463 | # define CONFIG_ENV_SECT_SIZE 0x40000 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 464 | # else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 465 | # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - CONFIG_ENV_SECT_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 466 | # define CONFIG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */ |
| 467 | # define CONFIG_ENV_SECT_SIZE 0x10000 /* see README - env sect real size */ |
| 468 | # endif /* CONFIG_ENV_IN_OWN_SECT */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 469 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 9314cee | 2008-09-10 22:47:59 +0200 | [diff] [blame] | 470 | # define CONFIG_ENV_IS_IN_NVRAM 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 471 | # define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 472 | # define CONFIG_ENV_SIZE 0x200 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 473 | #endif /* CONFIG_SYS_RAMBOOT */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 474 | |
| 475 | /*----------------------------------------------------------------------- |
| 476 | * Cache Configuration |
| 477 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 478 | #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 479 | |
Jon Loeliger | 1bec3d3 | 2007-07-04 22:32:10 -0500 | [diff] [blame] | 480 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 481 | # define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 482 | #endif |
| 483 | |
| 484 | /*----------------------------------------------------------------------- |
| 485 | * HIDx - Hardware Implementation-dependent Registers 2-11 |
| 486 | *----------------------------------------------------------------------- |
| 487 | * HID0 also contains cache control - initially enable both caches and |
| 488 | * invalidate contents, then the final state leaves only the instruction |
| 489 | * cache enabled. Note that Power-On and Hard reset invalidate the caches, |
| 490 | * but Soft reset does not. |
| 491 | * |
| 492 | * HID1 has only read-only information - nothing to set. |
| 493 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 494 | #define CONFIG_SYS_HID0_INIT (HID0_ICE |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 495 | HID0_DCE |\ |
| 496 | HID0_ICFI |\ |
| 497 | HID0_DCI |\ |
| 498 | HID0_IFEM |\ |
| 499 | HID0_ABE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 500 | #ifdef CONFIG_SYS_LSDRAM |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 501 | /* 8260 local bus is NOT cacheable */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 502 | #define CONFIG_SYS_HID0_FINAL (/*HID0_ICE |*/\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 503 | HID0_IFEM |\ |
| 504 | HID0_ABE |\ |
| 505 | HID0_EMCP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 506 | #else /* !CONFIG_SYS_LSDRAM */ |
| 507 | #define CONFIG_SYS_HID0_FINAL (HID0_ICE |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 508 | HID0_IFEM |\ |
| 509 | HID0_ABE |\ |
| 510 | HID0_EMCP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 511 | #endif /* CONFIG_SYS_LSDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 512 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 513 | #define CONFIG_SYS_HID2 0 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 514 | |
| 515 | /*----------------------------------------------------------------------- |
| 516 | * RMR - Reset Mode Register |
| 517 | *----------------------------------------------------------------------- |
| 518 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 519 | #define CONFIG_SYS_RMR 0 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 520 | |
| 521 | /*----------------------------------------------------------------------- |
| 522 | * BCR - Bus Configuration 4-25 |
| 523 | *----------------------------------------------------------------------- |
| 524 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 525 | #define CONFIG_SYS_BCR (BCR_EBM |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 526 | BCR_PLDP |\ |
| 527 | BCR_EAV |\ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 528 | BCR_NPQM0) |
| 529 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 530 | /*----------------------------------------------------------------------- |
| 531 | * SIUMCR - SIU Module Configuration 4-31 |
| 532 | *----------------------------------------------------------------------- |
| 533 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 534 | #define CONFIG_SYS_SIUMCR (SIUMCR_L2CPC01 |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 535 | SIUMCR_APPC10 |\ |
| 536 | SIUMCR_CS10PC01) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 537 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 538 | /*----------------------------------------------------------------------- |
| 539 | * SYPCR - System Protection Control 11-9 |
| 540 | * SYPCR can only be written once after reset! |
| 541 | *----------------------------------------------------------------------- |
| 542 | * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable |
| 543 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 544 | #ifdef CONFIG_SYS_EP8260_H2 |
wdenk | a562e1b | 2005-01-09 18:21:42 +0000 | [diff] [blame] | 545 | /* TBD: Find out why setting the BMT to 0xff causes the FCC to |
| 546 | * generate TX buffer underrun errors for large packets under |
| 547 | * Linux |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 548 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 549 | #define CONFIG_SYS_SYPCR_BMT 0x00000600 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 550 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 551 | #define CONFIG_SYS_SYPCR_BMT SYPCR_BMT |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 552 | #endif |
| 553 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 554 | #ifdef CONFIG_SYS_LSDRAM |
| 555 | #define CONFIG_SYS_SYPCR (SYPCR_SWTC |\ |
| 556 | CONFIG_SYS_SYPCR_BMT |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 557 | SYPCR_PBME |\ |
| 558 | SYPCR_LBME |\ |
| 559 | SYPCR_SWP) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 560 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 561 | #define CONFIG_SYS_SYPCR (SYPCR_SWTC |\ |
| 562 | CONFIG_SYS_SYPCR_BMT |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 563 | SYPCR_PBME |\ |
| 564 | SYPCR_SWP) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 565 | #endif |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 566 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 567 | /*----------------------------------------------------------------------- |
| 568 | * TMCNTSC - Time Counter Status and Control 4-40 |
| 569 | *----------------------------------------------------------------------- |
| 570 | * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk, |
| 571 | * and enable Time Counter |
| 572 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 573 | #define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 574 | TMCNTSC_ALR |\ |
| 575 | TMCNTSC_TCF |\ |
| 576 | TMCNTSC_TCE) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 577 | |
| 578 | /*----------------------------------------------------------------------- |
| 579 | * PISCR - Periodic Interrupt Status and Control 4-42 |
| 580 | *----------------------------------------------------------------------- |
| 581 | * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable |
| 582 | * Periodic timer |
| 583 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 584 | #ifdef CONFIG_SYS_EP8260_H2 |
| 585 | #define CONFIG_SYS_PISCR (PISCR_PS |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 586 | PISCR_PTF |\ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 587 | PISCR_PTE) |
| 588 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 589 | #define CONFIG_SYS_PISCR 0 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 590 | #endif |
| 591 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 592 | /*----------------------------------------------------------------------- |
| 593 | * SCCR - System Clock Control 9-8 |
| 594 | *----------------------------------------------------------------------- |
| 595 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 596 | #ifdef CONFIG_SYS_EP8260_H2 |
| 597 | #define CONFIG_SYS_SCCR (SCCR_DFBRG00) |
Wolfgang Denk | bd51626 | 2005-09-25 16:56:15 +0200 | [diff] [blame] | 598 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 599 | #define CONFIG_SYS_SCCR (SCCR_DFBRG01) |
Wolfgang Denk | bd51626 | 2005-09-25 16:56:15 +0200 | [diff] [blame] | 600 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 601 | |
| 602 | /*----------------------------------------------------------------------- |
| 603 | * RCCR - RISC Controller Configuration 13-7 |
| 604 | *----------------------------------------------------------------------- |
| 605 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 606 | #define CONFIG_SYS_RCCR 0 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 607 | |
| 608 | /*----------------------------------------------------------------------- |
| 609 | * MPTPR - Memory Refresh Timer Prescale Register 10-32 |
| 610 | *----------------------------------------------------------------------- |
| 611 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 612 | #define CONFIG_SYS_MPTPR (0x0A00 & MPTPR_PTP_MSK) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 613 | |
| 614 | /* |
| 615 | * Init Memory Controller: |
| 616 | * |
| 617 | * Bank Bus Machine PortSz Device |
| 618 | * ---- --- ------- ------ ------ |
| 619 | * 0 60x GPCM 64 bit FLASH (BGA - 16MB AMD AM29DL323DB90WDI) |
| 620 | * 1 60x SDRAM 64 bit SDRAM (BGA - 64MB Micron 48LC8M16A2TG) |
| 621 | * 2 Local SDRAM 32 bit SDRAM (BGA - 32MB Micron 48LC8M16A2TG) |
| 622 | * 3 unused |
| 623 | * 4 60x GPCM 8 bit Board Regs, NVRTC |
| 624 | * 5 unused |
| 625 | * 6 unused |
| 626 | * 7 unused |
| 627 | * 8 PCMCIA |
| 628 | * 9 unused |
| 629 | * 10 unused |
| 630 | * 11 unused |
| 631 | */ |
| 632 | |
| 633 | /*----------------------------------------------------------------------- |
| 634 | * BRx - Base Register |
| 635 | * Ref: Section 10.3.1 on page 10-14 |
| 636 | * ORx - Option Register |
| 637 | * Ref: Section 10.3.2 on page 10-18 |
| 638 | *----------------------------------------------------------------------- |
| 639 | */ |
| 640 | |
| 641 | /* Bank 0 - FLASH |
| 642 | * |
| 643 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 644 | #define CONFIG_SYS_BR0_PRELIM ((CONFIG_SYS_FLASH0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 645 | BRx_PS_64 |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 646 | BRx_DECC_NONE |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 647 | BRx_MS_GPCM_P |\ |
| 648 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 649 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 650 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 651 | ORxG_CSNT |\ |
| 652 | ORxG_ACS_DIV1 |\ |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 653 | ORxG_SCY_8_CLK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 654 | ORxG_EHTR) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 655 | |
| 656 | /* Bank 1 - SDRAM |
| 657 | * PSDRAM |
| 658 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 659 | #define CONFIG_SYS_BR1_PRELIM ((CONFIG_SYS_SDRAM0_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 660 | BRx_PS_64 |\ |
| 661 | BRx_MS_SDRAM_P |\ |
| 662 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 663 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 664 | #define CONFIG_SYS_OR1_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM0_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 665 | ORxS_BPD_4 |\ |
| 666 | ORxS_ROWST_PBI1_A6 |\ |
| 667 | ORxS_NUMR_12) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 668 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 669 | #ifdef CONFIG_SYS_EP8260_H2 |
| 670 | #define CONFIG_SYS_PSDMR 0xC34E246E |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 671 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 672 | #define CONFIG_SYS_PSDMR 0xC34E2462 |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 673 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 674 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 675 | #define CONFIG_SYS_PSRT 0x64 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 676 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 677 | #ifdef CONFIG_SYS_LSDRAM |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 678 | /* Bank 2 - SDRAM |
| 679 | * LSDRAM |
| 680 | */ |
| 681 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 682 | #define CONFIG_SYS_BR2_PRELIM ((CONFIG_SYS_SDRAM1_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 683 | BRx_PS_32 |\ |
| 684 | BRx_MS_SDRAM_L |\ |
| 685 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 686 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 687 | #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM1_SIZE) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 688 | ORxS_BPD_4 |\ |
| 689 | ORxS_ROWST_PBI0_A9 |\ |
| 690 | ORxS_NUMR_12) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 691 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 692 | #define CONFIG_SYS_LSDMR 0x416A2562 |
| 693 | #define CONFIG_SYS_LSRT 0x64 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 694 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 695 | #define CONFIG_SYS_LSRT 0x0 |
| 696 | #endif /* CONFIG_SYS_LSDRAM */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 697 | |
| 698 | /* Bank 4 - On board registers |
| 699 | * NVRTC and BCSR |
| 700 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 701 | #define CONFIG_SYS_BR4_PRELIM ((CONFIG_SYS_REGS_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 702 | BRx_PS_8 |\ |
| 703 | BRx_MS_GPCM_P |\ |
| 704 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 705 | /* |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 706 | #define CONFIG_SYS_OR4_PRELIM (ORxG_AM_MSK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 707 | ORxG_CSNT |\ |
| 708 | ORxG_ACS_DIV1 |\ |
| 709 | ORxG_SCY_10_CLK |\ |
| 710 | ORxG_TRLX) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 711 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 712 | #define CONFIG_SYS_OR4_PRELIM 0xfff00854 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 713 | |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 714 | #ifdef _NOT_USED_SINCE_NOT_WORKING_ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 715 | /* Bank 8 - On board registers |
| 716 | * PCMCIA (currently not working!) |
| 717 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 718 | #define CONFIG_SYS_BR8_PRELIM ((CONFIG_SYS_REGS_BASE & BRx_BA_MSK) |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 719 | BRx_PS_16 |\ |
| 720 | BRx_MS_GPCM_P |\ |
| 721 | BRx_V) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 722 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 723 | #define CONFIG_SYS_OR8_PRELIM (ORxG_AM_MSK |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 724 | ORxG_CSNT |\ |
| 725 | ORxG_ACS_DIV1 |\ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 726 | ORxG_SETA |\ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 727 | ORxG_SCY_10_CLK) |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 728 | #endif |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 729 | |
| 730 | /* |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 731 | * JFFS2 partitions |
| 732 | * |
| 733 | */ |
| 734 | /* No command line, one static partition, whole device */ |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 735 | #undef CONFIG_CMD_MTDPARTS |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 736 | #define CONFIG_JFFS2_DEV "nor0" |
| 737 | #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF |
| 738 | #define CONFIG_JFFS2_PART_OFFSET 0x00000000 |
| 739 | |
| 740 | /* mtdparts command line support */ |
| 741 | /* Note: fake mtd_id used, no linux mtd map file */ |
| 742 | /* |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 743 | #define CONFIG_CMD_MTDPARTS |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 744 | #define MTDIDS_DEFAULT "" |
| 745 | #define MTDPARTS_DEFAULT "" |
| 746 | */ |
| 747 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 748 | #endif /* __CONFIG_H */ |