blob: 5e1a3af0603b8c49c23f25c9e28238489f0b00c6 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
2 * flashchips.c: flash programming utility - flash devices
3 *
4 * Copyright 2000 Silicon Integrated System Corporation
5 * Copyright 2004 Tyan Corp
Stefan Reinauerce532972007-05-23 17:20:56 +00006 * Copyright 2005-2007 coresystems GmbH <stepan@openbios.org>
Ollie Lho184a4042005-11-26 21:55:36 +00007 *
Stefan Reinauerce532972007-05-23 17:20:56 +00008 * 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 Lho184a4042005-11-26 21:55:36 +000012 *
Stefan Reinauerce532972007-05-23 17:20:56 +000013 * 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 Lho184a4042005-11-26 21:55:36 +000017 *
Stefan Reinauerce532972007-05-23 17:20:56 +000018 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
Ollie Lho184a4042005-11-26 21:55:36 +000021 *
22 */
23
24#include "flash.h"
25#include "jedec.h"
26#include "m29f400bt.h"
27#include "82802ab.h"
28#ifndef DISABLE_DOC
29#include "msys_doc.h"
30#endif
31#include "am29f040b.h"
32#include "sst28sf040.h"
Yinghai Luca782972007-01-22 20:21:17 +000033#include "sst49lfxxxc.h"
Ollie Lho184a4042005-11-26 21:55:36 +000034#include "w49f002u.h"
35#include "sst39sf020.h"
36#include "sst49lf040.h"
37#include "pm49fl004.h"
38#include "mx29f002.h"
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000039#include "sharplhf00l04.h"
Ollie Lho184a4042005-11-26 21:55:36 +000040#include "sst_fwhub.h"
41
42struct flashchip flashchips[] = {
Stefan Reinauerce532972007-05-23 17:20:56 +000043 {"Am29F040B", AMD_ID, AM_29F040B, 512, 64 * 1024,
44 probe_29f040b, erase_29f040b, write_29f040b},
45 {"Am29F016D", AMD_ID, AM_29F016D, 2048, 64 * 1024,
46 probe_29f040b, erase_29f040b, write_29f040b},
47 {"AE49F2008", ASD_ID, ASD_AE49F2008, 256, 128,
48 probe_jedec, erase_chip_jedec, write_jedec},
49 {"At29C040A", ATMEL_ID, AT_29C040A, 512, 256,
50 probe_jedec, erase_chip_jedec, write_jedec},
51 {"At29C020", ATMEL_ID, AT_29C020, 256, 256,
52 probe_jedec, erase_chip_jedec, write_jedec},
53 {"Mx29f002", MX_ID, MX_29F002, 256, 64 * 1024,
54 probe_29f002, erase_29f002, write_29f002},
55 {"SST29EE020A", SST_ID, SST_29EE020A, 256, 128,
56 probe_jedec, erase_chip_jedec, write_jedec},
57 {"SST28SF040A", SST_ID, SST_28SF040, 512, 256,
58 probe_28sf040, erase_28sf040, write_28sf040},
59 {"SST39SF010A", SST_ID, SST_39SF010, 128, 4096,
60 probe_jedec, erase_chip_jedec, write_39sf020},
61 {"SST39SF020A", SST_ID, SST_39SF020, 256, 4096,
62 probe_jedec, erase_chip_jedec, write_39sf020},
63 {"SST39SF040", SST_ID, SST_39SF040, 512, 4096,
64 probe_jedec, erase_chip_jedec, write_39sf020},
65 {"SST39VF020", SST_ID, SST_39VF020, 256, 4096,
66 probe_jedec, erase_chip_jedec, write_39sf020},
Scott Tsai023af762006-03-31 11:36:06 +000067// assume similar to 004B, ignoring data sheet
Stefan Reinauerce532972007-05-23 17:20:56 +000068 {"SST49LF040B", SST_ID, SST_49LF040B, 512, 64 * 1024,
69 probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub},
Scott Tsai023af762006-03-31 11:36:06 +000070
Stefan Reinauerce532972007-05-23 17:20:56 +000071 {"SST49LF040", SST_ID, SST_49LF040, 512, 4096,
72 probe_jedec, erase_49lf040, write_49lf040},
73 {"SST49LF020A", SST_ID, SST_49LF020A, 256, 16 * 1024,
74 probe_jedec, erase_49lf040, write_49lf040},
75 {"SST49LF080A", SST_ID, SST_49LF080A, 1024, 4096,
76 probe_jedec, erase_49lf040, write_49lf040},
77 {"SST49LF002A/B", SST_ID, SST_49LF002A, 256, 16 * 1024,
78 probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub},
79 {"SST49LF003A/B", SST_ID, SST_49LF003A, 384, 64 * 1024,
80 probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub},
81 {"SST49LF004A/B", SST_ID, SST_49LF004A, 512, 64 * 1024,
82 probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub},
83 {"SST49LF008A", SST_ID, SST_49LF008A, 1024, 64 * 1024 ,
84 probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub},
85 {"Pm49FL002", PMC_ID, PMC_49FL002, 256, 16 * 1024,
86 probe_jedec, erase_chip_jedec, write_49fl004},
87 {"SST49LF004C", SST_ID, SST_49LF004C, 512, 4 * 1024,
88 probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc},
89 {"SST49LF008C", SST_ID, SST_49LF008C, 1024, 4 * 1024 ,
90 probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc},
91 {"SST49LF016C", SST_ID, SST_49LF016C, 2048, 4 * 1024 ,
92 probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc},
93 {"SST49LF160C", SST_ID, SST_49LF160C, 2048, 4 * 1024 ,
94 probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc},
95 {"Pm49FL004", PMC_ID, PMC_49FL004, 512, 64 * 1024,
96 probe_jedec, erase_chip_jedec, write_49fl004},
97 {"W29C011", WINBOND_ID, W_29C011, 128, 128,
98 probe_jedec, erase_chip_jedec, write_jedec},
99 {"W29C020C", WINBOND_ID, W_29C020C, 256, 128,
100 probe_jedec, erase_chip_jedec, write_jedec},
101 {"W49F002U", WINBOND_ID, W_49F002U, 256, 128,
102 probe_jedec, erase_chip_jedec, write_49f002},
103 {"W49V002A", WINBOND_ID, W_49V002A, 256, 128,
104 probe_jedec, erase_chip_jedec, write_49f002},
105 {"W49V002FA", WINBOND_ID, W_49V002FA, 256, 128,
106 probe_jedec, erase_chip_jedec, write_49f002},
107 {"W39V040FA", WINBOND_ID, W_39V040FA, 512, 64*1024,
108 probe_jedec, erase_chip_jedec, write_39sf020},
109 {"W39V040A", WINBOND_ID, W_39V040A, 512, 64*1024,
110 probe_jedec, erase_chip_jedec, write_39sf020},
111 {"W39V040B", WINBOND_ID, W_39V040B, 512, 64*1024,
112 probe_jedec, erase_chip_jedec, write_39sf020},
113 {"W39V080A", WINBOND_ID, W_39V080A, 1024, 64*1024,
114 probe_jedec, erase_chip_jedec, write_39sf020},
115 {"M29F002B", ST_ID, ST_M29F002B, 256, 64 * 1024,
116 probe_jedec, erase_chip_jedec, write_jedec},
Carl-Daniel Hailfingere087fa22007-07-24 18:18:05 +0000117 {"M50FW040", ST_ID, ST_M50FW040, 512, 64 * 1024,
118 probe_jedec, erase_chip_jedec, write_jedec},
119 {"M29W040B", ST_ID, ST_M29W040B, 512, 64 * 1024,
120 probe_jedec, erase_chip_jedec, write_jedec},
Stefan Reinauerce532972007-05-23 17:20:56 +0000121 {"M29F002T/NT", ST_ID, ST_M29F002T, 256, 64 * 1024,
122 probe_jedec, erase_chip_jedec, write_jedec},
123 {"M29F400BT", ST_ID, ST_M29F400BT, 512, 64 * 1024,
124 probe_m29f400bt, erase_m29f400bt, write_linuxbios_m29f400bt},
125 {"M29F040B", ST_ID, ST_M29F040B, 512, 64 * 1024,
126 probe_29f040b, erase_29f040b, write_29f040b},
127 {"82802ab", 137, 173, 512, 64 * 1024,
128 probe_82802ab, erase_82802ab, write_82802ab},
129 {"82802ac", 137, 172, 1024, 64 * 1024,
130 probe_82802ab, erase_82802ab, write_82802ab},
131 {"F49B002UA", EMST_ID, EMST_F49B002UA, 256, 4096,
132 probe_jedec, erase_chip_jedec, write_49f002},
Ollie Lho184a4042005-11-26 21:55:36 +0000133#ifndef DISABLE_DOC
134 {"MD-2802 (M-Systems DiskOnChip Millennium Module)",
Stefan Reinauerce532972007-05-23 17:20:56 +0000135 MSYSTEMS_ID, MSYSTEMS_MD2802,8, 8 * 1024,
Ollie Lho184a4042005-11-26 21:55:36 +0000136 probe_md2802, erase_md2802, write_md2802, read_md2802},
137#endif
Stefan Reinauerce532972007-05-23 17:20:56 +0000138 {"LHF00L04", SHARP_ID, SHARP_LHF00L04, 1024, 64 * 1024,
139 probe_lhf00l04, erase_lhf00l04, write_lhf00l04},
140 {"S29C51001T", SYNCMOS_ID, S29C51001T, 128, 128,
141 probe_jedec, erase_chip_jedec, write_49f002},
142 {"S29C51002T", SYNCMOS_ID, S29C51002T, 256, 128,
143 probe_jedec, erase_chip_jedec, write_49f002},
144 {"S29C51004T", SYNCMOS_ID, S29C51004T, 512, 128,
145 probe_jedec, erase_chip_jedec, write_49f002},
146 {"S29C31004T", SYNCMOS_ID, S29C31004T, 512, 128,
147 probe_jedec, erase_chip_jedec, write_49f002},
Ollie Lho184a4042005-11-26 21:55:36 +0000148 {NULL,}
149};
150
151