wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 1 | /* |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003-2005 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 5 | * (C) Copyright 2004-2006 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 6 | * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de |
| 7 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 14 | /* |
| 15 | * High Level Configuration Options |
| 16 | * (easy to change) |
| 17 | */ |
| 18 | |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 19 | #define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */ |
| 20 | #define CONFIG_MPC5200 1 /* (more precisely an MPC5200 CPU) */ |
| 21 | #define CONFIG_TQM5200 1 /* ... on TQM5200 module */ |
| 22 | #undef CONFIG_TQM5200_REV100 /* define for revision 100 modules */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 23 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 24 | /* |
| 25 | * Valid values for CONFIG_SYS_TEXT_BASE are: |
| 26 | * 0xFC000000 boot low (standard configuration with room for |
| 27 | * max 64 MByte Flash ROM) |
| 28 | * 0xFFF00000 boot high (for a backup copy of U-Boot) |
| 29 | * 0x00100000 boot from RAM (for testing only) |
| 30 | */ |
| 31 | #ifndef CONFIG_SYS_TEXT_BASE |
| 32 | #define CONFIG_SYS_TEXT_BASE 0xFC000000 |
| 33 | #endif |
| 34 | |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 35 | /* On a Cameron or on a FO300 board or ... */ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 36 | #if !defined(CONFIG_CAM5200) && !defined(CONFIG_CHARON) \ |
| 37 | && !defined(CONFIG_FO300) |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 38 | #define CONFIG_STK52XX 1 /* ... on a STK52XX board */ |
| 39 | #endif |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 40 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 41 | #define CONFIG_SYS_MPC5XXX_CLKIN 33000000 /* ... running at 33.000000MHz */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 42 | |
Becky Bruce | 31d8267 | 2008-05-08 19:02:12 -0500 | [diff] [blame] | 43 | #define CONFIG_HIGH_BATS 1 /* High BATs supported */ |
| 44 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 45 | /* |
| 46 | * Serial console configuration |
| 47 | */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 48 | #define CONFIG_PSC_CONSOLE 1 /* console is on PSC1 */ |
| 49 | #define CONFIG_BAUDRATE 115200 /* ... at 115200 bps */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 } |
Axel Beierlein | bef92e2 | 2008-08-16 00:30:48 +0200 | [diff] [blame] | 51 | #define CONFIG_BOOTCOUNT_LIMIT 1 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 52 | |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_FO300 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | #define CONFIG_SYS_DEVICE_NULLDEV 1 /* enable null device */ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 55 | #define CONFIG_SILENT_CONSOLE 1 /* enable silent startup */ |
| 56 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* used to detect S1 switch position */ |
Bartlomiej Sieka | ddde6b7 | 2006-08-22 10:38:18 +0200 | [diff] [blame] | 57 | #define CONFIG_USB_BIN_FIXUP 1 /* for a buggy USB device */ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 58 | #if 0 |
| 59 | #define FO300_SILENT_CONSOLE_WHEN_S1_CLOSED 1 /* silent console on PSC1 when S1 */ |
| 60 | /* switch is closed */ |
| 61 | #endif |
| 62 | |
| 63 | #undef FO300_SILENT_CONSOLE_WHEN_S1_CLOSED /* silent console on PSC1 when S1 */ |
| 64 | /* switch is open */ |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 65 | #endif /* CONFIG_FO300 */ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 66 | |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 67 | #if defined(CONFIG_CHARON) || defined(CONFIG_STK52XX) |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 68 | #define CONFIG_PS2KBD /* AT-PS/2 Keyboard */ |
| 69 | #define CONFIG_PS2MULT /* .. on PS/2 Multiplexer */ |
| 70 | #define CONFIG_PS2SERIAL 6 /* .. on PSC6 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | #define CONFIG_PS2MULT_DELAY (CONFIG_SYS_HZ/2) /* Initial delay */ |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 72 | #define CONFIG_BOARD_EARLY_INIT_R |
| 73 | #endif /* CONFIG_STK52XX */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 74 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 75 | /* |
| 76 | * PCI Mapping: |
| 77 | * 0x40000000 - 0x4fffffff - PCI Memory |
| 78 | * 0x50000000 - 0x50ffffff - PCI IO Space |
| 79 | */ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 80 | #if defined(CONFIG_CHARON) || defined(CONFIG_STK52XX) |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 81 | #define CONFIG_PCI 1 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 82 | #define CONFIG_PCI_PNP 1 |
wdenk | 31a6492 | 2004-08-28 21:09:14 +0000 | [diff] [blame] | 83 | /* #define CONFIG_PCI_SCAN_SHOW 1 */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 84 | |
| 85 | #define CONFIG_PCI_MEM_BUS 0x40000000 |
| 86 | #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS |
| 87 | #define CONFIG_PCI_MEM_SIZE 0x10000000 |
| 88 | |
| 89 | #define CONFIG_PCI_IO_BUS 0x50000000 |
| 90 | #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS |
| 91 | #define CONFIG_PCI_IO_SIZE 0x01000000 |
| 92 | |
Wolfgang Denk | cd65a3d | 2006-06-16 16:11:34 +0200 | [diff] [blame] | 93 | #define CONFIG_EEPRO100 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 95 | #define CONFIG_NS8382X 1 |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 96 | #endif /* CONFIG_STK52XX */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 97 | |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 98 | /* |
| 99 | * Video console |
| 100 | */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 101 | #ifndef CONFIG_TQM5200S /* No graphics controller on TQM5200S */ |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 102 | #define CONFIG_VIDEO |
| 103 | #define CONFIG_VIDEO_SM501 |
| 104 | #define CONFIG_VIDEO_SM501_32BPP |
| 105 | #define CONFIG_CFB_CONSOLE |
| 106 | #define CONFIG_VIDEO_LOGO |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 107 | |
| 108 | #ifndef CONFIG_FO300 |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 109 | #define CONFIG_CONSOLE_EXTRA_INFO |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 110 | #else |
| 111 | #define CONFIG_VIDEO_BMP_LOGO |
| 112 | #endif |
| 113 | |
| 114 | #define CONFIG_VGA_AS_SINGLE_DEVICE |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 115 | #define CONFIG_VIDEO_SW_CURSOR |
| 116 | #define CONFIG_SPLASH_SCREEN |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 118 | #endif /* #ifndef CONFIG_TQM5200S */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 119 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 120 | |
| 121 | /* Partitions */ |
wdenk | 89c02e2 | 2005-03-16 16:32:26 +0000 | [diff] [blame] | 122 | #define CONFIG_MAC_PARTITION |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 123 | #define CONFIG_DOS_PARTITION |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 124 | #define CONFIG_ISO_PARTITION |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 125 | |
| 126 | /* USB */ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 127 | #if defined(CONFIG_CHARON) || defined(CONFIG_FO300) || \ |
| 128 | defined(CONFIG_STK52XX) |
Markus Klotzbuecher | 7b59b3c | 2006-11-27 11:44:58 +0100 | [diff] [blame] | 129 | #define CONFIG_USB_OHCI_NEW |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 130 | #define CONFIG_SYS_OHCI_BE_CONTROLLER |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 131 | #define CONFIG_USB_STORAGE |
Wolfgang Denk | afaac86 | 2007-08-12 14:27:39 +0200 | [diff] [blame] | 132 | #define CONFIG_CMD_FAT |
| 133 | #define CONFIG_CMD_USB |
Markus Klotzbuecher | 53e336e | 2006-11-27 11:43:09 +0100 | [diff] [blame] | 134 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 135 | #undef CONFIG_SYS_USB_OHCI_BOARD_INIT |
| 136 | #define CONFIG_SYS_USB_OHCI_CPU_INIT |
| 137 | #define CONFIG_SYS_USB_OHCI_REGS_BASE MPC5XXX_USB |
| 138 | #define CONFIG_SYS_USB_OHCI_SLOT_NAME "mpc5200" |
| 139 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15 |
Markus Klotzbuecher | 53e336e | 2006-11-27 11:43:09 +0100 | [diff] [blame] | 140 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 141 | #endif |
| 142 | |
Wolfgang Denk | 135ae00 | 2006-07-22 01:20:03 +0200 | [diff] [blame] | 143 | #ifndef CONFIG_CAM5200 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 144 | /* POST support */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | #define CONFIG_POST (CONFIG_SYS_POST_MEMORY | \ |
| 146 | CONFIG_SYS_POST_CPU | \ |
| 147 | CONFIG_SYS_POST_I2C) |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 148 | #endif |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 149 | |
| 150 | #ifdef CONFIG_POST |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 151 | /* preserve space for the post_word at end of on-chip SRAM */ |
| 152 | #define MPC5XXX_SRAM_POST_SIZE MPC5XXX_SRAM_SIZE-4 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 153 | #endif |
| 154 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 155 | |
| 156 | /* |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 157 | * BOOTP options |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 158 | */ |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 159 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 160 | #define CONFIG_BOOTP_BOOTPATH |
| 161 | #define CONFIG_BOOTP_GATEWAY |
| 162 | #define CONFIG_BOOTP_HOSTNAME |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 163 | |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 164 | |
| 165 | /* |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 166 | * Command line configuration. |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 167 | */ |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 168 | #include <config_cmd_default.h> |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 169 | |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 170 | #define CONFIG_CMD_ASKENV |
| 171 | #define CONFIG_CMD_DATE |
| 172 | #define CONFIG_CMD_DHCP |
| 173 | #define CONFIG_CMD_EEPROM |
| 174 | #define CONFIG_CMD_I2C |
| 175 | #define CONFIG_CMD_JFFS2 |
| 176 | #define CONFIG_CMD_MII |
| 177 | #define CONFIG_CMD_NFS |
| 178 | #define CONFIG_CMD_PING |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 179 | #define CONFIG_CMD_REGINFO |
| 180 | #define CONFIG_CMD_SNTP |
| 181 | #define CONFIG_CMD_BSP |
| 182 | |
| 183 | #ifdef CONFIG_VIDEO |
| 184 | #define CONFIG_CMD_BMP |
| 185 | #endif |
| 186 | |
| 187 | #ifdef CONFIG_PCI |
Marian Balakowicz | 2b2a587 | 2007-10-05 10:40:54 +0200 | [diff] [blame] | 188 | #define CONFIG_CMD_PCI |
TsiChung Liew | f33fca2 | 2008-03-30 01:19:06 -0500 | [diff] [blame] | 189 | #define CONFIG_PCIAUTO_SKIP_HOST_BRIDGE 1 |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 190 | #endif |
| 191 | |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 192 | #if defined(CONFIG_CHARON) || defined(CONFIG_FO300) || \ |
| 193 | defined(CONFIG_MINIFAP) || defined(CONFIG_STK52XX) |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 194 | #define CONFIG_CMD_IDE |
| 195 | #define CONFIG_CMD_FAT |
| 196 | #define CONFIG_CMD_EXT2 |
| 197 | #endif |
| 198 | |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 199 | #if defined(CONFIG_CHARON) || defined(CONFIG_FO300) || \ |
| 200 | defined(CONFIG_STK52XX) |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 201 | #define CONFIG_CFG_USB |
| 202 | #define CONFIG_CFG_FAT |
| 203 | #endif |
| 204 | |
Jon Loeliger | af075ee | 2007-07-08 17:02:01 -0500 | [diff] [blame] | 205 | #ifdef CONFIG_POST |
| 206 | #define CONFIG_CMD_DIAG |
| 207 | #endif |
| 208 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 209 | |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 210 | #define CONFIG_TIMESTAMP /* display image timestamps */ |
| 211 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 212 | #if (CONFIG_SYS_TEXT_BASE != 0xFFF00000) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 213 | # define CONFIG_SYS_LOWBOOT 1 /* Boot low */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 214 | #endif |
| 215 | |
| 216 | /* |
| 217 | * Autobooting |
| 218 | */ |
| 219 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
| 220 | |
wdenk | 8105092 | 2004-07-11 20:04:51 +0000 | [diff] [blame] | 221 | #define CONFIG_PREBOOT "echo;" \ |
Wolfgang Denk | 4c4aca8 | 2006-07-26 10:33:37 +0200 | [diff] [blame] | 222 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 223 | "echo" |
| 224 | |
| 225 | #undef CONFIG_BOOTARGS |
| 226 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 227 | #if defined(CONFIG_TQM5200_B) && !defined(CONFIG_SYS_LOWBOOT) |
Wolfgang Denk | 78d620e | 2006-11-23 22:58:58 +0100 | [diff] [blame] | 228 | # define ENV_UPDT \ |
| 229 | "update=protect off FFF00000 +${filesize};" \ |
| 230 | "erase FFF00000 +${filesize};" \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 231 | "cp.b 200000 FFF00000 ${filesize};" \ |
Wolfgang Denk | 78d620e | 2006-11-23 22:58:58 +0100 | [diff] [blame] | 232 | "protect on FFF00000 +${filesize}\0" |
| 233 | #else /* default lowboot configuration */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 234 | # define ENV_UPDT \ |
Wolfgang Denk | 78d620e | 2006-11-23 22:58:58 +0100 | [diff] [blame] | 235 | "update=protect off FC000000 +${filesize};" \ |
| 236 | "erase FC000000 +${filesize};" \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 237 | "cp.b 200000 FC000000 ${filesize};" \ |
Wolfgang Denk | 78d620e | 2006-11-23 22:58:58 +0100 | [diff] [blame] | 238 | "protect on FC000000 +${filesize}\0" |
| 239 | #endif |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 240 | |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 241 | #if defined(CONFIG_TQM5200) |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 242 | #define CUSTOM_ENV_SETTINGS \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 243 | "hostname=tqm5200\0" \ |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 244 | "bootfile=/tftpboot/tqm5200/uImage\0" \ |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 245 | "fdt_file=/tftpboot/tqm5200/tqm5200.dtb\0" \ |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 246 | "u-boot=/tftpboot/tqm5200/u-boot.bin\0" |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 247 | #elif defined(CONFIG_CAM5200) |
Wolfgang Denk | 1636d1c | 2007-06-22 23:59:00 +0200 | [diff] [blame] | 248 | #define CUSTOM_ENV_SETTINGS \ |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 249 | "bootfile=cam5200/uImage\0" \ |
| 250 | "u-boot=cam5200/u-boot.bin\0" \ |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 251 | "setup=tftp 200000 cam5200/setup.img; source 200000\0" |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 252 | #endif |
| 253 | |
Martin Krause | a5cc555 | 2008-03-19 14:25:14 +0100 | [diff] [blame] | 254 | #if defined(CONFIG_TQM5200_B) |
| 255 | #define ENV_FLASH_LAYOUT \ |
| 256 | "fdt_addr=FC100000\0" \ |
| 257 | "kernel_addr=FC140000\0" \ |
| 258 | "ramdisk_addr=FC600000\0" |
Heiko Schocher | 5624d66 | 2010-12-17 10:11:27 +0100 | [diff] [blame] | 259 | #elif defined(CONFIG_CHARON) |
| 260 | #define ENV_FLASH_LAYOUT \ |
| 261 | "fdt_addr=FDFC0000\0" \ |
| 262 | "kernel_addr=FC0A0000\0" \ |
| 263 | "ramdisk_addr=FC200000\0" |
Martin Krause | a5cc555 | 2008-03-19 14:25:14 +0100 | [diff] [blame] | 264 | #else /* !CONFIG_TQM5200_B */ |
| 265 | #define ENV_FLASH_LAYOUT \ |
| 266 | "fdt_addr=FC0A0000\0" \ |
| 267 | "kernel_addr=FC0C0000\0" \ |
| 268 | "ramdisk_addr=FC300000\0" |
| 269 | #endif |
| 270 | |
wdenk | 8105092 | 2004-07-11 20:04:51 +0000 | [diff] [blame] | 271 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 272 | "netdev=eth0\0" \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 273 | "console=ttyPSC0\0" \ |
Martin Krause | a5cc555 | 2008-03-19 14:25:14 +0100 | [diff] [blame] | 274 | ENV_FLASH_LAYOUT \ |
Bartlomiej Sieka | d78791a | 2007-10-25 17:20:01 +0200 | [diff] [blame] | 275 | "kernel_addr_r=400000\0" \ |
| 276 | "fdt_addr_r=600000\0" \ |
wdenk | 89c02e2 | 2005-03-16 16:32:26 +0000 | [diff] [blame] | 277 | "rootpath=/opt/eldk/ppc_6xx\0" \ |
| 278 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 279 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 280 | "nfsroot=${serverip}:${rootpath}\0" \ |
| 281 | "addip=setenv bootargs ${bootargs} " \ |
| 282 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ |
| 283 | ":${hostname}:${netdev}:off panic=1\0" \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 284 | "addcons=setenv bootargs ${bootargs} " \ |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 285 | "console=${console},${baudrate}\0" \ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 286 | "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \ |
| 287 | "flash_self_old=sete console ttyS0; " \ |
| 288 | "run ramargs addip addcons addmtd; " \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 289 | "bootm ${kernel_addr} ${ramdisk_addr}\0" \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 290 | "flash_self=run ramargs addip addcons;" \ |
| 291 | "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ |
| 292 | "flash_nfs_old=sete console ttyS0; run nfsargs addip addcons;" \ |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 293 | "bootm ${kernel_addr}\0" \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 294 | "flash_nfs=run nfsargs addip addcons;" \ |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 295 | "bootm ${kernel_addr} - ${fdt_addr}\0" \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 296 | "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \ |
| 297 | "sete console ttyS0; run nfsargs addip addcons;bootm\0" \ |
| 298 | "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \ |
| 299 | "tftp ${fdt_addr_r} ${fdt_file}; " \ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 300 | "run nfsargs addip addcons addmtd; " \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 301 | "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \ |
Reinhard Thies | 6abaee4 | 2007-01-10 14:41:14 +0100 | [diff] [blame] | 302 | CUSTOM_ENV_SETTINGS \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 303 | "load=tftp 200000 ${u-boot}\0" \ |
| 304 | ENV_UPDT \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 305 | "" |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 306 | |
| 307 | #define CONFIG_BOOTCOMMAND "run net_nfs" |
| 308 | |
| 309 | /* |
| 310 | * IPB Bus clocking configuration. |
| 311 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | #define CONFIG_SYS_IPBCLK_EQUALS_XLBCLK /* define for 133MHz speed */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 313 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 314 | #if defined(CONFIG_SYS_IPBCLK_EQUALS_XLBCLK) && !defined(CONFIG_CAM5200) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 315 | /* |
| 316 | * PCI Bus clocking configuration |
| 317 | * |
| 318 | * Actually a PCI Clock of 66 MHz is only set (in cpu_init.c) if |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 319 | * CONFIG_SYS_IPBCLK_EQUALS_XLBCLK is defined. This is because a PCI Clock of |
Bartlomiej Sieka | c99512d | 2007-05-27 16:53:43 +0200 | [diff] [blame] | 320 | * 66 MHz yet hasn't been tested with a IPB Bus Clock of 66 MHz. |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 321 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 322 | #define CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2 /* define for 66MHz speed */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 323 | #endif |
| 324 | |
| 325 | /* |
| 326 | * I2C configuration |
| 327 | */ |
| 328 | #define CONFIG_HARD_I2C 1 /* I2C with hardware support */ |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 329 | #ifdef CONFIG_TQM5200_REV100 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 330 | #define CONFIG_SYS_I2C_MODULE 1 /* Select I2C module #1 for rev. 100 board */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 331 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 332 | #define CONFIG_SYS_I2C_MODULE 2 /* Select I2C module #2 for all other revs */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 333 | #endif |
| 334 | |
| 335 | /* |
| 336 | * I2C clock frequency |
| 337 | * |
| 338 | * Please notice, that the resulting clock frequency could differ from the |
| 339 | * configured value. This is because the I2C clock is derived from system |
| 340 | * clock over a frequency divider with only a few divider values. U-boot |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 341 | * calculates the best approximation for CONFIG_SYS_I2C_SPEED. However the calculated |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 342 | * approximation allways lies below the configured value, never above. |
| 343 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 344 | #define CONFIG_SYS_I2C_SPEED 100000 /* 100 kHz */ |
| 345 | #define CONFIG_SYS_I2C_SLAVE 0x7F |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 346 | |
| 347 | /* |
| 348 | * EEPROM configuration for onboard EEPROM M24C32 (M24C64 should work |
| 349 | * also). For other EEPROMs configuration should be verified. On Mini-FAP the |
| 350 | * EEPROM (24C64) is on the same I2C address (but on other I2C bus), so the |
| 351 | * same configuration could be used. |
| 352 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 353 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* 1010000x */ |
| 354 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 |
| 355 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 5 /* =32 Bytes per write */ |
| 356 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 20 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 357 | |
| 358 | /* |
| 359 | * HW-Monitor configuration on Mini-FAP |
| 360 | */ |
| 361 | #if defined (CONFIG_MINIFAP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 362 | #define CONFIG_SYS_I2C_HWMON_ADDR 0x2C |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 363 | #endif |
| 364 | |
| 365 | /* List of I2C addresses to be verified by POST */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 366 | #if defined (CONFIG_MINIFAP) |
Peter Tyser | 60aaaa0 | 2010-10-22 00:20:30 -0500 | [diff] [blame] | 367 | #undef CONFIG_SYS_POST_I2C_ADDRS |
| 368 | #define CONFIG_SYS_POST_I2C_ADDRS {CONFIG_SYS_I2C_EEPROM_ADDR, \ |
| 369 | CONFIG_SYS_I2C_HWMON_ADDR, \ |
| 370 | CONFIG_SYS_I2C_SLAVE} |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 371 | #endif |
| 372 | |
| 373 | /* |
| 374 | * Flash configuration |
| 375 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 376 | #define CONFIG_SYS_FLASH_BASE 0xFC000000 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 377 | |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 378 | #if defined(CONFIG_CAM5200) && defined(CONFIG_CAM5200_NIOSFLASH) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 379 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max num of flash banks |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 380 | (= chip selects) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 381 | #define CONFIG_SYS_FLASH_WORD_SIZE unsigned int /* main flash device with */ |
| 382 | #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |
| 383 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */ |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 384 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 385 | #define CONFIG_SYS_FLASH_ADDR0 0x555 |
| 386 | #define CONFIG_SYS_FLASH_ADDR1 0x2AA |
| 387 | #define CONFIG_SYS_FLASH_2ND_16BIT_DEV 1 /* NIOS flash is a 16bit device */ |
| 388 | #define CONFIG_SYS_MAX_FLASH_SECT 128 |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 389 | #else |
| 390 | /* use CFI flash driver */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 391 | #define CONFIG_SYS_FLASH_CFI 1 /* Flash is CFI conformant */ |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 392 | #define CONFIG_FLASH_CFI_DRIVER 1 /* Use the common driver */ |
Wolfgang Denk | 085ecde | 2010-11-23 13:20:22 +0100 | [diff] [blame] | 393 | #define CONFIG_FLASH_CFI_MTD /* with MTD support */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 394 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_BOOTCS_START } |
| 395 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 396 | (= chip selects) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 397 | #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */ |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 398 | #endif |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 399 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 400 | #define CONFIG_SYS_FLASH_EMPTY_INFO |
| 401 | #define CONFIG_SYS_FLASH_SIZE 0x04000000 /* 64 MByte */ |
| 402 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 403 | |
Wolfgang Denk | 135ae00 | 2006-07-22 01:20:03 +0200 | [diff] [blame] | 404 | #if defined (CONFIG_CAM5200) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 405 | # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00040000) |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 406 | #elif defined(CONFIG_TQM5200_B) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 407 | # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00080000) |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 408 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 409 | # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00060000) |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 410 | #endif |
| 411 | |
Wolfgang Denk | d534f5c | 2005-08-23 22:27:41 +0200 | [diff] [blame] | 412 | /* Dynamic MTD partition support */ |
Stefan Roese | 68d7d65 | 2009-03-19 13:30:36 +0100 | [diff] [blame] | 413 | #define CONFIG_CMD_MTDPARTS |
Stefan Roese | 942556a | 2009-05-12 14:32:58 +0200 | [diff] [blame] | 414 | #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 415 | #define MTDIDS_DEFAULT "nor0=fc000000.flash" |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 416 | |
Heiko Schocher | 5624d66 | 2010-12-17 10:11:27 +0100 | [diff] [blame] | 417 | #if defined(CONFIG_STK52XX) |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 418 | # if defined(CONFIG_TQM5200_B) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 419 | # if defined(CONFIG_SYS_LOWBOOT) |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 420 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:1m(firmware)," \ |
Martin Krause | a5cc555 | 2008-03-19 14:25:14 +0100 | [diff] [blame] | 421 | "256k(dtb)," \ |
| 422 | "2304k(kernel)," \ |
| 423 | "2560k(small-fs)," \ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 424 | "2m(initrd)," \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 425 | "8m(misc)," \ |
| 426 | "16m(big-fs)" |
| 427 | # else /* highboot */ |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 428 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:2560k(kernel),"\ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 429 | "3584k(small-fs)," \ |
| 430 | "2m(initrd)," \ |
| 431 | "8m(misc)," \ |
| 432 | "15m(big-fs)," \ |
| 433 | "1m(firmware)" |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 434 | # endif /* CONFIG_SYS_LOWBOOT */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 435 | # else /* !CONFIG_TQM5200_B */ |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 436 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:640k(firmware),"\ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 437 | "128k(dtb)," \ |
| 438 | "2304k(kernel)," \ |
Wolfgang Denk | d534f5c | 2005-08-23 22:27:41 +0200 | [diff] [blame] | 439 | "2m(initrd)," \ |
| 440 | "4m(small-fs)," \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 441 | "8m(misc)," \ |
Bartlomiej Sieka | e1f601b | 2007-09-13 16:33:59 +0200 | [diff] [blame] | 442 | "15m(big-fs)" |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 443 | # endif /* CONFIG_TQM5200_B */ |
Wolfgang Denk | 135ae00 | 2006-07-22 01:20:03 +0200 | [diff] [blame] | 444 | #elif defined (CONFIG_CAM5200) |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 445 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:768k(firmware),"\ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 446 | "1792k(kernel)," \ |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 447 | "5632k(rootfs)," \ |
| 448 | "24m(home)" |
Heiko Schocher | 5624d66 | 2010-12-17 10:11:27 +0100 | [diff] [blame] | 449 | #elif defined (CONFIG_CHARON) |
| 450 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:640k(firmware),"\ |
| 451 | "1408k(kernel)," \ |
| 452 | "2m(initrd)," \ |
| 453 | "4m(small-fs)," \ |
| 454 | "24320k(big-fs)," \ |
| 455 | "256k(dts)" |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 456 | #elif defined (CONFIG_FO300) |
Heiko Schocher | 259bff7 | 2010-12-17 10:11:20 +0100 | [diff] [blame] | 457 | # define MTDPARTS_DEFAULT "mtdparts=fc000000.flash:640k(firmware),"\ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 458 | "1408k(kernel)," \ |
| 459 | "2m(initrd)," \ |
| 460 | "4m(small-fs)," \ |
| 461 | "8m(misc)," \ |
| 462 | "16m(big-fs)" |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 463 | #else |
| 464 | # error "Unknown Carrier Board" |
| 465 | #endif /* CONFIG_STK52XX */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 466 | |
| 467 | /* |
| 468 | * Environment settings |
| 469 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 470 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 471 | #define CONFIG_ENV_SIZE 0x4000 /* 16 k - keep small for fast booting */ |
Wolfgang Denk | 78d620e | 2006-11-23 22:58:58 +0100 | [diff] [blame] | 472 | #if defined(CONFIG_TQM5200_B) || defined (CONFIG_CAM5200) |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 473 | #define CONFIG_ENV_SECT_SIZE 0x40000 |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 474 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 475 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 476 | #endif /* CONFIG_TQM5200_B */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 477 | #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE) |
| 478 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 479 | |
| 480 | /* |
| 481 | * Memory map |
| 482 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 483 | #define CONFIG_SYS_MBAR 0xF0000000 |
| 484 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
| 485 | #define CONFIG_SYS_DEFAULT_MBAR 0x80000000 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 486 | |
| 487 | /* Use ON-Chip SRAM until RAM will be available */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 488 | #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 489 | #ifdef CONFIG_POST |
| 490 | /* preserve space for the post_word at end of on-chip SRAM */ |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 491 | #define CONFIG_SYS_INIT_RAM_SIZE MPC5XXX_SRAM_POST_SIZE |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 492 | #else |
Wolfgang Denk | 553f098 | 2010-10-26 13:32:32 +0200 | [diff] [blame] | 493 | #define CONFIG_SYS_INIT_RAM_SIZE MPC5XXX_SRAM_SIZE |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 494 | #endif |
| 495 | |
| 496 | |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 497 | #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] | 498 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 499 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 500 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 501 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
| 502 | # define CONFIG_SYS_RAMBOOT 1 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 503 | #endif |
| 504 | |
Wolfgang Denk | 135ae00 | 2006-07-22 01:20:03 +0200 | [diff] [blame] | 505 | #if defined (CONFIG_CAM5200) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 506 | # define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 507 | #elif defined(CONFIG_TQM5200_B) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 508 | # define CONFIG_SYS_MONITOR_LEN (512 << 10) /* Reserve 512 kB for Monitor */ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 509 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 510 | # define CONFIG_SYS_MONITOR_LEN (384 << 10) /* Reserve 384 kB for Monitor */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 511 | #endif |
| 512 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 513 | #define CONFIG_SYS_MALLOC_LEN (1024 << 10) /* Reserve 1024 kB for malloc() */ |
| 514 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 515 | |
| 516 | /* |
| 517 | * Ethernet configuration |
| 518 | */ |
| 519 | #define CONFIG_MPC5xxx_FEC 1 |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 520 | #define CONFIG_MPC5xxx_FEC_MII100 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 521 | /* |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 522 | * Define CONFIG_MPC5xxx_FEC_MII10 to force FEC at 10Mb |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 523 | */ |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 524 | /* #define CONFIG_MPC5xxx_FEC_MII10 */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 525 | #define CONFIG_PHY_ADDR 0x00 |
| 526 | |
| 527 | /* |
| 528 | * GPIO configuration |
| 529 | * |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 530 | * use CS1: Bit 0 (mask: 0x80000000): |
| 531 | * 1 -> Pin gpio_wkup_6 as second SDRAM chip select (mem_cs1). |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 532 | * use ALT CAN position: Bits 2-3 (mask: 0x30000000): |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 533 | * 00 -> No Alternatives, CAN1/2 on PSC2 according to PSC2 setting. |
| 534 | * SPI on PSC3 according to PSC3 setting. Use for CAM5200. |
| 535 | * 01 -> CAN1 on I2C1, CAN2 on Tmr0/1. |
| 536 | * Use for REV200 STK52XX boards and FO300 boards. Do not use |
| 537 | * with REV100 modules (because, there I2C1 is used as I2C bus). |
| 538 | * use ATA: Bits 6-7 (mask 0x03000000): |
| 539 | * 00 -> No ATA chip selects, csb_4/5 used as normal chip selects. |
| 540 | * Use for CAM5200 board. |
| 541 | * 01 -> ATA cs0/1 on csb_4/5. Use for the remaining boards. |
| 542 | * use PSC6: Bits 9-11 (mask 0x00700000): |
| 543 | * 000 -> use PSC6_0 to PSC6_3 as GPIO, PSC6 could not be used as |
| 544 | * UART, CODEC or IrDA. |
| 545 | * GPIO on PSC6_3 is used in post_hotkeys_pressed() to |
| 546 | * enable extended POST tests. |
| 547 | * Use for MINI-FAP and TQM5200_IB boards. |
| 548 | * 101 -> use PSC6 as UART. Pins PSC6_0 to PSC6_3 are used. |
| 549 | * Extended POST test is not available. |
| 550 | * Use for STK52xx, FO300 and CAM5200 boards. |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 551 | * WARNING: When the extended POST is enabled, these bits will |
| 552 | * be overridden by this code as GPIOs! |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 553 | * use PCI_DIS: Bit 16 (mask 0x00008000): |
| 554 | * 1 -> disable PCI controller (on CAM5200 board). |
| 555 | * use USB: Bits 18-19 (mask 0x00003000): |
| 556 | * 10 -> two UARTs (on FO300 and CAM5200). |
| 557 | * use PSC3: Bits 20-23 (mask: 0x00000f00): |
| 558 | * 0000 -> All PSC3 pins are GPIOs. |
| 559 | * 1100 -> UART/SPI (on FO300 board). |
| 560 | * 0100 -> UART (on CAM5200 board). |
| 561 | * use PSC2: Bits 25:27 (mask: 0x00000030): |
| 562 | * 000 -> All PSC2 pins are GPIOs. |
| 563 | * 100 -> UART (on CAM5200 board). |
| 564 | * 001 -> CAN1/2 on PSC2 pins. |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 565 | * Use for REV100 STK52xx boards |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 566 | * 01x -> Use AC97 (on FO300 board). |
| 567 | * use PSC1: Bits 29-31 (mask: 0x00000007): |
| 568 | * 100 -> UART (on all boards). |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 569 | */ |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 570 | #if !defined(CONFIG_SYS_GPS_PORT_CONFIG) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 571 | #if defined (CONFIG_MINIFAP) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 572 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x91000004 |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 573 | #elif defined (CONFIG_STK52XX) |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 574 | # if defined (CONFIG_STK52XX_REV100) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 575 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x81500014 |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 576 | # else /* STK52xx REV200 and above */ |
| 577 | # if defined (CONFIG_TQM5200_REV100) |
| 578 | # error TQM5200 REV100 not supported on STK52XX REV200 or above |
| 579 | # else/* TQM5200 REV200 and above */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 580 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x91500404 |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 581 | # endif |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 582 | # endif |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 583 | #elif defined (CONFIG_FO300) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 584 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x91502c24 |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 585 | #elif defined (CONFIG_CAM5200) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 586 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x8050A444 |
wdenk | 83e40ba | 2005-03-31 18:42:15 +0000 | [diff] [blame] | 587 | #else /* TMQ5200 Inbetriebnahme-Board */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 588 | # define CONFIG_SYS_GPS_PORT_CONFIG 0x81000004 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 589 | #endif |
Heiko Schocher | 98e6956 | 2010-12-04 08:34:04 +0100 | [diff] [blame] | 590 | #endif |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 591 | |
| 592 | /* |
| 593 | * RTC configuration |
| 594 | */ |
Wolfgang Denk | 4f562f1 | 2005-08-18 11:51:12 +0200 | [diff] [blame] | 595 | #if defined (CONFIG_STK52XX) && !defined (CONFIG_STK52XX_REV100) |
| 596 | # define CONFIG_RTC_M41T11 1 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 597 | # define CONFIG_SYS_I2C_RTC_ADDR 0x68 |
| 598 | # define CONFIG_SYS_M41T11_BASE_YEAR 1900 /* because Linux uses the same base |
Wolfgang Denk | edd0b50 | 2006-07-19 14:44:03 +0200 | [diff] [blame] | 599 | year */ |
Wolfgang Denk | 4f562f1 | 2005-08-18 11:51:12 +0200 | [diff] [blame] | 600 | #else |
| 601 | # define CONFIG_RTC_MPC5200 1 /* use internal MPC5200 RTC */ |
| 602 | #endif |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 603 | |
| 604 | /* |
| 605 | * Miscellaneous configurable options |
| 606 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 607 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 608 | |
Wolfgang Denk | 2751a95 | 2006-10-28 02:29:14 +0200 | [diff] [blame] | 609 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 610 | #define CONFIG_SYS_HUSH_PARSER 1 /* use "hush" command parser */ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 611 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 612 | #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */ |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 613 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 614 | #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */ |
Jon Loeliger | 2694690 | 2007-07-04 22:30:50 -0500 | [diff] [blame] | 615 | #endif |
| 616 | |
| 617 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 618 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 619 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 620 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 621 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 622 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
| 623 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 624 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 625 | |
| 626 | /* Enable an alternate, more extensive memory test */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 627 | #define CONFIG_SYS_ALT_MEMTEST |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 628 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 629 | #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */ |
| 630 | #define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 631 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 632 | #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 633 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 634 | /* |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 635 | * Enable loopw command. |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 636 | */ |
| 637 | #define CONFIG_LOOPW |
| 638 | |
| 639 | /* |
| 640 | * Various low-level settings |
| 641 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 642 | #define CONFIG_SYS_HID0_INIT HID0_ICE | HID0_ICFI |
| 643 | #define CONFIG_SYS_HID0_FINAL HID0_ICE |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 644 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 645 | #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE |
| 646 | #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE |
| 647 | #ifdef CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2 |
| 648 | #define CONFIG_SYS_BOOTCS_CFG 0x0008DF30 /* for pci_clk = 66 MHz */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 649 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 650 | #define CONFIG_SYS_BOOTCS_CFG 0x0004DF30 /* for pci_clk = 33 MHz */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 651 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 652 | #define CONFIG_SYS_CS0_START CONFIG_SYS_FLASH_BASE |
| 653 | #define CONFIG_SYS_CS0_SIZE CONFIG_SYS_FLASH_SIZE |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 654 | |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 655 | #define CONFIG_LAST_STAGE_INIT |
wdenk | 7e6bf35 | 2004-12-12 22:06:17 +0000 | [diff] [blame] | 656 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 657 | /* |
| 658 | * SRAM - Do not map below 2 GB in address space, because this area is used |
| 659 | * for SDRAM autosizing. |
| 660 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 661 | #define CONFIG_SYS_CS2_START 0xE5000000 |
| 662 | #define CONFIG_SYS_CS2_SIZE 0x100000 /* 1 MByte */ |
| 663 | #define CONFIG_SYS_CS2_CFG 0x0004D930 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 664 | |
| 665 | /* |
| 666 | * Grafic controller - Do not map below 2 GB in address space, because this |
| 667 | * area is used for SDRAM autosizing. |
| 668 | */ |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 669 | #define SM501_FB_BASE 0xE0000000 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 670 | #define CONFIG_SYS_CS1_START (SM501_FB_BASE) |
| 671 | #define CONFIG_SYS_CS1_SIZE 0x4000000 /* 64 MByte */ |
| 672 | #define CONFIG_SYS_CS1_CFG 0x8F48FF70 |
| 673 | #define SM501_MMIO_BASE CONFIG_SYS_CS1_START + 0x03E00000 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 674 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 675 | #define CONFIG_SYS_CS_BURST 0x00000000 |
| 676 | #define CONFIG_SYS_CS_DEADCYCLE 0x33333311 /* 1 dead cycle for flash and SM501 */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 677 | |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 678 | #if defined(CONFIG_CAM5200) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 679 | #define CONFIG_SYS_CS4_START 0xB0000000 |
| 680 | #define CONFIG_SYS_CS4_SIZE 0x00010000 |
| 681 | #define CONFIG_SYS_CS4_CFG 0x01019C10 |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 682 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 683 | #define CONFIG_SYS_CS5_START 0xD0000000 |
| 684 | #define CONFIG_SYS_CS5_SIZE 0x01208000 |
| 685 | #define CONFIG_SYS_CS5_CFG 0x1414BF10 |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 686 | #endif |
| 687 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 688 | #define CONFIG_SYS_RESET_ADDRESS 0xff000000 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 689 | |
| 690 | /*----------------------------------------------------------------------- |
| 691 | * USB stuff |
| 692 | *----------------------------------------------------------------------- |
| 693 | */ |
| 694 | #define CONFIG_USB_CLOCK 0x0001BBBB |
| 695 | #define CONFIG_USB_CONFIG 0x00001000 |
| 696 | |
| 697 | /*----------------------------------------------------------------------- |
| 698 | * IDE/ATA stuff Supports IDE harddisk |
| 699 | *----------------------------------------------------------------------- |
| 700 | */ |
| 701 | |
wdenk | 8105092 | 2004-07-11 20:04:51 +0000 | [diff] [blame] | 702 | #undef CONFIG_IDE_8xx_PCCARD /* Use IDE with PC Card Adapter */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 703 | |
wdenk | 8105092 | 2004-07-11 20:04:51 +0000 | [diff] [blame] | 704 | #undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */ |
| 705 | #undef CONFIG_IDE_LED /* LED for ide not supported */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 706 | |
wdenk | 8105092 | 2004-07-11 20:04:51 +0000 | [diff] [blame] | 707 | #define CONFIG_IDE_RESET /* reset for ide supported */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 708 | #define CONFIG_IDE_PREINIT |
| 709 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 710 | #define CONFIG_SYS_IDE_MAXBUS 1 /* max. 1 IDE bus */ |
| 711 | #define CONFIG_SYS_IDE_MAXDEVICE 2 /* max. 2 drives per IDE bus */ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 712 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 713 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 714 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 715 | #define CONFIG_SYS_ATA_BASE_ADDR MPC5XXX_ATA |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 716 | |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 717 | /* Offset for data I/O */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 718 | #define CONFIG_SYS_ATA_DATA_OFFSET (0x0060) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 719 | |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 720 | /* Offset for normal register accesses */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 721 | #define CONFIG_SYS_ATA_REG_OFFSET (CONFIG_SYS_ATA_DATA_OFFSET) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 722 | |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 723 | /* Offset for alternate registers */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 724 | #define CONFIG_SYS_ATA_ALT_OFFSET (0x005C) |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 725 | |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 726 | /* Interval between registers */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 727 | #define CONFIG_SYS_ATA_STRIDE 4 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 728 | |
Wolfgang Denk | 33af3e6 | 2008-10-01 12:34:58 +0200 | [diff] [blame] | 729 | /* Support ATAPI devices */ |
Detlev Zundel | 95c44ec | 2009-10-07 16:38:05 +0200 | [diff] [blame] | 730 | #define CONFIG_ATAPI 1 |
Wolfgang Denk | 33af3e6 | 2008-10-01 12:34:58 +0200 | [diff] [blame] | 731 | |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 732 | /*----------------------------------------------------------------------- |
| 733 | * Open firmware flat tree support |
| 734 | *----------------------------------------------------------------------- |
| 735 | */ |
Grant Likely | cf2817a | 2007-09-06 09:46:23 -0600 | [diff] [blame] | 736 | #define CONFIG_OF_LIBFDT 1 |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 737 | #define CONFIG_OF_BOARD_SETUP 1 |
| 738 | |
Bartlomiej Sieka | 8f8416f | 2007-06-08 14:52:22 +0200 | [diff] [blame] | 739 | #define OF_CPU "PowerPC,5200@0" |
| 740 | #define OF_SOC "soc5200@f0000000" |
| 741 | #define OF_TBCLK (bd->bi_busfreq / 4) |
| 742 | #define OF_STDOUT_PATH "/soc5200@f0000000/serial@2000" |
| 743 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 744 | #endif /* __CONFIG_H */ |