diff options
author | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 |
commit | 5d232d0e7ea982d859d028ab482d95eb68460b19 (patch) | |
tree | a02c773fa4be5687f8f97d053ebd9afebbfaa54f /include/flash.h | |
parent | c8c3a8be2dd09e51d7dc33f431e3a638ac5688f2 (diff) | |
download | u-boot-5d232d0e7ea982d859d028ab482d95eb68460b19.tar.gz u-boot-5d232d0e7ea982d859d028ab482d95eb68460b19.tar.xz u-boot-5d232d0e7ea982d859d028ab482d95eb68460b19.zip |
* Patch by Dave Ellis, 22 May 2003:LABEL_2003_05_23_0055
Fix problem with only partially cleared .bss segment
* Patch by Rune Torgersen, 12 May 2003:
get PCI to work on a MPC8266ADS board; incorporate change to
cpu/mpc8260/pci.c to enable overrides of PCI memory parameters
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/include/flash.h b/include/flash.h index b7f13d340a..2693a35320 100644 --- a/include/flash.h +++ b/include/flash.h @@ -129,6 +129,8 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot); /* 4 Mbit, 512K x 8, */ /* 8 64K x 8 uniform sectors */ #define AMD_ID_F080B 0xD5 /* 29F080 ID ( 1 M) */ + /* 8 Mbit, 512K x 16, */ + /* 8 64K x 16 uniform sectors */ #define AMD_ID_F016D 0xAD /* 29F016 ID ( 2 M x 8) */ #define AMD_ID_F032B 0x41 /* 29F032 ID ( 4 M x 8) */ #define AMD_ID_LV116DT 0xC7 /* 29LV116DT ( 2 M x 8, top boot sect) */ @@ -219,13 +221,12 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot); * Be careful when adding new type! Odd numbers are "bottom boot sector" types! */ -#define FLASH_AM040 0x0001 /* AMD Am29F040B, Am29LV040B - * Bright Micro BM29F040 - * Fujitsu MBM29F040A - * STM M29W040B - * SGS Thomson M29F040B - * 8 64K x 8 uniform sectors - */ +#define FLASH_AM040 0x0001 /* AMD Am29F040B, Am29LV040B */ + /* Bright Micro BM29F040 */ + /* Fujitsu MBM29F040A */ + /* STM M29W040B */ + /* SGS Thomson M29F040B */ + /* 8 64K x 8 uniform sectors */ #define FLASH_AM400T 0x0002 /* AMD AM29LV400 */ #define FLASH_AM400B 0x0003 #define FLASH_AM800T 0x0004 /* AMD AM29LV800 */ @@ -237,6 +238,9 @@ extern int flash_real_protect(flash_info_t *info, long sector, int prot); #define FLASH_AM320T 0x0008 /* AMD AM29LV320 */ #define FLASH_AM320B 0x0009 +#define FLASH_AM080 0x000A /* AMD Am29F080B */ + /* 16 64K x 8 uniform sectors */ + #define FLASH_AMDL322T 0x0010 /* AMD AM29DL322 */ #define FLASH_AMDL322B 0x0011 #define FLASH_AMDL323T 0x0012 /* AMD AM29DL323 */ |