blob: e5e487c65d20fde9bdf0c2c2f842e241ba820382 [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. */
145
146#if (CFG_NIOS_CPU_UART0_BR != 0)
147#define CFG_NIOS_FIXEDBAUD 1 /* Baudrate is fixed */
148#define CONFIG_BAUDRATE CFG_NIOS_CPU_UART0_BR
149#else
150#undef CFG_NIOS_FIXEDBAUD
151#define CONFIG_BAUDRATE 115200
152#endif
153
154#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
155
156#else
157#error *** CFG_ERROR: you have to setup at least one UART in NIOS CPU config
158#endif
159
160/*------------------------------------------------------------------------
161 * TIMER FOR TIMEBASE -- Nios doesn't have the equivalent of ppc PIT,
162 * so an avalon bus timer is required.
163 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000164#if (CFG_NIOS_CPU_TIMER_NUMS != 0) && defined(CFG_NIOS_CPU_TICK_TIMER)
wdenkc935d3b2004-01-03 19:43:48 +0000165
166#if (CFG_NIOS_CPU_TICK_TIMER == 0)
167
wdenkec4c5442004-02-09 23:12:24 +0000168#define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER0 /* TIMER0 as tick */
169#define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER0_IRQ
170
wdenk63e73c92004-02-23 22:22:28 +0000171#if (CFG_NIOS_CPU_TIMER0_FP == 1) /* fixed period */
172
wdenkec4c5442004-02-09 23:12:24 +0000173#if (CFG_NIOS_CPU_TIMER0_PER >= CFG_HZ)
174#define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER0_PER / CFG_HZ)
175#else
wdenk63e73c92004-02-23 22:22:28 +0000176#error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
177#endif
178
179#undef CFG_NIOS_TMRCNT /* no preloadable counter value */
180
181#elif (CFG_NIOS_CPU_TIMER0_FP == 0) /* variable period */
182
183#if (CFG_HZ <= 1000)
184#define CFG_NIOS_TMRMS (1000 / CFG_HZ)
185#else
186#error *** CFG_ERROR: sorry, CFG_HZ have to be less than 1000
187#endif
188
189#define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
190
191#else
192#error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER0_FP correct
wdenkec4c5442004-02-09 23:12:24 +0000193#endif
wdenkc935d3b2004-01-03 19:43:48 +0000194
195#elif (CFG_NIOS_CPU_TICK_TIMER == 1)
196
197#define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER1 /* TIMER1 as tick */
198#define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER1_IRQ
199
wdenk63e73c92004-02-23 22:22:28 +0000200#if (CFG_NIOS_CPU_TIMER1_FP == 1) /* fixed period */
201
wdenkc935d3b2004-01-03 19:43:48 +0000202#if (CFG_NIOS_CPU_TIMER1_PER >= CFG_HZ)
203#define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER1_PER / CFG_HZ)
204#else
wdenk63e73c92004-02-23 22:22:28 +0000205#error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
206#endif
207
208#undef CFG_NIOS_TMRCNT /* no preloadable counter value */
209
210#elif (CFG_NIOS_CPU_TIMER1_FP == 0) /* variable period */
211
212#if (CFG_HZ <= 1000)
213#define CFG_NIOS_TMRMS (1000 / CFG_HZ)
214#else
215#error *** CFG_ERROR: sorry, CFG_HZ have to be less than 1000
216#endif
217
218#define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
219
220#else
221#error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER1_FP correct
wdenkc935d3b2004-01-03 19:43:48 +0000222#endif
223
224#endif /* CFG_NIOS_CPU_TICK_TIMER */
225
226#else
227#error *** CFG_ERROR: you have to setup at least one TIMER in NIOS CPU config
228#endif
229
230/*------------------------------------------------------------------------
231 * Ethernet -- needs work!
232 *----------------------------------------------------------------------*/
233#if (CFG_NIOS_CPU_LAN_NUMS == 1)
234
235#if (CFG_NIOS_CPU_LAN0_TYPE == 0) /* LAN91C111 */
236
wdenkc935d3b2004-01-03 19:43:48 +0000237#define CONFIG_DRIVER_SMC91111 /* Using SMC91c111 */
238#undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */
239#define CONFIG_SMC91111_BASE (CFG_NIOS_CPU_LAN0_BASE + CFG_NIOS_CPU_LAN0_OFFS)
240
241#if (CFG_NIOS_CPU_LAN0_BUSW == 32)
242#define CONFIG_SMC_USE_32_BIT 1
243#else /* no */
244#undef CONFIG_SMC_USE_32_BIT
245#endif
246
247#elif (CFG_NIOS_CPU_LAN0_TYPE == 1) /* CS8900A */
248
249 /********************************************/
250 /* !!! CS8900 is __not__ tested on NIOS !!! */
251 /********************************************/
252#define CONFIG_DRIVER_CS8900 /* Using CS8900 */
253#define CS8900_BASE (CFG_NIOS_CPU_LAN0_BASE + CFG_NIOS_CPU_LAN0_OFFS)
254
255#if (CFG_NIOS_CPU_LAN0_BUSW == 32)
256#undef CS8900_BUS16
257#define CS8900_BUS32 1
258#else /* no */
259#define CS8900_BUS16 1
260#undef CS8900_BUS32
261#endif
262
263#else
264#error *** CFG_ERROR: invalid LAN0 chip type, check your NIOS CPU config
265#endif
266
267#define CONFIG_ETHADDR 08:00:3e:26:0a:5b
268#define CONFIG_NETMASK 255.255.255.0
269#define CONFIG_IPADDR 192.168.2.21
270#define CONFIG_SERVERIP 192.168.2.16
271
272#else
273#error *** CFG_ERROR: you have to setup just one LAN only or expand your config.h
274#endif
275
276/*------------------------------------------------------------------------
277 * STATUS LEDs
278 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000279#if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_LED_PIO)
wdenkc935d3b2004-01-03 19:43:48 +0000280
281#if (CFG_NIOS_CPU_LED_PIO == 0)
282
283#error *** CFG_ERROR: status LEDs at PIO0 not supported, expand your config.h
284
285#elif (CFG_NIOS_CPU_LED_PIO == 1)
286
287#error *** CFG_ERROR: status LEDs at PIO1 not supported, expand your config.h
288
289#elif (CFG_NIOS_CPU_LED_PIO == 2)
290
291#define STATUS_LED_BASE CFG_NIOS_CPU_PIO2
292#define STATUS_LED_BITS CFG_NIOS_CPU_PIO2_BITS
293#define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
294
295#if (CFG_NIOS_CPU_PIO2_TYPE == 1)
296#define STATUS_LED_WRONLY 1
297#else
298#undef STATUS_LED_WRONLY
299#endif
300
301#elif (CFG_NIOS_CPU_LED_PIO == 3)
302
303#error *** CFG_ERROR: status LEDs at PIO3 not supported, expand your config.h
304
305#elif (CFG_NIOS_CPU_LED_PIO == 4)
306
307#error *** CFG_ERROR: status LEDs at PIO4 not supported, expand your config.h
308
309#elif (CFG_NIOS_CPU_LED_PIO == 5)
310
311#error *** CFG_ERROR: status LEDs at PIO5 not supported, expand your config.h
312
313#elif (CFG_NIOS_CPU_LED_PIO == 6)
314
315#error *** CFG_ERROR: status LEDs at PIO6 not supported, expand your config.h
316
317#elif (CFG_NIOS_CPU_LED_PIO == 7)
318
319#error *** CFG_ERROR: status LEDs at PIO7 not supported, expand your config.h
320
321#elif (CFG_NIOS_CPU_LED_PIO == 8)
322
323#error *** CFG_ERROR: status LEDs at PIO8 not supported, expand your config.h
324
325#elif (CFG_NIOS_CPU_LED_PIO == 9)
326
327#error *** CFG_ERROR: status LEDs at PIO9 not supported, expand your config.h
328
329#else
330#error *** CFG_ERROR: you have to set CFG_NIOS_CPU_LED_PIO in right case
331#endif
332
333#define CONFIG_STATUS_LED 1 /* enable status led driver */
334
335#define STATUS_LED_BIT (1 << 0) /* LED[0] */
336#define STATUS_LED_STATE STATUS_LED_BLINKING
337#define STATUS_LED_BOOT_STATE STATUS_LED_OFF
338#define STATUS_LED_PERIOD (CFG_HZ / 10) /* ca. 1 Hz */
339#define STATUS_LED_BOOT 0 /* boot LED */
340
341#if (STATUS_LED_BITS > 1)
342#define STATUS_LED_BIT1 (1 << 1) /* LED[1] */
343#define STATUS_LED_STATE1 STATUS_LED_OFF
344#define STATUS_LED_PERIOD1 (CFG_HZ / 50) /* ca. 5 Hz */
345#define STATUS_LED_RED 1 /* fail LED */
346#endif
347
348#if (STATUS_LED_BITS > 2)
349#define STATUS_LED_BIT2 (1 << 2) /* LED[2] */
350#define STATUS_LED_STATE2 STATUS_LED_OFF
351#define STATUS_LED_PERIOD2 (CFG_HZ / 10) /* ca. 1 Hz */
352#define STATUS_LED_YELLOW 2 /* info LED */
353#endif
354
355#if (STATUS_LED_BITS > 3)
356#define STATUS_LED_BIT3 (1 << 3) /* LED[3] */
357#define STATUS_LED_STATE3 STATUS_LED_OFF
358#define STATUS_LED_PERIOD3 (CFG_HZ / 10) /* ca. 1 Hz */
359#define STATUS_LED_GREEN 3 /* info LED */
360#endif
361
362#define STATUS_LED_PAR 1 /* makes status_led.h happy */
363
364#endif /* CFG_NIOS_CPU_PIO_NUMS */
365
366/*------------------------------------------------------------------------
367 * SEVEN SEGMENT LED DISPLAY
368 *----------------------------------------------------------------------*/
wdenkec4c5442004-02-09 23:12:24 +0000369#if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_SEVENSEG_PIO)
wdenkc935d3b2004-01-03 19:43:48 +0000370
371#if (CFG_NIOS_CPU_SEVENSEG_PIO == 0)
372
wdenkec4c5442004-02-09 23:12:24 +0000373#error *** CFG_ERROR: seven segment display at PIO0 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000374
375#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 1)
376
wdenkec4c5442004-02-09 23:12:24 +0000377#error *** CFG_ERROR: seven segment display at PIO1 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000378
379#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 2)
380
wdenkec4c5442004-02-09 23:12:24 +0000381#error *** CFG_ERROR: seven segment display at PIO2 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000382
383#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 3)
384
385#define SEVENSEG_BASE CFG_NIOS_CPU_PIO3
386#define SEVENSEG_BITS CFG_NIOS_CPU_PIO3_BITS
387#define SEVENSEG_ACTIVE 0 /* LED on for bit == 1 */
388
389#if (CFG_NIOS_CPU_PIO3_TYPE == 1)
390#define SEVENSEG_WRONLY 1
391#else
392#undef SEVENSEG_WRONLY
393#endif
394
395#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 4)
396
wdenkec4c5442004-02-09 23:12:24 +0000397#error *** CFG_ERROR: seven segment display at PIO4 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000398
399#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 5)
400
wdenkec4c5442004-02-09 23:12:24 +0000401#error *** CFG_ERROR: seven segment display at PIO5 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000402
403#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 6)
404
wdenkec4c5442004-02-09 23:12:24 +0000405#error *** CFG_ERROR: seven segment display at PIO6 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000406
407#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 7)
408
wdenkec4c5442004-02-09 23:12:24 +0000409#error *** CFG_ERROR: seven segment display at PIO7 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000410
411#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 8)
412
wdenkec4c5442004-02-09 23:12:24 +0000413#error *** CFG_ERROR: seven segment display at PIO8 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000414
415#elif (CFG_NIOS_CPU_SEVENSEG_PIO == 9)
416
wdenkec4c5442004-02-09 23:12:24 +0000417#error *** CFG_ERROR: seven segment display at PIO9 not supported, expand your config.h
wdenkc935d3b2004-01-03 19:43:48 +0000418
419#else
420#error *** CFG_ERROR: you have to set CFG_NIOS_CPU_SEVENSEG_PIO in right case
421#endif
422
423#define CONFIG_SEVENSEG 1 /* enable seven segment led driver */
424
425/*
426 * Dual 7-Segment Display pin assignment -- read more in your
427 * "Nios Development Board Reference Manual"
428 *
429 *
430 * (U8) HI:D[15..8] (U9) LO:D[7..0]
431 * ______ ______
432 * | D14 | | D6 |
433 * | | | |
434 * D9| |D13 D1| |D5
435 * |______| |______| ___
436 * | D8 | | D0 | | A |
437 * | | | | F|___|B
438 * D10| |D12 D2| |D4 | G |
439 * |______| |______| E|___|C
440 * D11 * D3 * D *
441 * D15 D7 DP
442 *
443 */
444#define SEVENSEG_DIGIT_HI_LO_EQUAL 1 /* high nibble equal low nibble */
445#define SEVENSEG_DIGIT_A (1 << 6) /* bit 6 is segment A */
446#define SEVENSEG_DIGIT_B (1 << 5) /* bit 5 is segment B */
447#define SEVENSEG_DIGIT_C (1 << 4) /* bit 4 is segment C */
448#define SEVENSEG_DIGIT_D (1 << 3) /* bit 3 is segment D */
449#define SEVENSEG_DIGIT_E (1 << 2) /* bit 2 is segment E */
450#define SEVENSEG_DIGIT_F (1 << 1) /* bit 1 is segment F */
451#define SEVENSEG_DIGIT_G (1 << 0) /* bit 0 is segment G */
452#define SEVENSEG_DIGIT_DP (1 << 7) /* bit 7 is decimal point */
453
454#endif /* CFG_NIOS_CPU_PIO_NUMS */
455
456/*------------------------------------------------------------------------
457 * COMMANDS
458 *----------------------------------------------------------------------*/
459#define CONFIG_COMMANDS (CFG_CMD_ALL & ~( \
460 CFG_CMD_ASKENV | \
461 CFG_CMD_BEDBUG | \
462 CFG_CMD_BMP | \
463 CFG_CMD_BSP | \
464 CFG_CMD_CACHE | \
465 CFG_CMD_DATE | \
466 CFG_CMD_DOC | \
467 CFG_CMD_DTT | \
468 CFG_CMD_EEPROM | \
469 CFG_CMD_ELF | \
470 CFG_CMD_FAT | \
471 CFG_CMD_FDC | \
472 CFG_CMD_FDOS | \
473 CFG_CMD_HWFLOW | \
474 CFG_CMD_IDE | \
475 CFG_CMD_I2C | \
476 CFG_CMD_JFFS2 | \
477 CFG_CMD_KGDB | \
478 CFG_CMD_NAND | \
479 CFG_CMD_MMC | \
480 CFG_CMD_MII | \
481 CFG_CMD_PCI | \
482 CFG_CMD_PCMCIA | \
483 CFG_CMD_SCSI | \
484 CFG_CMD_SPI | \
485 CFG_CMD_VFD | \
486 CFG_CMD_USB ) )
487
488
489#include <cmd_confdefs.h>
490
491/*------------------------------------------------------------------------
492 * KGDB
493 *----------------------------------------------------------------------*/
494#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
495#define CONFIG_KGDB_BAUDRATE 9600
496#endif
497
498/*------------------------------------------------------------------------
499 * MISC
500 *----------------------------------------------------------------------*/
501#define CFG_LONGHELP /* undef to save memory */
502#define CFG_PROMPT "DK1S10 > " /* Monitor Command Prompt */
503#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
504#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
505#define CFG_MAXARGS 16 /* max number of command args*/
506#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
507
wdenkec4c5442004-02-09 23:12:24 +0000508/* Default load address */
wdenkc935d3b2004-01-03 19:43:48 +0000509#if (CFG_SRAM_SIZE != 0)
wdenkec4c5442004-02-09 23:12:24 +0000510
511/* default in SRAM */
512#define CFG_LOAD_ADDR CFG_SRAM_BASE
513
514#elif (CFG_SDRAM_SIZE != 0)
515
516/* default in SDRAM */
517#if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
518#define CFG_LOAD_ADDR (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
wdenkc935d3b2004-01-03 19:43:48 +0000519#else
wdenkec4c5442004-02-09 23:12:24 +0000520#define CFG_LOAD_ADDR CFG_SDRAM_BASE
wdenkc935d3b2004-01-03 19:43:48 +0000521#endif
522
wdenkc935d3b2004-01-03 19:43:48 +0000523#else
wdenkec4c5442004-02-09 23:12:24 +0000524#undef CFG_LOAD_ADDR /* force error break */
525#endif
526
527
528/* MEM test area */
529#if (CFG_SDRAM_SIZE != 0)
530
531/* SDRAM begin to stack area (1MB stack) */
532#if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
533#define CFG_MEMTEST_START (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
534#define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
535#else
536#define CFG_MEMTEST_START CFG_SDRAM_BASE
537#define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
538#endif
539
540#else
541#undef CFG_MEMTEST_START /* force error break */
wdenkc935d3b2004-01-03 19:43:48 +0000542#undef CFG_MEMTEST_END
543#endif
544
545
546#endif /* __CONFIG_H */