1 #ifndef _CONFIG_M5282EVB_H 2 #define _CONFIG_M5282EVB_H 3 4 #define CONFIG_COMMANDS ( CONFIG_CMD_DFL & ~(CFG_CMD_LOADS | CFG_CMD_LOADB) ) 5 #include <cmd_confdefs.h> 6 #define CONFIG_BOOTDELAY 5 7 8 #define CFG_MAX_FLASH_SECT 35 9 #define CFG_CACHELINE_SIZE 16 10 #define CFG_MALLOC_LEN (256 << 10) 11 #define CFG_INIT_RAM_ADDR 0x20000000 12 #define CFG_INIT_RAM_SIZE 0x1000 13 #define CFG_INIT_DATA_OFFSET 0 14 #define CONFIG_BAUDRATE 19200 15 #define CFG_MONITOR_BASE 0x3e0000 16 #define CFG_MONITOR_LEN 0x20000 17 #define CFG_SDRAM_BASE 0 18 #define CFG_FLASH_BASE 0xffe00000 19 #define CFG_PROMPT "M5282EVB> " 20 #define CFG_CBSIZE 1024 21 #define CFG_MAXARGS 64 22 #define CFG_LOAD_ADDR 0x20000 23 #define CFG_BOOTMAPSZ 0 24 #define CFG_BARGSIZE CFG_CBSIZE 25 #define CFG_BAUDRATE_TABLE { 9600 , 19200 , 38400 , 57600, 115200 } 26 #define CFG_ENV_ADDR 0xffe04000 27 #define CFG_ENV_SIZE 0x2000 28 #define CFG_ENV_IS_IN_FLASH 1 29 #define CFG_PBSIZE 1024 30 #define CFG_MAX_FLASH_BANKS 1 31 #define CFG_MEMTEST_START 0x400 32 #define CFG_MEMTEST_END 0x380000 33 #define CFG_HZ 1000000 34 #define CFG_FLASH_ERASE_TOUT 10000000 35 36 #define FEC_ENET 37 38 #define CONFIG_M5282 39 40 #endif /* _CONFIG_M5282EVB_H */ 41