blob: 3e3803cd235b3b649848f072a95c75ae4c38bd31 [file] [log] [blame]
wdenkc935d3b2004-01-03 19:43:48 +00001/*
2 * (C) Copyright 2003, Li-Pro.Net <www.li-pro.net>
3 * Stephan Linz <linz@li-pro.net>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __CONFIG_H
25#define __CONFIG_H
26
wdenkec4c5442004-02-09 23:12:24 +000027/***********************************************************************
28 * Include the whole NIOS CPU configuration.
wdenkc935d3b2004-01-03 19:43:48 +000029 *
wdenkec4c5442004-02-09 23:12:24 +000030 * !!! HAVE TO BE HERE !!! DON'T MOVE THIS PART !!!
wdenkc935d3b2004-01-03 19:43:48 +000031 *
wdenkec4c5442004-02-09 23:12:24 +000032 ***********************************************************************/
wdenkc935d3b2004-01-03 19:43:48 +000033
34#if defined(CONFIG_NIOS_SAFE_32)
wdenkec4c5442004-02-09 23:12:24 +000035#include <configs/DK1S10_safe_32.h>
wdenkc935d3b2004-01-03 19:43:48 +000036#elif defined(CONFIG_NIOS_STANDARD_32)
wdenkec4c5442004-02-09 23:12:24 +000037#include <configs/DK1S10_standard_32.h>
38#elif defined(CONFIG_NIOS_MTX_LDK_20)
39#include <configs/DK1S10_mtx_ldk_20.h>
wdenkc935d3b2004-01-03 19:43:48 +000040#else
41#error *** CFG_ERROR: you have to setup right NIOS CPU configuration
42#endif
43
44/*------------------------------------------------------------------------
45 * BOARD/CPU -- TOP-LEVEL
46 *----------------------------------------------------------------------*/
47#define CONFIG_NIOS 1 /* NIOS-32 core */
48#define CONFIG_DK1S10 1 /* Stratix DK-1S10 board*/
49#define CONFIG_SYS_CLK_FREQ CFG_NIOS_CPU_CLK/* 50 MHz core clock */
50#define CFG_HZ 1000 /* 1 msec time tick */
51#undef CFG_CLKS_IN_HZ
wdenkc837dcb2004-01-20 23:12:12 +000052#define CONFIG_BOARD_EARLY_INIT_F 1 /* enable early board-spec. init*/
wdenkc935d3b2004-01-03 19:43:48 +000053
54/*------------------------------------------------------------------------
55 * BASE ADDRESSES / SIZE (Flash, SRAM, SDRAM)
56 *----------------------------------------------------------------------*/
57#if (CFG_NIOS_CPU_SDRAM_SIZE != 0)
58
59#define CFG_SDRAM_BASE CFG_NIOS_CPU_SDRAM_BASE
60#define CFG_SDRAM_SIZE CFG_NIOS_CPU_SDRAM_SIZE
61
62#else
63#error *** CFG_ERROR: you have to setup any SDRAM in NIOS CPU config
64#endif
65
wdenkec4c5442004-02-09 23:12:24 +000066#if defined(CFG_NIOS_CPU_SRAM_BASE) && defined(CFG_NIOS_CPU_SRAM_SIZE)
67
68#define CFG_SRAM_BASE CFG_NIOS_CPU_SRAM_BASE
69#define CFG_SRAM_SIZE CFG_NIOS_CPU_SRAM_SIZE
70
71#else
72
73#undef CFG_SRAM_BASE
74#undef CFG_SRAM_SIZE
75
76#endif
77
wdenkc935d3b2004-01-03 19:43:48 +000078#define CFG_VECT_BASE CFG_NIOS_CPU_VEC_BASE
79
80/*------------------------------------------------------------------------
81 * MEMORY ORGANIZATION - For the most part, you can put things pretty
82 * much anywhere. This is pretty flexible for Nios. So here we make some
83 * arbitrary choices & assume that the monitor is placed at the end of
84 * a memory resource (so you must make sure TEXT_BASE is chosen
85 * appropriately).
86 *
87 * -The heap is placed below the monitor.
88 * -Global data is placed below the heap.
89 * -The stack is placed below global data (&grows down).
90 *----------------------------------------------------------------------*/
91#define CFG_MONITOR_LEN (256 * 1024) /* Reserve 256k */
92#define CFG_GBL_DATA_SIZE 128 /* Global data size rsvd*/
93#define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024)
94
95#define CFG_MONITOR_BASE TEXT_BASE
96#define CFG_MALLOC_BASE (CFG_MONITOR_BASE - CFG_MALLOC_LEN)
97#define CFG_GBL_DATA_OFFSET (CFG_MALLOC_BASE - CFG_GBL_DATA_SIZE)
98#define CFG_INIT_SP CFG_GBL_DATA_OFFSET
99
100/*------------------------------------------------------------------------
101 * FLASH (AM29LV065D)
102 *----------------------------------------------------------------------*/
103#if (CFG_NIOS_CPU_FLASH_SIZE != 0)
104
105#define CFG_FLASH_BASE CFG_NIOS_CPU_FLASH_BASE
106#define CFG_FLASH_SIZE CFG_NIOS_CPU_FLASH_SIZE
107#define CFG_MAX_FLASH_SECT 128 /* Max # sects per bank */
108#define CFG_MAX_FLASH_BANKS 1 /* Max # of flash banks */
109#define CFG_FLASH_ERASE_TOUT 8000 /* Erase timeout (msec) */
110#define CFG_FLASH_WRITE_TOUT 100 /* Write timeout (msec) */
111#define CFG_FLASH_WORD_SIZE unsigned char /* flash word size */
112
113#else
114#error *** CFG_ERROR: you have to setup any Flash memory in NIOS CPU config
115#endif
116
117/*------------------------------------------------------------------------
118 * ENVIRONMENT
119 *----------------------------------------------------------------------*/
120#if (CFG_NIOS_CPU_FLASH_SIZE != 0)
121
122#define CFG_ENV_IS_IN_FLASH 1 /* Environment in flash */
wdenkec4c5442004-02-09 23:12:24 +0000123
124#if defined(CONFIG_NIOS_STANDARD_32)
wdenkc935d3b2004-01-03 19:43:48 +0000125#define CFG_ENV_ADDR CFG_FLASH_BASE /* Mem addr of env */
wdenkec4c5442004-02-09 23:12:24 +0000126#elif defined(CONFIG_NIOS_MTX_LDK_20)
127#define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN)
128#else
129#error *** CFG_ERROR: you have to setup the environment base address CFG_ENV_ADDR
130#endif
131
wdenkc935d3b2004-01-03 19:43:48 +0000132#define CFG_ENV_SIZE (64 * 1024) /* 64 KByte (1 sector) */
133#define CONFIG_ENV_OVERWRITE /* Serial/eth change Ok */
134
135#else
136#define CFG_ENV_IS_NOWHERE 1 /* NO Environment */
137#endif
138
139/*------------------------------------------------------------------------
140 * CONSOLE
141 *----------------------------------------------------------------------*/
142#if (CFG_NIOS_CPU_UART_NUMS != 0)
143
144#define CFG_NIOS_CONSOLE CFG_NIOS_CPU_UART0 /* 1st UART is Cons. */
wdenkb54d32b2004-06-10 21:34:36 +0000145#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
wdenkc935d3b2004-01-03 19:43:48 +0000146
147#if (CFG_NIOS_CPU_UART0_BR != 0)
148#define CFG_NIOS_FIXEDBAUD 1 /* Baudrate is fixed */
149#define CONFIG_BAUDRATE CFG_NIOS_CPU_UART0_BR
150#else
151#undef CFG_NIOS_FIXEDBAUD
152#define CONFIG_BAUDRATE 115200
153#endif
154
155#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
156
157#else
158#error *** CFG_ERROR: you have to setup at least one UART in NIOS CPU config
159#endif
160
161/*------------------------------------------------------------------------
162 * TIMER FOR TIMEBASE -- Nios doesn't have the equivalent of ppc PIT,
163 * so an avalon bus timer is required.
164 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000165#if (CFG_NIOS_CPU_TIMER_NUMS != 0) && defined(CFG_NIOS_CPU_TICK_TIMER)
wdenkc935d3b2004-01-03 19:43:48 +0000166
167#if (CFG_NIOS_CPU_TICK_TIMER == 0)
168
wdenkec4c5442004-02-09 23:12:24 +0000169#define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER0 /* TIMER0 as tick */
170#define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER0_IRQ
171
wdenk63e73c92004-02-23 22:22:28 +0000172#if (CFG_NIOS_CPU_TIMER0_FP == 1) /* fixed period */
173
wdenkec4c5442004-02-09 23:12:24 +0000174#if (CFG_NIOS_CPU_TIMER0_PER >= CFG_HZ)
175#define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER0_PER / CFG_HZ)
176#else
wdenk63e73c92004-02-23 22:22:28 +0000177#error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
178#endif
179
180#undef CFG_NIOS_TMRCNT /* no preloadable counter value */
181
182#elif (CFG_NIOS_CPU_TIMER0_FP == 0) /* variable period */
183
184#if (CFG_HZ <= 1000)
185#define CFG_NIOS_TMRMS (1000 / CFG_HZ)
186#else
187#error *** CFG_ERROR: sorry, CFG_HZ have to be less than 1000
188#endif
189
190#define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
191
192#else
193#error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER0_FP correct
wdenkec4c5442004-02-09 23:12:24 +0000194#endif
wdenkc935d3b2004-01-03 19:43:48 +0000195
196#elif (CFG_NIOS_CPU_TICK_TIMER == 1)
197
198#define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER1 /* TIMER1 as tick */
199#define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER1_IRQ
200
wdenk63e73c92004-02-23 22:22:28 +0000201#if (CFG_NIOS_CPU_TIMER1_FP == 1) /* fixed period */
202
wdenkc935d3b2004-01-03 19:43:48 +0000203#if (CFG_NIOS_CPU_TIMER1_PER >= CFG_HZ)
204#define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER1_PER / CFG_HZ)
205#else
wdenk63e73c92004-02-23 22:22:28 +0000206#error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
207#endif
208
209#undef CFG_NIOS_TMRCNT /* no preloadable counter value */
210
211#elif (CFG_NIOS_CPU_TIMER1_FP == 0) /* variable period */
212
213#if (CFG_HZ <= 1000)
214#define CFG_NIOS_TMRMS (1000 / CFG_HZ)
215#else
216#error *** CFG_ERROR: sorry, CFG_HZ have to be less than 1000
217#endif
218
219#define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
220
221#else
222#error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER1_FP correct
wdenkc935d3b2004-01-03 19:43:48 +0000223#endif
224
225#endif /* CFG_NIOS_CPU_TICK_TIMER */
226
227#else
228#error *** CFG_ERROR: you have to setup at least one TIMER in NIOS CPU config
229#endif
230
231/*------------------------------------------------------------------------
232 * Ethernet -- needs work!
233 *----------------------------------------------------------------------*/
234#if (CFG_NIOS_CPU_LAN_NUMS == 1)
235
236#if (CFG_NIOS_CPU_LAN0_TYPE == 0) /* LAN91C111 */
237
wdenkc935d3b2004-01-03 19:43:48 +0000238#define CONFIG_DRIVER_SMC91111 /* Using SMC91c111 */
239#undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */
240#define CONFIG_SMC91111_BASE (CFG_NIOS_CPU_LAN0_BASE + CFG_NIOS_CPU_LAN0_OFFS)
241
242#if (CFG_NIOS_CPU_LAN0_BUSW == 32)
243#define CONFIG_SMC_USE_32_BIT 1
244#else /* no */
245#undef CONFIG_SMC_USE_32_BIT
246#endif
247
248#elif (CFG_NIOS_CPU_LAN0_TYPE == 1) /* CS8900A */
249
250 /********************************************/
251 /* !!! CS8900 is __not__ tested on NIOS !!! */
252 /********************************************/
253#define CONFIG_DRIVER_CS8900 /* Using CS8900 */
254#define CS8900_BASE (CFG_NIOS_CPU_LAN0_BASE + CFG_NIOS_CPU_LAN0_OFFS)
255
256#if (CFG_NIOS_CPU_LAN0_BUSW == 32)
257#undef CS8900_BUS16
258#define CS8900_BUS32 1
259#else /* no */
260#define CS8900_BUS16 1
261#undef CS8900_BUS32
262#endif
263
264#else
265#error *** CFG_ERROR: invalid LAN0 chip type, check your NIOS CPU config
266#endif
267
268#define CONFIG_ETHADDR 08:00:3e:26:0a:5b
269#define CONFIG_NETMASK 255.255.255.0
270#define CONFIG_IPADDR 192.168.2.21
271#define CONFIG_SERVERIP 192.168.2.16
272
273#else
274#error *** CFG_ERROR: you have to setup just one LAN only or expand your config.h
275#endif
276
277/*------------------------------------------------------------------------
278 * STATUS LEDs
279 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000280#if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_LED_PIO)
wdenkc935d3b2004-01-03 19:43:48 +0000281
282#if (CFG_NIOS_CPU_LED_PIO == 0)
283
284#error *** CFG_ERROR: status LEDs at PIO0 not supported, expand your config.h
285
286#elif (CFG_NIOS_CPU_LED_PIO == 1)
287
288#error *** CFG_ERROR: status LEDs at PIO1 not supported, expand your config.h
289
290#elif (CFG_NIOS_CPU_LED_PIO == 2)
291
292#define STATUS_LED_BASE CFG_NIOS_CPU_PIO2
293#define STATUS_LED_BITS CFG_NIOS_CPU_PIO2_BITS
294#define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
295
296#if (CFG_NIOS_CPU_PIO2_TYPE == 1)
297#define STATUS_LED_WRONLY 1
298#else
299#undef STATUS_LED_WRONLY
300#endif
301
302#elif (CFG_NIOS_CPU_LED_PIO == 3)
303
304#error *** CFG_ERROR: status LEDs at PIO3 not supported, expand your config.h
305
306#elif (CFG_NIOS_CPU_LED_PIO == 4)
307
308#error *** CFG_ERROR: status LEDs at PIO4 not supported, expand your config.h
309
310#elif (CFG_NIOS_CPU_LED_PIO == 5)
311
312#error *** CFG_ERROR: status LEDs at PIO5 not supported, expand your config.h
313
314#elif (CFG_NIOS_CPU_LED_PIO == 6)
315
316#error *** CFG_ERROR: status LEDs at PIO6 not supported, expand your config.h
317
318#elif (CFG_NIOS_CPU_LED_PIO == 7)
319
320#error *** CFG_ERROR: status LEDs at PIO7 not supported, expand your config.h
321
322#elif (CFG_NIOS_CPU_LED_PIO == 8)
323
324#error *** CFG_ERROR: status LEDs at PIO8 not supported, expand your config.h
325
326#elif (CFG_NIOS_CPU_LED_PIO == 9)
327
328#error *** CFG_ERROR: status LEDs at PIO9 not supported, expand your config.h
329
330#else
331#error *** CFG_ERROR: you have to set CFG_NIOS_CPU_LED_PIO in right case
332#endif
333
334#define CONFIG_STATUS_LED 1 /* enable status led driver */
335
336#define STATUS_LED_BIT (1 << 0) /* LED[0] */
337#define STATUS_LED_STATE STATUS_LED_BLINKING
338#define STATUS_LED_BOOT_STATE STATUS_LED_OFF
339#define STATUS_LED_PERIOD (CFG_HZ / 10) /* ca. 1 Hz */
340#define STATUS_LED_BOOT 0 /* boot LED */
341
342#if (STATUS_LED_BITS > 1)
343#define STATUS_LED_BIT1 (1 << 1) /* LED[1] */
344#define STATUS_LED_STATE1 STATUS_LED_OFF
345#define STATUS_LED_PERIOD1 (CFG_HZ / 50) /* ca. 5 Hz */
346#define STATUS_LED_RED 1 /* fail LED */
347#endif
348
349#if (STATUS_LED_BITS > 2)
350#define STATUS_LED_BIT2 (1 << 2) /* LED[2] */
351#define STATUS_LED_STATE2 STATUS_LED_OFF
352#define STATUS_LED_PERIOD2 (CFG_HZ / 10) /* ca. 1 Hz */
353#define STATUS_LED_YELLOW 2 /* info LED */
354#endif
355
356#if (STATUS_LED_BITS > 3)
357#define STATUS_LED_BIT3 (1 << 3) /* LED[3] */
358#define STATUS_LED_STATE3 STATUS_LED_OFF
359#define STATUS_LED_PERIOD3 (CFG_HZ / 10) /* ca. 1 Hz */
360#define STATUS_LED_GREEN 3 /* info LED */
361#endif
362
363#define STATUS_LED_PAR 1 /* makes status_led.h happy */
364
365#endif /* CFG_NIOS_CPU_PIO_NUMS */
366
367/*------------------------------------------------------------------------
368 * SEVEN SEGMENT LED DISPLAY
369 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000370#if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_SEVENSEG_PIO)
wdenkc935d3b2004-01-03 19:43:48 +0000371
372#if (CFG_NIOS_CPU_SEVENSEG_PIO == 0)
373
wdenkec4c5442004-02-09 23:12:24 +0000374#error *** CFG_ERROR: seven segment display at PIO0 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000375
376#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 1)
377
wdenkec4c5442004-02-09 23:12:24 +0000378#error *** CFG_ERROR: seven segment display at PIO1 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000379
380#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 2)
381
wdenkec4c5442004-02-09 23:12:24 +0000382#error *** CFG_ERROR: seven segment display at PIO2 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000383
384#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 3)
385
386#define SEVENSEG_BASE CFG_NIOS_CPU_PIO3
387#define SEVENSEG_BITS CFG_NIOS_CPU_PIO3_BITS
388#define SEVENSEG_ACTIVE 0 /* LED on for bit == 1 */
389
390#if (CFG_NIOS_CPU_PIO3_TYPE == 1)
391#define SEVENSEG_WRONLY 1
392#else
393#undef SEVENSEG_WRONLY
394#endif
395
396#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 4)
397
wdenkec4c5442004-02-09 23:12:24 +0000398#error *** CFG_ERROR: seven segment display at PIO4 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000399
400#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 5)
401
wdenkec4c5442004-02-09 23:12:24 +0000402#error *** CFG_ERROR: seven segment display at PIO5 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000403
404#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 6)
405
wdenkec4c5442004-02-09 23:12:24 +0000406#error *** CFG_ERROR: seven segment display at PIO6 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000407
408#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 7)
409
wdenkec4c5442004-02-09 23:12:24 +0000410#error *** CFG_ERROR: seven segment display at PIO7 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000411
412#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 8)
413
wdenkec4c5442004-02-09 23:12:24 +0000414#error *** CFG_ERROR: seven segment display at PIO8 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000415
416#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 9)
417
wdenkec4c5442004-02-09 23:12:24 +0000418#error *** CFG_ERROR: seven segment display at PIO9 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000419
420#else
421#error *** CFG_ERROR: you have to set CFG_NIOS_CPU_SEVENSEG_PIO in right case
422#endif
423
424#define CONFIG_SEVENSEG 1 /* enable seven segment led driver */
425
426/*
427 * Dual 7-Segment Display pin assignment -- read more in your
428 * "Nios Development Board Reference Manual"
429 *
430 *
431 * (U8) HI:D[15..8] (U9) LO:D[7..0]
432 * ______ ______
433 * | D14 | | D6 |
434 * | | | |
435 * D9| |D13 D1| |D5
436 * |______| |______| ___
437 * | D8 | | D0 | | A |
438 * | | | | F|___|B
439 * D10| |D12 D2| |D4 | G |
440 * |______| |______| E|___|C
441 * D11 * D3 * D *
442 * D15 D7 DP
443 *
444 */
445#define SEVENSEG_DIGIT_HI_LO_EQUAL 1 /* high nibble equal low nibble */
446#define SEVENSEG_DIGIT_A (1 << 6) /* bit 6 is segment A */
447#define SEVENSEG_DIGIT_B (1 << 5) /* bit 5 is segment B */
448#define SEVENSEG_DIGIT_C (1 << 4) /* bit 4 is segment C */
449#define SEVENSEG_DIGIT_D (1 << 3) /* bit 3 is segment D */
450#define SEVENSEG_DIGIT_E (1 << 2) /* bit 2 is segment E */
451#define SEVENSEG_DIGIT_F (1 << 1) /* bit 1 is segment F */
452#define SEVENSEG_DIGIT_G (1 << 0) /* bit 0 is segment G */
453#define SEVENSEG_DIGIT_DP (1 << 7) /* bit 7 is decimal point */
454
455#endif /* CFG_NIOS_CPU_PIO_NUMS */
456
457/*------------------------------------------------------------------------
458 * COMMANDS
459 *----------------------------------------------------------------------*/
460#define CONFIG_COMMANDS (CFG_CMD_ALL & ~( \
461 CFG_CMD_ASKENV | \
462 CFG_CMD_BEDBUG | \
463 CFG_CMD_BMP | \
464 CFG_CMD_BSP | \
465 CFG_CMD_CACHE | \
466 CFG_CMD_DATE | \
467 CFG_CMD_DOC | \
468 CFG_CMD_DTT | \
469 CFG_CMD_EEPROM | \
470 CFG_CMD_ELF | \
471 CFG_CMD_FAT | \
472 CFG_CMD_FDC | \
473 CFG_CMD_FDOS | \
474 CFG_CMD_HWFLOW | \
475 CFG_CMD_IDE | \
476 CFG_CMD_I2C | \
477 CFG_CMD_JFFS2 | \
478 CFG_CMD_KGDB | \
479 CFG_CMD_NAND | \
wdenke7c85682004-02-27 08:21:54 +0000480 CFG_CMD_NFS | \
wdenkc935d3b2004-01-03 19:43:48 +0000481 CFG_CMD_MMC | \
482 CFG_CMD_MII | \
483 CFG_CMD_PCI | \
484 CFG_CMD_PCMCIA | \
485 CFG_CMD_SCSI | \
486 CFG_CMD_SPI | \
487 CFG_CMD_VFD | \
wdenk48abe7b2004-06-09 10:15:00 +0000488 CFG_CMD_USB | \
489 CFG_CMD_XIMG ) )
wdenkc935d3b2004-01-03 19:43:48 +0000490
491
492#include <cmd_confdefs.h>
493
494/*------------------------------------------------------------------------
495 * KGDB
496 *----------------------------------------------------------------------*/
497#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
498#define CONFIG_KGDB_BAUDRATE 9600
499#endif
500
501/*------------------------------------------------------------------------
502 * MISC
503 *----------------------------------------------------------------------*/
504#define CFG_LONGHELP /* undef to save memory */
505#define CFG_PROMPT "DK1S10 > " /* Monitor Command Prompt */
506#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
507#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
508#define CFG_MAXARGS 16 /* max number of command args*/
509#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
510
wdenkec4c5442004-02-09 23:12:24 +0000511/* Default load address */
wdenkc935d3b2004-01-03 19:43:48 +0000512#if (CFG_SRAM_SIZE != 0)
wdenkec4c5442004-02-09 23:12:24 +0000513
514/* default in SRAM */
515#define CFG_LOAD_ADDR CFG_SRAM_BASE
516
517#elif (CFG_SDRAM_SIZE != 0)
518
519/* default in SDRAM */
520#if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
521#define CFG_LOAD_ADDR (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
wdenkc935d3b2004-01-03 19:43:48 +0000522#else
wdenkec4c5442004-02-09 23:12:24 +0000523#define CFG_LOAD_ADDR CFG_SDRAM_BASE
wdenkc935d3b2004-01-03 19:43:48 +0000524#endif
525
wdenkc935d3b2004-01-03 19:43:48 +0000526#else
wdenkec4c5442004-02-09 23:12:24 +0000527#undef CFG_LOAD_ADDR /* force error break */
528#endif
529
530
531/* MEM test area */
532#if (CFG_SDRAM_SIZE != 0)
533
534/* SDRAM begin to stack area (1MB stack) */
535#if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
536#define CFG_MEMTEST_START (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
537#define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
538#else
539#define CFG_MEMTEST_START CFG_SDRAM_BASE
540#define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
541#endif
542
543#else
544#undef CFG_MEMTEST_START /* force error break */
wdenkc935d3b2004-01-03 19:43:48 +0000545#undef CFG_MEMTEST_END
546#endif
547
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200548/*
549 * JFFS2 partitions
550 *
551 */
552/* No command line, one static partition, whole device */
553#undef CONFIG_JFFS2_CMDLINE
554#define CONFIG_JFFS2_DEV "nor0"
555#define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
556#define CONFIG_JFFS2_PART_OFFSET 0x00000000
557
558/* mtdparts command line support */
559/*
560#define CONFIG_JFFS2_CMDLINE
561#define MTDIDS_DEFAULT ""
562#define MTDPARTS_DEFAULT ""
563*/
wdenkc935d3b2004-01-03 19:43:48 +0000564
565#endif /* __CONFIG_H */