]>
Commit | Line | Data |
---|---|---|
d96f41e0 | 1 | /* |
1287e0c5 WG |
2 | * (C) Copyright 2007 |
3 | * Thomas Waehner, TQ-System GmbH, [email protected]. | |
4 | * | |
d96f41e0 SR |
5 | * (C) Copyright 2005 |
6 | * Stefan Roese, DENX Software Engineering, [email protected]. | |
7 | * | |
8 | * Wolfgang Denk <[email protected]> | |
9 | * Copyright 2004 Freescale Semiconductor. | |
10 | * (C) Copyright 2002,2003 Motorola,Inc. | |
11 | * Xianghua Xiao <[email protected]> | |
12 | * | |
13 | * See file CREDITS for list of people who contributed to this | |
14 | * project. | |
15 | * | |
16 | * This program is free software; you can redistribute it and/or | |
17 | * modify it under the terms of the GNU General Public License as | |
18 | * published by the Free Software Foundation; either version 2 of | |
19 | * the License, or (at your option) any later version. | |
20 | * | |
21 | * This program is distributed in the hope that it will be useful, | |
22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 | * GNU General Public License for more details. | |
25 | * | |
26 | * You should have received a copy of the GNU General Public License | |
27 | * along with this program; if not, write to the Free Software | |
28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
29 | * MA 02111-1307 USA | |
30 | */ | |
31 | ||
32 | /* | |
1287e0c5 | 33 | * TQM85xx (8560/40/55/41/48) board configuration file |
d96f41e0 SR |
34 | */ |
35 | ||
36 | #ifndef __CONFIG_H | |
37 | #define __CONFIG_H | |
38 | ||
39 | /* High Level Configuration Options */ | |
40 | #define CONFIG_BOOKE 1 /* BOOKE */ | |
41 | #define CONFIG_E500 1 /* BOOKE e500 family */ | |
42 | #define CONFIG_MPC85xx 1 /* MPC8540/60/55/41 */ | |
43 | ||
a865bcda | 44 | #if defined(CONFIG_TQM8548_AG) || defined(CONFIG_TQM8548_BE) |
ad7ee5d4 WG |
45 | #define CONFIG_TQM8548 |
46 | #endif | |
47 | ||
d96f41e0 | 48 | #define CONFIG_PCI |
a865bcda | 49 | #ifndef CONFIG_TQM8548_AG |
a3182348 | 50 | #define CONFIG_PCI1 /* PCI/PCI-X controller */ |
a865bcda | 51 | #endif |
a3182348 WG |
52 | #ifdef CONFIG_TQM8548 |
53 | #define CONFIG_PCIE1 /* PCI Express interface */ | |
54 | #endif | |
55 | ||
b9e8078b WG |
56 | #define CONFIG_FSL_PCI_INIT 1 /* Use common FSL init code */ |
57 | #define CONFIG_PCIX_CHECK /* PCIX olny works at 66 MHz */ | |
b9e8078b | 58 | #define CONFIG_FSL_PCIE_RESET 1 /* need PCIe reset errata */ |
b9e8078b | 59 | |
d96f41e0 SR |
60 | #define CONFIG_TSEC_ENET /* tsec ethernet support */ |
61 | ||
62 | #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */ | |
63 | ||
e8cc3f04 WG |
64 | /* |
65 | * Configuration for big NOR Flashes | |
66 | * | |
67 | * Define CONFIG_TQM_BIGFLASH for boards with more than 128 MiB NOR Flash. | |
68 | * Please be aware, that this changes the whole memory map (new CCSRBAR | |
69 | * address, etc). You have to use an adapted Linux kernel or FDT blob | |
70 | * if this option is set. | |
71 | */ | |
72 | #undef CONFIG_TQM_BIGFLASH | |
73 | ||
1c2deff2 WG |
74 | /* |
75 | * NAND flash support (disabled by default) | |
76 | * | |
77 | * Warning: NAND support will likely increase the U-Boot image size | |
14d0a02a | 78 | * to more than 256 KB. Please adjust CONFIG_SYS_TEXT_BASE if necessary. |
1c2deff2 | 79 | */ |
ad7ee5d4 WG |
80 | #ifdef CONFIG_TQM8548_BE |
81 | #define CONFIG_NAND | |
82 | #endif | |
1c2deff2 | 83 | |
d96f41e0 | 84 | /* |
1287e0c5 | 85 | * MPC8540 and MPC8548 don't have CPM module |
d96f41e0 | 86 | */ |
1287e0c5 | 87 | #if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8548) |
d96f41e0 SR |
88 | #define CONFIG_CPM2 1 /* has CPM2 */ |
89 | #endif | |
90 | ||
b99ba167 | 91 | #define CONFIG_FSL_LAW 1 /* Use common FSL init code */ |
4d3521cc | 92 | |
a865bcda | 93 | #if defined(CONFIG_TQM8548_AG) || defined(CONFIG_TQM8548_BE) |
ad7ee5d4 WG |
94 | #define CONFIG_CAN_DRIVER /* CAN Driver support */ |
95 | #endif | |
d9ee843d | 96 | |
d96f41e0 SR |
97 | /* |
98 | * sysclk for MPC85xx | |
99 | * | |
100 | * Two valid values are: | |
1287e0c5 WG |
101 | * 33333333 |
102 | * 66666666 | |
d96f41e0 SR |
103 | * |
104 | * Most PCI cards are still 33Mhz, so in the presence of PCI, 33MHz | |
105 | * is likely the desired value here, so that is now the default. | |
106 | * The board, however, can run at 66MHz. In any event, this value | |
107 | * must match the settings of some switches. Details can be found | |
108 | * in the README.mpc85xxads. | |
109 | */ | |
110 | ||
111 | #ifndef CONFIG_SYS_CLK_FREQ | |
112 | #define CONFIG_SYS_CLK_FREQ 33333333 | |
113 | #endif | |
114 | ||
115 | /* | |
116 | * These can be toggled for performance analysis, otherwise use default. | |
117 | */ | |
118 | #define CONFIG_L2_CACHE /* toggle L2 cache */ | |
119 | #define CONFIG_BTB /* toggle branch predition */ | |
d96f41e0 | 120 | |
6d0f6bcf | 121 | #define CONFIG_SYS_INIT_DBCR DBCR_IDM /* Enable Debug Exceptions */ |
d96f41e0 | 122 | |
6d0f6bcf JCPV |
123 | #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */ |
124 | #define CONFIG_SYS_MEMTEST_START 0x00000000 | |
125 | #define CONFIG_SYS_MEMTEST_END 0x10000000 | |
d96f41e0 SR |
126 | |
127 | /* | |
128 | * Base addresses -- Note these are effective addresses where the | |
129 | * actual resources get mapped (not physical addresses) | |
130 | */ | |
6d0f6bcf | 131 | #define CONFIG_SYS_CCSRBAR_DEFAULT 0xFF700000 /* CCSRBAR Default */ |
e8cc3f04 | 132 | #ifdef CONFIG_TQM_BIGFLASH |
6d0f6bcf | 133 | #define CONFIG_SYS_CCSRBAR 0xA0000000 /* relocated CCSRBAR */ |
e8cc3f04 | 134 | #else /* !CONFIG_TQM_BIGFLASH */ |
6d0f6bcf | 135 | #define CONFIG_SYS_CCSRBAR 0xE0000000 /* relocated CCSRBAR */ |
e8cc3f04 | 136 | #endif /* CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
137 | #define CONFIG_SYS_CCSRBAR_PHYS CONFIG_SYS_CCSRBAR /* physical addr of CCSRBAR */ |
138 | #define CONFIG_SYS_IMMR CONFIG_SYS_CCSRBAR /* PQII uses CONFIG_SYS_IMMR */ | |
d96f41e0 SR |
139 | |
140 | /* | |
141 | * DDR Setup | |
142 | */ | |
6d0f6bcf JCPV |
143 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 /* DDR is system memory */ |
144 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE | |
a865bcda WG |
145 | #ifdef CONFIG_TQM8548_AG |
146 | #define CONFIG_VERY_BIG_RAM | |
147 | #endif | |
d96f41e0 | 148 | |
457caecd KG |
149 | #define CONFIG_NUM_DDR_CONTROLLERS 1 |
150 | #define CONFIG_DIMM_SLOTS_PER_CTLR 1 | |
151 | #define CONFIG_CHIP_SELECTS_PER_CTRL 2 | |
152 | ||
d96f41e0 SR |
153 | #if defined(CONFIG_TQM8540) || defined(CONFIG_TQM8560) |
154 | /* TQM8540 & 8560 need DLL-override */ | |
155 | #define CONFIG_DDR_DLL /* DLL fix needed */ | |
156 | #define CONFIG_DDR_DEFAULT_CL 25 /* CAS latency 2,5 */ | |
b99ba167 | 157 | #endif /* CONFIG_TQM8540 || CONFIG_TQM8560 */ |
d96f41e0 | 158 | |
1287e0c5 WG |
159 | #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) || \ |
160 | defined(CONFIG_TQM8548) | |
d96f41e0 | 161 | #define CONFIG_DDR_DEFAULT_CL 30 /* CAS latency 3 */ |
1287e0c5 | 162 | #endif /* CONFIG_TQM8541 || CONFIG_TQM8555 || CONFIG_TQM8548 */ |
d96f41e0 SR |
163 | |
164 | /* | |
165 | * Flash on the Local Bus | |
166 | */ | |
e8cc3f04 | 167 | #ifdef CONFIG_TQM_BIGFLASH |
6d0f6bcf JCPV |
168 | #define CONFIG_SYS_FLASH0 0xE0000000 |
169 | #define CONFIG_SYS_FLASH1 0xC0000000 | |
e8cc3f04 | 170 | #else /* !CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
171 | #define CONFIG_SYS_FLASH0 0xFC000000 |
172 | #define CONFIG_SYS_FLASH1 0xF8000000 | |
e8cc3f04 | 173 | #endif /* CONFIG_TQM_BIGFLASH */ |
6d0f6bcf | 174 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH1, CONFIG_SYS_FLASH0 } |
d96f41e0 | 175 | |
6d0f6bcf JCPV |
176 | #define CONFIG_SYS_LBC_FLASH_BASE CONFIG_SYS_FLASH1 /* Localbus flash start */ |
177 | #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_LBC_FLASH_BASE /* start of FLASH */ | |
d96f41e0 | 178 | |
1287e0c5 WG |
179 | /* Default ORx timings are for <= 41.7 MHz Local Bus Clock. |
180 | * | |
181 | * Note: According to timing specifications external addr latch delay | |
182 | * (EAD, bit #0) must be set if Local Bus Clock is > 83 MHz. | |
183 | * | |
184 | * For other Local Bus Clocks see following table: | |
185 | * | |
6d0f6bcf | 186 | * Clock/MHz CONFIG_SYS_ORx_PRELIM |
1287e0c5 WG |
187 | * 166 0x.....CA5 |
188 | * 133 0x.....C85 | |
189 | * 100 0x.....C65 | |
190 | * 83 0x.....FA2 | |
191 | * 66 0x.....C82 | |
192 | * 50 0x.....C60 | |
193 | * 42 0x.....040 | |
194 | * 33 0x.....030 | |
195 | * 25 0x.....020 | |
196 | * | |
197 | */ | |
e8cc3f04 | 198 | #ifdef CONFIG_TQM_BIGFLASH |
6d0f6bcf JCPV |
199 | #define CONFIG_SYS_BR0_PRELIM 0xE0001801 /* port size 32bit */ |
200 | #define CONFIG_SYS_OR0_PRELIM 0xE0000040 /* 512MB Flash */ | |
201 | #define CONFIG_SYS_BR1_PRELIM 0xC0001801 /* port size 32bit */ | |
202 | #define CONFIG_SYS_OR1_PRELIM 0xE0000040 /* 512MB Flash */ | |
e8cc3f04 | 203 | #else /* !CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
204 | #define CONFIG_SYS_BR0_PRELIM 0xfc001801 /* port size 32bit */ |
205 | #define CONFIG_SYS_OR0_PRELIM 0xfc000040 /* 64MB Flash */ | |
206 | #define CONFIG_SYS_BR1_PRELIM 0xf8001801 /* port size 32bit */ | |
207 | #define CONFIG_SYS_OR1_PRELIM 0xfc000040 /* 64MB Flash */ | |
e8cc3f04 | 208 | #endif /* CONFIG_TQM_BIGFLASH */ |
d96f41e0 | 209 | |
6d0f6bcf | 210 | #define CONFIG_SYS_FLASH_CFI /* flash is CFI compat. */ |
00b1883a | 211 | #define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */ |
6d0f6bcf JCPV |
212 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector */ |
213 | #define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/ | |
214 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* speed up output to Flash */ | |
d96f41e0 | 215 | |
6d0f6bcf JCPV |
216 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* number of banks */ |
217 | #define CONFIG_SYS_MAX_FLASH_SECT 512 /* sectors per device */ | |
218 | #undef CONFIG_SYS_FLASH_CHECKSUM | |
219 | #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */ | |
220 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */ | |
d96f41e0 | 221 | |
14d0a02a | 222 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
d96f41e0 | 223 | |
1287e0c5 WG |
224 | /* |
225 | * Note: when changing the Local Bus clock divider you have to | |
6d0f6bcf | 226 | * change the timing values in CONFIG_SYS_ORx_PRELIM. |
1287e0c5 WG |
227 | * |
228 | * LCRR[00:03] CLKDIV: System (CCB) clock divider. Valid values are 2, 4, 8. | |
229 | * LCRR[16:17] EADC : External address delay cycles. It should be set to 2 | |
230 | * for Local Bus Clock > 83.3 MHz. | |
231 | */ | |
6d0f6bcf JCPV |
232 | #define CONFIG_SYS_LBC_LCRR 0x00030008 /* LB clock ratio reg */ |
233 | #define CONFIG_SYS_LBC_LBCR 0x00000000 /* LB config reg */ | |
234 | #define CONFIG_SYS_LBC_LSRT 0x20000000 /* LB sdram refresh timer */ | |
235 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 /* LB refresh timer presc.*/ | |
d96f41e0 | 236 | |
6d0f6bcf JCPV |
237 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
238 | #define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_CCSRBAR \ | |
e8cc3f04 | 239 | + 0x04010000) /* Initial RAM address */ |
6d0f6bcf | 240 | #define CONFIG_SYS_INIT_RAM_END 0x4000 /* End used area in RAM */ |
d96f41e0 | 241 | |
6d0f6bcf JCPV |
242 | #define CONFIG_SYS_GBL_DATA_SIZE 128 /* num bytes initial data */ |
243 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE) | |
244 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET | |
d96f41e0 | 245 | |
14d0a02a | 246 | #define CONFIG_SYS_MONITOR_LEN (~CONFIG_SYS_TEXT_BASE + 1)/* Reserved for Monitor */ |
6d0f6bcf | 247 | #define CONFIG_SYS_MALLOC_LEN (384 * 1024) /* Reserved for malloc */ |
d96f41e0 SR |
248 | |
249 | /* Serial Port */ | |
250 | #if defined(CONFIG_TQM8560) | |
251 | ||
b99ba167 WG |
252 | #define CONFIG_CONS_ON_SCC /* define if console on SCC */ |
253 | #undef CONFIG_CONS_NONE /* define if console on something else */ | |
254 | #define CONFIG_CONS_INDEX 1 /* which serial channel for console */ | |
d96f41e0 | 255 | |
b99ba167 | 256 | #else /* !CONFIG_TQM8560 */ |
d96f41e0 SR |
257 | |
258 | #define CONFIG_CONS_INDEX 1 | |
6d0f6bcf JCPV |
259 | #define CONFIG_SYS_NS16550 |
260 | #define CONFIG_SYS_NS16550_SERIAL | |
261 | #define CONFIG_SYS_NS16550_REG_SIZE 1 | |
262 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) | |
d96f41e0 | 263 | |
6d0f6bcf JCPV |
264 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500) |
265 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600) | |
d96f41e0 | 266 | |
bc8bb6d4 WD |
267 | /* PS/2 Keyboard */ |
268 | #define CONFIG_PS2KBD /* AT-PS/2 Keyboard */ | |
269 | #define CONFIG_PS2MULT /* .. on PS/2 Multiplexer */ | |
270 | #define CONFIG_PS2SERIAL 2 /* .. on DUART2 */ | |
6d0f6bcf | 271 | #define CONFIG_PS2MULT_DELAY (CONFIG_SYS_HZ/2) /* Initial delay */ |
bc8bb6d4 WD |
272 | #define CONFIG_BOARD_EARLY_INIT_R 1 |
273 | ||
966083e9 WD |
274 | #endif /* CONFIG_TQM8560 */ |
275 | ||
b99ba167 | 276 | #define CONFIG_BAUDRATE 115200 |
966083e9 | 277 | |
6d0f6bcf | 278 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
b99ba167 | 279 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
966083e9 | 280 | |
2751a95a | 281 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
5be58f5f | 282 | #define CONFIG_AUTO_COMPLETE 1 /* add autocompletion support */ |
6d0f6bcf JCPV |
283 | #define CONFIG_SYS_HUSH_PARSER 1 /* Use the HUSH parser */ |
284 | #ifdef CONFIG_SYS_HUSH_PARSER | |
285 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " | |
d96f41e0 SR |
286 | #endif |
287 | ||
25991353 WG |
288 | /* pass open firmware flat tree */ |
289 | #define CONFIG_OF_LIBFDT 1 | |
290 | #define CONFIG_OF_BOARD_SETUP 1 | |
291 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 | |
292 | ||
d9ee843d | 293 | /* CAN */ |
6d0f6bcf | 294 | #define CONFIG_SYS_CAN_BASE (CONFIG_SYS_CCSRBAR \ |
e8cc3f04 | 295 | + 0x03000000) /* CAN base address */ |
1c2deff2 | 296 | #ifdef CONFIG_CAN_DRIVER |
6d0f6bcf JCPV |
297 | #define CONFIG_SYS_CAN_OR_AM 0xFFFF8000 /* 32 KiB address mask */ |
298 | #define CONFIG_SYS_OR2_CAN (CONFIG_SYS_CAN_OR_AM | OR_UPM_BI) | |
299 | #define CONFIG_SYS_BR2_CAN ((CONFIG_SYS_CAN_BASE & BR_BA) | \ | |
d9ee843d WG |
300 | BR_PS_8 | BR_MS_UPMC | BR_V) |
301 | #endif /* CONFIG_CAN_DRIVER */ | |
302 | ||
20476726 JL |
303 | /* |
304 | * I2C | |
305 | */ | |
b99ba167 | 306 | #define CONFIG_FSL_I2C /* Use FSL common I2C driver */ |
d96f41e0 SR |
307 | #define CONFIG_HARD_I2C /* I2C with hardware support */ |
308 | #undef CONFIG_SOFT_I2C /* I2C bit-banged */ | |
6d0f6bcf JCPV |
309 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
310 | #define CONFIG_SYS_I2C_SLAVE 0x7F | |
311 | #define CONFIG_SYS_I2C_NOPROBES {0x48} /* Don't probe these addrs */ | |
312 | #define CONFIG_SYS_I2C_OFFSET 0x3000 | |
d96f41e0 SR |
313 | |
314 | /* I2C RTC */ | |
315 | #define CONFIG_RTC_DS1337 /* Use ds1337 rtc via i2c */ | |
6d0f6bcf | 316 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */ |
d96f41e0 SR |
317 | |
318 | /* I2C EEPROM */ | |
319 | /* | |
320 | * EEPROM configuration for onboard EEPROM M24C32 (M24C64 should work also). | |
321 | */ | |
6d0f6bcf JCPV |
322 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* 1010000x */ |
323 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 | |
324 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 5 /* =32 Bytes per write */ | |
325 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 20 | |
326 | #define CONFIG_SYS_I2C_MULTI_EEPROMS 1 /* more than one eeprom */ | |
d96f41e0 SR |
327 | |
328 | /* I2C SYSMON (LM75) */ | |
329 | #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */ | |
330 | #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */ | |
6d0f6bcf JCPV |
331 | #define CONFIG_SYS_DTT_MAX_TEMP 70 |
332 | #define CONFIG_SYS_DTT_LOW_TEMP -30 | |
333 | #define CONFIG_SYS_DTT_HYSTERESIS 3 | |
d96f41e0 | 334 | |
b9e8078b | 335 | #ifndef CONFIG_PCIE1 |
d96f41e0 | 336 | /* RapidIO MMU */ |
e8cc3f04 | 337 | #ifdef CONFIG_TQM_BIGFLASH |
6d0f6bcf JCPV |
338 | #define CONFIG_SYS_RIO_MEM_BASE 0xb0000000 /* base address */ |
339 | #define CONFIG_SYS_RIO_MEM_SIZE 0x10000000 /* 256M */ | |
e8cc3f04 | 340 | #else /* !CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
341 | #define CONFIG_SYS_RIO_MEM_BASE 0xc0000000 /* base address */ |
342 | #define CONFIG_SYS_RIO_MEM_SIZE 0x20000000 /* 512M */ | |
e8cc3f04 | 343 | #endif /* CONFIG_TQM_BIGFLASH */ |
6d0f6bcf | 344 | #define CONFIG_SYS_RIO_MEM_PHYS CONFIG_SYS_RIO_MEM_BASE |
b9e8078b | 345 | #endif /* CONFIG_PCIE1 */ |
d96f41e0 | 346 | |
1c2deff2 WG |
347 | /* NAND FLASH */ |
348 | #ifdef CONFIG_NAND | |
349 | ||
1c2deff2 WG |
350 | #define CONFIG_NAND_FSL_UPM 1 |
351 | ||
352 | #define CONFIG_MTD_NAND_ECC_JFFS2 1 /* use JFFS2 ECC */ | |
353 | ||
354 | /* address distance between chip selects */ | |
6d0f6bcf JCPV |
355 | #define CONFIG_SYS_NAND_SELECT_DEVICE 1 |
356 | #define CONFIG_SYS_NAND_CS_DIST 0x200 | |
1c2deff2 | 357 | |
6d0f6bcf | 358 | #define CONFIG_SYS_NAND_SIZE 0x8000 |
16f2f5a3 WG |
359 | #define CONFIG_SYS_NAND_BASE (CONFIG_SYS_CCSRBAR + 0x03010000) |
360 | ||
361 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND devices */ | |
362 | #define CONFIG_SYS_NAND_MAX_CHIPS 2 /* Number of chips per device */ | |
1c2deff2 WG |
363 | |
364 | /* CS3 for NAND Flash */ | |
16f2f5a3 WG |
365 | #define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_NAND_BASE & BR_BA) | \ |
366 | BR_PS_8 | BR_MS_UPMB | BR_V) | |
6d0f6bcf | 367 | #define CONFIG_SYS_OR3_PRELIM (P2SZ_TO_AM(CONFIG_SYS_NAND_SIZE) | OR_UPM_BI) |
1c2deff2 | 368 | |
16f2f5a3 | 369 | #define NAND_BIG_DELAY_US 25 /* max tR for Samsung devices */ |
1c2deff2 WG |
370 | |
371 | #endif /* CONFIG_NAND */ | |
372 | ||
d96f41e0 SR |
373 | /* |
374 | * General PCI | |
375 | * Addresses are mapped 1-1. | |
376 | */ | |
6d0f6bcf JCPV |
377 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
378 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE | |
379 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x20000000 /* 512M */ | |
380 | #define CONFIG_SYS_PCI1_IO_BASE (CONFIG_SYS_CCSRBAR + 0x02000000) | |
381 | #define CONFIG_SYS_PCI1_IO_PHYS CONFIG_SYS_PCI1_IO_BASE | |
382 | #define CONFIG_SYS_PCI1_IO_SIZE 0x1000000 /* 16M */ | |
d96f41e0 | 383 | |
b9e8078b WG |
384 | #ifdef CONFIG_PCIE1 |
385 | /* | |
386 | * General PCI express | |
387 | * Addresses are mapped 1-1. | |
388 | */ | |
e8cc3f04 | 389 | #ifdef CONFIG_TQM_BIGFLASH |
6d0f6bcf JCPV |
390 | #define CONFIG_SYS_PCIE1_MEM_BASE 0xb0000000 |
391 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x10000000 /* 512M */ | |
392 | #define CONFIG_SYS_PCIE1_IO_BASE 0xaf000000 | |
e8cc3f04 | 393 | #else /* !CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
394 | #define CONFIG_SYS_PCIE1_MEM_BASE 0xc0000000 |
395 | #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */ | |
396 | #define CONFIG_SYS_PCIE1_IO_BASE 0xef000000 | |
e8cc3f04 | 397 | #endif /* CONFIG_TQM_BIGFLASH */ |
6d0f6bcf JCPV |
398 | #define CONFIG_SYS_PCIE1_MEM_PHYS CONFIG_SYS_PCIE1_MEM_BASE |
399 | #define CONFIG_SYS_PCIE1_IO_PHYS CONFIG_SYS_PCIE1_IO_BASE | |
400 | #define CONFIG_SYS_PCIE1_IO_SIZE 0x1000000 /* 16M */ | |
b9e8078b WG |
401 | #endif /* CONFIG_PCIE1 */ |
402 | ||
d96f41e0 SR |
403 | #if defined(CONFIG_PCI) |
404 | ||
405 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ | |
406 | ||
407 | #define CONFIG_EEPRO100 | |
408 | #undef CONFIG_TULIP | |
409 | ||
410 | #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ | |
6d0f6bcf | 411 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */ |
d96f41e0 | 412 | |
b99ba167 | 413 | #endif /* CONFIG_PCI */ |
d96f41e0 SR |
414 | |
415 | #define CONFIG_NET_MULTI 1 | |
416 | ||
417 | #define CONFIG_MII 1 /* MII PHY management */ | |
255a3577 KP |
418 | #define CONFIG_TSEC1 1 |
419 | #define CONFIG_TSEC1_NAME "TSEC0" | |
420 | #define CONFIG_TSEC2 1 | |
421 | #define CONFIG_TSEC2_NAME "TSEC1" | |
d96f41e0 SR |
422 | #define TSEC1_PHY_ADDR 2 |
423 | #define TSEC2_PHY_ADDR 1 | |
424 | #define TSEC1_PHYIDX 0 | |
425 | #define TSEC2_PHYIDX 0 | |
3a79013e AF |
426 | #define TSEC1_FLAGS TSEC_GIGABIT |
427 | #define TSEC2_FLAGS TSEC_GIGABIT | |
d96f41e0 SR |
428 | #define FEC_PHY_ADDR 3 |
429 | #define FEC_PHYIDX 0 | |
3a79013e | 430 | #define FEC_FLAGS 0 |
10327dc5 | 431 | #define CONFIG_HAS_ETH0 |
d96f41e0 SR |
432 | #define CONFIG_HAS_ETH1 |
433 | #define CONFIG_HAS_ETH2 | |
434 | ||
1287e0c5 WG |
435 | #ifdef CONFIG_TQM8548 |
436 | /* | |
437 | * TQM8548 has 4 ethernet ports. 4 ETSEC's. | |
438 | * | |
439 | * On the STK85xx Starterkit the ETSEC3/4 ports are on an | |
440 | * additional adapter (AIO) between module and Starterkit. | |
441 | */ | |
442 | #define CONFIG_TSEC3 1 | |
443 | #define CONFIG_TSEC3_NAME "TSEC2" | |
444 | #define CONFIG_TSEC4 1 | |
445 | #define CONFIG_TSEC4_NAME "TSEC3" | |
446 | #define TSEC3_PHY_ADDR 4 | |
447 | #define TSEC4_PHY_ADDR 5 | |
448 | #define TSEC3_PHYIDX 0 | |
449 | #define TSEC4_PHYIDX 0 | |
450 | #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) | |
451 | #define TSEC4_FLAGS (TSEC_GIGABIT | TSEC_REDUCED) | |
452 | #define CONFIG_HAS_ETH3 | |
453 | #define CONFIG_HAS_ETH4 | |
454 | #endif /* CONFIG_TQM8548 */ | |
455 | ||
d96f41e0 SR |
456 | /* Options are TSEC[0-1], FEC */ |
457 | #define CONFIG_ETHPRIME "TSEC0" | |
458 | ||
459 | #if defined(CONFIG_TQM8540) | |
460 | /* | |
461 | * TQM8540 has 3 ethernet ports. 2 TSEC's and one FEC. | |
462 | * The FEC port is connected on the same signals as the FCC3 port | |
463 | * of the TQM8560 to the baseboard (STK85xx Starterkit). | |
464 | * | |
465 | * On the STK85xx Starterkit the X47/X50 jumper has to be set to | |
466 | * a - d (X50.2 - 3) to enable the FEC port. | |
467 | */ | |
468 | #define CONFIG_MPC85XX_FEC 1 | |
469 | #define CONFIG_MPC85XX_FEC_NAME "FEC" | |
470 | #endif | |
471 | ||
472 | #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) | |
473 | /* | |
474 | * TQM8541/55 have 4 ethernet ports. 2 TSEC's and 2 FCC's. Only one FCC port | |
475 | * can be used at once, since only one FCC port is available on the STK85xx | |
476 | * Starterkit. | |
477 | * | |
478 | * To use this port you have to configure U-Boot to use the FCC port 1...2 | |
479 | * and set the X47/X50 jumper to: | |
480 | * FCC1: a - b (X47.2 - X50.2) | |
481 | * FCC2: a - c (X50.2 - 1) | |
482 | */ | |
483 | #define CONFIG_ETHER_ON_FCC | |
b99ba167 | 484 | #define CONFIG_ETHER_INDEX 1 /* FCC channel for ethernet */ |
d96f41e0 SR |
485 | #endif |
486 | ||
487 | #if defined(CONFIG_TQM8560) | |
488 | /* | |
489 | * TQM8560 has 5 ethernet ports. 2 TSEC's and 3 FCC's. Only one FCC port | |
490 | * can be used at once, since only one FCC port is available on the STK85xx | |
491 | * Starterkit. | |
492 | * | |
493 | * To use this port you have to configure U-Boot to use the FCC port 1...3 | |
494 | * and set the X47/X50 jumper to: | |
495 | * FCC1: a - b (X47.2 - X50.2) | |
496 | * FCC2: a - c (X50.2 - 1) | |
497 | * FCC3: a - d (X50.2 - 3) | |
498 | */ | |
499 | #define CONFIG_ETHER_ON_FCC | |
b99ba167 | 500 | #define CONFIG_ETHER_INDEX 3 /* FCC channel for ethernet */ |
d96f41e0 SR |
501 | #endif |
502 | ||
503 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 1) | |
504 | #define CONFIG_ETHER_ON_FCC1 | |
6d0f6bcf | 505 | #define CONFIG_SYS_CMXFCR_MASK1 (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | \ |
b99ba167 | 506 | CMXFCR_TF1CS_MSK) |
6d0f6bcf JCPV |
507 | #define CONFIG_SYS_CMXFCR_VALUE1 (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12) |
508 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 | |
509 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) | |
d96f41e0 SR |
510 | #endif |
511 | ||
512 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 2) | |
513 | #define CONFIG_ETHER_ON_FCC2 | |
6d0f6bcf | 514 | #define CONFIG_SYS_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | \ |
b99ba167 | 515 | CMXFCR_TF2CS_MSK) |
6d0f6bcf JCPV |
516 | #define CONFIG_SYS_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK16 | CMXFCR_TF2CS_CLK13) |
517 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 | |
518 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) | |
d96f41e0 SR |
519 | #endif |
520 | ||
521 | #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 3) | |
522 | #define CONFIG_ETHER_ON_FCC3 | |
6d0f6bcf | 523 | #define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | \ |
b99ba167 | 524 | CMXFCR_TF3CS_MSK) |
6d0f6bcf JCPV |
525 | #define CONFIG_SYS_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15 | CMXFCR_TF3CS_CLK14) |
526 | #define CONFIG_SYS_CPMFCR_RAMTYPE 0 | |
527 | #define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB) | |
d96f41e0 SR |
528 | #endif |
529 | ||
530 | /* | |
531 | * Environment | |
532 | */ | |
5a1aceb0 | 533 | #define CONFIG_ENV_IS_IN_FLASH 1 |
46346f27 | 534 | |
0e8d1586 | 535 | #define CONFIG_ENV_SECT_SIZE 0x40000 /* 256K (one sector) for env */ |
6d0f6bcf | 536 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE) |
0e8d1586 JCPV |
537 | #define CONFIG_ENV_SIZE 0x2000 |
538 | #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR - CONFIG_ENV_SECT_SIZE) | |
539 | #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE) | |
d96f41e0 SR |
540 | |
541 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ | |
6d0f6bcf | 542 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
d96f41e0 | 543 | |
b99ba167 | 544 | #define CONFIG_TIMESTAMP /* Print image info with ts */ |
2835e518 | 545 | |
a1aa0bb5 JL |
546 | /* |
547 | * BOOTP options | |
548 | */ | |
549 | #define CONFIG_BOOTP_BOOTFILESIZE | |
550 | #define CONFIG_BOOTP_BOOTPATH | |
551 | #define CONFIG_BOOTP_GATEWAY | |
552 | #define CONFIG_BOOTP_HOSTNAME | |
553 | ||
1c2deff2 WG |
554 | #ifdef CONFIG_NAND |
555 | /* | |
556 | * Use NAND-FLash as JFFS2 device | |
557 | */ | |
558 | #define CONFIG_CMD_NAND | |
559 | #define CONFIG_CMD_JFFS2 | |
560 | ||
561 | #define CONFIG_JFFS2_NAND 1 | |
562 | ||
68d7d651 | 563 | #ifdef CONFIG_CMD_MTDPARTS |
942556a9 SR |
564 | #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ |
565 | #define CONFIG_FLASH_CFI_MTD | |
1c2deff2 WG |
566 | #define MTDIDS_DEFAULT "nand0=TQM85xx-nand" |
567 | #define MTDPARTS_DEFAULT "mtdparts=TQM85xx-nand:-" | |
568 | #else | |
569 | #define CONFIG_JFFS2_DEV "nand0" /* NAND device jffs2 lives on */ | |
570 | #define CONFIG_JFFS2_PART_OFFSET 0 /* start of jffs2 partition */ | |
571 | #define CONFIG_JFFS2_PART_SIZE 0x200000 /* size of jffs2 partition */ | |
68d7d651 | 572 | #endif /* CONFIG_CMD_MTDPARTS */ |
1c2deff2 WG |
573 | |
574 | #endif /* CONFIG_NAND */ | |
575 | ||
2835e518 JL |
576 | /* |
577 | * Command line configuration. | |
578 | */ | |
579 | #include <config_cmd_default.h> | |
580 | ||
581 | #define CONFIG_CMD_PING | |
582 | #define CONFIG_CMD_I2C | |
583 | #define CONFIG_CMD_DHCP | |
584 | #define CONFIG_CMD_NFS | |
585 | #define CONFIG_CMD_SNTP | |
a865bcda | 586 | #ifndef CONFIG_TQM8548_AG |
2835e518 | 587 | #define CONFIG_CMD_DATE |
a865bcda | 588 | #endif |
2835e518 JL |
589 | #define CONFIG_CMD_EEPROM |
590 | #define CONFIG_CMD_DTT | |
591 | #define CONFIG_CMD_MII | |
199e262e | 592 | #define CONFIG_CMD_REGINFO |
2835e518 | 593 | |
d96f41e0 | 594 | #if defined(CONFIG_PCI) |
b99ba167 | 595 | #define CONFIG_CMD_PCI |
d96f41e0 SR |
596 | #endif |
597 | ||
d96f41e0 SR |
598 | #undef CONFIG_WATCHDOG /* watchdog disabled */ |
599 | ||
600 | /* | |
601 | * Miscellaneous configurable options | |
602 | */ | |
6d0f6bcf JCPV |
603 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
604 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ | |
605 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ | |
d96f41e0 | 606 | |
2835e518 | 607 | #if defined(CONFIG_CMD_KGDB) |
6d0f6bcf | 608 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
d96f41e0 | 609 | #else |
6d0f6bcf | 610 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
d96f41e0 SR |
611 | #endif |
612 | ||
6d0f6bcf JCPV |
613 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
614 | sizeof(CONFIG_SYS_PROMPT) + 16) /* Print Buf Size */ | |
615 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ | |
616 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ | |
617 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1ms ticks */ | |
d96f41e0 SR |
618 | |
619 | /* | |
620 | * For booting Linux, the board info and command line data | |
621 | * have to be in the first 8 MB of memory, since this is | |
622 | * the maximum mapped by the Linux kernel during initialization. | |
623 | */ | |
6d0f6bcf | 624 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
d96f41e0 | 625 | |
d96f41e0 SR |
626 | /* |
627 | * Internal Definitions | |
628 | * | |
629 | * Boot Flags | |
630 | */ | |
631 | #define BOOTFLAG_COLD 0x01 /* Power-On: Boot from FLASH */ | |
632 | #define BOOTFLAG_WARM 0x02 /* Software reboot */ | |
633 | ||
2835e518 | 634 | #if defined(CONFIG_CMD_KGDB) |
d96f41e0 SR |
635 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/ |
636 | #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ | |
637 | #endif | |
638 | ||
d96f41e0 SR |
639 | #define CONFIG_LOADADDR 200000 /* default addr for tftp & bootm*/ |
640 | ||
641 | #define CONFIG_BOOTDELAY 5 /* -1 disables auto-boot */ | |
642 | ||
643 | #define CONFIG_PREBOOT "echo;" \ | |
d8519dc7 | 644 | "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \ |
d96f41e0 SR |
645 | "echo" |
646 | ||
647 | #undef CONFIG_BOOTARGS /* the boot command will set bootargs */ | |
648 | ||
25991353 WG |
649 | |
650 | /* | |
651 | * Setup some board specific values for the default environment variables | |
652 | */ | |
653 | #ifdef CONFIG_CPM2 | |
0e8d1586 | 654 | #define CONFIG_ENV_CONSDEV "consdev=ttyCPM0\0" |
25991353 | 655 | #else |
0e8d1586 | 656 | #define CONFIG_ENV_CONSDEV "consdev=ttyS0\0" |
25991353 | 657 | #endif |
0e8d1586 | 658 | #define CONFIG_ENV_FDT_FILE "fdt_file="MK_STR(CONFIG_HOSTNAME)"/" \ |
25991353 | 659 | MK_STR(CONFIG_HOSTNAME)".dtb\0" |
0e8d1586 JCPV |
660 | #define CONFIG_ENV_BOOTFILE "bootfile="MK_STR(CONFIG_HOSTNAME)"/uImage\0" |
661 | #define CONFIG_ENV_UBOOT "uboot="MK_STR(CONFIG_HOSTNAME)"/u-boot.bin\0" \ | |
14d0a02a | 662 | "uboot_addr="MK_STR(CONFIG_SYS_TEXT_BASE)"\0" |
25991353 | 663 | |
d96f41e0 | 664 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
0e8d1586 JCPV |
665 | CONFIG_ENV_BOOTFILE \ |
666 | CONFIG_ENV_FDT_FILE \ | |
7a2063bd | 667 | CONFIG_ENV_CONSDEV \ |
d96f41e0 | 668 | "netdev=eth0\0" \ |
d96f41e0 SR |
669 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
670 | "nfsroot=$serverip:$rootpath\0" \ | |
671 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ | |
672 | "addip=setenv bootargs $bootargs " \ | |
673 | "ip=$ipaddr:$serverip:$gatewayip:$netmask" \ | |
674 | ":$hostname:$netdev:off panic=1\0" \ | |
675 | "addcons=setenv bootargs $bootargs " \ | |
676 | "console=$consdev,$baudrate\0" \ | |
677 | "flash_nfs=run nfsargs addip addcons;" \ | |
25991353 | 678 | "bootm $kernel_addr - $fdt_addr\0" \ |
d96f41e0 | 679 | "flash_self=run ramargs addip addcons;" \ |
25991353 WG |
680 | "bootm $kernel_addr $ramdisk_addr $fdt_addr\0" \ |
681 | "net_nfs=tftp $kernel_addr_r $bootfile;" \ | |
682 | "tftp $fdt_addr_r $fdt_file;" \ | |
683 | "run nfsargs addip addcons;" \ | |
684 | "bootm $kernel_addr_r - $fdt_addr_r\0" \ | |
d96f41e0 | 685 | "rootpath=/opt/eldk/ppc_85xx\0" \ |
25991353 WG |
686 | "fdt_addr_r=900000\0" \ |
687 | "kernel_addr_r=1000000\0" \ | |
688 | "fdt_addr=ffec0000\0" \ | |
689 | "kernel_addr=ffd00000\0" \ | |
690 | "ramdisk_addr=ff800000\0" \ | |
7a2063bd | 691 | CONFIG_ENV_UBOOT \ |
25991353 WG |
692 | "load=tftp 100000 $uboot\0" \ |
693 | "update=protect off $uboot_addr +$filesize;" \ | |
694 | "erase $uboot_addr +$filesize;" \ | |
7a2063bd | 695 | "cp.b 100000 $uboot_addr $filesize" \ |
d8ab58b2 | 696 | "upd=run load update\0" \ |
d96f41e0 SR |
697 | "" |
698 | #define CONFIG_BOOTCOMMAND "run flash_self" | |
699 | ||
b99ba167 | 700 | #endif /* __CONFIG_H */ |