diff options
| author | wdenk <wdenk> | 2003-07-07 20:07:54 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-07-07 20:07:54 +0000 | 
| commit | f12e568ca45f6c56b5a6d52a43524987e141abe7 (patch) | |
| tree | e0c4c1dc83553fa1ac900d2819a605372c1430d1 /include/flash.h | |
| parent | 0d4983930a3559be92452761cfa268ee9d0f2773 (diff) | |
| download | olio-uboot-2014.01-f12e568ca45f6c56b5a6d52a43524987e141abe7.tar.xz olio-uboot-2014.01-f12e568ca45f6c56b5a6d52a43524987e141abe7.zip | |
* Add support for NSCU boardU-Boot-0_4_2
* Add support for TQM823M, TQM850M, TQM855M and TQM860M modules
* Add support for Am29LV160ML, Am29LV320ML, and Am29LV640ML
  mirror bit flash on TQM8xxM modules
Diffstat (limited to 'include/flash.h')
| -rw-r--r-- | include/flash.h | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/include/flash.h b/include/flash.h index 282a20490..4cd467aaa 100644 --- a/include/flash.h +++ b/include/flash.h @@ -160,6 +160,8 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot);  #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_LV640U_2	0x220C220C	/* 2d ID word for AM29LV640M at 0x38 */ +#define AMD_ID_LV640U_3	0x22012201	/* 3d ID word for AM29LV640M at 0x3c */  #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 */ @@ -314,7 +316,9 @@ 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_AMLV320U	0x00A2		/* AMD 29LV128M    ( 128M = 8M x 16 )	*/ +#define FLASH_AMLV640U	0x00A4		/* AMD 29LV640M    ( 64M = 4M x 16 )	*/ +#define FLASH_AMLV128U	0x00A6		/* AMD 29LV128M	   ( 128M = 8M x 16 )	*/  #define FLASH_UNKNOWN	0xFFFF		/* unknown flash type			*/ |