wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2004 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Pantelis Antoniou, Intracom S.A., panto@intracom.gr |
| 26 | * U-Boot port on NetTA4 board |
| 27 | */ |
| 28 | |
| 29 | #ifndef __CONFIG_H |
| 30 | #define __CONFIG_H |
| 31 | |
| 32 | /* |
| 33 | * High Level Configuration Options |
| 34 | * (easy to change) |
| 35 | */ |
| 36 | |
| 37 | #define CONFIG_MPC885 1 /* This is a MPC885 CPU */ |
| 38 | #define CONFIG_NETTA 1 /* ...on a NetTA board */ |
| 39 | |
| 40 | #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */ |
| 41 | #undef CONFIG_8xx_CONS_SMC2 |
| 42 | #undef CONFIG_8xx_CONS_NONE |
| 43 | |
| 44 | #define CONFIG_BAUDRATE 115200 /* console baudrate = 115kbps */ |
| 45 | |
| 46 | /* #define CONFIG_XIN 10000000 */ |
| 47 | #define CONFIG_XIN 50000000 |
| 48 | #define MPC8XX_HZ 120000000 |
| 49 | /* #define MPC8XX_HZ 100000000 */ |
| 50 | /* #define MPC8XX_HZ 50000000 */ |
| 51 | /* #define MPC8XX_HZ 80000000 */ |
| 52 | |
| 53 | #define CONFIG_8xx_GCLK_FREQ MPC8XX_HZ |
| 54 | |
| 55 | #if 0 |
| 56 | #define CONFIG_BOOTDELAY -1 /* autoboot disabled */ |
| 57 | #else |
| 58 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 59 | #endif |
| 60 | |
| 61 | #undef CONFIG_CLOCKS_IN_MHZ /* clocks NOT passsed to Linux in MHz */ |
| 62 | |
Wolfgang Denk | 32bf3d1 | 2008-03-03 12:16:44 +0100 | [diff] [blame] | 63 | #define CONFIG_PREBOOT "echo;echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;echo" |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 64 | |
| 65 | #undef CONFIG_BOOTARGS |
| 66 | #define CONFIG_BOOTCOMMAND \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 67 | "tftpboot; " \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 68 | "setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \ |
| 69 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 70 | "bootm" |
| 71 | |
| 72 | #define CONFIG_LOADS_ECHO 0 /* echo off for serial download */ |
| 73 | #undef CFG_LOADS_BAUD_CHANGE /* don't allow baudrate change */ |
| 74 | |
| 75 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
| 76 | #define CONFIG_HW_WATCHDOG |
| 77 | |
| 78 | #undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */ |
| 79 | |
Jon Loeliger | 7be044e | 2007-07-09 21:24:19 -0500 | [diff] [blame] | 80 | /* |
| 81 | * BOOTP options |
| 82 | */ |
| 83 | #define CONFIG_BOOTP_SUBNETMASK |
| 84 | #define CONFIG_BOOTP_GATEWAY |
| 85 | #define CONFIG_BOOTP_HOSTNAME |
| 86 | #define CONFIG_BOOTP_BOOTPATH |
| 87 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 88 | #define CONFIG_BOOTP_NISDOMAIN |
| 89 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 90 | |
| 91 | #undef CONFIG_MAC_PARTITION |
| 92 | #undef CONFIG_DOS_PARTITION |
| 93 | |
| 94 | #define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */ |
| 95 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 96 | #define CONFIG_NET_MULTI 1 /* the only way to get the FEC in */ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 97 | #define FEC_ENET 1 /* eth.c needs it that way... */ |
| 98 | #undef CFG_DISCOVER_PHY /* do not discover phys */ |
| 99 | #define CONFIG_MII 1 |
TsiChung Liew | 0f3ba7e | 2008-03-30 01:22:13 -0500 | [diff] [blame] | 100 | #define CONFIG_MII_INIT 1 |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 101 | #define CONFIG_RMII 1 /* use RMII interface */ |
| 102 | |
| 103 | #if defined(CONFIG_NETTA_ISDN) |
| 104 | #define CONFIG_ETHER_ON_FEC1 1 |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 105 | #define CONFIG_FEC1_PHY 1 /* phy address of FEC1 */ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 106 | #define CONFIG_FEC1_PHY_NORXERR 1 |
| 107 | #undef CONFIG_ETHER_ON_FEC2 |
| 108 | #else |
| 109 | #define CONFIG_ETHER_ON_FEC1 1 |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 110 | #define CONFIG_FEC1_PHY 8 /* phy address of FEC1 */ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 111 | #define CONFIG_FEC1_PHY_NORXERR 1 |
| 112 | #define CONFIG_ETHER_ON_FEC2 1 |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 113 | #define CONFIG_FEC2_PHY 1 /* phy address of FEC2 */ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 114 | #define CONFIG_FEC2_PHY_NORXERR 1 |
| 115 | #endif |
| 116 | |
| 117 | #define CONFIG_ENV_OVERWRITE 1 /* allow modification of vendor params */ |
| 118 | |
| 119 | /* POST support */ |
| 120 | #define CONFIG_POST (CFG_POST_MEMORY | \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 121 | CFG_POST_CODEC | \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 122 | CFG_POST_DSP ) |
| 123 | |
Jon Loeliger | e18a106 | 2007-07-08 14:21:43 -0500 | [diff] [blame] | 124 | |
| 125 | /* |
| 126 | * Command line configuration. |
| 127 | */ |
| 128 | #include <config_cmd_default.h> |
| 129 | |
| 130 | #define CONFIG_CMD_CDP |
| 131 | #define CONFIG_CMD_DHCP |
| 132 | #define CONFIG_CMD_DIAG |
| 133 | #define CONFIG_CMD_FAT |
| 134 | #define CONFIG_CMD_IDE |
| 135 | #define CONFIG_CMD_JFFS2 |
| 136 | #define CONFIG_CMD_MII |
| 137 | #define CONFIG_CMD_NAND |
| 138 | #define CONFIG_CMD_NFS |
| 139 | #define CONFIG_CMD_PCMCIA |
| 140 | #define CONFIG_CMD_PING |
| 141 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 142 | |
| 143 | #define CONFIG_BOARD_EARLY_INIT_F 1 |
| 144 | #define CONFIG_MISC_INIT_R |
| 145 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 146 | /* |
| 147 | * Miscellaneous configurable options |
| 148 | */ |
| 149 | #define CFG_LONGHELP /* undef to save memory */ |
| 150 | #define CFG_PROMPT "=> " /* Monitor Command Prompt */ |
| 151 | |
| 152 | #define CFG_HUSH_PARSER 1 |
| 153 | #define CFG_PROMPT_HUSH_PS2 "> " |
| 154 | |
Jon Loeliger | e18a106 | 2007-07-08 14:21:43 -0500 | [diff] [blame] | 155 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 156 | #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 157 | #else |
| 158 | #define CFG_CBSIZE 256 /* Console I/O Buffer Size */ |
| 159 | #endif |
| 160 | #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */ |
| 161 | #define CFG_MAXARGS 16 /* max number of command args */ |
| 162 | #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */ |
| 163 | |
| 164 | #define CFG_MEMTEST_START 0x0300000 /* memtest works on */ |
| 165 | #define CFG_MEMTEST_END 0x0700000 /* 3 ... 7 MB in DRAM */ |
| 166 | |
| 167 | #define CFG_LOAD_ADDR 0x100000 /* default load address */ |
| 168 | |
| 169 | #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */ |
| 170 | |
| 171 | #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| 172 | |
| 173 | /* |
| 174 | * Low Level Configuration Settings |
| 175 | * (address mappings, register initial values, etc.) |
| 176 | * You should know what you are doing if you make changes here. |
| 177 | */ |
| 178 | /*----------------------------------------------------------------------- |
| 179 | * Internal Memory Mapped Register |
| 180 | */ |
| 181 | #define CFG_IMMR 0xFF000000 |
| 182 | |
| 183 | /*----------------------------------------------------------------------- |
| 184 | * Definitions for initial stack pointer and data area (in DPRAM) |
| 185 | */ |
| 186 | #define CFG_INIT_RAM_ADDR CFG_IMMR |
| 187 | #define CFG_INIT_RAM_END 0x3000 /* End of used area in DPRAM */ |
| 188 | #define CFG_GBL_DATA_SIZE 64 /* size in bytes reserved for initial data */ |
| 189 | #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) |
| 190 | #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET |
| 191 | |
| 192 | /*----------------------------------------------------------------------- |
| 193 | * Start addresses for the final memory configuration |
| 194 | * (Set up by the startup code) |
| 195 | * Please note that CFG_SDRAM_BASE _must_ start at 0 |
| 196 | */ |
| 197 | #define CFG_SDRAM_BASE 0x00000000 |
| 198 | #define CFG_FLASH_BASE 0x40000000 |
| 199 | #if defined(DEBUG) |
| 200 | #define CFG_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ |
| 201 | #else |
| 202 | #define CFG_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */ |
| 203 | #endif |
| 204 | #define CFG_MONITOR_BASE CFG_FLASH_BASE |
| 205 | #define CFG_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ |
| 206 | |
| 207 | /* |
| 208 | * For booting Linux, the board info and command line data |
| 209 | * have to be in the first 8 MB of memory, since this is |
| 210 | * the maximum mapped by the Linux kernel during initialization. |
| 211 | */ |
| 212 | #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
| 213 | |
| 214 | /*----------------------------------------------------------------------- |
| 215 | * FLASH organization |
| 216 | */ |
| 217 | #define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */ |
| 218 | #define CFG_MAX_FLASH_SECT 8 /* max number of sectors on one chip */ |
| 219 | |
| 220 | #define CFG_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |
| 221 | #define CFG_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
| 222 | |
| 223 | #define CFG_ENV_IS_IN_FLASH 1 |
| 224 | #define CFG_ENV_SECT_SIZE 0x10000 |
| 225 | |
| 226 | #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x60000) |
| 227 | #define CFG_ENV_OFFSET 0 |
| 228 | #define CFG_ENV_SIZE 0x4000 |
| 229 | |
| 230 | #define CFG_ENV_ADDR_REDUND (CFG_FLASH_BASE + 0x70000) |
| 231 | #define CFG_ENV_OFFSET_REDUND 0 |
| 232 | #define CFG_ENV_SIZE_REDUND CFG_ENV_SIZE |
| 233 | |
| 234 | /*----------------------------------------------------------------------- |
| 235 | * Cache Configuration |
| 236 | */ |
| 237 | #define CFG_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */ |
Jon Loeliger | e18a106 | 2007-07-08 14:21:43 -0500 | [diff] [blame] | 238 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 239 | #define CFG_CACHELINE_SHIFT 4 /* log base 2 of the above value */ |
| 240 | #endif |
| 241 | |
| 242 | /*----------------------------------------------------------------------- |
| 243 | * SYPCR - System Protection Control 11-9 |
| 244 | * SYPCR can only be written once after reset! |
| 245 | *----------------------------------------------------------------------- |
| 246 | * Software & Bus Monitor Timer max, Bus Monitor enable, SW Watchdog freeze |
| 247 | */ |
| 248 | #if defined(CONFIG_WATCHDOG) |
| 249 | #define CFG_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \ |
| 250 | SYPCR_SWE | SYPCR_SWRI| SYPCR_SWP) |
| 251 | #else |
| 252 | #define CFG_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | SYPCR_SWP) |
| 253 | #endif |
| 254 | |
| 255 | /*----------------------------------------------------------------------- |
| 256 | * SIUMCR - SIU Module Configuration 11-6 |
| 257 | *----------------------------------------------------------------------- |
| 258 | * PCMCIA config., multi-function pin tri-state |
| 259 | */ |
| 260 | #ifndef CONFIG_CAN_DRIVER |
| 261 | #define CFG_SIUMCR (SIUMCR_DBGC00 | SIUMCR_DBPC00 | SIUMCR_MLRC01 | SIUMCR_FRC) |
| 262 | #else /* we must activate GPL5 in the SIUMCR for CAN */ |
| 263 | #define CFG_SIUMCR (SIUMCR_DBGC11 | SIUMCR_DBPC00 | SIUMCR_MLRC01 | SIUMCR_FRC) |
| 264 | #endif /* CONFIG_CAN_DRIVER */ |
| 265 | |
| 266 | /*----------------------------------------------------------------------- |
| 267 | * TBSCR - Time Base Status and Control 11-26 |
| 268 | *----------------------------------------------------------------------- |
| 269 | * Clear Reference Interrupt Status, Timebase freezing enabled |
| 270 | */ |
| 271 | #define CFG_TBSCR (TBSCR_REFA | TBSCR_REFB | TBSCR_TBF) |
| 272 | |
| 273 | /*----------------------------------------------------------------------- |
| 274 | * RTCSC - Real-Time Clock Status and Control Register 11-27 |
| 275 | *----------------------------------------------------------------------- |
| 276 | */ |
| 277 | #define CFG_RTCSC (RTCSC_SEC | RTCSC_ALR | RTCSC_RTF| RTCSC_RTE) |
| 278 | |
| 279 | /*----------------------------------------------------------------------- |
| 280 | * PISCR - Periodic Interrupt Status and Control 11-31 |
| 281 | *----------------------------------------------------------------------- |
| 282 | * Clear Periodic Interrupt Status, Interrupt Timer freezing enabled |
| 283 | */ |
| 284 | #define CFG_PISCR (PISCR_PS | PISCR_PITF) |
| 285 | |
| 286 | /*----------------------------------------------------------------------- |
| 287 | * PLPRCR - PLL, Low-Power, and Reset Control Register 15-30 |
| 288 | *----------------------------------------------------------------------- |
| 289 | * Reset PLL lock status sticky bit, timer expired status bit and timer |
| 290 | * interrupt status bit |
| 291 | * |
| 292 | */ |
| 293 | |
| 294 | #if CONFIG_XIN == 10000000 |
| 295 | |
| 296 | #if MPC8XX_HZ == 120000000 |
| 297 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 298 | (0 << PLPRCR_S_SHIFT) | (12 << PLPRCR_MFI_SHIFT) | (0 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 299 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 300 | #elif MPC8XX_HZ == 100000000 |
| 301 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 302 | (0 << PLPRCR_S_SHIFT) | (10 << PLPRCR_MFI_SHIFT) | (0 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 303 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 304 | #elif MPC8XX_HZ == 50000000 |
| 305 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 306 | (1 << PLPRCR_S_SHIFT) | (8 << PLPRCR_MFI_SHIFT) | (3 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 307 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 308 | #elif MPC8XX_HZ == 25000000 |
| 309 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 310 | (2 << PLPRCR_S_SHIFT) | (8 << PLPRCR_MFI_SHIFT) | (3 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 311 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 312 | #elif MPC8XX_HZ == 40000000 |
| 313 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 314 | (1 << PLPRCR_S_SHIFT) | (8 << PLPRCR_MFI_SHIFT) | (4 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 315 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 316 | #elif MPC8XX_HZ == 75000000 |
| 317 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 318 | (1 << PLPRCR_S_SHIFT) | (15 << PLPRCR_MFI_SHIFT) | (0 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 319 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 320 | #else |
| 321 | #error unsupported CPU freq for XIN = 10MHz |
| 322 | #endif |
| 323 | |
| 324 | #elif CONFIG_XIN == 50000000 |
| 325 | |
| 326 | #if MPC8XX_HZ == 120000000 |
| 327 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 328 | (0 << PLPRCR_S_SHIFT) | (12 << PLPRCR_MFI_SHIFT) | (4 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 329 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 330 | #elif MPC8XX_HZ == 100000000 |
| 331 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 332 | (0 << PLPRCR_S_SHIFT) | (6 << PLPRCR_MFI_SHIFT) | (2 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 333 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 334 | #elif MPC8XX_HZ == 80000000 |
| 335 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 336 | (0 << PLPRCR_S_SHIFT) | (8 << PLPRCR_MFI_SHIFT) | (4 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 337 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 338 | #elif MPC8XX_HZ == 50000000 |
| 339 | #define CFG_PLPRCR ((0 << PLPRCR_MFN_SHIFT) | (0 << PLPRCR_MFD_SHIFT) | \ |
| 340 | (1 << PLPRCR_S_SHIFT) | (6 << PLPRCR_MFI_SHIFT) | (2 << PLPRCR_PDF_SHIFT) | \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 341 | PLPRCR_TEXPS) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 342 | #else |
| 343 | #error unsupported CPU freq for XIN = 50MHz |
| 344 | #endif |
| 345 | |
| 346 | #else |
| 347 | |
| 348 | #error unsupported XIN freq |
| 349 | #endif |
| 350 | |
| 351 | |
| 352 | /* |
| 353 | *----------------------------------------------------------------------- |
| 354 | * SCCR - System Clock and reset Control Register 15-27 |
| 355 | *----------------------------------------------------------------------- |
| 356 | * Set clock output, timebase and RTC source and divider, |
| 357 | * power management and some other internal clocks |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 358 | * |
| 359 | * Note: When TBS == 0 the timebase is independent of current cpu clock. |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 360 | */ |
| 361 | |
| 362 | #define SCCR_MASK SCCR_EBDF11 |
| 363 | #if MPC8XX_HZ > 66666666 |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 364 | #define CFG_SCCR (/* SCCR_TBS | */ SCCR_CRQEN | \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 365 | SCCR_COM00 | SCCR_DFSYNC00 | SCCR_DFBRG00 | \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 366 | SCCR_DFNL111 | SCCR_DFNH000 | SCCR_DFLCD000 | \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 367 | SCCR_DFALCD00 | SCCR_EBDF01) |
| 368 | #else |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 369 | #define CFG_SCCR (/* SCCR_TBS | */ SCCR_CRQEN | \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 370 | SCCR_COM00 | SCCR_DFSYNC00 | SCCR_DFBRG00 | \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 371 | SCCR_DFNL111 | SCCR_DFNH000 | SCCR_DFLCD000 | \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 372 | SCCR_DFALCD00) |
| 373 | #endif |
| 374 | |
| 375 | /*----------------------------------------------------------------------- |
| 376 | * |
| 377 | *----------------------------------------------------------------------- |
| 378 | * |
| 379 | */ |
| 380 | /*#define CFG_DER 0x2002000F*/ |
| 381 | #define CFG_DER 0 |
| 382 | |
| 383 | /* |
| 384 | * Init Memory Controller: |
| 385 | * |
| 386 | * BR0/1 and OR0/1 (FLASH) |
| 387 | */ |
| 388 | |
| 389 | #define FLASH_BASE0_PRELIM 0x40000000 /* FLASH bank #0 */ |
| 390 | |
| 391 | /* used to re-map FLASH both when starting from SRAM or FLASH: |
| 392 | * restrict access enough to keep SRAM working (if any) |
| 393 | * but not too much to meddle with FLASH accesses |
| 394 | */ |
| 395 | #define CFG_REMAP_OR_AM 0x80000000 /* OR addr mask */ |
| 396 | #define CFG_PRELIM_OR_AM 0xE0000000 /* OR addr mask */ |
| 397 | |
| 398 | /* FLASH timing: ACS = 11, TRLX = 0, CSNT = 1, SCY = 5, EHTR = 1 */ |
| 399 | #define CFG_OR_TIMING_FLASH (OR_CSNT_SAM | OR_BI | OR_SCY_5_CLK | OR_TRLX) |
| 400 | |
| 401 | #define CFG_OR0_REMAP (CFG_REMAP_OR_AM | CFG_OR_TIMING_FLASH) |
| 402 | #define CFG_OR0_PRELIM (CFG_PRELIM_OR_AM | CFG_OR_TIMING_FLASH) |
| 403 | #define CFG_BR0_PRELIM ((FLASH_BASE0_PRELIM & BR_BA_MSK) | BR_PS_8 | BR_V ) |
| 404 | |
| 405 | /* |
| 406 | * BR3 and OR3 (SDRAM) |
| 407 | * |
| 408 | */ |
| 409 | #define SDRAM_BASE3_PRELIM 0x00000000 /* SDRAM bank #0 */ |
| 410 | #define SDRAM_MAX_SIZE (256 << 20) /* max 256MB per bank */ |
| 411 | |
| 412 | /* SDRAM timing: Multiplexed addresses, GPL5 output to GPL5_A (don't care) */ |
| 413 | #define CFG_OR_TIMING_SDRAM (OR_CSNT_SAM | OR_G5LS) |
| 414 | |
| 415 | #define CFG_OR3_PRELIM ((0xFFFFFFFFLU & ~(SDRAM_MAX_SIZE - 1)) | CFG_OR_TIMING_SDRAM) |
| 416 | #define CFG_BR3_PRELIM ((SDRAM_BASE3_PRELIM & BR_BA_MSK) | BR_MS_UPMB | BR_PS_32 | BR_V) |
| 417 | |
| 418 | /* |
| 419 | * Memory Periodic Timer Prescaler |
| 420 | */ |
| 421 | |
| 422 | /* |
| 423 | * Memory Periodic Timer Prescaler |
| 424 | * |
| 425 | * The Divider for PTA (refresh timer) configuration is based on an |
| 426 | * example SDRAM configuration (64 MBit, one bank). The adjustment to |
| 427 | * the number of chip selects (NCS) and the actually needed refresh |
| 428 | * rate is done by setting MPTPR. |
| 429 | * |
| 430 | * PTA is calculated from |
| 431 | * PTA = (gclk * Trefresh) / ((2 ^ (2 * DFBRG)) * PTP * NCS) |
| 432 | * |
| 433 | * gclk CPU clock (not bus clock!) |
| 434 | * Trefresh Refresh cycle * 4 (four word bursts used) |
| 435 | * |
| 436 | * 4096 Rows from SDRAM example configuration |
| 437 | * 1000 factor s -> ms |
| 438 | * 32 PTP (pre-divider from MPTPR) from SDRAM example configuration |
| 439 | * 4 Number of refresh cycles per period |
| 440 | * 64 Refresh cycle in ms per number of rows |
| 441 | * -------------------------------------------- |
| 442 | * Divider = 4096 * 32 * 1000 / (4 * 64) = 512000 |
| 443 | * |
| 444 | * 50 MHz => 50.000.000 / Divider = 98 |
| 445 | * 66 Mhz => 66.000.000 / Divider = 129 |
| 446 | * 80 Mhz => 80.000.000 / Divider = 156 |
| 447 | */ |
| 448 | |
| 449 | #if MPC8XX_HZ == 120000000 |
| 450 | #define CFG_MAMR_PTA 234 |
| 451 | #elif MPC8XX_HZ == 100000000 |
| 452 | #define CFG_MAMR_PTA 195 |
| 453 | #elif MPC8XX_HZ == 80000000 |
| 454 | #define CFG_MAMR_PTA 156 |
| 455 | #elif MPC8XX_HZ == 50000000 |
| 456 | #define CFG_MAMR_PTA 98 |
| 457 | #else |
| 458 | #error Unknown frequency |
| 459 | #endif |
| 460 | |
| 461 | |
| 462 | /* |
| 463 | * For 16 MBit, refresh rates could be 31.3 us |
| 464 | * (= 64 ms / 2K = 125 / quad bursts). |
| 465 | * For a simpler initialization, 15.6 us is used instead. |
| 466 | * |
| 467 | * #define CFG_MPTPR_2BK_2K MPTPR_PTP_DIV32 for 2 banks |
| 468 | * #define CFG_MPTPR_1BK_2K MPTPR_PTP_DIV64 for 1 bank |
| 469 | */ |
| 470 | #define CFG_MPTPR_2BK_4K MPTPR_PTP_DIV16 /* setting for 2 banks */ |
| 471 | #define CFG_MPTPR_1BK_4K MPTPR_PTP_DIV32 /* setting for 1 bank */ |
| 472 | |
| 473 | /* refresh rate 7.8 us (= 64 ms / 8K = 31.2 / quad bursts) for 256 MBit */ |
| 474 | #define CFG_MPTPR_2BK_8K MPTPR_PTP_DIV8 /* setting for 2 banks */ |
| 475 | #define CFG_MPTPR_1BK_8K MPTPR_PTP_DIV16 /* setting for 1 bank */ |
| 476 | |
| 477 | /* |
| 478 | * MAMR settings for SDRAM |
| 479 | */ |
| 480 | |
| 481 | /* 8 column SDRAM */ |
| 482 | #define CFG_MAMR_8COL ((CFG_MAMR_PTA << MAMR_PTA_SHIFT) | MAMR_PTAE | \ |
| 483 | MAMR_AMA_TYPE_0 | MAMR_DSA_1_CYCL | MAMR_G0CLA_A11 | \ |
| 484 | MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X) |
| 485 | |
| 486 | /* 9 column SDRAM */ |
| 487 | #define CFG_MAMR_9COL ((CFG_MAMR_PTA << MAMR_PTA_SHIFT) | MAMR_PTAE | \ |
| 488 | MAMR_AMA_TYPE_1 | MAMR_DSA_1_CYCL | MAMR_G0CLA_A10 | \ |
| 489 | MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X) |
| 490 | |
| 491 | /* |
| 492 | * Internal Definitions |
| 493 | * |
| 494 | * Boot Flags |
| 495 | */ |
| 496 | #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */ |
| 497 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ |
| 498 | |
| 499 | #define CONFIG_ARTOS /* include ARTOS support */ |
| 500 | |
| 501 | #define CONFIG_LAST_STAGE_INIT /* needed to reset the damn phys */ |
| 502 | |
| 503 | /*********************************************************************************************************** |
| 504 | |
| 505 | Pin definitions: |
| 506 | |
| 507 | +------+----------------+--------+------------------------------------------------------------ |
| 508 | | # | Name | Type | Comment |
| 509 | +------+----------------+--------+------------------------------------------------------------ |
| 510 | | PA3 | OK_ETH_3V | Input | CISCO Ethernet power OK |
| 511 | | | | | (NetRoute: FEC1, TA: FEC2) (0=power OK) |
| 512 | | PA6 | P_VCCD1 | Output | TPS2211A PCMCIA |
| 513 | | PA7 | DCL1_3V | Periph | IDL1 PCM clock |
| 514 | | PA8 | DSP_DR1 | Periph | IDL1 PCM Data Rx |
| 515 | | PA9 | L1TXDA | Periph | IDL1 PCM Data Tx |
| 516 | | PA10 | P_VCCD0 | Output | TPS2211A PCMCIA |
| 517 | | PA12 | P_SHDN | Output | TPS2211A PCMCIA |
| 518 | | PA13 | ETH_LOOP | Output | CISCO Loopback remote power |
| 519 | | | | | (NetRoute: FEC1, TA: FEC2) (1=NORMAL) |
| 520 | | PA14 | P_VPPD0 | Output | TPS2211A PCMCIA |
| 521 | | PA15 | P_VPPD1 | Output | TPS2211A PCMCIA |
| 522 | | PB14 | SPIEN_FXO | Output | SPI CS for FXO daughter-board |
| 523 | | PB15 | SPIEN_S1 | Output | SPI CS for S-interface 1 (NetRoute only) |
| 524 | | PB16 | DREQ1 | Output | D channel request for S-interface chip 1. |
| 525 | | PB17 | L1ST3 | Periph | IDL1 timeslot enable signal for PPC |
| 526 | | PB18 | L1ST2 | Periph | IDL1 timeslot enable signal for PPC |
| 527 | | PB19 | SPIEN_S2 | Output | SPI CS for S-interface 2 (NetRoute only) |
| 528 | | PB20 | SPIEN_SEEPROM | Output | SPI CS for serial eeprom |
| 529 | | PB21 | LEDIO | Output | Led mode indication for PHY |
| 530 | | PB22 | UART_CTS | Input | UART CTS |
| 531 | | PB23 | UART_RTS | Output | UART RTS |
| 532 | | PB24 | UART_RX | Periph | UART Data Rx |
| 533 | | PB25 | UART_TX | Periph | UART Data Tx |
| 534 | | PB26 | RMII-MDC | Periph | Free for future use (MII mgt clock) |
| 535 | | PB27 | RMII-MDIO | Periph | Free for future use (MII mgt data) |
| 536 | | PB28 | SPI_RXD_3V | Input | SPI Data Rx |
| 537 | | PB29 | SPI_TXD | Output | SPI Data Tx |
| 538 | | PB30 | SPI_CLK | Output | SPI Clock |
| 539 | | PB31 | RMII1-REFCLK | Periph | RMII reference clock for FEC1 |
| 540 | | PC4 | PHY1_LINK | Input | PHY link state FEC1 (interrupt) |
| 541 | | PC5 | PHY2_LINK | Input | PHY link state FEC2 (interrupt) |
| 542 | | PC6 | RMII1-MDINT | Input | PHY prog interrupt FEC1 (interrupt) |
| 543 | | PC7 | RMII2-MDINT | Input | PHY prog interrupt FEC1 (interrupt) |
| 544 | | PC8 | P_OC | Input | TPS2211A PCMCIA overcurrent (interrupt) (1=OK) |
| 545 | | PC9 | COM_HOOK1 | Input | Codec interrupt chip #1 (interrupt) |
| 546 | | PC10 | COM_HOOK2 | Input | Codec interrupt chip #2 (interrupt) |
| 547 | | PC11 | COM_HOOK4 | Input | Codec interrupt chip #4 (interrupt) |
| 548 | | PC12 | COM_HOOK3 | Input | Codec interrupt chip #3 (interrupt) |
| 549 | | PC13 | F_RY_BY | Input | NAND ready signal (interrupt) |
| 550 | | PC14 | FAN_OK | Input | Fan status signal (interrupt) (1=OK) |
| 551 | | PC15 | PC15_DIRECT0 | Periph | PCMCIA DMA request. |
| 552 | | PD3 | F_ALE | Output | NAND |
| 553 | | PD4 | F_CLE | Output | NAND |
| 554 | | PD5 | F_CE | Output | NAND |
| 555 | | PD6 | DSP_INT | Output | DSP debug interrupt |
| 556 | | PD7 | DSP_RESET | Output | DSP reset |
| 557 | | PD8 | RMII_MDC | Periph | MII mgt clock |
| 558 | | PD9 | SPIEN_C1 | Output | SPI CS for codec #1 |
| 559 | | PD10 | SPIEN_C2 | Output | SPI CS for codec #2 |
| 560 | | PD11 | SPIEN_C3 | Output | SPI CS for codec #3 |
| 561 | | PD12 | FSC2 | Periph | IDL2 frame sync |
| 562 | | PD13 | DGRANT2 | Input | D channel grant from S #2 |
| 563 | | PD14 | SPIEN_C4 | Output | SPI CS for codec #4 |
| 564 | | PD15 | TP700 | Output | Testpoint for software debugging |
| 565 | | PE14 | RMII2-TXD0 | Periph | FEC2 transmit data |
| 566 | | PE15 | RMII2-TXD1 | Periph | FEC2 transmit data |
| 567 | | PE16 | RMII2-REFCLK | Periph | TA: RMII ref clock for |
| 568 | | | DCL2 | Periph | NetRoute: PCM clock #2 |
| 569 | | PE17 | TP703 | Output | Testpoint for software debugging |
| 570 | | PE18 | DGRANT1 | Input | D channel grant from S #1 |
| 571 | | PE19 | RMII2-TXEN | Periph | TA: FEC2 tx enable |
| 572 | | | PCM2OUT | Periph | NetRoute: Tx data for IDL2 |
| 573 | | PE20 | FSC1 | Periph | IDL1 frame sync |
| 574 | | PE21 | RMII2-RXD0 | Periph | FEC2 receive data |
| 575 | | PE22 | RMII2-RXD1 | Periph | FEC2 receive data |
| 576 | | PE23 | L1ST1 | Periph | IDL1 timeslot enable signal for PPC |
| 577 | | PE24 | U-N1 | Output | Select user/network for S #1 (0=user) |
| 578 | | PE25 | U-N2 | Output | Select user/network for S #2 (0=user) |
| 579 | | PE26 | RMII2-RXDV | Periph | FEC2 valid |
| 580 | | PE27 | DREQ2 | Output | D channel request for S #2. |
| 581 | | PE28 | FPGA_DONE | Input | FPGA done signal |
| 582 | | PE29 | FPGA_INIT | Output | FPGA init signal |
| 583 | | PE30 | UDOUT2_3V | Input | IDL2 PCM input |
| 584 | | PE31 | | | Free |
| 585 | +------+----------------+--------+--------------------------------------------------- |
| 586 | |
| 587 | Chip selects: |
| 588 | |
| 589 | +------+----------------+------------------------------------------------------------ |
| 590 | | # | Name | Comment |
| 591 | +------+----------------+------------------------------------------------------------ |
| 592 | | CS0 | CS0 | Boot flash |
| 593 | | CS1 | CS_FLASH | NAND flash |
| 594 | | CS2 | CS_DSP | DSP |
| 595 | | CS3 | DCS_DRAM | DRAM |
| 596 | | CS4 | CS_ER1 | External output register |
| 597 | +------+----------------+------------------------------------------------------------ |
| 598 | |
| 599 | Interrupts: |
| 600 | |
| 601 | +------+----------------+------------------------------------------------------------ |
| 602 | | # | Name | Comment |
| 603 | +------+----------------+------------------------------------------------------------ |
| 604 | | IRQ1 | UINTER_3V | S interupt chips interrupt (common) |
| 605 | | IRQ3 | IRQ_DSP | DSP interrupt |
| 606 | | IRQ4 | IRQ_DSP1 | Extra DSP interrupt |
| 607 | +------+----------------+------------------------------------------------------------ |
| 608 | |
| 609 | *************************************************************************************************/ |
| 610 | |
| 611 | #define DSP_SIZE 0x00010000 /* 64K */ |
| 612 | #define NAND_SIZE 0x00010000 /* 64K */ |
| 613 | #define ER_SIZE 0x00010000 /* 64K */ |
| 614 | #define DUMMY_SIZE 0x00010000 /* 64K */ |
| 615 | |
| 616 | #define DSP_BASE 0xF1000000 |
| 617 | #define NAND_BASE 0xF1010000 |
| 618 | #define ER_BASE 0xF1020000 |
| 619 | #define DUMMY_BASE 0xF1FF0000 |
| 620 | |
| 621 | /****************************************************************/ |
| 622 | |
| 623 | /* NAND */ |
Marian Balakowicz | 6db3970 | 2006-04-08 19:08:06 +0200 | [diff] [blame] | 624 | #define CFG_NAND_LEGACY |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 625 | #define CFG_NAND_BASE NAND_BASE |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 626 | #define CONFIG_MTD_NAND_VERIFY_WRITE |
| 627 | #define CONFIG_MTD_NAND_UNSAFE |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 628 | |
| 629 | #define CFG_MAX_NAND_DEVICE 1 |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 630 | /* #define NAND_NO_RB */ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 631 | |
| 632 | #define SECTORSIZE 512 |
| 633 | #define ADDR_COLUMN 1 |
| 634 | #define ADDR_PAGE 2 |
| 635 | #define ADDR_COLUMN_PAGE 3 |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 636 | #define NAND_ChipID_UNKNOWN 0x00 |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 637 | #define NAND_MAX_FLOORS 1 |
| 638 | #define NAND_MAX_CHIPS 1 |
| 639 | |
| 640 | /* ALE = PD3, CLE = PD4, CE = PD5, F_RY_BY = PC13 */ |
| 641 | #define NAND_DISABLE_CE(nand) \ |
| 642 | do { \ |
| 643 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) |= (1 << (15 - 5)); \ |
| 644 | } while(0) |
| 645 | |
| 646 | #define NAND_ENABLE_CE(nand) \ |
| 647 | do { \ |
| 648 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) &= ~(1 << (15 - 5)); \ |
| 649 | } while(0) |
| 650 | |
| 651 | #define NAND_CTL_CLRALE(nandptr) \ |
| 652 | do { \ |
| 653 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) &= ~(1 << (15 - 3)); \ |
| 654 | } while(0) |
| 655 | |
| 656 | #define NAND_CTL_SETALE(nandptr) \ |
| 657 | do { \ |
| 658 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) |= (1 << (15 - 3)); \ |
| 659 | } while(0) |
| 660 | |
| 661 | #define NAND_CTL_CLRCLE(nandptr) \ |
| 662 | do { \ |
| 663 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) &= ~(1 << (15 - 4)); \ |
| 664 | } while(0) |
| 665 | |
| 666 | #define NAND_CTL_SETCLE(nandptr) \ |
| 667 | do { \ |
| 668 | (((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pddat) |= (1 << (15 - 4)); \ |
| 669 | } while(0) |
| 670 | |
| 671 | #ifndef NAND_NO_RB |
| 672 | #define NAND_WAIT_READY(nand) \ |
| 673 | do { \ |
| 674 | while ((((volatile immap_t *)CFG_IMMR)->im_ioport.iop_pcdat & (1 << (15 - 13))) == 0) { \ |
| 675 | WATCHDOG_RESET(); \ |
| 676 | } \ |
| 677 | } while (0) |
| 678 | #else |
| 679 | #define NAND_WAIT_READY(nand) udelay(12) |
| 680 | #endif |
| 681 | |
| 682 | #define WRITE_NAND_COMMAND(d, adr) \ |
| 683 | do { \ |
| 684 | *(volatile unsigned char *)((unsigned long)(adr)) = (unsigned char)(d); \ |
| 685 | } while(0) |
| 686 | |
| 687 | #define WRITE_NAND_ADDRESS(d, adr) \ |
| 688 | do { \ |
| 689 | *(volatile unsigned char *)((unsigned long)(adr)) = (unsigned char)(d); \ |
| 690 | } while(0) |
| 691 | |
| 692 | #define WRITE_NAND(d, adr) \ |
| 693 | do { \ |
| 694 | *(volatile unsigned char *)((unsigned long)(adr)) = (unsigned char)(d); \ |
| 695 | } while(0) |
| 696 | |
| 697 | #define READ_NAND(adr) \ |
| 698 | ((unsigned char)(*(volatile unsigned char *)(unsigned long)(adr))) |
| 699 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 700 | #define CONFIG_JFFS2_NAND 1 /* jffs2 on nand support */ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 701 | #define NAND_CACHE_PAGES 16 /* size of nand cache in 512 bytes pages */ |
| 702 | |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 703 | /* |
| 704 | * JFFS2 partitions |
| 705 | * |
| 706 | */ |
| 707 | /* No command line, one static partition, whole device */ |
| 708 | #undef CONFIG_JFFS2_CMDLINE |
| 709 | #define CONFIG_JFFS2_DEV "nand0" |
Wolfgang Denk | 8f79e4c | 2005-08-10 15:14:32 +0200 | [diff] [blame] | 710 | #define CONFIG_JFFS2_PART_SIZE 0x00100000 |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 711 | #define CONFIG_JFFS2_PART_OFFSET 0x00200000 |
| 712 | |
| 713 | /* mtdparts command line support */ |
| 714 | /* Note: fake mtd_id used, no linux mtd map file */ |
| 715 | /* |
| 716 | #define CONFIG_JFFS2_CMDLINE |
| 717 | #define MTDIDS_DEFAULT "nand0=netta-nand" |
| 718 | #define MTDPARTS_DEFAULT "mtdparts=netta-nand:1m@2m(jffs2)" |
| 719 | */ |
| 720 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 721 | /*****************************************************************************/ |
| 722 | |
| 723 | #define CFG_DIRECT_FLASH_TFTP |
| 724 | #define CFG_DIRECT_NAND_TFTP |
| 725 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 726 | /*****************************************************************************/ |
| 727 | |
| 728 | #if 1 |
| 729 | /*----------------------------------------------------------------------- |
| 730 | * PCMCIA stuff |
| 731 | *----------------------------------------------------------------------- |
| 732 | */ |
| 733 | |
| 734 | #define CFG_PCMCIA_MEM_ADDR (0xE0000000) |
| 735 | #define CFG_PCMCIA_MEM_SIZE ( 64 << 20 ) |
| 736 | #define CFG_PCMCIA_DMA_ADDR (0xE4000000) |
| 737 | #define CFG_PCMCIA_DMA_SIZE ( 64 << 20 ) |
| 738 | #define CFG_PCMCIA_ATTRB_ADDR (0xE8000000) |
| 739 | #define CFG_PCMCIA_ATTRB_SIZE ( 64 << 20 ) |
| 740 | #define CFG_PCMCIA_IO_ADDR (0xEC000000) |
| 741 | #define CFG_PCMCIA_IO_SIZE ( 64 << 20 ) |
| 742 | |
| 743 | /*----------------------------------------------------------------------- |
| 744 | * IDE/ATA stuff (Supports IDE harddisk on PCMCIA Adapter) |
| 745 | *----------------------------------------------------------------------- |
| 746 | */ |
| 747 | |
| 748 | #define CONFIG_IDE_8xx_PCCARD 1 /* Use IDE with PC Card Adapter */ |
| 749 | |
| 750 | #undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */ |
| 751 | #undef CONFIG_IDE_LED /* LED for ide not supported */ |
| 752 | #undef CONFIG_IDE_RESET /* reset for ide not supported */ |
| 753 | |
| 754 | #define CFG_IDE_MAXBUS 1 /* max. 1 IDE bus */ |
| 755 | #define CFG_IDE_MAXDEVICE 1 /* max. 1 drive per IDE bus */ |
| 756 | |
| 757 | #define CFG_ATA_IDE0_OFFSET 0x0000 |
| 758 | |
| 759 | #define CFG_ATA_BASE_ADDR CFG_PCMCIA_MEM_ADDR |
| 760 | |
| 761 | /* Offset for data I/O */ |
| 762 | #define CFG_ATA_DATA_OFFSET (CFG_PCMCIA_MEM_SIZE + 0x320) |
| 763 | |
| 764 | /* Offset for normal register accesses */ |
| 765 | #define CFG_ATA_REG_OFFSET (2 * CFG_PCMCIA_MEM_SIZE + 0x320) |
| 766 | |
| 767 | /* Offset for alternate registers */ |
| 768 | #define CFG_ATA_ALT_OFFSET 0x0100 |
| 769 | |
| 770 | #define CONFIG_MAC_PARTITION |
| 771 | #define CONFIG_DOS_PARTITION |
| 772 | #endif |
| 773 | |
| 774 | /*************************************************************************************************/ |
| 775 | |
| 776 | #define CONFIG_CDP_DEVICE_ID 20 |
| 777 | #define CONFIG_CDP_DEVICE_ID_PREFIX "NT" /* netta */ |
| 778 | #define CONFIG_CDP_PORT_ID "eth%d" |
| 779 | #define CONFIG_CDP_CAPABILITIES 0x00000010 |
| 780 | #define CONFIG_CDP_VERSION "u-boot 1.0" " " __DATE__ " " __TIME__ |
| 781 | #define CONFIG_CDP_PLATFORM "Intracom NetTA" |
| 782 | #define CONFIG_CDP_TRIGGER 0x20020001 |
| 783 | #define CONFIG_CDP_POWER_CONSUMPTION 4300 /* 90 mA @ 48V */ |
| 784 | #define CONFIG_CDP_APPLIANCE_VLAN_TYPE 0x01 /* ipphone? */ |
| 785 | |
| 786 | /*************************************************************************************************/ |
| 787 | |
| 788 | #define CONFIG_AUTO_COMPLETE 1 |
| 789 | |
| 790 | /*************************************************************************************************/ |
| 791 | |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 792 | #define CONFIG_CRC32_VERIFY 1 |
| 793 | |
| 794 | /*************************************************************************************************/ |
| 795 | |
| 796 | #define CONFIG_HUSH_OLD_PARSER_COMPATIBLE 1 |
| 797 | |
| 798 | /*************************************************************************************************/ |
| 799 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 800 | #endif /* __CONFIG_H */ |