diff options
author | TsiChung <tcliew@Goku.(none)> | 2007-07-10 15:45:43 -0500 |
---|---|---|
committer | John Rigby <jrigby@freescale.com> | 2007-07-10 14:29:10 -0600 |
commit | 0dca874db62718e41253659e60f3a1de7eb418ce (patch) | |
tree | 358165147025f019ff3b71149749b46dd44fd717 /include/configs/M5329EVB.h | |
parent | 52b017604a8f4d4a795880ef6e7861d7f2f1b005 (diff) | |
download | u-boot-imx-0dca874db62718e41253659e60f3a1de7eb418ce.zip u-boot-imx-0dca874db62718e41253659e60f3a1de7eb418ce.tar.gz u-boot-imx-0dca874db62718e41253659e60f3a1de7eb418ce.tar.bz2 |
Cache update and added CFG_UNIFY_CACHE
Enabled cache in cpu_init_f() for faster flash to mem allocation. Updated cache handling in start.S. Applied cache invalidate in fec_send() and fec_recv(). Added CFG_UNIFY_CACHE for CF V3 only.
Signed-off-by: TsiChung <tcliew@Goku.(none)>
Diffstat (limited to 'include/configs/M5329EVB.h')
-rw-r--r-- | include/configs/M5329EVB.h | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/include/configs/M5329EVB.h b/include/configs/M5329EVB.h index c90773c..d1ac340 100644 --- a/include/configs/M5329EVB.h +++ b/include/configs/M5329EVB.h @@ -47,18 +47,20 @@ #define CONFIG_WATCHDOG_TIMEOUT 5000 /* timeout in milliseconds, max timeout is 6.71sec */ #define CONFIG_COMMANDS ( CONFIG_CMD_DFL | \ - CFG_CMD_CACHE | \ - CFG_CMD_DATE | \ - CFG_CMD_ELF | \ - CFG_CMD_FLASH | \ - (CFG_CMD_LOADB | CFG_CMD_LOADS) | \ - CFG_CMD_MEMORY | \ - CFG_CMD_MISC | \ - CFG_CMD_MII | \ - CFG_CMD_NET | \ - CFG_CMD_PING | \ - CFG_CMD_REGINFO \ - ) + CFG_CMD_CACHE | \ + CFG_CMD_DATE | \ + CFG_CMD_ELF | \ + CFG_CMD_FLASH | \ + (CFG_CMD_LOADB | CFG_CMD_LOADS) | \ + CFG_CMD_MEMORY | \ + CFG_CMD_MISC | \ + CFG_CMD_MII | \ + CFG_CMD_NET | \ + CFG_CMD_PING | \ + CFG_CMD_REGINFO \ + ) + +#define CFG_UNIFY_CACHE #define CONFIG_MCFFEC #ifdef CONFIG_MCFFEC |