Merge remote branch 'origin/stable' into dev-mini2440-stable
[u-boot-openmoko/mini2440.git] / include / configs / DK1S10.h
blobbd360717a79a34cc550b3f7eb43213bf2023cc07
1 /*
2 * (C) Copyright 2003, 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
6 * project.
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,
21 * MA 02111-1307 USA
24 #ifndef __CONFIG_H
25 #define __CONFIG_H
27 /***********************************************************************
28 * Include the whole NIOS CPU configuration.
30 * !!! HAVE TO BE HERE !!! DON'T MOVE THIS PART !!!
32 ***********************************************************************/
34 #if defined(CONFIG_NIOS_SAFE_32)
35 #include <configs/DK1S10_safe_32.h>
36 #elif defined(CONFIG_NIOS_STANDARD_32)
37 #include <configs/DK1S10_standard_32.h>
38 #elif defined(CONFIG_NIOS_MTX_LDK_20)
39 #include <configs/DK1S10_mtx_ldk_20.h>
40 #else
41 #error *** CFG_ERROR: you have to setup right NIOS CPU configuration
42 #endif
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
52 #define CONFIG_BOARD_EARLY_INIT_F 1 /* enable early board-spec. init*/
54 /*------------------------------------------------------------------------
55 * BASE ADDRESSES / SIZE (Flash, SRAM, SDRAM)
56 *----------------------------------------------------------------------*/
57 #if (CFG_NIOS_CPU_SDRAM_SIZE != 0)
59 #define CFG_SDRAM_BASE CFG_NIOS_CPU_SDRAM_BASE
60 #define CFG_SDRAM_SIZE CFG_NIOS_CPU_SDRAM_SIZE
62 #else
63 #error *** CFG_ERROR: you have to setup any SDRAM in NIOS CPU config
64 #endif
66 #if defined(CFG_NIOS_CPU_SRAM_BASE) && defined(CFG_NIOS_CPU_SRAM_SIZE)
68 #define CFG_SRAM_BASE CFG_NIOS_CPU_SRAM_BASE
69 #define CFG_SRAM_SIZE CFG_NIOS_CPU_SRAM_SIZE
71 #else
73 #undef CFG_SRAM_BASE
74 #undef CFG_SRAM_SIZE
76 #endif
78 #define CFG_VECT_BASE CFG_NIOS_CPU_VEC_BASE
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).
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)
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
100 /*------------------------------------------------------------------------
101 * FLASH (AM29LV065D)
102 *----------------------------------------------------------------------*/
103 #if (CFG_NIOS_CPU_FLASH_SIZE != 0)
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 */
113 #else
114 #error *** CFG_ERROR: you have to setup any Flash memory in NIOS CPU config
115 #endif
117 /*------------------------------------------------------------------------
118 * ENVIRONMENT
119 *----------------------------------------------------------------------*/
120 #if (CFG_NIOS_CPU_FLASH_SIZE != 0)
122 #define CFG_ENV_IS_IN_FLASH 1 /* Environment in flash */
124 #if defined(CONFIG_NIOS_STANDARD_32)
125 #define CFG_ENV_ADDR CFG_FLASH_BASE /* Mem addr of env */
126 #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
132 #define CFG_ENV_SIZE (64 * 1024) /* 64 KByte (1 sector) */
133 #define CONFIG_ENV_OVERWRITE /* Serial/eth change Ok */
135 #else
136 #define CFG_ENV_IS_NOWHERE 1 /* NO Environment */
137 #endif
139 /*------------------------------------------------------------------------
140 * CONSOLE
141 *----------------------------------------------------------------------*/
142 #if (CFG_NIOS_CPU_UART_NUMS != 0)
144 #define CFG_NIOS_CONSOLE CFG_NIOS_CPU_UART0 /* 1st UART is Cons. */
145 #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
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
155 #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
157 #else
158 #error *** CFG_ERROR: you have to setup at least one UART in NIOS CPU config
159 #endif
161 /*------------------------------------------------------------------------
162 * TIMER FOR TIMEBASE -- Nios doesn't have the equivalent of ppc PIT,
163 * so an avalon bus timer is required.
164 *----------------------------------------------------------------------*/
165 #if (CFG_NIOS_CPU_TIMER_NUMS != 0) && defined(CFG_NIOS_CPU_TICK_TIMER)
167 #if (CFG_NIOS_CPU_TICK_TIMER == 0)
169 #define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER0 /* TIMER0 as tick */
170 #define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER0_IRQ
172 #if (CFG_NIOS_CPU_TIMER0_FP == 1) /* fixed period */
174 #if (CFG_NIOS_CPU_TIMER0_PER >= CFG_HZ)
175 #define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER0_PER / CFG_HZ)
176 #else
177 #error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
178 #endif
180 #undef CFG_NIOS_TMRCNT /* no preloadable counter value */
182 #elif (CFG_NIOS_CPU_TIMER0_FP == 0) /* variable period */
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
190 #define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
192 #else
193 #error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER0_FP correct
194 #endif
196 #elif (CFG_NIOS_CPU_TICK_TIMER == 1)
198 #define CFG_NIOS_TMRBASE CFG_NIOS_CPU_TIMER1 /* TIMER1 as tick */
199 #define CFG_NIOS_TMRIRQ CFG_NIOS_CPU_TIMER1_IRQ
201 #if (CFG_NIOS_CPU_TIMER1_FP == 1) /* fixed period */
203 #if (CFG_NIOS_CPU_TIMER1_PER >= CFG_HZ)
204 #define CFG_NIOS_TMRMS (CFG_NIOS_CPU_TIMER1_PER / CFG_HZ)
205 #else
206 #error *** CFG_ERROR: you have to use a timer periode greater than CFG_HZ
207 #endif
209 #undef CFG_NIOS_TMRCNT /* no preloadable counter value */
211 #elif (CFG_NIOS_CPU_TIMER1_FP == 0) /* variable period */
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
219 #define CFG_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CFG_HZ)
221 #else
222 #error *** CFG_ERROR: you have to define CFG_NIOS_CPU_TIMER1_FP correct
223 #endif
225 #endif /* CFG_NIOS_CPU_TICK_TIMER */
227 #else
228 #error *** CFG_ERROR: you have to setup at least one TIMER in NIOS CPU config
229 #endif
231 /*------------------------------------------------------------------------
232 * Ethernet -- needs work!
233 *----------------------------------------------------------------------*/
234 #if (CFG_NIOS_CPU_LAN_NUMS == 1)
236 #if (CFG_NIOS_CPU_LAN0_TYPE == 0) /* LAN91C111 */
238 #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)
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
248 #elif (CFG_NIOS_CPU_LAN0_TYPE == 1) /* CS8900A */
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)
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
264 #else
265 #error *** CFG_ERROR: invalid LAN0 chip type, check your NIOS CPU config
266 #endif
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
273 #else
274 #error *** CFG_ERROR: you have to setup just one LAN only or expand your config.h
275 #endif
277 /*------------------------------------------------------------------------
278 * STATUS LEDs
279 *----------------------------------------------------------------------*/
280 #if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_LED_PIO)
282 #if (CFG_NIOS_CPU_LED_PIO == 0)
284 #error *** CFG_ERROR: status LEDs at PIO0 not supported, expand your config.h
286 #elif (CFG_NIOS_CPU_LED_PIO == 1)
288 #error *** CFG_ERROR: status LEDs at PIO1 not supported, expand your config.h
290 #elif (CFG_NIOS_CPU_LED_PIO == 2)
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 */
296 #if (CFG_NIOS_CPU_PIO2_TYPE == 1)
297 #define STATUS_LED_WRONLY 1
298 #else
299 #undef STATUS_LED_WRONLY
300 #endif
302 #elif (CFG_NIOS_CPU_LED_PIO == 3)
304 #error *** CFG_ERROR: status LEDs at PIO3 not supported, expand your config.h
306 #elif (CFG_NIOS_CPU_LED_PIO == 4)
308 #error *** CFG_ERROR: status LEDs at PIO4 not supported, expand your config.h
310 #elif (CFG_NIOS_CPU_LED_PIO == 5)
312 #error *** CFG_ERROR: status LEDs at PIO5 not supported, expand your config.h
314 #elif (CFG_NIOS_CPU_LED_PIO == 6)
316 #error *** CFG_ERROR: status LEDs at PIO6 not supported, expand your config.h
318 #elif (CFG_NIOS_CPU_LED_PIO == 7)
320 #error *** CFG_ERROR: status LEDs at PIO7 not supported, expand your config.h
322 #elif (CFG_NIOS_CPU_LED_PIO == 8)
324 #error *** CFG_ERROR: status LEDs at PIO8 not supported, expand your config.h
326 #elif (CFG_NIOS_CPU_LED_PIO == 9)
328 #error *** CFG_ERROR: status LEDs at PIO9 not supported, expand your config.h
330 #else
331 #error *** CFG_ERROR: you have to set CFG_NIOS_CPU_LED_PIO in right case
332 #endif
334 #define CONFIG_STATUS_LED 1 /* enable status led driver */
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 */
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
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
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
363 #define STATUS_LED_PAR 1 /* makes status_led.h happy */
365 #endif /* CFG_NIOS_CPU_PIO_NUMS */
367 /*------------------------------------------------------------------------
368 * SEVEN SEGMENT LED DISPLAY
369 *----------------------------------------------------------------------*/
370 #if (CFG_NIOS_CPU_PIO_NUMS != 0) && defined(CFG_NIOS_CPU_SEVENSEG_PIO)
372 #if (CFG_NIOS_CPU_SEVENSEG_PIO == 0)
374 #error *** CFG_ERROR: seven segment display at PIO0 not supported, expand your config.h
376 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 1)
378 #error *** CFG_ERROR: seven segment display at PIO1 not supported, expand your config.h
380 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 2)
382 #error *** CFG_ERROR: seven segment display at PIO2 not supported, expand your config.h
384 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 3)
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 */
390 #if (CFG_NIOS_CPU_PIO3_TYPE == 1)
391 #define SEVENSEG_WRONLY 1
392 #else
393 #undef SEVENSEG_WRONLY
394 #endif
396 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 4)
398 #error *** CFG_ERROR: seven segment display at PIO4 not supported, expand your config.h
400 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 5)
402 #error *** CFG_ERROR: seven segment display at PIO5 not supported, expand your config.h
404 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 6)
406 #error *** CFG_ERROR: seven segment display at PIO6 not supported, expand your config.h
408 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 7)
410 #error *** CFG_ERROR: seven segment display at PIO7 not supported, expand your config.h
412 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 8)
414 #error *** CFG_ERROR: seven segment display at PIO8 not supported, expand your config.h
416 #elif (CFG_NIOS_CPU_SEVENSEG_PIO == 9)
418 #error *** CFG_ERROR: seven segment display at PIO9 not supported, expand your config.h
420 #else
421 #error *** CFG_ERROR: you have to set CFG_NIOS_CPU_SEVENSEG_PIO in right case
422 #endif
424 #define CONFIG_SEVENSEG 1 /* enable seven segment led driver */
427 * Dual 7-Segment Display pin assignment -- read more in your
428 * "Nios Development Board Reference Manual"
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
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 */
455 #endif /* CFG_NIOS_CPU_PIO_NUMS */
458 * BOOTP options
460 #define CONFIG_BOOTP_BOOTFILESIZE
461 #define CONFIG_BOOTP_BOOTPATH
462 #define CONFIG_BOOTP_GATEWAY
463 #define CONFIG_BOOTP_HOSTNAME
467 * Command line configuration.
469 #include <config_cmd_default.h>
471 #define CONFIG_CMD_CDP
472 #define CONFIG_CMD_DHCP
473 #define CONFIG_CMD_DIAG
474 #define CONFIG_CMD_DISPLAY
475 #define CONFIG_CMD_EXT2
476 #define CONFIG_CMD_IMMAP
477 #define CONFIG_CMD_IRQ
478 #define CONFIG_CMD_PING
479 #define CONFIG_CMD_PORTIO
480 #define CONFIG_CMD_REGINFO
481 #define CONFIG_CMD_REISER
482 #define CONFIG_CMD_SAVES
483 #define CONFIG_CMD_SDRAM
484 #define CONFIG_CMD_SNTP
486 #undef CONFIG_CMD_NFS
487 #undef CONFIG_CMD_XIMG
489 /*------------------------------------------------------------------------
490 * KGDB
491 *----------------------------------------------------------------------*/
492 #if defined(CONFIG_CMD_KGDB)
493 #define CONFIG_KGDB_BAUDRATE 9600
494 #endif
496 /*------------------------------------------------------------------------
497 * MISC
498 *----------------------------------------------------------------------*/
499 #define CFG_LONGHELP /* undef to save memory */
500 #define CFG_PROMPT "DK1S10 > " /* Monitor Command Prompt */
501 #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
502 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
503 #define CFG_MAXARGS 16 /* max number of command args*/
504 #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
506 /* Default load address */
507 #if (CFG_SRAM_SIZE != 0)
509 /* default in SRAM */
510 #define CFG_LOAD_ADDR CFG_SRAM_BASE
512 #elif (CFG_SDRAM_SIZE != 0)
514 /* default in SDRAM */
515 #if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
516 #define CFG_LOAD_ADDR (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
517 #else
518 #define CFG_LOAD_ADDR CFG_SDRAM_BASE
519 #endif
521 #else
522 #undef CFG_LOAD_ADDR /* force error break */
523 #endif
526 /* MEM test area */
527 #if (CFG_SDRAM_SIZE != 0)
529 /* SDRAM begin to stack area (1MB stack) */
530 #if (CFG_SDRAM_BASE == CFG_NIOS_CPU_VEC_BASE)
531 #define CFG_MEMTEST_START (CFG_SDRAM_BASE + CFG_NIOS_CPU_VEC_SIZE)
532 #define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
533 #else
534 #define CFG_MEMTEST_START CFG_SDRAM_BASE
535 #define CFG_MEMTEST_END (CFG_INIT_SP - (1024 * 1024))
536 #endif
538 #else
539 #undef CFG_MEMTEST_START /* force error break */
540 #undef CFG_MEMTEST_END
541 #endif
544 * JFFS2 partitions
547 /* No command line, one static partition, whole device */
548 #undef CONFIG_JFFS2_CMDLINE
549 #define CONFIG_JFFS2_DEV "nor0"
550 #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
551 #define CONFIG_JFFS2_PART_OFFSET 0x00000000
553 /* mtdparts command line support */
555 #define CONFIG_JFFS2_CMDLINE
556 #define MTDIDS_DEFAULT ""
557 #define MTDPARTS_DEFAULT ""
560 #endif /* __CONFIG_H */