wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2005 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _FLASH_H_ |
| 9 | #define _FLASH_H_ |
| 10 | |
Thomas Chou | 5aeeabf | 2015-10-31 11:09:36 +0800 | [diff] [blame] | 11 | #ifndef CONFIG_SYS_MAX_FLASH_SECT |
| 12 | #define CONFIG_SYS_MAX_FLASH_SECT 512 |
| 13 | #endif |
| 14 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 15 | /*----------------------------------------------------------------------- |
| 16 | * FLASH Info: contains chip specific data, per FLASH bank |
| 17 | */ |
| 18 | |
| 19 | typedef struct { |
| 20 | ulong size; /* total bank size in bytes */ |
| 21 | ushort sector_count; /* number of erase units */ |
| 22 | ulong flash_id; /* combined device & manufacturer code */ |
Becky Bruce | 09ce992 | 2009-02-02 16:34:51 -0600 | [diff] [blame] | 23 | ulong start[CONFIG_SYS_MAX_FLASH_SECT]; /* virtual sector start address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 24 | uchar protect[CONFIG_SYS_MAX_FLASH_SECT]; /* sector protection status */ |
| 25 | #ifdef CONFIG_SYS_FLASH_CFI |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 26 | uchar portwidth; /* the width of the port */ |
| 27 | uchar chipwidth; /* the width of the chip */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 28 | ushort buffer_size; /* # of bytes in write buffer */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 29 | ulong erase_blk_tout; /* maximum block erase timeout */ |
| 30 | ulong write_tout; /* maximum write timeout */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 31 | ulong buffer_write_tout; /* maximum buffer write timeout */ |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 32 | ushort vendor; /* the primary vendor id */ |
Stefan Roese | 260421a | 2006-11-13 13:55:24 +0100 | [diff] [blame] | 33 | ushort cmd_reset; /* vendor specific reset command */ |
Angelo Dureghello | 07b2c5c | 2012-12-01 01:14:18 +0100 | [diff] [blame] | 34 | uchar cmd_erase_sector; /* vendor specific erase sect. command */ |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 35 | ushort interface; /* used for x8/x16 adjustments */ |
Stefan Roese | 2662b40 | 2006-04-01 13:41:03 +0200 | [diff] [blame] | 36 | ushort legacy_unlock; /* support Intel legacy (un)locking */ |
Niklaus Giger | 3a7b2c2 | 2009-07-22 17:13:24 +0200 | [diff] [blame] | 37 | ushort manufacturer_id; /* manufacturer id */ |
Stefan Roese | 260421a | 2006-11-13 13:55:24 +0100 | [diff] [blame] | 38 | ushort device_id; /* device id */ |
| 39 | ushort device_id2; /* extended device id */ |
| 40 | ushort ext_addr; /* extended query table address */ |
| 41 | ushort cfi_version; /* cfi version */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 42 | ushort cfi_offset; /* offset for cfi query */ |
Michael Schwingen | 81b20cc | 2007-12-07 23:35:02 +0100 | [diff] [blame] | 43 | ulong addr_unlock1; /* unlock address 1 for AMD flash roms */ |
| 44 | ulong addr_unlock2; /* unlock address 2 for AMD flash roms */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 45 | const char *name; /* human-readable name */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 46 | #endif |
Thomas Chou | d858799 | 2015-11-07 14:20:31 +0800 | [diff] [blame] | 47 | #ifdef CONFIG_MTD |
| 48 | struct mtd_info *mtd; |
| 49 | #endif |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 50 | } flash_info_t; |
| 51 | |
Stefan Roese | ca5def3 | 2010-08-31 10:00:10 +0200 | [diff] [blame] | 52 | extern flash_info_t flash_info[]; /* info for FLASH chips */ |
| 53 | |
Piotr Ziecik | ebc9784 | 2008-11-20 15:17:38 +0100 | [diff] [blame] | 54 | typedef unsigned long flash_sect_t; |
| 55 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 56 | /* |
| 57 | * Values for the width of the port |
| 58 | */ |
| 59 | #define FLASH_CFI_8BIT 0x01 |
| 60 | #define FLASH_CFI_16BIT 0x02 |
| 61 | #define FLASH_CFI_32BIT 0x04 |
| 62 | #define FLASH_CFI_64BIT 0x08 |
| 63 | /* |
| 64 | * Values for the width of the chip |
| 65 | */ |
| 66 | #define FLASH_CFI_BY8 0x01 |
| 67 | #define FLASH_CFI_BY16 0x02 |
| 68 | #define FLASH_CFI_BY32 0x04 |
| 69 | #define FLASH_CFI_BY64 0x08 |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 70 | /* convert between bit value and numeric value */ |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 71 | #define CFI_FLASH_SHIFT_WIDTH 3 |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 72 | /* |
| 73 | * Values for the flash device interface |
| 74 | */ |
| 75 | #define FLASH_CFI_X8 0x00 |
| 76 | #define FLASH_CFI_X16 0x01 |
| 77 | #define FLASH_CFI_X8X16 0x02 |
Bartlomiej Sieka | 42026c9 | 2007-12-11 13:59:57 +0100 | [diff] [blame] | 78 | #define FLASH_CFI_X16X32 0x05 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 79 | |
wdenk | 5653fc3 | 2004-02-08 22:55:38 +0000 | [diff] [blame] | 80 | /* convert between bit value and numeric value */ |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 81 | #define CFI_FLASH_SHIFT_WIDTH 3 |
Piotr Ziecik | 91809ed | 2008-11-17 15:57:58 +0100 | [diff] [blame] | 82 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 83 | /* Prototypes */ |
| 84 | |
| 85 | extern unsigned long flash_init (void); |
Heiko Schocher | 6ee1416 | 2011-04-04 08:10:21 +0200 | [diff] [blame] | 86 | extern void flash_protect_default(void); |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 87 | extern void flash_print_info (flash_info_t *); |
| 88 | extern int flash_erase (flash_info_t *, int, int); |
| 89 | extern int flash_sect_erase (ulong addr_first, ulong addr_last); |
| 90 | extern int flash_sect_protect (int flag, ulong addr_first, ulong addr_last); |
Bartlomiej Sieka | 3f0cf51 | 2008-10-01 15:26:27 +0200 | [diff] [blame] | 91 | extern int flash_sect_roundb (ulong *addr); |
Piotr Ziecik | ebc9784 | 2008-11-20 15:17:38 +0100 | [diff] [blame] | 92 | extern unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect); |
Piotr Ziecik | 6ea808e | 2008-11-17 15:49:32 +0100 | [diff] [blame] | 93 | extern void flash_set_verbose(uint); |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 94 | |
| 95 | /* common/flash.c */ |
| 96 | extern void flash_protect (int flag, ulong from, ulong to, flash_info_t *info); |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 97 | extern int flash_write (char *, ulong, ulong); |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 98 | extern flash_info_t *addr2info (ulong); |
| 99 | extern int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt); |
| 100 | |
Piotr Ziecik | 91809ed | 2008-11-17 15:57:58 +0100 | [diff] [blame] | 101 | /* drivers/mtd/cfi_mtd.c */ |
| 102 | #ifdef CONFIG_FLASH_CFI_MTD |
| 103 | extern int cfi_mtd_init(void); |
| 104 | #endif |
| 105 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 106 | /* board/?/flash.c */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | #if defined(CONFIG_SYS_FLASH_PROTECTION) |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 108 | extern int flash_real_protect(flash_info_t *info, long sector, int prot); |
wdenk | 5653fc3 | 2004-02-08 22:55:38 +0000 | [diff] [blame] | 109 | extern void flash_read_user_serial(flash_info_t * info, void * buffer, int offset, int len); |
| 110 | extern void flash_read_factory_serial(flash_info_t * info, void * buffer, int offset, int len); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 111 | #endif /* CONFIG_SYS_FLASH_PROTECTION */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 112 | |
Michael Schwingen | 81b20cc | 2007-12-07 23:35:02 +0100 | [diff] [blame] | 113 | #ifdef CONFIG_FLASH_CFI_LEGACY |
| 114 | extern ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info); |
| 115 | extern int jedec_flash_match(flash_info_t *info, ulong base); |
| 116 | #define CFI_CMDSET_AMD_LEGACY 0xFFF0 |
| 117 | #endif |
| 118 | |
Heiko Schocher | 4f97567 | 2009-02-10 09:53:29 +0100 | [diff] [blame] | 119 | #if defined(CONFIG_SYS_FLASH_CFI) |
| 120 | extern flash_info_t *flash_get_info(ulong base); |
| 121 | #endif |
Michael Schwingen | 81b20cc | 2007-12-07 23:35:02 +0100 | [diff] [blame] | 122 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 123 | /*----------------------------------------------------------------------- |
| 124 | * return codes from flash_write(): |
| 125 | */ |
| 126 | #define ERR_OK 0 |
| 127 | #define ERR_TIMOUT 1 |
| 128 | #define ERR_NOT_ERASED 2 |
| 129 | #define ERR_PROTECTED 4 |
| 130 | #define ERR_INVAL 8 |
| 131 | #define ERR_ALIGN 16 |
| 132 | #define ERR_UNKNOWN_FLASH_VENDOR 32 |
| 133 | #define ERR_UNKNOWN_FLASH_TYPE 64 |
| 134 | #define ERR_PROG_ERROR 128 |
Joe Hershberger | de15a06 | 2012-08-17 15:36:41 -0500 | [diff] [blame] | 135 | #define ERR_ABORTED 256 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 136 | |
| 137 | /*----------------------------------------------------------------------- |
| 138 | * Protection Flags for flash_protect(): |
| 139 | */ |
| 140 | #define FLAG_PROTECT_SET 0x01 |
| 141 | #define FLAG_PROTECT_CLEAR 0x02 |
Peter Pearse | d4fc601 | 2007-08-14 10:10:52 +0100 | [diff] [blame] | 142 | #define FLAG_PROTECT_INVALID 0x03 |
| 143 | /*----------------------------------------------------------------------- |
| 144 | * Set Environment according to label: |
| 145 | */ |
| 146 | #define FLAG_SETENV 0x80 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 147 | |
| 148 | /*----------------------------------------------------------------------- |
| 149 | * Device IDs |
| 150 | */ |
| 151 | |
Niklaus Giger | 3a7b2c2 | 2009-07-22 17:13:24 +0200 | [diff] [blame] | 152 | /* Manufacturers inside bank 0 have ids like 0x00xx00xx */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 153 | #define AMD_MANUFACT 0x00010001 /* AMD manuf. ID in D23..D16, D7..D0 */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 154 | #define FUJ_MANUFACT 0x00040004 /* FUJITSU manuf. ID in D23..D16, D7..D0 */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 155 | #define ATM_MANUFACT 0x001F001F /* ATMEL */ |
| 156 | #define STM_MANUFACT 0x00200020 /* STM (Thomson) manuf. ID in D23.. -"- */ |
| 157 | #define SST_MANUFACT 0x00BF00BF /* SST manuf. ID in D23..D16, D7..D0 */ |
| 158 | #define MT_MANUFACT 0x00890089 /* MT manuf. ID in D23..D16, D7..D0 */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 159 | #define INTEL_MANUFACT 0x00890089 /* INTEL manuf. ID in D23..D16, D7..D0 */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 160 | #define INTEL_ALT_MANU 0x00B000B0 /* alternate INTEL namufacturer ID */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 161 | #define MX_MANUFACT 0x00C200C2 /* MXIC manuf. ID in D23..D16, D7..D0 */ |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 162 | #define TOSH_MANUFACT 0x00980098 /* TOSHIBA manuf. ID in D23..D16, D7..D0 */ |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 163 | #define MT2_MANUFACT 0x002C002C /* alternate MICRON manufacturer ID*/ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 164 | #define EXCEL_MANUFACT 0x004A004A /* Excel Semiconductor */ |
Niklaus Giger | 3a7b2c2 | 2009-07-22 17:13:24 +0200 | [diff] [blame] | 165 | #define AMIC_MANUFACT 0x00370037 /* AMIC manuf. ID in D23..D16, D7..D0 */ |
| 166 | #define WINB_MANUFACT 0x00DA00DA /* Winbond manuf. ID in D23..D16, D7..D0 */ |
Dirk Eibach | f3c89d9 | 2014-11-13 19:21:13 +0100 | [diff] [blame] | 167 | #define EON_ALT_MANU 0x001C001C /* EON manuf. ID in D23..D16, D7..D0 */ |
Niklaus Giger | 3a7b2c2 | 2009-07-22 17:13:24 +0200 | [diff] [blame] | 168 | |
| 169 | /* Manufacturers inside bank 1 have ids like 0x01xx01xx */ |
| 170 | #define EON_MANUFACT 0x011C011C /* EON manuf. ID in D23..D16, D7..D0 */ |
| 171 | |
| 172 | /* Manufacturers inside bank 2 have ids like 0x02xx02xx */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 173 | |
| 174 | /* Micron Technologies (INTEL compat.) */ |
| 175 | #define MT_ID_28F400_T 0x44704470 /* 28F400B3 ID ( 4 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 176 | #define MT_ID_28F400_B 0x44714471 /* 28F400B3 ID ( 4 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 177 | |
| 178 | #define AMD_ID_LV040B 0x4F /* 29LV040B ID */ |
| 179 | /* 4 Mbit, 512K x 8, */ |
| 180 | /* 8 64K x 8 uniform sectors */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 181 | #define AMD_ID_F033C 0xA3 /* 29LV033C ID */ |
| 182 | /* 32 Mbit, 4Mbits x 8, */ |
| 183 | /* 64 64K x 8 uniform sectors */ |
| 184 | #define AMD_ID_F065D 0x93 /* 29LV065D ID */ |
| 185 | /* 64 Mbit, 8Mbits x 8, */ |
| 186 | /* 126 64K x 8 uniform sectors */ |
| 187 | #define ATM_ID_LV040 0x13 /* 29LV040B ID */ |
| 188 | /* 4 Mbit, 512K x 8, */ |
| 189 | /* 8 64K x 8 uniform sectors */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 190 | #define AMD_ID_F040B 0xA4 /* 29F040B ID */ |
| 191 | /* 4 Mbit, 512K x 8, */ |
| 192 | /* 8 64K x 8 uniform sectors */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 193 | #define STM_ID_M29W040B 0xE3 /* M29W040B ID */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 194 | /* 4 Mbit, 512K x 8, */ |
| 195 | /* 8 64K x 8 uniform sectors */ |
| 196 | #define AMD_ID_F080B 0xD5 /* 29F080 ID ( 1 M) */ |
wdenk | 5d232d0 | 2003-05-22 22:52:13 +0000 | [diff] [blame] | 197 | /* 8 Mbit, 512K x 16, */ |
| 198 | /* 8 64K x 16 uniform sectors */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 199 | #define AMD_ID_F016D 0xAD /* 29F016 ID ( 2 M x 8) */ |
| 200 | #define AMD_ID_F032B 0x41 /* 29F032 ID ( 4 M x 8) */ |
| 201 | #define AMD_ID_LV116DT 0xC7 /* 29LV116DT ( 2 M x 8, top boot sect) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 202 | #define AMD_ID_LV116DB 0x4C /* 29LV116DB ( 2 M x 8, bottom boot sect) */ |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 203 | #define AMD_ID_LV016B 0xc8 /* 29LV016 ID ( 2 M x 8) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 204 | |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 205 | #define AMD_ID_PL160CB 0x22452245 /* 29PL160CB ID (16 M, bottom boot sect */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 206 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 207 | #define AMD_ID_LV400T 0x22B922B9 /* 29LV400T ID ( 4 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 208 | #define AMD_ID_LV400B 0x22BA22BA /* 29LV400B ID ( 4 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 209 | |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 210 | #define AMD_ID_LV033C 0xA3 /* 29LV033C ID ( 4 M x 8) */ |
| 211 | #define AMD_ID_LV065D 0x93 /* 29LV065D ID ( 8 M x 8) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 212 | |
| 213 | #define AMD_ID_LV800T 0x22DA22DA /* 29LV800T ID ( 8 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 214 | #define AMD_ID_LV800B 0x225B225B /* 29LV800B ID ( 8 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 215 | |
| 216 | #define AMD_ID_LV160T 0x22C422C4 /* 29LV160T ID (16 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 217 | #define AMD_ID_LV160B 0x22492249 /* 29LV160B ID (16 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 218 | |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 219 | #define AMD_ID_DL163T 0x22282228 /* 29DL163T ID (16 M, top boot sector) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 220 | #define AMD_ID_DL163B 0x222B222B /* 29DL163B ID (16 M, bottom boot sect) */ |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 221 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 222 | #define AMD_ID_LV320T 0x22F622F6 /* 29LV320T ID (32 M, top boot sector) */ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 223 | #define MX_ID_LV320T 0x22A722A7 /* 29LV320T by Macronix, AMD compatible */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 224 | #define AMD_ID_LV320B 0x22F922F9 /* 29LV320B ID (32 M, bottom boot sect) */ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 225 | #define MX_ID_LV320B 0x22A822A8 /* 29LV320B by Macronix, AMD compatible */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 226 | |
| 227 | #define AMD_ID_DL322T 0x22552255 /* 29DL322T ID (32 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 228 | #define AMD_ID_DL322B 0x22562256 /* 29DL322B ID (32 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 229 | #define AMD_ID_DL323T 0x22502250 /* 29DL323T ID (32 M, top boot sector) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 230 | #define AMD_ID_DL323B 0x22532253 /* 29DL323B ID (32 M, bottom boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 231 | #define AMD_ID_DL324T 0x225C225C /* 29DL324T ID (32 M, top boot sector) */ |
| 232 | #define AMD_ID_DL324B 0x225F225F /* 29DL324B ID (32 M, bottom boot sect) */ |
| 233 | |
| 234 | #define AMD_ID_DL640 0x227E227E /* 29DL640D ID (64 M, dual boot sectors)*/ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 235 | #define AMD_ID_MIRROR 0x227E227E /* 1st ID word for MirrorBit family */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 236 | #define AMD_ID_DL640G_2 0x22022202 /* 2nd ID word for AM29DL640G at 0x38 */ |
| 237 | #define AMD_ID_DL640G_3 0x22012201 /* 3rd ID word for AM29DL640G at 0x3c */ |
| 238 | #define AMD_ID_LV640U_2 0x220C220C /* 2nd ID word for AM29LV640M at 0x38 */ |
| 239 | #define AMD_ID_LV640U_3 0x22012201 /* 3rd ID word for AM29LV640M at 0x3c */ |
wdenk | aa5590b | 2004-06-09 12:42:26 +0000 | [diff] [blame] | 240 | #define AMD_ID_LV640MT_2 0x22102210 /* 2nd ID word for AM29LV640MT at 0x38 */ |
| 241 | #define AMD_ID_LV640MT_3 0x22012201 /* 3rd ID word for AM29LV640MT at 0x3c */ |
| 242 | #define AMD_ID_LV640MB_2 0x22102210 /* 2nd ID word for AM29LV640MB at 0x38 */ |
| 243 | #define AMD_ID_LV640MB_3 0x22002200 /* 3rd ID word for AM29LV640MB at 0x3c */ |
| 244 | #define AMD_ID_LV128U_2 0x22122212 /* 2nd ID word for AM29LV128M at 0x38 */ |
| 245 | #define AMD_ID_LV128U_3 0x22002200 /* 3rd ID word for AM29LV128M at 0x3c */ |
| 246 | #define AMD_ID_LV256U_2 0x22122212 /* 2nd ID word for AM29LV256M at 0x38 */ |
| 247 | #define AMD_ID_LV256U_3 0x22012201 /* 3rd ID word for AM29LV256M at 0x3c */ |
wdenk | 9d5028c | 2004-11-21 00:06:33 +0000 | [diff] [blame] | 248 | #define AMD_ID_GL064M_2 0x22132213 /* 2nd ID word for S29GL064M-R6 */ |
| 249 | #define AMD_ID_GL064M_3 0x22012201 /* 3rd ID word for S29GL064M-R6 */ |
Wolfgang Denk | 45237bc | 2005-10-05 00:03:55 +0200 | [diff] [blame] | 250 | #define AMD_ID_GL064MT_2 0x22102210 /* 2nd ID word for S29GL064M-R3 (top boot sector) */ |
| 251 | #define AMD_ID_GL064MT_3 0x22012201 /* 3rd ID word for S29GL064M-R3 (top boot sector) */ |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 252 | #define AMD_ID_GL128N_2 0x22212221 /* 2nd ID word for S29GL128N */ |
| 253 | #define AMD_ID_GL128N_3 0x22012201 /* 3rd ID word for S29GL128N */ |
| 254 | |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 255 | |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 256 | #define AMD_ID_LV320B_2 0x221A221A /* 2d ID word for AM29LV320MB at 0x38 */ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 257 | #define AMD_ID_LV320B_3 0x22002200 /* 3d ID word for AM29LV320MB at 0x3c */ |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 258 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 259 | #define AMD_ID_LV640U 0x22D722D7 /* 29LV640U ID (64 M, uniform sectors) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 260 | #define AMD_ID_LV650U 0x22D722D7 /* 29LV650U ID (64 M, uniform sectors) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 261 | |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 262 | #define ATM_ID_BV1614 0x000000C0 /* 49BV1614 ID */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 263 | #define ATM_ID_BV1614A 0x000000C8 /* 49BV1614A ID */ |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 264 | #define ATM_ID_BV6416 0x000000D6 /* 49BV6416 ID */ |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 265 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 266 | #define FUJI_ID_29F800BA 0x22582258 /* MBM29F800BA ID (8M) */ |
| 267 | #define FUJI_ID_29F800TA 0x22D622D6 /* MBM29F800TA ID (8M) */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 268 | #define FUJI_ID_29LV650UE 0x22d722d7 /* MBM29LV650UE/651UE ID (8M = 128 x 32kWord) */ |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 269 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 270 | #define SST_ID_xF200A 0x27892789 /* 39xF200A ID ( 2M = 128K x 16 ) */ |
| 271 | #define SST_ID_xF400A 0x27802780 /* 39xF400A ID ( 4M = 256K x 16 ) */ |
| 272 | #define SST_ID_xF800A 0x27812781 /* 39xF800A ID ( 8M = 512K x 16 ) */ |
| 273 | #define SST_ID_xF160A 0x27822782 /* 39xF800A ID (16M = 1M x 16 ) */ |
stroese | 4d535b5 | 2004-12-16 18:01:48 +0000 | [diff] [blame] | 274 | #define SST_ID_xF1601 0x234B234B /* 39xF1601 ID (16M = 1M x 16 ) */ |
| 275 | #define SST_ID_xF1602 0x234A234A /* 39xF1602 ID (16M = 1M x 16 ) */ |
| 276 | #define SST_ID_xF3201 0x235B235B /* 39xF3201 ID (32M = 2M x 16 ) */ |
| 277 | #define SST_ID_xF3202 0x235A235A /* 39xF3202 ID (32M = 2M x 16 ) */ |
| 278 | #define SST_ID_xF6401 0x236B236B /* 39xF6401 ID (64M = 4M x 16 ) */ |
| 279 | #define SST_ID_xF6402 0x236A236A /* 39xF6402 ID (64M = 4M x 16 ) */ |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 280 | #define SST_ID_xF020 0xBFD6BFD6 /* 39xF020 ID (256KB = 2Mbit x 8) */ |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 281 | #define SST_ID_xF040 0xBFD7BFD7 /* 39xF040 ID (512KB = 4Mbit x 8) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 282 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 283 | #define STM_ID_F040B 0xE2 /* M29F040B ID ( 4M = 512K x 8 ) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 284 | /* 8 64K x 8 uniform sectors */ |
| 285 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 286 | #define STM_ID_x800AB 0x005B005B /* M29W800AB ID (8M = 512K x 16 ) */ |
| 287 | #define STM_ID_29W320DT 0x22CA22CA /* M29W320DT ID (32 M, top boot sector) */ |
| 288 | #define STM_ID_29W320DB 0x22CB22CB /* M29W320DB ID (32 M, bottom boot sect) */ |
Aubrey Li | 8e709bb | 2007-03-19 01:26:11 +0800 | [diff] [blame] | 289 | #define STM_ID_29W320ET 0x22562256 /* M29W320ET ID (32 M, top boot sector) */ |
| 290 | #define STM_ID_29W320EB 0x22572257 /* M29W320EB ID (32 M, bottom boot sect)*/ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 291 | #define STM_ID_29W040B 0x00E300E3 /* M29W040B ID (4M = 512K x 8) */ |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 292 | #define FLASH_PSD4256GV 0x00E9 /* PSD4256 Flash and CPLD combination */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 293 | |
| 294 | #define INTEL_ID_28F016S 0x66a066a0 /* 28F016S[VS] ID (16M = 512k x 16) */ |
| 295 | #define INTEL_ID_28F800B3T 0x88928892 /* 8M = 512K x 16 top boot sector */ |
| 296 | #define INTEL_ID_28F800B3B 0x88938893 /* 8M = 512K x 16 bottom boot sector */ |
| 297 | #define INTEL_ID_28F160B3T 0x88908890 /* 16M = 1M x 16 top boot sector */ |
| 298 | #define INTEL_ID_28F160B3B 0x88918891 /* 16M = 1M x 16 bottom boot sector */ |
| 299 | #define INTEL_ID_28F320B3T 0x88968896 /* 32M = 2M x 16 top boot sector */ |
| 300 | #define INTEL_ID_28F320B3B 0x88978897 /* 32M = 2M x 16 bottom boot sector */ |
| 301 | #define INTEL_ID_28F640B3T 0x88988898 /* 64M = 4M x 16 top boot sector */ |
| 302 | #define INTEL_ID_28F640B3B 0x88998899 /* 64M = 4M x 16 bottom boot sector */ |
| 303 | #define INTEL_ID_28F160F3B 0x88F488F4 /* 16M = 1M x 16 bottom boot sector */ |
| 304 | |
| 305 | #define INTEL_ID_28F800C3T 0x88C088C0 /* 8M = 512K x 16 top boot sector */ |
| 306 | #define INTEL_ID_28F800C3B 0x88C188C1 /* 8M = 512K x 16 bottom boot sector */ |
| 307 | #define INTEL_ID_28F160C3T 0x88C288C2 /* 16M = 1M x 16 top boot sector */ |
| 308 | #define INTEL_ID_28F160C3B 0x88C388C3 /* 16M = 1M x 16 bottom boot sector */ |
| 309 | #define INTEL_ID_28F320C3T 0x88C488C4 /* 32M = 2M x 16 top boot sector */ |
| 310 | #define INTEL_ID_28F320C3B 0x88C588C5 /* 32M = 2M x 16 bottom boot sector */ |
| 311 | #define INTEL_ID_28F640C3T 0x88CC88CC /* 64M = 4M x 16 top boot sector */ |
| 312 | #define INTEL_ID_28F640C3B 0x88CD88CD /* 64M = 4M x 16 bottom boot sector */ |
| 313 | |
wdenk | f6e20fc | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 314 | #define INTEL_ID_28F128J3 0x89188918 /* 16M = 8M x 16 x 128 */ |
wdenk | 6dd652f | 2003-06-19 23:40:20 +0000 | [diff] [blame] | 315 | #define INTEL_ID_28F320J5 0x00140014 /* 32M = 128K x 32 */ |
| 316 | #define INTEL_ID_28F640J5 0x00150015 /* 64M = 128K x 64 */ |
| 317 | #define INTEL_ID_28F320J3A 0x00160016 /* 32M = 128K x 32 */ |
| 318 | #define INTEL_ID_28F640J3A 0x00170017 /* 64M = 128K x 64 */ |
| 319 | #define INTEL_ID_28F128J3A 0x00180018 /* 128M = 128K x 128 */ |
Wolfgang Denk | 97c8d0b | 2005-12-22 01:50:50 +0100 | [diff] [blame] | 320 | #define INTEL_ID_28F256J3A 0x001D001D /* 256M = 128K x 256 */ |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 321 | #define INTEL_ID_28F256L18T 0x880D880D /* 256M = 128K x 255 + 32k x 4 */ |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 322 | #define INTEL_ID_28F64K3 0x88018801 /* 64M = 32K x 255 + 32k x 4 */ |
| 323 | #define INTEL_ID_28F128K3 0x88028802 /* 128M = 64K x 255 + 32k x 4 */ |
| 324 | #define INTEL_ID_28F256K3 0x88038803 /* 256M = 128K x 255 + 32k x 4 */ |
Stefan Roese | 79b4cda | 2006-02-28 15:29:58 +0100 | [diff] [blame] | 325 | #define INTEL_ID_28F64P30T 0x88178817 /* 64M = 32K x 255 + 32k x 4 */ |
| 326 | #define INTEL_ID_28F64P30B 0x881A881A /* 64M = 32K x 255 + 32k x 4 */ |
| 327 | #define INTEL_ID_28F128P30T 0x88188818 /* 128M = 64K x 255 + 32k x 4 */ |
| 328 | #define INTEL_ID_28F128P30B 0x881B881B /* 128M = 64K x 255 + 32k x 4 */ |
| 329 | #define INTEL_ID_28F256P30T 0x88198819 /* 256M = 128K x 255 + 32k x 4 */ |
| 330 | #define INTEL_ID_28F256P30B 0x881C881C /* 256M = 128K x 255 + 32k x 4 */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 331 | |
| 332 | #define INTEL_ID_28F160S3 0x00D000D0 /* 16M = 512K x 32 (64kB x 32) */ |
| 333 | #define INTEL_ID_28F320S3 0x00D400D4 /* 32M = 512K x 64 (64kB x 64) */ |
| 334 | |
| 335 | /* Note that the Sharp 28F016SC is compatible with the Intel E28F016SC */ |
| 336 | #define SHARP_ID_28F016SCL 0xAAAAAAAA /* LH28F016SCT-L95 2Mx8, 32 64k blocks */ |
| 337 | #define SHARP_ID_28F016SCZ 0xA0A0A0A0 /* LH28F016SCT-Z4 2Mx8, 32 64k blocks */ |
| 338 | #define SHARP_ID_28F008SC 0xA6A6A6A6 /* LH28F008SCT-L12 1Mx8, 16 64k blocks */ |
| 339 | /* LH28F008SCR-L85 1Mx8, 16 64k blocks */ |
| 340 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 341 | #define TOSH_ID_FVT160 0xC2 /* TC58FVT160 ID (16 M, top ) */ |
| 342 | #define TOSH_ID_FVB160 0x43 /* TC58FVT160 ID (16 M, bottom ) */ |
Holger Brunck | 81316a9 | 2012-08-09 10:22:41 +0200 | [diff] [blame] | 343 | #define NUMONYX_256MBIT 0x8922 /* Numonyx P33/30 256MBit 65nm */ |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 344 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 345 | /*----------------------------------------------------------------------- |
| 346 | * Internal FLASH identification codes |
| 347 | * |
| 348 | * Be careful when adding new type! Odd numbers are "bottom boot sector" types! |
| 349 | */ |
| 350 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 351 | #define FLASH_AM040 0x0001 /* AMD Am29F040B, Am29LV040B */ |
| 352 | /* Bright Micro BM29F040 */ |
| 353 | /* Fujitsu MBM29F040A */ |
| 354 | /* STM M29W040B */ |
| 355 | /* SGS Thomson M29F040B */ |
| 356 | /* 8 64K x 8 uniform sectors */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 357 | #define FLASH_AM400T 0x0002 /* AMD AM29LV400 */ |
| 358 | #define FLASH_AM400B 0x0003 |
| 359 | #define FLASH_AM800T 0x0004 /* AMD AM29LV800 */ |
| 360 | #define FLASH_AM800B 0x0005 |
| 361 | #define FLASH_AM116DT 0x0026 /* AMD AM29LV116DT (2Mx8bit) */ |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 362 | #define FLASH_AM116DB 0x0027 /* AMD AM29LV116DB (2Mx8bit) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 363 | #define FLASH_AM160T 0x0006 /* AMD AM29LV160 */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 364 | #define FLASH_AM160LV 0x0046 /* AMD29LV160DB (2M = 2Mx8bit ) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 365 | #define FLASH_AM160B 0x0007 |
| 366 | #define FLASH_AM320T 0x0008 /* AMD AM29LV320 */ |
| 367 | #define FLASH_AM320B 0x0009 |
| 368 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 369 | #define FLASH_AM080 0x000A /* AMD Am29F080B */ |
| 370 | /* 16 64K x 8 uniform sectors */ |
wdenk | 5d232d0 | 2003-05-22 22:52:13 +0000 | [diff] [blame] | 371 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 372 | #define FLASH_AMDL322T 0x0010 /* AMD AM29DL322 */ |
| 373 | #define FLASH_AMDL322B 0x0011 |
| 374 | #define FLASH_AMDL323T 0x0012 /* AMD AM29DL323 */ |
| 375 | #define FLASH_AMDL323B 0x0013 |
| 376 | #define FLASH_AMDL324T 0x0014 /* AMD AM29DL324 */ |
| 377 | #define FLASH_AMDL324B 0x0015 |
| 378 | |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 379 | #define FLASH_AMDLV033C 0x0018 |
| 380 | #define FLASH_AMDLV065D 0x001A |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 381 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 382 | #define FLASH_AMDL640 0x0016 /* AMD AM29DL640D */ |
| 383 | #define FLASH_AMD016 0x0018 /* AMD AM29F016D */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 384 | #define FLASH_AMDL640MB 0x0019 /* AMD AM29LV640MB (64M, bottom boot sect)*/ |
| 385 | #define FLASH_AMDL640MT 0x001A /* AMD AM29LV640MT (64M, top boot sect) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 386 | |
| 387 | #define FLASH_SST200A 0x0040 /* SST 39xF200A ID ( 2M = 128K x 16 ) */ |
| 388 | #define FLASH_SST400A 0x0042 /* SST 39xF400A ID ( 4M = 256K x 16 ) */ |
| 389 | #define FLASH_SST800A 0x0044 /* SST 39xF800A ID ( 8M = 512K x 16 ) */ |
| 390 | #define FLASH_SST160A 0x0046 /* SST 39xF160A ID ( 16M = 1M x 16 ) */ |
stroese | 4d535b5 | 2004-12-16 18:01:48 +0000 | [diff] [blame] | 391 | #define FLASH_SST320 0x0048 /* SST 39xF160A ID ( 16M = 1M x 16 ) */ |
| 392 | #define FLASH_SST640 0x004A /* SST 39xF160A ID ( 16M = 1M x 16 ) */ |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 393 | #define FLASH_SST020 0x0024 /* SST 39xF020 ID (256KB = 2Mbit x 8 ) */ |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 394 | #define FLASH_SST040 0x000E /* SST 39xF040 ID (512KB = 4Mbit x 8 ) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 395 | |
| 396 | #define FLASH_STM800AB 0x0051 /* STM M29WF800AB ( 8M = 512K x 16 ) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 397 | #define FLASH_STMW320DT 0x0052 /* STM M29W320DT (32 M, top boot sector) */ |
| 398 | #define FLASH_STMW320DB 0x0053 /* STM M29W320DB (32 M, bottom boot sect)*/ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 399 | #define FLASH_STM320DB 0x00CB /* STM M29W320DB (4M = 64K x 64, bottom)*/ |
| 400 | #define FLASH_STM800DT 0x00D7 /* STM M29W800DT (1M = 64K x 16, top) */ |
| 401 | #define FLASH_STM800DB 0x005B /* STM M29W800DB (1M = 64K x 16, bottom)*/ |
| 402 | |
Purna Chandra Mandal | 30fd42c | 2016-03-18 18:36:07 +0530 | [diff] [blame] | 403 | #define FLASH_MCHP100T 0x0060 /* MCHP internal (1M = 64K x 16) */ |
| 404 | #define FLASH_MCHP100B 0x0061 /* MCHP internal (1M = 64K x 16) */ |
| 405 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 406 | #define FLASH_28F400_T 0x0062 /* MT 28F400B3 ID ( 4M = 256K x 16 ) */ |
| 407 | #define FLASH_28F400_B 0x0063 /* MT 28F400B3 ID ( 4M = 256K x 16 ) */ |
| 408 | |
| 409 | #define FLASH_INTEL800T 0x0074 /* INTEL 28F800B3T ( 8M = 512K x 16 ) */ |
| 410 | #define FLASH_INTEL800B 0x0075 /* INTEL 28F800B3B ( 8M = 512K x 16 ) */ |
| 411 | #define FLASH_INTEL160T 0x0076 /* INTEL 28F160B3T ( 16M = 1 M x 16 ) */ |
| 412 | #define FLASH_INTEL160B 0x0077 /* INTEL 28F160B3B ( 16M = 1 M x 16 ) */ |
| 413 | #define FLASH_INTEL320T 0x0078 /* INTEL 28F320B3T ( 32M = 2 M x 16 ) */ |
| 414 | #define FLASH_INTEL320B 0x0079 /* INTEL 28F320B3B ( 32M = 2 M x 16 ) */ |
| 415 | #define FLASH_INTEL640T 0x007A /* INTEL 28F320B3T ( 64M = 4 M x 16 ) */ |
| 416 | #define FLASH_INTEL640B 0x007B /* INTEL 28F320B3B ( 64M = 4 M x 16 ) */ |
| 417 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 418 | #define FLASH_28F008S5 0x0080 /* Intel 28F008S5 ( 1M = 64K x 16 ) */ |
| 419 | #define FLASH_28F016SV 0x0081 /* Intel 28F016SV ( 16M = 512k x 32 ) */ |
| 420 | #define FLASH_28F800_B 0x0083 /* Intel E28F800B ( 1M = ? ) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 421 | #define FLASH_AM29F800B 0x0084 /* AMD Am29F800BB ( 1M = ? ) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 422 | #define FLASH_28F320J5 0x0085 /* Intel 28F320J5 ( 4M = 128K x 32 ) */ |
| 423 | #define FLASH_28F160S3 0x0086 /* Intel 28F160S3 ( 16M = 512K x 32 ) */ |
| 424 | #define FLASH_28F320S3 0x0088 /* Intel 28F320S3 ( 32M = 512K x 64 ) */ |
| 425 | #define FLASH_AM640U 0x0090 /* AMD Am29LV640U ( 64M = 4M x 16 ) */ |
| 426 | #define FLASH_AM033C 0x0091 /* AMD AM29LV033 ( 32M = 4M x 8 ) */ |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 427 | #define FLASH_LH28F016SCT 0x0092 /* Sharp 28F016SCT ( 8 Meg Flash SIMM ) */ |
| 428 | #define FLASH_28F160F3B 0x0093 /* Intel 28F160F3B ( 16M = 1M x 16 ) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 429 | #define FLASH_AM065D 0x0093 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 430 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 431 | #define FLASH_28F640J5 0x0099 /* INTEL 28F640J5 ( 64M = 128K x 64) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 432 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 433 | #define FLASH_28F800C3T 0x009A /* Intel 28F800C3T ( 8M = 512K x 16 ) */ |
| 434 | #define FLASH_28F800C3B 0x009B /* Intel 28F800C3B ( 8M = 512K x 16 ) */ |
| 435 | #define FLASH_28F160C3T 0x009C /* Intel 28F160C3T ( 16M = 1M x 16 ) */ |
| 436 | #define FLASH_28F160C3B 0x009D /* Intel 28F160C3B ( 16M = 1M x 16 ) */ |
| 437 | #define FLASH_28F320C3T 0x009E /* Intel 28F320C3T ( 32M = 2M x 16 ) */ |
| 438 | #define FLASH_28F320C3B 0x009F /* Intel 28F320C3B ( 32M = 2M x 16 ) */ |
| 439 | #define FLASH_28F640C3T 0x00A0 /* Intel 28F640C3T ( 64M = 4M x 16 ) */ |
| 440 | #define FLASH_28F640C3B 0x00A1 /* Intel 28F640C3B ( 64M = 4M x 16 ) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 441 | #define FLASH_AMLV320U 0x00A2 /* AMD 29LV320M ( 32M = 2M x 16 ) */ |
| 442 | |
| 443 | #define FLASH_AM033 0x00A3 /* AMD AmL033C90V1 (32M = 4M x 8) */ |
| 444 | #define FLASH_AM065 0x0093 /* AMD AmL065DU12RI (64M = 8M x 8) */ |
| 445 | #define FLASH_AT040 0x00A5 /* Amtel AT49LV040 (4M = 512K x 8) */ |
| 446 | |
| 447 | #define FLASH_AMLV640U 0x00A4 /* AMD 29LV640M ( 64M = 4M x 16 ) */ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 448 | #define FLASH_AMLV128U 0x00A6 /* AMD 29LV128M ( 128M = 8M x 16 ) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 449 | #define FLASH_AMLV320B 0x00A7 /* AMD 29LV320MB ( 32M = 2M x 16 ) */ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 450 | #define FLASH_AMLV320T 0x00A8 /* AMD 29LV320MT ( 32M = 2M x 16 ) */ |
wdenk | 4d13cba | 2004-03-14 14:09:05 +0000 | [diff] [blame] | 451 | #define FLASH_AMLV256U 0x00AA /* AMD 29LV256M ( 256M = 16M x 16 ) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 452 | #define FLASH_MXLV320B 0x00AB /* MX 29LV320MB ( 32M = 2M x 16 ) */ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 453 | #define FLASH_MXLV320T 0x00AC /* MX 29LV320MT ( 32M = 2M x 16 ) */ |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 454 | #define FLASH_28F256L18T 0x00B0 /* Intel 28F256L18T 256M = 128K x 255 + 32k x 4 */ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 455 | #define FLASH_AMDL163T 0x00B2 /* AMD AM29DL163T (2M x 16 ) */ |
| 456 | #define FLASH_AMDL163B 0x00B3 |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 457 | #define FLASH_28F64K3 0x00B4 /* Intel 28F64K3 ( 64M) */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 458 | #define FLASH_28F128K3 0x00B6 /* Intel 28F128K3 ( 128M = 8M x 16 ) */ |
| 459 | #define FLASH_28F256K3 0x00B8 /* Intel 28F256K3 ( 256M = 16M x 16 ) */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 460 | |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 461 | #define FLASH_28F320J3A 0x00C0 /* INTEL 28F320J3A ( 32M = 128K x 32) */ |
| 462 | #define FLASH_28F640J3A 0x00C2 /* INTEL 28F640J3A ( 64M = 128K x 64) */ |
| 463 | #define FLASH_28F128J3A 0x00C4 /* INTEL 28F128J3A (128M = 128K x 128) */ |
Wolfgang Denk | 97c8d0b | 2005-12-22 01:50:50 +0100 | [diff] [blame] | 464 | #define FLASH_28F256J3A 0x00C6 /* INTEL 28F256J3A (256M = 128K x 256) */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 465 | |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 466 | #define FLASH_FUJLV650 0x00D0 /* Fujitsu MBM 29LV650UE/651UE */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 467 | #define FLASH_MT28S4M16LC 0x00E1 /* Micron MT28S4M16LC */ |
wdenk | 9d5028c | 2004-11-21 00:06:33 +0000 | [diff] [blame] | 468 | #define FLASH_S29GL064M 0x00F0 /* Spansion S29GL064M-R6 */ |
Marian Balakowicz | 7299712 | 2006-10-03 20:28:38 +0200 | [diff] [blame] | 469 | #define FLASH_S29GL128N 0x00F1 /* Spansion S29GL128N */ |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 470 | |
Vikas Manocha | 9ecb0c4 | 2016-03-09 15:18:13 -0800 | [diff] [blame] | 471 | #define FLASH_STM32 0x00F2 /* STM32 Embedded Flash */ |
Matt Porter | 2d18ef2 | 2015-05-05 15:00:24 -0400 | [diff] [blame] | 472 | #define FLASH_STM32F1 0x00F3 /* STM32F1 Embedded Flash */ |
rev13@wp.pl | eaaa4f7 | 2015-03-01 12:44:40 +0100 | [diff] [blame] | 473 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 474 | #define FLASH_UNKNOWN 0xFFFF /* unknown flash type */ |
| 475 | |
| 476 | |
| 477 | /* manufacturer offsets |
| 478 | */ |
| 479 | #define FLASH_MAN_AMD 0x00000000 /* AMD */ |
| 480 | #define FLASH_MAN_FUJ 0x00010000 /* Fujitsu */ |
| 481 | #define FLASH_MAN_BM 0x00020000 /* Bright Microelectronics */ |
| 482 | #define FLASH_MAN_MX 0x00030000 /* MXIC */ |
| 483 | #define FLASH_MAN_STM 0x00040000 |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 484 | #define FLASH_MAN_TOSH 0x00050000 /* Toshiba */ |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 485 | #define FLASH_MAN_EXCEL 0x00060000 /* Excel Semiconductor */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 486 | #define FLASH_MAN_SST 0x00100000 |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 487 | #define FLASH_MAN_INTEL 0x00300000 |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 488 | #define FLASH_MAN_MT 0x00400000 |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 489 | #define FLASH_MAN_SHARP 0x00500000 |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 490 | #define FLASH_MAN_ATM 0x00600000 |
Stefan Roese | 260421a | 2006-11-13 13:55:24 +0100 | [diff] [blame] | 491 | #define FLASH_MAN_CFI 0x01000000 |
Purna Chandra Mandal | 30fd42c | 2016-03-18 18:36:07 +0530 | [diff] [blame] | 492 | #define FLASH_MAN_MCHP 0x02000000 /* Microchip Technology */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 493 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 494 | #define FLASH_TYPEMASK 0x0000FFFF /* extract FLASH type information */ |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 495 | #define FLASH_VENDMASK 0xFFFF0000 /* extract FLASH vendor information */ |
| 496 | |
| 497 | #define FLASH_AMD_COMP 0x000FFFFF /* Up to this ID, FLASH is compatible */ |
| 498 | /* with AMD, Fujitsu and SST */ |
| 499 | /* (JEDEC standard commands ?) */ |
| 500 | |
| 501 | #define FLASH_BTYPE 0x0001 /* mask for bottom boot sector type */ |
| 502 | |
| 503 | /*----------------------------------------------------------------------- |
| 504 | * Timeout constants: |
| 505 | * |
| 506 | * We can't find any specifications for maximum chip erase times, |
| 507 | * so these values are guestimates. |
| 508 | */ |
| 509 | #define FLASH_ERASE_TIMEOUT 120000 /* timeout for erasing in ms */ |
| 510 | #define FLASH_WRITE_TIMEOUT 500 /* timeout for writes in ms */ |
| 511 | |
wdenk | ed247f4 | 2002-10-07 21:58:02 +0000 | [diff] [blame] | 512 | #endif /* _FLASH_H_ */ |