Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
| 5 | * Copyright (C) 2004 Tyan Corp |
| 6 | * Copyright (C) 2005-2007 coresystems GmbH <stepan@openbios.org> |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 7 | * |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +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. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 12 | * |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +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. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 17 | * |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +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 |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include "flash.h" |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 24 | #ifndef DISABLE_DOC |
| 25 | #include "msys_doc.h" |
| 26 | #endif |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 27 | |
| 28 | struct flashchip flashchips[] = { |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 29 | {"Am29F040B", AMD_ID, AM_29F040B, 512, 64 * 1024, |
| 30 | probe_29f040b, erase_29f040b, write_29f040b}, |
| 31 | {"Am29F016D", AMD_ID, AM_29F016D, 2048, 64 * 1024, |
| 32 | probe_29f040b, erase_29f040b, write_29f040b}, |
| 33 | {"AE49F2008", ASD_ID, ASD_AE49F2008, 256, 128, |
| 34 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 35 | {"At29C040A", ATMEL_ID, AT_29C040A, 512, 256, |
| 36 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 37 | {"At29C020", ATMEL_ID, AT_29C020, 256, 256, |
| 38 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 39 | {"Mx29f002", MX_ID, MX_29F002, 256, 64 * 1024, |
| 40 | probe_29f002, erase_29f002, write_29f002}, |
Carl-Daniel Hailfinger | e151499 | 2007-10-02 15:49:25 +0000 | [diff] [blame] | 41 | {"MX25L4005", MX_ID, MX_25L4005, 512, 4 * 1024, |
| 42 | probe_spi, NULL, NULL}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 43 | {"SST29EE020A", SST_ID, SST_29EE020A, 256, 128, |
| 44 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 45 | {"SST28SF040A", SST_ID, SST_28SF040, 512, 256, |
| 46 | probe_28sf040, erase_28sf040, write_28sf040}, |
| 47 | {"SST39SF010A", SST_ID, SST_39SF010, 128, 4096, |
| 48 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 49 | {"SST39SF020A", SST_ID, SST_39SF020, 256, 4096, |
| 50 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 51 | {"SST39SF040", SST_ID, SST_39SF040, 512, 4096, |
| 52 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 53 | {"SST39VF020", SST_ID, SST_39VF020, 256, 4096, |
| 54 | probe_jedec, erase_chip_jedec, write_39sf020}, |
Scott Tsai | 023af76 | 2006-03-31 11:36:06 +0000 | [diff] [blame] | 55 | // assume similar to 004B, ignoring data sheet |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 56 | {"SST49LF040B", SST_ID, SST_49LF040B, 512, 64 * 1024, |
| 57 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub}, |
Scott Tsai | 023af76 | 2006-03-31 11:36:06 +0000 | [diff] [blame] | 58 | |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 59 | {"SST49LF040", SST_ID, SST_49LF040, 512, 4096, |
| 60 | probe_jedec, erase_49lf040, write_49lf040}, |
| 61 | {"SST49LF020A", SST_ID, SST_49LF020A, 256, 16 * 1024, |
| 62 | probe_jedec, erase_49lf040, write_49lf040}, |
| 63 | {"SST49LF080A", SST_ID, SST_49LF080A, 1024, 4096, |
| 64 | probe_jedec, erase_49lf040, write_49lf040}, |
| 65 | {"SST49LF002A/B", SST_ID, SST_49LF002A, 256, 16 * 1024, |
| 66 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub}, |
| 67 | {"SST49LF003A/B", SST_ID, SST_49LF003A, 384, 64 * 1024, |
| 68 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub}, |
| 69 | {"SST49LF004A/B", SST_ID, SST_49LF004A, 512, 64 * 1024, |
| 70 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub}, |
| 71 | {"SST49LF008A", SST_ID, SST_49LF008A, 1024, 64 * 1024 , |
| 72 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 73 | {"SST49LF004C", SST_ID, SST_49LF004C, 512, 4 * 1024, |
| 74 | probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc}, |
| 75 | {"SST49LF008C", SST_ID, SST_49LF008C, 1024, 4 * 1024 , |
| 76 | probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc}, |
| 77 | {"SST49LF016C", SST_ID, SST_49LF016C, 2048, 4 * 1024 , |
| 78 | probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc}, |
| 79 | {"SST49LF160C", SST_ID, SST_49LF160C, 2048, 4 * 1024 , |
| 80 | probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc}, |
Carl-Daniel Hailfinger | f41c66f | 2007-07-25 17:55:45 +0000 | [diff] [blame] | 81 | {"Pm49FL002", PMC_ID, PMC_49FL002, 256, 16 * 1024, |
| 82 | probe_jedec, erase_chip_jedec, write_49fl004}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 83 | {"Pm49FL004", PMC_ID, PMC_49FL004, 512, 64 * 1024, |
| 84 | probe_jedec, erase_chip_jedec, write_49fl004}, |
| 85 | {"W29C011", WINBOND_ID, W_29C011, 128, 128, |
| 86 | probe_jedec, erase_chip_jedec, write_jedec}, |
Markus Boas | 05e7f45 | 2007-08-30 10:11:08 +0000 | [diff] [blame] | 87 | {"W29C040P", WINBOND_ID, W_29C040P, 512, 256, |
| 88 | probe_jedec, erase_chip_jedec, write_jedec}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 89 | {"W29C020C", WINBOND_ID, W_29C020C, 256, 128, |
| 90 | probe_jedec, erase_chip_jedec, write_jedec}, |
Markus Boas | d2ac6fc | 2007-08-30 10:17:50 +0000 | [diff] [blame] | 91 | {"W29EE011", WINBOND_ID, W_29C011, 128, 128, |
| 92 | probe_w29ee011,erase_chip_jedec, write_jedec}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 93 | {"W49F002U", WINBOND_ID, W_49F002U, 256, 128, |
| 94 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 95 | {"W49V002A", WINBOND_ID, W_49V002A, 256, 128, |
| 96 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 97 | {"W49V002FA", WINBOND_ID, W_49V002FA, 256, 128, |
| 98 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 99 | {"W39V040FA", WINBOND_ID, W_39V040FA, 512, 64*1024, |
| 100 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 101 | {"W39V040A", WINBOND_ID, W_39V040A, 512, 64*1024, |
| 102 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 103 | {"W39V040B", WINBOND_ID, W_39V040B, 512, 64*1024, |
| 104 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 105 | {"W39V080A", WINBOND_ID, W_39V080A, 1024, 64*1024, |
| 106 | probe_jedec, erase_chip_jedec, write_39sf020}, |
| 107 | {"M29F002B", ST_ID, ST_M29F002B, 256, 64 * 1024, |
| 108 | probe_jedec, erase_chip_jedec, write_jedec}, |
Carl-Daniel Hailfinger | e087fa2 | 2007-07-24 18:18:05 +0000 | [diff] [blame] | 109 | {"M50FW040", ST_ID, ST_M50FW040, 512, 64 * 1024, |
| 110 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 111 | {"M29W040B", ST_ID, ST_M29W040B, 512, 64 * 1024, |
| 112 | probe_jedec, erase_chip_jedec, write_jedec}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 113 | {"M29F002T/NT", ST_ID, ST_M29F002T, 256, 64 * 1024, |
| 114 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 115 | {"M29F400BT", ST_ID, ST_M29F400BT, 512, 64 * 1024, |
| 116 | probe_m29f400bt, erase_m29f400bt, write_linuxbios_m29f400bt}, |
Carl-Daniel Hailfinger | f41c66f | 2007-07-25 17:55:45 +0000 | [diff] [blame] | 117 | {"M50FLW040A", ST_ID, ST_M50FLW040A, 512, 64 * 1024, |
| 118 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 119 | {"M50FLW040B", ST_ID, ST_M50FLW040B, 512, 64 * 1024, |
| 120 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 121 | {"M50FLW080A", ST_ID, ST_M50FLW080A, 1024, 64 * 1024, |
| 122 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 123 | {"M50FLW080B", ST_ID, ST_M50FLW080B, 1024, 64 * 1024, |
| 124 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 125 | {"M50FW080", ST_ID, ST_M50FW080, 1024, 64 * 1024, |
| 126 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 127 | {"M50FW016", ST_ID, ST_M50FW016, 2048, 64 * 1024, |
| 128 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 129 | {"M50LPW116", ST_ID, ST_M50LPW116, 2048, 64 * 1024, |
| 130 | probe_jedec, erase_chip_jedec, write_jedec}, |
| 131 | {"M29W010B", ST_ID, ST_M29W010B, 128, 16 * 1024, |
| 132 | probe_jedec, erase_chip_jedec, write_jedec}, |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 133 | {"M29F040B", ST_ID, ST_M29F040B, 512, 64 * 1024, |
| 134 | probe_29f040b, erase_29f040b, write_29f040b}, |
| 135 | {"82802ab", 137, 173, 512, 64 * 1024, |
| 136 | probe_82802ab, erase_82802ab, write_82802ab}, |
| 137 | {"82802ac", 137, 172, 1024, 64 * 1024, |
| 138 | probe_82802ab, erase_82802ab, write_82802ab}, |
| 139 | {"F49B002UA", EMST_ID, EMST_F49B002UA, 256, 4096, |
| 140 | probe_jedec, erase_chip_jedec, write_49f002}, |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 141 | #ifndef DISABLE_DOC |
| 142 | {"MD-2802 (M-Systems DiskOnChip Millennium Module)", |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 143 | MSYSTEMS_ID, MSYSTEMS_MD2802,8, 8 * 1024, |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 144 | probe_md2802, erase_md2802, write_md2802, read_md2802}, |
| 145 | #endif |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 146 | {"LHF00L04", SHARP_ID, SHARP_LHF00L04, 1024, 64 * 1024, |
| 147 | probe_lhf00l04, erase_lhf00l04, write_lhf00l04}, |
| 148 | {"S29C51001T", SYNCMOS_ID, S29C51001T, 128, 128, |
| 149 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 150 | {"S29C51002T", SYNCMOS_ID, S29C51002T, 256, 128, |
| 151 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 152 | {"S29C51004T", SYNCMOS_ID, S29C51004T, 512, 128, |
| 153 | probe_jedec, erase_chip_jedec, write_49f002}, |
| 154 | {"S29C31004T", SYNCMOS_ID, S29C31004T, 512, 128, |
| 155 | probe_jedec, erase_chip_jedec, write_49f002}, |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 156 | {NULL,} |
| 157 | }; |