2 * (C) Copyright 2004, Li-Pro.Net <www.li-pro.net>
3 * Stephan Linz <linz@li-pro.net>
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
27 /***********************************************************************
28 * Include the whole NIOS CPU configuration.
30 * !!! HAVE TO BE HERE !!! DON'T MOVE THIS PART !!!
32 ***********************************************************************/
34 #if defined(CONFIG_NIOS_BASE_32)
35 #include <configs/ADNPESC1_base_32.h>
37 #error *** CONFIG_SYS_ERROR: you have to setup right NIOS CPU configuration
40 /*------------------------------------------------------------------------
41 * BOARD/CPU -- TOP-LEVEL
42 *----------------------------------------------------------------------*/
43 #define CONFIG_NIOS 1 /* NIOS-32 core */
44 #define CONFIG_ADNPESC1 1 /* SSV ADNP/ESC1 board */
45 #define CONFIG_SYS_CLK_FREQ CONFIG_SYS_NIOS_CPU_CLK/* 50 MHz core clock */
46 #define CONFIG_SYS_HZ 1000 /* 1 msec time tick */
47 #define CONFIG_BOARD_EARLY_INIT_F 1 /* enable early board-spec. init*/
49 /*------------------------------------------------------------------------
50 * BASE ADDRESSES / SIZE (Flash, SRAM, SDRAM)
51 *----------------------------------------------------------------------*/
52 #if (CONFIG_SYS_NIOS_CPU_SDRAM_SIZE != 0)
54 #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_NIOS_CPU_SDRAM_BASE
55 #define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_NIOS_CPU_SDRAM_SIZE
58 #error *** CONFIG_SYS_ERROR: you have to setup any SDRAM in NIOS CPU config
61 #if defined(CONFIG_SYS_NIOS_CPU_SRAM_BASE) && defined(CONFIG_SYS_NIOS_CPU_SRAM_SIZE)
63 #define CONFIG_SYS_SRAM_BASE CONFIG_SYS_NIOS_CPU_SRAM_BASE
64 #define CONFIG_SYS_SRAM_SIZE CONFIG_SYS_NIOS_CPU_SRAM_SIZE
68 #undef CONFIG_SYS_SRAM_BASE
69 #undef CONFIG_SYS_SRAM_SIZE
73 #define CONFIG_SYS_VECT_BASE CONFIG_SYS_NIOS_CPU_VEC_BASE
75 /*------------------------------------------------------------------------
76 * MEMORY ORGANIZATION - For the most part, you can put things pretty
77 * much anywhere. This is pretty flexible for Nios. So here we make some
78 * arbitrary choices & assume that the monitor is placed at the end of
79 * a memory resource (so you must make sure TEXT_BASE is chosen
80 * appropriately -- this is very important if you plan to move your
81 * memory to another place as configured at this time !!!).
83 * -The heap is placed below the monitor.
84 * -Global data is placed below the heap.
85 * -The stack is placed below global data (&grows down).
86 *----------------------------------------------------------------------*/
87 #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256k */
88 #define CONFIG_SYS_GBL_DATA_SIZE 128 /* Global data size rsvd*/
89 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024)
91 #define CONFIG_SYS_MONITOR_BASE TEXT_BASE
92 #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - CONFIG_SYS_MALLOC_LEN)
93 #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_MALLOC_BASE - CONFIG_SYS_GBL_DATA_SIZE)
94 #define CONFIG_SYS_INIT_SP CONFIG_SYS_GBL_DATA_OFFSET
96 /*------------------------------------------------------------------------
98 *----------------------------------------------------------------------*/
99 #if (CONFIG_SYS_NIOS_CPU_FLASH_SIZE != 0)
101 #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_NIOS_CPU_FLASH_BASE
102 #define CONFIG_SYS_FLASH_SIZE CONFIG_SYS_NIOS_CPU_FLASH_SIZE
103 #define CONFIG_SYS_MAX_FLASH_SECT 128 /* Max # sects per bank */
104 #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max # of flash banks */
105 #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Erase timeout (msec) */
106 #define CONFIG_SYS_FLASH_WRITE_TOUT 100 /* Write timeout (msec) */
107 #define CONFIG_SYS_FLASH_WORD_SIZE unsigned short /* flash word size */
110 #error *** CONFIG_SYS_ERROR: you have to setup any Flash memory in NIOS CPU config
113 /*------------------------------------------------------------------------
115 *----------------------------------------------------------------------*/
116 #if (CONFIG_SYS_NIOS_CPU_FLASH_SIZE != 0)
118 #define CONFIG_ENV_IS_IN_FLASH 1 /* Environment in flash */
120 /* Mem addr of environment */
121 #if defined(CONFIG_NIOS_BASE_32)
122 #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
124 #error *** CONFIG_SYS_ERROR: you have to setup the environment base address CONFIG_ENV_ADDR
127 #define CONFIG_ENV_SIZE (64 * 1024) /* 64 KByte (1 sector) */
128 #define CONFIG_ENV_OVERWRITE /* Serial/eth change Ok */
131 #define CONFIG_ENV_IS_NOWHERE 1 /* NO Environment */
134 /*------------------------------------------------------------------------
135 * NIOS APPLICATION CODE BASE AREA
136 *----------------------------------------------------------------------*/
137 #if ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) == 0x1050000)
138 #define CONFIG_SYS_ADNPESC1_UPDATE_LOAD_ADDR "0x2000100"
139 #define CONFIG_SYS_ADNPESC1_NIOS_APPL_ENTRY "0x1050000"
140 #define CONFIG_SYS_ADNPESC1_NIOS_APPL_IDENT "0x105000c"
141 #define CONFIG_SYS_ADNPESC1_NIOS_APPL_END "0x11fffff"
142 #define CONFIG_SYS_ADNPESC1_FILESYSTEM_BASE "0x1200000"
143 #define CONFIG_SYS_ADNPESC1_FILESYSTEM_END "0x17fffff"
145 #error *** CONFIG_SYS_ERROR: missing right appl.code base configuration, expand your config.h
147 #define CONFIG_SYS_ADNPESC1_NIOS_IDENTIFIER "Nios"
149 /*------------------------------------------------------------------------
151 *----------------------------------------------------------------------*/
152 #ifdef CONFIG_DNPEVA2 /* DNP/EVA2 base board */
153 #define CONFIG_SYS_ADNPESC1_SLED_BOOT_OFF "sled boot off; "
154 #define CONFIG_SYS_ADNPESC1_SLED_RED_BLINK "sled red blink; "
156 #define CONFIG_SYS_ADNPESC1_SLED_BOOT_OFF
157 #define CONFIG_SYS_ADNPESC1_SLED_RED_BLINK
160 #define CONFIG_BOOTDELAY 5
161 #define CONFIG_BOOTCOMMAND \
162 "if itest.s *$appl_ident_addr == \"$appl_ident_str\"; " \
165 CONFIG_SYS_ADNPESC1_SLED_BOOT_OFF \
166 "go $appl_entry_addr; " \
168 CONFIG_SYS_ADNPESC1_SLED_RED_BLINK \
169 "echo *** missing \"$appl_ident_str\" at $appl_ident_addr; "\
170 "echo *** invalid application at $appl_entry_addr; " \
171 "echo *** stop bootup...; " \
174 /*------------------------------------------------------------------------
176 *----------------------------------------------------------------------*/
177 #ifdef CONFIG_DNPEVA2 /* DNP/EVA2 base board */
178 #define CONFIG_SYS_ADNPESC1_SLED_YELLO_ON "sled yellow on; "
179 #define CONFIG_SYS_ADNPESC1_SLED_YELLO_OFF "sled yellow off; "
181 #define CONFIG_SYS_ADNPESC1_SLED_YELLO_ON
182 #define CONFIG_SYS_ADNPESC1_SLED_YELLO_OFF
185 #define CONFIG_EXTRA_ENV_SETTINGS \
186 "update_allowed=0\0" \
187 "update_load_addr=" CONFIG_SYS_ADNPESC1_UPDATE_LOAD_ADDR "\0" \
188 "appl_entry_addr=" CONFIG_SYS_ADNPESC1_NIOS_APPL_ENTRY "\0" \
189 "appl_end_addr=" CONFIG_SYS_ADNPESC1_NIOS_APPL_END "\0" \
190 "appl_ident_addr=" CONFIG_SYS_ADNPESC1_NIOS_APPL_IDENT "\0" \
191 "appl_ident_str=" CONFIG_SYS_ADNPESC1_NIOS_IDENTIFIER "\0" \
192 "appl_name=ADNPESC1/base32/linux.bin\0" \
194 "if itest.b $update_allowed != 0; " \
196 CONFIG_SYS_ADNPESC1_SLED_YELLO_ON \
197 "tftp $update_load_addr $appl_name; " \
198 "protect off $appl_entry_addr $appl_end_addr; " \
199 "era $appl_entry_addr $appl_end_addr; " \
200 "cp.b $update_load_addr $appl_entry_addr $filesize; "\
201 CONFIG_SYS_ADNPESC1_SLED_YELLO_OFF \
203 "echo *** update not allowed (update_allowed=$update_allowed); "\
205 "fs_base_addr=" CONFIG_SYS_ADNPESC1_FILESYSTEM_BASE "\0" \
206 "fs_end_addr=" CONFIG_SYS_ADNPESC1_FILESYSTEM_END "\0" \
207 "fs_name=ADNPESC1/base32/romfs.img\0" \
209 "if itest.b $update_allowed != 0; " \
211 CONFIG_SYS_ADNPESC1_SLED_YELLO_ON \
212 "tftp $update_load_addr $fs_name; " \
213 "protect off $fs_base_addr $fs_end_addr; " \
214 "era $fs_base_addr $fs_end_addr; " \
215 "cp.b $update_load_addr $fs_base_addr $filesize; "\
216 CONFIG_SYS_ADNPESC1_SLED_YELLO_OFF \
218 "echo *** update not allowed (update_allowed=$update_allowed); "\
220 "uboot_name=ADNPESC1/base32/u-boot.bin\0" \
222 "if ping $serverip; " \
224 CONFIG_SYS_ADNPESC1_SLED_YELLO_ON \
225 "tftp $update_load_addr $uboot_name; " \
227 "go $update_load_addr; " \
229 "echo *** missing connection to $serverip; " \
230 "echo *** check your network and try again...; "\
233 /*------------------------------------------------------------------------
235 *----------------------------------------------------------------------*/
236 #if (CONFIG_SYS_NIOS_CPU_UART_NUMS != 0)
238 #define CONFIG_SYS_NIOS_CONSOLE CONFIG_SYS_NIOS_CPU_UART0 /* 1st UART is Cons. */
240 #if (CONFIG_SYS_NIOS_CPU_UART0_BR != 0)
241 #define CONFIG_SYS_NIOS_FIXEDBAUD 1 /* Baudrate is fixed */
242 #define CONFIG_BAUDRATE CONFIG_SYS_NIOS_CPU_UART0_BR
244 #undef CONFIG_SYS_NIOS_FIXEDBAUD
245 #define CONFIG_BAUDRATE 115200
248 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
251 #error *** CONFIG_SYS_ERROR: you have to setup at least one UART in NIOS CPU config
254 /*------------------------------------------------------------------------
255 * TIMER FOR TIMEBASE -- Nios doesn't have the equivalent of ppc PIT,
256 * so an avalon bus timer is required.
257 *----------------------------------------------------------------------*/
258 #if (CONFIG_SYS_NIOS_CPU_TIMER_NUMS != 0) && defined(CONFIG_SYS_NIOS_CPU_TICK_TIMER)
260 #if (CONFIG_SYS_NIOS_CPU_TICK_TIMER == 0)
262 #define CONFIG_SYS_NIOS_TMRBASE CONFIG_SYS_NIOS_CPU_TIMER0 /* TIMER0 as tick */
263 #define CONFIG_SYS_NIOS_TMRIRQ CONFIG_SYS_NIOS_CPU_TIMER0_IRQ
265 #if (CONFIG_SYS_NIOS_CPU_TIMER0_FP == 1) /* fixed period */
267 #if (CONFIG_SYS_NIOS_CPU_TIMER0_PER >= CONFIG_SYS_HZ)
268 #define CONFIG_SYS_NIOS_TMRMS (CONFIG_SYS_NIOS_CPU_TIMER0_PER / CONFIG_SYS_HZ)
270 #error *** CONFIG_SYS_ERROR: you have to use a timer periode greater than CONFIG_SYS_HZ
273 #undef CONFIG_SYS_NIOS_TMRCNT /* no preloadable counter value */
275 #elif (CONFIG_SYS_NIOS_CPU_TIMER0_FP == 0) /* variable period */
277 #if (CONFIG_SYS_HZ <= 1000)
278 #define CONFIG_SYS_NIOS_TMRMS (1000 / CONFIG_SYS_HZ)
280 #error *** CONFIG_SYS_ERROR: sorry, CONFIG_SYS_HZ have to be less than 1000
283 #define CONFIG_SYS_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ)
286 #error *** CONFIG_SYS_ERROR: you have to define CONFIG_SYS_NIOS_CPU_TIMER0_FP correct
289 #elif (CONFIG_SYS_NIOS_CPU_TICK_TIMER == 1)
291 #define CONFIG_SYS_NIOS_TMRBASE CONFIG_SYS_NIOS_CPU_TIMER1 /* TIMER1 as tick */
292 #define CONFIG_SYS_NIOS_TMRIRQ CONFIG_SYS_NIOS_CPU_TIMER1_IRQ
294 #if (CONFIG_SYS_NIOS_CPU_TIMER1_FP == 1) /* fixed period */
296 #if (CONFIG_SYS_NIOS_CPU_TIMER1_PER >= CONFIG_SYS_HZ)
297 #define CONFIG_SYS_NIOS_TMRMS (CONFIG_SYS_NIOS_CPU_TIMER1_PER / CONFIG_SYS_HZ)
299 #error *** CONFIG_SYS_ERROR: you have to use a timer periode greater than CONFIG_SYS_HZ
302 #undef CONFIG_SYS_NIOS_TMRCNT /* no preloadable counter value */
304 #elif (CONFIG_SYS_NIOS_CPU_TIMER1_FP == 0) /* variable period */
306 #if (CONFIG_SYS_HZ <= 1000)
307 #define CONFIG_SYS_NIOS_TMRMS (1000 / CONFIG_SYS_HZ)
309 #error *** CONFIG_SYS_ERROR: sorry, CONFIG_SYS_HZ have to be less than 1000
312 #define CONFIG_SYS_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ)
315 #error *** CONFIG_SYS_ERROR: you have to define CONFIG_SYS_NIOS_CPU_TIMER1_FP correct
318 #endif /* CONFIG_SYS_NIOS_CPU_TICK_TIMER */
321 #error *** CONFIG_SYS_ERROR: you have to setup at least one TIMER in NIOS CPU config
324 /*------------------------------------------------------------------------
325 * WATCHDOG (or better MAX823 supervisory circuite access)
326 *----------------------------------------------------------------------*/
327 #define CONFIG_HW_WATCHDOG 1 /* board specific WD */
329 #ifdef CONFIG_HW_WATCHDOG
331 /* MAX823 supervisor -- watchdog enable port at: */
332 #if (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 0)
333 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO0 /* PIO0 */
334 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 1)
335 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO1 /* PIO1 */
336 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 2)
337 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO2 /* PIO2 */
338 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 3)
339 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO3 /* PIO3 */
340 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 4)
341 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO4 /* PIO4 */
342 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 5)
343 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO5 /* PIO5 */
344 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 6)
345 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO6 /* PIO6 */
346 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 7)
347 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO7 /* PIO7 */
348 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 8)
349 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO8 /* PIO8 */
350 #elif (CONFIG_SYS_NIOS_CPU_WDENA_PIO == 9)
351 #define CONFIG_HW_WDENA_BASE CONFIG_SYS_NIOS_CPU_PIO9 /* PIO9 */
353 #error *** CONFIG_SYS_ERROR: you have to setup at least one WDENA_PIO in NIOS CPU config
356 /* MAX823 supervisor -- watchdog trigger port at: */
357 #if (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 0)
358 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO0 /* PIO0 */
359 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 1)
360 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO1 /* PIO1 */
361 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 2)
362 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO2 /* PIO2 */
363 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 3)
364 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO3 /* PIO3 */
365 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 4)
366 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO4 /* PIO4 */
367 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 5)
368 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO5 /* PIO5 */
369 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 6)
370 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO6 /* PIO6 */
371 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 7)
372 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO7 /* PIO7 */
373 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 8)
374 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO8 /* PIO8 */
375 #elif (CONFIG_SYS_NIOS_CPU_WDTOG_PIO == 9)
376 #define CONFIG_HW_WDTOG_BASE CONFIG_SYS_NIOS_CPU_PIO9 /* PIO9 */
378 #error *** CONFIG_SYS_ERROR: you have to setup at least one WDTOG_PIO in NIOS CPU config
381 #if defined(CONFIG_NIOS_BASE_32) /* NIOS CPU specifics */
382 #define CONFIG_HW_WDENA_BIT 0 /* WD enable @ Bit 0 */
383 #define CONFIG_HW_WDTOG_BIT 0 /* WD trigger @ Bit 0 */
384 #define CONFIG_HW_WDPORT_WRONLY 1 /* each WD port wr/only*/
386 #error *** CONFIG_SYS_ERROR: missing watchdog bit configuration, expand your config.h
389 #endif /* CONFIG_HW_WATCHDOG */
391 /*------------------------------------------------------------------------
392 * SERIAL PERIPHAREL INTERFACE
393 *----------------------------------------------------------------------*/
394 #if (CONFIG_SYS_NIOS_CPU_SPI_NUMS == 1)
396 #define CONFIG_NIOS_SPI 1 /* SPI support active */
397 #define CONFIG_SYS_NIOS_SPIBASE CONFIG_SYS_NIOS_CPU_SPI0
398 #define CONFIG_SYS_NIOS_SPIBITS CONFIG_SYS_NIOS_CPU_SPI0_BITS
400 #define CONFIG_RTC_DS1306 1 /* Dallas 1306 real time clock */
401 #define CONFIG_SYS_SPI_RTC_DEVID 0 /* as 1st SPI device */
404 #undef CONFIG_NIOS_SPI /* NO SPI support */
407 /*------------------------------------------------------------------------
408 * Ethernet -- needs work!
409 *----------------------------------------------------------------------*/
410 #if (CONFIG_SYS_NIOS_CPU_LAN_NUMS == 1)
412 #if (CONFIG_SYS_NIOS_CPU_LAN0_TYPE == 0) /* LAN91C111 */
414 #define CONFIG_DRIVER_SMC91111 /* Using SMC91c111 */
415 #undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */
416 #define CONFIG_SMC91111_BASE (CONFIG_SYS_NIOS_CPU_LAN0_BASE + CONFIG_SYS_NIOS_CPU_LAN0_OFFS)
418 #if (CONFIG_SYS_NIOS_CPU_LAN0_BUSW == 32)
419 #define CONFIG_SMC_USE_32_BIT 1
421 #undef CONFIG_SMC_USE_32_BIT
424 #elif (CONFIG_SYS_NIOS_CPU_LAN0_TYPE == 1) /* CS8900A */
426 /********************************************/
427 /* !!! CS8900 is __not__ tested on NIOS !!! */
428 /********************************************/
429 #define CONFIG_DRIVER_CS8900 /* Using CS8900 */
430 #define CS8900_BASE (CONFIG_SYS_NIOS_CPU_LAN0_BASE + CONFIG_SYS_NIOS_CPU_LAN0_OFFS)
432 #if (CONFIG_SYS_NIOS_CPU_LAN0_BUSW == 32)
434 #define CS8900_BUS32 1
436 #define CS8900_BUS16 1
441 #error *** CONFIG_SYS_ERROR: invalid LAN0 chip type, check your NIOS CPU config
444 #define CONFIG_ETHADDR 02:80:ae:20:60:6f
445 #define CONFIG_NETMASK 255.255.255.248
446 #define CONFIG_IPADDR 192.168.161.84
447 #define CONFIG_SERVERIP 192.168.161.85
450 #error *** CONFIG_SYS_ERROR: you have to setup just one LAN only or expand your config.h
453 /*------------------------------------------------------------------------
455 *----------------------------------------------------------------------*/
456 #if (CONFIG_SYS_NIOS_CPU_PIO_NUMS != 0) && defined(CONFIG_SYS_NIOS_CPU_LED_PIO)
458 #if (CONFIG_SYS_NIOS_CPU_LED_PIO == 0)
460 #define STATUS_LED_BASE CONFIG_SYS_NIOS_CPU_PIO0
461 #define STATUS_LED_BITS CONFIG_SYS_NIOS_CPU_PIO0_BITS
462 #define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
464 #if (CONFIG_SYS_NIOS_CPU_PIO0_TYPE == 1)
465 #define STATUS_LED_WRONLY 1
467 #undef STATUS_LED_WRONLY
470 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 1)
472 #define STATUS_LED_BASE CONFIG_SYS_NIOS_CPU_PIO1
473 #define STATUS_LED_BITS CONFIG_SYS_NIOS_CPU_PIO1_BITS
474 #define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
476 #if (CONFIG_SYS_NIOS_CPU_PIO1_TYPE == 1)
477 #define STATUS_LED_WRONLY 1
479 #undef STATUS_LED_WRONLY
482 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 2)
484 #define STATUS_LED_BASE CONFIG_SYS_NIOS_CPU_PIO2
485 #define STATUS_LED_BITS CONFIG_SYS_NIOS_CPU_PIO2_BITS
486 #define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
488 #if (CONFIG_SYS_NIOS_CPU_PIO2_TYPE == 1)
489 #define STATUS_LED_WRONLY 1
491 #undef STATUS_LED_WRONLY
494 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 3)
496 #error *** CONFIG_SYS_ERROR: status LEDs at PIO3 not supported, expand your config.h
498 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 4)
500 #error *** CONFIG_SYS_ERROR: status LEDs at PIO4 not supported, expand your config.h
502 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 5)
504 #error *** CONFIG_SYS_ERROR: status LEDs at PIO5 not supported, expand your config.h
506 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 6)
508 #error *** CONFIG_SYS_ERROR: status LEDs at PIO6 not supported, expand your config.h
510 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 7)
512 #error *** CONFIG_SYS_ERROR: status LEDs at PIO7 not supported, expand your config.h
514 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 8)
516 #error *** CONFIG_SYS_ERROR: status LEDs at PIO8 not supported, expand your config.h
518 #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 9)
520 #error *** CONFIG_SYS_ERROR: status LEDs at PIO9 not supported, expand your config.h
523 #error *** CONFIG_SYS_ERROR: you have to set CONFIG_SYS_NIOS_CPU_LED_PIO in right case
526 #define CONFIG_STATUS_LED 1 /* enable status led driver */
528 #define STATUS_LED_BIT (1 << 0) /* LED[0] */
529 #define STATUS_LED_STATE STATUS_LED_BLINKING
530 #define STATUS_LED_BOOT_STATE STATUS_LED_OFF
531 #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2) /* ca. 1 Hz */
532 #define STATUS_LED_BOOT 0 /* boot LED */
534 #if (STATUS_LED_BITS > 1)
535 #define STATUS_LED_BIT1 (1 << 1) /* LED[1] */
536 #define STATUS_LED_STATE1 STATUS_LED_OFF
537 #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 10) /* ca. 5 Hz */
538 #define STATUS_LED_RED 1 /* fail LED */
541 #if (STATUS_LED_BITS > 2)
542 #define STATUS_LED_BIT2 (1 << 2) /* LED[2] */
543 #define STATUS_LED_STATE2 STATUS_LED_OFF
544 #define STATUS_LED_PERIOD2 (CONFIG_SYS_HZ / 2) /* ca. 1 Hz */
545 #define STATUS_LED_YELLOW 2 /* info LED */
548 #if (STATUS_LED_BITS > 3)
549 #define STATUS_LED_BIT3 (1 << 3) /* LED[3] */
550 #define STATUS_LED_STATE3 STATUS_LED_OFF
551 #define STATUS_LED_PERIOD3 (CONFIG_SYS_HZ / 2) /* ca. 1 Hz */
552 #define STATUS_LED_GREEN 3 /* info LED */
555 #define STATUS_LED_PAR 1 /* makes status_led.h happy */
557 #endif /* CONFIG_SYS_NIOS_CPU_PIO_NUMS */
559 /*------------------------------------------------------------------------
560 * Diagnostics / Power On Self Tests
561 *----------------------------------------------------------------------*/
562 #define CONFIG_POST CONFIG_SYS_POST_RTC
563 #define CONFIG_SYS_NIOS_POST_WORD_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
568 #define CONFIG_BOOTP_BOOTFILESIZE
569 #define CONFIG_BOOTP_BOOTPATH
570 #define CONFIG_BOOTP_GATEWAY
571 #define CONFIG_BOOTP_HOSTNAME
574 * Command line configuration.
576 #include <config_cmd_default.h>
578 #define CONFIG_CMD_BSP
579 #define CONFIG_CMD_CDP
580 #define CONFIG_CMD_DHCP
581 #define CONFIG_CMD_DIAG
582 #define CONFIG_CMD_DISPLAY
583 #define CONFIG_CMD_EXT2
584 #define CONFIG_CMD_IMMAP
585 #define CONFIG_CMD_IRQ
586 #define CONFIG_CMD_PING
587 #define CONFIG_CMD_PORTIO
588 #define CONFIG_CMD_REGINFO
589 #define CONFIG_CMD_REISER
590 #define CONFIG_CMD_SAVES
591 #define CONFIG_CMD_SDRAM
592 #define CONFIG_CMD_SNTP
594 #undef CONFIG_CMD_NFS
595 #undef CONFIG_CMD_XIMG
597 #if (CONFIG_SYS_NIOS_CPU_SPI_NUMS == 1)
598 #define CONFIG_CMD_DATE
599 #define CONFIG_CMD_SPI
602 /*------------------------------------------------------------------------
604 *----------------------------------------------------------------------*/
605 #if defined(CONFIG_CMD_KGDB)
606 #define CONFIG_KGDB_BAUDRATE 9600
609 /*------------------------------------------------------------------------
611 *----------------------------------------------------------------------*/
612 #define CONFIG_SYS_LONGHELP /* undef to save memory */
613 #define CONFIG_SYS_HUSH_PARSER 1 /* use "hush" command parser
614 undef to save memory */
615 #define CONFIG_SYS_PROMPT "ADNPESC1 > " /* Monitor Command Prompt */
616 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
617 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
618 #define CONFIG_SYS_MAXARGS 64 /* max number of command args*/
619 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
621 #ifdef CONFIG_SYS_HUSH_PARSER
622 #define CONFIG_SYS_PROMPT_HUSH_PS2 "[]> "
625 /* Default load address */
626 #if (CONFIG_SYS_SRAM_SIZE != 0)
628 /* default in SRAM */
629 #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SRAM_BASE
631 #elif (CONFIG_SYS_SDRAM_SIZE != 0)
633 /* default in SDRAM */
634 #if (CONFIG_SYS_SDRAM_BASE == CONFIG_SYS_NIOS_CPU_VEC_BASE)
636 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_NIOS_CPU_VEC_SIZE)
638 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x400000)
641 #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
645 #undef CONFIG_SYS_LOAD_ADDR /* force error break */
649 #if (CONFIG_SYS_SDRAM_SIZE != 0)
651 /* SDRAM begin to stack area (1MB stack) */
652 #if (CONFIG_SYS_SDRAM_BASE == CONFIG_SYS_NIOS_CPU_VEC_BASE)
654 #define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_NIOS_CPU_VEC_SIZE)
656 #define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE + 0x400000)
659 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
662 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - (1024 * 1024))
663 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - (1024 * 1024))
666 #undef CONFIG_SYS_MEMTEST_START /* force error break */
667 #undef CONFIG_SYS_MEMTEST_END
674 /* No command line, one static partition */
675 #undef CONFIG_CMD_MTDPARTS
676 #define CONFIG_JFFS2_DEV "nor"
677 #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
678 #define CONFIG_JFFS2_PART_OFFSET 0x00000000
680 /* mtdparts command line support */
682 #define CONFIG_CMD_MTDPARTS
683 #define MTDIDS_DEFAULT ""
684 #define MTDPARTS_DEFAULT ""
687 #endif /* __CONFIG_H */