Merge with rsync://git-user@source.denx.net/git/u-boot.git
[platform/kernel/u-boot.git] / include / configs / MPC8349ADS.h
1 /*
2  * Copyright 2004 Freescale Semiconductor.
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  */
22
23 /*
24  * mpc8349ads board configuration file
25  *
26  * Please refer to doc/README.mpc83xxads for more info.
27  */
28
29 #ifndef __CONFIG_H
30 #define __CONFIG_H
31
32 #undef DEBUG
33
34 #define CONFIG_MII
35
36 /*
37  * High Level Configuration Options
38  */
39 #define CONFIG_E300             1       /* E300 Family */
40 #define CONFIG_MPC83XX          1       /* MPC83XX family */
41 #define CONFIG_MPC8349          1       /* MPC8349 specific */
42 #define CONFIG_MPC8349ADS       1       /* MPC8349ADS board specific */
43
44 #define CONFIG_PCI
45
46 #define CONFIG_TSEC_ENET                /* tsec ethernet support */
47 #define CONFIG_ENV_OVERWRITE
48
49 #define CONFIG_SPD_EEPROM               /* Use SPD EEPROM for DDR setup*/
50
51 #undef CONFIG_DDR_ECC                   /* only for ECC DDR module */
52
53 #define PCI_66M
54 #ifdef PCI_66M
55 #define CONFIG_83XX_CLKIN       66000000        /* in Hz */
56 #else
57 #define CONFIG_83XX_CLKIN       33000000        /* in Hz */
58 #endif
59
60 #ifndef CONFIG_SYS_CLK_FREQ
61 #ifdef PCI_66M
62 #define CONFIG_SYS_CLK_FREQ     66000000
63 #else
64 #define CONFIG_SYS_CLK_FREQ     33000000
65 #endif
66 #endif
67
68 #define CONFIG_BOARD_EARLY_INIT_F       /* call board_pre_init */
69
70 #define CFG_IMMRBAR             0xE0000000
71
72 #undef CFG_DRAM_TEST                   /* memory test, takes time */
73 #define CFG_MEMTEST_START       0x00000000      /* memtest region */
74 #define CFG_MEMTEST_END         0x00100000
75
76 /*
77  * DDR Setup
78  */
79
80 #define CFG_DDR_BASE    0x00000000      /* DDR is system memory*/
81 #define CFG_SDRAM_BASE CFG_DDR_BASE
82 #undef  CONFIG_DDR_2T_TIMING
83 #define CFG_DDR_SDRAM_BASE CFG_DDR_BASE
84
85 #if defined(CONFIG_SPD_EEPROM)
86         /*
87          * Determine DDR configuration from I2C interface.
88          */
89         #define SPD_EEPROM_ADDRESS      0x51            /* DDR DIMM */
90 #else
91         /*
92          * Manually set up DDR parameters
93          */
94         #define CFG_DDR_SIZE        256         /* Mb */
95         #define CFG_DDR_CONFIG  (CSCONFIG_EN | CSCONFIG_ROW_BIT_13 | CSCONFIG_COL_BIT_9)
96         #define CFG_DDR_TIMING_1        0x37344321
97         #define CFG_DDR_TIMING_2        0x00000800  /* P9-45,may need tuning */
98         #define CFG_DDR_CONTROL         0xc2000000  /* unbuffered,no DYN_PWR */
99         #define CFG_DDR_MODE            0x00000062  /* DLL,normal,seq,4/2.5 */
100         #define CFG_DDR_INTERVAL        0x05200100  /* autocharge,no open page */
101 #endif
102
103 /*
104  * SDRAM on the Local Bus
105  */
106 #define CFG_LBC_SDRAM_BASE      0xf0000000      /* Localbus SDRAM */
107 #define CFG_LBC_SDRAM_SIZE      64              /* LBC SDRAM is 64MB */
108
109 /*
110  * FLASH on the Local Bus
111  */
112 #define CFG_FLASH_CFI                   /* use the Common Flash Interface */
113 #define CFG_FLASH_CFI_DRIVER                    /* use the CFI driver */
114 #define CFG_FLASH_BASE          0xFE000000      /* start of FLASH   */
115 #define CFG_FLASH_SIZE          8               /* FLASH size in MB */
116 /* #define CFG_FLASH_USE_BUFFER_WRITE */
117
118 #define CFG_BR0_PRELIM  (CFG_FLASH_BASE |       /* Flash Base address */ \
119                         (2 << BR_PS_SHIFT) |    /* 32 bit port size */   \
120                         BR_V)                   /* valid */
121 #define CFG_OR0_PRELIM          0xff806ff7      /* 16Mb Flash size*/
122 #define CFG_LBLAWBAR0_PRELIM CFG_FLASH_BASE     /* Window base at flash base */
123 #define CFG_LBLAWAR0_PRELIM  0x80000016         /* 16Mb window size */
124
125 #define CFG_MAX_FLASH_BANKS     1               /* number of banks */
126 #define CFG_MAX_FLASH_SECT      64              /* sectors per device */
127
128 #undef  CFG_FLASH_CHECKSUM
129 #define CFG_FLASH_ERASE_TOUT    60000   /* Flash Erase Timeout (ms) */
130 #define CFG_FLASH_WRITE_TOUT    500     /* Flash Write Timeout (ms) */
131
132 #define CFG_MID_FLASH_JUMP      0x7F000000
133 #define CFG_MONITOR_BASE        TEXT_BASE       /* start of monitor */
134
135 #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
136 #define CFG_RAMBOOT
137 #else
138 #undef  CFG_RAMBOOT
139 #endif
140
141 /*
142  * BCSR register on local bus 32KB, 8-bit wide for ADS config reg
143  */
144 #define CFG_BCSR             0xF8000000
145 #define CFG_LBLAWBAR1_PRELIM CFG_BCSR   /* Access window base at BCSR base */
146 #define CFG_LBLAWAR1_PRELIM  0x8000000E         /* Access window size 32K */
147 #define CFG_BR1_PRELIM    (CFG_BCSR|0x00000801) /* Port-size=8bit, MSEL=GPCM */
148 #define CFG_OR1_PRELIM          0xFFFFE8f0      /* length 32K */
149
150 #define CONFIG_L1_INIT_RAM
151 #define CFG_INIT_RAM_LOCK       1
152 #define CFG_INIT_RAM_ADDR       0xe4010000   /* Initial RAM address */
153 #define CFG_INIT_RAM_END        0x1000       /* End of used area in RAM*/
154
155 #define CFG_GBL_DATA_SIZE       0x100     /* num bytes initial data */
156 #define CFG_GBL_DATA_OFFSET     (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
157 #define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
158
159 #define CFG_MONITOR_LEN         (256 * 1024) /* Reserve 256 kB for Mon */
160 #define CFG_MALLOC_LEN          (128 * 1024) /* Reserved for malloc */
161
162 /*
163  * Local Bus LCRR and LBCR regs
164  *    LCRR:  DLL bypass, Clock divider is 4
165  * External Local Bus rate is
166  *    CLKIN * HRCWL_CSB_TO_CLKIN / HRCWL_LCL_BUS_TO_SCB_CLK / LCRR_CLKDIV
167  */
168 #define CFG_LCRR        (LCRR_DBYP | LCRR_CLKDIV_4)
169 #define CFG_LBC_LBCR    0x00000000
170
171 #define CFG_LB_SDRAM    /* if board has SRDAM on local bus */
172
173 #ifdef CFG_LB_SDRAM
174 /*local bus BR2, OR2 definition for SDRAM if soldered on the ADS board*/
175 /*
176  * Base Register 2 and Option Register 2 configure SDRAM.
177  * The SDRAM base address, CFG_LBC_SDRAM_BASE, is 0xf0000000.
178  *
179  * For BR2, need:
180  *    Base address of 0xf0000000 = BR[0:16] = 1111 0000 0000 0000 0
181  *    port-size = 32-bits = BR2[19:20] = 11
182  *    no parity checking = BR2[21:22] = 00
183  *    SDRAM for MSEL = BR2[24:26] = 011
184  *    Valid = BR[31] = 1
185  *
186  * 0    4    8    12   16   20   24   28
187  * 1111 0000 0000 0000 0001 1000 0110 0001 = f0001861
188  *
189  * FIXME: CFG_LBC_SDRAM_BASE should be masked and OR'ed into
190  * FIXME: the top 17 bits of BR2.
191  */
192
193 #define CFG_BR2_PRELIM          0xf0001861 /*Port-size=32bit, MSEL=SDRAM*/
194 #define CFG_LBLAWBAR2_PRELIM    0xF0000000
195 #define CFG_LBLAWAR2_PRELIM     0x80000019 /*64M*/
196
197 /*
198  * The SDRAM size in MB, CFG_LBC_SDRAM_SIZE, is 64.
199  *
200  * For OR2, need:
201  *    64MB mask for AM, OR2[0:7] = 1111 1100
202  *                 XAM, OR2[17:18] = 11
203  *    9 columns OR2[19-21] = 010
204  *    13 rows   OR2[23-25] = 100
205  *    EAD set for extra time OR[31] = 1
206  *
207  * 0    4    8    12   16   20   24   28
208  * 1111 1100 0000 0000 0110 1001 0000 0001 = fc006901
209  */
210
211 #define CFG_OR2_PRELIM  0xfc006901
212
213 #define CFG_LBC_LSRT    0x32000000    /* LB sdram refresh timer, about 6us */
214 #define CFG_LBC_MRTPR   0x20000000    /* LB refresh timer prescal, 266MHz/32*/
215
216 /*
217  * LSDMR masks
218  */
219 #define CFG_LBC_LSDMR_RFEN      (1 << (31 -  1))
220 #define CFG_LBC_LSDMR_BSMA1516  (3 << (31 - 10))
221 #define CFG_LBC_LSDMR_BSMA1617  (4 << (31 - 10))
222 #define CFG_LBC_LSDMR_RFCR5     (3 << (31 - 16))
223 #define CFG_LBC_LSDMR_RFCR8     (5 << (31 - 16))
224 #define CFG_LBC_LSDMR_RFCR16    (7 << (31 - 16))
225 #define CFG_LBC_LSDMR_PRETOACT3 (3 << (31 - 19))
226 #define CFG_LBC_LSDMR_PRETOACT6 (5 << (31 - 19))
227 #define CFG_LBC_LSDMR_PRETOACT7 (7 << (31 - 19))
228 #define CFG_LBC_LSDMR_ACTTORW3  (3 << (31 - 22))
229 #define CFG_LBC_LSDMR_ACTTORW7  (7 << (31 - 22))
230 #define CFG_LBC_LSDMR_ACTTORW6  (6 << (31 - 22))
231 #define CFG_LBC_LSDMR_BL8       (1 << (31 - 23))
232 #define CFG_LBC_LSDMR_WRC2      (2 << (31 - 27))
233 #define CFG_LBC_LSDMR_WRC3      (3 << (31 - 27))
234 #define CFG_LBC_LSDMR_WRC4      (0 << (31 - 27))
235 #define CFG_LBC_LSDMR_BUFCMD    (1 << (31 - 29))
236 #define CFG_LBC_LSDMR_CL3       (3 << (31 - 31))
237
238 #define CFG_LBC_LSDMR_OP_NORMAL (0 << (31 - 4))
239 #define CFG_LBC_LSDMR_OP_ARFRSH (1 << (31 - 4))
240 #define CFG_LBC_LSDMR_OP_SRFRSH (2 << (31 - 4))
241 #define CFG_LBC_LSDMR_OP_MRW    (3 << (31 - 4))
242 #define CFG_LBC_LSDMR_OP_PRECH  (4 << (31 - 4))
243 #define CFG_LBC_LSDMR_OP_PCHALL (5 << (31 - 4))
244 #define CFG_LBC_LSDMR_OP_ACTBNK (6 << (31 - 4))
245 #define CFG_LBC_LSDMR_OP_RWINV  (7 << (31 - 4))
246
247 #define CFG_LBC_LSDMR_COMMON    ( CFG_LBC_LSDMR_RFEN            \
248                                 | CFG_LBC_LSDMR_BSMA1516        \
249                                 | CFG_LBC_LSDMR_RFCR8           \
250                                 | CFG_LBC_LSDMR_PRETOACT6       \
251                                 | CFG_LBC_LSDMR_ACTTORW3        \
252                                 | CFG_LBC_LSDMR_BL8             \
253                                 | CFG_LBC_LSDMR_WRC3            \
254                                 | CFG_LBC_LSDMR_CL3             \
255                                 )
256
257 /*
258  * SDRAM Controller configuration sequence.
259  */
260 #define CFG_LBC_LSDMR_1         ( CFG_LBC_LSDMR_COMMON \
261                                 | CFG_LBC_LSDMR_OP_PCHALL)
262 #define CFG_LBC_LSDMR_2         ( CFG_LBC_LSDMR_COMMON \
263                                 | CFG_LBC_LSDMR_OP_ARFRSH)
264 #define CFG_LBC_LSDMR_3         ( CFG_LBC_LSDMR_COMMON \
265                                 | CFG_LBC_LSDMR_OP_ARFRSH)
266 #define CFG_LBC_LSDMR_4         ( CFG_LBC_LSDMR_COMMON \
267                                 | CFG_LBC_LSDMR_OP_MRW)
268 #define CFG_LBC_LSDMR_5         ( CFG_LBC_LSDMR_COMMON \
269                                 | CFG_LBC_LSDMR_OP_NORMAL)
270 #endif
271
272 /*
273  * Serial Port
274  */
275 #define CONFIG_CONS_INDEX     1
276 #undef  CONFIG_SERIAL_SOFTWARE_FIFO
277 #define CFG_NS16550
278 #define CFG_NS16550_SERIAL
279 #define CFG_NS16550_REG_SIZE    1
280 #define CFG_NS16550_CLK         get_bus_freq(0)
281
282 #define CFG_BAUDRATE_TABLE  \
283         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400,115200}
284
285 #define CFG_NS16550_COM1        (CFG_IMMRBAR+0x4500)
286 #define CFG_NS16550_COM2        (CFG_IMMRBAR+0x4600)
287
288 /* Use the HUSH parser */
289 #define CFG_HUSH_PARSER
290 #ifdef  CFG_HUSH_PARSER
291 #define CFG_PROMPT_HUSH_PS2 "> "
292 #endif
293
294 /* I2C */
295 #define  CONFIG_HARD_I2C                /* I2C with hardware support*/
296 #undef  CONFIG_SOFT_I2C                 /* I2C bit-banged */
297 #define CFG_I2C_SPEED           400000  /* I2C speed and slave address */
298 #define CFG_I2C_SLAVE           0x7F
299 #define CFG_I2C_NOPROBES        {0x69}  /* Don't probe these addrs */
300 #define CFG_I2C_OFFSET      0x3000
301 #define CFG_I2C2_OFFSET      0x3100
302
303 /* TSEC */
304 #define CFG_TSEC1_OFFSET 0x24000
305 #define CFG_TSEC1 (CFG_IMMRBAR+CFG_TSEC1_OFFSET)
306 #define CFG_TSEC2_OFFSET 0x25000
307 #define CFG_TSEC2 (CFG_IMMRBAR+CFG_TSEC2_OFFSET)
308
309 /* IO Configuration */
310 #define CFG_IO_CONF (\
311         IO_CONF_UART |\
312         IO_CONF_TSEC1 |\
313         IO_CONF_IRQ0 |\
314         IO_CONF_IRQ1 |\
315         IO_CONF_IRQ2 |\
316         IO_CONF_IRQ3 |\
317         IO_CONF_IRQ4 |\
318         IO_CONF_IRQ5 |\
319         IO_CONF_IRQ6 |\
320         IO_CONF_IRQ7 )
321
322 /*
323  * General PCI
324  * Addresses are mapped 1-1.
325  */
326 #define CFG_PCI1_MEM_BASE       0x80000000
327 #define CFG_PCI1_MEM_PHYS       CFG_PCI1_MEM_BASE
328 #define CFG_PCI1_MEM_SIZE       0x20000000      /* 512M */
329 #define CFG_PCI1_IO_BASE        0x00000000
330 #define CFG_PCI1_IO_PHYS        0xe2000000
331 #define CFG_PCI1_IO_SIZE        0x1000000       /* 16M */
332
333 #define CFG_PCI2_MEM_BASE       0xA0000000
334 #define CFG_PCI2_MEM_PHYS       CFG_PCI2_MEM_BASE
335 #define CFG_PCI2_MEM_SIZE       0x20000000      /* 512M */
336 #define CFG_PCI2_IO_BASE        0x00000000
337 #define CFG_PCI2_IO_PHYS        0xe3000000
338 #define CFG_PCI2_IO_SIZE        0x1000000       /* 16M */
339 #if defined(CONFIG_PCI)
340
341 #define PCI_ALL_PCI1
342 #if defined(PCI_64BIT)
343 #undef PCI_ALL_PCI1
344 #undef PCI_TWO_PCI1
345 #undef PCI_ONE_PCI1
346 #endif
347
348 #define CONFIG_NET_MULTI
349 #define CONFIG_PCI_PNP                  /* do pci plug-and-play */
350
351 #undef CONFIG_EEPRO100
352 #undef CONFIG_TULIP
353
354 #if !defined(CONFIG_PCI_PNP)
355         #define PCI_ENET0_IOADDR        0xFIXME
356         #define PCI_ENET0_MEMADDR       0xFIXME
357         #define PCI_IDSEL_NUMBER        0x0c    /* slot0->3(IDSEL)=12->15 */
358 #endif
359
360 #undef CONFIG_PCI_SCAN_SHOW             /* show pci devices on startup */
361 #define CFG_PCI_SUBSYS_VENDORID 0x1057  /* Motorola */
362
363 #endif  /* CONFIG_PCI */
364
365 #if defined(CONFIG_TSEC_ENET)
366 #ifndef CONFIG_NET_MULTI
367 #define CONFIG_NET_MULTI        1
368 #endif
369
370 #define CONFIG_GMII             1       /* MII PHY management */
371 #define CONFIG_MPC83XX_TSEC1    1
372 #define CONFIG_MPC83XX_TSEC1_NAME       "TSEC0"
373 #define CONFIG_MPC83XX_TSEC2    1
374 #define CONFIG_MPC83XX_TSEC2_NAME       "TSEC1"
375 #define TSEC1_PHY_ADDR          0
376 #define TSEC2_PHY_ADDR          1
377 #define TSEC1_PHYIDX            0
378 #define TSEC2_PHYIDX            0
379
380 /* Options are: TSEC[0-1] */
381 #define CONFIG_ETHPRIME         "TSEC0"
382
383 #endif  /* CONFIG_TSEC_ENET */
384
385 /*
386  * Environment
387  */
388 #ifndef CFG_RAMBOOT
389         #define CFG_ENV_IS_IN_FLASH     1
390         #define CFG_ENV_ADDR            (CFG_MONITOR_BASE + 0x40000)
391         #define CFG_ENV_SECT_SIZE       0x40000 /* 256K(one sector) for env */
392         #define CFG_ENV_SIZE            0x2000
393 #else
394         #define CFG_NO_FLASH            1       /* Flash is not usable now */
395         #define CFG_ENV_IS_NOWHERE      1       /* Store ENV in memory only */
396         #define CFG_ENV_ADDR            (CFG_MONITOR_BASE - 0x1000)
397         #define CFG_ENV_SIZE            0x2000
398 #endif
399
400 #define CONFIG_LOADS_ECHO       1       /* echo on for serial download */
401 #define CFG_LOADS_BAUD_CHANGE   1       /* allow baudrate change */
402
403 #if defined(CFG_RAMBOOT)
404 #if defined(CONFIG_PCI)
405 #define  CONFIG_COMMANDS        ((CONFIG_CMD_DFL        \
406                                  | CFG_CMD_PING         \
407                                  | CFG_CMD_PCI          \
408                                  | CFG_CMD_I2C)         \
409                                 &                       \
410                                  ~(CFG_CMD_ENV          \
411                                   | CFG_CMD_LOADS))
412 #else
413 #define  CONFIG_COMMANDS        ((CONFIG_CMD_DFL        \
414                                  | CFG_CMD_PING         \
415                                  | CFG_CMD_I2C)         \
416                                 &                       \
417                                  ~(CFG_CMD_ENV          \
418                                   | CFG_CMD_LOADS))
419 #endif
420 #else
421 #if defined(CONFIG_PCI)
422 #define  CONFIG_COMMANDS        (CONFIG_CMD_DFL         \
423                                 | CFG_CMD_PCI           \
424                                 | CFG_CMD_PING          \
425                                 | CFG_CMD_I2C)
426 #else
427 #define  CONFIG_COMMANDS        (CONFIG_CMD_DFL         \
428                                 | CFG_CMD_PING          \
429                                 | CFG_CMD_I2C       \
430                                 | CFG_CMD_MII       \
431                                 )
432 #endif
433 #endif
434
435 #include <cmd_confdefs.h>
436
437 #undef CONFIG_WATCHDOG                  /* watchdog disabled */
438
439 /*
440  * Miscellaneous configurable options
441  */
442 #define CFG_LONGHELP                    /* undef to save memory */
443 #define CFG_LOAD_ADDR   0x2000000       /* default load address */
444 #define CFG_PROMPT      "=> "           /* Monitor Command Prompt */
445
446 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
447         #define CFG_CBSIZE      1024            /* Console I/O Buffer Size */
448 #else
449         #define CFG_CBSIZE      256             /* Console I/O Buffer Size */
450 #endif
451
452 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
453 #define CFG_MAXARGS     16              /* max number of command args */
454 #define CFG_BARGSIZE    CFG_CBSIZE      /* Boot Argument Buffer Size */
455 #define CFG_HZ          1000            /* decrementer freq: 1ms ticks */
456
457 /*
458  * For booting Linux, the board info and command line data
459  * have to be in the first 8 MB of memory, since this is
460  * the maximum mapped by the Linux kernel during initialization.
461  */
462 #define CFG_BOOTMAPSZ   (8 << 20)       /* Initial Memory map for Linux*/
463
464 /* Cache Configuration */
465 #define CFG_DCACHE_SIZE         32768
466 #define CFG_CACHELINE_SIZE      32
467 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
468 #define CFG_CACHELINE_SHIFT     5       /*log base 2 of the above value*/
469 #endif
470
471 #define CFG_RCWH_PCIHOST 0x80000000 /* PCIHOST  */
472
473 #define CFG_HRCW_LOW (\
474         HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
475         HRCWL_DDR_TO_SCB_CLK_1X1 |\
476         HRCWL_CSB_TO_CLKIN_4X1 |\
477         HRCWL_VCO_1X2 |\
478         HRCWL_CORE_TO_CSB_2X1)
479
480 #if defined(PCI_64BIT)
481 #define CFG_HRCW_HIGH (\
482         HRCWH_PCI_HOST |\
483         HRCWH_64_BIT_PCI |\
484         HRCWH_PCI1_ARBITER_ENABLE |\
485         HRCWH_PCI2_ARBITER_DISABLE |\
486         HRCWH_CORE_ENABLE |\
487         HRCWH_FROM_0X00000100 |\
488         HRCWH_BOOTSEQ_DISABLE |\
489         HRCWH_SW_WATCHDOG_DISABLE |\
490         HRCWH_ROM_LOC_LOCAL_16BIT |\
491         HRCWH_TSEC1M_IN_GMII |\
492         HRCWH_TSEC2M_IN_GMII )
493 #else
494 #define CFG_HRCW_HIGH (\
495         HRCWH_PCI_HOST |\
496         HRCWH_32_BIT_PCI |\
497         HRCWH_PCI1_ARBITER_ENABLE |\
498         HRCWH_PCI2_ARBITER_ENABLE |\
499         HRCWH_CORE_ENABLE |\
500         HRCWH_FROM_0X00000100 |\
501         HRCWH_BOOTSEQ_DISABLE |\
502         HRCWH_SW_WATCHDOG_DISABLE |\
503         HRCWH_ROM_LOC_LOCAL_16BIT |\
504         HRCWH_TSEC1M_IN_GMII |\
505         HRCWH_TSEC2M_IN_GMII )
506 #endif
507
508 #define CFG_HID0_INIT 0x000000000
509
510 #define CFG_HID0_FINAL CFG_HID0_INIT
511
512 /* #define CFG_HID0_FINAL               (\
513         HID0_ENABLE_INSTRUCTION_CACHE |\
514         HID0_ENABLE_M_BIT |\
515         HID0_ENABLE_ADDRESS_BROADCAST ) */
516
517 #define CFG_HID2 0x000000000
518
519 /*
520  * Internal Definitions
521  *
522  * Boot Flags
523  */
524 #define BOOTFLAG_COLD   0x01    /* Normal Power-On: Boot from FLASH */
525 #define BOOTFLAG_WARM   0x02    /* Software reboot */
526
527 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
528 #define CONFIG_KGDB_BAUDRATE    230400  /* speed of kgdb serial port */
529 #define CONFIG_KGDB_SER_INDEX   2       /* which serial port to use */
530 #endif
531
532 /*
533  * Environment Configuration
534  */
535
536 #if defined(CONFIG_TSEC_ENET)
537 #define CONFIG_ETHADDR   00:04:9f:11:22:33
538 #define CONFIG_HAS_ETH1
539 #define CONFIG_ETH1ADDR  00:E0:0C:00:7D:01
540 #endif
541
542 #define CONFIG_IPADDR    192.168.1.253
543
544 #define CONFIG_HOSTNAME  unknown
545 #define CONFIG_ROOTPATH  /nfsroot
546 #define CONFIG_BOOTFILE  your.uImage
547
548 #define CONFIG_SERVERIP  192.168.1.1
549 #define CONFIG_GATEWAYIP 192.168.1.1
550 #define CONFIG_NETMASK   255.255.255.0
551
552 #define CONFIG_LOADADDR  200000 /* default location for tftp and bootm */
553
554 #define CONFIG_BOOTDELAY 6      /* -1 disables auto-boot */
555 #undef  CONFIG_BOOTARGS         /* the boot command will set bootargs */
556
557 #define CONFIG_BAUDRATE  115200
558
559
560 #define CONFIG_EXTRA_ENV_SETTINGS                       \
561         "netdev=eth0\0"                                 \
562         "consoledev=ttyS0\0"                            \
563         "ramdiskaddr=400000\0"                          \
564         "ramdiskfile=ramfs.83xx\0"
565
566 #define CONFIG_NFSBOOTCOMMAND                           \
567         "setenv bootargs root=/dev/nfs rw "             \
568         "nfsroot=$serverip:$rootpath "                  \
569         "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
570         "console=$consoledev,$baudrate $othbootargs;"   \
571         "tftp $loadaddr $bootfile;"                     \
572         "bootm $loadaddr"
573
574 #define CONFIG_RAMBOOTCOMMAND                           \
575         "setenv bootargs root=/dev/ram rw "             \
576         "console=$consoledev,$baudrate $othbootargs;"   \
577         "tftp $ramdiskaddr $ramdiskfile;"               \
578         "tftp $loadaddr $bootfile;"                     \
579         "bootm $loadaddr $ramdiskaddr"
580
581 #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
582
583 #endif  /* __CONFIG_H */