blob: 47cdc325ad676d15150b855187a03ed2ee208172 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp
Stefan Reinauer4c390c82008-07-02 13:33:09 +00006 * Copyright (C) 2005-2008 coresystems GmbH <stepan@openbios.org>
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00007 * Copyright (C) 2006-2009 Carl-Daniel Hailfinger
Sean Nelsonc57a9202010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Uwe Hermannd1107642007-08-29 17:52:32 +00009 *
Stefan Reinauerce532972007-05-23 17:20:56 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Ollie Lho184a4042005-11-26 21:55:36 +000014 *
Stefan Reinauerce532972007-05-23 17:20:56 +000015 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Ollie Lho184a4042005-11-26 21:55:36 +000019 *
Stefan Reinauerce532972007-05-23 17:20:56 +000020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Uwe Hermannd1107642007-08-29 17:52:32 +000022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000023 */
24
25#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000026#include "flashchips.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000027#include "chipdrivers.h"
Ollie Lho184a4042005-11-26 21:55:36 +000028
Uwe Hermannfc425e82008-03-16 02:06:25 +000029/**
Uwe Hermanna9720402009-05-21 15:55:46 +000030 * List of supported flash chips.
Uwe Hermannfc425e82008-03-16 02:06:25 +000031 *
32 * Please keep the list sorted by vendor name and chip name, so that
33 * the output of 'flashrom -L' is alphabetically sorted.
34 */
Ollie Lho184a4042005-11-26 21:55:36 +000035struct flashchip flashchips[] = {
Uwe Hermannfc425e82008-03-16 02:06:25 +000036
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000037 /*
38 * .vendor = Vendor name
39 * .name = Chip name
40 * .bustype = Supported flash bus types (Parallel, LPC...)
41 * .manufacture_id = Manufacturer chip ID
42 * .model_id = Model chip ID
43 * .total_size = Total size in (binary) kbytes
44 * .page_size = Page or eraseblock(?) size in bytes
45 * .tested = Test status
46 * .probe = Probe function
47 * .probe_timing = Probe function delay
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +000048 * .block_erasers[] = Array of erase layouts and erase functions
49 * {
50 * .eraseblocks[] = Array of { blocksize, blockcount }
51 * .block_erase = Block erase function
52 * }
Sean Nelson6e0b9122010-02-19 00:52:10 +000053 * .printlock = Chip lock status function
54 * .unlock = Chip unlock function
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000055 * .write = Chip write function
56 * .read = Chip read function
FENG yu ningff692fb2008-12-08 18:15:10 +000057 */
58
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000059 {
60 .vendor = "AMD",
Uwe Hermanna8b37272009-06-19 15:54:39 +000061 .name = "Am29F010A/B",
62 .bustype = CHIP_BUSTYPE_PARALLEL,
63 .manufacture_id = AMD_ID,
64 .model_id = AM_29F010B, /* Same as Am29F010A */
65 .total_size = 128,
66 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000067 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
68 .tested = TEST_UNTESTED,
69 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000070 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000071 .block_erasers =
72 {
73 {
74 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000075 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000076 }, {
77 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000078 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000079 },
80 },
Sean Nelson35727f72010-01-28 23:55:12 +000081 .write = write_jedec_1,
Uwe Hermanna8b37272009-06-19 15:54:39 +000082 .read = read_memmapped,
83 },
84
85 {
86 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000087 .name = "Am29F002(N)BB",
Urja Rannikko038a3122009-06-28 19:19:25 +000088 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000089 .manufacture_id = AMD_ID,
90 .model_id = AM_29F002BB,
91 .total_size = 256,
92 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000093 .feature_bits = FEATURE_SHORT_RESET | FEATURE_ADDR_2AA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000094 .tested = TEST_UNTESTED,
95 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000096 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000097 .block_erasers =
98 {
99 {
100 .eraseblocks = {
101 {16 * 1024, 1},
102 {8 * 1024, 2},
103 {32 * 1024, 1},
104 {64 * 1024, 3},
105 },
106 .block_erase = erase_sector_jedec,
107 }, {
108 .eraseblocks = { {256 * 1024, 1} },
109 .block_erase = erase_chip_block_jedec,
110 },
111 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000112 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000113 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000114 },
115
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000116 {
117 .vendor = "AMD",
118 .name = "Am29F002(N)BT",
Urja Rannikko038a3122009-06-28 19:19:25 +0000119 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000120 .manufacture_id = AMD_ID,
121 .model_id = AM_29F002BT,
122 .total_size = 256,
123 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000124 .feature_bits = FEATURE_EITHER_RESET | FEATURE_ADDR_2AA,
125 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000126 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000127 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000128 .block_erasers =
129 {
130 {
131 .eraseblocks = {
132 {64 * 1024, 3},
133 {32 * 1024, 1},
134 {8 * 1024, 2},
135 {16 * 1024, 1},
136 },
137 .block_erase = erase_sector_jedec,
138 }, {
139 .eraseblocks = { {256 * 1024, 1} },
140 .block_erase = erase_chip_block_jedec,
141 },
142 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000143 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000144 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000145 },
146
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000147 {
148 .vendor = "AMD",
149 .name = "Am29F016D",
Urja Rannikko038a3122009-06-28 19:19:25 +0000150 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000151 .manufacture_id = AMD_ID,
152 .model_id = AM_29F016D,
Sean Nelson72a9a022009-12-22 22:15:33 +0000153 .total_size = 2 * 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000154 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000155 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000156 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000157 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000158 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000159 .block_erasers =
160 {
161 {
162 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson35727f72010-01-28 23:55:12 +0000163 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000164 }, {
165 .eraseblocks = { {2048 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000166 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000167 },
168 },
Sean Nelson35727f72010-01-28 23:55:12 +0000169 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000170 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000171 },
172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000173 {
174 .vendor = "AMD",
175 .name = "Am29F040B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000176 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000177 .manufacture_id = AMD_ID,
178 .model_id = AM_29F040B,
179 .total_size = 512,
180 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000181 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
182 .tested = TEST_UNTESTED,
183 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000184 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000185 .block_erasers =
186 {
187 {
188 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000189 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000190 }, {
191 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000192 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000193 },
194 },
Sean Nelson35727f72010-01-28 23:55:12 +0000195 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000196 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000197 },
198
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000199 {
200 .vendor = "AMD",
Peter Stuge8440cc02009-01-25 23:55:12 +0000201 .name = "Am29F080B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000202 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000203 .manufacture_id = AMD_ID,
204 .model_id = AM_29F080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000205 .total_size = 1024,
206 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000207 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000208 .tested = TEST_UNTESTED,
209 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000210 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000211 .block_erasers =
212 {
213 {
214 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000215 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000216 }, {
217 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000218 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000219 },
220 },
Sean Nelson35727f72010-01-28 23:55:12 +0000221 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000222 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +0000223 },
224
225 {
226 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000227 .name = "Am29LV040B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000228 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000229 .manufacture_id = AMD_ID,
230 .model_id = AM_29LV040B,
231 .total_size = 512,
232 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000233 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000234 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000235 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000236 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000237 .block_erasers =
238 {
239 {
240 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000241 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000242 }, {
243 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000244 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000245 },
246 },
Sean Nelson35727f72010-01-28 23:55:12 +0000247 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000248 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000249 },
250
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000251 {
Peter Stuge8440cc02009-01-25 23:55:12 +0000252 .vendor = "AMD",
253 .name = "Am29LV081B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000254 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000255 .manufacture_id = AMD_ID,
Carl-Daniel Hailfinger6d5d2532009-08-10 10:14:23 +0000256 .model_id = AM_29LV080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000257 .total_size = 1024,
258 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000259 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000260 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000261 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000262 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000263 .block_erasers =
264 {
265 {
266 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000267 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000268 }, {
269 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000270 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000271 },
272 },
Sean Nelson35727f72010-01-28 23:55:12 +0000273 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000274 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +0000275 },
276
277 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000278 .vendor = "ASD",
279 .name = "AE49F2008",
Urja Rannikko038a3122009-06-28 19:19:25 +0000280 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000281 .manufacture_id = ASD_ID,
282 .model_id = ASD_AE49F2008,
283 .total_size = 256,
284 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000285 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000286 .tested = TEST_UNTESTED,
287 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000288 .probe_timing = TIMING_FIXME,
Sean Nelson54596372010-01-09 05:30:14 +0000289 .block_erasers =
290 {
291 {
292 .eraseblocks = {
293 {128 * 1024, 1},
294 {96 * 1024, 1},
295 {8 * 1024, 2},
296 {16 * 1024, 1},
297 },
298 .block_erase = erase_sector_jedec,
299 }, {
300 .eraseblocks = { {256 * 1024, 1} },
301 .block_erase = erase_chip_block_jedec,
302 }
303 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000304 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000305 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000306 },
307
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000308 {
309 .vendor = "Atmel",
310 .name = "AT25DF021",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000311 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000312 .manufacture_id = ATMEL_ID,
313 .model_id = AT_25DF021,
314 .total_size = 256,
315 .page_size = 256,
316 .tested = TEST_UNTESTED,
317 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000318 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000319 .block_erasers =
320 {
321 {
322 .eraseblocks = { {4 * 1024, 64} },
323 .block_erase = spi_block_erase_20,
324 }, {
325 .eraseblocks = { {32 * 1024, 8} },
326 .block_erase = spi_block_erase_52,
327 }, {
328 .eraseblocks = { {64 * 1024, 4} },
329 .block_erase = spi_block_erase_d8,
330 }, {
331 .eraseblocks = { {256 * 1024, 1} },
332 .block_erase = spi_block_erase_60,
333 }, {
334 .eraseblocks = { {256 * 1024, 1} },
335 .block_erase = spi_block_erase_c7,
336 }
337 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000338 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000339 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000340 },
341
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000342 {
343 .vendor = "Atmel",
344 .name = "AT25DF041A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000345 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000346 .manufacture_id = ATMEL_ID,
347 .model_id = AT_25DF041A,
348 .total_size = 512,
349 .page_size = 256,
350 .tested = TEST_UNTESTED,
351 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000352 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000353 .block_erasers =
354 {
355 {
356 .eraseblocks = { {4 * 1024, 128} },
357 .block_erase = spi_block_erase_20,
358 }, {
359 .eraseblocks = { {32 * 1024, 16} },
360 .block_erase = spi_block_erase_52,
361 }, {
362 .eraseblocks = { {64 * 1024, 8} },
363 .block_erase = spi_block_erase_d8,
364 }, {
365 .eraseblocks = { {512 * 1024, 1} },
366 .block_erase = spi_block_erase_60,
367 }, {
368 .eraseblocks = { {512 * 1024, 1} },
369 .block_erase = spi_block_erase_c7,
370 }
371 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000372 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000373 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000374 },
375
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000376 {
377 .vendor = "Atmel",
378 .name = "AT25DF081",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000379 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000380 .manufacture_id = ATMEL_ID,
381 .model_id = AT_25DF081,
382 .total_size = 1024,
383 .page_size = 256,
384 .tested = TEST_UNTESTED,
385 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000386 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000387 .block_erasers =
388 {
389 {
390 .eraseblocks = { {4 * 1024, 256} },
391 .block_erase = spi_block_erase_20,
392 }, {
393 .eraseblocks = { {32 * 1024, 32} },
394 .block_erase = spi_block_erase_52,
395 }, {
396 .eraseblocks = { {64 * 1024, 16} },
397 .block_erase = spi_block_erase_d8,
398 }, {
399 .eraseblocks = { {1024 * 1024, 1} },
400 .block_erase = spi_block_erase_60,
401 }, {
402 .eraseblocks = { {1024 * 1024, 1} },
403 .block_erase = spi_block_erase_c7,
404 }
405 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000406 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000407 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000408 },
409
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000410 {
411 .vendor = "Atmel",
412 .name = "AT25DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000413 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000414 .manufacture_id = ATMEL_ID,
415 .model_id = AT_25DF161,
416 .total_size = 2048,
417 .page_size = 256,
418 .tested = TEST_UNTESTED,
419 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000420 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000421 .block_erasers =
422 {
423 {
424 .eraseblocks = { {4 * 1024, 512} },
425 .block_erase = spi_block_erase_20,
426 }, {
427 .eraseblocks = { {32 * 1024, 64} },
428 .block_erase = spi_block_erase_52,
429 }, {
430 .eraseblocks = { {64 * 1024, 32} },
431 .block_erase = spi_block_erase_d8,
432 }, {
433 .eraseblocks = { {2 * 1024 * 1024, 1} },
434 .block_erase = spi_block_erase_60,
435 }, {
436 .eraseblocks = { {2 * 1024 * 1024, 1} },
437 .block_erase = spi_block_erase_c7,
438 }
439 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000440 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000441 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000442 },
443
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000444 {
445 .vendor = "Atmel",
446 .name = "AT25DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000447 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000448 .manufacture_id = ATMEL_ID,
449 .model_id = AT_25DF321,
450 .total_size = 4096,
451 .page_size = 256,
Sean Nelson89187292009-12-23 12:02:55 +0000452 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000453 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000454 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000455 .block_erasers =
456 {
457 {
458 .eraseblocks = { {4 * 1024, 1024} },
459 .block_erase = spi_block_erase_20,
460 }, {
461 .eraseblocks = { {32 * 1024, 128} },
462 .block_erase = spi_block_erase_52,
463 }, {
464 .eraseblocks = { {64 * 1024, 64} },
465 .block_erase = spi_block_erase_d8,
466 }, {
467 .eraseblocks = { {4 * 1024 * 1024, 1} },
468 .block_erase = spi_block_erase_60,
469 }, {
470 .eraseblocks = { {4 * 1024 * 1024, 1} },
471 .block_erase = spi_block_erase_c7,
472 }
473 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000474 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000475 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000476 },
477
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000478 {
479 .vendor = "Atmel",
480 .name = "AT25DF321A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000481 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000482 .manufacture_id = ATMEL_ID,
483 .model_id = AT_25DF321A,
484 .total_size = 4096,
485 .page_size = 256,
486 .tested = TEST_UNTESTED,
487 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000488 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000489 .block_erasers =
490 {
491 {
492 .eraseblocks = { {4 * 1024, 1024} },
493 .block_erase = spi_block_erase_20,
494 }, {
495 .eraseblocks = { {32 * 1024, 128} },
496 .block_erase = spi_block_erase_52,
497 }, {
498 .eraseblocks = { {64 * 1024, 64} },
499 .block_erase = spi_block_erase_d8,
500 }, {
501 .eraseblocks = { {4 * 1024 * 1024, 1} },
502 .block_erase = spi_block_erase_60,
503 }, {
504 .eraseblocks = { {4 * 1024 * 1024, 1} },
505 .block_erase = spi_block_erase_c7,
506 }
507 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000508 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000509 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000510 },
511
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000512 {
513 .vendor = "Atmel",
514 .name = "AT25DF641",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000515 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000516 .manufacture_id = ATMEL_ID,
517 .model_id = AT_25DF641,
518 .total_size = 8192,
519 .page_size = 256,
520 .tested = TEST_UNTESTED,
521 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000522 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000523 .block_erasers =
524 {
525 {
526 .eraseblocks = { {4 * 1024, 2048} },
527 .block_erase = spi_block_erase_20,
528 }, {
529 .eraseblocks = { {32 * 1024, 256} },
530 .block_erase = spi_block_erase_52,
531 }, {
532 .eraseblocks = { {64 * 1024, 128} },
533 .block_erase = spi_block_erase_d8,
534 }, {
535 .eraseblocks = { {8 * 1024 * 1024, 1} },
536 .block_erase = spi_block_erase_60,
537 }, {
538 .eraseblocks = { {8 * 1024 * 1024, 1} },
539 .block_erase = spi_block_erase_c7,
540 }
541 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000542 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000543 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000544 },
545
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000546 {
547 .vendor = "Atmel",
548 .name = "AT25F512B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000549 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000550 .manufacture_id = ATMEL_ID,
551 .model_id = AT_25F512B,
552 .total_size = 64,
553 .page_size = 256,
554 .tested = TEST_UNTESTED,
555 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000556 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000557 .block_erasers =
558 {
559 {
560 .eraseblocks = { {4 * 1024, 16} },
561 .block_erase = spi_block_erase_20,
562 }, {
563 .eraseblocks = { {32 * 1024, 2} },
564 .block_erase = spi_block_erase_52,
565 }, {
566 .eraseblocks = { {32 * 1024, 2} },
567 .block_erase = spi_block_erase_d8,
568 }, {
569 .eraseblocks = { {64 * 1024, 1} },
570 .block_erase = spi_block_erase_60,
571 }, {
572 .eraseblocks = { {64 * 1024, 1} },
573 .block_erase = spi_block_erase_c7,
574 }
575 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000576 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000577 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000578 },
579
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000580 {
581 .vendor = "Atmel",
582 .name = "AT25FS010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000583 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000584 .manufacture_id = ATMEL_ID,
585 .model_id = AT_25FS010,
586 .total_size = 128,
587 .page_size = 256,
588 .tested = TEST_UNTESTED,
589 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000590 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000591 .block_erasers =
592 {
593 {
594 .eraseblocks = { {4 * 1024, 32} },
595 .block_erase = spi_block_erase_20,
596 }, {
597 .eraseblocks = { {32 * 1024, 4} },
598 .block_erase = spi_block_erase_52,
599 }, {
600 .eraseblocks = { {32 * 1024, 4} },
601 .block_erase = spi_block_erase_d8,
602 }, {
603 .eraseblocks = { {128 * 1024, 1} },
604 .block_erase = spi_block_erase_60,
605 }, {
606 .eraseblocks = { {128 * 1024, 1} },
607 .block_erase = spi_block_erase_c7,
608 }
609 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000610 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000611 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000612 },
613
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000614 {
615 .vendor = "Atmel",
616 .name = "AT25FS040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000617 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000618 .manufacture_id = ATMEL_ID,
619 .model_id = AT_25FS040,
620 .total_size = 512,
621 .page_size = 256,
622 .tested = TEST_UNTESTED,
623 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000624 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000625 .block_erasers =
626 {
627 {
628 .eraseblocks = { {4 * 1024, 128} },
629 .block_erase = spi_block_erase_20,
630 }, {
631 .eraseblocks = { {64 * 1024, 8} },
632 .block_erase = spi_block_erase_52,
633 }, {
634 .eraseblocks = { {64 * 1024, 8} },
635 .block_erase = spi_block_erase_d8,
636 }, {
637 .eraseblocks = { {512 * 1024, 1} },
638 .block_erase = spi_block_erase_60,
639 }, {
640 .eraseblocks = { {512 * 1024, 1} },
641 .block_erase = spi_block_erase_c7,
642 }
643 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000644 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000645 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000646 },
647
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000648 {
649 .vendor = "Atmel",
650 .name = "AT26DF041",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000651 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000652 .manufacture_id = ATMEL_ID,
653 .model_id = AT_26DF041,
654 .total_size = 512,
655 .page_size = 256,
656 .tested = TEST_UNTESTED,
657 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000658 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000659 .block_erasers =
660 {
661 {
662 .eraseblocks = { {4 * 1024, 128} },
663 .block_erase = spi_block_erase_20,
664 }
665 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000666 .write = NULL /* Incompatible Page write */,
667 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000668 },
669
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000670 {
671 .vendor = "Atmel",
672 .name = "AT26DF081A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000673 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000674 .manufacture_id = ATMEL_ID,
675 .model_id = AT_26DF081A,
676 .total_size = 1024,
677 .page_size = 256,
678 .tested = TEST_UNTESTED,
679 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000680 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000681 .block_erasers =
682 {
683 {
684 .eraseblocks = { {4 * 1024, 256} },
685 .block_erase = spi_block_erase_20,
686 }, {
687 .eraseblocks = { {32 * 1024, 32} },
688 .block_erase = spi_block_erase_52,
689 }, {
690 .eraseblocks = { {64 * 1024, 16} },
691 .block_erase = spi_block_erase_d8,
692 }, {
693 .eraseblocks = { {1024 * 1024, 1} },
694 .block_erase = spi_block_erase_60,
695 }, {
696 .eraseblocks = { {1024 * 1024, 1} },
697 .block_erase = spi_block_erase_c7,
698 }
699 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000700 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000701 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000702 },
703
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000704 {
705 .vendor = "Atmel",
706 .name = "AT26DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000707 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000708 .manufacture_id = ATMEL_ID,
709 .model_id = AT_26DF161,
710 .total_size = 2048,
711 .page_size = 256,
712 .tested = TEST_UNTESTED,
713 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000714 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000715 .block_erasers =
716 {
717 {
718 .eraseblocks = { {4 * 1024, 512} },
719 .block_erase = spi_block_erase_20,
720 }, {
721 .eraseblocks = { {32 * 1024, 64} },
722 .block_erase = spi_block_erase_52,
723 }, {
724 .eraseblocks = { {64 * 1024, 32} },
725 .block_erase = spi_block_erase_d8,
726 }, {
727 .eraseblocks = { {2 * 1024 * 1024, 1} },
728 .block_erase = spi_block_erase_60,
729 }, {
730 .eraseblocks = { {2 * 1024 * 1024, 1} },
731 .block_erase = spi_block_erase_c7,
732 }
733 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000734 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000735 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000736 },
737
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000738 {
739 .vendor = "Atmel",
740 .name = "AT26DF161A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000741 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000742 .manufacture_id = ATMEL_ID,
743 .model_id = AT_26DF161A,
744 .total_size = 2048,
745 .page_size = 256,
746 .tested = TEST_UNTESTED,
747 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000748 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000749 .block_erasers =
750 {
751 {
752 .eraseblocks = { {4 * 1024, 512} },
753 .block_erase = spi_block_erase_20,
754 }, {
755 .eraseblocks = { {32 * 1024, 64} },
756 .block_erase = spi_block_erase_52,
757 }, {
758 .eraseblocks = { {64 * 1024, 32} },
759 .block_erase = spi_block_erase_d8,
760 }, {
761 .eraseblocks = { {2 * 1024 * 1024, 1} },
762 .block_erase = spi_block_erase_60,
763 }, {
764 .eraseblocks = { {2 * 1024 * 1024, 1} },
765 .block_erase = spi_block_erase_c7,
766 }
767 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000768 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000769 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000770 },
771
772 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000773 /*{
774 .vendor = "Atmel",
775 .name = "AT26DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000776 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000777 .manufacture_id = ATMEL_ID,
778 .model_id = AT_26DF321,
779 .total_size = 4096,
780 .page_size = 256,
781 .tested = TEST_UNTESTED,
782 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000783 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000784 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000785 .read = spi_chip_read,
786 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +0000787
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000788 {
789 .vendor = "Atmel",
790 .name = "AT26F004",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000791 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000792 .manufacture_id = ATMEL_ID,
793 .model_id = AT_26F004,
794 .total_size = 512,
795 .page_size = 256,
796 .tested = TEST_UNTESTED,
797 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000798 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000799 .block_erasers =
800 {
801 {
802 .eraseblocks = { {4 * 1024, 128} },
803 .block_erase = spi_block_erase_20,
804 }, {
805 .eraseblocks = { {32 * 1024, 16} },
806 .block_erase = spi_block_erase_52,
807 }, {
808 .eraseblocks = { {64 * 1024, 8} },
809 .block_erase = spi_block_erase_d8,
810 }, {
811 .eraseblocks = { {512 * 1024, 1} },
812 .block_erase = spi_block_erase_60,
813 }, {
814 .eraseblocks = { {512 * 1024, 1} },
815 .block_erase = spi_block_erase_c7,
816 }
817 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000818 .write = NULL /* Incompatible Page write */,
819 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000820 },
821
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000822 {
823 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000824 .name = "AT29C512",
Urja Rannikko038a3122009-06-28 19:19:25 +0000825 .bustype = CHIP_BUSTYPE_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000826 .manufacture_id = ATMEL_ID,
827 .model_id = AT_29C512,
828 .total_size = 64,
829 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000830 .feature_bits = FEATURE_LONG_RESET,
831 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000832 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000833 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +0000834 .block_erasers =
835 {
836 {
837 .eraseblocks = { {64 * 1024, 1} },
838 .block_erase = erase_chip_block_jedec,
839 }
840 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000841 .write = write_jedec,
842 .read = read_memmapped,
843
844 },
845
846 {
847 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000848 .name = "AT29C010A",
Urja Rannikko161b8852009-06-05 08:47:37 +0000849 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000850 .manufacture_id = ATMEL_ID,
851 .model_id = AT_29C010A,
852 .total_size = 128,
853 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000854 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +0000855 .tested = TEST_OK_PRW,
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000856 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000857 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +0000858 .block_erasers =
859 {
860 {
861 .eraseblocks = { {128 * 1024, 1} },
862 .block_erase = erase_chip_block_jedec,
863 }
864 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000865 .write = write_jedec, /* FIXME */
866 .read = read_memmapped,
867 },
868
869 {
870 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000871 .name = "AT29C020",
Urja Rannikko161b8852009-06-05 08:47:37 +0000872 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000873 .manufacture_id = ATMEL_ID,
874 .model_id = AT_29C020,
875 .total_size = 256,
876 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000877 .feature_bits = FEATURE_LONG_RESET,
878 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000879 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +0000880 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +0000881 .block_erasers =
882 {
883 {
884 .eraseblocks = { {256 * 1024, 1} },
885 .block_erase = erase_chip_block_jedec,
886 }
887 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000888 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000889 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000890 },
891
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000892 {
893 .vendor = "Atmel",
894 .name = "AT29C040A",
Urja Rannikko161b8852009-06-05 08:47:37 +0000895 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000896 .manufacture_id = ATMEL_ID,
897 .model_id = AT_29C040A,
898 .total_size = 512,
899 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000900 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000901 .tested = TEST_UNTESTED,
902 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +0000903 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +0000904 .block_erasers =
905 {
906 {
907 .eraseblocks = { {512 * 1024, 1} },
908 .block_erase = erase_chip_block_jedec,
909 }
910 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000911 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000912 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000913 },
914
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000915 {
916 .vendor = "Atmel",
917 .name = "AT45CS1282",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000918 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000919 .manufacture_id = ATMEL_ID,
920 .model_id = AT_45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000921 .total_size = 16896 /* No power of two sizes */,
922 .page_size = 1056 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000923 .tested = TEST_BAD_READ,
924 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000925 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000926 .write = NULL /* Incompatible Page write */,
927 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000928 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000929
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000930 {
931 .vendor = "Atmel",
932 .name = "AT45DB011D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000933 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000934 .manufacture_id = ATMEL_ID,
935 .model_id = AT_45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000936 .total_size = 128 /* Size can only be determined from status register */,
937 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000938 .tested = TEST_BAD_READ,
939 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000940 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000941 .write = NULL,
942 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000943 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000944
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000945 {
946 .vendor = "Atmel",
947 .name = "AT45DB021D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000948 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000949 .manufacture_id = ATMEL_ID,
950 .model_id = AT_45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000951 .total_size = 256 /* Size can only be determined from status register */,
952 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000953 .tested = TEST_BAD_READ,
954 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000955 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000956 .write = NULL,
957 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000958 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000959
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000960 {
961 .vendor = "Atmel",
962 .name = "AT45DB041D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000963 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000964 .manufacture_id = ATMEL_ID,
965 .model_id = AT_45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000966 .total_size = 512 /* Size can only be determined from status register */,
967 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000968 .tested = TEST_BAD_READ,
969 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000970 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000971 .write = NULL,
972 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000973 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000974
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000975 {
976 .vendor = "Atmel",
977 .name = "AT45DB081D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000978 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000979 .manufacture_id = ATMEL_ID,
980 .model_id = AT_45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000981 .total_size = 1024 /* Size can only be determined from status register */,
982 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000983 .tested = TEST_BAD_READ,
984 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000985 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000986 .write = NULL,
987 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000988 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000989
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000990 {
991 .vendor = "Atmel",
992 .name = "AT45DB161D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000993 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000994 .manufacture_id = ATMEL_ID,
995 .model_id = AT_45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000996 .total_size = 2048 /* Size can only be determined from status register */,
997 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000998 .tested = TEST_BAD_READ,
999 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001000 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001001 .write = NULL,
1002 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001003 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001004
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001005 {
1006 .vendor = "Atmel",
1007 .name = "AT45DB321C",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001008 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001009 .manufacture_id = ATMEL_ID,
1010 .model_id = AT_45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001011 .total_size = 4224 /* No power of two sizes */,
1012 .page_size = 528 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001013 .tested = TEST_BAD_READ,
1014 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001015 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001016 .write = NULL,
1017 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001018 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001019
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001020 {
1021 .vendor = "Atmel",
1022 .name = "AT45DB321D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001023 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001024 .manufacture_id = ATMEL_ID,
1025 .model_id = AT_45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001026 .total_size = 4096 /* Size can only be determined from status register */,
1027 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001028 .tested = TEST_BAD_READ,
1029 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001030 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001031 .write = NULL,
1032 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001033 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001034
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001035 {
1036 .vendor = "Atmel",
1037 .name = "AT45DB642D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001038 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001039 .manufacture_id = ATMEL_ID,
1040 .model_id = AT_45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001041 .total_size = 8192 /* Size can only be determined from status register */,
1042 .page_size = 1024 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001043 .tested = TEST_BAD_READ,
1044 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001045 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001046 .write = NULL,
1047 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001048 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001049
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001050 {
1051 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001052 .name = "AT49BV512",
Urja Rannikko161b8852009-06-05 08:47:37 +00001053 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001054 .manufacture_id = ATMEL_ID,
1055 .model_id = AT_49BV512,
1056 .total_size = 64,
1057 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00001058 .feature_bits = FEATURE_EITHER_RESET,
1059 .tested = TEST_UNTESTED,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001060 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001061 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001062 .block_erasers =
1063 {
1064 {
1065 .eraseblocks = { {64 * 1024, 1} },
1066 .block_erase = erase_chip_block_jedec,
1067 }
1068 },
Sean Nelson35727f72010-01-28 23:55:12 +00001069 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001070 .read = read_memmapped,
1071 },
1072
1073 {
1074 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001075 .name = "AT49F002(N)",
Urja Rannikko161b8852009-06-05 08:47:37 +00001076 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001077 .manufacture_id = ATMEL_ID,
1078 .model_id = AT_49F002N,
1079 .total_size = 256,
1080 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001081 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001082 .tested = TEST_UNTESTED,
1083 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001084 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001085 .block_erasers =
1086 {
1087 {
1088 .eraseblocks = {
1089 {16 * 1024, 1},
1090 {8 * 1024, 2},
1091 {96 * 1024, 1},
1092 {128 * 1024, 1},
1093 },
1094 .block_erase = erase_sector_jedec,
1095 }, {
1096 .eraseblocks = { {256 * 1024, 1} },
1097 .block_erase = erase_chip_block_jedec,
1098 }
1099 },
Sean Nelson35727f72010-01-28 23:55:12 +00001100 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001101 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001102 },
1103
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001104 {
1105 .vendor = "Atmel",
1106 .name = "AT49F002(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00001107 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001108 .manufacture_id = ATMEL_ID,
1109 .model_id = AT_49F002NT,
1110 .total_size = 256,
1111 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001112 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00001113 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001114 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001115 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001116 .block_erasers =
1117 {
1118 {
1119 .eraseblocks = {
1120 {128 * 1024, 1},
1121 {96 * 1024, 1},
1122 {8 * 1024, 2},
1123 {16 * 1024, 1},
1124 },
1125 .block_erase = erase_sector_jedec,
1126 }, {
1127 .eraseblocks = { {256 * 1024, 1} },
1128 .block_erase = erase_chip_block_jedec,
1129 }
1130 },
Sean Nelson35727f72010-01-28 23:55:12 +00001131 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001132 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001133 },
1134
Sean Nelson54596372010-01-09 05:30:14 +00001135 /* The next two chip definitions have top/bottom boot blocks, but has no
1136 device differenciation between the two */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001137 {
1138 .vendor = "AMIC",
Sean Nelson54596372010-01-09 05:30:14 +00001139 .name = "A25L40PT",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001140 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001141 .manufacture_id = AMIC_ID,
1142 .model_id = AMIC_A25L40P,
1143 .total_size = 512,
1144 .page_size = 256,
Sean Nelson54596372010-01-09 05:30:14 +00001145 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001146 .probe = probe_spi_rdid4,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001147 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001148 .block_erasers =
1149 {
1150 {
1151 .eraseblocks = {
1152 {64 * 1024, 7},
1153 {32 * 1024, 1},
1154 {16 * 1024, 1},
1155 {8 * 1024, 1},
1156 {4 * 1024, 2},
1157 },
1158 .block_erase = spi_block_erase_d8,
1159 }, {
Sean Nelson2aff7aa2010-01-18 08:24:02 +00001160 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00001161 .block_erase = spi_block_erase_c7,
1162 }
1163 },
1164 .write = spi_chip_write_256,
1165 .read = spi_chip_read,
1166 },
1167
1168 {
1169 .vendor = "AMIC",
1170 .name = "A25L40PU",
1171 .bustype = CHIP_BUSTYPE_SPI,
1172 .manufacture_id = AMIC_ID,
1173 .model_id = AMIC_A25L40P,
1174 .total_size = 512,
1175 .page_size = 256,
1176 .tested = TEST_OK_PRW,
1177 .probe = probe_spi_rdid4,
1178 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001179 .block_erasers =
1180 {
1181 {
1182 .eraseblocks = {
1183 {4 * 1024, 2},
1184 {8 * 1024, 1},
1185 {16 * 1024, 1},
1186 {32 * 1024, 1},
1187 {64 * 1024, 7},
1188 },
1189 .block_erase = spi_block_erase_d8,
1190 }, {
Sean Nelson2aff7aa2010-01-18 08:24:02 +00001191 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00001192 .block_erase = spi_block_erase_c7,
1193 }
1194 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001195 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001196 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001197 },
1198
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001199 {
1200 .vendor = "AMIC",
1201 .name = "A29002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00001202 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001203 .manufacture_id = AMIC_ID_NOPREFIX,
1204 .model_id = AMIC_A29002B,
1205 .total_size = 256,
1206 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001207 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001208 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00001209 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001210 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00001211 .block_erasers =
1212 {
1213 {
1214 .eraseblocks = {
1215 {16 * 1024, 1},
1216 {8 * 1024, 2},
1217 {32 * 1024, 1},
1218 {64 * 1024, 3},
1219 },
Sean Nelson35727f72010-01-28 23:55:12 +00001220 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001221 }, {
1222 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001223 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001224 },
1225 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00001226 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001227 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001228 },
1229
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001230 {
1231 .vendor = "AMIC",
1232 .name = "A29002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00001233 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001234 .manufacture_id = AMIC_ID_NOPREFIX,
1235 .model_id = AMIC_A29002T,
1236 .total_size = 256,
1237 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001238 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00001239 .tested = TEST_OK_PRW,
Sean Nelson35727f72010-01-28 23:55:12 +00001240 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001241 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00001242 .block_erasers =
1243 {
1244 {
1245 .eraseblocks = {
1246 {64 * 1024, 3},
1247 {32 * 1024, 1},
1248 {8 * 1024, 2},
1249 {16 * 1024, 1},
1250 },
Sean Nelson35727f72010-01-28 23:55:12 +00001251 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001252 }, {
1253 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001254 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001255 },
1256 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00001257 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001258 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001259 },
1260
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001261 {
1262 .vendor = "AMIC",
1263 .name = "A29040B",
Urja Rannikko161b8852009-06-05 08:47:37 +00001264 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001265 .manufacture_id = AMIC_ID_NOPREFIX,
1266 .model_id = AMIC_A29040B,
1267 .total_size = 512,
1268 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001269 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1270 .tested = TEST_UNTESTED,
1271 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001272 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +00001273 .block_erasers =
1274 {
1275 {
1276 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +00001277 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00001278 }, {
1279 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001280 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00001281 },
1282 },
Sean Nelson35727f72010-01-28 23:55:12 +00001283 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001284 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001285 },
1286
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001287 {
1288 .vendor = "AMIC",
1289 .name = "A49LF040A",
Urja Rannikko161b8852009-06-05 08:47:37 +00001290 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001291 .manufacture_id = AMIC_ID_NOPREFIX,
1292 .model_id = AMIC_A49LF040A,
1293 .total_size = 512,
1294 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001295 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
1296 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00001297 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001298 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson54596372010-01-09 05:30:14 +00001299 .block_erasers =
1300 {
1301 {
1302 .eraseblocks = { {64 * 1024, 8} },
1303 .block_erase = erase_block_jedec,
1304 }, {
1305 .eraseblocks = { {512 * 1024, 1} },
1306 .block_erase = erase_chip_block_jedec,
1307 }
1308 },
Sean Nelson36172342010-02-27 18:01:15 +00001309 .unlock = unlock_49fl00x,
1310 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001311 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001312 },
1313
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001314 {
1315 .vendor = "EMST",
1316 .name = "F49B002UA",
Urja Rannikko161b8852009-06-05 08:47:37 +00001317 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001318 .manufacture_id = EMST_ID,
1319 .model_id = EMST_F49B002UA,
1320 .total_size = 256,
1321 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00001322 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001323 .tested = TEST_UNTESTED,
1324 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001325 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00001326 .block_erasers =
1327 {
1328 {
1329 .eraseblocks = {
1330 {128 * 1024, 1},
1331 {96 * 1024, 1},
1332 {8 * 1024, 2},
1333 {16 * 1024, 1},
1334 },
1335 .block_erase = erase_sector_jedec,
1336 }, {
1337 .eraseblocks = { {256 * 1024, 1} },
1338 .block_erase = erase_chip_block_jedec,
1339 }
1340 },
Sean Nelson35727f72010-01-28 23:55:12 +00001341 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001342 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001343 },
1344
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001345 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001346 .vendor = "Eon",
1347 .name = "EN25B05",
1348 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001349 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001350 .model_id = EN_25B05,
1351 .total_size = 64,
1352 .page_size = 256,
1353 .tested = TEST_UNTESTED,
1354 .probe = probe_spi_rdid,
1355 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001356 .block_erasers =
1357 {
1358 {
1359 .eraseblocks = {
1360 {4 * 1024, 2},
1361 {8 * 1024, 1},
1362 {16 * 1024, 1},
1363 {32 * 1024, 1},
1364 },
1365 .block_erase = spi_block_erase_d8,
1366 }, {
1367 .eraseblocks = { {64 * 1024, 1} },
1368 .block_erase = spi_block_erase_c7,
1369 }
1370 },
1371 .write = spi_chip_write_256,
1372 .read = spi_chip_read,
1373 },
1374
1375 {
1376 .vendor = "Eon",
1377 .name = "EN25B05T",
1378 .bustype = CHIP_BUSTYPE_SPI,
1379 .manufacture_id = EON_ID_NOPREFIX,
1380 .model_id = EN_25B05,
1381 .total_size = 64,
1382 .page_size = 256,
1383 .tested = TEST_UNTESTED,
1384 .probe = probe_spi_rdid,
1385 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001386 .block_erasers =
1387 {
1388 {
1389 .eraseblocks = {
1390 {32 * 1024, 1},
1391 {16 * 1024, 1},
1392 {8 * 1024, 1},
1393 {4 * 1024, 2},
1394 },
1395 .block_erase = spi_block_erase_d8,
1396 }, {
1397 .eraseblocks = { {64 * 1024, 1} },
1398 .block_erase = spi_block_erase_c7,
1399 }
1400 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001401 .write = spi_chip_write_256,
1402 .read = spi_chip_read,
1403 },
1404
1405 {
1406 .vendor = "Eon",
1407 .name = "EN25B10",
1408 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001409 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001410 .model_id = EN_25B10,
1411 .total_size = 128,
1412 .page_size = 256,
1413 .tested = TEST_UNTESTED,
1414 .probe = probe_spi_rdid,
1415 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001416 .block_erasers =
1417 {
1418 {
1419 .eraseblocks = {
1420 {4 * 1024, 2},
1421 {8 * 1024, 1},
1422 {16 * 1024, 1},
1423 {32 * 1024, 3},
1424 },
1425 .block_erase = spi_block_erase_d8,
1426 }, {
1427 .eraseblocks = { {128 * 1024, 1} },
1428 .block_erase = spi_block_erase_c7,
1429 }
1430 },
1431 .write = spi_chip_write_256,
1432 .read = spi_chip_read,
1433 },
1434
1435 {
1436 .vendor = "Eon",
1437 .name = "EN25B10T",
1438 .bustype = CHIP_BUSTYPE_SPI,
1439 .manufacture_id = EON_ID_NOPREFIX,
1440 .model_id = EN_25B10,
1441 .total_size = 128,
1442 .page_size = 256,
1443 .tested = TEST_UNTESTED,
1444 .probe = probe_spi_rdid,
1445 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001446 .block_erasers =
1447 {
1448 {
1449 .eraseblocks = {
1450 {32 * 1024, 3},
1451 {16 * 1024, 1},
1452 {8 * 1024, 1},
1453 {4 * 1024, 2},
1454 },
1455 .block_erase = spi_block_erase_d8,
1456 }, {
1457 .eraseblocks = { {128 * 1024, 1} },
1458 .block_erase = spi_block_erase_c7,
1459 }
1460 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001461 .write = spi_chip_write_256,
1462 .read = spi_chip_read,
1463 },
1464
1465 {
1466 .vendor = "Eon",
1467 .name = "EN25B20",
1468 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001469 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001470 .model_id = EN_25B20,
1471 .total_size = 256,
1472 .page_size = 256,
1473 .tested = TEST_UNTESTED,
1474 .probe = probe_spi_rdid,
1475 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001476 .block_erasers =
1477 {
1478 {
1479 .eraseblocks = {
1480 {4 * 1024, 2},
1481 {8 * 1024, 1},
1482 {16 * 1024, 1},
1483 {32 * 1024, 1},
1484 {64 * 1024, 3}
1485 },
1486 .block_erase = spi_block_erase_d8,
1487 }, {
1488 .eraseblocks = { {256 * 1024, 1} },
1489 .block_erase = spi_block_erase_c7,
1490 }
1491 },
1492 .write = spi_chip_write_256,
1493 .read = spi_chip_read,
1494 },
1495
1496 {
1497 .vendor = "Eon",
1498 .name = "EN25B20T",
1499 .bustype = CHIP_BUSTYPE_SPI,
1500 .manufacture_id = EON_ID_NOPREFIX,
1501 .model_id = EN_25B20,
1502 .total_size = 256,
1503 .page_size = 256,
1504 .tested = TEST_UNTESTED,
1505 .probe = probe_spi_rdid,
1506 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001507 .block_erasers =
1508 {
1509 {
1510 .eraseblocks = {
1511 {64 * 1024, 3},
1512 {32 * 1024, 1},
1513 {16 * 1024, 1},
1514 {8 * 1024, 1},
1515 {4 * 1024, 2},
1516 },
1517 .block_erase = spi_block_erase_d8,
1518 }, {
1519 .eraseblocks = { {256 * 1024, 1} },
1520 .block_erase = spi_block_erase_c7,
1521 }
1522 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001523 .write = spi_chip_write_256,
1524 .read = spi_chip_read,
1525 },
1526
1527 {
1528 .vendor = "Eon",
1529 .name = "EN25B40",
1530 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001531 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001532 .model_id = EN_25B40,
1533 .total_size = 512,
1534 .page_size = 256,
1535 .tested = TEST_UNTESTED,
1536 .probe = probe_spi_rdid,
1537 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001538 .block_erasers =
1539 {
1540 {
1541 .eraseblocks = {
1542 {4 * 1024, 2},
1543 {8 * 1024, 1},
1544 {16 * 1024, 1},
1545 {32 * 1024, 1},
1546 {64 * 1024, 7}
1547 },
1548 .block_erase = spi_block_erase_d8,
1549 }, {
1550 .eraseblocks = { {512 * 1024, 1} },
1551 .block_erase = spi_block_erase_c7,
1552 }
1553 },
1554 .write = spi_chip_write_256,
1555 .read = spi_chip_read,
1556 },
1557
1558 {
1559 .vendor = "Eon",
1560 .name = "EN25B40T",
1561 .bustype = CHIP_BUSTYPE_SPI,
1562 .manufacture_id = EON_ID_NOPREFIX,
1563 .model_id = EN_25B40,
1564 .total_size = 512,
1565 .page_size = 256,
1566 .tested = TEST_UNTESTED,
1567 .probe = probe_spi_rdid,
1568 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001569 .block_erasers =
1570 {
1571 {
1572 .eraseblocks = {
1573 {64 * 1024, 7},
1574 {32 * 1024, 1},
1575 {16 * 1024, 1},
1576 {8 * 1024, 1},
1577 {4 * 1024, 2},
1578 },
1579 .block_erase = spi_block_erase_d8,
1580 }, {
1581 .eraseblocks = { {512 * 1024, 1} },
1582 .block_erase = spi_block_erase_c7,
1583 }
1584 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001585 .write = spi_chip_write_256,
1586 .read = spi_chip_read,
1587 },
1588
1589 {
1590 .vendor = "Eon",
1591 .name = "EN25B80",
1592 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001593 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001594 .model_id = EN_25B80,
1595 .total_size = 1024,
1596 .page_size = 256,
1597 .tested = TEST_UNTESTED,
1598 .probe = probe_spi_rdid,
1599 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001600 .block_erasers =
1601 {
1602 {
1603 .eraseblocks = {
1604 {4 * 1024, 2},
1605 {8 * 1024, 1},
1606 {16 * 1024, 1},
1607 {32 * 1024, 1},
1608 {64 * 1024, 15}
1609 },
1610 .block_erase = spi_block_erase_d8,
1611 }, {
1612 .eraseblocks = { {1024 * 1024, 1} },
1613 .block_erase = spi_block_erase_c7,
1614 }
1615 },
1616 .write = spi_chip_write_256,
1617 .read = spi_chip_read,
1618 },
1619
1620 {
1621 .vendor = "Eon",
1622 .name = "EN25B80T",
1623 .bustype = CHIP_BUSTYPE_SPI,
1624 .manufacture_id = EON_ID_NOPREFIX,
1625 .model_id = EN_25B80,
1626 .total_size = 1024,
1627 .page_size = 256,
1628 .tested = TEST_UNTESTED,
1629 .probe = probe_spi_rdid,
1630 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001631 .block_erasers =
1632 {
1633 {
1634 .eraseblocks = {
1635 {64 * 1024, 15},
1636 {32 * 1024, 1},
1637 {16 * 1024, 1},
1638 {8 * 1024, 1},
1639 {4 * 1024, 2},
1640 },
1641 .block_erase = spi_block_erase_d8,
1642 }, {
1643 .eraseblocks = { {1024 * 1024, 1} },
1644 .block_erase = spi_block_erase_c7,
1645 }
1646 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001647 .write = spi_chip_write_256,
1648 .read = spi_chip_read,
1649 },
1650
1651 {
1652 .vendor = "Eon",
1653 .name = "EN25B16",
1654 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001655 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001656 .model_id = EN_25B16,
1657 .total_size = 2048,
1658 .page_size = 256,
1659 .tested = TEST_UNTESTED,
1660 .probe = probe_spi_rdid,
1661 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001662 .block_erasers =
1663 {
1664 {
1665 .eraseblocks = {
1666 {4 * 1024, 2},
1667 {8 * 1024, 1},
1668 {16 * 1024, 1},
1669 {32 * 1024, 1},
1670 {64 * 1024, 31},
1671 },
1672 .block_erase = spi_block_erase_d8,
1673 }, {
1674 .eraseblocks = { {2 * 1024 * 1024, 1} },
1675 .block_erase = spi_block_erase_c7,
1676 }
1677 },
1678 .write = spi_chip_write_256,
1679 .read = spi_chip_read,
1680 },
1681
1682 {
1683 .vendor = "Eon",
1684 .name = "EN25B16T",
1685 .bustype = CHIP_BUSTYPE_SPI,
1686 .manufacture_id = EON_ID_NOPREFIX,
1687 .model_id = EN_25B16,
1688 .total_size = 2048,
1689 .page_size = 256,
1690 .tested = TEST_UNTESTED,
1691 .probe = probe_spi_rdid,
1692 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001693 .block_erasers =
1694 {
1695 {
1696 .eraseblocks = {
1697 {64 * 1024, 31},
1698 {32 * 1024, 1},
1699 {16 * 1024, 1},
1700 {8 * 1024, 1},
1701 {4 * 1024, 2},
1702 },
1703 .block_erase = spi_block_erase_d8,
1704 }, {
1705 .eraseblocks = { {2 * 1024 * 1024, 1} },
1706 .block_erase = spi_block_erase_c7,
1707 }
1708 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001709 .write = spi_chip_write_256,
1710 .read = spi_chip_read,
1711 },
1712
1713 {
1714 .vendor = "Eon",
1715 .name = "EN25B32",
1716 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001717 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001718 .model_id = EN_25B32,
1719 .total_size = 4096,
1720 .page_size = 256,
1721 .tested = TEST_UNTESTED,
1722 .probe = probe_spi_rdid,
1723 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001724 .block_erasers =
1725 {
1726 {
1727 .eraseblocks = {
1728 {4 * 1024, 2},
1729 {8 * 1024, 1},
1730 {16 * 1024, 1},
1731 {32 * 1024, 1},
1732 {64 * 1024, 63},
1733 },
1734 .block_erase = spi_block_erase_d8,
1735 }, {
1736 .eraseblocks = { {4 * 1024 * 1024, 1} },
1737 .block_erase = spi_block_erase_c7,
1738 }
1739 },
1740 .write = spi_chip_write_256,
1741 .read = spi_chip_read,
1742 },
1743
1744 {
1745 .vendor = "Eon",
1746 .name = "EN25B32T",
1747 .bustype = CHIP_BUSTYPE_SPI,
1748 .manufacture_id = EON_ID_NOPREFIX,
1749 .model_id = EN_25B32,
1750 .total_size = 4096,
1751 .page_size = 256,
1752 .tested = TEST_UNTESTED,
1753 .probe = probe_spi_rdid,
1754 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001755 .block_erasers =
1756 {
1757 {
1758 .eraseblocks = {
1759 {64 * 1024, 63},
1760 {32 * 1024, 1},
1761 {16 * 1024, 1},
1762 {8 * 1024, 1},
1763 {4 * 1024, 2},
1764 },
1765 .block_erase = spi_block_erase_d8,
1766 }, {
1767 .eraseblocks = { {4 * 1024 * 1024, 1} },
1768 .block_erase = spi_block_erase_c7,
1769 }
1770 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001771 .write = spi_chip_write_256,
1772 .read = spi_chip_read,
1773 },
1774
1775 {
1776 .vendor = "Eon",
1777 .name = "EN25B64",
1778 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001779 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001780 .model_id = EN_25B64,
1781 .total_size = 8192,
1782 .page_size = 256,
1783 .tested = TEST_UNTESTED,
1784 .probe = probe_spi_rdid,
1785 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001786 .block_erasers =
1787 {
1788 {
1789 .eraseblocks = {
1790 {4 * 1024, 2},
1791 {8 * 1024, 1},
1792 {16 * 1024, 1},
1793 {32 * 1024, 1},
1794 {64 * 1024, 127},
1795 },
1796 .block_erase = spi_block_erase_d8,
1797 }, {
1798 .eraseblocks = { {8 * 1024 * 1024, 1} },
1799 .block_erase = spi_block_erase_c7,
1800 }
1801 },
1802 .write = spi_chip_write_256,
1803 .read = spi_chip_read,
1804 },
1805
1806 {
1807 .vendor = "Eon",
1808 .name = "EN25B64T",
1809 .bustype = CHIP_BUSTYPE_SPI,
1810 .manufacture_id = EON_ID_NOPREFIX,
1811 .model_id = EN_25B64,
1812 .total_size = 8192,
1813 .page_size = 256,
1814 .tested = TEST_UNTESTED,
1815 .probe = probe_spi_rdid,
1816 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001817 .block_erasers =
1818 {
1819 {
1820 .eraseblocks = {
1821 {64 * 1024, 127},
1822 {32 * 1024, 1},
1823 {16 * 1024, 1},
1824 {8 * 1024, 1},
1825 {4 * 1024, 2},
1826 },
1827 .block_erase = spi_block_erase_d8,
1828 }, {
1829 .eraseblocks = { {8 * 1024 * 1024, 1} },
1830 .block_erase = spi_block_erase_c7,
1831 }
1832 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001833 .write = spi_chip_write_256,
1834 .read = spi_chip_read,
1835 },
1836
1837 {
1838 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001839 .name = "EN25D16",
1840 .bustype = CHIP_BUSTYPE_SPI,
1841 .manufacture_id = EON_ID_NOPREFIX,
1842 .model_id = EN_25D16,
1843 .total_size = 2048,
1844 .page_size = 256,
1845 .tested = TEST_UNTESTED,
1846 .probe = probe_spi_rdid,
1847 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001848 .block_erasers =
1849 {
1850 {
1851 .eraseblocks = { {4 * 1024, 512} },
1852 .block_erase = spi_block_erase_20,
1853 }, {
1854 .eraseblocks = { {64 * 1024, 32} },
1855 .block_erase = spi_block_erase_d8,
1856 }, {
1857 .eraseblocks = { {64 * 1024, 32} },
1858 .block_erase = spi_block_erase_52,
1859 }, {
1860 .eraseblocks = { {2 * 1024 * 1024, 1} },
1861 .block_erase = spi_block_erase_60,
1862 }, {
1863 .eraseblocks = { {2 * 1024 * 1024, 1} },
1864 .block_erase = spi_block_erase_c7,
1865 }
1866 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001867 .write = spi_chip_write_256,
1868 .read = spi_chip_read,
1869 },
1870
1871 {
1872 .vendor = "Eon",
1873 .name = "EN25F05",
1874 .bustype = CHIP_BUSTYPE_SPI,
1875 .manufacture_id = EON_ID_NOPREFIX,
1876 .model_id = EN_25F05,
1877 .total_size = 64,
1878 .page_size = 256,
1879 .tested = TEST_UNTESTED,
1880 .probe = probe_spi_rdid,
1881 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001882 .block_erasers =
1883 {
1884 {
1885 .eraseblocks = { {4 * 1024, 16} },
1886 .block_erase = spi_block_erase_20,
1887 }, {
1888 .eraseblocks = { {32 * 1024, 2} },
1889 .block_erase = spi_block_erase_d8,
1890 }, {
1891 .eraseblocks = { {32 * 1024, 2} },
1892 .block_erase = spi_block_erase_52,
1893 }, {
1894 .eraseblocks = { {64 * 1024, 1} },
1895 .block_erase = spi_block_erase_60,
1896 }, {
1897 .eraseblocks = { {64 * 1024, 1} },
1898 .block_erase = spi_block_erase_c7,
1899 }
1900 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001901 .write = spi_chip_write_256,
1902 .read = spi_chip_read,
1903 },
1904
1905 {
1906 .vendor = "Eon",
1907 .name = "EN25F10",
1908 .bustype = CHIP_BUSTYPE_SPI,
1909 .manufacture_id = EON_ID_NOPREFIX,
1910 .model_id = EN_25F10,
1911 .total_size = 128,
1912 .page_size = 256,
1913 .tested = TEST_UNTESTED,
1914 .probe = probe_spi_rdid,
1915 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001916 .block_erasers =
1917 {
1918 {
1919 .eraseblocks = { {4 * 1024, 32} },
1920 .block_erase = spi_block_erase_20,
1921 }, {
1922 .eraseblocks = { {32 * 1024, 4} },
1923 .block_erase = spi_block_erase_d8,
1924 }, {
1925 .eraseblocks = { {32 * 1024, 4} },
1926 .block_erase = spi_block_erase_52,
1927 }, {
1928 .eraseblocks = { {128 * 1024, 1} },
1929 .block_erase = spi_block_erase_60,
1930 }, {
1931 .eraseblocks = { {128 * 1024, 1} },
1932 .block_erase = spi_block_erase_c7,
1933 }
1934 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001935 .write = spi_chip_write_256,
1936 .read = spi_chip_read,
1937 },
1938
1939 {
1940 .vendor = "Eon",
1941 .name = "EN25F20",
1942 .bustype = CHIP_BUSTYPE_SPI,
1943 .manufacture_id = EON_ID_NOPREFIX,
1944 .model_id = EN_25F20,
1945 .total_size = 256,
1946 .page_size = 256,
1947 .tested = TEST_UNTESTED,
1948 .probe = probe_spi_rdid,
1949 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001950 .block_erasers =
1951 {
1952 {
1953 .eraseblocks = { {4 * 1024, 64} },
1954 .block_erase = spi_block_erase_20,
1955 }, {
1956 .eraseblocks = { {64 * 1024, 4} },
1957 .block_erase = spi_block_erase_d8,
1958 }, {
1959 .eraseblocks = { {64 * 1024, 4} },
1960 .block_erase = spi_block_erase_52,
1961 }, {
1962 .eraseblocks = { {256 * 1024, 1} },
1963 .block_erase = spi_block_erase_60,
1964 }, {
1965 .eraseblocks = { {256 * 1024, 1} },
1966 .block_erase = spi_block_erase_c7,
1967 }
1968 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001969 .write = spi_chip_write_256,
1970 .read = spi_chip_read,
1971 },
1972
1973 {
1974 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001975 .name = "EN25F40",
1976 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001977 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001978 .model_id = EN_25F40,
1979 .total_size = 512,
1980 .page_size = 256,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00001981 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001982 .probe = probe_spi_rdid,
1983 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001984 .block_erasers =
1985 {
1986 {
Sean Nelson54596372010-01-09 05:30:14 +00001987 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001988 .block_erase = spi_block_erase_20,
1989 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001990 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001991 .block_erase = spi_block_erase_d8,
1992 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001993 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001994 .block_erase = spi_block_erase_60,
1995 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001996 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001997 .block_erase = spi_block_erase_c7,
1998 },
1999 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002000 .write = spi_chip_write_256,
2001 .read = spi_chip_read,
2002 },
2003
2004 {
2005 .vendor = "Eon",
2006 .name = "EN25F80",
2007 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002008 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002009 .model_id = EN_25F80,
2010 .total_size = 1024,
2011 .page_size = 256,
2012 .tested = TEST_UNTESTED,
2013 .probe = probe_spi_rdid,
2014 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002015 .block_erasers =
2016 {
2017 {
2018 .eraseblocks = { {4 * 1024, 256} },
2019 .block_erase = spi_block_erase_20,
2020 }, {
2021 .eraseblocks = { {64 * 1024, 16} },
2022 .block_erase = spi_block_erase_d8,
2023 }, {
2024 .eraseblocks = { {1024 * 1024, 1} },
2025 .block_erase = spi_block_erase_60,
2026 }, {
2027 .eraseblocks = { {1024 * 1024, 1} },
2028 .block_erase = spi_block_erase_c7,
2029 }
2030 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002031 .write = spi_chip_write_256,
2032 .read = spi_chip_read,
2033 },
2034
2035 {
2036 .vendor = "Eon",
2037 .name = "EN25F16",
2038 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002039 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002040 .model_id = EN_25F16,
2041 .total_size = 2048,
2042 .page_size = 256,
2043 .tested = TEST_UNTESTED,
2044 .probe = probe_spi_rdid,
2045 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002046 .block_erasers =
2047 {
2048 {
2049 .eraseblocks = { {4 * 1024, 512} },
2050 .block_erase = spi_block_erase_20,
2051 }, {
2052 .eraseblocks = { {64 * 1024, 32} },
2053 .block_erase = spi_block_erase_d8,
2054 }, {
2055 .eraseblocks = { {2 * 1024 * 1024, 1} },
2056 .block_erase = spi_block_erase_60,
2057 }, {
2058 .eraseblocks = { {2 * 1024 * 1024, 1} },
2059 .block_erase = spi_block_erase_c7,
2060 }
2061 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002062 .write = spi_chip_write_256,
2063 .read = spi_chip_read,
2064 },
2065
2066 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002067 .vendor = "Eon",
2068 .name = "EN25F32",
2069 .bustype = CHIP_BUSTYPE_SPI,
2070 .manufacture_id = EON_ID_NOPREFIX,
2071 .model_id = EN_25F32,
2072 .total_size = 4096,
2073 .page_size = 256,
2074 .tested = TEST_UNTESTED,
2075 .probe = probe_spi_rdid,
2076 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002077 .block_erasers =
2078 {
2079 {
2080 .eraseblocks = { {4 * 1024, 1024} },
2081 .block_erase = spi_block_erase_20,
2082 }, {
2083 .eraseblocks = { {64 * 1024, 64} },
2084 .block_erase = spi_block_erase_d8,
2085 }, {
2086 .eraseblocks = { {4 * 1024 * 1024, 1} },
2087 .block_erase = spi_block_erase_60,
2088 }, {
2089 .eraseblocks = { {4 * 1024 * 1024, 1} },
2090 .block_erase = spi_block_erase_c7,
2091 }
2092 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002093 .write = spi_chip_write_256,
2094 .read = spi_chip_read,
2095 },
2096
2097 {
Russ Dill3cd5a122010-03-05 08:44:11 +00002098 .vendor = "Eon",
2099 .name = "EN29F010",
2100 .bustype = CHIP_BUSTYPE_PARALLEL,
2101 .manufacture_id = EON_ID,
2102 .model_id = EN_29F010,
2103 .total_size = 128,
2104 .page_size = 128,
2105 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
2106 .tested = TEST_OK_PREW,
2107 .probe = probe_jedec,
2108 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2109 .block_erasers =
2110 {
2111 {
2112 .eraseblocks = { {16 * 1024, 8} },
2113 .block_erase = erase_sector_jedec,
2114 },
2115 {
2116 .eraseblocks = { {128 * 1024, 1} },
2117 .block_erase = erase_chip_block_jedec,
2118 },
2119 },
2120 .write = write_jedec_1,
2121 .read = read_memmapped,
2122 },
2123
2124 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002125 .vendor = "EON",
2126 .name = "EN29F002(A)(N)B",
Urja Rannikko161b8852009-06-05 08:47:37 +00002127 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002128 .manufacture_id = EON_ID,
2129 .model_id = EN_29F002B,
2130 .total_size = 256,
2131 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002132 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002133 .tested = TEST_UNTESTED,
2134 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002135 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002136 .block_erasers =
2137 {
2138 {
2139 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002140 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002141 {8 * 1024, 2},
2142 {32 * 1024, 1},
2143 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002144 },
2145 .block_erase = erase_sector_jedec,
2146 }, {
2147 .eraseblocks = { {256 * 1024, 1} },
2148 .block_erase = erase_chip_block_jedec,
2149 },
2150 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002151 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002152 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002153 },
2154
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002155 {
2156 .vendor = "EON",
2157 .name = "EN29F002(A)(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00002158 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002159 .manufacture_id = EON_ID,
2160 .model_id = EN_29F002T,
2161 .total_size = 256,
2162 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002163 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00002164 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002165 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002166 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002167 .block_erasers =
2168 {
2169 {
2170 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002171 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002172 {32 * 1024, 1},
2173 {8 * 1024, 2},
2174 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002175 },
2176 .block_erase = erase_sector_jedec,
2177 }, {
2178 .eraseblocks = { {256 * 1024, 1} },
2179 .block_erase = erase_chip_block_jedec,
2180 },
2181 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002182 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002183 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002184 },
2185
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002186 {
2187 .vendor = "Fujitsu",
2188 .name = "MBM29F004BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002189 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002190 .manufacture_id = FUJITSU_ID,
2191 .model_id = MBM29F004BC,
2192 .total_size = 512,
2193 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002194 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002195 .tested = TEST_UNTESTED,
2196 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002197 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002198 .block_erasers =
2199 {
2200 {
2201 .eraseblocks = {
2202 {16 * 1024, 1},
2203 {8 * 1024, 2},
2204 {32 * 1024, 1},
2205 {64 * 1024, 7},
2206 },
Sean Nelson35727f72010-01-28 23:55:12 +00002207 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002208 }, {
2209 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002210 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002211 },
2212 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002213 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002214 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002215 },
2216
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002217 {
2218 .vendor = "Fujitsu",
2219 .name = "MBM29F004TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002220 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002221 .manufacture_id = FUJITSU_ID,
2222 .model_id = MBM29F004TC,
2223 .total_size = 512,
2224 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002225 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002226 .tested = TEST_UNTESTED,
2227 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002228 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002229 .block_erasers =
2230 {
2231 {
2232 .eraseblocks = {
2233 {64 * 1024, 7},
2234 {32 * 1024, 1},
2235 {8 * 1024, 2},
2236 {16 * 1024, 1},
2237 },
Sean Nelson35727f72010-01-28 23:55:12 +00002238 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002239 }, {
2240 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002241 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002242 },
2243 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002244 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002245 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002246 },
2247
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002248 {
Sean Nelson35727f72010-01-28 23:55:12 +00002249 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002250 .vendor = "Fujitsu",
2251 .name = "MBM29F400BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002252 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002253 .manufacture_id = FUJITSU_ID,
2254 .model_id = MBM29F400BC,
2255 .total_size = 512,
2256 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002257 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002258 .tested = TEST_UNTESTED,
2259 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002260 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002261 .block_erasers =
2262 {
2263 {
2264 .eraseblocks = {
2265 {16 * 1024, 1},
2266 {8 * 1024, 2},
2267 {32 * 1024, 1},
2268 {64 * 1024, 7},
2269 },
2270 .block_erase = block_erase_m29f400bt,
2271 }, {
2272 .eraseblocks = { {512 * 1024, 1} },
2273 .block_erase = block_erase_chip_m29f400bt,
2274 },
2275 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002276 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002277 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002278 },
2279
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002280 {
2281 .vendor = "Fujitsu",
2282 .name = "MBM29F400TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002283 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002284 .manufacture_id = FUJITSU_ID,
2285 .model_id = MBM29F400TC,
2286 .total_size = 512,
2287 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002288 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002289 .tested = TEST_UNTESTED,
2290 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002291 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002292 .block_erasers =
2293 {
2294 {
2295 .eraseblocks = {
2296 {64 * 1024, 7},
2297 {32 * 1024, 1},
2298 {8 * 1024, 2},
2299 {16 * 1024, 1},
2300 },
2301 .block_erase = block_erase_m29f400bt,
2302 }, {
2303 .eraseblocks = { {512 * 1024, 1} },
2304 .block_erase = block_erase_chip_m29f400bt,
2305 },
2306 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002307 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002308 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002309 },
2310
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002311 {
2312 .vendor = "Intel",
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002313 .name = "28F001BX-B",
Urja Rannikko161b8852009-06-05 08:47:37 +00002314 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002315 .manufacture_id = INTEL_ID,
2316 .model_id = P28F001BXB,
2317 .total_size = 128,
2318 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00002319 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002320 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002321 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002322 .block_erasers =
2323 {
2324 {
2325 .eraseblocks = {
2326 {8 * 1024, 1},
2327 {4 * 1024, 2},
2328 {112 * 1024, 1},
2329 },
Sean Nelson28accc22010-03-19 18:47:06 +00002330 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002331 },
2332 },
Sean Nelsondee4a832010-03-22 04:39:31 +00002333 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002334 .read = read_memmapped,
2335 },
2336
2337 {
2338 .vendor = "Intel",
2339 .name = "28F001BX-T",
Urja Rannikko161b8852009-06-05 08:47:37 +00002340 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002341 .manufacture_id = INTEL_ID,
2342 .model_id = P28F001BXT,
2343 .total_size = 128,
2344 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sean Nelsondee4a832010-03-22 04:39:31 +00002345 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002346 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002347 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002348 .block_erasers =
2349 {
2350 {
2351 .eraseblocks = {
2352 {112 * 1024, 1},
2353 {4 * 1024, 2},
2354 {8 * 1024, 1},
2355 },
Sean Nelson28accc22010-03-19 18:47:06 +00002356 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002357 },
2358 },
Sean Nelsondee4a832010-03-22 04:39:31 +00002359 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002360 .read = read_memmapped,
2361 },
2362
2363 {
2364 .vendor = "Intel",
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002365 .name = "28F004S5",
2366 .bustype = CHIP_BUSTYPE_PARALLEL,
2367 .manufacture_id = INTEL_ID,
2368 .model_id = E_28F004S5,
2369 .total_size = 512,
2370 .page_size = 256,
2371 .tested = TEST_UNTESTED,
2372 .probe = probe_82802ab,
2373 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002374 .block_erasers =
2375 {
2376 {
2377 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00002378 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002379 },
2380 },
Sean Nelsondee4a832010-03-22 04:39:31 +00002381 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002382 .write = write_82802ab,
2383 .read = read_memmapped,
2384 },
2385
2386 {
2387 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002388 .name = "82802AB",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002389 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002390 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002391 .model_id = I_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002392 .total_size = 512,
2393 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00002394 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00002395 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002396 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002397 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002398 .block_erasers =
2399 {
2400 {
2401 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00002402 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002403 },
2404 },
Sean Nelson28accc22010-03-19 18:47:06 +00002405 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002406 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002407 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002408 },
2409
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002410 {
2411 .vendor = "Intel",
2412 .name = "82802AC",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002413 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002414 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002415 .model_id = I_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002416 .total_size = 1024,
2417 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00002418 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00002419 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002420 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002421 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002422 .block_erasers =
2423 {
2424 {
2425 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00002426 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002427 },
2428 },
Sean Nelson28accc22010-03-19 18:47:06 +00002429 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002430 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002431 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002432 },
2433
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002434 {
2435 .vendor = "Macronix",
2436 .name = "MX25L512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002437 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002438 .manufacture_id = MX_ID,
2439 .model_id = MX_25L512,
2440 .total_size = 64,
2441 .page_size = 256,
2442 .tested = TEST_UNTESTED,
2443 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002444 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002445 .block_erasers =
2446 {
2447 {
2448 .eraseblocks = { {4 * 1024, 16} },
2449 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002450 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002451 .eraseblocks = { {64 * 1024, 1} },
2452 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002453 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002454 .eraseblocks = { {64 * 1024, 1} },
2455 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002456 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002457 .eraseblocks = { {64 * 1024, 1} },
2458 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002459 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002460 .eraseblocks = { {64 * 1024, 1} },
2461 .block_erase = spi_block_erase_c7,
2462 },
2463 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002464 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002465 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002466 },
2467
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002468 {
2469 .vendor = "Macronix",
2470 .name = "MX25L1005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002471 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002472 .manufacture_id = MX_ID,
2473 .model_id = MX_25L1005,
2474 .total_size = 128,
2475 .page_size = 256,
2476 .tested = TEST_UNTESTED,
2477 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002478 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002479 .block_erasers =
2480 {
2481 {
2482 .eraseblocks = { {4 * 1024, 32} },
2483 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002484 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002485 .eraseblocks = { {64 * 1024, 2} },
2486 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002487 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002488 .eraseblocks = { {128 * 1024, 1} },
2489 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002490 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002491 .eraseblocks = { {128 * 1024, 1} },
2492 .block_erase = spi_block_erase_c7,
2493 },
2494 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002495 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002496 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002497 },
2498
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002499 {
2500 .vendor = "Macronix",
2501 .name = "MX25L2005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002502 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002503 .manufacture_id = MX_ID,
2504 .model_id = MX_25L2005,
2505 .total_size = 256,
2506 .page_size = 256,
2507 .tested = TEST_UNTESTED,
2508 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002509 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002510 .block_erasers =
2511 {
2512 {
2513 .eraseblocks = { {4 * 1024, 64} },
2514 .block_erase = spi_block_erase_20,
2515 }, {
2516 .eraseblocks = { {64 * 1024, 4} },
2517 .block_erase = spi_block_erase_52,
2518 }, {
2519 .eraseblocks = { {64 * 1024, 4} },
2520 .block_erase = spi_block_erase_d8,
2521 }, {
2522 .eraseblocks = { {256 * 1024, 1} },
2523 .block_erase = spi_block_erase_60,
2524 }, {
2525 .eraseblocks = { {256 * 1024, 1} },
2526 .block_erase = spi_block_erase_c7,
2527 },
2528 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002529 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002530 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002531 },
2532
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002533 {
2534 .vendor = "Macronix",
2535 .name = "MX25L4005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002536 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002537 .manufacture_id = MX_ID,
2538 .model_id = MX_25L4005,
2539 .total_size = 512,
2540 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002541 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002542 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002543 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002544 .block_erasers =
2545 {
2546 {
2547 .eraseblocks = { {4 * 1024, 128} },
2548 .block_erase = spi_block_erase_20,
2549 }, {
2550 .eraseblocks = { {64 * 1024, 8} },
2551 .block_erase = spi_block_erase_52,
2552 }, {
2553 .eraseblocks = { {64 * 1024, 8} },
2554 .block_erase = spi_block_erase_d8,
2555 }, {
2556 .eraseblocks = { {512 * 1024, 1} },
2557 .block_erase = spi_block_erase_60,
2558 }, {
2559 .eraseblocks = { {512 * 1024, 1} },
2560 .block_erase = spi_block_erase_c7,
2561 },
2562 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002563 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002564 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002565 },
2566
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002567 {
2568 .vendor = "Macronix",
2569 .name = "MX25L8005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002570 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002571 .manufacture_id = MX_ID,
2572 .model_id = MX_25L8005,
2573 .total_size = 1024,
2574 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002575 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002576 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002577 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002578 .block_erasers =
2579 {
2580 {
2581 .eraseblocks = { {4 * 1024, 256} },
2582 .block_erase = spi_block_erase_20,
2583 }, {
2584 .eraseblocks = { {64 * 1024, 16} },
2585 .block_erase = spi_block_erase_52,
2586 }, {
2587 .eraseblocks = { {64 * 1024, 16} },
2588 .block_erase = spi_block_erase_d8,
2589 }, {
2590 .eraseblocks = { {1024 * 1024, 1} },
2591 .block_erase = spi_block_erase_60,
2592 }, {
2593 .eraseblocks = { {1024 * 1024, 1} },
2594 .block_erase = spi_block_erase_c7,
2595 },
2596 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002597 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002598 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002599 },
2600
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002601 {
2602 .vendor = "Macronix",
2603 .name = "MX25L1605",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002604 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002605 .manufacture_id = MX_ID,
2606 .model_id = MX_25L1605,
2607 .total_size = 2048,
2608 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002609 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002610 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002611 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002612 .block_erasers =
2613 {
2614 {
2615 .eraseblocks = { {4 * 1024, 512} },
2616 .block_erase = spi_block_erase_20, /* This erase function has 64k blocksize for eLiteFlash */
2617 }, {
2618 .eraseblocks = { {64 * 1024, 32} }, /* Not supported in MX25L1605 (eLiteFlash) and MX25L1605D */
2619 .block_erase = spi_block_erase_52,
2620 }, {
2621 .eraseblocks = { {64 * 1024, 32} },
2622 .block_erase = spi_block_erase_d8,
2623 }, {
2624 .eraseblocks = { {2 * 1024 * 1024, 1} },
2625 .block_erase = spi_block_erase_60,
2626 }, {
2627 .eraseblocks = { {2 * 1024 * 1024, 1} },
2628 .block_erase = spi_block_erase_c7,
2629 },
2630 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002631 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002632 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002633 },
2634
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002635 {
2636 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002637 .name = "MX25L1635D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002638 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002639 .manufacture_id = MX_ID,
2640 .model_id = MX_25L1635D,
2641 .total_size = 2048,
2642 .page_size = 256,
2643 .tested = TEST_UNTESTED,
2644 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002645 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002646 .block_erasers =
2647 {
2648 {
2649 .eraseblocks = { {4 * 1024, 512} },
2650 .block_erase = spi_block_erase_20,
2651 }, {
2652 .eraseblocks = { {64 * 1024, 32} },
2653 .block_erase = spi_block_erase_d8,
2654 }, {
2655 .eraseblocks = { {2 * 1024 * 1024, 1} },
2656 .block_erase = spi_block_erase_60,
2657 }, {
2658 .eraseblocks = { {2 * 1024 * 1024, 1} },
2659 .block_erase = spi_block_erase_c7,
2660 }
2661 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002662 .write = spi_chip_write_256,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002663 .read = spi_chip_read,
2664 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00002665
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002666 {
2667 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002668 .name = "MX25L3205",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002669 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002670 .manufacture_id = MX_ID,
2671 .model_id = MX_25L3205,
2672 .total_size = 4096,
2673 .page_size = 256,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002674 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002675 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002676 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002677 .block_erasers =
2678 {
2679 {
2680 .eraseblocks = { {4 * 1024, 1024} },
2681 .block_erase = spi_block_erase_20,
2682 }, {
2683 .eraseblocks = { {4 * 1024, 1024} },
2684 .block_erase = spi_block_erase_d8,
2685 }, {
2686 .eraseblocks = { {4 * 1024 * 1024, 1} },
2687 .block_erase = spi_block_erase_60,
2688 }, {
2689 .eraseblocks = { {4 * 1024 * 1024, 1} },
2690 .block_erase = spi_block_erase_c7,
2691 },
2692 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002693 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002694 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002695 },
2696
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002697 {
2698 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002699 .name = "MX25L3235D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002700 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002701 .manufacture_id = MX_ID,
2702 .model_id = MX_25L3235D,
2703 .total_size = 4096,
2704 .page_size = 256,
2705 .tested = TEST_UNTESTED,
2706 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002707 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002708 .block_erasers =
2709 {
2710 {
2711 .eraseblocks = { {4 * 1024, 1024} },
2712 .block_erase = spi_block_erase_20,
2713 }, {
2714 .eraseblocks = { {64 * 1024, 64} },
2715 .block_erase = spi_block_erase_d8,
2716 }, {
2717 .eraseblocks = { {4 * 1024 * 1024, 1} },
2718 .block_erase = spi_block_erase_60,
2719 }, {
2720 .eraseblocks = { {4 * 1024 * 1024, 1} },
2721 .block_erase = spi_block_erase_c7,
2722 }
2723 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002724 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002725 .read = spi_chip_read,
2726 },
2727
2728 {
2729 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002730 .name = "MX25L6405",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002731 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002732 .manufacture_id = MX_ID,
2733 .model_id = MX_25L6405,
2734 .total_size = 8192,
2735 .page_size = 256,
Carl-Daniel Hailfinger452b3e32009-06-22 11:14:43 +00002736 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002737 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002738 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002739 .block_erasers =
2740 {
2741 {
2742 .eraseblocks = { {64 * 1024, 128} },
2743 .block_erase = spi_block_erase_20,
2744 }, {
2745 .eraseblocks = { {64 * 1024, 128} },
2746 .block_erase = spi_block_erase_d8,
2747 }, {
2748 .eraseblocks = { {8 * 1024 * 1024, 1} },
2749 .block_erase = spi_block_erase_60,
2750 }, {
2751 .eraseblocks = { {8 * 1024 * 1024, 1} },
2752 .block_erase = spi_block_erase_c7,
2753 }
2754 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002755 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002756 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002757 },
2758
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002759 {
2760 .vendor = "Macronix",
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002761 .name = "MX25L12805",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002762 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002763 .manufacture_id = MX_ID,
2764 .model_id = MX_25L12805,
2765 .total_size = 16384,
2766 .page_size = 256,
2767 .tested = TEST_UNTESTED,
2768 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002769 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002770 .block_erasers =
2771 {
2772 {
2773 .eraseblocks = { {4 * 1024, 4096} },
2774 .block_erase = spi_block_erase_20,
2775 }, {
2776 .eraseblocks = { {64 * 1024, 256} },
2777 .block_erase = spi_block_erase_d8,
2778 }, {
2779 .eraseblocks = { {16 * 1024 * 1024, 1} },
2780 .block_erase = spi_block_erase_60,
2781 }, {
2782 .eraseblocks = { {16 * 1024 * 1024, 1} },
2783 .block_erase = spi_block_erase_c7,
2784 }
2785 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002786 .write = spi_chip_write_256,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002787 .read = spi_chip_read,
2788 },
2789
2790 {
2791 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00002792 .name = "MX29F001B",
2793 .bustype = CHIP_BUSTYPE_PARALLEL,
2794 .manufacture_id = MX_ID,
2795 .model_id = MX_29F001B,
2796 .total_size = 128,
2797 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002798 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2799 .tested = TEST_UNTESTED,
2800 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002801 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002802 .block_erasers =
2803 {
2804 {
2805 .eraseblocks = {
2806 {8 * 1024, 1},
2807 {4 * 1024, 2},
2808 {8 * 1024, 2},
2809 {32 * 1024, 1},
2810 {64 * 1024, 1},
2811 },
Sean Nelson35727f72010-01-28 23:55:12 +00002812 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002813 }, {
2814 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002815 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002816 }
2817 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002818 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002819 .read = read_memmapped,
2820 },
2821
2822 {
2823 .vendor = "Macronix",
2824 .name = "MX29F001T",
2825 .bustype = CHIP_BUSTYPE_PARALLEL,
2826 .manufacture_id = MX_ID,
2827 .model_id = MX_29F001T,
2828 .total_size = 128,
2829 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002830 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2831 .tested = TEST_UNTESTED,
2832 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002833 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002834 .block_erasers =
2835 {
2836 {
2837 .eraseblocks = {
2838 {64 * 1024, 1},
2839 {32 * 1024, 1},
2840 {8 * 1024, 2},
2841 {4 * 1024, 2},
2842 {8 * 1024, 1},
2843 },
Sean Nelson35727f72010-01-28 23:55:12 +00002844 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002845 }, {
2846 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002847 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002848 }
2849 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002850 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002851 .read = read_memmapped,
2852 },
2853
2854 {
2855 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002856 .name = "MX29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00002857 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002858 .manufacture_id = MX_ID,
2859 .model_id = MX_29F002B,
2860 .total_size = 256,
2861 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002862 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002863 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00002864 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002865 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002866 .block_erasers =
2867 {
2868 {
2869 .eraseblocks = {
2870 {16 * 1024, 1},
2871 {8 * 1024, 2},
2872 {32 * 1024, 1},
2873 {64 * 1024, 3},
2874 },
Sean Nelson35727f72010-01-28 23:55:12 +00002875 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002876 }, {
2877 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002878 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002879 },
2880 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002881 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002882 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002883 },
2884
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002885 {
2886 .vendor = "Macronix",
2887 .name = "MX29F002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00002888 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002889 .manufacture_id = MX_ID,
2890 .model_id = MX_29F002T,
2891 .total_size = 256,
2892 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002893 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00002894 .tested = TEST_OK_PRW,
Sean Nelson35727f72010-01-28 23:55:12 +00002895 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002896 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002897 .block_erasers =
2898 {
2899 {
2900 .eraseblocks = {
2901 {64 * 1024, 3},
2902 {32 * 1024, 1},
2903 {8 * 1024, 2},
2904 {16 * 1024, 1},
2905 },
Sean Nelson35727f72010-01-28 23:55:12 +00002906 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002907 }, {
2908 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002909 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002910 },
2911 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002912 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002913 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002914 },
2915
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002916 {
2917 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00002918 .name = "MX29LV040",
Urja Rannikko038a3122009-06-28 19:19:25 +00002919 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002920 .manufacture_id = MX_ID,
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00002921 .model_id = MX_29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002922 .total_size = 512,
2923 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002924 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2925 .tested = TEST_UNTESTED,
2926 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002927 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002928 .block_erasers =
2929 {
2930 {
2931 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00002932 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002933 }, {
2934 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002935 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002936 },
2937 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002938 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002939 .read = read_memmapped,
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00002940 },
2941
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002942 {
2943 .vendor = "Numonyx",
2944 .name = "M25PE10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002945 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002946 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002947 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002948 .total_size = 128,
2949 .page_size = 256,
2950 .tested = TEST_UNTESTED,
2951 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002952 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00002953 .block_erasers =
2954 {
2955 {
2956 .eraseblocks = { {4 * 1024, 32} },
2957 .block_erase = spi_block_erase_20,
2958 }, {
2959 .eraseblocks = { {64 * 1024, 2} },
2960 .block_erase = spi_block_erase_d8,
2961 }, {
2962 .eraseblocks = { {128 * 1024, 1} },
2963 .block_erase = spi_block_erase_c7,
2964 }
2965 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002966 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002967 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002968 },
2969
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002970 {
2971 .vendor = "Numonyx",
2972 .name = "M25PE20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002973 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002974 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002975 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002976 .total_size = 256,
2977 .page_size = 256,
2978 .tested = TEST_UNTESTED,
2979 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002980 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00002981 .block_erasers =
2982 {
2983 {
2984 .eraseblocks = { {4 * 1024, 64} },
2985 .block_erase = spi_block_erase_20,
2986 }, {
2987 .eraseblocks = { {64 * 1024, 4} },
2988 .block_erase = spi_block_erase_d8,
2989 }, {
2990 .eraseblocks = { {256 * 1024, 1} },
2991 .block_erase = spi_block_erase_c7,
2992 }
2993 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002994 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002995 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002996 },
2997
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002998 {
2999 .vendor = "Numonyx",
3000 .name = "M25PE40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003001 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003002 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003003 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00003004 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003005 .page_size = 256,
3006 .tested = TEST_UNTESTED,
3007 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003008 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003009 .block_erasers =
3010 {
3011 {
3012 .eraseblocks = { {4 * 1024, 128} },
3013 .block_erase = spi_block_erase_20,
3014 }, {
3015 .eraseblocks = { {64 * 1024, 8} },
3016 .block_erase = spi_block_erase_d8,
3017 }, {
3018 .eraseblocks = { {512 * 1024, 1} },
3019 .block_erase = spi_block_erase_c7,
3020 }
3021 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003022 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003023 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003024 },
3025
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003026 {
3027 .vendor = "Numonyx",
3028 .name = "M25PE80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003029 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003030 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003031 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003032 .total_size = 1024,
3033 .page_size = 256,
3034 .tested = TEST_OK_PREW,
3035 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003036 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003037 .block_erasers =
3038 {
3039 {
3040 .eraseblocks = { {4 * 1024, 256} },
3041 .block_erase = spi_block_erase_20,
3042 }, {
3043 .eraseblocks = { {64 * 1024, 16} },
3044 .block_erase = spi_block_erase_d8,
3045 }, {
3046 .eraseblocks = { {1024 * 1024, 1} },
3047 .block_erase = spi_block_erase_c7,
3048 }
3049 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003050 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003051 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003052 },
3053
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003054 {
3055 .vendor = "Numonyx",
3056 .name = "M25PE16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003057 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003058 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003059 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003060 .total_size = 2048,
3061 .page_size = 256,
3062 .tested = TEST_UNTESTED,
3063 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003064 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003065 .block_erasers =
3066 {
3067 {
3068 .eraseblocks = { {4 * 1024, 512} },
3069 .block_erase = spi_block_erase_20,
3070 }, {
3071 .eraseblocks = { {64 * 1024, 32} },
3072 .block_erase = spi_block_erase_d8,
3073 }, {
3074 .eraseblocks = { {2 * 1024 * 1024, 1} },
3075 .block_erase = spi_block_erase_c7,
3076 }
3077 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003078 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003079 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003080 },
3081
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003082 {
3083 .vendor = "PMC",
3084 .name = "Pm25LV010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003085 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003086 .manufacture_id = PMC_ID,
3087 .model_id = PMC_25LV010,
3088 .total_size = 128,
3089 .page_size = 256,
3090 .tested = TEST_UNTESTED,
3091 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003092 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003093 .block_erasers =
3094 {
3095 {
3096 .eraseblocks = { {4 * 1024, 32} },
3097 .block_erase = spi_block_erase_d7,
3098 }, {
3099 .eraseblocks = { {32 * 1024, 4} },
3100 .block_erase = spi_block_erase_d8,
3101 }, {
3102 .eraseblocks = { {128 * 1024, 1} },
3103 .block_erase = spi_block_erase_c7,
3104 }
3105 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003106 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003107 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003108 },
3109
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003110 {
3111 .vendor = "PMC",
3112 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003113 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003114 .manufacture_id = PMC_ID,
3115 .model_id = PMC_25LV016B,
3116 .total_size = 2048,
3117 .page_size = 256,
3118 .tested = TEST_UNTESTED,
3119 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003120 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003121 .block_erasers =
3122 {
3123 {
3124 .eraseblocks = { {4 * 1024, 512} },
3125 .block_erase = spi_block_erase_d7,
3126 }, {
3127 .eraseblocks = { {4 * 1024, 512} },
3128 .block_erase = spi_block_erase_20,
3129 }, {
3130 .eraseblocks = { {64 * 1024, 32} },
3131 .block_erase = spi_block_erase_d8,
3132 }, {
3133 .eraseblocks = { {2 * 1024 * 1024, 1} },
3134 .block_erase = spi_block_erase_60,
3135 }, {
3136 .eraseblocks = { {2 * 1024 * 1024, 1} },
3137 .block_erase = spi_block_erase_c7,
3138 }
3139 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003140 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003141 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003142 },
3143
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003144 {
3145 .vendor = "PMC",
3146 .name = "Pm25LV020",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003147 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003148 .manufacture_id = PMC_ID,
3149 .model_id = PMC_25LV020,
3150 .total_size = 256,
3151 .page_size = 256,
3152 .tested = TEST_UNTESTED,
3153 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003154 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003155 .block_erasers =
3156 {
3157 {
3158 .eraseblocks = { {4 * 1024, 64} },
3159 .block_erase = spi_block_erase_d7,
3160 }, {
3161 .eraseblocks = { {64 * 1024, 4} },
3162 .block_erase = spi_block_erase_d8,
3163 }, {
3164 .eraseblocks = { {256 * 1024, 1} },
3165 .block_erase = spi_block_erase_c7,
3166 }
3167 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003168 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003169 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003170 },
3171
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003172 {
3173 .vendor = "PMC",
3174 .name = "Pm25LV040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003175 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003176 .manufacture_id = PMC_ID,
3177 .model_id = PMC_25LV040,
3178 .total_size = 512,
3179 .page_size = 256,
3180 .tested = TEST_UNTESTED,
3181 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003182 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003183 .block_erasers =
3184 {
3185 {
3186 .eraseblocks = { {4 * 1024, 128} },
3187 .block_erase = spi_block_erase_d7,
3188 }, {
3189 .eraseblocks = { {64 * 1024, 8} },
3190 .block_erase = spi_block_erase_d8,
3191 }, {
3192 .eraseblocks = { {512 * 1024, 1} },
3193 .block_erase = spi_block_erase_c7,
3194 }
3195 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003196 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003197 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003198 },
3199
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003200 {
3201 .vendor = "PMC",
3202 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003203 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003204 .manufacture_id = PMC_ID,
3205 .model_id = PMC_25LV080B,
3206 .total_size = 1024,
3207 .page_size = 256,
3208 .tested = TEST_UNTESTED,
3209 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003210 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003211 .block_erasers =
3212 {
3213 {
3214 .eraseblocks = { {4 * 1024, 256} },
3215 .block_erase = spi_block_erase_d7,
3216 }, {
3217 .eraseblocks = { {4 * 1024, 256} },
3218 .block_erase = spi_block_erase_20,
3219 }, {
3220 .eraseblocks = { {64 * 1024, 16} },
3221 .block_erase = spi_block_erase_d8,
3222 }, {
3223 .eraseblocks = { {1024 * 1024, 1} },
3224 .block_erase = spi_block_erase_60,
3225 }, {
3226 .eraseblocks = { {1024 * 1024, 1} },
3227 .block_erase = spi_block_erase_c7,
3228 }
3229 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003230 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003231 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003232 },
3233
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003234 {
3235 .vendor = "PMC",
3236 .name = "Pm25LV512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003237 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003238 .manufacture_id = PMC_ID,
3239 .model_id = PMC_25LV512,
3240 .total_size = 64,
3241 .page_size = 256,
3242 .tested = TEST_UNTESTED,
3243 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003244 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003245 .block_erasers =
3246 {
3247 {
3248 .eraseblocks = { {4 * 1024, 16} },
3249 .block_erase = spi_block_erase_d7,
3250 }, {
3251 .eraseblocks = { {32 * 1024, 2} },
3252 .block_erase = spi_block_erase_d8,
3253 }, {
3254 .eraseblocks = { {64 * 1024, 1} },
3255 .block_erase = spi_block_erase_c7,
3256 }
3257 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003258 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003259 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003260 },
3261
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003262 {
3263 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00003264 .name = "Pm29F002T",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003265 .bustype = CHIP_BUSTYPE_PARALLEL,
3266 .manufacture_id = PMC_ID_NOPREFIX,
3267 .model_id = PMC_29F002T,
3268 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00003269 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003270 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
3271 .tested = TEST_UNTESTED,
3272 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003273 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00003274 .block_erasers =
3275 {
3276 {
3277 .eraseblocks = {
3278 {128 * 1024, 1},
3279 {96 * 1024, 1},
3280 {8 * 1024, 2},
3281 {16 * 1024, 1},
3282 },
Sean Nelson35727f72010-01-28 23:55:12 +00003283 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003284 }, {
3285 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003286 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003287 },
3288 },
Sean Nelson35727f72010-01-28 23:55:12 +00003289 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003290 .read = read_memmapped,
3291 },
3292
3293 {
3294 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00003295 .name = "Pm29F002B",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003296 .bustype = CHIP_BUSTYPE_PARALLEL,
3297 .manufacture_id = PMC_ID_NOPREFIX,
3298 .model_id = PMC_29F002B,
3299 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00003300 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003301 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003302 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00003303 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003304 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00003305 .block_erasers =
3306 {
3307 {
3308 .eraseblocks = {
3309 {16 * 1024, 1},
3310 {8 * 1024, 2},
3311 {96 * 1024, 1},
3312 {128 * 1024, 1},
3313 },
Sean Nelson35727f72010-01-28 23:55:12 +00003314 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003315 }, {
3316 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003317 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003318 },
3319 },
Sean Nelson35727f72010-01-28 23:55:12 +00003320 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003321 .read = read_memmapped,
3322 },
3323
3324 {
3325 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003326 .name = "Pm39LV010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003327 .bustype = CHIP_BUSTYPE_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003328 .manufacture_id = PMC_ID_NOPREFIX,
3329 .model_id = PMC_39F010,
3330 .total_size = 128,
3331 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003332 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
3333 .tested = TEST_UNTESTED,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003334 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003335 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00003336 .block_erasers =
3337 {
3338 {
3339 .eraseblocks = { {4 * 1024, 32} },
3340 .block_erase = erase_sector_jedec,
3341 }, {
3342 .eraseblocks = { {64 * 1024, 2} },
3343 .block_erase = erase_block_jedec,
3344 }, {
3345 .eraseblocks = { {128 * 1024, 1} },
3346 .block_erase = erase_chip_block_jedec,
3347 }
3348 },
Sean Nelson35727f72010-01-28 23:55:12 +00003349 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003350 .read = read_memmapped,
3351 },
3352
3353 {
3354 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003355 .name = "Pm49FL002",
Sean Nelson35727f72010-01-28 23:55:12 +00003356 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux*/
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003357 .manufacture_id = PMC_ID_NOPREFIX,
3358 .model_id = PMC_49FL002,
3359 .total_size = 256,
3360 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003361 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Russ Dill8c7c4682010-03-09 16:53:06 +00003362 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00003363 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003364 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00003365 .block_erasers =
3366 {
3367 {
3368 .eraseblocks = { {4 * 1024, 64} },
3369 .block_erase = erase_sector_jedec,
3370 }, {
3371 .eraseblocks = { {16 * 1024, 16} },
3372 .block_erase = erase_block_jedec,
3373 }, {
3374 .eraseblocks = { {256 * 1024, 1} },
3375 .block_erase = erase_chip_block_jedec,
3376 }
3377 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00003378 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00003379 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003380 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003381 },
3382
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003383 {
3384 .vendor = "PMC",
3385 .name = "Pm49FL004",
Sean Nelson35727f72010-01-28 23:55:12 +00003386 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux*/
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003387 .manufacture_id = PMC_ID_NOPREFIX,
3388 .model_id = PMC_49FL004,
3389 .total_size = 512,
3390 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003391 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
3392 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00003393 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003394 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00003395 .block_erasers =
3396 {
3397 {
3398 .eraseblocks = { {4 * 1024, 128} },
3399 .block_erase = erase_sector_jedec,
3400 }, {
3401 .eraseblocks = { {64 * 1024, 8} },
3402 .block_erase = erase_block_jedec,
3403 }, {
3404 .eraseblocks = { {512 * 1024, 1} },
3405 .block_erase = erase_chip_block_jedec,
3406 }
3407 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00003408 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00003409 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003410 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003411 },
3412
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003413 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00003414 .vendor = "Sanyo",
3415 .name = "LF25FW203A",
3416 .bustype = CHIP_BUSTYPE_SPI,
3417 .manufacture_id = SANYO_ID,
3418 .model_id = SANYO_LE25FW203A,
3419 .total_size = 2048,
3420 .page_size = 256,
3421 .tested = TEST_UNTESTED,
3422 .probe = probe_spi_rdid,
3423 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003424 .block_erasers =
3425 {
3426 {
3427 .eraseblocks = { {64 * 1024, 32} },
3428 .block_erase = spi_block_erase_d8,
3429 }, {
3430 .eraseblocks = { {2 * 1024 * 1024, 1} },
3431 .block_erase = spi_block_erase_c7,
3432 }
3433 },
Sean Nelsond70b09c2009-11-24 02:11:08 +00003434 .write = spi_chip_write_256,
3435 .read = spi_chip_read,
3436 },
3437
3438 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003439 .vendor = "Sharp",
3440 .name = "LHF00L04",
Urja Rannikko038a3122009-06-28 19:19:25 +00003441 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003442 .manufacture_id = SHARP_ID,
3443 .model_id = SHARP_LHF00L04,
3444 .total_size = 1024,
3445 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003446 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003447 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003448 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003449 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003450 .block_erasers =
3451 {
3452 {
3453 .eraseblocks = {
3454 {64 * 1024, 15},
3455 {8 * 1024, 8}
3456 },
Sean Nelson28accc22010-03-19 18:47:06 +00003457 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003458 }, {
3459 .eraseblocks = {
3460 {1024 * 1024, 1}
3461 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00003462 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003463 },
3464 },
Sean Nelson28accc22010-03-19 18:47:06 +00003465 .unlock = unlock_82802ab,
3466 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003467 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003468 },
3469
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003470 {
3471 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00003472 .name = "S25FL008A",
3473 .bustype = CHIP_BUSTYPE_SPI,
3474 .manufacture_id = SPANSION_ID,
3475 .model_id = SPANSION_S25FL008A,
3476 .total_size = 1024,
3477 .page_size = 256,
3478 .tested = TEST_OK_PREW,
3479 .probe = probe_spi_rdid,
3480 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00003481 .block_erasers =
3482 {
3483 {
3484 .eraseblocks = { {64 * 1024, 16} },
3485 .block_erase = spi_block_erase_d8,
3486 }, {
3487 .eraseblocks = { {1024 * 1024, 1} },
3488 .block_erase = spi_block_erase_c7,
3489 }
3490 },
3491 .write = spi_chip_write_256,
3492 .read = spi_chip_read,
3493 },
3494
3495 {
3496 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003497 .name = "S25FL016A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003498 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003499 .manufacture_id = SPANSION_ID,
3500 .model_id = SPANSION_S25FL016A,
3501 .total_size = 2048,
3502 .page_size = 256,
Sean Nelson5643c072010-01-19 03:23:07 +00003503 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003504 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003505 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003506 .block_erasers =
3507 {
3508 {
3509 .eraseblocks = { {64 * 1024, 32} },
3510 .block_erase = spi_block_erase_d8,
3511 }, {
3512 .eraseblocks = { {2 * 1024 * 1024, 1} },
3513 .block_erase = spi_block_erase_c7,
3514 }
3515 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003516 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003517 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003518 },
3519
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003520 {
3521 .vendor = "SST",
3522 .name = "SST25VF016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003523 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003524 .manufacture_id = SST_ID,
3525 .model_id = SST_25VF016B,
3526 .total_size = 2048,
3527 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003528 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003529 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003530 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003531 .block_erasers =
3532 {
3533 {
3534 .eraseblocks = { {4 * 1024, 512} },
3535 .block_erase = spi_block_erase_20,
3536 }, {
3537 .eraseblocks = { {32 * 1024, 64} },
3538 .block_erase = spi_block_erase_52,
3539 }, {
3540 .eraseblocks = { {64 * 1024, 32} },
3541 .block_erase = spi_block_erase_d8,
3542 }, {
3543 .eraseblocks = { {2 * 1024 * 1024, 1} },
3544 .block_erase = spi_block_erase_60,
3545 }, {
3546 .eraseblocks = { {2 * 1024 * 1024, 1} },
3547 .block_erase = spi_block_erase_c7,
3548 },
3549 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003550 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003551 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003552 },
3553
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003554 {
3555 .vendor = "SST",
3556 .name = "SST25VF032B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003557 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003558 .manufacture_id = SST_ID,
3559 .model_id = SST_25VF032B,
3560 .total_size = 4096,
3561 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003562 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003563 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003564 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003565 .block_erasers =
3566 {
3567 {
3568 .eraseblocks = { {4 * 1024, 1024} },
3569 .block_erase = spi_block_erase_20,
3570 }, {
3571 .eraseblocks = { {32 * 1024, 128} },
3572 .block_erase = spi_block_erase_52,
3573 }, {
3574 .eraseblocks = { {64 * 1024, 64} },
3575 .block_erase = spi_block_erase_d8,
3576 }, {
3577 .eraseblocks = { {4 * 1024 * 1024, 1} },
3578 .block_erase = spi_block_erase_60,
3579 }, {
3580 .eraseblocks = { {4 * 1024 * 1024, 1} },
3581 .block_erase = spi_block_erase_c7,
3582 },
3583 },
3584 .write = spi_chip_write_1,
3585 .read = spi_chip_read,
3586 },
3587
3588 {
3589 .vendor = "SST",
3590 .name = "SST25VF040.REMS",
3591 .bustype = CHIP_BUSTYPE_SPI,
3592 .manufacture_id = SST_ID,
3593 .model_id = SST_25VF040_REMS,
3594 .total_size = 512,
3595 .page_size = 256,
3596 .tested = TEST_OK_PR,
3597 .probe = probe_spi_rems,
3598 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003599 .block_erasers =
3600 {
3601 {
3602 .eraseblocks = { {4 * 1024, 128} },
3603 .block_erase = spi_block_erase_20,
3604 }, {
3605 .eraseblocks = { {32 * 1024, 16} },
3606 .block_erase = spi_block_erase_52,
3607 }, {
3608 .eraseblocks = { {512 * 1024, 1} },
3609 .block_erase = spi_block_erase_60,
3610 },
3611 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003612 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003613 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003614 },
3615
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003616 {
3617 .vendor = "SST",
3618 .name = "SST25VF040B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003619 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003620 .manufacture_id = SST_ID,
3621 .model_id = SST_25VF040B,
3622 .total_size = 512,
3623 .page_size = 256,
3624 .tested = TEST_UNTESTED,
3625 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003626 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003627 .block_erasers =
3628 {
3629 {
3630 .eraseblocks = { {4 * 1024, 128} },
3631 .block_erase = spi_block_erase_20,
3632 }, {
3633 .eraseblocks = { {32 * 1024, 16} },
3634 .block_erase = spi_block_erase_52,
3635 }, {
3636 .eraseblocks = { {64 * 1024, 8} },
3637 .block_erase = spi_block_erase_d8,
3638 }, {
3639 .eraseblocks = { {512 * 1024, 1} },
3640 .block_erase = spi_block_erase_60,
3641 }, {
3642 .eraseblocks = { {512 * 1024, 1} },
3643 .block_erase = spi_block_erase_c7,
3644 },
3645 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003646 .write = spi_chip_write_1,
Zheng Bao0677dff2009-02-25 08:07:33 +00003647 .read = spi_chip_read,
3648 },
3649
3650 {
3651 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00003652 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003653 .bustype = CHIP_BUSTYPE_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003654 .manufacture_id = SST_ID,
3655 .model_id = SST_25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00003656 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003657 .page_size = 256,
Peter Stugefd9217d2009-01-26 03:37:40 +00003658 .tested = TEST_OK_PR,
3659 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003660 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003661 .block_erasers =
3662 {
3663 {
3664 .eraseblocks = { {4 * 1024, 128} },
3665 .block_erase = spi_block_erase_20,
3666 }, {
3667 .eraseblocks = { {32 * 1024, 16} },
3668 .block_erase = spi_block_erase_52,
3669 }, {
3670 .eraseblocks = { {64 * 1024, 8} },
3671 .block_erase = spi_block_erase_d8,
3672 }, {
3673 .eraseblocks = { {512 * 1024, 1} },
3674 .block_erase = spi_block_erase_60,
3675 }, {
3676 .eraseblocks = { {512 * 1024, 1} },
3677 .block_erase = spi_block_erase_c7,
3678 },
3679 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003680 .write = spi_chip_write_1,
Peter Stugefd9217d2009-01-26 03:37:40 +00003681 .read = spi_chip_read,
3682 },
3683
3684 {
3685 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003686 .name = "SST25VF080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003687 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003688 .manufacture_id = SST_ID,
3689 .model_id = SST_25VF080B,
3690 .total_size = 1024,
3691 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003692 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003693 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003694 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003695 .block_erasers =
3696 {
3697 {
3698 .eraseblocks = { {4 * 1024, 256} },
3699 .block_erase = spi_block_erase_20,
3700 }, {
3701 .eraseblocks = { {32 * 1024, 32} },
3702 .block_erase = spi_block_erase_52,
3703 }, {
3704 .eraseblocks = { {64 * 1024, 16} },
3705 .block_erase = spi_block_erase_d8,
3706 }, {
3707 .eraseblocks = { {1024 * 1024, 1} },
3708 .block_erase = spi_block_erase_60,
3709 }, {
3710 .eraseblocks = { {1024 * 1024, 1} },
3711 .block_erase = spi_block_erase_c7,
3712 },
3713 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003714 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003715 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003716 },
3717
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003718 {
3719 .vendor = "SST",
3720 .name = "SST28SF040A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003721 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003722 .manufacture_id = SST_ID,
3723 .model_id = SST_28SF040,
3724 .total_size = 512,
3725 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003726 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003727 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003728 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003729 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003730 .block_erasers =
3731 {
3732 {
3733 .eraseblocks = { {128, 4096} },
3734 .block_erase = erase_sector_28sf040,
3735 }, {
3736 .eraseblocks = { {512 * 1024, 1} },
3737 .block_erase = erase_chip_28sf040,
3738 }
3739 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003740 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003741 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003742 },
3743
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003744 {
3745 .vendor = "SST",
3746 .name = "SST29EE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003747 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003748 .manufacture_id = SST_ID,
3749 .model_id = SST_29EE010,
3750 .total_size = 128,
3751 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003752 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003753 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003754 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003755 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003756 .block_erasers =
3757 {
3758 {
3759 .eraseblocks = { {128 * 1024, 1} },
3760 .block_erase = erase_chip_block_jedec,
3761 }
3762 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003763 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003764 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003765 },
3766
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003767 {
3768 .vendor = "SST",
3769 .name = "SST29LE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003770 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003771 .manufacture_id = SST_ID,
3772 .model_id = SST_29LE010,
3773 .total_size = 128,
3774 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003775 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003776 .tested = TEST_UNTESTED,
3777 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003778 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003779 .block_erasers =
3780 {
3781 {
3782 .eraseblocks = { {128 * 1024, 1} },
3783 .block_erase = erase_chip_block_jedec,
3784 }
3785 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003786 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003787 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003788 },
3789
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003790 {
3791 .vendor = "SST",
3792 .name = "SST29EE020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003793 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003794 .manufacture_id = SST_ID,
3795 .model_id = SST_29EE020A,
3796 .total_size = 256,
3797 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003798 .feature_bits = FEATURE_LONG_RESET,
3799 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003800 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003801 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003802 .block_erasers =
3803 {
3804 {
3805 .eraseblocks = { {256 * 1024, 1} },
3806 .block_erase = erase_chip_block_jedec,
3807 }
3808 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003809 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003810 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003811 },
3812
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003813 {
3814 .vendor = "SST",
3815 .name = "SST29LE020",
Urja Rannikko038a3122009-06-28 19:19:25 +00003816 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003817 .manufacture_id = SST_ID,
3818 .model_id = SST_29LE020,
3819 .total_size = 256,
3820 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003821 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003822 .tested = TEST_UNTESTED,
3823 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003824 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003825 .block_erasers =
3826 {
3827 {
3828 .eraseblocks = { {256 * 1024, 1} },
3829 .block_erase = erase_chip_block_jedec,
3830 }
3831 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003832 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003833 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003834 },
3835
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003836 {
3837 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00003838 .name = "SST39SF512",
3839 .bustype = CHIP_BUSTYPE_PARALLEL,
3840 .manufacture_id = SST_ID,
3841 .model_id = SST_39SF512,
3842 .total_size = 64,
3843 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003844 .feature_bits = FEATURE_EITHER_RESET,
3845 .tested = TEST_UNTESTED,
Uwe Hermann48da3f92010-01-23 15:15:19 +00003846 .probe = probe_jedec,
3847 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00003848 .block_erasers =
3849 {
3850 {
3851 .eraseblocks = { {4 * 1024, 16} },
3852 .block_erase = erase_sector_jedec,
3853 }, {
3854 .eraseblocks = { {64 * 1024, 1} },
3855 .block_erase = erase_chip_block_jedec,
3856 }
3857 },
Sean Nelson35727f72010-01-28 23:55:12 +00003858 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00003859 .read = read_memmapped,
3860 },
3861
3862 {
3863 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003864 .name = "SST39SF010A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003865 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003866 .manufacture_id = SST_ID,
3867 .model_id = SST_39SF010,
3868 .total_size = 128,
3869 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003870 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003871 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003872 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003873 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003874 .block_erasers =
3875 {
3876 {
3877 .eraseblocks = { {4 * 1024, 32} },
3878 .block_erase = erase_sector_jedec,
3879 }, {
3880 .eraseblocks = { {128 * 1024, 1} },
3881 .block_erase = erase_chip_block_jedec,
3882 }
3883 },
Sean Nelson35727f72010-01-28 23:55:12 +00003884 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003885 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003886 },
3887
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003888 {
3889 .vendor = "SST",
3890 .name = "SST39SF020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003891 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003892 .manufacture_id = SST_ID,
3893 .model_id = SST_39SF020,
3894 .total_size = 256,
3895 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003896 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003897 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003898 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003899 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003900 .block_erasers =
3901 {
3902 {
3903 .eraseblocks = { {4 * 1024, 64} },
3904 .block_erase = erase_sector_jedec,
3905 }, {
3906 .eraseblocks = { {256 * 1024, 1} },
3907 .block_erase = erase_chip_block_jedec,
3908 }
3909 },
Sean Nelson35727f72010-01-28 23:55:12 +00003910 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003911 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003912 },
3913
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003914 {
3915 .vendor = "SST",
3916 .name = "SST39SF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00003917 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003918 .manufacture_id = SST_ID,
3919 .model_id = SST_39SF040,
3920 .total_size = 512,
3921 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003922 .feature_bits = FEATURE_EITHER_RESET,
3923 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003924 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003925 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003926 .block_erasers =
3927 {
3928 {
3929 .eraseblocks = { {4 * 1024, 128} },
3930 .block_erase = erase_sector_jedec,
3931 }, {
3932 .eraseblocks = { {512 * 1024, 1} },
3933 .block_erase = erase_chip_block_jedec,
3934 }
3935 },
Sean Nelson35727f72010-01-28 23:55:12 +00003936 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003937 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003938 },
3939
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003940 {
3941 .vendor = "SST",
3942 .name = "SST39VF512",
Urja Rannikko038a3122009-06-28 19:19:25 +00003943 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003944 .manufacture_id = SST_ID,
3945 .model_id = SST_39VF512,
3946 .total_size = 64,
3947 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003948 .feature_bits = FEATURE_EITHER_RESET,
3949 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003950 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003951 .probe_timing = 1, /* 150 ns*/
Sean Nelson51c83fb2010-01-20 20:55:53 +00003952 .block_erasers =
3953 {
3954 {
3955 .eraseblocks = { {4 * 1024, 16} },
3956 .block_erase = erase_sector_jedec,
3957 }, {
3958 .eraseblocks = { {64 * 1024, 1} },
3959 .block_erase = erase_chip_block_jedec,
3960 }
3961 },
Sean Nelson35727f72010-01-28 23:55:12 +00003962 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003963 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003964 },
3965
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003966 {
3967 .vendor = "SST",
3968 .name = "SST39VF010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003969 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003970 .manufacture_id = SST_ID,
3971 .model_id = SST_39VF010,
3972 .total_size = 128,
3973 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003974 .feature_bits = FEATURE_EITHER_RESET,
3975 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003976 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003977 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003978 .block_erasers =
3979 {
3980 {
3981 .eraseblocks = { {4 * 1024, 32} },
3982 .block_erase = erase_sector_jedec,
3983 }, {
3984 .eraseblocks = { {128 * 1024, 1} },
3985 .block_erase = erase_chip_block_jedec,
3986 }
3987 },
Sean Nelson35727f72010-01-28 23:55:12 +00003988 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003989 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003990 },
3991
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003992 {
3993 .vendor = "SST",
3994 .name = "SST39VF020",
Urja Rannikko038a3122009-06-28 19:19:25 +00003995 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003996 .manufacture_id = SST_ID,
3997 .model_id = SST_39VF020,
3998 .total_size = 256,
3999 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004000 .feature_bits = FEATURE_EITHER_RESET,
4001 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004002 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004003 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004004 .block_erasers =
4005 {
4006 {
4007 .eraseblocks = { {4 * 1024, 64} },
4008 .block_erase = erase_sector_jedec,
4009 }, {
4010 .eraseblocks = { {256 * 1024, 1} },
4011 .block_erase = erase_chip_block_jedec,
4012 }
4013 },
Sean Nelson35727f72010-01-28 23:55:12 +00004014 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004015 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004016 },
4017
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004018 {
4019 .vendor = "SST",
4020 .name = "SST39VF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00004021 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004022 .manufacture_id = SST_ID,
4023 .model_id = SST_39VF040,
4024 .total_size = 512,
4025 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004026 .feature_bits = FEATURE_EITHER_RESET,
4027 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004028 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004029 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004030 .block_erasers =
4031 {
4032 {
4033 .eraseblocks = { {4 * 1024, 128} },
4034 .block_erase = erase_sector_jedec,
4035 }, {
4036 .eraseblocks = { {512 * 1024, 1} },
4037 .block_erase = erase_chip_block_jedec,
4038 }
4039 },
Sean Nelson35727f72010-01-28 23:55:12 +00004040 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004041 .read = read_memmapped,
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00004042 },
FENG yu ningff692fb2008-12-08 18:15:10 +00004043
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004044 {
4045 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00004046 .name = "SST39VF080",
Urja Rannikko038a3122009-06-28 19:19:25 +00004047 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004048 .manufacture_id = SST_ID,
4049 .model_id = SST_39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00004050 .total_size = 1024,
4051 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004052 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00004053 .tested = TEST_UNTESTED,
4054 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004055 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004056 .block_erasers =
4057 {
4058 {
4059 .eraseblocks = { {4 * 1024, 256} },
4060 .block_erase = erase_sector_jedec,
4061 }, {
4062 .eraseblocks = { {64 * 1024, 16} },
4063 .block_erase = erase_block_jedec,
4064 }, {
4065 .eraseblocks = { {1024 * 1024, 1} },
4066 .block_erase = erase_chip_block_jedec,
4067 }
4068 },
Sean Nelson35727f72010-01-28 23:55:12 +00004069 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004070 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +00004071 },
4072
4073 {
4074 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004075 .name = "SST49LF002A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004076 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004077 .manufacture_id = SST_ID,
4078 .model_id = SST_49LF002A,
4079 .total_size = 256,
4080 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004081 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004082 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004083 .probe = probe_jedec,
4084 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004085 .block_erasers =
4086 {
4087 {
4088 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004089 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004090 }, {
4091 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004092 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004093 }, {
4094 .eraseblocks = { {256 * 1024, 1} },
4095 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4096 }
4097 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004098 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004099 .unlock = unlock_sst_fwhub,
4100 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004101 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004102 },
4103
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004104 {
4105 .vendor = "SST",
4106 .name = "SST49LF003A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004107 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004108 .manufacture_id = SST_ID,
4109 .model_id = SST_49LF003A,
4110 .total_size = 384,
4111 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004112 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Peter Lemenkov45835c42009-09-25 01:09:18 +00004113 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004114 .probe = probe_jedec,
4115 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004116 .block_erasers =
4117 {
4118 {
4119 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004120 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004121 }, {
4122 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004123 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004124 }, {
4125 .eraseblocks = { {384 * 1024, 1} },
4126 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4127 }
4128 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004129 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004130 .unlock = unlock_sst_fwhub,
4131 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004132 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004133 },
4134
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004135 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004136 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
4137 * and is only honored for 64k block erase, but not 4k sector erase.
4138 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004139 .vendor = "SST",
4140 .name = "SST49LF004A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004141 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004142 .manufacture_id = SST_ID,
4143 .model_id = SST_49LF004A,
4144 .total_size = 512,
4145 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004146 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004147 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004148 .probe = probe_jedec,
4149 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004150 .block_erasers =
4151 {
4152 {
4153 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004154 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004155 }, {
4156 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004157 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004158 }, {
4159 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00004160 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004161 },
4162 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004163 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004164 .unlock = unlock_sst_fwhub,
4165 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004166 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004167 },
4168
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004169 {
4170 .vendor = "SST",
4171 .name = "SST49LF004C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004172 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004173 .manufacture_id = SST_ID,
4174 .model_id = SST_49LF004C,
4175 .total_size = 512,
4176 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004177 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004178 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004179 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004180 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004181 .block_erasers =
4182 {
4183 {
4184 .eraseblocks = { {4 * 1024, 128} },
4185 .block_erase = erase_sector_49lfxxxc,
4186 }, {
4187 .eraseblocks = {
4188 {64 * 1024, 7},
4189 {32 * 1024, 1},
4190 {8 * 1024, 2},
4191 {16 * 1024, 1},
4192 },
4193 .block_erase = erase_block_49lfxxxc,
4194 }
4195 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004196 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004197 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004198 },
4199
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004200 {
4201 .vendor = "SST",
4202 .name = "SST49LF008A",
Urja Rannikko038a3122009-06-28 19:19:25 +00004203 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004204 .manufacture_id = SST_ID,
4205 .model_id = SST_49LF008A,
4206 .total_size = 1024,
4207 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004208 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004209 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004210 .probe = probe_jedec,
4211 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004212 .block_erasers =
4213 {
4214 {
4215 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004216 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004217 }, {
4218 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004219 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004220 }, {
4221 .eraseblocks = { {1024 * 1024, 1} },
4222 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4223 }
4224 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004225 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004226 .unlock = unlock_sst_fwhub,
4227 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004228 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004229 },
4230
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004231 {
4232 .vendor = "SST",
4233 .name = "SST49LF008C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004234 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004235 .manufacture_id = SST_ID,
4236 .model_id = SST_49LF008C,
4237 .total_size = 1024,
4238 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004239 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004240 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004241 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004242 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004243 .block_erasers =
4244 {
4245 {
4246 .eraseblocks = { {4 * 1024, 256} },
4247 .block_erase = erase_sector_49lfxxxc,
4248 }, {
4249 .eraseblocks = {
4250 {64 * 1024, 15},
4251 {32 * 1024, 1},
4252 {8 * 1024, 2},
4253 {16 * 1024, 1},
4254 },
4255 .block_erase = erase_block_49lfxxxc,
4256 }
4257 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004258 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004259 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004260 },
4261
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004262 {
4263 .vendor = "SST",
4264 .name = "SST49LF016C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004265 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004266 .manufacture_id = SST_ID,
4267 .model_id = SST_49LF016C,
4268 .total_size = 2048,
4269 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004270 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004271 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004272 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004273 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004274 .block_erasers =
4275 {
4276 {
4277 .eraseblocks = { {4 * 1024, 512} },
4278 .block_erase = erase_sector_49lfxxxc,
4279 }, {
4280 .eraseblocks = {
4281 {64 * 1024, 31},
4282 {32 * 1024, 1},
4283 {8 * 1024, 2},
4284 {16 * 1024, 1},
4285 },
4286 .block_erase = erase_block_49lfxxxc,
4287 }
4288 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004289 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004290 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004291 },
4292
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004293 {
4294 .vendor = "SST",
4295 .name = "SST49LF020",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004296 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004297 .manufacture_id = SST_ID,
4298 .model_id = SST_49LF020,
4299 .total_size = 256,
4300 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004301 .feature_bits = FEATURE_EITHER_RESET,
4302 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004303 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004304 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004305 .block_erasers =
4306 {
4307 {
4308 .eraseblocks = { {4 * 1024, 64} },
4309 .block_erase = erase_sector_jedec,
4310 }, {
4311 .eraseblocks = { {16 * 1024, 16} },
4312 .block_erase = erase_block_jedec,
4313 }, {
4314 .eraseblocks = { {256 * 1024, 1} },
4315 .block_erase = NULL,
4316 }
4317 },
Sean Nelson35727f72010-01-28 23:55:12 +00004318 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004319 .read = read_memmapped,
Sven Schnellec208dfb2009-01-07 12:35:09 +00004320 },
4321
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004322 {
4323 .vendor = "SST",
4324 .name = "SST49LF020A",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004325 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004326 .manufacture_id = SST_ID,
4327 .model_id = SST_49LF020A,
4328 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00004329 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004330 .feature_bits = FEATURE_EITHER_RESET,
4331 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004332 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004333 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004334 .block_erasers =
4335 {
4336 {
4337 .eraseblocks = { {4 * 1024, 64} },
4338 .block_erase = erase_sector_jedec,
4339 }, {
4340 .eraseblocks = { {16 * 1024, 16} },
4341 .block_erase = erase_block_jedec,
4342 }, {
4343 .eraseblocks = { {256 * 1024, 1} },
4344 .block_erase = NULL,
4345 }
4346 },
Sean Nelson35727f72010-01-28 23:55:12 +00004347 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004348 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004349 },
4350
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004351 {
4352 .vendor = "SST",
4353 .name = "SST49LF040",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004354 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004355 .manufacture_id = SST_ID,
4356 .model_id = SST_49LF040,
4357 .total_size = 512,
4358 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004359 .feature_bits = FEATURE_EITHER_RESET,
4360 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004361 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004362 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004363 .block_erasers =
4364 {
4365 {
4366 .eraseblocks = { {4 * 1024, 128} },
4367 .block_erase = erase_sector_jedec,
4368 }, {
4369 .eraseblocks = { {64 * 1024, 8} },
4370 .block_erase = erase_block_jedec,
4371 }, {
4372 .eraseblocks = { {512 * 1024, 1} },
4373 .block_erase = NULL,
4374 }
4375 },
Sean Nelson35727f72010-01-28 23:55:12 +00004376 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004377 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004378 },
4379
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004380 {
4381 .vendor = "SST",
4382 .name = "SST49LF040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004383 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004384 .manufacture_id = SST_ID,
4385 .model_id = SST_49LF040B,
4386 .total_size = 512,
4387 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004388 .feature_bits = FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004389 .tested = TEST_UNTESTED,
4390 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004391 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004392 .block_erasers =
4393 {
4394 {
4395 .eraseblocks = { {4 * 1024, 128} },
4396 .block_erase = erase_sector_jedec,
4397 }, {
4398 .eraseblocks = { {64 * 1024, 8} },
4399 .block_erase = erase_block_jedec,
4400 }, {
4401 .eraseblocks = { {512 * 1024, 1} },
4402 .block_erase = NULL,
4403 }
4404 },
Sean Nelson35727f72010-01-28 23:55:12 +00004405 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004406 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004407 },
4408
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004409 {
4410 .vendor = "SST",
4411 .name = "SST49LF080A",
Urja Rannikko038a3122009-06-28 19:19:25 +00004412 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004413 .manufacture_id = SST_ID,
Urja Rannikko038a3122009-06-28 19:19:25 +00004414 .model_id = SST_49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004415 .total_size = 1024,
4416 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004417 .feature_bits = FEATURE_EITHER_RESET,
4418 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004419 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004420 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004421 .block_erasers =
4422 {
4423 {
4424 .eraseblocks = { {4 * 1024, 256} },
4425 .block_erase = erase_sector_jedec,
4426 }, {
4427 .eraseblocks = { {64 * 1024, 16} },
4428 .block_erase = erase_block_jedec,
4429 }, {
4430 .eraseblocks = { {1024 * 1024, 1} },
4431 .block_erase = NULL,
4432 }
4433 },
Sean Nelson35727f72010-01-28 23:55:12 +00004434 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004435 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004436 },
4437
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004438 {
4439 .vendor = "SST",
4440 .name = "SST49LF160C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004441 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004442 .manufacture_id = SST_ID,
4443 .model_id = SST_49LF160C,
4444 .total_size = 2048,
4445 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004446 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004447 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004448 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004449 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004450 .block_erasers =
4451 {
4452 {
4453 .eraseblocks = { {4 * 1024, 512} },
4454 .block_erase = erase_sector_49lfxxxc,
4455 }, {
4456 .eraseblocks = {
4457 {64 * 1024, 31},
4458 {32 * 1024, 1},
4459 {8 * 1024, 2},
4460 {16 * 1024, 1},
4461 },
4462 .block_erase = erase_block_49lfxxxc,
4463 }
4464 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00004465 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004466 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004467 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004468 },
4469
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004470 {
4471 .vendor = "ST",
4472 .name = "M25P05-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004473 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004474 .manufacture_id = ST_ID,
4475 .model_id = ST_M25P05A,
4476 .total_size = 64,
4477 .page_size = 256,
4478 .tested = TEST_UNTESTED,
4479 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004480 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004481 .block_erasers =
4482 {
4483 {
4484 .eraseblocks = { {32 * 1024, 2} },
4485 .block_erase = spi_block_erase_d8,
4486 }, {
4487 .eraseblocks = { {64 * 1024, 1} },
4488 .block_erase = spi_block_erase_c7,
4489 }
4490 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004491 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004492 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004493 },
4494
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004495 /* The ST M25P05 is a bit of a problem. It has the same ID as the
4496 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
4497 * of 256 byte writes. We rely heavily on the fact that probe_spi_res
4498 * only is successful if RDID does not work.
4499 */
4500 {
4501 .vendor = "ST",
4502 .name = "M25P05.RES",
4503 .bustype = CHIP_BUSTYPE_SPI,
4504 .manufacture_id = ST_ID,
4505 .model_id = ST_M25P05_RES,
4506 .total_size = 64,
4507 .page_size = 256,
4508 .tested = TEST_UNTESTED,
4509 .probe = probe_spi_res,
4510 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004511 .block_erasers =
4512 {
4513 {
4514 .eraseblocks = { {32 * 1024, 2} },
4515 .block_erase = spi_block_erase_d8,
4516 }, {
4517 .eraseblocks = { {64 * 1024, 1} },
4518 .block_erase = spi_block_erase_c7,
4519 }
4520 },
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004521 .write = spi_chip_write_1, /* 128 */
4522 .read = spi_chip_read,
4523 },
4524
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004525 {
4526 .vendor = "ST",
4527 .name = "M25P10-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004528 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004529 .manufacture_id = ST_ID,
4530 .model_id = ST_M25P10A,
4531 .total_size = 128,
4532 .page_size = 256,
4533 .tested = TEST_UNTESTED,
4534 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004535 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004536 .block_erasers =
4537 {
4538 {
4539 .eraseblocks = { {32 * 1024, 4} },
4540 .block_erase = spi_block_erase_d8,
4541 }, {
4542 .eraseblocks = { {128 * 1024, 1} },
4543 .block_erase = spi_block_erase_c7,
4544 }
4545 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004546 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004547 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004548 },
4549
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004550 /* The ST M25P10 has the same problem as the M25P05. */
4551 {
4552 .vendor = "ST",
4553 .name = "M25P10.RES",
4554 .bustype = CHIP_BUSTYPE_SPI,
4555 .manufacture_id = ST_ID,
4556 .model_id = ST_M25P10_RES,
4557 .total_size = 128,
4558 .page_size = 256,
4559 .tested = TEST_UNTESTED,
4560 .probe = probe_spi_res,
4561 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004562 .block_erasers =
4563 {
4564 {
4565 .eraseblocks = { {32 * 1024, 4} },
4566 .block_erase = spi_block_erase_d8,
4567 }, {
4568 .eraseblocks = { {128 * 1024, 1} },
4569 .block_erase = spi_block_erase_c7,
4570 }
4571 },
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004572 .write = spi_chip_write_1, /* 128 */
4573 .read = spi_chip_read,
4574 },
4575
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004576 {
4577 .vendor = "ST",
4578 .name = "M25P20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004579 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004580 .manufacture_id = ST_ID,
4581 .model_id = ST_M25P20,
4582 .total_size = 256,
4583 .page_size = 256,
4584 .tested = TEST_UNTESTED,
4585 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004586 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004587 .block_erasers =
4588 {
4589 {
4590 .eraseblocks = { {64 * 1024, 4} },
4591 .block_erase = spi_block_erase_d8,
4592 }, {
4593 .eraseblocks = { {256 * 1024, 1} },
4594 .block_erase = spi_block_erase_c7,
4595 }
4596 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004597 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004598 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004599 },
4600
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004601 {
4602 .vendor = "ST",
4603 .name = "M25P40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004604 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004605 .manufacture_id = ST_ID,
4606 .model_id = ST_M25P40,
4607 .total_size = 512,
4608 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004609 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004610 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004611 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004612 .block_erasers =
4613 {
4614 {
4615 .eraseblocks = { {64 * 1024, 8} },
4616 .block_erase = spi_block_erase_d8,
4617 }, {
4618 .eraseblocks = { {512 * 1024, 1} },
4619 .block_erase = spi_block_erase_c7,
4620 }
4621 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004622 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004623 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004624 },
4625
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004626 {
4627 .vendor = "ST",
4628 .name = "M25P40-old",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004629 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004630 .manufacture_id = ST_ID,
4631 .model_id = ST_M25P40_RES,
4632 .total_size = 512,
4633 .page_size = 256,
4634 .tested = TEST_UNTESTED,
4635 .probe = probe_spi_res,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004636 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004637 .block_erasers =
4638 {
4639 {
4640 .eraseblocks = { {64 * 1024, 8} },
4641 .block_erase = spi_block_erase_d8,
4642 }, {
4643 .eraseblocks = { {512 * 1024, 1} },
4644 .block_erase = spi_block_erase_c7,
4645 }
4646 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004647 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004648 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004649 },
4650
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004651 {
4652 .vendor = "ST",
4653 .name = "M25P80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004654 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004655 .manufacture_id = ST_ID,
4656 .model_id = ST_M25P80,
4657 .total_size = 1024,
4658 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004659 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004660 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004661 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004662 .block_erasers =
4663 {
4664 {
4665 .eraseblocks = { {64 * 1024, 16} },
4666 .block_erase = spi_block_erase_d8,
4667 }, {
4668 .eraseblocks = { {1024 * 1024, 1} },
4669 .block_erase = spi_block_erase_c7,
4670 }
4671 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004672 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004673 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004674 },
4675
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004676 {
4677 .vendor = "ST",
4678 .name = "M25P16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004679 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004680 .manufacture_id = ST_ID,
4681 .model_id = ST_M25P16,
4682 .total_size = 2048,
4683 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004684 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004685 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004686 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004687 .block_erasers =
4688 {
4689 {
4690 .eraseblocks = { {64 * 1024, 32} },
4691 .block_erase = spi_block_erase_d8,
4692 }, {
4693 .eraseblocks = { {2 * 1024 * 1024, 1} },
4694 .block_erase = spi_block_erase_c7,
4695 }
4696 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004697 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004698 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004699 },
4700
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004701 {
4702 .vendor = "ST",
4703 .name = "M25P32",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004704 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004705 .manufacture_id = ST_ID,
4706 .model_id = ST_M25P32,
4707 .total_size = 4096,
4708 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004709 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004710 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004711 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004712 .block_erasers =
4713 {
4714 {
4715 .eraseblocks = { {64 * 1024, 64} },
4716 .block_erase = spi_block_erase_d8,
4717 }, {
4718 .eraseblocks = { {4 * 1024 * 1024, 1} },
4719 .block_erase = spi_block_erase_c7,
4720 }
4721 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004722 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004723 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004724 },
4725
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004726 {
4727 .vendor = "ST",
4728 .name = "M25P64",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004729 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004730 .manufacture_id = ST_ID,
4731 .model_id = ST_M25P64,
4732 .total_size = 8192,
4733 .page_size = 256,
4734 .tested = TEST_UNTESTED,
4735 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004736 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004737 .block_erasers =
4738 {
4739 {
4740 .eraseblocks = { {64 * 1024, 128} },
4741 .block_erase = spi_block_erase_d8,
4742 }, {
4743 .eraseblocks = { {8 * 1024 * 1024, 1} },
4744 .block_erase = spi_block_erase_c7,
4745 }
4746 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004747 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004748 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004749 },
4750
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004751 {
4752 .vendor = "ST",
4753 .name = "M25P128",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004754 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004755 .manufacture_id = ST_ID,
4756 .model_id = ST_M25P128,
4757 .total_size = 16384,
4758 .page_size = 256,
4759 .tested = TEST_UNTESTED,
4760 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004761 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004762 .block_erasers =
4763 {
4764 {
4765 .eraseblocks = { {256 * 1024, 64} },
4766 .block_erase = spi_block_erase_d8,
4767 }, {
4768 .eraseblocks = { {16 * 1024 * 1024, 1} },
4769 .block_erase = spi_block_erase_c7,
4770 }
4771 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004772 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004773 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004774 },
4775
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004776 {
4777 .vendor = "ST",
4778 .name = "M29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004779 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004780 .manufacture_id = ST_ID,
4781 .model_id = ST_M29F002B,
4782 .total_size = 256,
4783 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004784 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004785 .tested = TEST_UNTESTED,
4786 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004787 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004788 .block_erasers =
4789 {
4790 {
4791 .eraseblocks = {
4792 {16 * 1024, 1},
4793 {8 * 1024, 2},
4794 {32 * 1024, 1},
4795 {64 * 1024, 3},
4796 },
4797 .block_erase = erase_sector_jedec,
4798 }, {
4799 .eraseblocks = { {256 * 1024, 1} },
4800 .block_erase = erase_chip_block_jedec,
4801 }
4802 },
Sean Nelson35727f72010-01-28 23:55:12 +00004803 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004804 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004805 },
4806
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004807 {
4808 .vendor = "ST",
4809 .name = "M29F002T/NT",
Urja Rannikko038a3122009-06-28 19:19:25 +00004810 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004811 .manufacture_id = ST_ID,
4812 .model_id = ST_M29F002T,
4813 .total_size = 256,
4814 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004815 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
4816 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004817 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004818 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004819 .block_erasers =
4820 {
4821 {
4822 .eraseblocks = {
4823 {64 * 1024, 3},
4824 {32 * 1024, 1},
4825 {8 * 1024, 2},
4826 {16 * 1024, 1},
4827 },
4828 .block_erase = erase_sector_jedec,
4829 }, {
4830 .eraseblocks = { {256 * 1024, 1} },
4831 .block_erase = erase_chip_block_jedec,
4832 }
4833 },
Sean Nelson35727f72010-01-28 23:55:12 +00004834 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004835 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004836 },
4837
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004838 {
4839 .vendor = "ST",
4840 .name = "M29F040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004841 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004842 .manufacture_id = ST_ID,
4843 .model_id = ST_M29F040B,
4844 .total_size = 512,
4845 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004846 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4847 .tested = TEST_UNTESTED,
4848 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004849 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00004850 .block_erasers =
4851 {
4852 {
4853 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00004854 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00004855 }, {
4856 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004857 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00004858 }
4859 },
Sean Nelson35727f72010-01-28 23:55:12 +00004860 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004861 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004862 },
4863
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004864 {
Sean Nelson35727f72010-01-28 23:55:12 +00004865 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004866 .vendor = "ST",
4867 .name = "M29F400BT",
Urja Rannikko038a3122009-06-28 19:19:25 +00004868 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004869 .manufacture_id = ST_ID,
4870 .model_id = ST_M29F400BT,
4871 .total_size = 512,
4872 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004873 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004874 .tested = TEST_UNTESTED,
4875 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004876 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00004877 .block_erasers =
4878 {
4879 {
4880 .eraseblocks = {
4881 {64 * 1024, 7},
4882 {32 * 1024, 1},
4883 {8 * 1024, 2},
4884 {16 * 1024, 1},
4885 },
4886 .block_erase = block_erase_m29f400bt,
4887 }, {
4888 .eraseblocks = { {512 * 1024, 1} },
4889 .block_erase = block_erase_chip_m29f400bt,
4890 }
4891 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004892 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004893 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004894 },
4895
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004896 {
4897 .vendor = "ST",
4898 .name = "M29W010B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004899 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004900 .manufacture_id = ST_ID,
4901 .model_id = ST_M29W010B,
4902 .total_size = 128,
4903 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004904 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004905 .tested = TEST_UNTESTED,
4906 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004907 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004908 .block_erasers =
4909 {
4910 {
4911 .eraseblocks = { {16 * 1024, 8}, },
4912 .block_erase = erase_sector_jedec,
4913 }, {
4914 .eraseblocks = { {128 * 1024, 1} },
4915 .block_erase = erase_chip_block_jedec,
4916 }
4917 },
Sean Nelson35727f72010-01-28 23:55:12 +00004918 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004919 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004920 },
4921
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004922 {
4923 .vendor = "ST",
4924 .name = "M29W040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004925 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004926 .manufacture_id = ST_ID,
4927 .model_id = ST_M29W040B,
4928 .total_size = 512,
4929 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004930 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004931 .tested = TEST_UNTESTED,
4932 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004933 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004934 .block_erasers =
4935 {
4936 {
4937 .eraseblocks = { {64 * 1024, 8}, },
4938 .block_erase = erase_sector_jedec,
4939 }, {
4940 .eraseblocks = { {512 * 1024, 1} },
4941 .block_erase = erase_chip_block_jedec,
4942 }
4943 },
Sean Nelson35727f72010-01-28 23:55:12 +00004944 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004945 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004946 },
4947
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00004948 {
4949 .vendor = "ST",
4950 .name = "M29W512B",
4951 .bustype = CHIP_BUSTYPE_PARALLEL,
4952 .manufacture_id = ST_ID,
4953 .model_id = ST_M29W512B,
4954 .total_size = 64,
4955 .page_size = 64 * 1024,
4956 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4957 .tested = TEST_OK_PREW,
4958 .probe = probe_jedec,
4959 .probe_timing = TIMING_ZERO,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00004960 .block_erasers =
4961 {
4962 {
4963 .eraseblocks = { {64 * 1024, 1} },
4964 .block_erase = erase_chip_block_jedec,
4965 }
4966 },
4967 .write = write_jedec_1,
4968 .read = read_memmapped,
4969 },
4970
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004971 {
4972 .vendor = "ST",
4973 .name = "M50FLW040A",
Sean Nelson35727f72010-01-28 23:55:12 +00004974 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004975 .manufacture_id = ST_ID,
4976 .model_id = ST_M50FLW040A,
4977 .total_size = 512,
4978 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004979 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004980 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00004981 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00004982 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00004983 .block_erasers =
4984 {
4985 {
Sean Nelson329bde72010-01-19 16:39:19 +00004986 .eraseblocks = {
4987 {4 * 1024, 16}, /* sector */
4988 {64 * 1024, 5}, /* block */
4989 {4 * 1024, 16}, /* sector */
4990 {4 * 1024, 16}, /* sector */
4991 },
4992 .block_erase = NULL,
4993 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00004994 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00004995 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00004996 }, {
4997 .eraseblocks = { {512 * 1024, 1} },
4998 .block_erase = erase_chip_stm50flw0x0x,
4999 }
5000 },
Sean Nelson28accc22010-03-19 18:47:06 +00005001 .unlock = unlock_stm50flw0x0x,
5002 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005003 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005004 },
5005
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005006 {
5007 .vendor = "ST",
5008 .name = "M50FLW040B",
Sean Nelson35727f72010-01-28 23:55:12 +00005009 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005010 .manufacture_id = ST_ID,
5011 .model_id = ST_M50FLW040B,
5012 .total_size = 512,
5013 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005014 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005015 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005016 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005017 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005018 .block_erasers =
5019 {
5020 {
Sean Nelson329bde72010-01-19 16:39:19 +00005021 .eraseblocks = {
5022 {4 * 1024, 16}, /* sector */
5023 {4 * 1024, 16}, /* sector */
5024 {64 * 1024, 5}, /* block */
5025 {4 * 1024, 16}, /* sector */
5026 },
5027 .block_erase = NULL,
5028 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005029 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005030 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005031 }, {
5032 .eraseblocks = { {512 * 1024, 1} },
5033 .block_erase = erase_chip_stm50flw0x0x,
5034 }
5035 },
Sean Nelson28accc22010-03-19 18:47:06 +00005036 .unlock = unlock_stm50flw0x0x,
5037 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005038 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005039 },
5040
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005041 {
5042 .vendor = "ST",
5043 .name = "M50FLW080A",
Sean Nelson35727f72010-01-28 23:55:12 +00005044 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005045 .manufacture_id = ST_ID,
5046 .model_id = ST_M50FLW080A,
5047 .total_size = 1024,
5048 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005049 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson35727f72010-01-28 23:55:12 +00005050 .tested = TEST_UNTESTED,
5051 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005052 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005053 .block_erasers =
5054 {
5055 {
Sean Nelson329bde72010-01-19 16:39:19 +00005056 .eraseblocks = {
5057 {4 * 1024, 16}, /* sector */
5058 {64 * 1024, 13}, /* block */
5059 {4 * 1024, 16}, /* sector */
5060 {4 * 1024, 16}, /* sector */
5061 },
5062 .block_erase = NULL,
5063 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005064 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005065 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005066 }, {
5067 .eraseblocks = { {1024 * 1024, 1} },
5068 .block_erase = erase_chip_stm50flw0x0x,
5069 }
5070 },
Sean Nelson28accc22010-03-19 18:47:06 +00005071 .unlock = unlock_stm50flw0x0x,
5072 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005073 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005074 },
5075
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005076 {
5077 .vendor = "ST",
5078 .name = "M50FLW080B",
Sean Nelson35727f72010-01-28 23:55:12 +00005079 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005080 .manufacture_id = ST_ID,
5081 .model_id = ST_M50FLW080B,
5082 .total_size = 1024,
5083 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005084 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005085 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005086 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005087 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005088 .block_erasers =
5089 {
5090 {
Sean Nelson329bde72010-01-19 16:39:19 +00005091 .eraseblocks = {
5092 {4 * 1024, 16}, /* sector */
5093 {4 * 1024, 16}, /* sector */
5094 {64 * 1024, 13}, /* block */
5095 {4 * 1024, 16}, /* sector */
5096 },
5097 .block_erase = NULL,
5098 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005099 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005100 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005101 }, {
5102 .eraseblocks = { {1024 * 1024, 1} },
5103 .block_erase = erase_chip_stm50flw0x0x,
5104 }
5105 },
Sean Nelson28accc22010-03-19 18:47:06 +00005106 .unlock = unlock_stm50flw0x0x,
5107 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005108 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005109 },
5110
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005111 {
5112 .vendor = "ST",
5113 .name = "M50FW002",
Urja Rannikko038a3122009-06-28 19:19:25 +00005114 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005115 .manufacture_id = ST_ID,
5116 .model_id = ST_M50FW002,
5117 .total_size = 256,
5118 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005119 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005120 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005121 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005122 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005123 .block_erasers =
5124 {
5125 {
5126 .eraseblocks = {
5127 {64 * 1024, 3},
5128 {32 * 1024, 1},
5129 {8 * 1024, 2},
5130 {16 * 1024, 1},
5131 },
Sean Nelson28accc22010-03-19 18:47:06 +00005132 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005133 }, {
5134 .eraseblocks = { {256 * 1024, 1} },
5135 .block_erase = erase_chip_stm50flw0x0x,
5136 }
5137 },
Sean Nelson28accc22010-03-19 18:47:06 +00005138 .unlock = unlock_stm50flw0x0x,
5139 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005140 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005141 },
5142
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005143 {
5144 .vendor = "ST",
5145 .name = "M50FW016",
Urja Rannikko038a3122009-06-28 19:19:25 +00005146 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005147 .manufacture_id = ST_ID,
5148 .model_id = ST_M50FW016,
5149 .total_size = 2048,
5150 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005151 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005152 .tested = TEST_UNTESTED,
5153 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005154 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005155 .block_erasers =
5156 {
5157 {
5158 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005159 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005160 }, {
5161 .eraseblocks = { {2 * 1024 * 1024, 1} },
5162 .block_erase = erase_chip_stm50flw0x0x,
5163 }
5164 },
Sean Nelson28accc22010-03-19 18:47:06 +00005165 .unlock = unlock_stm50flw0x0x,
5166 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005167 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005168 },
5169
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005170 {
5171 .vendor = "ST",
5172 .name = "M50FW040",
Urja Rannikko038a3122009-06-28 19:19:25 +00005173 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005174 .manufacture_id = ST_ID,
5175 .model_id = ST_M50FW040,
5176 .total_size = 512,
5177 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005178 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005179 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005180 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005181 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005182 .block_erasers =
5183 {
5184 {
5185 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005186 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005187 }, {
5188 .eraseblocks = { {512 * 1024, 1} },
5189 .block_erase = erase_chip_stm50flw0x0x,
5190 }
5191 },
Sean Nelson28accc22010-03-19 18:47:06 +00005192 .unlock = unlock_stm50flw0x0x,
5193 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005194 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005195 },
5196
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005197 {
5198 .vendor = "ST",
5199 .name = "M50FW080",
Urja Rannikko038a3122009-06-28 19:19:25 +00005200 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005201 .manufacture_id = ST_ID,
5202 .model_id = ST_M50FW080,
5203 .total_size = 1024,
5204 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005205 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005206 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005207 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005208 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005209 .block_erasers =
5210 {
5211 {
5212 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005213 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005214 }, {
5215 .eraseblocks = { {1024 * 1024, 1} },
5216 .block_erase = erase_chip_stm50flw0x0x,
5217 }
5218 },
Sean Nelson28accc22010-03-19 18:47:06 +00005219 .unlock = unlock_stm50flw0x0x,
5220 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005221 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005222 },
5223
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005224 {
5225 .vendor = "ST",
5226 .name = "M50LPW116",
Urja Rannikko038a3122009-06-28 19:19:25 +00005227 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005228 .manufacture_id = ST_ID,
5229 .model_id = ST_M50LPW116,
5230 .total_size = 2048,
5231 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005232 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005233 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005234 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00005235 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005236 .block_erasers =
5237 {
5238 {
5239 .eraseblocks = {
5240 {4 * 1024, 16},
5241 {64 * 1024, 30},
5242 {32 * 1024, 1},
5243 {8 * 1024, 2},
5244 {16 * 1024, 1},
5245 },
Sean Nelson28accc22010-03-19 18:47:06 +00005246 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005247 }, {
5248 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005249 .block_erase = erase_chip_stm50flw0x0x,
Sean Nelson56358aa2010-01-19 16:08:51 +00005250 }
5251 },
Sean Nelson28accc22010-03-19 18:47:06 +00005252 .unlock = unlock_stm50flw0x0x,
5253 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005254 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005255 },
5256
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005257 {
5258 .vendor = "SyncMOS",
5259 .name = "S29C31004T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005260 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005261 .manufacture_id = SYNCMOS_ID,
5262 .model_id = S29C31004T,
5263 .total_size = 512,
5264 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005265 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005266 .tested = TEST_UNTESTED,
5267 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005268 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005269 .block_erasers =
5270 {
5271 {
5272 .eraseblocks = { {1 * 1024, 512} },
5273 .block_erase = erase_sector_jedec,
5274 }, {
5275 .eraseblocks = { {512 * 1024, 1} },
5276 .block_erase = erase_chip_block_jedec,
5277 },
5278 },
Sean Nelson35727f72010-01-28 23:55:12 +00005279 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005280 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005281 },
5282
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005283 {
5284 .vendor = "SyncMOS",
5285 .name = "S29C51001T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005286 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005287 .manufacture_id = SYNCMOS_ID,
5288 .model_id = S29C51001T,
5289 .total_size = 128,
5290 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005291 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005292 .tested = TEST_UNTESTED,
5293 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005294 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005295 .block_erasers =
5296 {
5297 {
5298 .eraseblocks = { {512, 256} },
5299 .block_erase = erase_sector_jedec,
5300 }, {
5301 .eraseblocks = { {128 * 1024, 1} },
5302 .block_erase = erase_chip_block_jedec,
5303 },
5304 },
Sean Nelson35727f72010-01-28 23:55:12 +00005305 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005306 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005307 },
5308
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005309 {
5310 .vendor = "SyncMOS",
5311 .name = "S29C51002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005312 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005313 .manufacture_id = SYNCMOS_ID,
5314 .model_id = S29C51002T,
5315 .total_size = 256,
5316 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005317 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005318 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005319 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005320 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005321 .block_erasers =
5322 {
5323 {
5324 .eraseblocks = { {512, 512} },
5325 .block_erase = erase_sector_jedec,
5326 }, {
5327 .eraseblocks = { {256 * 1024, 1} },
5328 .block_erase = erase_chip_block_jedec,
5329 },
5330 },
Sean Nelson35727f72010-01-28 23:55:12 +00005331 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005332 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005333 },
5334
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005335 {
5336 .vendor = "SyncMOS",
5337 .name = "S29C51004T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005338 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005339 .manufacture_id = SYNCMOS_ID,
5340 .model_id = S29C51004T,
5341 .total_size = 512,
5342 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005343 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005344 .tested = TEST_UNTESTED,
5345 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005346 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005347 .block_erasers =
5348 {
5349 {
Sean Nelson012a31e2010-01-19 20:23:26 +00005350 .eraseblocks = { {1 * 1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00005351 .block_erase = erase_sector_jedec,
5352 }, {
5353 .eraseblocks = { {512 * 1024, 1} },
5354 .block_erase = erase_chip_block_jedec,
5355 },
5356 },
Sean Nelson35727f72010-01-28 23:55:12 +00005357 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005358 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005359 },
5360
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005361 {
Uwe Hermanna106d152009-05-27 23:17:40 +00005362 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005363 .name = "TMS29F002RB",
Urja Rannikko038a3122009-06-28 19:19:25 +00005364 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005365 .manufacture_id = TI_OLD_ID,
5366 .model_id = TI_TMS29F002RB,
5367 .total_size = 256,
5368 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00005369 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005370 .tested = TEST_UNTESTED,
5371 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005372 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005373 .block_erasers =
5374 {
5375 {
5376 .eraseblocks = {
5377 {16 * 1024, 1},
5378 {8 * 1024, 2},
5379 {32 * 1024, 1},
5380 {64 * 1024, 3},
5381 },
5382 .block_erase = erase_sector_jedec,
5383 }, {
5384 .eraseblocks = { {256 * 1024, 1} },
5385 .block_erase = erase_chip_block_jedec,
5386 },
5387 },
Sean Nelson35727f72010-01-28 23:55:12 +00005388 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005389 .read = read_memmapped,
5390 },
5391
5392 {
Uwe Hermanna106d152009-05-27 23:17:40 +00005393 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005394 .name = "TMS29F002RT",
Urja Rannikko038a3122009-06-28 19:19:25 +00005395 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005396 .manufacture_id = TI_OLD_ID,
5397 .model_id = TI_TMS29F002RT,
5398 .total_size = 256,
5399 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00005400 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005401 .tested = TEST_UNTESTED,
5402 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005403 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005404 .block_erasers =
5405 {
5406 {
5407 .eraseblocks = {
5408 {64 * 1024, 3},
5409 {32 * 1024, 1},
5410 {8 * 1024, 2},
5411 {16 * 1024, 1},
5412 },
5413 .block_erase = erase_sector_jedec,
5414 }, {
5415 .eraseblocks = { {256 * 1024, 1} },
5416 .block_erase = erase_chip_block_jedec,
5417 },
5418 },
Sean Nelson35727f72010-01-28 23:55:12 +00005419 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005420 .read = read_memmapped,
5421 },
5422
5423 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005424 .vendor = "Winbond",
5425 .name = "W25x10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005426 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005427 .manufacture_id = WINBOND_NEX_ID,
5428 .model_id = W_25X10,
5429 .total_size = 128,
5430 .page_size = 256,
5431 .tested = TEST_UNTESTED,
5432 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005433 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005434 .block_erasers =
5435 {
5436 {
5437 .eraseblocks = { {4 * 1024, 32} },
5438 .block_erase = spi_block_erase_20,
5439 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005440 .eraseblocks = { {64 * 1024, 2} },
5441 .block_erase = spi_block_erase_d8,
5442 }, {
5443 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005444 .block_erase = spi_block_erase_c7,
5445 }
5446 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005447 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005448 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005449 },
5450
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005451 {
5452 .vendor = "Winbond",
5453 .name = "W25x20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005454 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005455 .manufacture_id = WINBOND_NEX_ID,
5456 .model_id = W_25X20,
5457 .total_size = 256,
5458 .page_size = 256,
5459 .tested = TEST_UNTESTED,
5460 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005461 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005462 .block_erasers =
5463 {
5464 {
5465 .eraseblocks = { {4 * 1024, 64} },
5466 .block_erase = spi_block_erase_20,
5467 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005468 .eraseblocks = { {64 * 1024, 4} },
5469 .block_erase = spi_block_erase_d8,
5470 }, {
5471 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005472 .block_erase = spi_block_erase_c7,
5473 }
5474 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005475 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005476 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005477 },
5478
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005479 {
5480 .vendor = "Winbond",
5481 .name = "W25x40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005482 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005483 .manufacture_id = WINBOND_NEX_ID,
5484 .model_id = W_25X40,
5485 .total_size = 512,
5486 .page_size = 256,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005487 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005488 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005489 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005490 .block_erasers =
5491 {
5492 {
5493 .eraseblocks = { {4 * 1024, 128} },
5494 .block_erase = spi_block_erase_20,
5495 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005496 .eraseblocks = { {64 * 1024, 8} },
5497 .block_erase = spi_block_erase_d8,
5498 }, {
5499 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005500 .block_erase = spi_block_erase_c7,
5501 }
5502 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005503 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005504 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005505 },
5506
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005507 {
5508 .vendor = "Winbond",
5509 .name = "W25x80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005510 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005511 .manufacture_id = WINBOND_NEX_ID,
5512 .model_id = W_25X80,
5513 .total_size = 1024,
5514 .page_size = 256,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005515 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005516 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005517 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005518 .block_erasers =
5519 {
5520 {
5521 .eraseblocks = { {4 * 1024, 256} },
5522 .block_erase = spi_block_erase_20,
5523 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005524 .eraseblocks = { {64 * 1024, 16} },
5525 .block_erase = spi_block_erase_d8,
5526 }, {
5527 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005528 .block_erase = spi_block_erase_c7,
5529 }
5530 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005531 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005532 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005533 },
5534
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005535 {
5536 .vendor = "Winbond",
Hector Martina721ae22009-07-11 19:39:11 +00005537 .name = "W25x16",
5538 .bustype = CHIP_BUSTYPE_SPI,
5539 .manufacture_id = WINBOND_NEX_ID,
5540 .model_id = W_25X16,
5541 .total_size = 2048,
5542 .page_size = 256,
5543 .tested = TEST_OK_PR,
5544 .probe = probe_spi_rdid,
5545 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005546 .block_erasers =
5547 {
5548 {
5549 .eraseblocks = { {4 * 1024, 512} },
5550 .block_erase = spi_block_erase_20,
5551 }, {
5552 .eraseblocks = { {32 * 1024, 64} },
5553 .block_erase = spi_block_erase_52,
5554 }, {
5555 .eraseblocks = { {64 * 1024, 32} },
5556 .block_erase = spi_block_erase_d8,
5557 }, {
5558 .eraseblocks = { {2 * 1024 * 1024, 1} },
5559 .block_erase = spi_block_erase_60,
5560 }, {
5561 .eraseblocks = { {2 * 1024 * 1024, 1} },
5562 .block_erase = spi_block_erase_c7,
5563 }
5564 },
Hector Martina721ae22009-07-11 19:39:11 +00005565 .write = spi_chip_write_256,
5566 .read = spi_chip_read,
5567 },
5568
5569 {
5570 .vendor = "Winbond",
Zheng Bao1db2b752009-11-26 11:05:01 +00005571 .name = "W25x32",
5572 .bustype = CHIP_BUSTYPE_SPI,
5573 .manufacture_id = WINBOND_NEX_ID,
5574 .model_id = W_25X32,
5575 .total_size = 4096,
5576 .page_size = 256,
5577 .tested = TEST_OK_PROBE,
5578 .probe = probe_spi_rdid,
5579 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005580 .block_erasers =
5581 {
5582 {
5583 .eraseblocks = { {4 * 1024, 1024} },
5584 .block_erase = spi_block_erase_20,
5585 }, {
5586 .eraseblocks = { {32 * 1024, 128} },
5587 .block_erase = spi_block_erase_52,
5588 }, {
5589 .eraseblocks = { {64 * 1024, 64} },
5590 .block_erase = spi_block_erase_d8,
5591 }, {
5592 .eraseblocks = { {4 * 1024 * 1024, 1} },
5593 .block_erase = spi_block_erase_60,
5594 }, {
5595 .eraseblocks = { {4 * 1024 * 1024, 1} },
5596 .block_erase = spi_block_erase_c7,
5597 }
5598 },
Zheng Bao1db2b752009-11-26 11:05:01 +00005599 .write = spi_chip_write_256,
5600 .read = spi_chip_read,
5601 },
5602
5603 {
5604 .vendor = "Winbond",
5605 .name = "W25x64",
5606 .bustype = CHIP_BUSTYPE_SPI,
5607 .manufacture_id = WINBOND_NEX_ID,
5608 .model_id = W_25X64,
5609 .total_size = 8192,
5610 .page_size = 256,
5611 .tested = TEST_UNTESTED,
5612 .probe = probe_spi_rdid,
5613 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005614 .block_erasers =
5615 {
5616 {
5617 .eraseblocks = { {4 * 1024, 2048} },
5618 .block_erase = spi_block_erase_20,
5619 }, {
5620 .eraseblocks = { {32 * 1024, 256} },
5621 .block_erase = spi_block_erase_52,
5622 }, {
5623 .eraseblocks = { {64 * 1024, 128} },
5624 .block_erase = spi_block_erase_d8,
5625 }, {
5626 .eraseblocks = { {8 * 1024 * 1024, 1} },
5627 .block_erase = spi_block_erase_60,
5628 }, {
5629 .eraseblocks = { {8 * 1024 * 1024, 1} },
5630 .block_erase = spi_block_erase_c7,
5631 }
5632 },
Zheng Bao1db2b752009-11-26 11:05:01 +00005633 .write = spi_chip_write_256,
5634 .read = spi_chip_read,
5635 },
5636
5637 {
5638 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005639 .name = "W29C011",
Urja Rannikko038a3122009-06-28 19:19:25 +00005640 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005641 .manufacture_id = WINBOND_ID,
5642 .model_id = W_29C011,
5643 .total_size = 128,
5644 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005645 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005646 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005647 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005648 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005649 .block_erasers =
5650 {
5651 {
5652 .eraseblocks = { {128 * 1024, 1} },
5653 .block_erase = erase_chip_block_jedec,
5654 }
5655 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005656 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005657 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005658 },
5659
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005660 {
5661 .vendor = "Winbond",
5662 .name = "W29C020C",
Urja Rannikko161b8852009-06-05 08:47:37 +00005663 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005664 .manufacture_id = WINBOND_ID,
5665 .model_id = W_29C020C,
5666 .total_size = 256,
5667 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005668 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005669 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005670 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005671 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005672 .block_erasers =
5673 {
5674 {
5675 .eraseblocks = { {256 * 1024, 1} },
5676 .block_erase = erase_chip_block_jedec,
5677 }
5678 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005679 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005680 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005681 },
5682
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005683 {
5684 .vendor = "Winbond",
5685 .name = "W29C040P",
Urja Rannikko161b8852009-06-05 08:47:37 +00005686 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005687 .manufacture_id = WINBOND_ID,
5688 .model_id = W_29C040P,
5689 .total_size = 512,
5690 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005691 .feature_bits = FEATURE_LONG_RESET,
5692 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005693 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005694 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005695 .block_erasers =
5696 {
5697 {
5698 .eraseblocks = { {512 * 1024, 1} },
5699 .block_erase = erase_chip_block_jedec,
5700 }
5701 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005702 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005703 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005704 },
5705
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005706 {
5707 .vendor = "Winbond",
5708 .name = "W29EE011",
Urja Rannikko038a3122009-06-28 19:19:25 +00005709 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005710 .manufacture_id = WINBOND_ID,
5711 .model_id = W_29C011,
5712 .total_size = 128,
5713 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005714 .feature_bits = FEATURE_LONG_RESET,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005715 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005716 .probe = probe_w29ee011,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005717 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (w29ee011.c) */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005718 .block_erasers =
5719 {
5720 {
5721 .eraseblocks = { {128 * 1024, 1} },
5722 .block_erase = erase_chip_block_jedec,
5723 }
5724 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005725 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005726 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005727 },
5728
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005729 {
5730 .vendor = "Winbond",
5731 .name = "W39V040A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005732 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005733 .manufacture_id = WINBOND_ID,
5734 .model_id = W_39V040A,
5735 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005736 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005737 .feature_bits = FEATURE_EITHER_RESET,
5738 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005739 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005740 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005741 .block_erasers =
5742 {
5743 {
5744 .eraseblocks = { {64 * 1024, 8} },
5745 .block_erase = erase_sector_jedec,
5746 }, {
5747 .eraseblocks = { {512 * 1024, 1} },
5748 .block_erase = erase_chip_block_jedec,
5749 }
5750 },
Sean Nelson35727f72010-01-28 23:55:12 +00005751 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005752 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005753 },
5754
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005755 {
5756 .vendor = "Winbond",
5757 .name = "W39V040B",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005758 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005759 .manufacture_id = WINBOND_ID,
5760 .model_id = W_39V040B,
5761 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005762 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005763 .feature_bits = FEATURE_EITHER_RESET,
5764 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005765 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005766 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005767 .block_erasers =
5768 {
5769 {
5770 .eraseblocks = { {64 * 1024, 8} },
5771 .block_erase = erase_sector_jedec,
5772 }, {
5773 .eraseblocks = { {512 * 1024, 1} },
5774 .block_erase = erase_chip_block_jedec,
5775 }
5776 },
Sean Nelson35727f72010-01-28 23:55:12 +00005777 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005778 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005779 },
5780
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005781 {
5782 .vendor = "Winbond",
5783 .name = "W39V040C",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005784 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005785 .manufacture_id = WINBOND_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005786 .model_id = W_39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005787 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005788 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005789 .feature_bits = FEATURE_EITHER_RESET,
5790 .tested = TEST_UNTESTED,
5791 .probe = probe_jedec,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005792 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005793 .block_erasers =
5794 {
5795 {
5796 .eraseblocks = { {64 * 1024, 8} },
5797 .block_erase = erase_sector_jedec,
5798 }, {
5799 .eraseblocks = { {512 * 1024, 1} },
5800 .block_erase = erase_chip_block_jedec,
5801 }
5802 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005803 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +00005804 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005805 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005806 },
5807
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005808 {
5809 .vendor = "Winbond",
5810 .name = "W39V040FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005811 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005812 .manufacture_id = WINBOND_ID,
5813 .model_id = W_39V040FA,
5814 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005815 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005816 .feature_bits = FEATURE_EITHER_RESET,
5817 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005818 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005819 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005820 .block_erasers =
5821 {
5822 {
5823 .eraseblocks = { {4 * 1024, 128} },
5824 .block_erase = erase_block_jedec,
5825 }, {
5826 .eraseblocks = { {64 * 1024, 8} },
5827 .block_erase = erase_sector_jedec,
5828 }, {
5829 .eraseblocks = { {512 * 1024, 1} },
5830 .block_erase = erase_chip_block_jedec,
5831 }
5832 },
Sean Nelson35727f72010-01-28 23:55:12 +00005833 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005834 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005835 },
5836
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005837 {
5838 .vendor = "Winbond",
5839 .name = "W39V080A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005840 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005841 .manufacture_id = WINBOND_ID,
5842 .model_id = W_39V080A,
5843 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00005844 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005845 .feature_bits = FEATURE_EITHER_RESET,
5846 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005847 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005848 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005849 .block_erasers =
5850 {
5851 {
5852 .eraseblocks = { {64 * 1024, 16} },
5853 .block_erase = erase_sector_jedec,
5854 }, {
5855 .eraseblocks = { {1024 * 1024, 1} },
5856 .block_erase = erase_chip_block_jedec,
5857 }
5858 },
Sean Nelson35727f72010-01-28 23:55:12 +00005859 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005860 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005861 },
5862
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005863 {
5864 .vendor = "Winbond",
5865 .name = "W49F002U",
Urja Rannikko038a3122009-06-28 19:19:25 +00005866 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005867 .manufacture_id = WINBOND_ID,
5868 .model_id = W_49F002U,
5869 .total_size = 256,
5870 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005871 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005872 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005873 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005874 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005875 .block_erasers =
5876 {
5877 {
5878 .eraseblocks = {
5879 {128 * 1024, 1},
5880 {96 * 1024, 1},
5881 {8 * 1024, 2},
5882 {16 * 1024, 1},
5883 },
5884 .block_erase = erase_sector_jedec,
5885 }, {
5886 .eraseblocks = { {256 * 1024, 1} },
5887 .block_erase = erase_chip_block_jedec,
5888 }
5889 },
Sean Nelson35727f72010-01-28 23:55:12 +00005890 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005891 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005892 },
5893
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005894 {
5895 .vendor = "Winbond",
5896 .name = "W49V002A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005897 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005898 .manufacture_id = WINBOND_ID,
5899 .model_id = W_49V002A,
5900 .total_size = 256,
5901 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005902 .feature_bits = FEATURE_EITHER_RESET,
5903 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005904 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005905 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005906 .block_erasers =
5907 {
5908 {
5909 .eraseblocks = {
5910 {64 * 1024, 3},
5911 {32 * 1024, 1},
5912 {8 * 1024, 2},
5913 {16 * 1024, 1},
5914 },
5915 .block_erase = erase_sector_jedec,
5916 }, {
5917 .eraseblocks = { {256 * 1024, 1} },
5918 .block_erase = erase_chip_block_jedec,
5919 }
5920 },
Sean Nelson35727f72010-01-28 23:55:12 +00005921 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005922 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005923 },
5924
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005925 {
5926 .vendor = "Winbond",
5927 .name = "W49V002FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005928 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005929 .manufacture_id = WINBOND_ID,
5930 .model_id = W_49V002FA,
5931 .total_size = 256,
5932 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005933 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005934 .tested = TEST_UNTESTED,
5935 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005936 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005937 .block_erasers =
5938 {
5939 {
5940 .eraseblocks = {
5941 {64 * 1024, 3},
5942 {32 * 1024, 1},
5943 {8 * 1024, 2},
5944 {16 * 1024, 1},
5945 },
5946 .block_erase = erase_sector_jedec,
5947 }, {
5948 .eraseblocks = { {256 * 1024, 1} },
5949 .block_erase = erase_chip_block_jedec,
5950 }
5951 },
Sean Nelson35727f72010-01-28 23:55:12 +00005952 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005953 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005954 },
5955
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005956 {
5957 .vendor = "Winbond",
5958 .name = "W39V080FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005959 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005960 .manufacture_id = WINBOND_ID,
5961 .model_id = W_39V080FA,
5962 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00005963 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005964 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
5965 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005966 .probe = probe_jedec,
5967 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005968 .block_erasers =
5969 {
5970 {
5971 .eraseblocks = { {64 * 1024, 16}, },
5972 .block_erase = erase_sector_jedec,
5973 }, {
5974 .eraseblocks = { {1024 * 1024, 1} },
5975 .block_erase = erase_chip_block_jedec,
5976 }
5977 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005978 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00005979 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005980 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005981 },
5982
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005983 {
5984 .vendor = "Winbond",
5985 .name = "W39V080FA (dual mode)",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005986 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005987 .manufacture_id = WINBOND_ID,
5988 .model_id = W_39V080FA_DM,
5989 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005990 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005991 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005992 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005993 .probe = probe_jedec,
5994 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005995 .block_erasers =
5996 {
5997 {
5998 .eraseblocks = { {64 * 1024, 8}, },
5999 .block_erase = erase_sector_jedec,
6000 }, {
6001 .eraseblocks = { {512 * 1024, 1} },
6002 .block_erase = erase_chip_block_jedec,
6003 }
6004 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00006005 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00006006 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006007 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006008 },
6009
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006010 {
6011 .vendor = "Atmel",
6012 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006013 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006014 .manufacture_id = ATMEL_ID,
6015 .model_id = GENERIC_DEVICE_ID,
6016 .total_size = 0,
6017 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006018 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006019 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006020 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006021 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006022 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006023 },
6024
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006025 {
6026 .vendor = "EON",
6027 .name = "unknown EON SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006028 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006029 .manufacture_id = EON_ID_NOPREFIX,
6030 .model_id = GENERIC_DEVICE_ID,
6031 .total_size = 0,
6032 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006033 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006034 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006035 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006036 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006037 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006038 },
6039
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006040 {
6041 .vendor = "Macronix",
6042 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006043 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006044 .manufacture_id = MX_ID,
6045 .model_id = GENERIC_DEVICE_ID,
6046 .total_size = 0,
6047 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006048 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006049 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006050 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006051 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006052 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006053 },
6054
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006055 {
6056 .vendor = "PMC",
6057 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006058 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006059 .manufacture_id = PMC_ID,
6060 .model_id = GENERIC_DEVICE_ID,
6061 .total_size = 0,
6062 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006063 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006064 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006065 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006066 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006067 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006068 },
6069
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006070 {
6071 .vendor = "SST",
6072 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006073 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006074 .manufacture_id = SST_ID,
6075 .model_id = GENERIC_DEVICE_ID,
6076 .total_size = 0,
6077 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006078 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006079 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006080 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006081 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006082 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006083 },
6084
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006085 {
6086 .vendor = "ST",
6087 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006088 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006089 .manufacture_id = ST_ID,
6090 .model_id = GENERIC_DEVICE_ID,
6091 .total_size = 0,
6092 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006093 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006094 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006095 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006096 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006097 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006098 },
Uwe Hermannfc425e82008-03-16 02:06:25 +00006099
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006100 {
Sean Nelson118e1d62009-11-24 02:08:11 +00006101 .vendor = "Sanyo",
6102 .name = "unknown Sanyo SPI chip",
6103 .bustype = CHIP_BUSTYPE_SPI,
6104 .manufacture_id = SANYO_ID,
6105 .model_id = GENERIC_DEVICE_ID,
6106 .total_size = 0,
6107 .page_size = 256,
6108 .tested = TEST_BAD_PREW,
6109 .probe = probe_spi_rdid,
6110 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +00006111 .write = NULL,
6112 .read = NULL,
6113 },
6114
6115 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006116 .vendor = "Generic",
6117 .name = "unknown SPI chip (RDID)",
6118 .bustype = CHIP_BUSTYPE_SPI,
6119 .manufacture_id = GENERIC_MANUF_ID,
6120 .model_id = GENERIC_DEVICE_ID,
6121 .total_size = 0,
6122 .page_size = 256,
6123 .tested = TEST_BAD_PREW,
6124 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006125 .write = NULL,
6126 },
6127 {
6128 .vendor = "Generic",
6129 .name = "unknown SPI chip (REMS)",
6130 .bustype = CHIP_BUSTYPE_SPI,
6131 .manufacture_id = GENERIC_MANUF_ID,
6132 .model_id = GENERIC_DEVICE_ID,
6133 .total_size = 0,
6134 .page_size = 256,
6135 .tested = TEST_BAD_PREW,
6136 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006137 .write = NULL,
6138 },
6139
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006140 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +00006141};