]>
Commit | Line | Data |
---|---|---|
5f820439 | 1 | /* |
d37be07e | 2 | * Copyright (C) 2006,2011 Freescale Semiconductor, Inc. |
5f820439 DL |
3 | * |
4 | * Dave Liu <[email protected]> | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU General Public License as | |
8 | * published by the Free Software Foundation; either version 2 of | |
9 | * the License, or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
dd520bf3 | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5f820439 DL |
14 | * GNU General Public License for more details. |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, write to the Free Software | |
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
19 | * MA 02111-1307 USA | |
20 | */ | |
21 | ||
22 | #ifndef __CONFIG_H | |
23 | #define __CONFIG_H | |
24 | ||
5f820439 DL |
25 | /* |
26 | * High Level Configuration Options | |
27 | */ | |
28 | #define CONFIG_E300 1 /* E300 family */ | |
29 | #define CONFIG_QE 1 /* Has QE */ | |
0f898604 | 30 | #define CONFIG_MPC83xx 1 /* MPC83xx family */ |
5f820439 DL |
31 | #define CONFIG_MPC8360 1 /* MPC8360 CPU specific */ |
32 | #define CONFIG_MPC8360EMDS 1 /* MPC8360EMDS board specific */ | |
2ae18241 WD |
33 | |
34 | #define CONFIG_SYS_TEXT_BASE 0xFE000000 | |
35 | ||
14778585 TL |
36 | #undef CONFIG_PQ_MDS_PIB /* POWERQUICC MDS Platform IO Board */ |
37 | #undef CONFIG_PQ_MDS_PIB_ATM /* QOC3 ATM card */ | |
5f820439 DL |
38 | |
39 | /* | |
40 | * System Clock Setup | |
41 | */ | |
6be55ee2 JH |
42 | #ifdef CONFIG_CLKIN_33MHZ |
43 | #ifdef CONFIG_PCISLAVE | |
44 | #define CONFIG_83XX_PCICLK 33330000 /* in HZ */ | |
45 | #else | |
46 | #define CONFIG_83XX_CLKIN 33330000 /* in Hz */ | |
47 | #endif | |
48 | ||
49 | #ifndef CONFIG_SYS_CLK_FREQ | |
50 | #define CONFIG_SYS_CLK_FREQ 33330000 | |
51 | #endif | |
52 | ||
53 | #elif defined(CONFIG_CLKIN_66MHZ) | |
5f820439 DL |
54 | #ifdef CONFIG_PCISLAVE |
55 | #define CONFIG_83XX_PCICLK 66000000 /* in HZ */ | |
56 | #else | |
57 | #define CONFIG_83XX_CLKIN 66000000 /* in Hz */ | |
58 | #endif | |
59 | ||
60 | #ifndef CONFIG_SYS_CLK_FREQ | |
61 | #define CONFIG_SYS_CLK_FREQ 66000000 | |
62 | #endif | |
6be55ee2 JH |
63 | #else |
64 | #error Unknown oscillator frequency. | |
65 | #endif | |
5f820439 DL |
66 | |
67 | /* | |
68 | * Hardware Reset Configuration Word | |
69 | */ | |
6be55ee2 JH |
70 | #ifdef CONFIG_CLKIN_33MHZ |
71 | #define CONFIG_SYS_HRCW_LOW (\ | |
72 | HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\ | |
73 | HRCWL_DDR_TO_SCB_CLK_1X1 |\ | |
74 | HRCWL_CSB_TO_CLKIN_8X1 |\ | |
75 | HRCWL_VCO_1X2 |\ | |
76 | HRCWL_CE_PLL_VCO_DIV_4 |\ | |
77 | HRCWL_CE_PLL_DIV_1X1 |\ | |
78 | HRCWL_CE_TO_PLL_1X15 |\ | |
79 | HRCWL_CORE_TO_CSB_2X1) | |
80 | #elif defined(CONFIG_CLKIN_66MHZ) | |
6d0f6bcf | 81 | #define CONFIG_SYS_HRCW_LOW (\ |
5f820439 DL |
82 | HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\ |
83 | HRCWL_DDR_TO_SCB_CLK_1X1 |\ | |
84 | HRCWL_CSB_TO_CLKIN_4X1 |\ | |
85 | HRCWL_VCO_1X2 |\ | |
86 | HRCWL_CE_PLL_VCO_DIV_4 |\ | |
87 | HRCWL_CE_PLL_DIV_1X1 |\ | |
88 | HRCWL_CE_TO_PLL_1X6 |\ | |
89 | HRCWL_CORE_TO_CSB_2X1) | |
6be55ee2 | 90 | #endif |
5f820439 DL |
91 | |
92 | #ifdef CONFIG_PCISLAVE | |
6d0f6bcf | 93 | #define CONFIG_SYS_HRCW_HIGH (\ |
5f820439 DL |
94 | HRCWH_PCI_AGENT |\ |
95 | HRCWH_PCI1_ARBITER_DISABLE |\ | |
96 | HRCWH_PCICKDRV_DISABLE |\ | |
97 | HRCWH_CORE_ENABLE |\ | |
98 | HRCWH_FROM_0XFFF00100 |\ | |
99 | HRCWH_BOOTSEQ_DISABLE |\ | |
100 | HRCWH_SW_WATCHDOG_DISABLE |\ | |
101 | HRCWH_ROM_LOC_LOCAL_16BIT) | |
102 | #else | |
6d0f6bcf | 103 | #define CONFIG_SYS_HRCW_HIGH (\ |
5f820439 DL |
104 | HRCWH_PCI_HOST |\ |
105 | HRCWH_PCI1_ARBITER_ENABLE |\ | |
106 | HRCWH_PCICKDRV_ENABLE |\ | |
107 | HRCWH_CORE_ENABLE |\ | |
108 | HRCWH_FROM_0X00000100 |\ | |
109 | HRCWH_BOOTSEQ_DISABLE |\ | |
110 | HRCWH_SW_WATCHDOG_DISABLE |\ | |
111 | HRCWH_ROM_LOC_LOCAL_16BIT) | |
112 | #endif | |
113 | ||
114 | /* | |
115 | * System IO Config | |
116 | */ | |
6d0f6bcf JCPV |
117 | #define CONFIG_SYS_SICRH 0x00000000 |
118 | #define CONFIG_SYS_SICRL 0x40000000 | |
5f820439 DL |
119 | |
120 | #define CONFIG_BOARD_EARLY_INIT_F /* call board_pre_init */ | |
14778585 | 121 | #define CONFIG_BOARD_EARLY_INIT_R |
5f820439 DL |
122 | |
123 | /* | |
124 | * IMMR new address | |
125 | */ | |
6d0f6bcf | 126 | #define CONFIG_SYS_IMMR 0xE0000000 |
5f820439 DL |
127 | |
128 | /* | |
129 | * DDR Setup | |
130 | */ | |
1f5cb793 JH |
131 | #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */ |
132 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE | |
133 | /* + 256M */ | |
134 | #define CONFIG_SYS_SDRAM_BASE2 (CONFIG_SYS_SDRAM_BASE + 0x10000000) | |
6d0f6bcf | 135 | #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE |
1f5cb793 JH |
136 | #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN \ |
137 | | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05) | |
5f820439 | 138 | |
6d0f6bcf | 139 | #define CONFIG_SYS_83XX_DDR_USES_CS0 |
bf0b542d | 140 | |
b110f40b | 141 | #define CONFIG_DDR_ECC /* support DDR ECC function */ |
5f820439 DL |
142 | #define CONFIG_DDR_ECC_CMD /* Use DDR ECC user commands */ |
143 | ||
b110f40b XX |
144 | /* |
145 | * DDRCDR - DDR Control Driver Register | |
146 | */ | |
6d0f6bcf | 147 | #define CONFIG_SYS_DDRCDR_VALUE 0x80080001 |
b110f40b | 148 | |
5f820439 DL |
149 | #define CONFIG_SPD_EEPROM /* Use SPD EEPROM for DDR setup */ |
150 | #if defined(CONFIG_SPD_EEPROM) | |
151 | /* | |
152 | * Determine DDR configuration from I2C interface. | |
153 | */ | |
154 | #define SPD_EEPROM_ADDRESS 0x52 /* DDR SODIMM */ | |
155 | #else | |
156 | /* | |
157 | * Manually set up DDR parameters | |
158 | */ | |
6d0f6bcf | 159 | #define CONFIG_SYS_DDR_SIZE 256 /* MB */ |
b110f40b | 160 | #if defined(CONFIG_DDR_II) |
6d0f6bcf | 161 | #define CONFIG_SYS_DDRCDR 0x80080001 |
1f5cb793 | 162 | #define CONFIG_SYS_DDR_CS0_BNDS 0x0000000f |
6d0f6bcf | 163 | #define CONFIG_SYS_DDR_CS0_CONFIG 0x80330102 |
1f5cb793 JH |
164 | #define CONFIG_SYS_DDR_TIMING_0 0x00220802 |
165 | #define CONFIG_SYS_DDR_TIMING_1 0x38357322 | |
166 | #define CONFIG_SYS_DDR_TIMING_2 0x2f9048c8 | |
167 | #define CONFIG_SYS_DDR_TIMING_3 0x00000000 | |
168 | #define CONFIG_SYS_DDR_CLK_CNTL 0x02000000 | |
6d0f6bcf JCPV |
169 | #define CONFIG_SYS_DDR_MODE 0x47d00432 |
170 | #define CONFIG_SYS_DDR_MODE2 0x8000c000 | |
1f5cb793 | 171 | #define CONFIG_SYS_DDR_INTERVAL 0x03cf0080 |
6d0f6bcf JCPV |
172 | #define CONFIG_SYS_DDR_SDRAM_CFG 0x43000000 |
173 | #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 | |
b110f40b | 174 | #else |
2e651b24 JH |
175 | #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \ |
176 | | CSCONFIG_ROW_BIT_13 \ | |
177 | | CSCONFIG_COL_BIT_9) | |
178 | #define CONFIG_SYS_DDR_CS1_CONFIG CONFIG_SYS_DDR_CS0_CONFIG | |
6d0f6bcf JCPV |
179 | #define CONFIG_SYS_DDR_TIMING_1 0x37344321 /* tCL-tRCD-tRP-tRAS=2.5-3-3-7 */ |
180 | #define CONFIG_SYS_DDR_TIMING_2 0x00000800 /* may need tuning */ | |
1f5cb793 JH |
181 | #define CONFIG_SYS_DDR_CONTROL 0x42008000 /* Self refresh,2T timing */ |
182 | #define CONFIG_SYS_DDR_MODE 0x20000162 /* DLL,normal,seq,4/2.5 */ | |
6d0f6bcf | 183 | #define CONFIG_SYS_DDR_INTERVAL 0x045b0100 /* page mode */ |
5f820439 | 184 | #endif |
b110f40b | 185 | #endif |
5f820439 DL |
186 | |
187 | /* | |
188 | * Memory test | |
189 | */ | |
6d0f6bcf JCPV |
190 | #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */ |
191 | #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest region */ | |
192 | #define CONFIG_SYS_MEMTEST_END 0x00100000 | |
5f820439 DL |
193 | |
194 | /* | |
195 | * The reserved memory | |
196 | */ | |
197 | ||
14d0a02a | 198 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */ |
5f820439 | 199 | |
6d0f6bcf JCPV |
200 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
201 | #define CONFIG_SYS_RAMBOOT | |
5f820439 | 202 | #else |
6d0f6bcf | 203 | #undef CONFIG_SYS_RAMBOOT |
5f820439 DL |
204 | #endif |
205 | ||
6d0f6bcf | 206 | /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */ |
1f5cb793 | 207 | #define CONFIG_SYS_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Mon */ |
c8a90646 | 208 | #define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserved for malloc */ |
5f820439 DL |
209 | |
210 | /* | |
211 | * Initial RAM Base Address Setup | |
212 | */ | |
6d0f6bcf JCPV |
213 | #define CONFIG_SYS_INIT_RAM_LOCK 1 |
214 | #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */ | |
553f0982 | 215 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */ |
1f5cb793 JH |
216 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
217 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
5f820439 DL |
218 | |
219 | /* | |
220 | * Local Bus Configuration & Clock Setup | |
221 | */ | |
c7190f02 KP |
222 | #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP |
223 | #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4 | |
1f5cb793 | 224 | #define CONFIG_SYS_LBC_LBCR 0x00000000 |
5f820439 DL |
225 | |
226 | /* | |
227 | * FLASH on the Local Bus | |
228 | */ | |
6d0f6bcf | 229 | #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */ |
1f5cb793 | 230 | #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */ |
6d0f6bcf JCPV |
231 | #define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */ |
232 | #define CONFIG_SYS_FLASH_SIZE 32 /* max FLASH size is 32M */ | |
1f5cb793 JH |
233 | #define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */ |
234 | #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ | |
5f820439 | 235 | |
1f5cb793 JH |
236 | /* Window base at flash base */ |
237 | #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE | |
7d6a0982 | 238 | #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB) |
5f820439 | 239 | |
1f5cb793 | 240 | #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \ |
7d6a0982 JH |
241 | | BR_PS_16 /* 16 bit port */ \ |
242 | | BR_MS_GPCM /* MSEL = GPCM */ \ | |
243 | | BR_V) /* valid */ | |
244 | #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \ | |
245 | | OR_GPCM_XAM \ | |
1f5cb793 JH |
246 | | OR_GPCM_CSNT \ |
247 | | OR_GPCM_ACS_DIV2 \ | |
248 | | OR_GPCM_XACS \ | |
249 | | OR_GPCM_SCY_15 \ | |
7d6a0982 JH |
250 | | OR_GPCM_TRLX_SET \ |
251 | | OR_GPCM_EHTR_SET \ | |
1f5cb793 | 252 | | OR_GPCM_EAD) |
5f820439 | 253 | |
6d0f6bcf JCPV |
254 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ |
255 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max sectors per device */ | |
5f820439 | 256 | |
6d0f6bcf | 257 | #undef CONFIG_SYS_FLASH_CHECKSUM |
5f820439 DL |
258 | |
259 | /* | |
260 | * BCSR on the Local Bus | |
261 | */ | |
1f5cb793 JH |
262 | #define CONFIG_SYS_BCSR 0xF8000000 |
263 | /* Access window base at BCSR base */ | |
264 | #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_BCSR | |
7d6a0982 JH |
265 | #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_64KB) |
266 | ||
267 | #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_BCSR \ | |
268 | | BR_PS_8 \ | |
269 | | BR_MS_GPCM \ | |
270 | | BR_V) | |
271 | #define CONFIG_SYS_OR1_PRELIM (OR_AM_32KB \ | |
272 | | OR_GPCM_XAM \ | |
273 | | OR_GPCM_CSNT \ | |
274 | | OR_GPCM_XACS \ | |
275 | | OR_GPCM_SCY_15 \ | |
276 | | OR_GPCM_TRLX_SET \ | |
277 | | OR_GPCM_EHTR_SET \ | |
278 | | OR_GPCM_EAD) | |
279 | /* 0xFFFFE9F7 */ | |
5f820439 DL |
280 | |
281 | /* | |
282 | * SDRAM on the Local Bus | |
283 | */ | |
6d0f6bcf JCPV |
284 | #define CONFIG_SYS_LBC_SDRAM_BASE 0xF0000000 /* SDRAM base address */ |
285 | #define CONFIG_SYS_LBC_SDRAM_SIZE 64 /* LBC SDRAM is 64MB */ | |
5f820439 | 286 | |
6d0f6bcf | 287 | #define CONFIG_SYS_LB_SDRAM /* if board has SRDAM on local bus */ |
5f820439 | 288 | |
6d0f6bcf | 289 | #ifdef CONFIG_SYS_LB_SDRAM |
5c2ff323 | 290 | #define CONFIG_SYS_LBLAWBAR2 0 |
7d6a0982 | 291 | #define CONFIG_SYS_LBLAWAR2 (LBLAWAR_EN | LBLAWAR_64MB) |
5f820439 DL |
292 | |
293 | /*local bus BR2, OR2 definition for SDRAM if soldered on the EPB board */ | |
294 | /* | |
295 | * Base Register 2 and Option Register 2 configure SDRAM. | |
5f820439 DL |
296 | * |
297 | * For BR2, need: | |
5c2ff323 | 298 | * Base address = BR[0:16] = dynamic |
5f820439 DL |
299 | * port size = 32-bits = BR2[19:20] = 11 |
300 | * no parity checking = BR2[21:22] = 00 | |
301 | * SDRAM for MSEL = BR2[24:26] = 011 | |
302 | * Valid = BR[31] = 1 | |
303 | * | |
dd520bf3 | 304 | * 0 4 8 12 16 20 24 28 |
5c2ff323 | 305 | * xxxx xxxx xxxx xxxx x001 1000 0110 0001 = 00001861 |
5f820439 DL |
306 | */ |
307 | ||
7d6a0982 JH |
308 | /* Port size=32bit, MSEL=DRAM */ |
309 | #define CONFIG_SYS_BR2 (BR_PS_32 | BR_MS_SDRAM | BR_V) /* 0xF0001861 */ | |
5f820439 DL |
310 | |
311 | /* | |
6d0f6bcf | 312 | * The SDRAM size in MB, CONFIG_SYS_LBC_SDRAM_SIZE, is 64. |
5f820439 DL |
313 | * |
314 | * For OR2, need: | |
315 | * 64MB mask for AM, OR2[0:7] = 1111 1100 | |
316 | * XAM, OR2[17:18] = 11 | |
317 | * 9 columns OR2[19-21] = 010 | |
dd520bf3 | 318 | * 13 rows OR2[23-25] = 100 |
5f820439 DL |
319 | * EAD set for extra time OR[31] = 1 |
320 | * | |
dd520bf3 | 321 | * 0 4 8 12 16 20 24 28 |
5f820439 DL |
322 | * 1111 1100 0000 0000 0110 1001 0000 0001 = fc006901 |
323 | */ | |
324 | ||
7d6a0982 JH |
325 | #define CONFIG_SYS_OR2 (MEG_TO_AM(CONFIG_SYS_LBC_SDRAM_SIZE) \ |
326 | | OR_SDRAM_XAM \ | |
327 | | ((9 - OR_SDRAM_MIN_COLS) << OR_SDRAM_COLS_SHIFT) \ | |
328 | | ((13 - OR_SDRAM_MIN_ROWS) << OR_SDRAM_ROWS_SHIFT) \ | |
329 | | OR_SDRAM_EAD) | |
330 | /* 0xFC006901 */ | |
5f820439 | 331 | |
1f5cb793 JH |
332 | /* LB sdram refresh timer, about 6us */ |
333 | #define CONFIG_SYS_LBC_LSRT 0x32000000 | |
334 | /* LB refresh timer prescal, 266MHz/32 */ | |
335 | #define CONFIG_SYS_LBC_MRTPR 0x20000000 | |
5f820439 | 336 | |
6d0f6bcf | 337 | #define CONFIG_SYS_LBC_LSDMR_COMMON 0x0063b723 |
5f820439 DL |
338 | |
339 | /* | |
340 | * SDRAM Controller configuration sequence. | |
341 | */ | |
540dcf1c KG |
342 | #define CONFIG_SYS_LBC_LSDMR_1 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_PCHALL) |
343 | #define CONFIG_SYS_LBC_LSDMR_2 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_ARFRSH) | |
344 | #define CONFIG_SYS_LBC_LSDMR_3 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_ARFRSH) | |
345 | #define CONFIG_SYS_LBC_LSDMR_4 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_MRW) | |
346 | #define CONFIG_SYS_LBC_LSDMR_5 (CONFIG_SYS_LBC_LSDMR_COMMON | LSDMR_OP_NORMAL) | |
5f820439 DL |
347 | |
348 | #endif | |
349 | ||
350 | /* | |
7d6a0982 | 351 | * Windows to access Platform I/O Boards (PIB) via local bus |
5f820439 | 352 | */ |
7d6a0982 JH |
353 | #define CONFIG_SYS_PIB_BASE 0xF8008000 |
354 | #define CONFIG_SYS_PIB_WINDOW_SIZE (32 * 1024) | |
355 | ||
356 | /* [RFC] This LBLAW only covers the 2nd window (CS5) */ | |
357 | #define CONFIG_SYS_LBLAWBAR3_PRELIM \ | |
358 | CONFIG_SYS_PIB_BASE + CONFIG_SYS_PIB_WINDOW_SIZE | |
359 | #define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_32KB) | |
5f820439 DL |
360 | |
361 | /* | |
362 | * CS4 on Local Bus, to PIB | |
363 | */ | |
7d6a0982 JH |
364 | /* CS4 base address at 0xf8008000 */ |
365 | #define CONFIG_SYS_BR4_PRELIM (CONFIG_SYS_PIB_BASE \ | |
366 | | BR_PS_8 \ | |
367 | | BR_MS_GPCM \ | |
368 | | BR_V) | |
369 | /* 0xF8008801 */ | |
370 | #define CONFIG_SYS_OR4_PRELIM (OR_AM_32KB \ | |
371 | | OR_GPCM_XAM \ | |
372 | | OR_GPCM_CSNT \ | |
373 | | OR_GPCM_XACS \ | |
374 | | OR_GPCM_SCY_15 \ | |
375 | | OR_GPCM_TRLX_SET \ | |
376 | | OR_GPCM_EHTR_SET \ | |
377 | | OR_GPCM_EAD) | |
378 | /* 0xffffe9f7 */ | |
5f820439 DL |
379 | |
380 | /* | |
381 | * CS5 on Local Bus, to PIB | |
382 | */ | |
7d6a0982 JH |
383 | /* CS5 base address at 0xf8010000 */ |
384 | #define CONFIG_SYS_BR5_PRELIM ((CONFIG_SYS_PIB_BASE + \ | |
385 | CONFIG_SYS_PIB_WINDOW_SIZE) \ | |
386 | | BR_PS_8 \ | |
387 | | BR_MS_GPCM \ | |
388 | | BR_V) | |
389 | /* 0xF8010801 */ | |
390 | #define CONFIG_SYS_OR5_PRELIM (CONFIG_SYS_PIB_BASE \ | |
391 | | OR_GPCM_XAM \ | |
392 | | OR_GPCM_CSNT \ | |
393 | | OR_GPCM_XACS \ | |
394 | | OR_GPCM_SCY_15 \ | |
395 | | OR_GPCM_TRLX_SET \ | |
396 | | OR_GPCM_EHTR_SET \ | |
397 | | OR_GPCM_EAD) | |
398 | /* 0xffffe9f7 */ | |
5f820439 DL |
399 | |
400 | /* | |
401 | * Serial Port | |
402 | */ | |
403 | #define CONFIG_CONS_INDEX 1 | |
6d0f6bcf JCPV |
404 | #define CONFIG_SYS_NS16550 |
405 | #define CONFIG_SYS_NS16550_SERIAL | |
406 | #define CONFIG_SYS_NS16550_REG_SIZE 1 | |
407 | #define CONFIG_SYS_NS16550_CLK get_bus_freq(0) | |
5f820439 | 408 | |
6d0f6bcf | 409 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
1f5cb793 | 410 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200} |
5f820439 | 411 | |
6d0f6bcf JCPV |
412 | #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500) |
413 | #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600) | |
5f820439 | 414 | |
22d71a71 | 415 | #define CONFIG_CMDLINE_EDITING 1 /* add command line history */ |
a059e90e | 416 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ |
5f820439 | 417 | /* Use the HUSH parser */ |
6d0f6bcf | 418 | #define CONFIG_SYS_HUSH_PARSER |
5f820439 | 419 | |
bf0b542d | 420 | /* pass open firmware flat tree */ |
213bf8c8 | 421 | #define CONFIG_OF_LIBFDT 1 |
bf0b542d | 422 | #define CONFIG_OF_BOARD_SETUP 1 |
5b8bc606 | 423 | #define CONFIG_OF_STDOUT_VIA_ALIAS 1 |
bf0b542d | 424 | |
5f820439 DL |
425 | /* I2C */ |
426 | #define CONFIG_HARD_I2C /* I2C with hardware support */ | |
427 | #undef CONFIG_SOFT_I2C /* I2C bit-banged */ | |
be5e6181 | 428 | #define CONFIG_FSL_I2C |
6d0f6bcf JCPV |
429 | #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */ |
430 | #define CONFIG_SYS_I2C_SLAVE 0x7F | |
431 | #define CONFIG_SYS_I2C_NOPROBES {0x52} /* Don't probe these addrs */ | |
432 | #define CONFIG_SYS_I2C_OFFSET 0x3000 | |
433 | #define CONFIG_SYS_I2C2_OFFSET 0x3100 | |
5f820439 DL |
434 | |
435 | /* | |
436 | * Config on-board RTC | |
437 | */ | |
438 | #define CONFIG_RTC_DS1374 /* use ds1374 rtc via i2c */ | |
6d0f6bcf | 439 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */ |
5f820439 DL |
440 | |
441 | /* | |
442 | * General PCI | |
443 | * Addresses are mapped 1-1. | |
444 | */ | |
9993e196 KP |
445 | #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000 |
446 | #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE | |
447 | #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */ | |
448 | #define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000 | |
449 | #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE | |
450 | #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */ | |
451 | #define CONFIG_SYS_PCI1_IO_BASE 0x00000000 | |
452 | #define CONFIG_SYS_PCI1_IO_PHYS 0xE0300000 | |
453 | #define CONFIG_SYS_PCI1_IO_SIZE 0x100000 /* 1M */ | |
5f820439 | 454 | |
6d0f6bcf JCPV |
455 | #define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE |
456 | #define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000 | |
457 | #define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000 | |
5f820439 DL |
458 | |
459 | ||
460 | #ifdef CONFIG_PCI | |
842033e6 | 461 | #define CONFIG_PCI_INDIRECT_BRIDGE |
5f820439 | 462 | |
5f820439 | 463 | #define CONFIG_PCI_PNP /* do pci plug-and-play */ |
9993e196 | 464 | #define CONFIG_83XX_PCI_STREAMING |
5f820439 DL |
465 | |
466 | #undef CONFIG_EEPRO100 | |
467 | #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ | |
6d0f6bcf | 468 | #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */ |
5f820439 DL |
469 | |
470 | #endif /* CONFIG_PCI */ | |
471 | ||
472 | ||
da6eea0f AV |
473 | #define CONFIG_HWCONFIG 1 |
474 | ||
7737d5c6 DL |
475 | /* |
476 | * QE UEC ethernet configuration | |
477 | */ | |
478 | #define CONFIG_UEC_ETH | |
78b7a8ef | 479 | #define CONFIG_ETHPRIME "UEC0" |
7737d5c6 DL |
480 | #define CONFIG_PHY_MODE_NEED_CHANGE |
481 | ||
482 | #define CONFIG_UEC_ETH1 /* GETH1 */ | |
483 | ||
484 | #ifdef CONFIG_UEC_ETH1 | |
6d0f6bcf JCPV |
485 | #define CONFIG_SYS_UEC1_UCC_NUM 0 /* UCC1 */ |
486 | #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE | |
487 | #define CONFIG_SYS_UEC1_TX_CLK QE_CLK9 | |
488 | #define CONFIG_SYS_UEC1_ETH_TYPE GIGA_ETH | |
489 | #define CONFIG_SYS_UEC1_PHY_ADDR 0 | |
865ff856 | 490 | #define CONFIG_SYS_UEC1_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_ID |
582c55a0 | 491 | #define CONFIG_SYS_UEC1_INTERFACE_SPEED 1000 |
7737d5c6 DL |
492 | #endif |
493 | ||
494 | #define CONFIG_UEC_ETH2 /* GETH2 */ | |
495 | ||
496 | #ifdef CONFIG_UEC_ETH2 | |
6d0f6bcf JCPV |
497 | #define CONFIG_SYS_UEC2_UCC_NUM 1 /* UCC2 */ |
498 | #define CONFIG_SYS_UEC2_RX_CLK QE_CLK_NONE | |
499 | #define CONFIG_SYS_UEC2_TX_CLK QE_CLK4 | |
500 | #define CONFIG_SYS_UEC2_ETH_TYPE GIGA_ETH | |
501 | #define CONFIG_SYS_UEC2_PHY_ADDR 1 | |
865ff856 | 502 | #define CONFIG_SYS_UEC2_INTERFACE_TYPE PHY_INTERFACE_MODE_RGMII_ID |
582c55a0 | 503 | #define CONFIG_SYS_UEC2_INTERFACE_SPEED 1000 |
7737d5c6 DL |
504 | #endif |
505 | ||
5f820439 DL |
506 | /* |
507 | * Environment | |
508 | */ | |
509 | ||
6d0f6bcf | 510 | #ifndef CONFIG_SYS_RAMBOOT |
5a1aceb0 | 511 | #define CONFIG_ENV_IS_IN_FLASH 1 |
1f5cb793 JH |
512 | #define CONFIG_ENV_ADDR \ |
513 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) | |
0e8d1586 JCPV |
514 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
515 | #define CONFIG_ENV_SIZE 0x2000 | |
5f820439 | 516 | #else |
1f5cb793 | 517 | #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */ |
93f6d725 | 518 | #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */ |
6d0f6bcf | 519 | #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000) |
0e8d1586 | 520 | #define CONFIG_ENV_SIZE 0x2000 |
5f820439 DL |
521 | #endif |
522 | ||
523 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ | |
6d0f6bcf | 524 | #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ |
5f820439 | 525 | |
659e2f67 JL |
526 | /* |
527 | * BOOTP options | |
528 | */ | |
529 | #define CONFIG_BOOTP_BOOTFILESIZE | |
530 | #define CONFIG_BOOTP_BOOTPATH | |
531 | #define CONFIG_BOOTP_GATEWAY | |
532 | #define CONFIG_BOOTP_HOSTNAME | |
533 | ||
534 | ||
8ea5499a JL |
535 | /* |
536 | * Command line configuration. | |
537 | */ | |
538 | #include <config_cmd_default.h> | |
539 | ||
540 | #define CONFIG_CMD_PING | |
541 | #define CONFIG_CMD_I2C | |
542 | #define CONFIG_CMD_ASKENV | |
b5cdd7df | 543 | #define CONFIG_CMD_SDRAM |
8ea5499a | 544 | |
5f820439 | 545 | #if defined(CONFIG_PCI) |
8ea5499a | 546 | #define CONFIG_CMD_PCI |
5f820439 | 547 | #endif |
8ea5499a | 548 | |
6d0f6bcf | 549 | #if defined(CONFIG_SYS_RAMBOOT) |
bdab39d3 | 550 | #undef CONFIG_CMD_SAVEENV |
8ea5499a | 551 | #undef CONFIG_CMD_LOADS |
5f820439 DL |
552 | #endif |
553 | ||
5f820439 DL |
554 | |
555 | #undef CONFIG_WATCHDOG /* watchdog disabled */ | |
556 | ||
557 | /* | |
558 | * Miscellaneous configurable options | |
559 | */ | |
6d0f6bcf JCPV |
560 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
561 | #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */ | |
562 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ | |
5f820439 | 563 | |
8ea5499a | 564 | #if defined(CONFIG_CMD_KGDB) |
6d0f6bcf | 565 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
5f820439 | 566 | #else |
6d0f6bcf | 567 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
5f820439 DL |
568 | #endif |
569 | ||
1f5cb793 JH |
570 | /* Print Buffer Size */ |
571 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) | |
572 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ | |
573 | /* Boot Argument Buffer Size */ | |
574 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE | |
575 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1ms ticks */ | |
5f820439 DL |
576 | |
577 | /* | |
578 | * For booting Linux, the board info and command line data | |
9f530d59 | 579 | * have to be in the first 256 MB of memory, since this is |
5f820439 DL |
580 | * the maximum mapped by the Linux kernel during initialization. |
581 | */ | |
1f5cb793 | 582 | #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */ |
5f820439 DL |
583 | |
584 | /* | |
585 | * Core HID Setup | |
586 | */ | |
1a2e203b KP |
587 | #define CONFIG_SYS_HID0_INIT 0x000000000 |
588 | #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \ | |
589 | HID0_ENABLE_INSTRUCTION_CACHE) | |
6d0f6bcf | 590 | #define CONFIG_SYS_HID2 HID2_HBE |
5f820439 | 591 | |
5f820439 DL |
592 | /* |
593 | * MMU Setup | |
594 | */ | |
595 | ||
31d82672 | 596 | #define CONFIG_HIGH_BATS 1 /* High BATs supported */ |
d37be07e | 597 | #define CONFIG_BAT_RW |
31d82672 | 598 | |
5c2ff323 | 599 | /* DDR/LBC SDRAM: cacheable */ |
1f5cb793 | 600 | #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \ |
72cd4087 | 601 | | BATL_PP_RW \ |
1f5cb793 JH |
602 | | BATL_MEMCOHERENCE) |
603 | #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \ | |
604 | | BATU_BL_256M \ | |
605 | | BATU_VS \ | |
606 | | BATU_VP) | |
6d0f6bcf JCPV |
607 | #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L |
608 | #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U | |
5f820439 DL |
609 | |
610 | /* IMMRBAR & PCI IO: cache-inhibit and guarded */ | |
1f5cb793 | 611 | #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR \ |
72cd4087 | 612 | | BATL_PP_RW \ |
1f5cb793 JH |
613 | | BATL_CACHEINHIBIT \ |
614 | | BATL_GUARDEDSTORAGE) | |
615 | #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR \ | |
616 | | BATU_BL_4M \ | |
617 | | BATU_VS \ | |
618 | | BATU_VP) | |
6d0f6bcf JCPV |
619 | #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L |
620 | #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U | |
5f820439 DL |
621 | |
622 | /* BCSR: cache-inhibit and guarded */ | |
1f5cb793 | 623 | #define CONFIG_SYS_IBAT2L (CONFIG_SYS_BCSR \ |
72cd4087 | 624 | | BATL_PP_RW \ |
1f5cb793 JH |
625 | | BATL_CACHEINHIBIT \ |
626 | | BATL_GUARDEDSTORAGE) | |
627 | #define CONFIG_SYS_IBAT2U (CONFIG_SYS_BCSR \ | |
628 | | BATU_BL_128K \ | |
629 | | BATU_VS \ | |
630 | | BATU_VP) | |
6d0f6bcf JCPV |
631 | #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L |
632 | #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U | |
5f820439 DL |
633 | |
634 | /* FLASH: icache cacheable, but dcache-inhibit and guarded */ | |
1f5cb793 | 635 | #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE \ |
72cd4087 | 636 | | BATL_PP_RW \ |
1f5cb793 JH |
637 | | BATL_MEMCOHERENCE) |
638 | #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE \ | |
639 | | BATU_BL_32M \ | |
640 | | BATU_VS \ | |
641 | | BATU_VP) | |
642 | #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE \ | |
72cd4087 | 643 | | BATL_PP_RW \ |
1f5cb793 JH |
644 | | BATL_CACHEINHIBIT \ |
645 | | BATL_GUARDEDSTORAGE) | |
6d0f6bcf | 646 | #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U |
5f820439 | 647 | |
5c2ff323 | 648 | /* DDR/LBC SDRAM next 256M: cacheable */ |
1f5cb793 | 649 | #define CONFIG_SYS_IBAT4L (CONFIG_SYS_SDRAM_BASE2 \ |
72cd4087 | 650 | | BATL_PP_RW \ |
1f5cb793 JH |
651 | | BATL_MEMCOHERENCE) |
652 | #define CONFIG_SYS_IBAT4U (CONFIG_SYS_SDRAM_BASE2 \ | |
653 | | BATU_BL_256M \ | |
654 | | BATU_VS \ | |
655 | | BATU_VP) | |
6d0f6bcf JCPV |
656 | #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L |
657 | #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U | |
5f820439 DL |
658 | |
659 | /* Stack in dcache: cacheable, no memory coherence */ | |
72cd4087 | 660 | #define CONFIG_SYS_IBAT5L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_RW) |
1f5cb793 JH |
661 | #define CONFIG_SYS_IBAT5U (CONFIG_SYS_INIT_RAM_ADDR \ |
662 | | BATU_BL_128K \ | |
663 | | BATU_VS \ | |
664 | | BATU_VP) | |
6d0f6bcf JCPV |
665 | #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L |
666 | #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U | |
5f820439 DL |
667 | |
668 | #ifdef CONFIG_PCI | |
669 | /* PCI MEM space: cacheable */ | |
1f5cb793 | 670 | #define CONFIG_SYS_IBAT6L (CONFIG_SYS_PCI1_MEM_PHYS \ |
72cd4087 | 671 | | BATL_PP_RW \ |
1f5cb793 JH |
672 | | BATL_MEMCOHERENCE) |
673 | #define CONFIG_SYS_IBAT6U (CONFIG_SYS_PCI1_MEM_PHYS \ | |
674 | | BATU_BL_256M \ | |
675 | | BATU_VS \ | |
676 | | BATU_VP) | |
6d0f6bcf JCPV |
677 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L |
678 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U | |
5f820439 | 679 | /* PCI MMIO space: cache-inhibit and guarded */ |
1f5cb793 | 680 | #define CONFIG_SYS_IBAT7L (CONFIG_SYS_PCI1_MMIO_PHYS \ |
72cd4087 | 681 | | BATL_PP_RW \ |
1f5cb793 JH |
682 | | BATL_CACHEINHIBIT \ |
683 | | BATL_GUARDEDSTORAGE) | |
684 | #define CONFIG_SYS_IBAT7U (CONFIG_SYS_PCI1_MMIO_PHYS \ | |
685 | | BATU_BL_256M \ | |
686 | | BATU_VS \ | |
687 | | BATU_VP) | |
6d0f6bcf JCPV |
688 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L |
689 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U | |
5f820439 | 690 | #else |
6d0f6bcf JCPV |
691 | #define CONFIG_SYS_IBAT6L (0) |
692 | #define CONFIG_SYS_IBAT6U (0) | |
693 | #define CONFIG_SYS_IBAT7L (0) | |
694 | #define CONFIG_SYS_IBAT7U (0) | |
695 | #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L | |
696 | #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U | |
697 | #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L | |
698 | #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U | |
5f820439 DL |
699 | #endif |
700 | ||
8ea5499a | 701 | #if defined(CONFIG_CMD_KGDB) |
5f820439 DL |
702 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */ |
703 | #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ | |
704 | #endif | |
705 | ||
706 | /* | |
707 | * Environment Configuration | |
708 | */ | |
709 | ||
710 | #define CONFIG_ENV_OVERWRITE | |
711 | ||
712 | #if defined(CONFIG_UEC_ETH) | |
977b5758 | 713 | #define CONFIG_HAS_ETH0 |
5f820439 | 714 | #define CONFIG_HAS_ETH1 |
5f820439 DL |
715 | #endif |
716 | ||
dd520bf3 | 717 | #define CONFIG_BAUDRATE 115200 |
5f820439 | 718 | |
79f516bc | 719 | #define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */ |
5f820439 | 720 | |
dd520bf3 WD |
721 | #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */ |
722 | #undef CONFIG_BOOTARGS /* the boot command will set bootargs */ | |
5f820439 | 723 | |
dd520bf3 | 724 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
1f5cb793 JH |
725 | "netdev=eth0\0" \ |
726 | "consoledev=ttyS0\0" \ | |
727 | "ramdiskaddr=1000000\0" \ | |
728 | "ramdiskfile=ramfs.83xx\0" \ | |
729 | "fdtaddr=780000\0" \ | |
730 | "fdtfile=mpc836x_mds.dtb\0" \ | |
731 | "" | |
5f820439 | 732 | |
dd520bf3 | 733 | #define CONFIG_NFSBOOTCOMMAND \ |
1f5cb793 JH |
734 | "setenv bootargs root=/dev/nfs rw " \ |
735 | "nfsroot=$serverip:$rootpath " \ | |
736 | "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \ | |
737 | "$netdev:off " \ | |
738 | "console=$consoledev,$baudrate $othbootargs;" \ | |
739 | "tftp $loadaddr $bootfile;" \ | |
740 | "tftp $fdtaddr $fdtfile;" \ | |
741 | "bootm $loadaddr - $fdtaddr" | |
5f820439 | 742 | |
bf0b542d | 743 | #define CONFIG_RAMBOOTCOMMAND \ |
1f5cb793 JH |
744 | "setenv bootargs root=/dev/ram rw " \ |
745 | "console=$consoledev,$baudrate $othbootargs;" \ | |
746 | "tftp $ramdiskaddr $ramdiskfile;" \ | |
747 | "tftp $loadaddr $bootfile;" \ | |
748 | "tftp $fdtaddr $fdtfile;" \ | |
749 | "bootm $loadaddr $ramdiskaddr $fdtaddr" | |
bf0b542d | 750 | |
5f820439 DL |
751 | |
752 | #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND | |
753 | ||
754 | #endif /* __CONFIG_H */ |