diff options
author | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
commit | 71f9511803de65a3b98d2f592d418da1d1539f13 (patch) | |
tree | 4be38a22fc4f588a80aa8cc350ecd5617a211389 /include/flash.h | |
parent | 487778b781257831aa9b9140dd3c7ad4176e8314 (diff) | |
download | u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.zip u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.tar.gz u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.tar.bz2 |
* Fix CONFIG_NET_MULTI support in include/net.h
* Patches by Kyle Harris, 13 Mar 2003:
- Add FAT partition support
- Add command support for FAT
- Add command support for MMC
----
- Add Intel PXA support for video
- Add Intel PXA support for MMC
----
- Enable MMC and FAT for lubbock board
- Other misc changes for lubbock board
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/flash.h b/include/flash.h index 6410f2f..882652d 100644 --- a/include/flash.h +++ b/include/flash.h @@ -158,6 +158,10 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot); #define AMD_ID_DL324B 0x225F225F /* 29DL324B ID (32 M, bottom boot sect) */ #define AMD_ID_DL640 0x227E227E /* 29DL640D ID (64 M, dual boot sectors)*/ +#define AMD_ID_MIRROR 0x227E227E /* 1st ID word for MirrorBit family */ +#define AMD_ID_LV128U_2 0x22122212 /* 2d ID word for AM29LV128M at 0x38 */ +#define AMD_ID_LV128U_3 0x22002200 /* 3d ID word for AM29LV128M at 0x3c */ + #define AMD_ID_LV640U 0x22D722D7 /* 29LV640U ID (64 M, uniform sectors) */ #define ATM_ID_BV1614 0x000000C0 /* 49BV1614 ID */ @@ -302,6 +306,7 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot); #define FLASH_28F320C3B 0x009F /* Intel 28F320C3B ( 32M = 2M x 16 ) */ #define FLASH_28F640C3T 0x00A0 /* Intel 28F640C3T ( 64M = 4M x 16 ) */ #define FLASH_28F640C3B 0x00A1 /* Intel 28F640C3B ( 64M = 4M x 16 ) */ +#define FLASH_AMLV128U 0x00A2 /* AMD 29LV128M ( 128M = 8M x 16 ) */ #define FLASH_UNKNOWN 0xFFFF /* unknown flash type */ |