wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 1 | /* |
wdenk | 414eec3 | 2005-04-02 22:37:54 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003-2005 |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 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 | #ifndef __CONFIG_H |
| 25 | #define __CONFIG_H |
| 26 | |
| 27 | /* |
| 28 | * High Level Configuration Options |
| 29 | * (easy to change) |
| 30 | */ |
| 31 | |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 32 | #define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */ |
| 33 | #define CONFIG_MPC5200 1 /* (more precisely an MPC5200 CPU) */ |
| 34 | #define CONFIG_INKA4X0 1 /* INKA4x0 board */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 35 | |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 36 | #define CFG_MPC5XXX_CLKIN 33000000 /* ... running at 33.000000MHz */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 37 | |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 38 | #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */ |
| 39 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 40 | |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 41 | #define CONFIG_MISC_INIT_F 1 /* Use misc_init_f() */ |
| 42 | |
| 43 | #define CFG_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 44 | #if (CONFIG_COMMANDS & CFG_CMD_KGDB) |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 45 | # define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 46 | #endif |
| 47 | |
| 48 | /* |
| 49 | * Serial console configuration |
| 50 | */ |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 51 | #define CONFIG_PSC_CONSOLE 1 /* console is on PSC1 */ |
| 52 | #define CONFIG_BAUDRATE 115200 /* ... at 115200 bps */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 53 | #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 } |
| 54 | |
| 55 | /* |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 56 | * PCI Mapping: |
| 57 | * 0x40000000 - 0x4fffffff - PCI Memory |
| 58 | * 0x50000000 - 0x50ffffff - PCI IO Space |
| 59 | */ |
| 60 | #define CONFIG_PCI 1 |
| 61 | #define CONFIG_PCI_PNP 1 |
| 62 | #define CONFIG_PCI_SCAN_SHOW 1 |
| 63 | |
| 64 | #define CONFIG_PCI_MEM_BUS 0x40000000 |
| 65 | #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS |
| 66 | #define CONFIG_PCI_MEM_SIZE 0x10000000 |
| 67 | |
| 68 | #define CONFIG_PCI_IO_BUS 0x50000000 |
| 69 | #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS |
| 70 | #define CONFIG_PCI_IO_SIZE 0x01000000 |
| 71 | |
| 72 | #define CFG_XLB_PIPELINING 1 |
| 73 | |
| 74 | /* Partitions */ |
| 75 | #define CONFIG_MAC_PARTITION |
| 76 | #define CONFIG_DOS_PARTITION |
| 77 | #define CONFIG_ISO_PARTITION |
| 78 | |
| 79 | /* |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 80 | * Supported commands |
| 81 | */ |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 82 | #define CONFIG_COMMANDS (CONFIG_CMD_DFL | \ |
wdenk | 414eec3 | 2005-04-02 22:37:54 +0000 | [diff] [blame] | 83 | CFG_CMD_DHCP | \ |
wdenk | b05dcb5 | 2005-03-04 11:27:31 +0000 | [diff] [blame] | 84 | CFG_CMD_EXT2 | \ |
| 85 | CFG_CMD_FAT | \ |
| 86 | CFG_CMD_IDE | \ |
wdenk | 414eec3 | 2005-04-02 22:37:54 +0000 | [diff] [blame] | 87 | CFG_CMD_NFS | \ |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 88 | CFG_CMD_PCI | \ |
wdenk | 414eec3 | 2005-04-02 22:37:54 +0000 | [diff] [blame] | 89 | CFG_CMD_SNTP | \ |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 90 | CFG_CMD_USB ) |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 91 | |
| 92 | /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ |
| 93 | #include <cmd_confdefs.h> |
| 94 | |
wdenk | b05dcb5 | 2005-03-04 11:27:31 +0000 | [diff] [blame] | 95 | #define CONFIG_TIMESTAMP 1 /* Print image info with timestamp */ |
| 96 | |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 97 | #if (TEXT_BASE == 0xFFE00000) /* Boot low */ |
| 98 | # define CFG_LOWBOOT 1 |
| 99 | #endif |
| 100 | |
| 101 | /* |
| 102 | * Autobooting |
| 103 | */ |
| 104 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 105 | |
| 106 | #define CONFIG_PREBOOT "echo;" \ |
| 107 | "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \ |
| 108 | "echo" |
| 109 | |
| 110 | #undef CONFIG_BOOTARGS |
| 111 | |
| 112 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 113 | "netdev=eth0\0" \ |
| 114 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
| 115 | "nfsroot=$(serverip):$(rootpath)\0" \ |
| 116 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
| 117 | "addip=setenv bootargs $(bootargs) " \ |
| 118 | "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask)" \ |
| 119 | ":$(hostname):$(netdev):off panic=1\0" \ |
| 120 | "flash_nfs=run nfsargs addip;" \ |
| 121 | "bootm $(kernel_addr)\0" \ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 122 | "net_nfs=tftp 200000 $(bootfile);run nfsargs addip;bootm\0" \ |
wdenk | 08f2727 | 2004-12-19 21:39:27 +0000 | [diff] [blame] | 123 | "rootpath=/opt/eldk/ppc_82xx\0" \ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 124 | "" |
| 125 | |
| 126 | #define CONFIG_BOOTCOMMAND "run net_nfs" |
| 127 | |
| 128 | /* |
| 129 | * IPB Bus clocking configuration. |
| 130 | */ |
| 131 | #define CFG_IPBSPEED_133 /* define for 133MHz speed */ |
| 132 | |
| 133 | /* |
| 134 | * Flash configuration |
| 135 | */ |
| 136 | #define CFG_FLASH_BASE 0xFFE00000 |
| 137 | |
| 138 | #define CFG_FLASH_SIZE 0x00200000 /* 2 MByte */ |
| 139 | #define CFG_MAX_FLASH_SECT 35 /* max num of sects on one chip */ |
| 140 | |
| 141 | #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x4000) /* second sector */ |
| 142 | #define CFG_MAX_FLASH_BANKS 1 /* max num of flash banks |
| 143 | (= chip selects) */ |
| 144 | #define CFG_FLASH_ERASE_TOUT 240000 /* Flash Erase Timeout (in ms) */ |
| 145 | #define CFG_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (in ms) */ |
| 146 | |
| 147 | /* |
| 148 | * Environment settings |
| 149 | */ |
| 150 | #define CFG_ENV_IS_IN_FLASH 1 |
| 151 | #define CFG_ENV_SIZE 0x2000 |
| 152 | #define CFG_ENV_SECT_SIZE 0x2000 |
| 153 | #define CONFIG_ENV_OVERWRITE 1 |
| 154 | |
| 155 | /* |
| 156 | * Memory map |
| 157 | */ |
| 158 | #define CFG_MBAR 0xF0000000 |
| 159 | #define CFG_SDRAM_BASE 0x00000000 |
| 160 | #define CFG_DEFAULT_MBAR 0x80000000 |
| 161 | |
| 162 | #define CONFIG_MPC5200_DDR |
| 163 | |
| 164 | /* Use ON-Chip SRAM until RAM will be available */ |
| 165 | #define CFG_INIT_RAM_ADDR MPC5XXX_SRAM |
| 166 | #ifdef CONFIG_POST |
| 167 | /* preserve space for the post_word at end of on-chip SRAM */ |
| 168 | #define CFG_INIT_RAM_END MPC5XXX_SRAM_POST_SIZE |
| 169 | #else |
| 170 | #define CFG_INIT_RAM_END MPC5XXX_SRAM_SIZE |
| 171 | #endif |
| 172 | |
| 173 | |
| 174 | #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */ |
| 175 | #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) |
| 176 | #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET |
| 177 | |
| 178 | #define CFG_MONITOR_BASE TEXT_BASE |
| 179 | #if (CFG_MONITOR_BASE < CFG_FLASH_BASE) |
| 180 | # define CFG_RAMBOOT 1 |
| 181 | #endif |
| 182 | |
| 183 | #define CFG_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */ |
| 184 | #define CFG_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ |
| 185 | #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
| 186 | |
| 187 | /* |
| 188 | * Ethernet configuration |
| 189 | */ |
| 190 | #define CONFIG_MPC5xxx_FEC 1 |
| 191 | /* |
| 192 | * Define CONFIG_FEC_10MBIT to force FEC at 10Mb |
| 193 | */ |
| 194 | /* #define CONFIG_FEC_10MBIT 1 */ |
| 195 | #define CONFIG_PHY_ADDR 0x00 |
| 196 | |
| 197 | /* |
| 198 | * GPIO configuration |
| 199 | * |
wdenk | 9f709b6 | 2005-04-22 15:09:09 +0000 | [diff] [blame] | 200 | * use CS1 as gpio_wkup_6 output |
| 201 | * Bit 0 (mask: 0x80000000): 0 |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 202 | * use ALT CAN position: Bits 2-3 (mask: 0x30000000): |
| 203 | * 00 -> No Alternatives, I2C1 is used for onboard EEPROM |
| 204 | * 01 -> CAN1 on I2C1, CAN2 on Tmr0/1 do not use on TQM5200 with onboard |
| 205 | * EEPROM |
| 206 | * use PSC1 as UART: Bits 28-31 (mask: 0x00000007): 0100 |
| 207 | * use PSC6_1 and PSC6_3 as GPIO: Bits 9:11 (mask: 0x07000000): |
| 208 | * 011 -> PSC6 could not be used as UART or CODEC. IrDA still possible. |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 209 | */ |
wdenk | 9f709b6 | 2005-04-22 15:09:09 +0000 | [diff] [blame] | 210 | #define CFG_GPS_PORT_CONFIG 0x01001004 |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 211 | |
| 212 | /* |
| 213 | * RTC configuration |
| 214 | */ |
| 215 | #define CONFIG_RTC_MPC5200 1 /* use internal MPC5200 RTC */ |
| 216 | |
| 217 | /* |
| 218 | * Miscellaneous configurable options |
| 219 | */ |
| 220 | #define CFG_LONGHELP /* undef to save memory */ |
| 221 | #define CFG_PROMPT "=> " /* Monitor Command Prompt */ |
| 222 | #if (CONFIG_COMMANDS & CFG_CMD_KGDB) |
| 223 | #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 224 | #else |
| 225 | #define CFG_CBSIZE 256 /* Console I/O Buffer Size */ |
| 226 | #endif |
| 227 | #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */ |
| 228 | #define CFG_MAXARGS 16 /* max number of command args */ |
| 229 | #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */ |
| 230 | |
| 231 | /* Enable an alternate, more extensive memory test */ |
| 232 | #define CFG_ALT_MEMTEST |
| 233 | |
| 234 | #define CFG_MEMTEST_START 0x00100000 /* memtest works on */ |
| 235 | #define CFG_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */ |
| 236 | |
| 237 | #define CFG_LOAD_ADDR 0x100000 /* default load address */ |
| 238 | |
| 239 | #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */ |
| 240 | |
| 241 | /* |
| 242 | * Enable loopw commando. This has only affect, if CFG_CMD_MEM is defined, |
| 243 | * which is normally part of the default commands (CFV_CMD_DFL) |
| 244 | */ |
| 245 | #define CONFIG_LOOPW |
| 246 | |
| 247 | /* |
| 248 | * Various low-level settings |
| 249 | */ |
| 250 | #if defined(CONFIG_MPC5200) |
| 251 | #define CFG_HID0_INIT HID0_ICE | HID0_ICFI |
| 252 | #define CFG_HID0_FINAL HID0_ICE |
| 253 | #else |
| 254 | #define CFG_HID0_INIT 0 |
| 255 | #define CFG_HID0_FINAL 0 |
| 256 | #endif |
| 257 | |
| 258 | #define CFG_BOOTCS_START CFG_FLASH_BASE |
| 259 | #define CFG_BOOTCS_SIZE CFG_FLASH_SIZE |
| 260 | #define CFG_BOOTCS_CFG 0x00087800 /* for pci_clk = 66 MHz */ |
| 261 | #define CFG_CS0_START CFG_FLASH_BASE |
| 262 | #define CFG_CS0_SIZE CFG_FLASH_SIZE |
| 263 | |
wdenk | e58cf2a | 2005-02-27 23:46:58 +0000 | [diff] [blame] | 264 | /* 32Mbit SRAM @0x30000000 */ |
| 265 | #define CFG_CS1_START 0x30000000 |
| 266 | #define CFG_CS1_SIZE 0x00400000 |
| 267 | #define CFG_CS1_CFG 0x31800 /* for pci_clk = 33 MHz */ |
| 268 | |
| 269 | /* 2 quad UART @0x80000000 (MBAR is relocated to 0xF0000000) */ |
| 270 | #define CFG_CS2_START 0x80000000 |
| 271 | #define CFG_CS2_SIZE 0x0001000 |
| 272 | #define CFG_CS2_CFG 0x21800 /* for pci_clk = 33 MHz */ |
| 273 | |
wdenk | f4733a0 | 2005-03-06 01:21:30 +0000 | [diff] [blame] | 274 | /* GPIO in @0x30400000 */ |
| 275 | #define CFG_CS3_START 0x30400000 |
| 276 | #define CFG_CS3_SIZE 0x00100000 |
| 277 | #define CFG_CS3_CFG 0x31800 /* for pci_clk = 33 MHz */ |
| 278 | |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 279 | #define CFG_CS_BURST 0x00000000 |
| 280 | #define CFG_CS_DEADCYCLE 0x33333333 |
| 281 | |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 282 | /*----------------------------------------------------------------------- |
| 283 | * USB stuff |
| 284 | *----------------------------------------------------------------------- |
| 285 | */ |
| 286 | #define CONFIG_USB_OHCI |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 287 | #define CONFIG_USB_CLOCK 0x00015555 |
| 288 | #define CONFIG_USB_CONFIG 0x00001000 |
wdenk | 1968e61 | 2005-02-24 23:23:29 +0000 | [diff] [blame] | 289 | #define CONFIG_USB_STORAGE |
wdenk | 436be29 | 2005-01-31 22:09:11 +0000 | [diff] [blame] | 290 | |
wdenk | b05dcb5 | 2005-03-04 11:27:31 +0000 | [diff] [blame] | 291 | /*----------------------------------------------------------------------- |
| 292 | * IDE/ATA stuff Supports IDE harddisk |
| 293 | *----------------------------------------------------------------------- |
| 294 | */ |
| 295 | |
| 296 | #undef CONFIG_IDE_8xx_PCCARD /* Use IDE with PC Card Adapter */ |
| 297 | |
| 298 | #undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */ |
| 299 | #undef CONFIG_IDE_LED /* LED for ide not supported */ |
| 300 | |
| 301 | #define CONFIG_IDE_RESET /* reset for ide supported */ |
| 302 | #define CONFIG_IDE_PREINIT |
| 303 | |
| 304 | #define CFG_IDE_MAXBUS 1 /* max. 1 IDE bus */ |
| 305 | #define CFG_IDE_MAXDEVICE 2 /* max. 1 drive per IDE bus */ |
| 306 | |
| 307 | #define CFG_ATA_IDE0_OFFSET 0x0000 |
| 308 | |
| 309 | #define CFG_ATA_BASE_ADDR MPC5XXX_ATA |
| 310 | |
| 311 | /* Offset for data I/O */ |
| 312 | #define CFG_ATA_DATA_OFFSET (0x0060) |
| 313 | |
| 314 | /* Offset for normal register accesses */ |
| 315 | #define CFG_ATA_REG_OFFSET (CFG_ATA_DATA_OFFSET) |
| 316 | |
| 317 | /* Offset for alternate registers */ |
| 318 | #define CFG_ATA_ALT_OFFSET (0x005C) |
| 319 | |
| 320 | /* Interval between registers */ |
| 321 | #define CFG_ATA_STRIDE 4 |
| 322 | |
| 323 | #define CONFIG_ATAPI 1 |
wdenk | a0bdf49 | 2005-03-14 13:14:58 +0000 | [diff] [blame] | 324 | #define CFG_BRIGHTNESS 0x20 |
wdenk | b05dcb5 | 2005-03-04 11:27:31 +0000 | [diff] [blame] | 325 | |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 326 | #endif /* __CONFIG_H */ |