stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 1 | /* |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 3 | * |
uwe | 555dd97 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
| 5 | * Copyright (C) 2000 Ronald G. Minnich <rminnich@gmail.com> |
| 6 | * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de> |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 7 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 12 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 17 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 23 | #ifndef __FLASH_H__ |
| 24 | #define __FLASH_H__ 1 |
| 25 | |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 26 | #if defined(__GLIBC__) |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 27 | #include <sys/io.h> |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 28 | #endif |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 29 | #include <unistd.h> |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 30 | #include <stdint.h> |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 31 | #include <stdio.h> |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 32 | |
| 33 | struct flashchip { |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 34 | const char *name; |
hailfinger | 428f201 | 2007-12-31 01:49:00 +0000 | [diff] [blame] | 35 | /* With 32bit manufacture_id and model_id we can cover IDs up to |
| 36 | * (including) the 4th bank of JEDEC JEP106W Standard Manufacturer's |
| 37 | * Identification code. |
| 38 | */ |
| 39 | uint32_t manufacture_id; |
| 40 | uint32_t model_id; |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 41 | |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 42 | int total_size; |
| 43 | int page_size; |
| 44 | |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 45 | int (*probe) (struct flashchip *flash); |
| 46 | int (*erase) (struct flashchip *flash); |
| 47 | int (*write) (struct flashchip *flash, uint8_t *buf); |
| 48 | int (*read) (struct flashchip *flash, uint8_t *buf); |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 49 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 50 | /* Some flash devices have an additional register space. */ |
stepan | 7cd945e | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 51 | volatile uint8_t *virtual_memory; |
| 52 | volatile uint8_t *virtual_registers; |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 55 | extern struct flashchip flashchips[]; |
| 56 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 57 | /* |
| 58 | * Please keep this list sorted alphabetically by manufacturer. The first |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 59 | * entry of each section should be the manufacturer ID, followed by the |
| 60 | * list of devices from that manufacturer (sorted by device IDs). |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 61 | * |
hailfinger | c5036f2 | 2008-01-04 16:22:09 +0000 | [diff] [blame] | 62 | * All LPC/FWH parts (parallel flash) have 8-bit device IDs if there is no |
| 63 | * continuation code. |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 64 | * All SPI parts have 16-bit device IDs. |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 65 | */ |
| 66 | |
hailfinger | c5036f2 | 2008-01-04 16:22:09 +0000 | [diff] [blame] | 67 | #define GENERIC_DEVICE_ID 0xffff /* Only match the vendor ID */ |
| 68 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 69 | #define ALLIANCE_ID 0x52 /* Alliance Semiconductor */ |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 70 | |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 71 | #define AMD_ID 0x01 /* AMD */ |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 72 | #define AM_29F040B 0xA4 |
stuge | 590c73f | 2007-10-25 04:11:11 +0000 | [diff] [blame] | 73 | #define AM_29LV040B 0x4F |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 74 | #define AM_29F016D 0xAD |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 75 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 76 | #define AMIC_ID 0x7F37 /* AMIC */ |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 77 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 78 | #define ASD_ID 0x25 /* ASD, not listed in JEP106W */ |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 79 | #define ASD_AE49F2008 0x52 |
stepan | 8fdc812 | 2006-11-21 23:51:08 +0000 | [diff] [blame] | 80 | |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 81 | #define ATMEL_ID 0x1F /* Atmel */ |
| 82 | #define AT_29C040A 0xA4 |
stuge | b7fda65 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 83 | #define AT_29C020 0xDA |
hailfinger | 809ad7e | 2007-12-10 16:57:59 +0000 | [diff] [blame] | 84 | #define AT_49F002N 0x07 /* for AT49F002(N) */ |
| 85 | #define AT_49F002NT 0x08 /* for AT49F002(N)T */ |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 86 | |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 87 | #define CATALYST_ID 0x31 /* Catalyst */ |
| 88 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 89 | #define EMST_ID 0x8C /* EMST / EFST Elite Flash Storage*/ |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 90 | #define EMST_F49B002UA 0x00 |
| 91 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 92 | /* |
| 93 | * EN25 chips are SPI, first byte of device ID is memory type, |
| 94 | * second byte of device ID is log(bitsize)-9. |
hailfinger | 428f201 | 2007-12-31 01:49:00 +0000 | [diff] [blame] | 95 | * Vendor and device ID of EN29 series are both prefixed with 0x7F, which |
| 96 | * is the continuation code for IDs in bank 2. |
| 97 | * Vendor ID of EN25 series is NOT prefixed with 0x7F, this results in |
| 98 | * a collision with Mitsubishi. Mitsubishi once manufactured flash chips. |
| 99 | * Let's hope they are not manufacturing SPI flash chips as well. |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 100 | */ |
hailfinger | 428f201 | 2007-12-31 01:49:00 +0000 | [diff] [blame] | 101 | #define EON_ID 0x7F1C /* EON Silicon Devices */ |
| 102 | #define EON_ID_NOPREFIX 0x1C /* EON, missing 0x7F prefix */ |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 103 | #define EN_25B05 0x2010 /* 2^19 kbit or 2^16 kByte */ |
| 104 | #define EN_25B10 0x2011 |
| 105 | #define EN_25B20 0x2012 |
| 106 | #define EN_25B40 0x2013 |
| 107 | #define EN_25B80 0x2014 |
| 108 | #define EN_25B16 0x2015 |
| 109 | #define EN_25B32 0x2016 |
hailfinger | 428f201 | 2007-12-31 01:49:00 +0000 | [diff] [blame] | 110 | #define EN_29F512 0x7F21 |
| 111 | #define EN_29F010 0x7F20 |
| 112 | #define EN_29F040A 0x7F04 |
| 113 | #define EN_29LV010 0x7F6E |
| 114 | #define EN_29LV040A 0x7F4F /* EN_29LV040(A) */ |
hailfinger | 1b0fd50 | 2007-12-31 14:05:08 +0000 | [diff] [blame] | 115 | #define EN_29F002T 0x7F92 |
| 116 | #define EN_29F002B 0x7F97 |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 117 | |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 118 | #define FUJITSU_ID 0x04 /* Fujitsu */ |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 119 | /* MBM29F400TC_STRANGE has a value not mentioned in the data sheet and we |
| 120 | * try to read it from a location not mentioned in the data sheet. |
| 121 | */ |
| 122 | #define MBM29F400TC_STRANGE 0x23 |
| 123 | #define MBM29F400BC 0x7B |
| 124 | #define MBM29F400TC 0x77 |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 125 | |
| 126 | #define HYUNDAI_ID 0xAD /* Hyundai */ |
| 127 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 128 | #define IMT_ID 0x7F1F /* Integrated Memory Technologies */ |
| 129 | #define IM_29F004B 0xAE |
| 130 | #define IM_29F004T 0xAF |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 131 | |
| 132 | #define INTEL_ID 0x89 /* Intel */ |
| 133 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 134 | #define ISSI_ID 0xD5 /* ISSI Integrated Silicon Solutions */ |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 135 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 136 | #define MSYSTEMS_ID 0x156F /* M-Systems, not listed in JEP106W */ |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 137 | #define MSYSTEMS_MD2200 0xDB |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 138 | #define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */ |
| 139 | #define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */ |
| 140 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 141 | /* |
| 142 | * MX25 chips are SPI, first byte of device ID is memory type, |
| 143 | * second byte of device ID is log(bitsize)-9. |
| 144 | */ |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 145 | #define MX_ID 0xC2 /* Macronix (MX) */ |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 146 | #define MX_25L512 0x2010 /* 2^19 kbit or 2^16 kByte */ |
| 147 | #define MX_25L1005 0x2011 |
| 148 | #define MX_25L2005 0x2012 |
| 149 | #define MX_25L4005 0x2013 /* MX25L4005{,A} */ |
| 150 | #define MX_25L8005 0x2014 |
| 151 | #define MX_25L1605 0x2015 /* MX25L1605{,A,D} */ |
| 152 | #define MX_25L3205 0x2016 /* MX25L3205{,A} */ |
| 153 | #define MX_25L6405 0x2017 /* MX25L3205{,D} */ |
| 154 | #define MX_25L1635D 0x2415 |
| 155 | #define MX_25L3235D 0x2416 |
hailfinger | 1b24dbb | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 156 | #define MX_29F002 0xB0 |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 157 | |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 158 | /* Programmable Micro Corp is listed in JEP106W in bank 2, so it should have |
| 159 | * a 0x7F continuation code prefix. |
| 160 | */ |
hailfinger | 492e317 | 2008-02-06 22:07:58 +0000 | [diff] [blame] | 161 | #define PMC_ID 0x7F9D /* PMC */ |
| 162 | #define PMC_ID_NOPREFIX 0x9D /* PMC, missing 0x7F prefix */ |
| 163 | #define PMC_25LV512 0x7B |
| 164 | #define PMC_25LV010 0x7C |
| 165 | #define PMC_25LV020 0x7D |
| 166 | #define PMC_25LV040 0x7E |
| 167 | #define PMC_25LV080B 0x13 |
| 168 | #define PMC_25LV016B 0x14 |
| 169 | #define PMC_39LV512 0x1B |
| 170 | #define PMC_39F010 0x1C /* also Pm39LV010 */ |
| 171 | #define PMC_39LV020 0x3D |
| 172 | #define PMC_39LV040 0x3E |
| 173 | #define PMC_39F020 0x4D |
| 174 | #define PMC_39F040 0x4E |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 175 | #define PMC_49FL002 0x6D |
| 176 | #define PMC_49FL004 0x6E |
| 177 | |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 178 | #define SHARP_ID 0xB0 /* Sharp */ |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 179 | #define SHARP_LHF00L04 0xCF |
rminnich | 5f8fd45 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 180 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 181 | /* |
hailfinger | 40bc369 | 2008-01-25 01:52:45 +0000 | [diff] [blame] | 182 | * Spansion was previously a joint venture of AMD and Fujitsu. |
| 183 | * S25 chips are SPI. The first device ID byte is memory type and |
| 184 | * the second device ID byte is memory capacity. |
| 185 | */ |
| 186 | #define SPANSION_ID 0x01 /* Spansion */ |
| 187 | #define SPANSION_S25FL016A 0x0214 |
| 188 | |
| 189 | /* |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 190 | * SST25 chips are SPI, first byte of device ID is memory type, second |
| 191 | * byte of device ID is related to log(bitsize) at least for some chips. |
| 192 | */ |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 193 | #define SST_ID 0xBF /* SST */ |
hailfinger | 1b24dbb | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 194 | #define SST_25WF512 0x2501 |
| 195 | #define SST_25WF010 0x2502 |
| 196 | #define SST_25WF020 0x2503 |
| 197 | #define SST_25WF040 0x2504 |
| 198 | #define SST_25VF016B 0x2541 |
| 199 | #define SST_25VF032B 0x254A |
| 200 | #define SST_25VF040B 0x258D |
| 201 | #define SST_25VF080B 0x258E |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 202 | #define SST_29EE020A 0x10 |
| 203 | #define SST_28SF040 0x04 |
| 204 | #define SST_39SF010 0xB5 |
| 205 | #define SST_39SF020 0xB6 |
| 206 | #define SST_39SF040 0xB7 |
| 207 | #define SST_39VF020 0xD6 |
| 208 | #define SST_49LF040B 0x50 |
| 209 | #define SST_49LF040 0x51 |
| 210 | #define SST_49LF020A 0x52 |
| 211 | #define SST_49LF080A 0x5B |
| 212 | #define SST_49LF002A 0x57 |
| 213 | #define SST_49LF003A 0x1B |
| 214 | #define SST_49LF004A 0x60 |
| 215 | #define SST_49LF008A 0x5A |
| 216 | #define SST_49LF004C 0x54 |
| 217 | #define SST_49LF008C 0x59 |
| 218 | #define SST_49LF016C 0x5C |
| 219 | #define SST_49LF160C 0x4C |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 220 | |
hailfinger | a969856 | 2007-12-16 21:15:27 +0000 | [diff] [blame] | 221 | /* |
| 222 | * ST25P chips are SPI, first byte of device ID is memory type, second |
| 223 | * byte of device ID is related to log(bitsize) at least for some chips. |
| 224 | */ |
hailfinger | a0d2a08 | 2007-12-31 01:18:26 +0000 | [diff] [blame] | 225 | #define ST_ID 0x20 /* ST / SGS/Thomson */ |
hailfinger | e572d0e | 2007-12-17 22:22:40 +0000 | [diff] [blame] | 226 | #define ST_M25P05A 0x2010 |
| 227 | #define ST_M25P10A 0x2011 |
| 228 | #define ST_M25P20 0x2012 |
| 229 | #define ST_M25P40 0x2013 |
hailfinger | a969856 | 2007-12-16 21:15:27 +0000 | [diff] [blame] | 230 | #define ST_M25P80 0x2014 |
hailfinger | e572d0e | 2007-12-17 22:22:40 +0000 | [diff] [blame] | 231 | #define ST_M25P16 0x2015 |
| 232 | #define ST_M25P32 0x2016 |
| 233 | #define ST_M25P64 0x2017 |
| 234 | #define ST_M25P128 0x2018 |
uwe | 7657c70 | 2007-07-25 17:55:45 +0000 | [diff] [blame] | 235 | #define ST_M50FLW040A 0x08 |
| 236 | #define ST_M50FLW040B 0x28 |
| 237 | #define ST_M50FLW080A 0x80 |
| 238 | #define ST_M50FLW080B 0x81 |
uwe | 497bbe1 | 2007-07-24 18:18:05 +0000 | [diff] [blame] | 239 | #define ST_M50FW040 0x2C |
uwe | 7657c70 | 2007-07-25 17:55:45 +0000 | [diff] [blame] | 240 | #define ST_M50FW080 0x2D |
| 241 | #define ST_M50FW016 0x2E |
| 242 | #define ST_M50LPW116 0x30 |
stuge | b7fda65 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 243 | #define ST_M29F002B 0x34 |
| 244 | #define ST_M29F002T 0xB0 /* M29F002T / M29F002NT */ |
uwe | 8e1a2ba | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 245 | #define ST_M29F400BT 0xD5 |
stuge | b7fda65 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 246 | #define ST_M29F040B 0xE2 |
uwe | 7657c70 | 2007-07-25 17:55:45 +0000 | [diff] [blame] | 247 | #define ST_M29W010B 0x23 |
uwe | 497bbe1 | 2007-07-24 18:18:05 +0000 | [diff] [blame] | 248 | #define ST_M29W040B 0xE3 |
rminnich | 8d3ff91 | 2003-10-25 17:01:29 +0000 | [diff] [blame] | 249 | |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 250 | #define SYNCMOS_ID 0x40 /* SyncMOS and Mosel Vitelic */ |
uwe | e230870 | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 251 | #define S29C51001T 0x01 |
| 252 | #define S29C51002T 0x02 |
| 253 | #define S29C51004T 0x03 |
| 254 | #define S29C31004T 0x63 |
uwe | bad1770 | 2006-11-20 20:03:07 +0000 | [diff] [blame] | 255 | |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 256 | #define TI_ID 0x97 /* Texas Instruments */ |
| 257 | |
hailfinger | b8f7e88 | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 258 | /* |
| 259 | * W25X chips are SPI, first byte of device ID is memory type, second |
| 260 | * byte of device ID is related to log(bitsize). |
| 261 | */ |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 262 | #define WINBOND_ID 0xDA /* Winbond */ |
hailfinger | b8f7e88 | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 263 | #define WINBOND_NEX_ID 0xEF /* Winbond (ex Nexcom) serial flash devices */ |
| 264 | #define W_25X10 0x3011 |
| 265 | #define W_25X20 0x3012 |
| 266 | #define W_25X40 0x3013 |
| 267 | #define W_25X80 0x3014 |
hailfinger | 1d1810d | 2007-10-22 20:36:16 +0000 | [diff] [blame] | 268 | #define W_29C011 0xC1 |
| 269 | #define W_29C020C 0x45 |
| 270 | #define W_29C040P 0x46 |
| 271 | #define W_29EE011 0xC1 |
| 272 | #define W_39V040FA 0x34 |
| 273 | #define W_39V040A 0x3D |
| 274 | #define W_39V040B 0x54 |
| 275 | #define W_39V080A 0xD0 |
| 276 | #define W_49F002U 0x0B |
| 277 | #define W_49V002A 0xB0 |
| 278 | #define W_49V002FA 0x32 |
| 279 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 280 | /* udelay.c */ |
stepan | 782fb17 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 281 | void myusec_delay(int time); |
| 282 | void myusec_calibrate_delay(); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 283 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 284 | /* PCI handling for board/chipset_enable */ |
| 285 | struct pci_access *pacc; |
stepan | 782fb17 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 286 | struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 287 | struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device, |
| 288 | uint16_t card_vendor, uint16_t card_device); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 289 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 290 | /* board_enable.c */ |
| 291 | int board_flash_enable(const char *vendor, const char *part); |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 292 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 293 | /* chipset_enable.c */ |
| 294 | int chipset_flash_enable(void); |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 295 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 296 | /* Physical memory mapping device */ |
stepan | 5c3f138 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 297 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
| 298 | # define MEM_DEV "/dev/xsvc" |
| 299 | #else |
| 300 | # define MEM_DEV "/dev/mem" |
| 301 | #endif |
| 302 | |
stepan | 782fb17 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 303 | extern int fd_mem; |
| 304 | |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 305 | /* debug.c */ |
| 306 | extern int verbose; |
| 307 | #define printf_debug(x...) { if (verbose) printf(x); } |
| 308 | |
| 309 | /* flashrom.c */ |
| 310 | int map_flash_registers(struct flashchip *flash); |
| 311 | |
| 312 | /* layout.c */ |
| 313 | int show_id(uint8_t *bios, int size); |
| 314 | int read_romlayout(char *name); |
| 315 | int find_romentry(char *name); |
| 316 | int handle_romentries(uint8_t *buffer, uint8_t *content); |
| 317 | |
| 318 | /* lbtable.c */ |
stepan | 1037f6f | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 319 | int coreboot_init(void); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 320 | extern char *lb_part, *lb_vendor; |
| 321 | |
stepan | 745615e | 2007-10-15 21:44:47 +0000 | [diff] [blame] | 322 | /* spi.c */ |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 323 | int probe_spi(struct flashchip *flash); |
hailfinger | 35cc816 | 2007-10-16 21:09:06 +0000 | [diff] [blame] | 324 | int it87xx_probe_spi_flash(const char *name); |
hailfinger | 1b24dbb | 2007-10-22 16:15:28 +0000 | [diff] [blame] | 325 | int generic_spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr); |
hailfinger | f71c0ac | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 326 | void generic_spi_write_enable(); |
| 327 | void generic_spi_write_disable(); |
hailfinger | 3900c77 | 2007-12-17 14:33:32 +0000 | [diff] [blame] | 328 | int generic_spi_chip_erase_c7(struct flashchip *flash); |
hailfinger | f71c0ac | 2007-10-18 00:24:07 +0000 | [diff] [blame] | 329 | int generic_spi_chip_write(struct flashchip *flash, uint8_t *buf); |
hailfinger | b8f7e88 | 2008-01-19 00:04:46 +0000 | [diff] [blame] | 330 | int generic_spi_chip_read(struct flashchip *flash, uint8_t *buf); |
ward | 1184445 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 331 | |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 332 | /* 82802ab.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 333 | int probe_82802ab(struct flashchip *flash); |
| 334 | int erase_82802ab(struct flashchip *flash); |
| 335 | int write_82802ab(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 336 | |
| 337 | /* am29f040b.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 338 | int probe_29f040b(struct flashchip *flash); |
| 339 | int erase_29f040b(struct flashchip *flash); |
| 340 | int write_29f040b(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 341 | |
| 342 | /* jedec.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 343 | void toggle_ready_jedec(volatile uint8_t *dst); |
| 344 | void data_polling_jedec(volatile uint8_t *dst, uint8_t data); |
| 345 | void unprotect_jedec(volatile uint8_t *bios); |
| 346 | void protect_jedec(volatile uint8_t *bios); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 347 | int write_byte_program_jedec(volatile uint8_t *bios, uint8_t *src, |
| 348 | volatile uint8_t *dst); |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 349 | int probe_jedec(struct flashchip *flash); |
| 350 | int erase_chip_jedec(struct flashchip *flash); |
| 351 | int write_jedec(struct flashchip *flash, uint8_t *buf); |
| 352 | int erase_sector_jedec(volatile uint8_t *bios, unsigned int page); |
| 353 | int erase_block_jedec(volatile uint8_t *bios, unsigned int page); |
| 354 | int write_sector_jedec(volatile uint8_t *bios, uint8_t *src, |
| 355 | volatile uint8_t *dst, unsigned int page_size); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 356 | |
| 357 | /* m29f400bt.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 358 | int probe_m29f400bt(struct flashchip *flash); |
| 359 | int erase_m29f400bt(struct flashchip *flash); |
| 360 | int block_erase_m29f400bt(volatile uint8_t *bios, |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 361 | volatile uint8_t *dst); |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 362 | int write_m29f400bt(struct flashchip *flash, uint8_t *buf); |
stepan | 1037f6f | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 363 | int write_coreboot_m29f400bt(struct flashchip *flash, uint8_t *buf); |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 364 | void toggle_ready_m29f400bt(volatile uint8_t *dst); |
| 365 | void data_polling_m29f400bt(volatile uint8_t *dst, uint8_t data); |
| 366 | void protect_m29f400bt(volatile uint8_t *bios); |
| 367 | void write_page_m29f400bt(volatile uint8_t *bios, uint8_t *src, |
| 368 | volatile uint8_t *dst, int page_size); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 369 | |
| 370 | /* mx29f002.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 371 | int probe_29f002(struct flashchip *flash); |
| 372 | int erase_29f002(struct flashchip *flash); |
| 373 | int write_29f002(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 374 | |
| 375 | /* pm49fl004.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 376 | int probe_49fl004(struct flashchip *flash); |
| 377 | int erase_49fl004(struct flashchip *flash); |
| 378 | int write_49fl004(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 379 | |
| 380 | /* sharplhf00l04.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 381 | int probe_lhf00l04(struct flashchip *flash); |
| 382 | int erase_lhf00l04(struct flashchip *flash); |
| 383 | int write_lhf00l04(struct flashchip *flash, uint8_t *buf); |
| 384 | void toggle_ready_lhf00l04(volatile uint8_t *dst); |
| 385 | void data_polling_lhf00l04(volatile uint8_t *dst, uint8_t data); |
| 386 | void protect_lhf00l04(volatile uint8_t *bios); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 387 | |
| 388 | /* sst28sf040.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 389 | int probe_28sf040(struct flashchip *flash); |
| 390 | int erase_28sf040(struct flashchip *flash); |
| 391 | int write_28sf040(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 392 | |
| 393 | /* sst39sf020.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 394 | int probe_39sf020(struct flashchip *flash); |
| 395 | int write_39sf020(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 396 | |
| 397 | /* sst49lf040.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 398 | int erase_49lf040(struct flashchip *flash); |
| 399 | int write_49lf040(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 400 | |
| 401 | /* sst49lfxxxc.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 402 | int probe_49lfxxxc(struct flashchip *flash); |
| 403 | int erase_49lfxxxc(struct flashchip *flash); |
| 404 | int write_49lfxxxc(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 405 | |
| 406 | /* sst_fwhub.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 407 | int probe_sst_fwhub(struct flashchip *flash); |
| 408 | int erase_sst_fwhub(struct flashchip *flash); |
| 409 | int write_sst_fwhub(struct flashchip *flash, uint8_t *buf); |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 410 | |
uwe | 2d82894 | 2007-08-30 10:17:50 +0000 | [diff] [blame] | 411 | /* w29ee011.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 412 | int probe_w29ee011(struct flashchip *flash); |
uwe | 2d82894 | 2007-08-30 10:17:50 +0000 | [diff] [blame] | 413 | |
uwe | 4529d20 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 414 | /* w49f002u.c */ |
uwe | 719e3ca | 2007-09-09 20:24:29 +0000 | [diff] [blame] | 415 | int write_49f002(struct flashchip *flash, uint8_t *buf); |
stepan | 15e64bc | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 416 | |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 417 | #endif /* !__FLASH_H__ */ |