]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/cpu9260.h
add new CONFIG_AT91_LEGACY
[karo-tx-uboot.git] / include / configs / cpu9260.h
1 /*
2  * (C) Copyright 2007-2008
3  * Stelian Pop <stelian.pop@leadtechdesign.com>
4  * Lead Tech Design <www.leadtechdesign.com>
5  * Ilko Iliev <www.ronetix.at>
6  *
7  * (C) Copyright 2009
8  * Eric Benard <eric@eukrea.com>
9  *
10  * Configuration settings for the Eukrea CPU9260 board.
11  *
12  * See file CREDITS for list of people who contributed to this
13  * project.
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License as
17  * published by the Free Software Foundation; either version 2 of
18  * the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28  * MA 02111-1307 USA
29  */
30
31 #ifndef __CONFIG_H
32 #define __CONFIG_H
33
34 #define CONFIG_AT91_LEGACY
35
36 #define CONFIG_DISPLAY_CPUINFO  1
37
38 #define AT91_MAIN_CLOCK         18432000
39 #define CONFIG_SYS_HZ           1000
40
41 #define CONFIG_ARM926EJS        1
42
43 #if defined(CONFIG_CPU9260_128M) || defined(CONFIG_CPU9260)
44 #define CONFIG_CPU9260          1
45 #elif defined(CONFIG_CPU9G20_128M) || defined(CONFIG_CPU9G20)
46 #define CONFIG_CPU9G20          1
47 #endif
48
49 #if defined(CONFIG_CPU9G20)
50 #define CONFIG_AT91SAM9G20      1
51 #elif defined(CONFIG_CPU9260)
52 #define CONFIG_AT91SAM9260      1
53 #else
54 #error "Unknown board"
55 #endif
56
57 #define CONFIG_ARCH_CPU_INIT
58 #undef CONFIG_USE_IRQ
59
60 #define CONFIG_CMDLINE_TAG              1
61 #define CONFIG_SETUP_MEMORY_TAGS        1
62 #define CONFIG_INITRD_TAG               1
63
64 /* clocks */
65 #if defined(CONFIG_CPU9G20)
66 #define MASTER_PLL_DIV          0x01
67 #define MASTER_PLL_MUL          0x2B
68 #elif defined(CONFIG_CPU9260)
69 #define MASTER_PLL_DIV          0x09
70 #define MASTER_PLL_MUL          0x61
71 #endif
72
73 /* CKGR_MOR - enable main osc. */
74 #define CONFIG_SYS_MOR_VAL                                              \
75                 (AT91_PMC_MOSCEN |                                      \
76                  (255 << 8))            /* Main Oscillator Start-up Time */
77 #if defined(CONFIG_CPU9G20)
78 #define CONFIG_SYS_PLLAR_VAL                                            \
79                 (AT91_PMC_PLLA_WR_ERRATA | /* Bit 29 must be 1 when prog */ \
80                  ((MASTER_PLL_MUL - 1) << 16) | (MASTER_PLL_DIV))
81 #elif defined(CONFIG_CPU9260)
82 #define CONFIG_SYS_PLLAR_VAL                                            \
83                 (AT91_PMC_PLLA_WR_ERRATA | /* Bit 29 must be 1 when prog */ \
84                  AT91_PMC_OUT |                                         \
85                  ((MASTER_PLL_MUL - 1) << 16) | (MASTER_PLL_DIV))
86 #endif
87
88 #if defined(CONFIG_CPU9G20)
89 #define CONFIG_SYS_MCKR1_VAL            \
90                 (AT91_PMC_CSS_PLLA |    \
91                  AT91_PMC_PRES_1 |      \
92                  AT91SAM9_PMC_MDIV_6 |  \
93                  AT91_PMC_PDIV_2)
94 #define CONFIG_SYS_MCKR2_VAL            \
95                 CONFIG_SYS_MCKR1_VAL
96 #elif defined(CONFIG_CPU9260)
97 #define CONFIG_SYS_MCKR1_VAL            \
98                 (AT91_PMC_CSS_SLOW |    \
99                  AT91_PMC_PRES_1 |      \
100                  AT91SAM9_PMC_MDIV_2 |  \
101                  AT91_PMC_PDIV_1)
102 #define CONFIG_SYS_MCKR2_VAL            \
103                 (AT91_PMC_CSS_PLLA |    \
104                  AT91_PMC_PRES_1 |      \
105                  AT91SAM9_PMC_MDIV_2 |  \
106                  AT91_PMC_PDIV_1)
107 #endif
108
109 /* define PDC[31:16] as DATA[31:16] */
110 #define CONFIG_SYS_PIOC_PDR_VAL1        0xFFFF0000
111 /* no pull-up for D[31:16] */
112 #define CONFIG_SYS_PIOC_PPUDR_VAL       0xFFFF0000
113
114 /* EBI_CSA, 3.3V, no pull-ups for D[15:0], CS1 SDRAM, CS3 NAND Flash */
115 #define CONFIG_SYS_MATRIX_EBICSA_VAL            \
116        (AT91_MATRIX_DBPUC | AT91_MATRIX_CS1A_SDRAMC |\
117        AT91_MATRIX_CS3A_SMC_SMARTMEDIA | AT91_MATRIX_VDDIOMSEL)
118
119 /* SDRAM */
120 /* SDRAMC_MR Mode register */
121 #define CONFIG_SYS_SDRC_MR_VAL1         AT91_SDRAMC_MODE_NORMAL
122 /* SDRAMC_TR - Refresh Timer register */
123 #define CONFIG_SYS_SDRC_TR_VAL1         0x287
124 /* SDRAMC_CR - Configuration register*/
125 #if defined(CONFIG_CPU9G20)
126 #define CONFIG_SYS_SDRC_CR_VAL_64MB                                     \
127                 (AT91_SDRAMC_NC_9 |                                     \
128                  AT91_SDRAMC_NR_13 |                                    \
129                  AT91_SDRAMC_NB_4 |                                     \
130                  AT91_SDRAMC_CAS_2 |                                    \
131                  AT91_SDRAMC_DBW_32 |                                   \
132                  (2 <<  8) |    /* Write Recovery Delay */              \
133                  (9 << 12) |    /* Row Cycle Delay */                   \
134                  (3 << 16) |    /* Row Precharge Delay */               \
135                  (3 << 20) |    /* Row to Column Delay */               \
136                  (6 << 24) |    /* Active to Precharge Delay */         \
137                  (10 << 28))    /* Exit Self Refresh to Active Delay */
138
139 #define CONFIG_SYS_SDRC_CR_VAL_128MB                                    \
140                 (AT91_SDRAMC_NC_10 |                                    \
141                  AT91_SDRAMC_NR_13 |                                    \
142                  AT91_SDRAMC_NB_4 |                                     \
143                  AT91_SDRAMC_CAS_2 |                                    \
144                  AT91_SDRAMC_DBW_32 |                                   \
145                  (2 <<  8) |    /* Write Recovery Delay */              \
146                  (9 << 12) |    /* Row Cycle Delay */                   \
147                  (3 << 16) |    /* Row Precharge Delay */               \
148                  (3 << 20) |    /* Row to Column Delay */               \
149                  (6 << 24) |    /* Active to Precharge Delay */         \
150                  (10 << 28))    /* Exit Self Refresh to Active Delay */
151 #elif defined(CONFIG_CPU9260)
152 #define CONFIG_SYS_SDRC_CR_VAL_64MB                                     \
153                 (AT91_SDRAMC_NC_9 |                                     \
154                  AT91_SDRAMC_NR_13 |                                    \
155                  AT91_SDRAMC_NB_4 |                                     \
156                  AT91_SDRAMC_CAS_2 |                                    \
157                  AT91_SDRAMC_DBW_32 |                                   \
158                  (2 <<  8) |    /* Write Recovery Delay */              \
159                  (7 << 12) |    /* Row Cycle Delay */                   \
160                  (2 << 16) |    /* Row Precharge Delay */               \
161                  (2 << 20) |    /* Row to Column Delay */               \
162                  (5 << 24) |    /* Active to Precharge Delay */         \
163                  (8 << 28))     /* Exit Self Refresh to Active Delay */
164
165 #define CONFIG_SYS_SDRC_CR_VAL_128MB                                    \
166                 (AT91_SDRAMC_NC_10 |                                    \
167                  AT91_SDRAMC_NR_13 |                                    \
168                  AT91_SDRAMC_NB_4 |                                     \
169                  AT91_SDRAMC_CAS_2 |                                    \
170                  AT91_SDRAMC_DBW_32 |                                   \
171                  (2 <<  8) |    /* Write Recovery Delay */              \
172                  (7 << 12) |    /* Row Cycle Delay */                   \
173                  (2 << 16) |    /* Row Precharge Delay */               \
174                  (2 << 20) |    /* Row to Column Delay */               \
175                  (5 << 24) |    /* Active to Precharge Delay */         \
176                  (8 << 28))     /* Exit Self Refresh to Active Delay */
177 #endif
178
179 /* Memory Device Register -> SDRAM */
180 #define CONFIG_SYS_SDRC_MDR_VAL         AT91_SDRAMC_MD_SDRAM
181 #define CONFIG_SYS_SDRC_MR_VAL2         AT91_SDRAMC_MODE_PRECHARGE
182 #define CONFIG_SYS_SDRAM_VAL1           0               /* SDRAM_BASE */
183 #define CONFIG_SYS_SDRC_MR_VAL3         AT91_SDRAMC_MODE_REFRESH
184 #define CONFIG_SYS_SDRAM_VAL2           0               /* SDRAM_BASE */
185 #define CONFIG_SYS_SDRAM_VAL3           0               /* SDRAM_BASE */
186 #define CONFIG_SYS_SDRAM_VAL4           0               /* SDRAM_BASE */
187 #define CONFIG_SYS_SDRAM_VAL5           0               /* SDRAM_BASE */
188 #define CONFIG_SYS_SDRAM_VAL6           0               /* SDRAM_BASE */
189 #define CONFIG_SYS_SDRAM_VAL7           0               /* SDRAM_BASE */
190 #define CONFIG_SYS_SDRAM_VAL8           0               /* SDRAM_BASE */
191 #define CONFIG_SYS_SDRAM_VAL9           0               /* SDRAM_BASE */
192 #define CONFIG_SYS_SDRC_MR_VAL4         AT91_SDRAMC_MODE_LMR
193 #define CONFIG_SYS_SDRAM_VAL10          0               /* SDRAM_BASE */
194 #define CONFIG_SYS_SDRC_MR_VAL5         AT91_SDRAMC_MODE_NORMAL
195 #define CONFIG_SYS_SDRAM_VAL11          0               /* SDRAM_BASE */
196 #define CONFIG_SYS_SDRC_TR_VAL2         1200            /* SDRAM_TR */
197 #define CONFIG_SYS_SDRAM_VAL12          0               /* SDRAM_BASE */
198
199 /* setup SMC0, CS0 (NOR Flash) - 16-bit */
200 #if defined(CONFIG_CPU9G20)
201 #define CONFIG_SYS_SMC0_SETUP0_VAL                                      \
202                 (AT91_SMC_NWESETUP_(0) | AT91_SMC_NCS_WRSETUP_(0) |     \
203                  AT91_SMC_NRDSETUP_(0) | AT91_SMC_NCS_RDSETUP_(0))
204 #define CONFIG_SYS_SMC0_PULSE0_VAL                                      \
205                 (AT91_SMC_NWEPULSE_(8) | AT91_SMC_NCS_WRPULSE_(8) |     \
206                  AT91_SMC_NRDPULSE_(14) | AT91_SMC_NCS_RDPULSE_(14))
207 #define CONFIG_SYS_SMC0_CYCLE0_VAL      \
208                 (AT91_SMC_NWECYCLE_(8) | AT91_SMC_NRDCYCLE_(14))
209 #define CONFIG_SYS_SMC0_MODE0_VAL                               \
210                 (AT91_SMC_READMODE | AT91_SMC_WRITEMODE |       \
211                  AT91_SMC_DBW_16 |                              \
212                  AT91_SMC_TDFMODE |                             \
213                  AT91_SMC_TDF_(3))
214 #elif defined(CONFIG_CPU9260)
215 #define CONFIG_SYS_SMC0_SETUP0_VAL                                      \
216                 (AT91_SMC_NWESETUP_(0) | AT91_SMC_NCS_WRSETUP_(0) |     \
217                  AT91_SMC_NRDSETUP_(0) | AT91_SMC_NCS_RDSETUP_(0))
218 #define CONFIG_SYS_SMC0_PULSE0_VAL                                      \
219                 (AT91_SMC_NWEPULSE_(6) | AT91_SMC_NCS_WRPULSE_(6) |     \
220                  AT91_SMC_NRDPULSE_(10) | AT91_SMC_NCS_RDPULSE_(10))
221 #define CONFIG_SYS_SMC0_CYCLE0_VAL      \
222                 (AT91_SMC_NWECYCLE_(6) | AT91_SMC_NRDCYCLE_(10))
223 #define CONFIG_SYS_SMC0_MODE0_VAL                               \
224                 (AT91_SMC_READMODE | AT91_SMC_WRITEMODE |       \
225                  AT91_SMC_DBW_16 |                              \
226                  AT91_SMC_TDFMODE |                             \
227                  AT91_SMC_TDF_(2))
228 #endif
229
230 /* user reset enable */
231 #define CONFIG_SYS_RSTC_RMR_VAL                 \
232                 (AT91_RSTC_KEY |                \
233                 AT91_RSTC_PROCRST |             \
234                 AT91_RSTC_RSTTYP_WAKEUP |       \
235                 AT91_RSTC_RSTTYP_WATCHDOG)
236
237 /* Disable Watchdog */
238 #define CONFIG_SYS_WDTC_WDMR_VAL                                \
239                 (AT91_WDT_WDIDLEHLT | AT91_WDT_WDDBGHLT |       \
240                  AT91_WDT_WDV |                                 \
241                  AT91_WDT_WDDIS |                               \
242                  AT91_WDT_WDD)
243
244 /*
245  * Hardware drivers
246  */
247 #define CONFIG_ATMEL_USART      1
248 #undef CONFIG_USART0
249 #undef CONFIG_USART1
250 #undef CONFIG_USART2
251 #define CONFIG_USART3           1       /* USART 3 is DBGU */
252
253 #define CONFIG_BOOTDELAY        3
254
255 /*
256  * BOOTP options
257  */
258 #define CONFIG_BOOTP_BOOTFILESIZE       1
259 #define CONFIG_BOOTP_BOOTPATH           1
260 #define CONFIG_BOOTP_GATEWAY            1
261 #define CONFIG_BOOTP_HOSTNAME           1
262
263 /*
264  * Command line configuration.
265  */
266 #include <config_cmd_default.h>
267 #undef CONFIG_CMD_BDI
268 #undef CONFIG_CMD_IMI
269 #undef CONFIG_CMD_FPGA
270 #undef CONFIG_CMD_LOADS
271 #undef CONFIG_CMD_IMLS
272
273 #define CONFIG_CMD_PING         1
274 #define CONFIG_CMD_DHCP         1
275 #define CONFIG_CMD_NAND         1
276 #define CONFIG_CMD_USB          1
277 #define CONFIG_CMD_FAT          1
278
279 /* SDRAM */
280 #define CONFIG_NR_DRAM_BANKS    1
281 #define PHYS_SDRAM              0x20000000
282 #if defined(CONFIG_CPU9260_128M) || defined(CONFIG_CPU9G20_128M)
283 #define PHYS_SDRAM_SIZE         0x08000000      /* 128 MB */
284 #define CONFIG_SYS_SDRC_CR_VAL  CONFIG_SYS_SDRC_CR_VAL_128MB
285 #else
286 #define PHYS_SDRAM_SIZE         0x04000000      /* 64 MB */
287 #define CONFIG_SYS_SDRC_CR_VAL  CONFIG_SYS_SDRC_CR_VAL_64MB
288 #endif
289
290 /* NAND flash */
291 #define CONFIG_NAND_ATMEL                       1
292 #define NAND_MAX_CHIPS                          1
293 #define CONFIG_SYS_MAX_NAND_DEVICE              1
294 #define CONFIG_SYS_NAND_BASE                    0x40000000
295 #define CONFIG_SYS_NAND_DBW_8                   1
296 #define CONFIG_SYS_NAND_READY_PIN               AT91_PIN_PC13
297 #define CONFIG_SYS_NAND_ENABLE_PIN              AT91_PIN_PC14
298 #define CONFIG_SYS_NAND_MASK_ALE                (1 << 21)
299 #define CONFIG_SYS_NAND_MASK_CLE                (1 << 22)
300
301 /* NOR flash */
302 #define CONFIG_SYS_FLASH_CFI                    1
303 #define CONFIG_FLASH_CFI_DRIVER                 1
304 #define PHYS_FLASH_1                            0x10000000
305 #define PHYS_FLASH_2                            0x12000000
306 #define CONFIG_SYS_FLASH_BANKS_LIST             \
307                 { PHYS_FLASH_1, PHYS_FLASH_2 }
308 #define CONFIG_SYS_FLASH_BASE                   PHYS_FLASH_1
309 #define CONFIG_SYS_MAX_FLASH_SECT               (255+4)
310 #define CONFIG_SYS_MAX_FLASH_BANKS              2
311 #define CONFIG_SYS_FLASH_CFI_WIDTH              FLASH_CFI_16BIT
312 #define CONFIG_SYS_FLASH_EMPTY_INFO             1
313 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE       1
314 #define CONFIG_SYS_FLASH_PROTECTION             1
315 #define CONFIG_SYS_MONITOR_BASE                 PHYS_FLASH_1
316
317 /* Ethernet */
318 #define CONFIG_MACB                             1
319 #define CONFIG_RMII                             1
320 #define CONFIG_RESET_PHY_R                      1
321 #define CONFIG_NET_MULTI                        1
322 #define CONFIG_NET_RETRY_COUNT                  20
323 #define CONFIG_MACB_SEARCH_PHY                  1
324
325 /* LEDS */
326 /* Status LED */
327 #define CONFIG_STATUS_LED                       1 /* Status LED enabled */
328 #define CONFIG_BOARD_SPECIFIC_LED               1
329 #define STATUS_LED_RED                          0
330 #define STATUS_LED_GREEN                        1
331 #define STATUS_LED_YELLOW                       2
332 #define STATUS_LED_BLUE                         3
333 /* Red */
334 #define STATUS_LED_BIT                          STATUS_LED_RED
335 #define STATUS_LED_STATE                        STATUS_LED_OFF
336 #define STATUS_LED_PERIOD                       (CONFIG_SYS_HZ / 2)
337 /* Green */
338 #define STATUS_LED_BIT1                         STATUS_LED_GREEN
339 #define STATUS_LED_STATE1                       STATUS_LED_OFF
340 #define STATUS_LED_PERIOD1                      (CONFIG_SYS_HZ / 2)
341 /* Yellow */
342 #define STATUS_LED_BIT2                         STATUS_LED_YELLOW
343 #define STATUS_LED_STATE2                       STATUS_LED_OFF
344 #define STATUS_LED_PERIOD2                      (CONFIG_SYS_HZ / 2)
345 /* Blue */
346 #define STATUS_LED_BIT3                         STATUS_LED_BLUE
347 #define STATUS_LED_STATE3                       STATUS_LED_ON
348 #define STATUS_LED_PERIOD3                      (CONFIG_SYS_HZ / 2)
349 /* Optional value */
350 #define STATUS_LED_BOOT                         STATUS_LED_BIT
351
352 #define CONFIG_RED_LED                          AT91_PIN_PC11
353 #define CONFIG_GREEN_LED                        AT91_PIN_PC12
354 #define CONFIG_YELLOW_LED                       AT91_PIN_PC7
355 #define CONFIG_BLUE_LED                         AT91_PIN_PC9
356
357 /* USB */
358 #define CONFIG_USB_ATMEL                        1
359 #define CONFIG_USB_OHCI_NEW                     1
360 #define CONFIG_DOS_PARTITION                    1
361 #define CONFIG_SYS_USB_OHCI_CPU_INIT            1
362 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x00500000
363 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "at91sam9260"
364 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
365 #define CONFIG_USB_STORAGE                      1
366
367 #define CONFIG_SYS_LOAD_ADDR                    0x21000000
368
369 #define CONFIG_SYS_MEMTEST_START                PHYS_SDRAM
370 #define CONFIG_SYS_MEMTEST_END                  0x21e00000
371
372 #undef CONFIG_SYS_USE_NANDFLASH
373 #define CONFIG_SYS_USE_FLASH                    1
374
375 #if defined(CONFIG_SYS_USE_FLASH)
376 #define CONFIG_ENV_IS_IN_FLASH          1
377 #define CONFIG_ENV_OFFSET               0x40000
378 #define CONFIG_ENV_SECT_SIZE            0x20000
379 #define CONFIG_ENV_SIZE                 0x20000
380 #define CONFIG_ENV_OVERWRITE            1
381
382 #define CONFIG_BOOTCOMMAND              "run flashboot"
383
384 #define MTDIDS_DEFAULT          "nor0=physmap-flash.0,nand0=atmel_nand"
385 #define MTDPARTS_DEFAULT                \
386         "mtdparts=physmap-flash.0:"     \
387                 "256k(u-boot)ro,"       \
388                 "128k(u-boot-env)ro,"   \
389                 "1792k(kernel),"        \
390                 "-(rootfs);"            \
391         "atmel_nand:-(nand)"
392
393 #define CONFIG_BOOTARGS "root=/dev/mtdblock3 rootfstype=jffs2 "
394
395 #if defined(CONFIG_CPU9G20)
396 #define CONFIG_SYS_BASEDIR      "cpu9G20"
397 #elif defined(CONFIG_CPU9260)
398 #define CONFIG_SYS_BASEDIR      "cpu9260"
399 #endif
400
401 #define CONFIG_EXTRA_ENV_SETTINGS                               \
402         "mtdids=" MTDIDS_DEFAULT "\0"                           \
403         "mtdparts=" MTDPARTS_DEFAULT "\0"                       \
404         "partition=nand0,0\0"                                   \
405         "ramargs=setenv bootargs $(bootargs) $(mtdparts)\0"     \
406         "ramboot=tftpboot 0x22000000 cpu9260/uImage;"           \
407                 "run ramargs;bootm 22000000\0"                  \
408         "flashboot=run ramargs;bootm 0x10060000\0"              \
409         "basedir=" CONFIG_SYS_BASEDIR "\0"                      \
410         "updtub=tftp 0x24000000 $(basedir)/u-boot.bin;protect " \
411                 "off 0x10000000 0x1003ffff;erase 0x10000000 "   \
412                 "0x1003ffff;cp.b 0x24000000 0x10000000 "        \
413                 "$(filesize)\0" \
414         "updtui=tftp 0x24000000 $(basedir)/uImage;protect off"  \
415                 " 0x10060000 0x1021ffff;erase 0x10060000 "      \
416                 "0x1021ffff;cp.b 0x24000000 0x10060000 "        \
417                 "$(filesize)\0" \
418         "updtrfs=tftp 0x24000000 $(basedir)/rootfs.jffs2; "     \
419                 "protect off 0x10220000 0x13ffffff;erase "      \
420                 "0x10220000 0x13ffffff;cp.b 0x24000000 "        \
421                 "0x10220000 $(filesize)\0" \
422         ""
423 #endif
424
425 #define CONFIG_BAUDRATE                 115200
426 #define CONFIG_SYS_BAUDRATE_TABLE       {115200 , 19200, 38400, 57600, 9600 }
427
428 #if defined(CONFIG_CPU9G20)
429 #define CONFIG_SYS_PROMPT               "CPU9G20=> "
430 #elif defined(CONFIG_CPU9260)
431 #define CONFIG_SYS_PROMPT               "CPU9260=> "
432 #endif
433 #define CONFIG_SYS_CBSIZE               256
434 #define CONFIG_SYS_MAXARGS              16
435 #define CONFIG_SYS_PBSIZE               \
436                 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
437 #define CONFIG_SYS_LONGHELP             1
438 #define CONFIG_CMDLINE_EDITING          1
439 #define CONFIG_SILENT_CONSOLE           1
440 #define CONFIG_NETCONSOLE               1
441
442 /*
443  * Size of malloc() pool
444  */
445 #define CONFIG_SYS_MALLOC_LEN           \
446                 ROUND(3 * CONFIG_ENV_SIZE + 128 * 1024, 0x1000)
447 #define CONFIG_SYS_GBL_DATA_SIZE        128
448
449 #define CONFIG_STACKSIZE                (32 * 1024)
450
451 #if defined(CONFIG_USE_IRQ)
452 #error CONFIG_USE_IRQ not supported
453 #endif
454
455 #endif