diff options
| author | wdenk <wdenk> | 2004-11-21 00:06:33 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-11-21 00:06:33 +0000 | 
| commit | 9d5028c2f7a65d3777867a6cfc966a01a5823132 (patch) | |
| tree | c971cc2b0d41e422585c1911fffda7d2d6403ee4 /include/flash.h | |
| parent | cacfab588a897c369a4906818c5ed4bc40a450c5 (diff) | |
| download | olio-uboot-2014.01-9d5028c2f7a65d3777867a6cfc966a01a5823132.tar.xz olio-uboot-2014.01-9d5028c2f7a65d3777867a6cfc966a01a5823132.zip | |
* Update for AT91RM9200DK and CMC_PU2 boards:
  - Enable booting directly from flash
  - fix CMC_PU2 flash driver
* Fix mkimage usage message
Diffstat (limited to 'include/flash.h')
| -rw-r--r-- | include/flash.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/flash.h b/include/flash.h index 0b28da7fa..a93c9b225 100644 --- a/include/flash.h +++ b/include/flash.h @@ -194,6 +194,8 @@ extern void flash_read_factory_serial(flash_info_t * info, void * buffer, int of  #define AMD_ID_LV128U_3 0x22002200	/* 3rd ID word for AM29LV128M  at 0x3c */  #define AMD_ID_LV256U_2 0x22122212	/* 2nd ID word for AM29LV256M  at 0x38 */  #define AMD_ID_LV256U_3 0x22012201	/* 3rd ID word for AM29LV256M  at 0x3c */ +#define AMD_ID_GL064M_2 0x22132213	/* 2nd ID word for S29GL064M-R6 */ +#define AMD_ID_GL064M_3 0x22012201	/* 3rd ID word for S29GL064M-R6 */  #define AMD_ID_LV320B_2	0x221A221A	/* 2d ID word for AM29LV320MB at 0x38 */  #define AMD_ID_LV320B_3 0x22002200	/* 3d ID word for AM29LV320MB at 0x3c */ @@ -374,6 +376,7 @@ extern void flash_read_factory_serial(flash_info_t * info, void * buffer, int of  #define FLASH_FUJLV650	0x00D0		/* Fujitsu MBM 29LV650UE/651UE		*/  #define FLASH_MT28S4M16LC 0x00E1	/* Micron MT28S4M16LC 			*/ +#define FLASH_S29GL064M 0x00F0		/* Spansion S29GL064M-R6		*/  #define FLASH_UNKNOWN	0xFFFF		/* unknown flash type			*/ |