diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-07-17 19:01:03 -0500 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-07-24 06:42:31 +0200 |
commit | 11ad309c183b176d8866944026a63c0f1c626f56 (patch) | |
tree | 90db3bf22bd1285c84e3ae56b9d4bad524ec8aed /include/configs | |
parent | d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c (diff) | |
download | u-boot-imx-11ad309c183b176d8866944026a63c0f1c626f56.zip u-boot-imx-11ad309c183b176d8866944026a63c0f1c626f56.tar.gz u-boot-imx-11ad309c183b176d8866944026a63c0f1c626f56.tar.bz2 |
xpedite1k: Use standard CFI flash driver
Using the CFI flash driver will allow write access to the 16MB Intel
StrataFlash present on the XPedite1000. The 512KB socketed (non
CFI-compliant flash) will no longer be writable.
The mapping of the 16MB Strata flash was moved to 0xff000000 and the
512KB AMD socketed flash was moved to 0xfe000000.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/XPEDITE1K.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/configs/XPEDITE1K.h b/include/configs/XPEDITE1K.h index 74e55c9..1eb638b 100644 --- a/include/configs/XPEDITE1K.h +++ b/include/configs/XPEDITE1K.h @@ -52,9 +52,9 @@ * actual resources get mapped (not physical addresses) *----------------------------------------------------------------------*/ #define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */ -#define CONFIG_SYS_FLASH_BASE 0xfff80000 /* start of FLASH */ +#define CONFIG_SYS_FLASH_BASE 0xff000000 /* start of FLASH */ -#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE /* start of monitor */ +#define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* start of monitor */ #define CONFIG_SYS_PCI_MEMBASE 0x80000000 /* mapped pci memory */ #define CONFIG_SYS_PERIPHERAL_BASE 0xe0000000 /* internal peripherals */ #define CONFIG_SYS_ISRAM_BASE 0xc0000000 /* internal SRAM */ @@ -128,7 +128,11 @@ extern void out32(unsigned int, unsigned long); * FLASH related *----------------------------------------------------------------------*/ #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */ -#define CONFIG_SYS_MAX_FLASH_SECT 8 /* sectors per device */ +#define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE} +#define CONFIG_SYS_MAX_FLASH_SECT 128 /* sectors per device */ +#define CONFIG_FLASH_CFI_DRIVER +#define CONFIG_SYS_FLASH_CFI +#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE #undef CONFIG_SYS_FLASH_CHECKSUM #define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */ |