blob: c9cae792149e2228022ad4a01f0ec65bb363da0c [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,
Uwe Hermann51afebb2010-08-01 00:13:49 +000068 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000069 .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,
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000234 .tested = TEST_OK_PREW,
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 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000278 .vendor = "AMIC",
279 .name = "A25L05PT",
280 .bustype = CHIP_BUSTYPE_SPI,
281 .manufacture_id = AMIC_ID,
282 .model_id = AMIC_A25L05PT,
283 .total_size = 64,
284 .page_size = 256,
285 .tested = TEST_UNTESTED,
286 .probe = probe_spi_rdid4,
287 .probe_timing = TIMING_ZERO,
288 .block_erasers =
289 {
290 {
291 .eraseblocks = {
292 {32 * 1024, 1},
293 {16 * 1024, 1},
294 {8 * 1024, 1},
295 {4 * 1024, 2},
296 },
297 .block_erase = spi_block_erase_d8,
298 }, {
299 .eraseblocks = { {64 * 1024, 1} },
300 .block_erase = spi_block_erase_c7,
301 }
302 },
303 .unlock = spi_disable_blockprotect,
304 .write = spi_chip_write_256,
305 .read = spi_chip_read,
306 },
307
308 {
309 .vendor = "AMIC",
310 .name = "A25L05PU",
311 .bustype = CHIP_BUSTYPE_SPI,
312 .manufacture_id = AMIC_ID,
313 .model_id = AMIC_A25L05PU,
314 .total_size = 64,
315 .page_size = 256,
316 .tested = TEST_UNTESTED,
317 .probe = probe_spi_rdid4,
318 .probe_timing = TIMING_ZERO,
319 .block_erasers =
320 {
321 {
322 .eraseblocks = {
323 {4 * 1024, 2},
324 {8 * 1024, 1},
325 {16 * 1024, 1},
326 {32 * 1024, 1},
327 },
328 .block_erase = spi_block_erase_d8,
329 }, {
330 .eraseblocks = { {64 * 1024, 1} },
331 .block_erase = spi_block_erase_c7,
332 }
333 },
334 .unlock = spi_disable_blockprotect,
335 .write = spi_chip_write_256,
336 .read = spi_chip_read,
337 },
338
339 {
340 .vendor = "AMIC",
341 .name = "A25L10PT",
342 .bustype = CHIP_BUSTYPE_SPI,
343 .manufacture_id = AMIC_ID,
344 .model_id = AMIC_A25L10PT,
345 .total_size = 128,
346 .page_size = 256,
347 .tested = TEST_UNTESTED,
348 .probe = probe_spi_rdid4,
349 .probe_timing = TIMING_ZERO,
350 .block_erasers =
351 {
352 {
353 .eraseblocks = {
354 {64 * 1024, 1},
355 {32 * 1024, 1},
356 {16 * 1024, 1},
357 {8 * 1024, 1},
358 {4 * 1024, 2},
359 },
360 .block_erase = spi_block_erase_d8,
361 }, {
362 .eraseblocks = { {128 * 1024, 1} },
363 .block_erase = spi_block_erase_c7,
364 }
365 },
366 .unlock = spi_disable_blockprotect,
367 .write = spi_chip_write_256,
368 .read = spi_chip_read,
369 },
370
371 {
372 .vendor = "AMIC",
373 .name = "A25L10PU",
374 .bustype = CHIP_BUSTYPE_SPI,
375 .manufacture_id = AMIC_ID,
376 .model_id = AMIC_A25L10PU,
377 .total_size = 128,
378 .page_size = 256,
379 .tested = TEST_UNTESTED,
380 .probe = probe_spi_rdid4,
381 .probe_timing = TIMING_ZERO,
382 .block_erasers =
383 {
384 {
385 .eraseblocks = {
386 {4 * 1024, 2},
387 {8 * 1024, 1},
388 {16 * 1024, 1},
389 {32 * 1024, 1},
390 {64 * 1024, 1},
391 },
392 .block_erase = spi_block_erase_d8,
393 }, {
394 .eraseblocks = { {128 * 1024, 1} },
395 .block_erase = spi_block_erase_c7,
396 }
397 },
398 .unlock = spi_disable_blockprotect,
399 .write = spi_chip_write_256,
400 .read = spi_chip_read,
401 },
402
403 {
404 .vendor = "AMIC",
405 .name = "A25L20PT",
406 .bustype = CHIP_BUSTYPE_SPI,
407 .manufacture_id = AMIC_ID,
408 .model_id = AMIC_A25L20PT,
409 .total_size = 256,
410 .page_size = 256,
411 .tested = TEST_UNTESTED,
412 .probe = probe_spi_rdid4,
413 .probe_timing = TIMING_ZERO,
414 .block_erasers =
415 {
416 {
417 .eraseblocks = {
418 {64 * 1024, 3},
419 {32 * 1024, 1},
420 {16 * 1024, 1},
421 {8 * 1024, 1},
422 {4 * 1024, 2},
423 },
424 .block_erase = spi_block_erase_d8,
425 }, {
426 .eraseblocks = { {256 * 1024, 1} },
427 .block_erase = spi_block_erase_c7,
428 }
429 },
430 .unlock = spi_disable_blockprotect,
431 .write = spi_chip_write_256,
432 .read = spi_chip_read,
433 },
434
435 {
436 .vendor = "AMIC",
437 .name = "A25L20PU",
438 .bustype = CHIP_BUSTYPE_SPI,
439 .manufacture_id = AMIC_ID,
440 .model_id = AMIC_A25L20PU,
441 .total_size = 256,
442 .page_size = 256,
443 .tested = TEST_UNTESTED,
444 .probe = probe_spi_rdid4,
445 .probe_timing = TIMING_ZERO,
446 .block_erasers =
447 {
448 {
449 .eraseblocks = {
450 {4 * 1024, 2},
451 {8 * 1024, 1},
452 {16 * 1024, 1},
453 {32 * 1024, 1},
454 {64 * 1024, 3},
455 },
456 .block_erase = spi_block_erase_d8,
457 }, {
458 .eraseblocks = { {256 * 1024, 1} },
459 .block_erase = spi_block_erase_c7,
460 }
461 },
462 .unlock = spi_disable_blockprotect,
463 .write = spi_chip_write_256,
464 .read = spi_chip_read,
465 },
466
467 /* The A25L40P{T,U} chips are distinguished by their
468 * erase block layouts, but without any distinction in RDID.
469 * This inexplicable quirk was verified by Rudolf Marek
470 * and discussed on the flashrom mailing list on 2010-07-12.
471 */
472 {
473 .vendor = "AMIC",
474 .name = "A25L40PT",
475 .bustype = CHIP_BUSTYPE_SPI,
476 .manufacture_id = AMIC_ID,
477 .model_id = AMIC_A25L40PT,
478 .total_size = 512,
479 .page_size = 256,
480 .tested = TEST_OK_PRW,
481 .probe = probe_spi_rdid4,
482 .probe_timing = TIMING_ZERO,
483 .block_erasers =
484 {
485 {
486 .eraseblocks = {
487 {64 * 1024, 7},
488 {32 * 1024, 1},
489 {16 * 1024, 1},
490 {8 * 1024, 1},
491 {4 * 1024, 2},
492 },
493 .block_erase = spi_block_erase_d8,
494 }, {
495 .eraseblocks = { {512 * 1024, 1} },
496 .block_erase = spi_block_erase_c7,
497 }
498 },
499 .unlock = spi_disable_blockprotect,
500 .write = spi_chip_write_256,
501 .read = spi_chip_read,
502 },
503
504 {
505 .vendor = "AMIC",
506 .name = "A25L40PU",
507 .bustype = CHIP_BUSTYPE_SPI,
508 .manufacture_id = AMIC_ID,
509 .model_id = AMIC_A25L40PU,
510 .total_size = 512,
511 .page_size = 256,
512 .tested = TEST_OK_PRW,
513 .probe = probe_spi_rdid4,
514 .probe_timing = TIMING_ZERO,
515 .block_erasers =
516 {
517 {
518 .eraseblocks = {
519 {4 * 1024, 2},
520 {8 * 1024, 1},
521 {16 * 1024, 1},
522 {32 * 1024, 1},
523 {64 * 1024, 7},
524 },
525 .block_erase = spi_block_erase_d8,
526 }, {
527 .eraseblocks = { {512 * 1024, 1} },
528 .block_erase = spi_block_erase_c7,
529 }
530 },
531 .unlock = spi_disable_blockprotect,
532 .write = spi_chip_write_256,
533 .read = spi_chip_read,
534 },
535
536 {
537 .vendor = "AMIC",
538 .name = "A25L80P",
539 .bustype = CHIP_BUSTYPE_SPI,
540 .manufacture_id = AMIC_ID,
541 .model_id = AMIC_A25L80P,
542 .total_size = 1024,
543 .page_size = 256,
544 .tested = TEST_OK_PREW,
545 .probe = probe_spi_rdid4,
546 .probe_timing = TIMING_ZERO,
547 .block_erasers =
548 {
549 {
550 .eraseblocks = {
551 {4 * 1024, 2},
552 {8 * 1024, 1},
553 {16 * 1024, 1},
554 {32 * 1024, 1},
555 {64 * 1024, 15},
556 },
557 .block_erase = spi_block_erase_d8,
558 }, {
559 .eraseblocks = { {1024 * 1024, 1} },
560 .block_erase = spi_block_erase_c7,
561 }
562 },
563 .unlock = spi_disable_blockprotect,
564 .write = spi_chip_write_256,
565 .read = spi_chip_read,
566 },
567
568 {
569 .vendor = "AMIC",
570 .name = "A25L16PT",
571 .bustype = CHIP_BUSTYPE_SPI,
572 .manufacture_id = AMIC_ID,
573 .model_id = AMIC_A25L16PT,
574 .total_size = 2048,
575 .page_size = 256,
576 .tested = TEST_UNTESTED,
577 .probe = probe_spi_rdid4,
578 .probe_timing = TIMING_ZERO,
579 .block_erasers =
580 {
581 {
582 .eraseblocks = {
583 {64 * 1024, 31},
584 {32 * 1024, 1},
585 {16 * 1024, 1},
586 {8 * 1024, 1},
587 {4 * 1024, 2},
588 },
589 .block_erase = spi_block_erase_d8,
590 }, {
591 .eraseblocks = { {2048 * 1024, 1} },
592 .block_erase = spi_block_erase_60,
593 }, {
594 .eraseblocks = { {2048 * 1024, 1} },
595 .block_erase = spi_block_erase_c7,
596 }
597 },
598 .unlock = spi_disable_blockprotect,
599 .write = spi_chip_write_256,
600 .read = spi_chip_read,
601 },
602
603 {
604 .vendor = "AMIC",
605 .name = "A25L16PU",
606 .bustype = CHIP_BUSTYPE_SPI,
607 .manufacture_id = AMIC_ID,
608 .model_id = AMIC_A25L16PU,
609 .total_size = 2048,
610 .page_size = 256,
611 .tested = TEST_OK_PRW,
612 .probe = probe_spi_rdid4,
613 .probe_timing = TIMING_ZERO,
614 .block_erasers =
615 {
616 {
617 .eraseblocks = {
618 {4 * 1024, 2},
619 {8 * 1024, 1},
620 {16 * 1024, 1},
621 {32 * 1024, 1},
622 {64 * 1024, 31},
623 },
624 .block_erase = spi_block_erase_d8,
625 }, {
626 .eraseblocks = { {2048 * 1024, 1} },
627 .block_erase = spi_block_erase_60,
628 }, {
629 .eraseblocks = { {2048 * 1024, 1} },
630 .block_erase = spi_block_erase_c7,
631 }
632 },
633 .unlock = spi_disable_blockprotect,
634 .write = spi_chip_write_256,
635 .read = spi_chip_read,
636 },
637
638 {
639 .vendor = "AMIC",
Dan Lenski11617122010-07-29 15:00:40 +0000640 .name = "A25L512",
641 .bustype = CHIP_BUSTYPE_SPI,
642 .manufacture_id = AMIC_ID_NOPREFIX,
643 .model_id = AMIC_A25L512,
644 .total_size = 64,
645 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000646 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000647 .tested = TEST_UNTESTED,
648 .probe = probe_spi_rdid,
649 .probe_timing = TIMING_ZERO,
650 .block_erasers =
651 {
652 {
653 .eraseblocks = { { 4 * 1024, 16 } },
654 .block_erase = spi_block_erase_20,
655 }, {
656 .eraseblocks = { { 64 * 1024, 1 } },
657 .block_erase = spi_block_erase_d8,
658 }, {
659 .eraseblocks = { { 64 * 1024, 1 } },
660 .block_erase = spi_block_erase_c7,
661 }
662 },
663 .unlock = spi_disable_blockprotect,
664 .write = spi_chip_write_256,
665 .read = spi_chip_read,
666 },
667
668 {
669 .vendor = "AMIC",
670 .name = "A25L010",
671 .bustype = CHIP_BUSTYPE_SPI,
672 .manufacture_id = AMIC_ID_NOPREFIX,
673 .model_id = AMIC_A25L010,
674 .total_size = 128,
675 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000676 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000677 .tested = TEST_UNTESTED,
678 .probe = probe_spi_rdid,
679 .probe_timing = TIMING_ZERO,
680 .block_erasers =
681 {
682 {
683 .eraseblocks = { { 4 * 1024, 32 } },
684 .block_erase = spi_block_erase_20,
685 }, {
686 .eraseblocks = { { 64 * 1024, 2 } },
687 .block_erase = spi_block_erase_d8,
688 }, {
689 .eraseblocks = { { 128 * 1024, 1 } },
690 .block_erase = spi_block_erase_c7,
691 }
692 },
693 .unlock = spi_disable_blockprotect,
694 .write = spi_chip_write_256,
695 .read = spi_chip_read,
696 },
697
698 {
699 .vendor = "AMIC",
700 .name = "A25L020",
701 .bustype = CHIP_BUSTYPE_SPI,
702 .manufacture_id = AMIC_ID_NOPREFIX,
703 .model_id = AMIC_A25L020,
704 .total_size = 256,
705 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000706 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000707 .tested = TEST_UNTESTED,
708 .probe = probe_spi_rdid,
709 .probe_timing = TIMING_ZERO,
710 .block_erasers =
711 {
712 {
713 .eraseblocks = { { 4 * 1024, 64 } },
714 .block_erase = spi_block_erase_20,
715 }, {
716 .eraseblocks = { { 64 * 1024, 4 } },
717 .block_erase = spi_block_erase_d8,
718 }, {
719 .eraseblocks = { { 256 * 1024, 1 } },
720 .block_erase = spi_block_erase_c7,
721 }
722 },
723 .unlock = spi_disable_blockprotect,
724 .write = spi_chip_write_256,
725 .read = spi_chip_read,
726 },
727
728 {
729 .vendor = "AMIC",
730 .name = "A25L040",
731 .bustype = CHIP_BUSTYPE_SPI,
732 .manufacture_id = AMIC_ID_NOPREFIX,
733 .model_id = AMIC_A25L040,
734 .total_size = 512,
735 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000736 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000737 .tested = TEST_UNTESTED,
738 .probe = probe_spi_rdid,
739 .probe_timing = TIMING_ZERO,
740 .block_erasers =
741 {
742 {
743 .eraseblocks = { { 4 * 1024, 128 } },
744 .block_erase = spi_block_erase_20,
745 }, {
746 .eraseblocks = { { 64 * 1024, 8 } },
747 .block_erase = spi_block_erase_d8,
748 }, {
749 .eraseblocks = { { 512 * 1024, 1 } },
750 .block_erase = spi_block_erase_c7,
751 }
752 },
753 .unlock = spi_disable_blockprotect,
754 .write = spi_chip_write_256,
755 .read = spi_chip_read,
756 },
757
758 {
759 .vendor = "AMIC",
760 .name = "A25L080",
761 .bustype = CHIP_BUSTYPE_SPI,
762 .manufacture_id = AMIC_ID_NOPREFIX,
763 .model_id = AMIC_A25L080,
764 .total_size = 1024,
765 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000766 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000767 .tested = TEST_UNTESTED,
768 .probe = probe_spi_rdid,
769 .probe_timing = TIMING_ZERO,
770 .block_erasers =
771 {
772 {
773 .eraseblocks = { { 4 * 1024, 256 } },
774 .block_erase = spi_block_erase_20,
775 }, {
776 .eraseblocks = { { 64 * 1024, 16 } },
777 .block_erase = spi_block_erase_d8,
778 }, {
779 .eraseblocks = { { 1024 * 1024, 1 } },
780 .block_erase = spi_block_erase_c7,
781 }
782 },
783 .unlock = spi_disable_blockprotect,
784 .write = spi_chip_write_256,
785 .read = spi_chip_read,
786 },
787
788 {
789 .vendor = "AMIC",
790 .name = "A25L016",
791 .bustype = CHIP_BUSTYPE_SPI,
792 .manufacture_id = AMIC_ID_NOPREFIX,
793 .model_id = AMIC_A25L016,
794 .total_size = 2048,
795 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000796 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000797 .tested = TEST_UNTESTED,
798 .probe = probe_spi_rdid,
799 .probe_timing = TIMING_ZERO,
800 .block_erasers =
801 {
802 {
803 .eraseblocks = { { 4 * 1024, 512 } },
804 .block_erase = spi_block_erase_20,
805 }, {
806 .eraseblocks = { { 64 * 1024, 32 } },
807 .block_erase = spi_block_erase_d8,
808 }, {
809 .eraseblocks = { { 2048 * 1024, 1 } },
810 .block_erase = spi_block_erase_c7,
811 }
812 },
813 .unlock = spi_disable_blockprotect,
814 .write = spi_chip_write_256,
815 .read = spi_chip_read,
816 },
817
818 {
819 .vendor = "AMIC",
820 .name = "A25L032",
821 .bustype = CHIP_BUSTYPE_SPI,
822 .manufacture_id = AMIC_ID_NOPREFIX,
823 .model_id = AMIC_A25L032,
824 .total_size = 4096,
825 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000826 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000827 .tested = TEST_UNTESTED,
828 .probe = probe_spi_rdid,
829 .probe_timing = TIMING_ZERO,
830 .block_erasers =
831 {
832 {
833 .eraseblocks = { { 4 * 1024, 1024 } },
834 .block_erase = spi_block_erase_20,
835 }, {
836 .eraseblocks = { { 64 * 1024, 64 } },
837 .block_erase = spi_block_erase_52,
838 }, {
839 .eraseblocks = { { 64 * 1024, 64 } },
840 .block_erase = spi_block_erase_d8,
841 }, {
842 .eraseblocks = { { 4096 * 1024, 1 } },
843 .block_erase = spi_block_erase_60,
844 }, {
845 .eraseblocks = { { 4096 * 1024, 1 } },
846 .block_erase = spi_block_erase_c7,
847 }
848 },
849 .unlock = NULL, /* Two status reg bytes (read with 0x35 and 0x05) */
850 .write = spi_chip_write_256,
851 .read = spi_chip_read,
852 },
853
854 {
855 .vendor = "AMIC",
856 .name = "A25LQ032",
857 .bustype = CHIP_BUSTYPE_SPI,
858 .manufacture_id = AMIC_ID_NOPREFIX,
859 .model_id = AMIC_A25LQ032,
860 .total_size = 4096,
861 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000862 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000863 .tested = TEST_UNTESTED,
864 .probe = probe_spi_rdid,
865 .probe_timing = TIMING_ZERO,
866 .block_erasers =
867 {
868 {
869 .eraseblocks = { { 4 * 1024, 1024 } },
870 .block_erase = spi_block_erase_20,
871 }, {
872 .eraseblocks = { { 64 * 1024, 64 } },
873 .block_erase = spi_block_erase_52,
874 }, {
875 .eraseblocks = { { 64 * 1024, 64 } },
876 .block_erase = spi_block_erase_d8,
877 }, {
878 .eraseblocks = { { 4096 * 1024, 1 } },
879 .block_erase = spi_block_erase_60,
880 }, {
881 .eraseblocks = { { 4096 * 1024, 1 } },
882 .block_erase = spi_block_erase_c7,
883 }
884 },
885 .unlock = NULL, /* Two status reg bytes (read with 0x35 and 0x05) */
886 .write = spi_chip_write_256,
887 .read = spi_chip_read,
888 },
889
890 {
891 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000892 .name = "A29002B",
893 .bustype = CHIP_BUSTYPE_PARALLEL,
894 .manufacture_id = AMIC_ID_NOPREFIX,
895 .model_id = AMIC_A29002B,
896 .total_size = 256,
897 .page_size = 64 * 1024,
898 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
899 .tested = TEST_UNTESTED,
900 .probe = probe_jedec,
901 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
902 .block_erasers =
903 {
904 {
905 .eraseblocks = {
906 {16 * 1024, 1},
907 {8 * 1024, 2},
908 {32 * 1024, 1},
909 {64 * 1024, 3},
910 },
911 .block_erase = erase_sector_jedec,
912 }, {
913 .eraseblocks = { {256 * 1024, 1} },
914 .block_erase = erase_chip_block_jedec,
915 },
916 },
917 .write = write_jedec_1,
918 .read = read_memmapped,
919 },
920
921 {
922 .vendor = "AMIC",
923 .name = "A29002T",
924 .bustype = CHIP_BUSTYPE_PARALLEL,
925 .manufacture_id = AMIC_ID_NOPREFIX,
926 .model_id = AMIC_A29002T,
927 .total_size = 256,
928 .page_size = 64 * 1024,
929 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
930 .tested = TEST_OK_PRW,
931 .probe = probe_jedec,
932 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
933 .block_erasers =
934 {
935 {
936 .eraseblocks = {
937 {64 * 1024, 3},
938 {32 * 1024, 1},
939 {8 * 1024, 2},
940 {16 * 1024, 1},
941 },
942 .block_erase = erase_sector_jedec,
943 }, {
944 .eraseblocks = { {256 * 1024, 1} },
945 .block_erase = erase_chip_block_jedec,
946 },
947 },
948 .write = write_jedec_1,
949 .read = read_memmapped,
950 },
951
952 {
953 .vendor = "AMIC",
954 .name = "A29040B",
955 .bustype = CHIP_BUSTYPE_PARALLEL,
956 .manufacture_id = AMIC_ID_NOPREFIX,
957 .model_id = AMIC_A29040B,
958 .total_size = 512,
959 .page_size = 64 * 1024,
960 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
961 .tested = TEST_UNTESTED,
962 .probe = probe_jedec,
963 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
964 .block_erasers =
965 {
966 {
967 .eraseblocks = { {64 * 1024, 8} },
968 .block_erase = erase_sector_jedec,
969 }, {
970 .eraseblocks = { {512 * 1024, 1} },
971 .block_erase = erase_chip_block_jedec,
972 },
973 },
974 .write = write_jedec_1,
975 .read = read_memmapped,
976 },
977
978 {
979 .vendor = "AMIC",
980 .name = "A49LF040A",
981 .bustype = CHIP_BUSTYPE_LPC,
982 .manufacture_id = AMIC_ID_NOPREFIX,
983 .model_id = AMIC_A49LF040A,
984 .total_size = 512,
985 .page_size = 64 * 1024,
986 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
987 .tested = TEST_OK_PREW,
988 .probe = probe_jedec,
989 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
990 .block_erasers =
991 {
992 {
993 .eraseblocks = { {64 * 1024, 8} },
994 .block_erase = erase_block_jedec,
995 }, {
996 .eraseblocks = { {512 * 1024, 1} },
997 .block_erase = erase_chip_block_jedec,
998 }
999 },
1000 .unlock = unlock_49fl00x,
1001 .write = write_jedec_1,
1002 .read = read_memmapped,
1003 },
1004
1005 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001006 .vendor = "ASD",
1007 .name = "AE49F2008",
Urja Rannikko038a3122009-06-28 19:19:25 +00001008 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001009 .manufacture_id = ASD_ID,
1010 .model_id = ASD_AE49F2008,
1011 .total_size = 256,
1012 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00001013 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001014 .tested = TEST_UNTESTED,
1015 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001016 .probe_timing = TIMING_FIXME,
Sean Nelson54596372010-01-09 05:30:14 +00001017 .block_erasers =
1018 {
1019 {
1020 .eraseblocks = {
1021 {128 * 1024, 1},
1022 {96 * 1024, 1},
1023 {8 * 1024, 2},
1024 {16 * 1024, 1},
1025 },
1026 .block_erase = erase_sector_jedec,
1027 }, {
1028 .eraseblocks = { {256 * 1024, 1} },
1029 .block_erase = erase_chip_block_jedec,
1030 }
1031 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001032 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001033 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001034 },
1035
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001036 {
1037 .vendor = "Atmel",
1038 .name = "AT25DF021",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001039 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001040 .manufacture_id = ATMEL_ID,
1041 .model_id = AT_25DF021,
1042 .total_size = 256,
1043 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001044 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001045 .tested = TEST_UNTESTED,
1046 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001047 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001048 .block_erasers =
1049 {
1050 {
1051 .eraseblocks = { {4 * 1024, 64} },
1052 .block_erase = spi_block_erase_20,
1053 }, {
1054 .eraseblocks = { {32 * 1024, 8} },
1055 .block_erase = spi_block_erase_52,
1056 }, {
1057 .eraseblocks = { {64 * 1024, 4} },
1058 .block_erase = spi_block_erase_d8,
1059 }, {
1060 .eraseblocks = { {256 * 1024, 1} },
1061 .block_erase = spi_block_erase_60,
1062 }, {
1063 .eraseblocks = { {256 * 1024, 1} },
1064 .block_erase = spi_block_erase_c7,
1065 }
1066 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001067 .printlock = spi_prettyprint_status_register_at25df,
1068 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001069 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001070 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001071 },
1072
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001073 {
1074 .vendor = "Atmel",
1075 .name = "AT25DF041A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001076 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001077 .manufacture_id = ATMEL_ID,
1078 .model_id = AT_25DF041A,
1079 .total_size = 512,
1080 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001081 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001082 .tested = TEST_UNTESTED,
1083 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001084 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001085 .block_erasers =
1086 {
1087 {
1088 .eraseblocks = { {4 * 1024, 128} },
1089 .block_erase = spi_block_erase_20,
1090 }, {
1091 .eraseblocks = { {32 * 1024, 16} },
1092 .block_erase = spi_block_erase_52,
1093 }, {
1094 .eraseblocks = { {64 * 1024, 8} },
1095 .block_erase = spi_block_erase_d8,
1096 }, {
1097 .eraseblocks = { {512 * 1024, 1} },
1098 .block_erase = spi_block_erase_60,
1099 }, {
1100 .eraseblocks = { {512 * 1024, 1} },
1101 .block_erase = spi_block_erase_c7,
1102 }
1103 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001104 .printlock = spi_prettyprint_status_register_at25df,
1105 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001106 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001107 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001108 },
1109
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001110 {
1111 .vendor = "Atmel",
1112 .name = "AT25DF081",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001113 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001114 .manufacture_id = ATMEL_ID,
1115 .model_id = AT_25DF081,
1116 .total_size = 1024,
1117 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001118 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001119 .tested = TEST_UNTESTED,
1120 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001121 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001122 .block_erasers =
1123 {
1124 {
1125 .eraseblocks = { {4 * 1024, 256} },
1126 .block_erase = spi_block_erase_20,
1127 }, {
1128 .eraseblocks = { {32 * 1024, 32} },
1129 .block_erase = spi_block_erase_52,
1130 }, {
1131 .eraseblocks = { {64 * 1024, 16} },
1132 .block_erase = spi_block_erase_d8,
1133 }, {
1134 .eraseblocks = { {1024 * 1024, 1} },
1135 .block_erase = spi_block_erase_60,
1136 }, {
1137 .eraseblocks = { {1024 * 1024, 1} },
1138 .block_erase = spi_block_erase_c7,
1139 }
1140 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001141 .printlock = spi_prettyprint_status_register_at25df,
1142 .unlock = spi_disable_blockprotect_at25df,
1143 .write = spi_chip_write_256,
1144 .read = spi_chip_read,
1145 },
1146
1147 {
1148 .vendor = "Atmel",
1149 .name = "AT25DF081A",
1150 .bustype = CHIP_BUSTYPE_SPI,
1151 .manufacture_id = ATMEL_ID,
1152 .model_id = AT_25DF081A,
1153 .total_size = 1024,
1154 .page_size = 256,
1155 .feature_bits = FEATURE_WRSR_WREN,
1156 .tested = TEST_UNTESTED,
1157 .probe = probe_spi_rdid,
1158 .probe_timing = TIMING_ZERO,
1159 .block_erasers =
1160 {
1161 {
1162 .eraseblocks = { {4 * 1024, 256} },
1163 .block_erase = spi_block_erase_20,
1164 }, {
1165 .eraseblocks = { {32 * 1024, 32} },
1166 .block_erase = spi_block_erase_52,
1167 }, {
1168 .eraseblocks = { {64 * 1024, 16} },
1169 .block_erase = spi_block_erase_d8,
1170 }, {
1171 .eraseblocks = { {1024 * 1024, 1} },
1172 .block_erase = spi_block_erase_60,
1173 }, {
1174 .eraseblocks = { {1024 * 1024, 1} },
1175 .block_erase = spi_block_erase_c7,
1176 }
1177 },
1178 .printlock = spi_prettyprint_status_register_at25df_sec,
1179 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001180 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001181 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001182 },
1183
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001184 {
1185 .vendor = "Atmel",
1186 .name = "AT25DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001187 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001188 .manufacture_id = ATMEL_ID,
1189 .model_id = AT_25DF161,
1190 .total_size = 2048,
1191 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001192 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001193 .tested = TEST_UNTESTED,
1194 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001195 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001196 .block_erasers =
1197 {
1198 {
1199 .eraseblocks = { {4 * 1024, 512} },
1200 .block_erase = spi_block_erase_20,
1201 }, {
1202 .eraseblocks = { {32 * 1024, 64} },
1203 .block_erase = spi_block_erase_52,
1204 }, {
1205 .eraseblocks = { {64 * 1024, 32} },
1206 .block_erase = spi_block_erase_d8,
1207 }, {
1208 .eraseblocks = { {2 * 1024 * 1024, 1} },
1209 .block_erase = spi_block_erase_60,
1210 }, {
1211 .eraseblocks = { {2 * 1024 * 1024, 1} },
1212 .block_erase = spi_block_erase_c7,
1213 }
1214 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001215 .printlock = spi_prettyprint_status_register_at25df_sec,
1216 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001217 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001218 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001219 },
1220
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001221 {
1222 .vendor = "Atmel",
1223 .name = "AT25DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001224 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001225 .manufacture_id = ATMEL_ID,
1226 .model_id = AT_25DF321,
1227 .total_size = 4096,
1228 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001229 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00001230 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001231 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001232 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001233 .block_erasers =
1234 {
1235 {
1236 .eraseblocks = { {4 * 1024, 1024} },
1237 .block_erase = spi_block_erase_20,
1238 }, {
1239 .eraseblocks = { {32 * 1024, 128} },
1240 .block_erase = spi_block_erase_52,
1241 }, {
1242 .eraseblocks = { {64 * 1024, 64} },
1243 .block_erase = spi_block_erase_d8,
1244 }, {
1245 .eraseblocks = { {4 * 1024 * 1024, 1} },
1246 .block_erase = spi_block_erase_60,
1247 }, {
1248 .eraseblocks = { {4 * 1024 * 1024, 1} },
1249 .block_erase = spi_block_erase_c7,
1250 }
1251 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001252 .printlock = spi_prettyprint_status_register_at25df,
1253 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001254 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001255 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001256 },
1257
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001258 {
1259 .vendor = "Atmel",
1260 .name = "AT25DF321A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001261 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001262 .manufacture_id = ATMEL_ID,
1263 .model_id = AT_25DF321A,
1264 .total_size = 4096,
1265 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001266 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001267 .tested = TEST_UNTESTED,
1268 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001269 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001270 .block_erasers =
1271 {
1272 {
1273 .eraseblocks = { {4 * 1024, 1024} },
1274 .block_erase = spi_block_erase_20,
1275 }, {
1276 .eraseblocks = { {32 * 1024, 128} },
1277 .block_erase = spi_block_erase_52,
1278 }, {
1279 .eraseblocks = { {64 * 1024, 64} },
1280 .block_erase = spi_block_erase_d8,
1281 }, {
1282 .eraseblocks = { {4 * 1024 * 1024, 1} },
1283 .block_erase = spi_block_erase_60,
1284 }, {
1285 .eraseblocks = { {4 * 1024 * 1024, 1} },
1286 .block_erase = spi_block_erase_c7,
1287 }
1288 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001289 .printlock = spi_prettyprint_status_register_at25df_sec,
1290 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001291 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001292 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001293 },
1294
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001295 {
1296 .vendor = "Atmel",
1297 .name = "AT25DF641",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001298 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001299 .manufacture_id = ATMEL_ID,
1300 .model_id = AT_25DF641,
1301 .total_size = 8192,
1302 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001303 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001304 .tested = TEST_UNTESTED,
1305 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001306 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001307 .block_erasers =
1308 {
1309 {
1310 .eraseblocks = { {4 * 1024, 2048} },
1311 .block_erase = spi_block_erase_20,
1312 }, {
1313 .eraseblocks = { {32 * 1024, 256} },
1314 .block_erase = spi_block_erase_52,
1315 }, {
1316 .eraseblocks = { {64 * 1024, 128} },
1317 .block_erase = spi_block_erase_d8,
1318 }, {
1319 .eraseblocks = { {8 * 1024 * 1024, 1} },
1320 .block_erase = spi_block_erase_60,
1321 }, {
1322 .eraseblocks = { {8 * 1024 * 1024, 1} },
1323 .block_erase = spi_block_erase_c7,
1324 }
1325 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001326 .printlock = spi_prettyprint_status_register_at25df_sec,
1327 .unlock = spi_disable_blockprotect_at25df_sec,
1328 .write = spi_chip_write_256,
1329 .read = spi_chip_read,
1330 },
1331
1332 {
1333 .vendor = "Atmel",
1334 .name = "AT25DQ161",
1335 .bustype = CHIP_BUSTYPE_SPI,
1336 .manufacture_id = ATMEL_ID,
1337 .model_id = AT_25DQ161,
1338 .total_size = 2048,
1339 .page_size = 256,
1340 .feature_bits = FEATURE_WRSR_WREN,
1341 .tested = TEST_UNTESTED,
1342 .probe = probe_spi_rdid,
1343 .probe_timing = TIMING_ZERO,
1344 .block_erasers =
1345 {
1346 {
1347 .eraseblocks = { {4 * 1024, 512} },
1348 .block_erase = spi_block_erase_20,
1349 }, {
1350 .eraseblocks = { {32 * 1024, 64} },
1351 .block_erase = spi_block_erase_52,
1352 }, {
1353 .eraseblocks = { {64 * 1024, 32} },
1354 .block_erase = spi_block_erase_d8,
1355 }, {
1356 .eraseblocks = { {2 * 1024 * 1024, 1} },
1357 .block_erase = spi_block_erase_60,
1358 }, {
1359 .eraseblocks = { {2 * 1024 * 1024, 1} },
1360 .block_erase = spi_block_erase_c7,
1361 }
1362 },
1363 .printlock = spi_prettyprint_status_register_at25df_sec,
1364 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001365 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001366 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001367 },
1368
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001369 {
1370 .vendor = "Atmel",
1371 .name = "AT25F512B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001372 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001373 .manufacture_id = ATMEL_ID,
1374 .model_id = AT_25F512B,
1375 .total_size = 64,
1376 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001377 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001378 .tested = TEST_UNTESTED,
1379 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001380 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001381 .block_erasers =
1382 {
1383 {
1384 .eraseblocks = { {4 * 1024, 16} },
1385 .block_erase = spi_block_erase_20,
1386 }, {
1387 .eraseblocks = { {32 * 1024, 2} },
1388 .block_erase = spi_block_erase_52,
1389 }, {
1390 .eraseblocks = { {32 * 1024, 2} },
1391 .block_erase = spi_block_erase_d8,
1392 }, {
1393 .eraseblocks = { {64 * 1024, 1} },
1394 .block_erase = spi_block_erase_60,
1395 }, {
1396 .eraseblocks = { {64 * 1024, 1} },
1397 .block_erase = spi_block_erase_c7,
1398 }
1399 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001400 .printlock = spi_prettyprint_status_register_at25f,
1401 .unlock = spi_disable_blockprotect_at25f,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001402 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001403 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001404 },
1405
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001406 {
1407 .vendor = "Atmel",
1408 .name = "AT25FS010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001409 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001410 .manufacture_id = ATMEL_ID,
1411 .model_id = AT_25FS010,
1412 .total_size = 128,
1413 .page_size = 256,
1414 .tested = TEST_UNTESTED,
1415 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001416 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001417 .block_erasers =
1418 {
1419 {
1420 .eraseblocks = { {4 * 1024, 32} },
1421 .block_erase = spi_block_erase_20,
1422 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001423 .eraseblocks = { {4 * 1024, 32} },
1424 .block_erase = spi_block_erase_d7,
1425 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001426 .eraseblocks = { {32 * 1024, 4} },
1427 .block_erase = spi_block_erase_52,
1428 }, {
1429 .eraseblocks = { {32 * 1024, 4} },
1430 .block_erase = spi_block_erase_d8,
1431 }, {
1432 .eraseblocks = { {128 * 1024, 1} },
1433 .block_erase = spi_block_erase_60,
1434 }, {
1435 .eraseblocks = { {128 * 1024, 1} },
1436 .block_erase = spi_block_erase_c7,
1437 }
1438 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001439 .printlock = spi_prettyprint_status_register_at25fs010,
1440 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001441 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001442 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001443 },
1444
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001445 {
1446 .vendor = "Atmel",
1447 .name = "AT25FS040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001448 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001449 .manufacture_id = ATMEL_ID,
1450 .model_id = AT_25FS040,
1451 .total_size = 512,
1452 .page_size = 256,
1453 .tested = TEST_UNTESTED,
1454 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001455 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001456 .block_erasers =
1457 {
1458 {
1459 .eraseblocks = { {4 * 1024, 128} },
1460 .block_erase = spi_block_erase_20,
1461 }, {
1462 .eraseblocks = { {64 * 1024, 8} },
1463 .block_erase = spi_block_erase_52,
1464 }, {
1465 .eraseblocks = { {64 * 1024, 8} },
1466 .block_erase = spi_block_erase_d8,
1467 }, {
1468 .eraseblocks = { {512 * 1024, 1} },
1469 .block_erase = spi_block_erase_60,
1470 }, {
1471 .eraseblocks = { {512 * 1024, 1} },
1472 .block_erase = spi_block_erase_c7,
1473 }
1474 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001475 .printlock = spi_prettyprint_status_register_at25fs040,
1476 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001477 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001478 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001479 },
1480
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001481 {
1482 .vendor = "Atmel",
1483 .name = "AT26DF041",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001484 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001485 .manufacture_id = ATMEL_ID,
1486 .model_id = AT_26DF041,
1487 .total_size = 512,
1488 .page_size = 256,
1489 .tested = TEST_UNTESTED,
1490 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001491 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001492 .block_erasers =
1493 {
1494 {
1495 .eraseblocks = { {4 * 1024, 128} },
1496 .block_erase = spi_block_erase_20,
1497 }
1498 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001499 .write = NULL /* Incompatible Page write */,
1500 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001501 },
1502
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001503 {
1504 .vendor = "Atmel",
1505 .name = "AT26DF081A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001506 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001507 .manufacture_id = ATMEL_ID,
1508 .model_id = AT_26DF081A,
1509 .total_size = 1024,
1510 .page_size = 256,
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +00001511 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001512 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001513 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001514 .block_erasers =
1515 {
1516 {
1517 .eraseblocks = { {4 * 1024, 256} },
1518 .block_erase = spi_block_erase_20,
1519 }, {
1520 .eraseblocks = { {32 * 1024, 32} },
1521 .block_erase = spi_block_erase_52,
1522 }, {
1523 .eraseblocks = { {64 * 1024, 16} },
1524 .block_erase = spi_block_erase_d8,
1525 }, {
1526 .eraseblocks = { {1024 * 1024, 1} },
1527 .block_erase = spi_block_erase_60,
1528 }, {
1529 .eraseblocks = { {1024 * 1024, 1} },
1530 .block_erase = spi_block_erase_c7,
1531 }
1532 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001533 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001534 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001535 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001536 },
1537
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001538 {
1539 .vendor = "Atmel",
1540 .name = "AT26DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001541 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001542 .manufacture_id = ATMEL_ID,
1543 .model_id = AT_26DF161,
1544 .total_size = 2048,
1545 .page_size = 256,
1546 .tested = TEST_UNTESTED,
1547 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001548 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001549 .block_erasers =
1550 {
1551 {
1552 .eraseblocks = { {4 * 1024, 512} },
1553 .block_erase = spi_block_erase_20,
1554 }, {
1555 .eraseblocks = { {32 * 1024, 64} },
1556 .block_erase = spi_block_erase_52,
1557 }, {
1558 .eraseblocks = { {64 * 1024, 32} },
1559 .block_erase = spi_block_erase_d8,
1560 }, {
1561 .eraseblocks = { {2 * 1024 * 1024, 1} },
1562 .block_erase = spi_block_erase_60,
1563 }, {
1564 .eraseblocks = { {2 * 1024 * 1024, 1} },
1565 .block_erase = spi_block_erase_c7,
1566 }
1567 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001568 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001569 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001570 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001571 },
1572
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001573 {
1574 .vendor = "Atmel",
1575 .name = "AT26DF161A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001576 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001577 .manufacture_id = ATMEL_ID,
1578 .model_id = AT_26DF161A,
1579 .total_size = 2048,
1580 .page_size = 256,
1581 .tested = TEST_UNTESTED,
1582 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001583 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001584 .block_erasers =
1585 {
1586 {
1587 .eraseblocks = { {4 * 1024, 512} },
1588 .block_erase = spi_block_erase_20,
1589 }, {
1590 .eraseblocks = { {32 * 1024, 64} },
1591 .block_erase = spi_block_erase_52,
1592 }, {
1593 .eraseblocks = { {64 * 1024, 32} },
1594 .block_erase = spi_block_erase_d8,
1595 }, {
1596 .eraseblocks = { {2 * 1024 * 1024, 1} },
1597 .block_erase = spi_block_erase_60,
1598 }, {
1599 .eraseblocks = { {2 * 1024 * 1024, 1} },
1600 .block_erase = spi_block_erase_c7,
1601 }
1602 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001603 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001604 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001605 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001606 },
1607
1608 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001609 /*{
1610 .vendor = "Atmel",
1611 .name = "AT26DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001612 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001613 .manufacture_id = ATMEL_ID,
1614 .model_id = AT_26DF321,
1615 .total_size = 4096,
1616 .page_size = 256,
1617 .tested = TEST_UNTESTED,
1618 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001619 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001620 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001621 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001622 .read = spi_chip_read,
1623 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00001624
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001625 {
1626 .vendor = "Atmel",
1627 .name = "AT26F004",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001628 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001629 .manufacture_id = ATMEL_ID,
1630 .model_id = AT_26F004,
1631 .total_size = 512,
1632 .page_size = 256,
1633 .tested = TEST_UNTESTED,
1634 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001635 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001636 .block_erasers =
1637 {
1638 {
1639 .eraseblocks = { {4 * 1024, 128} },
1640 .block_erase = spi_block_erase_20,
1641 }, {
1642 .eraseblocks = { {32 * 1024, 16} },
1643 .block_erase = spi_block_erase_52,
1644 }, {
1645 .eraseblocks = { {64 * 1024, 8} },
1646 .block_erase = spi_block_erase_d8,
1647 }, {
1648 .eraseblocks = { {512 * 1024, 1} },
1649 .block_erase = spi_block_erase_60,
1650 }, {
1651 .eraseblocks = { {512 * 1024, 1} },
1652 .block_erase = spi_block_erase_c7,
1653 }
1654 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001655 .write = NULL /* Incompatible Page write */,
1656 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001657 },
1658
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001659 {
1660 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001661 .name = "AT29C512",
Urja Rannikko038a3122009-06-28 19:19:25 +00001662 .bustype = CHIP_BUSTYPE_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001663 .manufacture_id = ATMEL_ID,
1664 .model_id = AT_29C512,
1665 .total_size = 64,
1666 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00001667 .feature_bits = FEATURE_LONG_RESET,
1668 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00001669 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001670 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00001671 .block_erasers =
1672 {
1673 {
1674 .eraseblocks = { {64 * 1024, 1} },
1675 .block_erase = erase_chip_block_jedec,
1676 }
1677 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001678 .write = write_jedec,
1679 .read = read_memmapped,
1680
1681 },
1682
1683 {
1684 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00001685 .name = "AT29C010A",
Urja Rannikko161b8852009-06-05 08:47:37 +00001686 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00001687 .manufacture_id = ATMEL_ID,
1688 .model_id = AT_29C010A,
1689 .total_size = 128,
1690 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00001691 .feature_bits = FEATURE_LONG_RESET,
Michael Karcher98eff462010-03-24 22:55:56 +00001692 .tested = TEST_OK_PREW,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00001693 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001694 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00001695 .block_erasers =
1696 {
1697 {
1698 .eraseblocks = { {128 * 1024, 1} },
1699 .block_erase = erase_chip_block_jedec,
1700 }
1701 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00001702 .write = write_jedec, /* FIXME */
1703 .read = read_memmapped,
1704 },
1705
1706 {
1707 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001708 .name = "AT29C020",
Urja Rannikko161b8852009-06-05 08:47:37 +00001709 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001710 .manufacture_id = ATMEL_ID,
1711 .model_id = AT_29C020,
1712 .total_size = 256,
1713 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001714 .feature_bits = FEATURE_LONG_RESET,
1715 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001716 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00001717 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00001718 .block_erasers =
1719 {
1720 {
1721 .eraseblocks = { {256 * 1024, 1} },
1722 .block_erase = erase_chip_block_jedec,
1723 }
1724 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001725 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001726 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001727 },
1728
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001729 {
1730 .vendor = "Atmel",
1731 .name = "AT29C040A",
Urja Rannikko161b8852009-06-05 08:47:37 +00001732 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001733 .manufacture_id = ATMEL_ID,
1734 .model_id = AT_29C040A,
1735 .total_size = 512,
1736 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001737 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001738 .tested = TEST_UNTESTED,
1739 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00001740 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00001741 .block_erasers =
1742 {
1743 {
1744 .eraseblocks = { {512 * 1024, 1} },
1745 .block_erase = erase_chip_block_jedec,
1746 }
1747 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001748 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001749 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001750 },
1751
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001752 {
1753 .vendor = "Atmel",
1754 .name = "AT45CS1282",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001755 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001756 .manufacture_id = ATMEL_ID,
1757 .model_id = AT_45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001758 .total_size = 16896 /* No power of two sizes */,
1759 .page_size = 1056 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001760 .tested = TEST_BAD_READ,
1761 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001762 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001763 .write = NULL /* Incompatible Page write */,
1764 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001765 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001766
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001767 {
1768 .vendor = "Atmel",
1769 .name = "AT45DB011D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001770 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001771 .manufacture_id = ATMEL_ID,
1772 .model_id = AT_45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001773 .total_size = 128 /* Size can only be determined from status register */,
1774 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001775 .tested = TEST_BAD_READ,
1776 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001777 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001778 .write = NULL,
1779 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001780 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001781
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001782 {
1783 .vendor = "Atmel",
1784 .name = "AT45DB021D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001785 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001786 .manufacture_id = ATMEL_ID,
1787 .model_id = AT_45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001788 .total_size = 256 /* Size can only be determined from status register */,
1789 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001790 .tested = TEST_BAD_READ,
1791 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001792 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001793 .write = NULL,
1794 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001795 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001796
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001797 {
1798 .vendor = "Atmel",
1799 .name = "AT45DB041D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001800 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001801 .manufacture_id = ATMEL_ID,
1802 .model_id = AT_45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001803 .total_size = 512 /* Size can only be determined from status register */,
1804 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001805 .tested = TEST_BAD_READ,
1806 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001807 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001808 .write = NULL,
1809 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001810 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001811
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001812 {
1813 .vendor = "Atmel",
1814 .name = "AT45DB081D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001815 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001816 .manufacture_id = ATMEL_ID,
1817 .model_id = AT_45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001818 .total_size = 1024 /* Size can only be determined from status register */,
1819 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001820 .tested = TEST_BAD_READ,
1821 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001822 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001823 .write = NULL,
1824 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001825 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001826
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001827 {
1828 .vendor = "Atmel",
1829 .name = "AT45DB161D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001830 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001831 .manufacture_id = ATMEL_ID,
1832 .model_id = AT_45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001833 .total_size = 2048 /* Size can only be determined from status register */,
1834 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001835 .tested = TEST_BAD_READ,
1836 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001837 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001838 .write = NULL,
1839 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001840 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001841
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001842 {
1843 .vendor = "Atmel",
1844 .name = "AT45DB321C",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001845 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001846 .manufacture_id = ATMEL_ID,
1847 .model_id = AT_45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001848 .total_size = 4224 /* No power of two sizes */,
1849 .page_size = 528 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001850 .tested = TEST_BAD_READ,
1851 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001852 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001853 .write = NULL,
1854 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001855 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001856
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001857 {
1858 .vendor = "Atmel",
1859 .name = "AT45DB321D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001860 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001861 .manufacture_id = ATMEL_ID,
1862 .model_id = AT_45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001863 .total_size = 4096 /* Size can only be determined from status register */,
1864 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001865 .tested = TEST_BAD_READ,
1866 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001867 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001868 .write = NULL,
1869 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001870 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001871
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001872 {
1873 .vendor = "Atmel",
1874 .name = "AT45DB642D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001875 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001876 .manufacture_id = ATMEL_ID,
1877 .model_id = AT_45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001878 .total_size = 8192 /* Size can only be determined from status register */,
1879 .page_size = 1024 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001880 .tested = TEST_BAD_READ,
1881 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001882 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001883 .write = NULL,
1884 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001885 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001886
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001887 {
1888 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001889 .name = "AT49BV512",
Urja Rannikko161b8852009-06-05 08:47:37 +00001890 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001891 .manufacture_id = ATMEL_ID,
1892 .model_id = AT_49BV512,
1893 .total_size = 64,
1894 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00001895 .feature_bits = FEATURE_EITHER_RESET,
1896 .tested = TEST_UNTESTED,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001897 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001898 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001899 .block_erasers =
1900 {
1901 {
1902 .eraseblocks = { {64 * 1024, 1} },
1903 .block_erase = erase_chip_block_jedec,
1904 }
1905 },
Sean Nelson35727f72010-01-28 23:55:12 +00001906 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001907 .read = read_memmapped,
1908 },
1909
1910 {
1911 .vendor = "Atmel",
Andrew Morgan1a5eaa12010-06-07 14:10:55 +00001912 .name = "AT49F020",
1913 .bustype = CHIP_BUSTYPE_PARALLEL,
1914 .manufacture_id = ATMEL_ID,
1915 .model_id = AT_49F020,
1916 .total_size = 256,
1917 .page_size = 256,
1918 .feature_bits = FEATURE_EITHER_RESET,
1919 .tested = TEST_OK_PREW,
1920 .probe = probe_jedec,
1921 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
1922 .block_erasers =
1923 {
1924 {
1925 .eraseblocks = { {256 * 1024, 1} },
1926 .block_erase = erase_chip_block_jedec,
1927 }
1928 },
1929 .write = write_jedec_1,
1930 .read = read_memmapped,
1931 },
1932
1933 {
1934 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001935 .name = "AT49F002(N)",
Urja Rannikko161b8852009-06-05 08:47:37 +00001936 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001937 .manufacture_id = ATMEL_ID,
1938 .model_id = AT_49F002N,
1939 .total_size = 256,
1940 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001941 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001942 .tested = TEST_UNTESTED,
1943 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001944 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001945 .block_erasers =
1946 {
1947 {
1948 .eraseblocks = {
1949 {16 * 1024, 1},
1950 {8 * 1024, 2},
1951 {96 * 1024, 1},
1952 {128 * 1024, 1},
1953 },
1954 .block_erase = erase_sector_jedec,
1955 }, {
1956 .eraseblocks = { {256 * 1024, 1} },
1957 .block_erase = erase_chip_block_jedec,
1958 }
1959 },
Sean Nelson35727f72010-01-28 23:55:12 +00001960 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001961 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001962 },
1963
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001964 {
1965 .vendor = "Atmel",
1966 .name = "AT49F002(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00001967 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001968 .manufacture_id = ATMEL_ID,
1969 .model_id = AT_49F002NT,
1970 .total_size = 256,
1971 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001972 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00001973 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001974 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001975 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001976 .block_erasers =
1977 {
1978 {
1979 .eraseblocks = {
1980 {128 * 1024, 1},
1981 {96 * 1024, 1},
1982 {8 * 1024, 2},
1983 {16 * 1024, 1},
1984 },
1985 .block_erase = erase_sector_jedec,
1986 }, {
1987 .eraseblocks = { {256 * 1024, 1} },
1988 .block_erase = erase_chip_block_jedec,
1989 }
1990 },
Sean Nelson35727f72010-01-28 23:55:12 +00001991 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001992 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001993 },
1994
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00001995 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001996 .vendor = "EMST",
1997 .name = "F49B002UA",
Urja Rannikko161b8852009-06-05 08:47:37 +00001998 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001999 .manufacture_id = EMST_ID,
2000 .model_id = EMST_F49B002UA,
2001 .total_size = 256,
2002 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00002003 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002004 .tested = TEST_UNTESTED,
2005 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002006 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002007 .block_erasers =
2008 {
2009 {
2010 .eraseblocks = {
2011 {128 * 1024, 1},
2012 {96 * 1024, 1},
2013 {8 * 1024, 2},
2014 {16 * 1024, 1},
2015 },
2016 .block_erase = erase_sector_jedec,
2017 }, {
2018 .eraseblocks = { {256 * 1024, 1} },
2019 .block_erase = erase_chip_block_jedec,
2020 }
2021 },
Sean Nelson35727f72010-01-28 23:55:12 +00002022 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002023 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002024 },
2025
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002026 {
Michael Karcher80a59ea2010-06-19 22:06:35 +00002027 .vendor = "EMST",
2028 .name = "F25L008A",
2029 .bustype = CHIP_BUSTYPE_SPI,
2030 .manufacture_id = EMST_ID,
2031 .model_id = EMST_F25L008A,
2032 .total_size = 1024,
2033 .page_size = 256,
2034 .tested = TEST_UNTESTED,
2035 .probe = probe_spi_rdid,
2036 .probe_timing = TIMING_ZERO,
2037 .block_erasers =
2038 {
2039 {
2040 .eraseblocks = { {4 * 1024, 256} },
2041 .block_erase = spi_block_erase_20,
2042 }, {
2043 .eraseblocks = { {64 * 1024, 16} },
2044 .block_erase = spi_block_erase_d8,
2045 }, {
2046 .eraseblocks = { {1024 * 1024, 1} },
2047 .block_erase = spi_block_erase_60,
2048 }, {
2049 .eraseblocks = { {1024 * 1024, 1} },
2050 .block_erase = spi_block_erase_c7,
2051 }
2052 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002053 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00002054 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00002055 .read = spi_chip_read,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002056 },
2057
2058 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002059 .vendor = "Eon",
2060 .name = "EN25B05",
2061 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002062 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002063 .model_id = EN_25B05,
2064 .total_size = 64,
2065 .page_size = 256,
2066 .tested = TEST_UNTESTED,
2067 .probe = probe_spi_rdid,
2068 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002069 .block_erasers =
2070 {
2071 {
2072 .eraseblocks = {
2073 {4 * 1024, 2},
2074 {8 * 1024, 1},
2075 {16 * 1024, 1},
2076 {32 * 1024, 1},
2077 },
2078 .block_erase = spi_block_erase_d8,
2079 }, {
2080 .eraseblocks = { {64 * 1024, 1} },
2081 .block_erase = spi_block_erase_c7,
2082 }
2083 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002084 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002085 .write = spi_chip_write_256,
2086 .read = spi_chip_read,
2087 },
2088
2089 {
2090 .vendor = "Eon",
2091 .name = "EN25B05T",
2092 .bustype = CHIP_BUSTYPE_SPI,
2093 .manufacture_id = EON_ID_NOPREFIX,
2094 .model_id = EN_25B05,
2095 .total_size = 64,
2096 .page_size = 256,
2097 .tested = TEST_UNTESTED,
2098 .probe = probe_spi_rdid,
2099 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002100 .block_erasers =
2101 {
2102 {
2103 .eraseblocks = {
2104 {32 * 1024, 1},
2105 {16 * 1024, 1},
2106 {8 * 1024, 1},
2107 {4 * 1024, 2},
2108 },
2109 .block_erase = spi_block_erase_d8,
2110 }, {
2111 .eraseblocks = { {64 * 1024, 1} },
2112 .block_erase = spi_block_erase_c7,
2113 }
2114 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002115 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002116 .write = spi_chip_write_256,
2117 .read = spi_chip_read,
2118 },
2119
2120 {
2121 .vendor = "Eon",
2122 .name = "EN25B10",
2123 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002124 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002125 .model_id = EN_25B10,
2126 .total_size = 128,
2127 .page_size = 256,
2128 .tested = TEST_UNTESTED,
2129 .probe = probe_spi_rdid,
2130 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002131 .block_erasers =
2132 {
2133 {
2134 .eraseblocks = {
2135 {4 * 1024, 2},
2136 {8 * 1024, 1},
2137 {16 * 1024, 1},
2138 {32 * 1024, 3},
2139 },
2140 .block_erase = spi_block_erase_d8,
2141 }, {
2142 .eraseblocks = { {128 * 1024, 1} },
2143 .block_erase = spi_block_erase_c7,
2144 }
2145 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002146 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002147 .write = spi_chip_write_256,
2148 .read = spi_chip_read,
2149 },
2150
2151 {
2152 .vendor = "Eon",
2153 .name = "EN25B10T",
2154 .bustype = CHIP_BUSTYPE_SPI,
2155 .manufacture_id = EON_ID_NOPREFIX,
2156 .model_id = EN_25B10,
2157 .total_size = 128,
2158 .page_size = 256,
2159 .tested = TEST_UNTESTED,
2160 .probe = probe_spi_rdid,
2161 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002162 .block_erasers =
2163 {
2164 {
2165 .eraseblocks = {
2166 {32 * 1024, 3},
2167 {16 * 1024, 1},
2168 {8 * 1024, 1},
2169 {4 * 1024, 2},
2170 },
2171 .block_erase = spi_block_erase_d8,
2172 }, {
2173 .eraseblocks = { {128 * 1024, 1} },
2174 .block_erase = spi_block_erase_c7,
2175 }
2176 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002177 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002178 .write = spi_chip_write_256,
2179 .read = spi_chip_read,
2180 },
2181
2182 {
2183 .vendor = "Eon",
2184 .name = "EN25B20",
2185 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002186 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002187 .model_id = EN_25B20,
2188 .total_size = 256,
2189 .page_size = 256,
2190 .tested = TEST_UNTESTED,
2191 .probe = probe_spi_rdid,
2192 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002193 .block_erasers =
2194 {
2195 {
2196 .eraseblocks = {
2197 {4 * 1024, 2},
2198 {8 * 1024, 1},
2199 {16 * 1024, 1},
2200 {32 * 1024, 1},
2201 {64 * 1024, 3}
2202 },
2203 .block_erase = spi_block_erase_d8,
2204 }, {
2205 .eraseblocks = { {256 * 1024, 1} },
2206 .block_erase = spi_block_erase_c7,
2207 }
2208 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002209 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002210 .write = spi_chip_write_256,
2211 .read = spi_chip_read,
2212 },
2213
2214 {
2215 .vendor = "Eon",
2216 .name = "EN25B20T",
2217 .bustype = CHIP_BUSTYPE_SPI,
2218 .manufacture_id = EON_ID_NOPREFIX,
2219 .model_id = EN_25B20,
2220 .total_size = 256,
2221 .page_size = 256,
2222 .tested = TEST_UNTESTED,
2223 .probe = probe_spi_rdid,
2224 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002225 .block_erasers =
2226 {
2227 {
2228 .eraseblocks = {
2229 {64 * 1024, 3},
2230 {32 * 1024, 1},
2231 {16 * 1024, 1},
2232 {8 * 1024, 1},
2233 {4 * 1024, 2},
2234 },
2235 .block_erase = spi_block_erase_d8,
2236 }, {
2237 .eraseblocks = { {256 * 1024, 1} },
2238 .block_erase = spi_block_erase_c7,
2239 }
2240 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002241 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002242 .write = spi_chip_write_256,
2243 .read = spi_chip_read,
2244 },
2245
2246 {
2247 .vendor = "Eon",
2248 .name = "EN25B40",
2249 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002250 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002251 .model_id = EN_25B40,
2252 .total_size = 512,
2253 .page_size = 256,
2254 .tested = TEST_UNTESTED,
2255 .probe = probe_spi_rdid,
2256 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002257 .block_erasers =
2258 {
2259 {
2260 .eraseblocks = {
2261 {4 * 1024, 2},
2262 {8 * 1024, 1},
2263 {16 * 1024, 1},
2264 {32 * 1024, 1},
2265 {64 * 1024, 7}
2266 },
2267 .block_erase = spi_block_erase_d8,
2268 }, {
2269 .eraseblocks = { {512 * 1024, 1} },
2270 .block_erase = spi_block_erase_c7,
2271 }
2272 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002273 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002274 .write = spi_chip_write_256,
2275 .read = spi_chip_read,
2276 },
2277
2278 {
2279 .vendor = "Eon",
2280 .name = "EN25B40T",
2281 .bustype = CHIP_BUSTYPE_SPI,
2282 .manufacture_id = EON_ID_NOPREFIX,
2283 .model_id = EN_25B40,
2284 .total_size = 512,
2285 .page_size = 256,
2286 .tested = TEST_UNTESTED,
2287 .probe = probe_spi_rdid,
2288 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002289 .block_erasers =
2290 {
2291 {
2292 .eraseblocks = {
2293 {64 * 1024, 7},
2294 {32 * 1024, 1},
2295 {16 * 1024, 1},
2296 {8 * 1024, 1},
2297 {4 * 1024, 2},
2298 },
2299 .block_erase = spi_block_erase_d8,
2300 }, {
2301 .eraseblocks = { {512 * 1024, 1} },
2302 .block_erase = spi_block_erase_c7,
2303 }
2304 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002305 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002306 .write = spi_chip_write_256,
2307 .read = spi_chip_read,
2308 },
2309
2310 {
2311 .vendor = "Eon",
2312 .name = "EN25B80",
2313 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002314 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002315 .model_id = EN_25B80,
2316 .total_size = 1024,
2317 .page_size = 256,
2318 .tested = TEST_UNTESTED,
2319 .probe = probe_spi_rdid,
2320 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002321 .block_erasers =
2322 {
2323 {
2324 .eraseblocks = {
2325 {4 * 1024, 2},
2326 {8 * 1024, 1},
2327 {16 * 1024, 1},
2328 {32 * 1024, 1},
2329 {64 * 1024, 15}
2330 },
2331 .block_erase = spi_block_erase_d8,
2332 }, {
2333 .eraseblocks = { {1024 * 1024, 1} },
2334 .block_erase = spi_block_erase_c7,
2335 }
2336 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002337 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002338 .write = spi_chip_write_256,
2339 .read = spi_chip_read,
2340 },
2341
2342 {
2343 .vendor = "Eon",
2344 .name = "EN25B80T",
2345 .bustype = CHIP_BUSTYPE_SPI,
2346 .manufacture_id = EON_ID_NOPREFIX,
2347 .model_id = EN_25B80,
2348 .total_size = 1024,
2349 .page_size = 256,
2350 .tested = TEST_UNTESTED,
2351 .probe = probe_spi_rdid,
2352 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002353 .block_erasers =
2354 {
2355 {
2356 .eraseblocks = {
2357 {64 * 1024, 15},
2358 {32 * 1024, 1},
2359 {16 * 1024, 1},
2360 {8 * 1024, 1},
2361 {4 * 1024, 2},
2362 },
2363 .block_erase = spi_block_erase_d8,
2364 }, {
2365 .eraseblocks = { {1024 * 1024, 1} },
2366 .block_erase = spi_block_erase_c7,
2367 }
2368 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002369 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002370 .write = spi_chip_write_256,
2371 .read = spi_chip_read,
2372 },
2373
2374 {
2375 .vendor = "Eon",
2376 .name = "EN25B16",
2377 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002378 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002379 .model_id = EN_25B16,
2380 .total_size = 2048,
2381 .page_size = 256,
2382 .tested = TEST_UNTESTED,
2383 .probe = probe_spi_rdid,
2384 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002385 .block_erasers =
2386 {
2387 {
2388 .eraseblocks = {
2389 {4 * 1024, 2},
2390 {8 * 1024, 1},
2391 {16 * 1024, 1},
2392 {32 * 1024, 1},
2393 {64 * 1024, 31},
2394 },
2395 .block_erase = spi_block_erase_d8,
2396 }, {
2397 .eraseblocks = { {2 * 1024 * 1024, 1} },
2398 .block_erase = spi_block_erase_c7,
2399 }
2400 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002401 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002402 .write = spi_chip_write_256,
2403 .read = spi_chip_read,
2404 },
2405
2406 {
2407 .vendor = "Eon",
2408 .name = "EN25B16T",
2409 .bustype = CHIP_BUSTYPE_SPI,
2410 .manufacture_id = EON_ID_NOPREFIX,
2411 .model_id = EN_25B16,
2412 .total_size = 2048,
2413 .page_size = 256,
2414 .tested = TEST_UNTESTED,
2415 .probe = probe_spi_rdid,
2416 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002417 .block_erasers =
2418 {
2419 {
2420 .eraseblocks = {
2421 {64 * 1024, 31},
2422 {32 * 1024, 1},
2423 {16 * 1024, 1},
2424 {8 * 1024, 1},
2425 {4 * 1024, 2},
2426 },
2427 .block_erase = spi_block_erase_d8,
2428 }, {
2429 .eraseblocks = { {2 * 1024 * 1024, 1} },
2430 .block_erase = spi_block_erase_c7,
2431 }
2432 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002433 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002434 .write = spi_chip_write_256,
2435 .read = spi_chip_read,
2436 },
2437
2438 {
2439 .vendor = "Eon",
2440 .name = "EN25B32",
2441 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002442 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002443 .model_id = EN_25B32,
2444 .total_size = 4096,
2445 .page_size = 256,
2446 .tested = TEST_UNTESTED,
2447 .probe = probe_spi_rdid,
2448 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002449 .block_erasers =
2450 {
2451 {
2452 .eraseblocks = {
2453 {4 * 1024, 2},
2454 {8 * 1024, 1},
2455 {16 * 1024, 1},
2456 {32 * 1024, 1},
2457 {64 * 1024, 63},
2458 },
2459 .block_erase = spi_block_erase_d8,
2460 }, {
2461 .eraseblocks = { {4 * 1024 * 1024, 1} },
2462 .block_erase = spi_block_erase_c7,
2463 }
2464 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002465 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002466 .write = spi_chip_write_256,
2467 .read = spi_chip_read,
2468 },
2469
2470 {
2471 .vendor = "Eon",
2472 .name = "EN25B32T",
2473 .bustype = CHIP_BUSTYPE_SPI,
2474 .manufacture_id = EON_ID_NOPREFIX,
2475 .model_id = EN_25B32,
2476 .total_size = 4096,
2477 .page_size = 256,
2478 .tested = TEST_UNTESTED,
2479 .probe = probe_spi_rdid,
2480 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002481 .block_erasers =
2482 {
2483 {
2484 .eraseblocks = {
2485 {64 * 1024, 63},
2486 {32 * 1024, 1},
2487 {16 * 1024, 1},
2488 {8 * 1024, 1},
2489 {4 * 1024, 2},
2490 },
2491 .block_erase = spi_block_erase_d8,
2492 }, {
2493 .eraseblocks = { {4 * 1024 * 1024, 1} },
2494 .block_erase = spi_block_erase_c7,
2495 }
2496 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002497 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002498 .write = spi_chip_write_256,
2499 .read = spi_chip_read,
2500 },
2501
2502 {
2503 .vendor = "Eon",
2504 .name = "EN25B64",
2505 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002506 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002507 .model_id = EN_25B64,
2508 .total_size = 8192,
2509 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002510 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002511 .tested = TEST_UNTESTED,
2512 .probe = probe_spi_rdid,
2513 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002514 .block_erasers =
2515 {
2516 {
2517 .eraseblocks = {
2518 {4 * 1024, 2},
2519 {8 * 1024, 1},
2520 {16 * 1024, 1},
2521 {32 * 1024, 1},
2522 {64 * 1024, 127},
2523 },
2524 .block_erase = spi_block_erase_d8,
2525 }, {
2526 .eraseblocks = { {8 * 1024 * 1024, 1} },
2527 .block_erase = spi_block_erase_c7,
2528 }
2529 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002530 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002531 .write = spi_chip_write_256,
2532 .read = spi_chip_read,
2533 },
2534
2535 {
2536 .vendor = "Eon",
2537 .name = "EN25B64T",
2538 .bustype = CHIP_BUSTYPE_SPI,
2539 .manufacture_id = EON_ID_NOPREFIX,
2540 .model_id = EN_25B64,
2541 .total_size = 8192,
2542 .page_size = 256,
2543 .tested = TEST_UNTESTED,
2544 .probe = probe_spi_rdid,
2545 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002546 .block_erasers =
2547 {
2548 {
2549 .eraseblocks = {
2550 {64 * 1024, 127},
2551 {32 * 1024, 1},
2552 {16 * 1024, 1},
2553 {8 * 1024, 1},
2554 {4 * 1024, 2},
2555 },
2556 .block_erase = spi_block_erase_d8,
2557 }, {
2558 .eraseblocks = { {8 * 1024 * 1024, 1} },
2559 .block_erase = spi_block_erase_c7,
2560 }
2561 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002562 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002563 .write = spi_chip_write_256,
2564 .read = spi_chip_read,
2565 },
2566
2567 {
2568 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002569 .name = "EN25D16",
2570 .bustype = CHIP_BUSTYPE_SPI,
2571 .manufacture_id = EON_ID_NOPREFIX,
2572 .model_id = EN_25D16,
2573 .total_size = 2048,
2574 .page_size = 256,
2575 .tested = TEST_UNTESTED,
2576 .probe = probe_spi_rdid,
2577 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002578 .block_erasers =
2579 {
2580 {
2581 .eraseblocks = { {4 * 1024, 512} },
2582 .block_erase = spi_block_erase_20,
2583 }, {
2584 .eraseblocks = { {64 * 1024, 32} },
2585 .block_erase = spi_block_erase_d8,
2586 }, {
2587 .eraseblocks = { {64 * 1024, 32} },
2588 .block_erase = spi_block_erase_52,
2589 }, {
2590 .eraseblocks = { {2 * 1024 * 1024, 1} },
2591 .block_erase = spi_block_erase_60,
2592 }, {
2593 .eraseblocks = { {2 * 1024 * 1024, 1} },
2594 .block_erase = spi_block_erase_c7,
2595 }
2596 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002597 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002598 .write = spi_chip_write_256,
2599 .read = spi_chip_read,
2600 },
2601
2602 {
2603 .vendor = "Eon",
2604 .name = "EN25F05",
2605 .bustype = CHIP_BUSTYPE_SPI,
2606 .manufacture_id = EON_ID_NOPREFIX,
2607 .model_id = EN_25F05,
2608 .total_size = 64,
2609 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002610 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002611 .tested = TEST_UNTESTED,
2612 .probe = probe_spi_rdid,
2613 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002614 .block_erasers =
2615 {
2616 {
2617 .eraseblocks = { {4 * 1024, 16} },
2618 .block_erase = spi_block_erase_20,
2619 }, {
2620 .eraseblocks = { {32 * 1024, 2} },
2621 .block_erase = spi_block_erase_d8,
2622 }, {
2623 .eraseblocks = { {32 * 1024, 2} },
2624 .block_erase = spi_block_erase_52,
2625 }, {
2626 .eraseblocks = { {64 * 1024, 1} },
2627 .block_erase = spi_block_erase_60,
2628 }, {
2629 .eraseblocks = { {64 * 1024, 1} },
2630 .block_erase = spi_block_erase_c7,
2631 }
2632 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002633 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002634 .write = spi_chip_write_256,
2635 .read = spi_chip_read,
2636 },
2637
2638 {
2639 .vendor = "Eon",
2640 .name = "EN25F10",
2641 .bustype = CHIP_BUSTYPE_SPI,
2642 .manufacture_id = EON_ID_NOPREFIX,
2643 .model_id = EN_25F10,
2644 .total_size = 128,
2645 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002646 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002647 .tested = TEST_UNTESTED,
2648 .probe = probe_spi_rdid,
2649 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002650 .block_erasers =
2651 {
2652 {
2653 .eraseblocks = { {4 * 1024, 32} },
2654 .block_erase = spi_block_erase_20,
2655 }, {
2656 .eraseblocks = { {32 * 1024, 4} },
2657 .block_erase = spi_block_erase_d8,
2658 }, {
2659 .eraseblocks = { {32 * 1024, 4} },
2660 .block_erase = spi_block_erase_52,
2661 }, {
2662 .eraseblocks = { {128 * 1024, 1} },
2663 .block_erase = spi_block_erase_60,
2664 }, {
2665 .eraseblocks = { {128 * 1024, 1} },
2666 .block_erase = spi_block_erase_c7,
2667 }
2668 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002669 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002670 .write = spi_chip_write_256,
2671 .read = spi_chip_read,
2672 },
2673
2674 {
2675 .vendor = "Eon",
2676 .name = "EN25F20",
2677 .bustype = CHIP_BUSTYPE_SPI,
2678 .manufacture_id = EON_ID_NOPREFIX,
2679 .model_id = EN_25F20,
2680 .total_size = 256,
2681 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002682 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002683 .tested = TEST_UNTESTED,
2684 .probe = probe_spi_rdid,
2685 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002686 .block_erasers =
2687 {
2688 {
2689 .eraseblocks = { {4 * 1024, 64} },
2690 .block_erase = spi_block_erase_20,
2691 }, {
2692 .eraseblocks = { {64 * 1024, 4} },
2693 .block_erase = spi_block_erase_d8,
2694 }, {
2695 .eraseblocks = { {64 * 1024, 4} },
2696 .block_erase = spi_block_erase_52,
2697 }, {
2698 .eraseblocks = { {256 * 1024, 1} },
2699 .block_erase = spi_block_erase_60,
2700 }, {
2701 .eraseblocks = { {256 * 1024, 1} },
2702 .block_erase = spi_block_erase_c7,
2703 }
2704 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002705 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002706 .write = spi_chip_write_256,
2707 .read = spi_chip_read,
2708 },
2709
2710 {
2711 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002712 .name = "EN25F40",
2713 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002714 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002715 .model_id = EN_25F40,
2716 .total_size = 512,
2717 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002718 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00002719 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002720 .probe = probe_spi_rdid,
2721 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002722 .block_erasers =
2723 {
2724 {
Sean Nelson54596372010-01-09 05:30:14 +00002725 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00002726 .block_erase = spi_block_erase_20,
2727 }, {
Sean Nelson54596372010-01-09 05:30:14 +00002728 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00002729 .block_erase = spi_block_erase_d8,
2730 }, {
Sean Nelson54596372010-01-09 05:30:14 +00002731 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00002732 .block_erase = spi_block_erase_60,
2733 }, {
Sean Nelson54596372010-01-09 05:30:14 +00002734 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00002735 .block_erase = spi_block_erase_c7,
2736 },
2737 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002738 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002739 .write = spi_chip_write_256,
2740 .read = spi_chip_read,
2741 },
2742
2743 {
2744 .vendor = "Eon",
2745 .name = "EN25F80",
2746 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002747 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002748 .model_id = EN_25F80,
2749 .total_size = 1024,
2750 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002751 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002752 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002753 .probe = probe_spi_rdid,
2754 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002755 .block_erasers =
2756 {
2757 {
2758 .eraseblocks = { {4 * 1024, 256} },
2759 .block_erase = spi_block_erase_20,
2760 }, {
2761 .eraseblocks = { {64 * 1024, 16} },
2762 .block_erase = spi_block_erase_d8,
2763 }, {
2764 .eraseblocks = { {1024 * 1024, 1} },
2765 .block_erase = spi_block_erase_60,
2766 }, {
2767 .eraseblocks = { {1024 * 1024, 1} },
2768 .block_erase = spi_block_erase_c7,
2769 }
2770 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002771 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002772 .write = spi_chip_write_256,
2773 .read = spi_chip_read,
2774 },
2775
2776 {
2777 .vendor = "Eon",
2778 .name = "EN25F16",
2779 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002780 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002781 .model_id = EN_25F16,
2782 .total_size = 2048,
2783 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002784 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002785 .tested = TEST_UNTESTED,
2786 .probe = probe_spi_rdid,
2787 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002788 .block_erasers =
2789 {
2790 {
2791 .eraseblocks = { {4 * 1024, 512} },
2792 .block_erase = spi_block_erase_20,
2793 }, {
2794 .eraseblocks = { {64 * 1024, 32} },
2795 .block_erase = spi_block_erase_d8,
2796 }, {
2797 .eraseblocks = { {2 * 1024 * 1024, 1} },
2798 .block_erase = spi_block_erase_60,
2799 }, {
2800 .eraseblocks = { {2 * 1024 * 1024, 1} },
2801 .block_erase = spi_block_erase_c7,
2802 }
2803 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002804 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002805 .write = spi_chip_write_256,
2806 .read = spi_chip_read,
2807 },
2808
2809 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002810 .vendor = "Eon",
2811 .name = "EN25F32",
2812 .bustype = CHIP_BUSTYPE_SPI,
2813 .manufacture_id = EON_ID_NOPREFIX,
2814 .model_id = EN_25F32,
2815 .total_size = 4096,
2816 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00002817 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002818 .tested = TEST_UNTESTED,
2819 .probe = probe_spi_rdid,
2820 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002821 .block_erasers =
2822 {
2823 {
2824 .eraseblocks = { {4 * 1024, 1024} },
2825 .block_erase = spi_block_erase_20,
2826 }, {
2827 .eraseblocks = { {64 * 1024, 64} },
2828 .block_erase = spi_block_erase_d8,
2829 }, {
2830 .eraseblocks = { {4 * 1024 * 1024, 1} },
2831 .block_erase = spi_block_erase_60,
2832 }, {
2833 .eraseblocks = { {4 * 1024 * 1024, 1} },
2834 .block_erase = spi_block_erase_c7,
2835 }
2836 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002837 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002838 .write = spi_chip_write_256,
2839 .read = spi_chip_read,
2840 },
2841
2842 {
Russ Dill3cd5a122010-03-05 08:44:11 +00002843 .vendor = "Eon",
2844 .name = "EN29F010",
2845 .bustype = CHIP_BUSTYPE_PARALLEL,
2846 .manufacture_id = EON_ID,
2847 .model_id = EN_29F010,
2848 .total_size = 128,
2849 .page_size = 128,
2850 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
2851 .tested = TEST_OK_PREW,
2852 .probe = probe_jedec,
2853 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2854 .block_erasers =
2855 {
2856 {
2857 .eraseblocks = { {16 * 1024, 8} },
2858 .block_erase = erase_sector_jedec,
2859 },
2860 {
2861 .eraseblocks = { {128 * 1024, 1} },
2862 .block_erase = erase_chip_block_jedec,
2863 },
2864 },
2865 .write = write_jedec_1,
2866 .read = read_memmapped,
2867 },
2868
2869 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00002870 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002871 .name = "EN29F002(A)(N)B",
Urja Rannikko161b8852009-06-05 08:47:37 +00002872 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002873 .manufacture_id = EON_ID,
2874 .model_id = EN_29F002B,
2875 .total_size = 256,
2876 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002877 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Michael Karcherb90c2212010-03-24 22:56:14 +00002878 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002879 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002880 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002881 .block_erasers =
2882 {
2883 {
2884 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002885 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002886 {8 * 1024, 2},
2887 {32 * 1024, 1},
2888 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002889 },
2890 .block_erase = erase_sector_jedec,
2891 }, {
2892 .eraseblocks = { {256 * 1024, 1} },
2893 .block_erase = erase_chip_block_jedec,
2894 },
2895 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002896 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002897 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002898 },
2899
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002900 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00002901 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002902 .name = "EN29F002(A)(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00002903 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002904 .manufacture_id = EON_ID,
2905 .model_id = EN_29F002T,
2906 .total_size = 256,
2907 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002908 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00002909 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002910 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002911 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002912 .block_erasers =
2913 {
2914 {
2915 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002916 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002917 {32 * 1024, 1},
2918 {8 * 1024, 2},
2919 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002920 },
2921 .block_erase = erase_sector_jedec,
2922 }, {
2923 .eraseblocks = { {256 * 1024, 1} },
2924 .block_erase = erase_chip_block_jedec,
2925 },
2926 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002927 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002928 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002929 },
2930
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002931 {
2932 .vendor = "Fujitsu",
2933 .name = "MBM29F004BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002934 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002935 .manufacture_id = FUJITSU_ID,
2936 .model_id = MBM29F004BC,
2937 .total_size = 512,
2938 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002939 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002940 .tested = TEST_UNTESTED,
2941 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002942 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002943 .block_erasers =
2944 {
2945 {
2946 .eraseblocks = {
2947 {16 * 1024, 1},
2948 {8 * 1024, 2},
2949 {32 * 1024, 1},
2950 {64 * 1024, 7},
2951 },
Sean Nelson35727f72010-01-28 23:55:12 +00002952 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002953 }, {
2954 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002955 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002956 },
2957 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002958 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002959 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002960 },
2961
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002962 {
2963 .vendor = "Fujitsu",
2964 .name = "MBM29F004TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002965 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002966 .manufacture_id = FUJITSU_ID,
2967 .model_id = MBM29F004TC,
2968 .total_size = 512,
2969 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002970 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002971 .tested = TEST_UNTESTED,
2972 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002973 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002974 .block_erasers =
2975 {
2976 {
2977 .eraseblocks = {
2978 {64 * 1024, 7},
2979 {32 * 1024, 1},
2980 {8 * 1024, 2},
2981 {16 * 1024, 1},
2982 },
Sean Nelson35727f72010-01-28 23:55:12 +00002983 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002984 }, {
2985 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002986 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002987 },
2988 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002989 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002990 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002991 },
2992
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002993 {
Sean Nelson35727f72010-01-28 23:55:12 +00002994 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002995 .vendor = "Fujitsu",
2996 .name = "MBM29F400BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002997 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002998 .manufacture_id = FUJITSU_ID,
2999 .model_id = MBM29F400BC,
3000 .total_size = 512,
3001 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003002 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00003003 .tested = TEST_BAD_WRITE, /* Implicit eraseblock layout in write_m29f400bt is broken. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003004 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003005 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003006 .block_erasers =
3007 {
3008 {
3009 .eraseblocks = {
3010 {16 * 1024, 1},
3011 {8 * 1024, 2},
3012 {32 * 1024, 1},
3013 {64 * 1024, 7},
3014 },
3015 .block_erase = block_erase_m29f400bt,
3016 }, {
3017 .eraseblocks = { {512 * 1024, 1} },
3018 .block_erase = block_erase_chip_m29f400bt,
3019 },
3020 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00003021 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003022 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003023 },
3024
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003025 {
3026 .vendor = "Fujitsu",
3027 .name = "MBM29F400TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00003028 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003029 .manufacture_id = FUJITSU_ID,
3030 .model_id = MBM29F400TC,
3031 .total_size = 512,
3032 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003033 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003034 .tested = TEST_UNTESTED,
3035 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003036 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003037 .block_erasers =
3038 {
3039 {
3040 .eraseblocks = {
3041 {64 * 1024, 7},
3042 {32 * 1024, 1},
3043 {8 * 1024, 2},
3044 {16 * 1024, 1},
3045 },
3046 .block_erase = block_erase_m29f400bt,
3047 }, {
3048 .eraseblocks = { {512 * 1024, 1} },
3049 .block_erase = block_erase_chip_m29f400bt,
3050 },
3051 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00003052 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003053 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003054 },
3055
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003056 {
David Borgc96a8bd2010-06-21 16:12:22 +00003057 .vendor = "Hyundai",
3058 .name = "HY29F002T",
3059 .bustype = CHIP_BUSTYPE_PARALLEL,
3060 .manufacture_id = HYUNDAI_ID,
3061 .model_id = HY_29F002T,
3062 .total_size = 256,
3063 .page_size = 256 * 1024,
3064 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
3065 .tested = TEST_OK_PREW,
3066 .probe = probe_jedec,
3067 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3068 .block_erasers =
3069 {
3070 {
3071 .eraseblocks = {
3072 {64 * 1024, 3},
3073 {32 * 1024, 1},
3074 {8 * 1024, 2},
3075 {16 * 1024, 1},
3076 },
3077 .block_erase = erase_sector_jedec,
3078 }, {
3079 .eraseblocks = { {256 * 1024, 1} },
3080 .block_erase = erase_chip_block_jedec,
3081 },
3082 },
3083 .write = write_jedec_1,
3084 .read = read_memmapped,
3085 },
3086
3087 {
3088 .vendor = "Hyundai",
3089 .name = "HY29F002B",
3090 .bustype = CHIP_BUSTYPE_PARALLEL,
3091 .manufacture_id = HYUNDAI_ID,
3092 .model_id = HY_29F002B,
3093 .total_size = 256,
3094 .page_size = 256 * 1024,
3095 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
3096 .tested = TEST_UNTESTED,
3097 .probe = probe_jedec,
3098 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3099 .block_erasers =
3100 {
3101 {
3102 .eraseblocks = {
3103 {16 * 1024, 1},
3104 {8 * 1024, 2},
3105 {32 * 1024, 1},
3106 {64 * 1024, 3},
3107 },
3108 .block_erase = erase_sector_jedec,
3109 }, {
3110 .eraseblocks = { {256 * 1024, 1} },
3111 .block_erase = erase_chip_block_jedec,
3112 },
3113 },
3114 .write = write_jedec_1,
3115 .read = read_memmapped,
3116 },
3117
3118 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003119 .vendor = "Intel",
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003120 .name = "28F001BX-B",
Urja Rannikko161b8852009-06-05 08:47:37 +00003121 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003122 .manufacture_id = INTEL_ID,
3123 .model_id = P28F001BXB,
3124 .total_size = 128,
3125 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00003126 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003127 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003128 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00003129 .block_erasers =
3130 {
3131 {
3132 .eraseblocks = {
3133 {8 * 1024, 1},
3134 {4 * 1024, 2},
3135 {112 * 1024, 1},
3136 },
Sean Nelson28accc22010-03-19 18:47:06 +00003137 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00003138 },
3139 },
Sean Nelsondee4a832010-03-22 04:39:31 +00003140 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003141 .read = read_memmapped,
3142 },
3143
3144 {
3145 .vendor = "Intel",
3146 .name = "28F001BX-T",
Urja Rannikko161b8852009-06-05 08:47:37 +00003147 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003148 .manufacture_id = INTEL_ID,
3149 .model_id = P28F001BXT,
3150 .total_size = 128,
3151 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sean Nelsondee4a832010-03-22 04:39:31 +00003152 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003153 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003154 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00003155 .block_erasers =
3156 {
3157 {
3158 .eraseblocks = {
3159 {112 * 1024, 1},
3160 {4 * 1024, 2},
3161 {8 * 1024, 1},
3162 },
Sean Nelson28accc22010-03-19 18:47:06 +00003163 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00003164 },
3165 },
Sean Nelsondee4a832010-03-22 04:39:31 +00003166 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00003167 .read = read_memmapped,
3168 },
3169
3170 {
3171 .vendor = "Intel",
Joshua Roysd97c0e02010-07-22 15:20:43 +00003172 .name = "28F002BC-T",
3173 .bustype = CHIP_BUSTYPE_PARALLEL,
3174 .manufacture_id = INTEL_ID,
3175 .model_id = P28F002BC,
3176 .total_size = 256,
3177 .page_size = 256 * 1024,
3178 .tested = TEST_UNTESTED,
3179 .probe = probe_82802ab,
3180 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3181 .block_erasers =
3182 {
3183 {
3184 .eraseblocks = {
3185 {128 * 1024, 1},
3186 {96 * 1024, 1},
3187 {8 * 1024, 2},
3188 {16 * 1024, 1},
3189 },
3190 .block_erase = erase_block_82802ab,
3191 },
3192 },
3193 .write = write_82802ab,
3194 .read = read_memmapped,
3195 },
3196
3197 {
3198 .vendor = "Intel",
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00003199 .name = "28F004S5",
3200 .bustype = CHIP_BUSTYPE_PARALLEL,
3201 .manufacture_id = INTEL_ID,
3202 .model_id = E_28F004S5,
3203 .total_size = 512,
3204 .page_size = 256,
3205 .tested = TEST_UNTESTED,
3206 .probe = probe_82802ab,
3207 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00003208 .block_erasers =
3209 {
3210 {
3211 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00003212 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00003213 },
3214 },
Sean Nelsondee4a832010-03-22 04:39:31 +00003215 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00003216 .write = write_82802ab,
3217 .read = read_memmapped,
3218 },
3219
3220 {
3221 .vendor = "Intel",
Michael Karcherad0010a2010-04-03 10:27:08 +00003222 .name = "28F004BV/BE-B",
3223 .bustype = CHIP_BUSTYPE_PARALLEL,
3224 .manufacture_id = INTEL_ID,
3225 .model_id = P28F004BB,
3226 .total_size = 512,
3227 .page_size = 128 * 1024, /* maximal block size */
3228 .tested = TEST_UNTESTED,
3229 .probe = probe_82802ab,
3230 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3231 .block_erasers =
3232 {
3233 {
3234 .eraseblocks = {
3235 {16 * 1024, 1},
3236 {8 * 1024, 2},
3237 {96 * 1024, 1},
3238 {128 * 1024, 3},
3239 },
3240 .block_erase = erase_block_82802ab,
3241 },
3242 },
3243 .write = write_82802ab,
3244 .read = read_memmapped,
3245 },
3246
3247 {
3248 .vendor = "Intel",
3249 .name = "28F004BV/BE-T",
3250 .bustype = CHIP_BUSTYPE_PARALLEL,
3251 .manufacture_id = INTEL_ID,
3252 .model_id = P28F004BT,
3253 .total_size = 512,
3254 .page_size = 128 * 1024, /* maximal block size */
3255 .tested = TEST_UNTESTED,
3256 .probe = probe_82802ab,
3257 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3258 .block_erasers =
3259 {
3260 {
3261 .eraseblocks = {
3262 {128 * 1024, 3},
3263 {96 * 1024, 1},
3264 {8 * 1024, 2},
3265 {16 * 1024, 1},
3266 },
3267 .block_erase = erase_block_82802ab,
3268 },
3269 },
3270 .write = write_82802ab,
3271 .read = read_memmapped,
3272 },
3273
3274 {
3275 .vendor = "Intel",
3276 .name = "28F400BV/CV/CE-B",
3277 .bustype = CHIP_BUSTYPE_PARALLEL,
3278 .manufacture_id = INTEL_ID,
3279 .model_id = P28F400BB,
3280 .total_size = 512,
3281 .page_size = 128 * 1024, /* maximal block size */
3282 .feature_bits = FEATURE_ADDR_SHIFTED,
3283 .tested = TEST_UNTESTED,
3284 .probe = probe_82802ab,
3285 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3286 .block_erasers =
3287 {
3288 {
3289 .eraseblocks = {
3290 {16 * 1024, 1},
3291 {8 * 1024, 2},
3292 {96 * 1024, 1},
3293 {128 * 1024, 3},
3294 },
3295 .block_erase = erase_block_82802ab,
3296 },
3297 },
3298 .write = write_82802ab,
3299 .read = read_memmapped,
3300 },
3301
3302 {
3303 .vendor = "Intel",
3304 .name = "28F400BV/CV/CE-T",
3305 .bustype = CHIP_BUSTYPE_PARALLEL,
3306 .manufacture_id = INTEL_ID,
3307 .model_id = P28F400BT,
3308 .total_size = 512,
3309 .page_size = 128 * 1024, /* maximal block size */
3310 .feature_bits = FEATURE_ADDR_SHIFTED,
3311 .tested = TEST_UNTESTED,
3312 .probe = probe_82802ab,
3313 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3314 .block_erasers =
3315 {
3316 {
3317 .eraseblocks = {
3318 {128 * 1024, 3},
3319 {96 * 1024, 1},
3320 {8 * 1024, 2},
3321 {16 * 1024, 1},
3322 },
3323 .block_erase = erase_block_82802ab,
3324 },
3325 },
3326 .write = write_82802ab,
3327 .read = read_memmapped,
3328 },
3329
3330 {
3331 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003332 .name = "82802AB",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003333 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003334 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003335 .model_id = I_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003336 .total_size = 512,
3337 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003338 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00003339 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003340 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003341 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00003342 .block_erasers =
3343 {
3344 {
3345 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00003346 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00003347 },
3348 },
Sean Nelson28accc22010-03-19 18:47:06 +00003349 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003350 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003351 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003352 },
3353
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003354 {
3355 .vendor = "Intel",
3356 .name = "82802AC",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003357 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003358 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003359 .model_id = I_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003360 .total_size = 1024,
3361 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003362 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00003363 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003364 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003365 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00003366 .block_erasers =
3367 {
3368 {
3369 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00003370 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00003371 },
3372 },
Sean Nelson28accc22010-03-19 18:47:06 +00003373 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003374 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003375 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003376 },
3377
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003378 {
3379 .vendor = "Macronix",
3380 .name = "MX25L512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003381 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003382 .manufacture_id = MX_ID,
3383 .model_id = MX_25L512,
3384 .total_size = 64,
3385 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003386 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003387 .tested = TEST_UNTESTED,
3388 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003389 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003390 .block_erasers =
3391 {
3392 {
3393 .eraseblocks = { {4 * 1024, 16} },
3394 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003395 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003396 .eraseblocks = { {64 * 1024, 1} },
3397 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003398 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003399 .eraseblocks = { {64 * 1024, 1} },
3400 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003401 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003402 .eraseblocks = { {64 * 1024, 1} },
3403 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003404 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003405 .eraseblocks = { {64 * 1024, 1} },
3406 .block_erase = spi_block_erase_c7,
3407 },
3408 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003409 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003410 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003411 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003412 },
3413
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003414 {
3415 .vendor = "Macronix",
3416 .name = "MX25L1005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003417 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003418 .manufacture_id = MX_ID,
3419 .model_id = MX_25L1005,
3420 .total_size = 128,
3421 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003422 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003423 .tested = TEST_UNTESTED,
3424 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003425 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003426 .block_erasers =
3427 {
3428 {
3429 .eraseblocks = { {4 * 1024, 32} },
3430 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003431 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003432 .eraseblocks = { {64 * 1024, 2} },
3433 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003434 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003435 .eraseblocks = { {128 * 1024, 1} },
3436 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003437 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00003438 .eraseblocks = { {128 * 1024, 1} },
3439 .block_erase = spi_block_erase_c7,
3440 },
3441 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003442 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003443 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003444 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003445 },
3446
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003447 {
3448 .vendor = "Macronix",
3449 .name = "MX25L2005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003450 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003451 .manufacture_id = MX_ID,
3452 .model_id = MX_25L2005,
3453 .total_size = 256,
3454 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003455 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003456 .tested = TEST_UNTESTED,
3457 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003458 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003459 .block_erasers =
3460 {
3461 {
3462 .eraseblocks = { {4 * 1024, 64} },
3463 .block_erase = spi_block_erase_20,
3464 }, {
3465 .eraseblocks = { {64 * 1024, 4} },
3466 .block_erase = spi_block_erase_52,
3467 }, {
3468 .eraseblocks = { {64 * 1024, 4} },
3469 .block_erase = spi_block_erase_d8,
3470 }, {
3471 .eraseblocks = { {256 * 1024, 1} },
3472 .block_erase = spi_block_erase_60,
3473 }, {
3474 .eraseblocks = { {256 * 1024, 1} },
3475 .block_erase = spi_block_erase_c7,
3476 },
3477 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003478 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003479 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003480 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003481 },
3482
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003483 {
3484 .vendor = "Macronix",
3485 .name = "MX25L4005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003486 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003487 .manufacture_id = MX_ID,
3488 .model_id = MX_25L4005,
3489 .total_size = 512,
3490 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003491 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003492 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003493 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003494 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003495 .block_erasers =
3496 {
3497 {
3498 .eraseblocks = { {4 * 1024, 128} },
3499 .block_erase = spi_block_erase_20,
3500 }, {
3501 .eraseblocks = { {64 * 1024, 8} },
3502 .block_erase = spi_block_erase_52,
3503 }, {
3504 .eraseblocks = { {64 * 1024, 8} },
3505 .block_erase = spi_block_erase_d8,
3506 }, {
3507 .eraseblocks = { {512 * 1024, 1} },
3508 .block_erase = spi_block_erase_60,
3509 }, {
3510 .eraseblocks = { {512 * 1024, 1} },
3511 .block_erase = spi_block_erase_c7,
3512 },
3513 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003514 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003515 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003516 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003517 },
3518
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003519 {
3520 .vendor = "Macronix",
3521 .name = "MX25L8005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003522 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003523 .manufacture_id = MX_ID,
3524 .model_id = MX_25L8005,
3525 .total_size = 1024,
3526 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003527 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00003528 .tested = TEST_OK_PREW,
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 Hailfinger40107122009-10-01 13:15:01 +00003531 .block_erasers =
3532 {
3533 {
3534 .eraseblocks = { {4 * 1024, 256} },
3535 .block_erase = spi_block_erase_20,
3536 }, {
3537 .eraseblocks = { {64 * 1024, 16} },
3538 .block_erase = spi_block_erase_52,
3539 }, {
3540 .eraseblocks = { {64 * 1024, 16} },
3541 .block_erase = spi_block_erase_d8,
3542 }, {
3543 .eraseblocks = { {1024 * 1024, 1} },
3544 .block_erase = spi_block_erase_60,
3545 }, {
3546 .eraseblocks = { {1024 * 1024, 1} },
3547 .block_erase = spi_block_erase_c7,
3548 },
3549 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003550 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003551 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003552 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003553 },
3554
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003555 {
3556 .vendor = "Macronix",
3557 .name = "MX25L1605",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003558 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003559 .manufacture_id = MX_ID,
3560 .model_id = MX_25L1605,
3561 .total_size = 2048,
3562 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003563 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003564 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003565 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003566 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00003567 .block_erasers =
3568 {
3569 {
3570 .eraseblocks = { {4 * 1024, 512} },
3571 .block_erase = spi_block_erase_20, /* This erase function has 64k blocksize for eLiteFlash */
3572 }, {
3573 .eraseblocks = { {64 * 1024, 32} }, /* Not supported in MX25L1605 (eLiteFlash) and MX25L1605D */
3574 .block_erase = spi_block_erase_52,
3575 }, {
3576 .eraseblocks = { {64 * 1024, 32} },
3577 .block_erase = spi_block_erase_d8,
3578 }, {
3579 .eraseblocks = { {2 * 1024 * 1024, 1} },
3580 .block_erase = spi_block_erase_60,
3581 }, {
3582 .eraseblocks = { {2 * 1024 * 1024, 1} },
3583 .block_erase = spi_block_erase_c7,
3584 },
3585 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003586 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003587 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003588 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003589 },
3590
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003591 {
3592 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00003593 .name = "MX25L1635D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003594 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00003595 .manufacture_id = MX_ID,
3596 .model_id = MX_25L1635D,
3597 .total_size = 2048,
3598 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003599 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00003600 .tested = TEST_UNTESTED,
3601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003602 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003603 .block_erasers =
3604 {
3605 {
3606 .eraseblocks = { {4 * 1024, 512} },
3607 .block_erase = spi_block_erase_20,
3608 }, {
3609 .eraseblocks = { {64 * 1024, 32} },
3610 .block_erase = spi_block_erase_d8,
3611 }, {
3612 .eraseblocks = { {2 * 1024 * 1024, 1} },
3613 .block_erase = spi_block_erase_60,
3614 }, {
3615 .eraseblocks = { {2 * 1024 * 1024, 1} },
3616 .block_erase = spi_block_erase_c7,
3617 }
3618 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003619 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003620 .write = spi_chip_write_256,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00003621 .read = spi_chip_read,
3622 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00003623
Stephan Guillouxf5c70902009-04-19 23:04:00 +00003624 {
3625 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003626 .name = "MX25L3205",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003627 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003628 .manufacture_id = MX_ID,
3629 .model_id = MX_25L3205,
3630 .total_size = 4096,
3631 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003632 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003633 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003634 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003635 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003636 .block_erasers =
3637 {
3638 {
3639 .eraseblocks = { {4 * 1024, 1024} },
3640 .block_erase = spi_block_erase_20,
3641 }, {
3642 .eraseblocks = { {4 * 1024, 1024} },
3643 .block_erase = spi_block_erase_d8,
3644 }, {
3645 .eraseblocks = { {4 * 1024 * 1024, 1} },
3646 .block_erase = spi_block_erase_60,
3647 }, {
3648 .eraseblocks = { {4 * 1024 * 1024, 1} },
3649 .block_erase = spi_block_erase_c7,
3650 },
3651 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003652 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003653 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003654 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003655 },
3656
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003657 {
3658 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00003659 .name = "MX25L3235D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003660 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00003661 .manufacture_id = MX_ID,
3662 .model_id = MX_25L3235D,
3663 .total_size = 4096,
3664 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003665 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00003666 .tested = TEST_UNTESTED,
3667 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003668 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003669 .block_erasers =
3670 {
3671 {
3672 .eraseblocks = { {4 * 1024, 1024} },
3673 .block_erase = spi_block_erase_20,
3674 }, {
3675 .eraseblocks = { {64 * 1024, 64} },
3676 .block_erase = spi_block_erase_d8,
3677 }, {
3678 .eraseblocks = { {4 * 1024 * 1024, 1} },
3679 .block_erase = spi_block_erase_60,
3680 }, {
3681 .eraseblocks = { {4 * 1024 * 1024, 1} },
3682 .block_erase = spi_block_erase_c7,
3683 }
3684 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003685 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003686 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00003687 .read = spi_chip_read,
3688 },
3689
3690 {
3691 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003692 .name = "MX25L6405",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003693 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003694 .manufacture_id = MX_ID,
3695 .model_id = MX_25L6405,
3696 .total_size = 8192,
3697 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003698 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger452b3e32009-06-22 11:14:43 +00003699 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003700 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003701 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003702 .block_erasers =
3703 {
3704 {
3705 .eraseblocks = { {64 * 1024, 128} },
3706 .block_erase = spi_block_erase_20,
3707 }, {
3708 .eraseblocks = { {64 * 1024, 128} },
3709 .block_erase = spi_block_erase_d8,
3710 }, {
3711 .eraseblocks = { {8 * 1024 * 1024, 1} },
3712 .block_erase = spi_block_erase_60,
3713 }, {
3714 .eraseblocks = { {8 * 1024 * 1024, 1} },
3715 .block_erase = spi_block_erase_c7,
3716 }
3717 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003718 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003719 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003720 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003721 },
3722
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003723 {
3724 .vendor = "Macronix",
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00003725 .name = "MX25L12805",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003726 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00003727 .manufacture_id = MX_ID,
3728 .model_id = MX_25L12805,
3729 .total_size = 16384,
3730 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00003731 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00003732 .tested = TEST_UNTESTED,
3733 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003734 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003735 .block_erasers =
3736 {
3737 {
3738 .eraseblocks = { {4 * 1024, 4096} },
3739 .block_erase = spi_block_erase_20,
3740 }, {
3741 .eraseblocks = { {64 * 1024, 256} },
3742 .block_erase = spi_block_erase_d8,
3743 }, {
3744 .eraseblocks = { {16 * 1024 * 1024, 1} },
3745 .block_erase = spi_block_erase_60,
3746 }, {
3747 .eraseblocks = { {16 * 1024 * 1024, 1} },
3748 .block_erase = spi_block_erase_c7,
3749 }
3750 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003751 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003752 .write = spi_chip_write_256,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00003753 .read = spi_chip_read,
3754 },
3755
3756 {
3757 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00003758 .name = "MX29F001B",
3759 .bustype = CHIP_BUSTYPE_PARALLEL,
3760 .manufacture_id = MX_ID,
3761 .model_id = MX_29F001B,
3762 .total_size = 128,
3763 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003764 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
3765 .tested = TEST_UNTESTED,
3766 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00003767 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00003768 .block_erasers =
3769 {
3770 {
3771 .eraseblocks = {
3772 {8 * 1024, 1},
3773 {4 * 1024, 2},
3774 {8 * 1024, 2},
3775 {32 * 1024, 1},
3776 {64 * 1024, 1},
3777 },
Sean Nelson35727f72010-01-28 23:55:12 +00003778 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003779 }, {
3780 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003781 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003782 }
3783 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003784 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00003785 .read = read_memmapped,
3786 },
3787
3788 {
3789 .vendor = "Macronix",
3790 .name = "MX29F001T",
3791 .bustype = CHIP_BUSTYPE_PARALLEL,
3792 .manufacture_id = MX_ID,
3793 .model_id = MX_29F001T,
3794 .total_size = 128,
3795 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003796 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
3797 .tested = TEST_UNTESTED,
3798 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00003799 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00003800 .block_erasers =
3801 {
3802 {
3803 .eraseblocks = {
3804 {64 * 1024, 1},
3805 {32 * 1024, 1},
3806 {8 * 1024, 2},
3807 {4 * 1024, 2},
3808 {8 * 1024, 1},
3809 },
Sean Nelson35727f72010-01-28 23:55:12 +00003810 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003811 }, {
3812 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003813 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003814 }
3815 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003816 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00003817 .read = read_memmapped,
3818 },
3819
3820 {
3821 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003822 .name = "MX29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00003823 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003824 .manufacture_id = MX_ID,
3825 .model_id = MX_29F002B,
3826 .total_size = 256,
3827 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003828 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003829 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00003830 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003831 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003832 .block_erasers =
3833 {
3834 {
3835 .eraseblocks = {
3836 {16 * 1024, 1},
3837 {8 * 1024, 2},
3838 {32 * 1024, 1},
3839 {64 * 1024, 3},
3840 },
Sean Nelson35727f72010-01-28 23:55:12 +00003841 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003842 }, {
3843 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003844 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003845 },
3846 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003847 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003848 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003849 },
3850
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003851 {
3852 .vendor = "Macronix",
3853 .name = "MX29F002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00003854 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003855 .manufacture_id = MX_ID,
3856 .model_id = MX_29F002T,
3857 .total_size = 256,
3858 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003859 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003860 .tested = TEST_OK_PRW,
Sean Nelson35727f72010-01-28 23:55:12 +00003861 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003862 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003863 .block_erasers =
3864 {
3865 {
3866 .eraseblocks = {
3867 {64 * 1024, 3},
3868 {32 * 1024, 1},
3869 {8 * 1024, 2},
3870 {16 * 1024, 1},
3871 },
Sean Nelson35727f72010-01-28 23:55:12 +00003872 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003873 }, {
3874 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003875 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003876 },
3877 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003878 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003879 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003880 },
3881
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003882 {
3883 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00003884 .name = "MX29LV040",
Urja Rannikko038a3122009-06-28 19:19:25 +00003885 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003886 .manufacture_id = MX_ID,
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00003887 .model_id = MX_29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003888 .total_size = 512,
3889 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003890 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
3891 .tested = TEST_UNTESTED,
3892 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003893 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00003894 .block_erasers =
3895 {
3896 {
3897 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00003898 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003899 }, {
3900 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003901 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00003902 },
3903 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003904 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003905 .read = read_memmapped,
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00003906 },
3907
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003908 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00003909 .vendor = "MoselVitelic",
3910 .name = "V29C51000B",
3911 .bustype = CHIP_BUSTYPE_PARALLEL,
3912 .manufacture_id = SYNCMOS_MVC_ID,
3913 .model_id = MVC_V29C51000B,
3914 .total_size = 64,
3915 .page_size = 512,
3916 .feature_bits = FEATURE_EITHER_RESET,
3917 .tested = TEST_UNTESTED,
3918 .probe = probe_jedec,
3919 .probe_timing = TIMING_ZERO,
3920 .block_erasers =
3921 {
3922 {
3923 .eraseblocks = { {512, 128} },
3924 .block_erase = erase_sector_jedec,
3925 }, {
3926 .eraseblocks = { {64 * 1024, 1} },
3927 .block_erase = erase_chip_block_jedec,
3928 },
3929 },
3930 .write = write_jedec_1,
3931 .read = read_memmapped,
3932 },
3933
3934 {
3935 .vendor = "MoselVitelic",
3936 .name = "V29C51000T",
3937 .bustype = CHIP_BUSTYPE_PARALLEL,
3938 .manufacture_id = SYNCMOS_MVC_ID,
3939 .model_id = MVC_V29C51000T,
3940 .total_size = 64,
3941 .page_size = 512,
3942 .feature_bits = FEATURE_EITHER_RESET,
3943 .tested = TEST_UNTESTED,
3944 .probe = probe_jedec,
3945 .probe_timing = TIMING_ZERO,
3946 .block_erasers =
3947 {
3948 {
3949 .eraseblocks = { {512, 128} },
3950 .block_erase = erase_sector_jedec,
3951 }, {
3952 .eraseblocks = { {64 * 1024, 1} },
3953 .block_erase = erase_chip_block_jedec,
3954 },
3955 },
3956 .write = write_jedec_1,
3957 .read = read_memmapped,
3958 },
3959
3960 {
3961 .vendor = "MoselVitelic",
3962 .name = "V29C51400B",
3963 .bustype = CHIP_BUSTYPE_PARALLEL,
3964 .manufacture_id = SYNCMOS_MVC_ID,
3965 .model_id = MVC_V29C51400B,
3966 .total_size = 512,
3967 .page_size = 1024,
3968 .feature_bits = FEATURE_EITHER_RESET,
3969 .tested = TEST_UNTESTED,
3970 .probe = probe_jedec,
3971 .probe_timing = TIMING_ZERO,
3972 .block_erasers =
3973 {
3974 {
3975 .eraseblocks = { {1024, 512} },
3976 .block_erase = erase_sector_jedec,
3977 }, {
3978 .eraseblocks = { {512 * 1024, 1} },
3979 .block_erase = erase_chip_block_jedec,
3980 },
3981 },
3982 .write = write_jedec_1,
3983 .read = read_memmapped,
3984 },
3985
3986 {
3987 .vendor = "MoselVitelic",
3988 .name = "V29C51400T",
3989 .bustype = CHIP_BUSTYPE_PARALLEL,
3990 .manufacture_id = SYNCMOS_MVC_ID,
3991 .model_id = MVC_V29C51400T,
3992 .total_size = 512,
3993 .page_size = 1024,
3994 .feature_bits = FEATURE_EITHER_RESET,
3995 .tested = TEST_UNTESTED,
3996 .probe = probe_jedec,
3997 .probe_timing = TIMING_ZERO,
3998 .block_erasers =
3999 {
4000 {
4001 .eraseblocks = { {1024, 512} },
4002 .block_erase = erase_sector_jedec,
4003 }, {
4004 .eraseblocks = { {512 * 1024, 1} },
4005 .block_erase = erase_chip_block_jedec,
4006 },
4007 },
4008 .write = write_jedec_1,
4009 .read = read_memmapped,
4010 },
4011
4012 {
4013 .vendor = "MoselVitelic",
4014 .name = "V29LC51000",
4015 .bustype = CHIP_BUSTYPE_PARALLEL,
4016 .manufacture_id = SYNCMOS_MVC_ID,
4017 .model_id = MVC_V29LC51000,
4018 .total_size = 64,
4019 .page_size = 512,
4020 .feature_bits = FEATURE_EITHER_RESET,
4021 .tested = TEST_UNTESTED,
4022 .probe = probe_jedec,
4023 .probe_timing = TIMING_ZERO,
4024 .block_erasers =
4025 {
4026 {
4027 .eraseblocks = { {512, 128} },
4028 .block_erase = erase_sector_jedec,
4029 }, {
4030 .eraseblocks = { {64 * 1024, 1} },
4031 .block_erase = erase_chip_block_jedec,
4032 },
4033 },
4034 .write = write_jedec_1,
4035 .read = read_memmapped,
4036 },
4037
4038 {
4039 .vendor = "MoselVitelic",
4040 .name = "V29LC51001",
4041 .bustype = CHIP_BUSTYPE_PARALLEL,
4042 .manufacture_id = SYNCMOS_MVC_ID,
4043 .model_id = MVC_V29LC51001,
4044 .total_size = 128,
4045 .page_size = 512,
4046 .feature_bits = FEATURE_EITHER_RESET,
4047 .tested = TEST_UNTESTED,
4048 .probe = probe_jedec,
4049 .probe_timing = TIMING_ZERO,
4050 .block_erasers =
4051 {
4052 {
4053 .eraseblocks = { {512, 256} },
4054 .block_erase = erase_sector_jedec,
4055 }, {
4056 .eraseblocks = { {128 * 1024, 1} },
4057 .block_erase = erase_chip_block_jedec,
4058 },
4059 },
4060 .write = write_jedec_1,
4061 .read = read_memmapped,
4062 },
4063
4064 {
4065 .vendor = "MoselVitelic",
4066 .name = "V29LC51002",
4067 .bustype = CHIP_BUSTYPE_PARALLEL,
4068 .manufacture_id = SYNCMOS_MVC_ID,
4069 .model_id = MVC_V29LC51002,
4070 .total_size = 256,
4071 .page_size = 512,
4072 .feature_bits = FEATURE_EITHER_RESET,
4073 .tested = TEST_UNTESTED,
4074 .probe = probe_jedec,
4075 .probe_timing = TIMING_ZERO,
4076 .block_erasers =
4077 {
4078 {
4079 .eraseblocks = { {512, 512} },
4080 .block_erase = erase_sector_jedec,
4081 }, {
4082 .eraseblocks = { {256 * 1024, 1} },
4083 .block_erase = erase_chip_block_jedec,
4084 },
4085 },
4086 .write = write_jedec_1,
4087 .read = read_memmapped,
4088 },
4089
4090 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004091 .vendor = "Numonyx",
4092 .name = "M25PE10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004093 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004094 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004095 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004096 .total_size = 128,
4097 .page_size = 256,
4098 .tested = TEST_UNTESTED,
4099 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004100 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004101 .block_erasers =
4102 {
4103 {
4104 .eraseblocks = { {4 * 1024, 32} },
4105 .block_erase = spi_block_erase_20,
4106 }, {
4107 .eraseblocks = { {64 * 1024, 2} },
4108 .block_erase = spi_block_erase_d8,
4109 }, {
4110 .eraseblocks = { {128 * 1024, 1} },
4111 .block_erase = spi_block_erase_c7,
4112 }
4113 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004114 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004115 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004116 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004117 },
4118
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004119 {
4120 .vendor = "Numonyx",
4121 .name = "M25PE20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004122 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004123 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004124 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004125 .total_size = 256,
4126 .page_size = 256,
4127 .tested = TEST_UNTESTED,
4128 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004129 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004130 .block_erasers =
4131 {
4132 {
4133 .eraseblocks = { {4 * 1024, 64} },
4134 .block_erase = spi_block_erase_20,
4135 }, {
4136 .eraseblocks = { {64 * 1024, 4} },
4137 .block_erase = spi_block_erase_d8,
4138 }, {
4139 .eraseblocks = { {256 * 1024, 1} },
4140 .block_erase = spi_block_erase_c7,
4141 }
4142 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004143 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004144 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004145 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004146 },
4147
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004148 {
4149 .vendor = "Numonyx",
4150 .name = "M25PE40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004151 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004152 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004153 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00004154 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004155 .page_size = 256,
4156 .tested = TEST_UNTESTED,
4157 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004158 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004159 .block_erasers =
4160 {
4161 {
4162 .eraseblocks = { {4 * 1024, 128} },
4163 .block_erase = spi_block_erase_20,
4164 }, {
4165 .eraseblocks = { {64 * 1024, 8} },
4166 .block_erase = spi_block_erase_d8,
4167 }, {
4168 .eraseblocks = { {512 * 1024, 1} },
4169 .block_erase = spi_block_erase_c7,
4170 }
4171 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004172 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004173 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004174 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004175 },
4176
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004177 {
4178 .vendor = "Numonyx",
4179 .name = "M25PE80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004180 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004181 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004182 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004183 .total_size = 1024,
4184 .page_size = 256,
4185 .tested = TEST_OK_PREW,
4186 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004187 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004188 .block_erasers =
4189 {
4190 {
4191 .eraseblocks = { {4 * 1024, 256} },
4192 .block_erase = spi_block_erase_20,
4193 }, {
4194 .eraseblocks = { {64 * 1024, 16} },
4195 .block_erase = spi_block_erase_d8,
4196 }, {
4197 .eraseblocks = { {1024 * 1024, 1} },
4198 .block_erase = spi_block_erase_c7,
4199 }
4200 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004201 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004202 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004203 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004204 },
4205
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004206 {
4207 .vendor = "Numonyx",
4208 .name = "M25PE16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004209 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004210 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004211 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004212 .total_size = 2048,
4213 .page_size = 256,
4214 .tested = TEST_UNTESTED,
4215 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004216 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004217 .block_erasers =
4218 {
4219 {
4220 .eraseblocks = { {4 * 1024, 512} },
4221 .block_erase = spi_block_erase_20,
4222 }, {
4223 .eraseblocks = { {64 * 1024, 32} },
4224 .block_erase = spi_block_erase_d8,
4225 }, {
4226 .eraseblocks = { {2 * 1024 * 1024, 1} },
4227 .block_erase = spi_block_erase_c7,
4228 }
4229 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004230 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004231 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004232 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004233 },
4234
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004235 {
4236 .vendor = "PMC",
4237 .name = "Pm25LV010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004238 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004239 .manufacture_id = PMC_ID,
4240 .model_id = PMC_25LV010,
4241 .total_size = 128,
4242 .page_size = 256,
4243 .tested = TEST_UNTESTED,
4244 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004245 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004246 .block_erasers =
4247 {
4248 {
4249 .eraseblocks = { {4 * 1024, 32} },
4250 .block_erase = spi_block_erase_d7,
4251 }, {
4252 .eraseblocks = { {32 * 1024, 4} },
4253 .block_erase = spi_block_erase_d8,
4254 }, {
4255 .eraseblocks = { {128 * 1024, 1} },
4256 .block_erase = spi_block_erase_c7,
4257 }
4258 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004259 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004260 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004261 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004262 },
4263
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004264 {
4265 .vendor = "PMC",
4266 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004267 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004268 .manufacture_id = PMC_ID,
4269 .model_id = PMC_25LV016B,
4270 .total_size = 2048,
4271 .page_size = 256,
4272 .tested = TEST_UNTESTED,
4273 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004274 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004275 .block_erasers =
4276 {
4277 {
4278 .eraseblocks = { {4 * 1024, 512} },
4279 .block_erase = spi_block_erase_d7,
4280 }, {
4281 .eraseblocks = { {4 * 1024, 512} },
4282 .block_erase = spi_block_erase_20,
4283 }, {
4284 .eraseblocks = { {64 * 1024, 32} },
4285 .block_erase = spi_block_erase_d8,
4286 }, {
4287 .eraseblocks = { {2 * 1024 * 1024, 1} },
4288 .block_erase = spi_block_erase_60,
4289 }, {
4290 .eraseblocks = { {2 * 1024 * 1024, 1} },
4291 .block_erase = spi_block_erase_c7,
4292 }
4293 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004294 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004295 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004296 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004297 },
4298
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004299 {
4300 .vendor = "PMC",
4301 .name = "Pm25LV020",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004302 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004303 .manufacture_id = PMC_ID,
4304 .model_id = PMC_25LV020,
4305 .total_size = 256,
4306 .page_size = 256,
4307 .tested = TEST_UNTESTED,
4308 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004309 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004310 .block_erasers =
4311 {
4312 {
4313 .eraseblocks = { {4 * 1024, 64} },
4314 .block_erase = spi_block_erase_d7,
4315 }, {
4316 .eraseblocks = { {64 * 1024, 4} },
4317 .block_erase = spi_block_erase_d8,
4318 }, {
4319 .eraseblocks = { {256 * 1024, 1} },
4320 .block_erase = spi_block_erase_c7,
4321 }
4322 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004323 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004324 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004325 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004326 },
4327
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004328 {
4329 .vendor = "PMC",
4330 .name = "Pm25LV040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004331 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004332 .manufacture_id = PMC_ID,
4333 .model_id = PMC_25LV040,
4334 .total_size = 512,
4335 .page_size = 256,
4336 .tested = TEST_UNTESTED,
4337 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004338 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004339 .block_erasers =
4340 {
4341 {
4342 .eraseblocks = { {4 * 1024, 128} },
4343 .block_erase = spi_block_erase_d7,
4344 }, {
4345 .eraseblocks = { {64 * 1024, 8} },
4346 .block_erase = spi_block_erase_d8,
4347 }, {
4348 .eraseblocks = { {512 * 1024, 1} },
4349 .block_erase = spi_block_erase_c7,
4350 }
4351 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004352 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004353 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004354 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004355 },
4356
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004357 {
4358 .vendor = "PMC",
4359 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004360 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004361 .manufacture_id = PMC_ID,
4362 .model_id = PMC_25LV080B,
4363 .total_size = 1024,
4364 .page_size = 256,
4365 .tested = TEST_UNTESTED,
4366 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004367 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004368 .block_erasers =
4369 {
4370 {
4371 .eraseblocks = { {4 * 1024, 256} },
4372 .block_erase = spi_block_erase_d7,
4373 }, {
4374 .eraseblocks = { {4 * 1024, 256} },
4375 .block_erase = spi_block_erase_20,
4376 }, {
4377 .eraseblocks = { {64 * 1024, 16} },
4378 .block_erase = spi_block_erase_d8,
4379 }, {
4380 .eraseblocks = { {1024 * 1024, 1} },
4381 .block_erase = spi_block_erase_60,
4382 }, {
4383 .eraseblocks = { {1024 * 1024, 1} },
4384 .block_erase = spi_block_erase_c7,
4385 }
4386 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004387 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004388 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004389 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004390 },
4391
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004392 {
4393 .vendor = "PMC",
4394 .name = "Pm25LV512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004395 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004396 .manufacture_id = PMC_ID,
4397 .model_id = PMC_25LV512,
4398 .total_size = 64,
4399 .page_size = 256,
4400 .tested = TEST_UNTESTED,
4401 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004402 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004403 .block_erasers =
4404 {
4405 {
4406 .eraseblocks = { {4 * 1024, 16} },
4407 .block_erase = spi_block_erase_d7,
4408 }, {
4409 .eraseblocks = { {32 * 1024, 2} },
4410 .block_erase = spi_block_erase_d8,
4411 }, {
4412 .eraseblocks = { {64 * 1024, 1} },
4413 .block_erase = spi_block_erase_c7,
4414 }
4415 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004416 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004417 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004418 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004419 },
4420
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004421 {
4422 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00004423 .name = "Pm29F002T",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004424 .bustype = CHIP_BUSTYPE_PARALLEL,
4425 .manufacture_id = PMC_ID_NOPREFIX,
4426 .model_id = PMC_29F002T,
4427 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00004428 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004429 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermann431f4f72010-09-05 12:41:25 +00004430 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00004431 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004432 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00004433 .block_erasers =
4434 {
4435 {
4436 .eraseblocks = {
4437 {128 * 1024, 1},
4438 {96 * 1024, 1},
4439 {8 * 1024, 2},
4440 {16 * 1024, 1},
4441 },
Sean Nelson35727f72010-01-28 23:55:12 +00004442 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00004443 }, {
4444 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004445 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00004446 },
4447 },
Sean Nelson35727f72010-01-28 23:55:12 +00004448 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004449 .read = read_memmapped,
4450 },
4451
4452 {
4453 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00004454 .name = "Pm29F002B",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004455 .bustype = CHIP_BUSTYPE_PARALLEL,
4456 .manufacture_id = PMC_ID_NOPREFIX,
4457 .model_id = PMC_29F002B,
4458 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00004459 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004460 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004461 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00004462 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004463 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00004464 .block_erasers =
4465 {
4466 {
4467 .eraseblocks = {
4468 {16 * 1024, 1},
4469 {8 * 1024, 2},
4470 {96 * 1024, 1},
4471 {128 * 1024, 1},
4472 },
Sean Nelson35727f72010-01-28 23:55:12 +00004473 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00004474 }, {
4475 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004476 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00004477 },
4478 },
Sean Nelson35727f72010-01-28 23:55:12 +00004479 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00004480 .read = read_memmapped,
4481 },
4482
4483 {
4484 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00004485 .name = "Pm39LV010",
Urja Rannikko038a3122009-06-28 19:19:25 +00004486 .bustype = CHIP_BUSTYPE_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00004487 .manufacture_id = PMC_ID_NOPREFIX,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00004488 .model_id = PMC_39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00004489 .total_size = 128,
4490 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004491 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannea5425b2010-05-30 17:00:19 +00004492 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00004493 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004494 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00004495 .block_erasers =
4496 {
4497 {
4498 .eraseblocks = { {4 * 1024, 32} },
4499 .block_erase = erase_sector_jedec,
4500 }, {
4501 .eraseblocks = { {64 * 1024, 2} },
4502 .block_erase = erase_block_jedec,
4503 }, {
4504 .eraseblocks = { {128 * 1024, 1} },
4505 .block_erase = erase_chip_block_jedec,
4506 }
4507 },
Sean Nelson35727f72010-01-28 23:55:12 +00004508 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00004509 .read = read_memmapped,
4510 },
4511
4512 {
4513 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00004514 .name = "Pm39LV020",
4515 .bustype = CHIP_BUSTYPE_PARALLEL,
4516 .manufacture_id = PMC_ID_NOPREFIX,
4517 .model_id = PMC_39LV020,
4518 .total_size = 256,
4519 .page_size = 4096,
4520 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4521 .tested = TEST_UNTESTED,
4522 .probe = probe_jedec,
4523 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4524 .block_erasers =
4525 {
4526 {
4527 .eraseblocks = { {4 * 1024, 64} },
4528 .block_erase = erase_sector_jedec,
4529 }, {
4530 .eraseblocks = { {64 * 1024, 4} },
4531 .block_erase = erase_block_jedec,
4532 }, {
4533 .eraseblocks = { {256 * 1024, 1} },
4534 .block_erase = erase_chip_block_jedec,
4535 }
4536 },
4537 .write = write_jedec_1,
4538 .read = read_memmapped,
4539 },
4540
4541 {
4542 .vendor = "PMC",
4543 .name = "Pm39LV040",
4544 .bustype = CHIP_BUSTYPE_PARALLEL,
4545 .manufacture_id = PMC_ID_NOPREFIX,
4546 .model_id = PMC_39LV040,
4547 .total_size = 512,
4548 .page_size = 4096,
4549 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4550 .tested = TEST_UNTESTED,
4551 .probe = probe_jedec,
4552 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4553 .block_erasers =
4554 {
4555 {
4556 .eraseblocks = { {4 * 1024, 128} },
4557 .block_erase = erase_sector_jedec,
4558 }, {
4559 .eraseblocks = { {64 * 1024, 8} },
4560 .block_erase = erase_block_jedec,
4561 }, {
4562 .eraseblocks = { {512 * 1024, 1} },
4563 .block_erase = erase_chip_block_jedec,
4564 }
4565 },
4566 .write = write_jedec_1,
4567 .read = read_memmapped,
4568 },
4569
4570 {
4571 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004572 .name = "Pm49FL002",
Uwe Hermann431f4f72010-09-05 12:41:25 +00004573 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004574 .manufacture_id = PMC_ID_NOPREFIX,
4575 .model_id = PMC_49FL002,
4576 .total_size = 256,
4577 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004578 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Russ Dill8c7c4682010-03-09 16:53:06 +00004579 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00004580 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004581 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00004582 .block_erasers =
4583 {
4584 {
4585 .eraseblocks = { {4 * 1024, 64} },
4586 .block_erase = erase_sector_jedec,
4587 }, {
4588 .eraseblocks = { {16 * 1024, 16} },
4589 .block_erase = erase_block_jedec,
4590 }, {
4591 .eraseblocks = { {256 * 1024, 1} },
4592 .block_erase = erase_chip_block_jedec,
4593 }
4594 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00004595 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00004596 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004597 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004598 },
4599
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004600 {
4601 .vendor = "PMC",
4602 .name = "Pm49FL004",
Uwe Hermann431f4f72010-09-05 12:41:25 +00004603 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004604 .manufacture_id = PMC_ID_NOPREFIX,
4605 .model_id = PMC_49FL004,
4606 .total_size = 512,
4607 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004608 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Uwe Hermann8d341b52010-05-25 23:27:44 +00004609 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00004610 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004611 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00004612 .block_erasers =
4613 {
4614 {
4615 .eraseblocks = { {4 * 1024, 128} },
4616 .block_erase = erase_sector_jedec,
4617 }, {
4618 .eraseblocks = { {64 * 1024, 8} },
4619 .block_erase = erase_block_jedec,
4620 }, {
4621 .eraseblocks = { {512 * 1024, 1} },
4622 .block_erase = erase_chip_block_jedec,
4623 }
4624 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00004625 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00004626 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004627 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004628 },
4629
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004630 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00004631 .vendor = "Sanyo",
4632 .name = "LF25FW203A",
4633 .bustype = CHIP_BUSTYPE_SPI,
4634 .manufacture_id = SANYO_ID,
4635 .model_id = SANYO_LE25FW203A,
4636 .total_size = 2048,
4637 .page_size = 256,
4638 .tested = TEST_UNTESTED,
4639 .probe = probe_spi_rdid,
4640 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004641 .block_erasers =
4642 {
4643 {
4644 .eraseblocks = { {64 * 1024, 32} },
4645 .block_erase = spi_block_erase_d8,
4646 }, {
4647 .eraseblocks = { {2 * 1024 * 1024, 1} },
4648 .block_erase = spi_block_erase_c7,
4649 }
4650 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004651 .unlock = spi_disable_blockprotect,
Sean Nelsond70b09c2009-11-24 02:11:08 +00004652 .write = spi_chip_write_256,
4653 .read = spi_chip_read,
4654 },
4655
4656 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004657 .vendor = "Sharp",
4658 .name = "LHF00L04",
Urja Rannikko038a3122009-06-28 19:19:25 +00004659 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004660 .manufacture_id = SHARP_ID,
4661 .model_id = SHARP_LHF00L04,
4662 .total_size = 1024,
4663 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004664 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004665 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004666 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00004667 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00004668 .block_erasers =
4669 {
4670 {
4671 .eraseblocks = {
4672 {64 * 1024, 15},
4673 {8 * 1024, 8}
4674 },
Sean Nelson28accc22010-03-19 18:47:06 +00004675 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00004676 }, {
4677 .eraseblocks = {
4678 {1024 * 1024, 1}
4679 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00004680 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00004681 },
4682 },
Sean Nelson28accc22010-03-19 18:47:06 +00004683 .unlock = unlock_82802ab,
4684 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004685 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004686 },
4687
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004688 {
4689 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00004690 .name = "S25FL008A",
4691 .bustype = CHIP_BUSTYPE_SPI,
4692 .manufacture_id = SPANSION_ID,
4693 .model_id = SPANSION_S25FL008A,
4694 .total_size = 1024,
4695 .page_size = 256,
4696 .tested = TEST_OK_PREW,
4697 .probe = probe_spi_rdid,
4698 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00004699 .block_erasers =
4700 {
4701 {
4702 .eraseblocks = { {64 * 1024, 16} },
4703 .block_erase = spi_block_erase_d8,
4704 }, {
4705 .eraseblocks = { {1024 * 1024, 1} },
4706 .block_erase = spi_block_erase_c7,
4707 }
4708 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004709 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00004710 .write = spi_chip_write_256,
4711 .read = spi_chip_read,
4712 },
4713
4714 {
4715 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004716 .name = "S25FL016A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004717 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004718 .manufacture_id = SPANSION_ID,
4719 .model_id = SPANSION_S25FL016A,
4720 .total_size = 2048,
4721 .page_size = 256,
Sean Nelson5643c072010-01-19 03:23:07 +00004722 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004723 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004724 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00004725 .block_erasers =
4726 {
4727 {
4728 .eraseblocks = { {64 * 1024, 32} },
4729 .block_erase = spi_block_erase_d8,
4730 }, {
4731 .eraseblocks = { {2 * 1024 * 1024, 1} },
4732 .block_erase = spi_block_erase_c7,
4733 }
4734 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004735 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004736 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004737 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004738 },
4739
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004740 {
4741 .vendor = "SST",
4742 .name = "SST25VF016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004743 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004744 .manufacture_id = SST_ID,
4745 .model_id = SST_25VF016B,
4746 .total_size = 2048,
4747 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004748 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004749 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004750 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004751 .block_erasers =
4752 {
4753 {
4754 .eraseblocks = { {4 * 1024, 512} },
4755 .block_erase = spi_block_erase_20,
4756 }, {
4757 .eraseblocks = { {32 * 1024, 64} },
4758 .block_erase = spi_block_erase_52,
4759 }, {
4760 .eraseblocks = { {64 * 1024, 32} },
4761 .block_erase = spi_block_erase_d8,
4762 }, {
4763 .eraseblocks = { {2 * 1024 * 1024, 1} },
4764 .block_erase = spi_block_erase_60,
4765 }, {
4766 .eraseblocks = { {2 * 1024 * 1024, 1} },
4767 .block_erase = spi_block_erase_c7,
4768 },
4769 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004770 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00004771 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004772 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004773 },
4774
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004775 {
4776 .vendor = "SST",
4777 .name = "SST25VF032B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004778 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004779 .manufacture_id = SST_ID,
4780 .model_id = SST_25VF032B,
4781 .total_size = 4096,
4782 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004783 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004784 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004785 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004786 .block_erasers =
4787 {
4788 {
4789 .eraseblocks = { {4 * 1024, 1024} },
4790 .block_erase = spi_block_erase_20,
4791 }, {
4792 .eraseblocks = { {32 * 1024, 128} },
4793 .block_erase = spi_block_erase_52,
4794 }, {
4795 .eraseblocks = { {64 * 1024, 64} },
4796 .block_erase = spi_block_erase_d8,
4797 }, {
4798 .eraseblocks = { {4 * 1024 * 1024, 1} },
4799 .block_erase = spi_block_erase_60,
4800 }, {
4801 .eraseblocks = { {4 * 1024 * 1024, 1} },
4802 .block_erase = spi_block_erase_c7,
4803 },
4804 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004805 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004806 .write = spi_chip_write_1,
4807 .read = spi_chip_read,
4808 },
4809
4810 {
4811 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00004812 .name = "SST25VF064C",
4813 .bustype = CHIP_BUSTYPE_SPI,
4814 .manufacture_id = SST_ID,
4815 .model_id = SST_25VF064C,
4816 .total_size = 8192,
4817 .page_size = 256,
4818 .tested = TEST_OK_PREW,
4819 .probe = probe_spi_rdid,
4820 .probe_timing = TIMING_ZERO,
4821 .block_erasers =
4822 {
4823 {
4824 .eraseblocks = { {4 * 1024, 2048} },
4825 .block_erase = spi_block_erase_20,
4826 }, {
4827 .eraseblocks = { {32 * 1024, 256} },
4828 .block_erase = spi_block_erase_52,
4829 }, {
4830 .eraseblocks = { {64 * 1024, 128} },
4831 .block_erase = spi_block_erase_d8,
4832 }, {
4833 .eraseblocks = { {8 * 1024 * 1024, 1} },
4834 .block_erase = spi_block_erase_60,
4835 }, {
4836 .eraseblocks = { {8 * 1024 * 1024, 1} },
4837 .block_erase = spi_block_erase_c7,
4838 },
4839 },
4840 .unlock = spi_disable_blockprotect,
4841 .write = spi_chip_write_1,
4842 .read = spi_chip_read,
4843 },
4844
4845 {
4846 .vendor = "SST",
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004847 .name = "SST25VF040.REMS",
4848 .bustype = CHIP_BUSTYPE_SPI,
4849 .manufacture_id = SST_ID,
4850 .model_id = SST_25VF040_REMS,
4851 .total_size = 512,
4852 .page_size = 256,
4853 .tested = TEST_OK_PR,
4854 .probe = probe_spi_rems,
4855 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004856 .block_erasers =
4857 {
4858 {
4859 .eraseblocks = { {4 * 1024, 128} },
4860 .block_erase = spi_block_erase_20,
4861 }, {
4862 .eraseblocks = { {32 * 1024, 16} },
4863 .block_erase = spi_block_erase_52,
4864 }, {
4865 .eraseblocks = { {512 * 1024, 1} },
4866 .block_erase = spi_block_erase_60,
4867 },
4868 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004869 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00004870 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004871 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004872 },
4873
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004874 {
4875 .vendor = "SST",
4876 .name = "SST25VF040B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004877 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004878 .manufacture_id = SST_ID,
4879 .model_id = SST_25VF040B,
4880 .total_size = 512,
4881 .page_size = 256,
4882 .tested = TEST_UNTESTED,
4883 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004884 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004885 .block_erasers =
4886 {
4887 {
4888 .eraseblocks = { {4 * 1024, 128} },
4889 .block_erase = spi_block_erase_20,
4890 }, {
4891 .eraseblocks = { {32 * 1024, 16} },
4892 .block_erase = spi_block_erase_52,
4893 }, {
4894 .eraseblocks = { {64 * 1024, 8} },
4895 .block_erase = spi_block_erase_d8,
4896 }, {
4897 .eraseblocks = { {512 * 1024, 1} },
4898 .block_erase = spi_block_erase_60,
4899 }, {
4900 .eraseblocks = { {512 * 1024, 1} },
4901 .block_erase = spi_block_erase_c7,
4902 },
4903 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004904 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00004905 .write = spi_chip_write_1,
Zheng Bao0677dff2009-02-25 08:07:33 +00004906 .read = spi_chip_read,
4907 },
4908
4909 {
4910 .vendor = "SST",
Stefan Reinauer5cacf8c2010-06-14 12:58:06 +00004911 .name = "SST25LF040A.RES",
4912 .bustype = CHIP_BUSTYPE_SPI,
4913 .manufacture_id = SST_ID,
4914 .model_id = SST_25VF040_REMS,
4915 .total_size = 512,
4916 .page_size = 256,
4917 .tested = TEST_OK_PROBE,
4918 .probe = probe_spi_res2,
4919 .probe_timing = TIMING_ZERO,
4920 .block_erasers =
4921 {
4922 {
4923 .eraseblocks = { {4 * 1024, 128} },
4924 .block_erase = spi_block_erase_20,
4925 }, {
4926 .eraseblocks = { {32 * 1024, 16} },
4927 .block_erase = spi_block_erase_52,
4928 }, {
4929 .eraseblocks = { {512 * 1024, 1} },
4930 .block_erase = spi_block_erase_60,
4931 },
4932 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004933 .unlock = spi_disable_blockprotect,
Stefan Reinauer5cacf8c2010-06-14 12:58:06 +00004934 .write = spi_chip_write_1,
4935 .read = spi_chip_read,
4936 },
4937
4938 {
4939 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00004940 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004941 .bustype = CHIP_BUSTYPE_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004942 .manufacture_id = SST_ID,
4943 .model_id = SST_25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00004944 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004945 .page_size = 256,
Peter Stugefd9217d2009-01-26 03:37:40 +00004946 .tested = TEST_OK_PR,
4947 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004948 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004949 .block_erasers =
4950 {
4951 {
4952 .eraseblocks = { {4 * 1024, 128} },
4953 .block_erase = spi_block_erase_20,
4954 }, {
4955 .eraseblocks = { {32 * 1024, 16} },
4956 .block_erase = spi_block_erase_52,
4957 }, {
4958 .eraseblocks = { {64 * 1024, 8} },
4959 .block_erase = spi_block_erase_d8,
4960 }, {
4961 .eraseblocks = { {512 * 1024, 1} },
4962 .block_erase = spi_block_erase_60,
4963 }, {
4964 .eraseblocks = { {512 * 1024, 1} },
4965 .block_erase = spi_block_erase_c7,
4966 },
4967 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004968 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00004969 .write = spi_chip_write_1,
Peter Stugefd9217d2009-01-26 03:37:40 +00004970 .read = spi_chip_read,
4971 },
4972
4973 {
4974 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004975 .name = "SST25VF080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004976 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004977 .manufacture_id = SST_ID,
4978 .model_id = SST_25VF080B,
4979 .total_size = 1024,
4980 .page_size = 256,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00004981 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004982 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004983 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00004984 .block_erasers =
4985 {
4986 {
4987 .eraseblocks = { {4 * 1024, 256} },
4988 .block_erase = spi_block_erase_20,
4989 }, {
4990 .eraseblocks = { {32 * 1024, 32} },
4991 .block_erase = spi_block_erase_52,
4992 }, {
4993 .eraseblocks = { {64 * 1024, 16} },
4994 .block_erase = spi_block_erase_d8,
4995 }, {
4996 .eraseblocks = { {1024 * 1024, 1} },
4997 .block_erase = spi_block_erase_60,
4998 }, {
4999 .eraseblocks = { {1024 * 1024, 1} },
5000 .block_erase = spi_block_erase_c7,
5001 },
5002 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005003 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005004 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005005 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005006 },
5007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005008 {
5009 .vendor = "SST",
5010 .name = "SST28SF040A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005011 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005012 .manufacture_id = SST_ID,
5013 .model_id = SST_28SF040,
5014 .total_size = 512,
5015 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005016 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005017 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005018 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005019 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005020 .block_erasers =
5021 {
5022 {
5023 .eraseblocks = { {128, 4096} },
5024 .block_erase = erase_sector_28sf040,
5025 }, {
5026 .eraseblocks = { {512 * 1024, 1} },
5027 .block_erase = erase_chip_28sf040,
5028 }
5029 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005030 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005031 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005032 },
5033
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005034 {
5035 .vendor = "SST",
5036 .name = "SST29EE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00005037 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005038 .manufacture_id = SST_ID,
5039 .model_id = SST_29EE010,
5040 .total_size = 128,
5041 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005042 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005043 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005044 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005045 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005046 .block_erasers =
5047 {
5048 {
5049 .eraseblocks = { {128 * 1024, 1} },
5050 .block_erase = erase_chip_block_jedec,
5051 }
5052 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005053 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005054 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005055 },
5056
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005057 {
5058 .vendor = "SST",
5059 .name = "SST29LE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00005060 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005061 .manufacture_id = SST_ID,
5062 .model_id = SST_29LE010,
5063 .total_size = 128,
5064 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005065 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005066 .tested = TEST_UNTESTED,
5067 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005068 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005069 .block_erasers =
5070 {
5071 {
5072 .eraseblocks = { {128 * 1024, 1} },
5073 .block_erase = erase_chip_block_jedec,
5074 }
5075 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005076 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005077 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005078 },
5079
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005080 {
5081 .vendor = "SST",
5082 .name = "SST29EE020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005083 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005084 .manufacture_id = SST_ID,
5085 .model_id = SST_29EE020A,
5086 .total_size = 256,
5087 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005088 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermannea5425b2010-05-30 17:00:19 +00005089 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005090 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005091 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005092 .block_erasers =
5093 {
5094 {
5095 .eraseblocks = { {256 * 1024, 1} },
5096 .block_erase = erase_chip_block_jedec,
5097 }
5098 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005099 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005100 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005101 },
5102
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005103 {
5104 .vendor = "SST",
5105 .name = "SST29LE020",
Urja Rannikko038a3122009-06-28 19:19:25 +00005106 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005107 .manufacture_id = SST_ID,
5108 .model_id = SST_29LE020,
5109 .total_size = 256,
5110 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005111 .feature_bits = FEATURE_LONG_RESET,
Michael Karcher98eff462010-03-24 22:55:56 +00005112 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005113 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005114 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005115 .block_erasers =
5116 {
5117 {
5118 .eraseblocks = { {256 * 1024, 1} },
5119 .block_erase = erase_chip_block_jedec,
5120 }
5121 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005122 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005123 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005124 },
5125
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005126 {
5127 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00005128 .name = "SST39SF512",
5129 .bustype = CHIP_BUSTYPE_PARALLEL,
5130 .manufacture_id = SST_ID,
5131 .model_id = SST_39SF512,
5132 .total_size = 64,
5133 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005134 .feature_bits = FEATURE_EITHER_RESET,
5135 .tested = TEST_UNTESTED,
Uwe Hermann48da3f92010-01-23 15:15:19 +00005136 .probe = probe_jedec,
5137 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00005138 .block_erasers =
5139 {
5140 {
5141 .eraseblocks = { {4 * 1024, 16} },
5142 .block_erase = erase_sector_jedec,
5143 }, {
5144 .eraseblocks = { {64 * 1024, 1} },
5145 .block_erase = erase_chip_block_jedec,
5146 }
5147 },
Sean Nelson35727f72010-01-28 23:55:12 +00005148 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00005149 .read = read_memmapped,
5150 },
5151
5152 {
5153 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005154 .name = "SST39SF010A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005155 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005156 .manufacture_id = SST_ID,
5157 .model_id = SST_39SF010,
5158 .total_size = 128,
5159 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005160 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005161 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005162 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005163 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005164 .block_erasers =
5165 {
5166 {
5167 .eraseblocks = { {4 * 1024, 32} },
5168 .block_erase = erase_sector_jedec,
5169 }, {
5170 .eraseblocks = { {128 * 1024, 1} },
5171 .block_erase = erase_chip_block_jedec,
5172 }
5173 },
Sean Nelson35727f72010-01-28 23:55:12 +00005174 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005175 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005176 },
5177
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005178 {
5179 .vendor = "SST",
5180 .name = "SST39SF020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005181 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005182 .manufacture_id = SST_ID,
5183 .model_id = SST_39SF020,
5184 .total_size = 256,
5185 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005186 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann51afebb2010-08-01 00:13:49 +00005187 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005188 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005189 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005190 .block_erasers =
5191 {
5192 {
5193 .eraseblocks = { {4 * 1024, 64} },
5194 .block_erase = erase_sector_jedec,
5195 }, {
5196 .eraseblocks = { {256 * 1024, 1} },
5197 .block_erase = erase_chip_block_jedec,
5198 }
5199 },
Sean Nelson35727f72010-01-28 23:55:12 +00005200 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005201 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005202 },
5203
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005204 {
5205 .vendor = "SST",
5206 .name = "SST39SF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00005207 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005208 .manufacture_id = SST_ID,
5209 .model_id = SST_39SF040,
5210 .total_size = 512,
5211 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005212 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005213 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005214 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005215 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005216 .block_erasers =
5217 {
5218 {
5219 .eraseblocks = { {4 * 1024, 128} },
5220 .block_erase = erase_sector_jedec,
5221 }, {
5222 .eraseblocks = { {512 * 1024, 1} },
5223 .block_erase = erase_chip_block_jedec,
5224 }
5225 },
Sean Nelson35727f72010-01-28 23:55:12 +00005226 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005227 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005228 },
5229
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005230 {
5231 .vendor = "SST",
5232 .name = "SST39VF512",
Urja Rannikko038a3122009-06-28 19:19:25 +00005233 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005234 .manufacture_id = SST_ID,
5235 .model_id = SST_39VF512,
5236 .total_size = 64,
5237 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005238 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +00005239 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005240 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005241 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005242 .block_erasers =
5243 {
5244 {
5245 .eraseblocks = { {4 * 1024, 16} },
5246 .block_erase = erase_sector_jedec,
5247 }, {
5248 .eraseblocks = { {64 * 1024, 1} },
5249 .block_erase = erase_chip_block_jedec,
5250 }
5251 },
Sean Nelson35727f72010-01-28 23:55:12 +00005252 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005253 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005254 },
5255
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005256 {
5257 .vendor = "SST",
5258 .name = "SST39VF010",
Urja Rannikko038a3122009-06-28 19:19:25 +00005259 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005260 .manufacture_id = SST_ID,
5261 .model_id = SST_39VF010,
5262 .total_size = 128,
5263 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005264 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann51afebb2010-08-01 00:13:49 +00005265 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005266 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005267 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005268 .block_erasers =
5269 {
5270 {
5271 .eraseblocks = { {4 * 1024, 32} },
5272 .block_erase = erase_sector_jedec,
5273 }, {
5274 .eraseblocks = { {128 * 1024, 1} },
5275 .block_erase = erase_chip_block_jedec,
5276 }
5277 },
Sean Nelson35727f72010-01-28 23:55:12 +00005278 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005279 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005280 },
5281
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005282 {
5283 .vendor = "SST",
5284 .name = "SST39VF020",
Urja Rannikko038a3122009-06-28 19:19:25 +00005285 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005286 .manufacture_id = SST_ID,
5287 .model_id = SST_39VF020,
5288 .total_size = 256,
5289 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005290 .feature_bits = FEATURE_EITHER_RESET,
5291 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005292 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005293 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005294 .block_erasers =
5295 {
5296 {
5297 .eraseblocks = { {4 * 1024, 64} },
5298 .block_erase = erase_sector_jedec,
5299 }, {
5300 .eraseblocks = { {256 * 1024, 1} },
5301 .block_erase = erase_chip_block_jedec,
5302 }
5303 },
Sean Nelson35727f72010-01-28 23:55:12 +00005304 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005305 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005306 },
5307
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005308 {
5309 .vendor = "SST",
5310 .name = "SST39VF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00005311 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005312 .manufacture_id = SST_ID,
5313 .model_id = SST_39VF040,
5314 .total_size = 512,
5315 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005316 .feature_bits = FEATURE_EITHER_RESET,
5317 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005318 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005319 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005320 .block_erasers =
5321 {
5322 {
5323 .eraseblocks = { {4 * 1024, 128} },
5324 .block_erase = erase_sector_jedec,
5325 }, {
5326 .eraseblocks = { {512 * 1024, 1} },
5327 .block_erase = erase_chip_block_jedec,
5328 }
5329 },
Sean Nelson35727f72010-01-28 23:55:12 +00005330 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005331 .read = read_memmapped,
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00005332 },
FENG yu ningff692fb2008-12-08 18:15:10 +00005333
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005334 {
5335 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00005336 .name = "SST39VF080",
Urja Rannikko038a3122009-06-28 19:19:25 +00005337 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005338 .manufacture_id = SST_ID,
5339 .model_id = SST_39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00005340 .total_size = 1024,
5341 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005342 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00005343 .tested = TEST_UNTESTED,
5344 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005345 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005346 .block_erasers =
5347 {
5348 {
5349 .eraseblocks = { {4 * 1024, 256} },
5350 .block_erase = erase_sector_jedec,
5351 }, {
5352 .eraseblocks = { {64 * 1024, 16} },
5353 .block_erase = erase_block_jedec,
5354 }, {
5355 .eraseblocks = { {1024 * 1024, 1} },
5356 .block_erase = erase_chip_block_jedec,
5357 }
5358 },
Sean Nelson35727f72010-01-28 23:55:12 +00005359 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005360 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +00005361 },
5362
5363 {
5364 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005365 .name = "SST49LF002A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00005366 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005367 .manufacture_id = SST_ID,
5368 .model_id = SST_49LF002A,
5369 .total_size = 256,
5370 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005371 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00005372 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005373 .probe = probe_jedec,
5374 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005375 .block_erasers =
5376 {
5377 {
5378 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005379 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005380 }, {
5381 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005382 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005383 }, {
5384 .eraseblocks = { {256 * 1024, 1} },
5385 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
5386 }
5387 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005388 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005389 .unlock = unlock_sst_fwhub,
5390 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005391 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005392 },
5393
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005394 {
5395 .vendor = "SST",
5396 .name = "SST49LF003A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00005397 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005398 .manufacture_id = SST_ID,
5399 .model_id = SST_49LF003A,
5400 .total_size = 384,
5401 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005402 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Peter Lemenkov45835c42009-09-25 01:09:18 +00005403 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005404 .probe = probe_jedec,
5405 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005406 .block_erasers =
5407 {
5408 {
5409 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005410 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005411 }, {
5412 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005413 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005414 }, {
5415 .eraseblocks = { {384 * 1024, 1} },
5416 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
5417 }
5418 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005419 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005420 .unlock = unlock_sst_fwhub,
5421 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005422 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005423 },
5424
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005425 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00005426 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
5427 * and is only honored for 64k block erase, but not 4k sector erase.
5428 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005429 .vendor = "SST",
5430 .name = "SST49LF004A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00005431 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005432 .manufacture_id = SST_ID,
5433 .model_id = SST_49LF004A,
5434 .total_size = 512,
5435 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005436 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005437 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005438 .probe = probe_jedec,
5439 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00005440 .block_erasers =
5441 {
5442 {
5443 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005444 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00005445 }, {
5446 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005447 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00005448 }, {
5449 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00005450 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00005451 },
5452 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005453 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005454 .unlock = unlock_sst_fwhub,
5455 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005456 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005457 },
5458
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005459 {
5460 .vendor = "SST",
5461 .name = "SST49LF004C",
Urja Rannikko038a3122009-06-28 19:19:25 +00005462 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005463 .manufacture_id = SST_ID,
5464 .model_id = SST_49LF004C,
5465 .total_size = 512,
5466 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005467 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005468 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005469 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005470 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005471 .block_erasers =
5472 {
5473 {
5474 .eraseblocks = { {4 * 1024, 128} },
5475 .block_erase = erase_sector_49lfxxxc,
5476 }, {
5477 .eraseblocks = {
5478 {64 * 1024, 7},
5479 {32 * 1024, 1},
5480 {8 * 1024, 2},
5481 {16 * 1024, 1},
5482 },
Sean Nelson69e58112010-03-23 17:10:28 +00005483 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005484 }
5485 },
Sean Nelson69e58112010-03-23 17:10:28 +00005486 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005487 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005488 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005489 },
5490
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005491 {
5492 .vendor = "SST",
5493 .name = "SST49LF008A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005494 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005495 .manufacture_id = SST_ID,
5496 .model_id = SST_49LF008A,
5497 .total_size = 1024,
5498 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005499 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Uwe Hermannea5425b2010-05-30 17:00:19 +00005500 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005501 .probe = probe_jedec,
5502 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005503 .block_erasers =
5504 {
5505 {
5506 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005507 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005508 }, {
5509 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005510 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005511 }, {
5512 .eraseblocks = { {1024 * 1024, 1} },
5513 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
5514 }
5515 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005516 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00005517 .unlock = unlock_sst_fwhub,
5518 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005519 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005520 },
5521
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005522 {
5523 .vendor = "SST",
5524 .name = "SST49LF008C",
Urja Rannikko038a3122009-06-28 19:19:25 +00005525 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005526 .manufacture_id = SST_ID,
5527 .model_id = SST_49LF008C,
5528 .total_size = 1024,
5529 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005530 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005531 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005532 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005533 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005534 .block_erasers =
5535 {
5536 {
5537 .eraseblocks = { {4 * 1024, 256} },
5538 .block_erase = erase_sector_49lfxxxc,
5539 }, {
5540 .eraseblocks = {
5541 {64 * 1024, 15},
5542 {32 * 1024, 1},
5543 {8 * 1024, 2},
5544 {16 * 1024, 1},
5545 },
Sean Nelson69e58112010-03-23 17:10:28 +00005546 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005547 }
5548 },
Sean Nelson69e58112010-03-23 17:10:28 +00005549 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005550 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005551 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005552 },
5553
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005554 {
5555 .vendor = "SST",
5556 .name = "SST49LF016C",
Urja Rannikko038a3122009-06-28 19:19:25 +00005557 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005558 .manufacture_id = SST_ID,
5559 .model_id = SST_49LF016C,
5560 .total_size = 2048,
5561 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005562 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005563 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005564 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005565 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005566 .block_erasers =
5567 {
5568 {
5569 .eraseblocks = { {4 * 1024, 512} },
5570 .block_erase = erase_sector_49lfxxxc,
5571 }, {
5572 .eraseblocks = {
5573 {64 * 1024, 31},
5574 {32 * 1024, 1},
5575 {8 * 1024, 2},
5576 {16 * 1024, 1},
5577 },
Sean Nelson69e58112010-03-23 17:10:28 +00005578 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005579 }
5580 },
Sean Nelson69e58112010-03-23 17:10:28 +00005581 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005582 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005583 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005584 },
5585
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005586 {
5587 .vendor = "SST",
5588 .name = "SST49LF020",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005589 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005590 .manufacture_id = SST_ID,
5591 .model_id = SST_49LF020,
5592 .total_size = 256,
5593 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005594 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann8d341b52010-05-25 23:27:44 +00005595 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005596 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005597 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005598 .block_erasers =
5599 {
5600 {
5601 .eraseblocks = { {4 * 1024, 64} },
5602 .block_erase = erase_sector_jedec,
5603 }, {
5604 .eraseblocks = { {16 * 1024, 16} },
5605 .block_erase = erase_block_jedec,
5606 }, {
5607 .eraseblocks = { {256 * 1024, 1} },
5608 .block_erase = NULL,
5609 }
5610 },
Sean Nelson35727f72010-01-28 23:55:12 +00005611 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005612 .read = read_memmapped,
Sven Schnellec208dfb2009-01-07 12:35:09 +00005613 },
5614
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005615 {
5616 .vendor = "SST",
5617 .name = "SST49LF020A",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005618 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005619 .manufacture_id = SST_ID,
5620 .model_id = SST_49LF020A,
5621 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00005622 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005623 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann8d341b52010-05-25 23:27:44 +00005624 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005625 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005626 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005627 .block_erasers =
5628 {
5629 {
5630 .eraseblocks = { {4 * 1024, 64} },
5631 .block_erase = erase_sector_jedec,
5632 }, {
5633 .eraseblocks = { {16 * 1024, 16} },
5634 .block_erase = erase_block_jedec,
5635 }, {
5636 .eraseblocks = { {256 * 1024, 1} },
5637 .block_erase = NULL,
5638 }
5639 },
Sean Nelson35727f72010-01-28 23:55:12 +00005640 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005641 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005642 },
5643
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005644 {
5645 .vendor = "SST",
5646 .name = "SST49LF040",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005647 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005648 .manufacture_id = SST_ID,
5649 .model_id = SST_49LF040,
5650 .total_size = 512,
5651 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005652 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann1e94fa62010-08-08 15:52:07 +00005653 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005654 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00005655 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005656 .block_erasers =
5657 {
5658 {
5659 .eraseblocks = { {4 * 1024, 128} },
5660 .block_erase = erase_sector_jedec,
5661 }, {
5662 .eraseblocks = { {64 * 1024, 8} },
5663 .block_erase = erase_block_jedec,
5664 }, {
5665 .eraseblocks = { {512 * 1024, 1} },
5666 .block_erase = NULL,
5667 }
5668 },
Sean Nelson35727f72010-01-28 23:55:12 +00005669 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005670 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005671 },
5672
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005673 {
5674 .vendor = "SST",
5675 .name = "SST49LF040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00005676 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005677 .manufacture_id = SST_ID,
5678 .model_id = SST_49LF040B,
5679 .total_size = 512,
5680 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00005681 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
5682 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005683 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005684 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005685 .block_erasers =
5686 {
5687 {
5688 .eraseblocks = { {4 * 1024, 128} },
5689 .block_erase = erase_sector_jedec,
5690 }, {
5691 .eraseblocks = { {64 * 1024, 8} },
5692 .block_erase = erase_block_jedec,
5693 }, {
5694 .eraseblocks = { {512 * 1024, 1} },
5695 .block_erase = NULL,
5696 }
5697 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00005698 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00005699 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005700 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005701 },
5702
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005703 {
5704 .vendor = "SST",
5705 .name = "SST49LF080A",
Urja Rannikko038a3122009-06-28 19:19:25 +00005706 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005707 .manufacture_id = SST_ID,
Urja Rannikko038a3122009-06-28 19:19:25 +00005708 .model_id = SST_49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005709 .total_size = 1024,
5710 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005711 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann8d341b52010-05-25 23:27:44 +00005712 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005713 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005714 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005715 .block_erasers =
5716 {
5717 {
5718 .eraseblocks = { {4 * 1024, 256} },
5719 .block_erase = erase_sector_jedec,
5720 }, {
5721 .eraseblocks = { {64 * 1024, 16} },
5722 .block_erase = erase_block_jedec,
5723 }, {
5724 .eraseblocks = { {1024 * 1024, 1} },
5725 .block_erase = NULL,
5726 }
5727 },
Sean Nelson35727f72010-01-28 23:55:12 +00005728 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005729 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005730 },
5731
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005732 {
5733 .vendor = "SST",
5734 .name = "SST49LF160C",
Urja Rannikko038a3122009-06-28 19:19:25 +00005735 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005736 .manufacture_id = SST_ID,
5737 .model_id = SST_49LF160C,
5738 .total_size = 2048,
5739 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005740 .feature_bits = FEATURE_REGISTERMAP,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00005741 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005742 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005743 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00005744 .block_erasers =
5745 {
5746 {
5747 .eraseblocks = { {4 * 1024, 512} },
5748 .block_erase = erase_sector_49lfxxxc,
5749 }, {
5750 .eraseblocks = {
5751 {64 * 1024, 31},
5752 {32 * 1024, 1},
5753 {8 * 1024, 2},
5754 {16 * 1024, 1},
5755 },
Sean Nelson69e58112010-03-23 17:10:28 +00005756 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00005757 }
5758 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005759 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005760 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005761 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005762 },
5763
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005764 {
5765 .vendor = "ST",
5766 .name = "M25P05-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005767 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005768 .manufacture_id = ST_ID,
5769 .model_id = ST_M25P05A,
5770 .total_size = 64,
5771 .page_size = 256,
5772 .tested = TEST_UNTESTED,
5773 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005774 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005775 .block_erasers =
5776 {
5777 {
5778 .eraseblocks = { {32 * 1024, 2} },
5779 .block_erase = spi_block_erase_d8,
5780 }, {
5781 .eraseblocks = { {64 * 1024, 1} },
5782 .block_erase = spi_block_erase_c7,
5783 }
5784 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005785 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005786 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005787 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005788 },
5789
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005790 /* The ST M25P05 is a bit of a problem. It has the same ID as the
5791 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005792 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005793 * only is successful if RDID does not work.
5794 */
5795 {
5796 .vendor = "ST",
5797 .name = "M25P05.RES",
5798 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005799 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005800 .model_id = ST_M25P05_RES,
5801 .total_size = 64,
5802 .page_size = 256,
5803 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005804 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005805 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005806 .block_erasers =
5807 {
5808 {
5809 .eraseblocks = { {32 * 1024, 2} },
5810 .block_erase = spi_block_erase_d8,
5811 }, {
5812 .eraseblocks = { {64 * 1024, 1} },
5813 .block_erase = spi_block_erase_c7,
5814 }
5815 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005816 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005817 .write = spi_chip_write_1, /* 128 */
5818 .read = spi_chip_read,
5819 },
5820
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005821 {
5822 .vendor = "ST",
5823 .name = "M25P10-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005824 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005825 .manufacture_id = ST_ID,
5826 .model_id = ST_M25P10A,
5827 .total_size = 128,
5828 .page_size = 256,
Uwe Hermann51afebb2010-08-01 00:13:49 +00005829 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005830 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005831 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005832 .block_erasers =
5833 {
5834 {
5835 .eraseblocks = { {32 * 1024, 4} },
5836 .block_erase = spi_block_erase_d8,
5837 }, {
5838 .eraseblocks = { {128 * 1024, 1} },
5839 .block_erase = spi_block_erase_c7,
5840 }
5841 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005842 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005843 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005844 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005845 },
5846
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005847 /* The ST M25P10 has the same problem as the M25P05. */
5848 {
5849 .vendor = "ST",
5850 .name = "M25P10.RES",
5851 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005852 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005853 .model_id = ST_M25P10_RES,
5854 .total_size = 128,
5855 .page_size = 256,
5856 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005857 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005858 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005859 .block_erasers =
5860 {
5861 {
5862 .eraseblocks = { {32 * 1024, 4} },
5863 .block_erase = spi_block_erase_d8,
5864 }, {
5865 .eraseblocks = { {128 * 1024, 1} },
5866 .block_erase = spi_block_erase_c7,
5867 }
5868 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005869 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00005870 .write = spi_chip_write_1, /* 128 */
5871 .read = spi_chip_read,
5872 },
5873
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005874 {
5875 .vendor = "ST",
5876 .name = "M25P20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005877 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005878 .manufacture_id = ST_ID,
5879 .model_id = ST_M25P20,
5880 .total_size = 256,
5881 .page_size = 256,
5882 .tested = TEST_UNTESTED,
5883 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005884 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005885 .block_erasers =
5886 {
5887 {
5888 .eraseblocks = { {64 * 1024, 4} },
5889 .block_erase = spi_block_erase_d8,
5890 }, {
5891 .eraseblocks = { {256 * 1024, 1} },
5892 .block_erase = spi_block_erase_c7,
5893 }
5894 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005895 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005896 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005897 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005898 },
5899
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005900 {
5901 .vendor = "ST",
5902 .name = "M25P40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005903 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005904 .manufacture_id = ST_ID,
5905 .model_id = ST_M25P40,
5906 .total_size = 512,
5907 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00005908 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005909 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005910 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005911 .block_erasers =
5912 {
5913 {
5914 .eraseblocks = { {64 * 1024, 8} },
5915 .block_erase = spi_block_erase_d8,
5916 }, {
5917 .eraseblocks = { {512 * 1024, 1} },
5918 .block_erase = spi_block_erase_c7,
5919 }
5920 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005921 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005922 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005923 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005924 },
5925
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005926 {
5927 .vendor = "ST",
5928 .name = "M25P40-old",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005929 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005930 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005931 .model_id = ST_M25P40_RES,
5932 .total_size = 512,
5933 .page_size = 256,
5934 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00005935 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005936 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005937 .block_erasers =
5938 {
5939 {
5940 .eraseblocks = { {64 * 1024, 8} },
5941 .block_erase = spi_block_erase_d8,
5942 }, {
5943 .eraseblocks = { {512 * 1024, 1} },
5944 .block_erase = spi_block_erase_c7,
5945 }
5946 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005947 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005948 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005949 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005950 },
5951
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005952 {
5953 .vendor = "ST",
5954 .name = "M25P80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005955 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005956 .manufacture_id = ST_ID,
5957 .model_id = ST_M25P80,
5958 .total_size = 1024,
5959 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00005960 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005961 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005962 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005963 .block_erasers =
5964 {
5965 {
5966 .eraseblocks = { {64 * 1024, 16} },
5967 .block_erase = spi_block_erase_d8,
5968 }, {
5969 .eraseblocks = { {1024 * 1024, 1} },
5970 .block_erase = spi_block_erase_c7,
5971 }
5972 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005973 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005974 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005975 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005976 },
5977
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005978 {
5979 .vendor = "ST",
5980 .name = "M25P16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005981 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005982 .manufacture_id = ST_ID,
5983 .model_id = ST_M25P16,
5984 .total_size = 2048,
5985 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00005986 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005987 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005988 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005989 .block_erasers =
5990 {
5991 {
5992 .eraseblocks = { {64 * 1024, 32} },
5993 .block_erase = spi_block_erase_d8,
5994 }, {
5995 .eraseblocks = { {2 * 1024 * 1024, 1} },
5996 .block_erase = spi_block_erase_c7,
5997 }
5998 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005999 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006000 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006001 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00006002 },
6003
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006004 {
6005 .vendor = "ST",
6006 .name = "M25P32",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006007 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006008 .manufacture_id = ST_ID,
6009 .model_id = ST_M25P32,
6010 .total_size = 4096,
6011 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00006012 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006013 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006014 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00006015 .block_erasers =
6016 {
6017 {
6018 .eraseblocks = { {64 * 1024, 64} },
6019 .block_erase = spi_block_erase_d8,
6020 }, {
6021 .eraseblocks = { {4 * 1024 * 1024, 1} },
6022 .block_erase = spi_block_erase_c7,
6023 }
6024 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006025 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006026 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006027 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00006028 },
6029
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006030 {
6031 .vendor = "ST",
6032 .name = "M25P64",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006033 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006034 .manufacture_id = ST_ID,
6035 .model_id = ST_M25P64,
6036 .total_size = 8192,
6037 .page_size = 256,
6038 .tested = TEST_UNTESTED,
6039 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006040 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00006041 .block_erasers =
6042 {
6043 {
6044 .eraseblocks = { {64 * 1024, 128} },
6045 .block_erase = spi_block_erase_d8,
6046 }, {
6047 .eraseblocks = { {8 * 1024 * 1024, 1} },
6048 .block_erase = spi_block_erase_c7,
6049 }
6050 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006051 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006052 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006053 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00006054 },
6055
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006056 {
6057 .vendor = "ST",
6058 .name = "M25P128",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006059 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006060 .manufacture_id = ST_ID,
6061 .model_id = ST_M25P128,
6062 .total_size = 16384,
6063 .page_size = 256,
6064 .tested = TEST_UNTESTED,
6065 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006066 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00006067 .block_erasers =
6068 {
6069 {
6070 .eraseblocks = { {256 * 1024, 64} },
6071 .block_erase = spi_block_erase_d8,
6072 }, {
6073 .eraseblocks = { {16 * 1024 * 1024, 1} },
6074 .block_erase = spi_block_erase_c7,
6075 }
6076 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006077 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006078 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006079 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00006080 },
6081
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006082 {
6083 .vendor = "ST",
6084 .name = "M29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00006085 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006086 .manufacture_id = ST_ID,
6087 .model_id = ST_M29F002B,
6088 .total_size = 256,
6089 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006090 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006091 .tested = TEST_UNTESTED,
6092 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006093 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006094 .block_erasers =
6095 {
6096 {
6097 .eraseblocks = {
6098 {16 * 1024, 1},
6099 {8 * 1024, 2},
6100 {32 * 1024, 1},
6101 {64 * 1024, 3},
6102 },
6103 .block_erase = erase_sector_jedec,
6104 }, {
6105 .eraseblocks = { {256 * 1024, 1} },
6106 .block_erase = erase_chip_block_jedec,
6107 }
6108 },
Sean Nelson35727f72010-01-28 23:55:12 +00006109 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006110 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006111 },
6112
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006113 {
6114 .vendor = "ST",
6115 .name = "M29F002T/NT",
Urja Rannikko038a3122009-06-28 19:19:25 +00006116 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006117 .manufacture_id = ST_ID,
6118 .model_id = ST_M29F002T,
6119 .total_size = 256,
6120 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006121 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
6122 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006123 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006124 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006125 .block_erasers =
6126 {
6127 {
6128 .eraseblocks = {
6129 {64 * 1024, 3},
6130 {32 * 1024, 1},
6131 {8 * 1024, 2},
6132 {16 * 1024, 1},
6133 },
6134 .block_erase = erase_sector_jedec,
6135 }, {
6136 .eraseblocks = { {256 * 1024, 1} },
6137 .block_erase = erase_chip_block_jedec,
6138 }
6139 },
Sean Nelson35727f72010-01-28 23:55:12 +00006140 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006141 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006142 },
6143
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006144 {
6145 .vendor = "ST",
6146 .name = "M29F040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00006147 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006148 .manufacture_id = ST_ID,
6149 .model_id = ST_M29F040B,
6150 .total_size = 512,
6151 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006152 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
6153 .tested = TEST_UNTESTED,
6154 .probe = probe_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00006155 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (am29f040b.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006156 .block_erasers =
6157 {
6158 {
6159 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00006160 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00006161 }, {
6162 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006163 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00006164 }
6165 },
Sean Nelson35727f72010-01-28 23:55:12 +00006166 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006167 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006168 },
6169
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006170 {
Sean Nelson35727f72010-01-28 23:55:12 +00006171 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006172 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00006173 .name = "M29F400BB",
6174 .bustype = CHIP_BUSTYPE_PARALLEL,
6175 .manufacture_id = ST_ID,
6176 .model_id = ST_M29F400BB,
6177 .total_size = 512,
6178 .page_size = 64 * 1024,
6179 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
6180 .tested = TEST_BAD_WRITE, /* Implicit eraseblock layout in write_m29f400bt is broken. */
6181 .probe = probe_m29f400bt,
6182 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
6183 .block_erasers =
6184 {
6185 {
6186 .eraseblocks = {
6187 {16 * 1024, 1},
6188 {8 * 1024, 2},
6189 {32 * 1024, 1},
6190 {64 * 1024, 7},
6191 },
6192 .block_erase = block_erase_m29f400bt,
6193 }, {
6194 .eraseblocks = { {512 * 1024, 1} },
6195 .block_erase = block_erase_chip_m29f400bt,
6196 }
6197 },
6198 .write = NULL,
6199 .read = read_memmapped,
6200 },
6201 {
6202 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
6203 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006204 .name = "M29F400BT",
Urja Rannikko038a3122009-06-28 19:19:25 +00006205 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006206 .manufacture_id = ST_ID,
6207 .model_id = ST_M29F400BT,
6208 .total_size = 512,
6209 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006210 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006211 .tested = TEST_UNTESTED,
6212 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00006213 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006214 .block_erasers =
6215 {
6216 {
6217 .eraseblocks = {
6218 {64 * 1024, 7},
6219 {32 * 1024, 1},
6220 {8 * 1024, 2},
6221 {16 * 1024, 1},
6222 },
6223 .block_erase = block_erase_m29f400bt,
6224 }, {
6225 .eraseblocks = { {512 * 1024, 1} },
6226 .block_erase = block_erase_chip_m29f400bt,
6227 }
6228 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00006229 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006230 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006231 },
6232
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006233 {
6234 .vendor = "ST",
6235 .name = "M29W010B",
Urja Rannikko038a3122009-06-28 19:19:25 +00006236 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006237 .manufacture_id = ST_ID,
6238 .model_id = ST_M29W010B,
6239 .total_size = 128,
6240 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006241 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006242 .tested = TEST_UNTESTED,
6243 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006244 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006245 .block_erasers =
6246 {
6247 {
6248 .eraseblocks = { {16 * 1024, 8}, },
6249 .block_erase = erase_sector_jedec,
6250 }, {
6251 .eraseblocks = { {128 * 1024, 1} },
6252 .block_erase = erase_chip_block_jedec,
6253 }
6254 },
Sean Nelson35727f72010-01-28 23:55:12 +00006255 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006256 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006257 },
6258
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006259 {
6260 .vendor = "ST",
6261 .name = "M29W040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00006262 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006263 .manufacture_id = ST_ID,
6264 .model_id = ST_M29W040B,
6265 .total_size = 512,
6266 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006267 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006268 .tested = TEST_UNTESTED,
6269 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006270 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006271 .block_erasers =
6272 {
6273 {
6274 .eraseblocks = { {64 * 1024, 8}, },
6275 .block_erase = erase_sector_jedec,
6276 }, {
6277 .eraseblocks = { {512 * 1024, 1} },
6278 .block_erase = erase_chip_block_jedec,
6279 }
6280 },
Sean Nelson35727f72010-01-28 23:55:12 +00006281 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006282 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006283 },
6284
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00006285 {
6286 .vendor = "ST",
6287 .name = "M29W512B",
6288 .bustype = CHIP_BUSTYPE_PARALLEL,
6289 .manufacture_id = ST_ID,
6290 .model_id = ST_M29W512B,
6291 .total_size = 64,
6292 .page_size = 64 * 1024,
6293 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
6294 .tested = TEST_OK_PREW,
6295 .probe = probe_jedec,
6296 .probe_timing = TIMING_ZERO,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00006297 .block_erasers =
6298 {
6299 {
6300 .eraseblocks = { {64 * 1024, 1} },
6301 .block_erase = erase_chip_block_jedec,
6302 }
6303 },
6304 .write = write_jedec_1,
6305 .read = read_memmapped,
6306 },
6307
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006308 {
6309 .vendor = "ST",
6310 .name = "M50FLW040A",
Sean Nelson35727f72010-01-28 23:55:12 +00006311 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006312 .manufacture_id = ST_ID,
6313 .model_id = ST_M50FLW040A,
6314 .total_size = 512,
6315 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006316 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006317 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006318 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00006319 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00006320 .block_erasers =
6321 {
6322 {
Sean Nelson329bde72010-01-19 16:39:19 +00006323 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00006324 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00006325 {64 * 1024, 5}, /* block */
6326 {4 * 1024, 16}, /* sector */
6327 {4 * 1024, 16}, /* sector */
6328 },
6329 .block_erase = NULL,
6330 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00006331 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006332 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006333 }, {
6334 .eraseblocks = { {512 * 1024, 1} },
6335 .block_erase = erase_chip_stm50flw0x0x,
6336 }
6337 },
Sean Nelson28accc22010-03-19 18:47:06 +00006338 .unlock = unlock_stm50flw0x0x,
6339 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006340 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006341 },
6342
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006343 {
6344 .vendor = "ST",
6345 .name = "M50FLW040B",
Sean Nelson35727f72010-01-28 23:55:12 +00006346 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006347 .manufacture_id = ST_ID,
6348 .model_id = ST_M50FLW040B,
6349 .total_size = 512,
6350 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006351 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006352 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006353 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00006354 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00006355 .block_erasers =
6356 {
6357 {
Sean Nelson329bde72010-01-19 16:39:19 +00006358 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00006359 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00006360 {4 * 1024, 16}, /* sector */
6361 {64 * 1024, 5}, /* block */
6362 {4 * 1024, 16}, /* sector */
6363 },
6364 .block_erase = NULL,
6365 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00006366 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006367 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006368 }, {
6369 .eraseblocks = { {512 * 1024, 1} },
6370 .block_erase = erase_chip_stm50flw0x0x,
6371 }
6372 },
Sean Nelson28accc22010-03-19 18:47:06 +00006373 .unlock = unlock_stm50flw0x0x,
6374 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006375 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006376 },
6377
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006378 {
6379 .vendor = "ST",
6380 .name = "M50FLW080A",
Sean Nelson35727f72010-01-28 23:55:12 +00006381 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006382 .manufacture_id = ST_ID,
6383 .model_id = ST_M50FLW080A,
6384 .total_size = 1024,
6385 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006386 .feature_bits = FEATURE_REGISTERMAP,
Uwe Hermann1e94fa62010-08-08 15:52:07 +00006387 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00006388 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00006389 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00006390 .block_erasers =
6391 {
6392 {
Sean Nelson329bde72010-01-19 16:39:19 +00006393 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00006394 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00006395 {64 * 1024, 13}, /* block */
6396 {4 * 1024, 16}, /* sector */
6397 {4 * 1024, 16}, /* sector */
6398 },
6399 .block_erase = NULL,
6400 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00006401 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006402 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006403 }, {
6404 .eraseblocks = { {1024 * 1024, 1} },
6405 .block_erase = erase_chip_stm50flw0x0x,
6406 }
6407 },
Sean Nelson28accc22010-03-19 18:47:06 +00006408 .unlock = unlock_stm50flw0x0x,
6409 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006410 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006411 },
6412
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006413 {
6414 .vendor = "ST",
6415 .name = "M50FLW080B",
Sean Nelson35727f72010-01-28 23:55:12 +00006416 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006417 .manufacture_id = ST_ID,
6418 .model_id = ST_M50FLW080B,
6419 .total_size = 1024,
6420 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006421 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006422 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006423 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00006424 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00006425 .block_erasers =
6426 {
6427 {
Sean Nelson329bde72010-01-19 16:39:19 +00006428 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00006429 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00006430 {4 * 1024, 16}, /* sector */
6431 {64 * 1024, 13}, /* block */
6432 {4 * 1024, 16}, /* sector */
6433 },
6434 .block_erase = NULL,
6435 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00006436 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006437 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006438 }, {
6439 .eraseblocks = { {1024 * 1024, 1} },
6440 .block_erase = erase_chip_stm50flw0x0x,
6441 }
6442 },
Sean Nelson28accc22010-03-19 18:47:06 +00006443 .unlock = unlock_stm50flw0x0x,
6444 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006445 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006446 },
6447
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006448 {
6449 .vendor = "ST",
6450 .name = "M50FW002",
Urja Rannikko038a3122009-06-28 19:19:25 +00006451 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006452 .manufacture_id = ST_ID,
6453 .model_id = ST_M50FW002,
6454 .total_size = 256,
6455 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006456 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006457 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006458 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00006459 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006460 .block_erasers =
6461 {
6462 {
6463 .eraseblocks = {
6464 {64 * 1024, 3},
6465 {32 * 1024, 1},
6466 {8 * 1024, 2},
6467 {16 * 1024, 1},
6468 },
Sean Nelson28accc22010-03-19 18:47:06 +00006469 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006470 }, {
6471 .eraseblocks = { {256 * 1024, 1} },
6472 .block_erase = erase_chip_stm50flw0x0x,
6473 }
6474 },
Sean Nelson28accc22010-03-19 18:47:06 +00006475 .unlock = unlock_stm50flw0x0x,
6476 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006477 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006478 },
6479
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006480 {
6481 .vendor = "ST",
6482 .name = "M50FW016",
Urja Rannikko038a3122009-06-28 19:19:25 +00006483 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006484 .manufacture_id = ST_ID,
6485 .model_id = ST_M50FW016,
6486 .total_size = 2048,
6487 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006488 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006489 .tested = TEST_UNTESTED,
6490 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00006491 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006492 .block_erasers =
6493 {
6494 {
6495 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006496 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006497 }, {
6498 .eraseblocks = { {2 * 1024 * 1024, 1} },
6499 .block_erase = erase_chip_stm50flw0x0x,
6500 }
6501 },
Sean Nelson28accc22010-03-19 18:47:06 +00006502 .unlock = unlock_stm50flw0x0x,
6503 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006504 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006505 },
6506
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006507 {
6508 .vendor = "ST",
6509 .name = "M50FW040",
Urja Rannikko038a3122009-06-28 19:19:25 +00006510 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006511 .manufacture_id = ST_ID,
6512 .model_id = ST_M50FW040,
6513 .total_size = 512,
6514 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006515 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00006516 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006517 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00006518 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006519 .block_erasers =
6520 {
6521 {
6522 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006523 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006524 }, {
6525 .eraseblocks = { {512 * 1024, 1} },
6526 .block_erase = erase_chip_stm50flw0x0x,
6527 }
6528 },
Sean Nelson28accc22010-03-19 18:47:06 +00006529 .unlock = unlock_stm50flw0x0x,
6530 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006531 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006532 },
6533
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006534 {
6535 .vendor = "ST",
6536 .name = "M50FW080",
Urja Rannikko038a3122009-06-28 19:19:25 +00006537 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006538 .manufacture_id = ST_ID,
6539 .model_id = ST_M50FW080,
6540 .total_size = 1024,
6541 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006542 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00006543 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006544 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00006545 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00006546 .block_erasers =
6547 {
6548 {
6549 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00006550 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006551 }, {
6552 .eraseblocks = { {1024 * 1024, 1} },
6553 .block_erase = erase_chip_stm50flw0x0x,
6554 }
6555 },
Sean Nelson28accc22010-03-19 18:47:06 +00006556 .unlock = unlock_stm50flw0x0x,
6557 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006558 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006559 },
6560
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006561 {
6562 .vendor = "ST",
6563 .name = "M50LPW116",
Urja Rannikko038a3122009-06-28 19:19:25 +00006564 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006565 .manufacture_id = ST_ID,
6566 .model_id = ST_M50LPW116,
6567 .total_size = 2048,
6568 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006569 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006570 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006571 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00006572 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006573 .block_erasers =
6574 {
6575 {
6576 .eraseblocks = {
6577 {4 * 1024, 16},
6578 {64 * 1024, 30},
6579 {32 * 1024, 1},
6580 {8 * 1024, 2},
6581 {16 * 1024, 1},
6582 },
Sean Nelson28accc22010-03-19 18:47:06 +00006583 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00006584 }, {
6585 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006586 .block_erase = erase_chip_stm50flw0x0x,
Sean Nelson56358aa2010-01-19 16:08:51 +00006587 }
6588 },
Sean Nelson28accc22010-03-19 18:47:06 +00006589 .unlock = unlock_stm50flw0x0x,
6590 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006591 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006592 },
6593
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006594 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006595 .vendor = "SyncMOS/MoselVitelic",
6596 .name = "{F,S,V}29C51001B",
Urja Rannikko038a3122009-06-28 19:19:25 +00006597 .bustype = CHIP_BUSTYPE_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006598 .manufacture_id = SYNCMOS_MVC_ID,
6599 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006600 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006601 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00006602 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006603 .tested = TEST_UNTESTED,
6604 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006605 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006606 .block_erasers =
6607 {
6608 {
6609 .eraseblocks = { {512, 256} },
6610 .block_erase = erase_sector_jedec,
6611 }, {
6612 .eraseblocks = { {128 * 1024, 1} },
6613 .block_erase = erase_chip_block_jedec,
6614 },
6615 },
Sean Nelson35727f72010-01-28 23:55:12 +00006616 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006617 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006618 },
6619
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006620 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006621 .vendor = "SyncMOS/MoselVitelic",
6622 .name = "{F,S,V}29C51001T",
Urja Rannikko038a3122009-06-28 19:19:25 +00006623 .bustype = CHIP_BUSTYPE_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006624 .manufacture_id = SYNCMOS_MVC_ID,
6625 .model_id = SM_MVC_29C51001T,
6626 .total_size = 128,
6627 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00006628 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006629 .tested = TEST_UNTESTED,
6630 .probe = probe_jedec,
6631 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6632 .block_erasers =
6633 {
6634 {
6635 .eraseblocks = { {512, 256} },
6636 .block_erase = erase_sector_jedec,
6637 }, {
6638 .eraseblocks = { {128 * 1024, 1} },
6639 .block_erase = erase_chip_block_jedec,
6640 },
6641 },
6642 .write = write_jedec_1,
6643 .read = read_memmapped,
6644 },
6645
6646 {
6647 .vendor = "SyncMOS/MoselVitelic",
6648 .name = "{F,S,V}29C51002B",
6649 .bustype = CHIP_BUSTYPE_PARALLEL,
6650 .manufacture_id = SYNCMOS_MVC_ID,
6651 .model_id = SM_MVC_29C51002B,
6652 .total_size = 256,
6653 .page_size = 512,
6654 .feature_bits = FEATURE_EITHER_RESET,
6655 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006656 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006657 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006658 .block_erasers =
6659 {
6660 {
6661 .eraseblocks = { {512, 512} },
6662 .block_erase = erase_sector_jedec,
6663 }, {
6664 .eraseblocks = { {256 * 1024, 1} },
6665 .block_erase = erase_chip_block_jedec,
6666 },
6667 },
Sean Nelson35727f72010-01-28 23:55:12 +00006668 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006669 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006670 },
6671
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006672 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006673 .vendor = "SyncMOS/MoselVitelic",
6674 .name = "{F,S,V}29C51002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00006675 .bustype = CHIP_BUSTYPE_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006676 .manufacture_id = SYNCMOS_MVC_ID,
6677 .model_id = SM_MVC_29C51002T,
6678 .total_size = 256,
6679 .page_size = 512,
6680 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006681 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006682 .probe = probe_jedec,
6683 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6684 .block_erasers =
6685 {
6686 {
6687 .eraseblocks = { {512, 512} },
6688 .block_erase = erase_sector_jedec,
6689 }, {
6690 .eraseblocks = { {256 * 1024, 1} },
6691 .block_erase = erase_chip_block_jedec,
6692 },
6693 },
6694 .write = write_jedec_1,
6695 .read = read_memmapped,
6696 },
6697
6698 {
6699 .vendor = "SyncMOS/MoselVitelic",
6700 .name = "{F,S,V}29C51004B",
6701 .bustype = CHIP_BUSTYPE_PARALLEL,
6702 .manufacture_id = SYNCMOS_MVC_ID,
6703 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006704 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006705 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006706 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006707 .tested = TEST_UNTESTED,
6708 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006709 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00006710 .block_erasers =
6711 {
6712 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006713 .eraseblocks = { {1024, 512} },
6714 .block_erase = erase_sector_jedec,
6715 }, {
6716 .eraseblocks = { {512 * 1024, 1} },
6717 .block_erase = erase_chip_block_jedec,
6718 },
6719 },
6720 .write = write_jedec_1,
6721 .read = read_memmapped,
6722 },
6723
6724 {
6725 .vendor = "SyncMOS/MoselVitelic",
6726 .name = "{F,S,V}29C51004T",
6727 .bustype = CHIP_BUSTYPE_PARALLEL,
6728 .manufacture_id = SYNCMOS_MVC_ID,
6729 .model_id = SM_MVC_29C51004T,
6730 .total_size = 512,
6731 .page_size = 1024,
6732 .feature_bits = FEATURE_EITHER_RESET,
6733 .tested = TEST_UNTESTED,
6734 .probe = probe_jedec,
6735 .probe_timing = TIMING_ZERO,
6736 .block_erasers =
6737 {
6738 {
6739 .eraseblocks = { {1024, 512} },
6740 .block_erase = erase_sector_jedec,
6741 }, {
6742 .eraseblocks = { {512 * 1024, 1} },
6743 .block_erase = erase_chip_block_jedec,
6744 },
6745 },
6746 .write = write_jedec_1,
6747 .read = read_memmapped,
6748 },
6749
6750 {
6751 .vendor = "SyncMOS/MoselVitelic",
6752 .name = "{S,V}29C31004B",
6753 .bustype = CHIP_BUSTYPE_PARALLEL,
6754 .manufacture_id = SYNCMOS_MVC_ID,
6755 .model_id = SM_MVC_29C31004B,
6756 .total_size = 512,
6757 .page_size = 1024,
6758 .feature_bits = FEATURE_EITHER_RESET,
6759 .tested = TEST_UNTESTED,
6760 .probe = probe_jedec,
6761 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6762 .block_erasers =
6763 {
6764 {
6765 .eraseblocks = { {1024, 512} },
6766 .block_erase = erase_sector_jedec,
6767 }, {
6768 .eraseblocks = { {512 * 1024, 1} },
6769 .block_erase = erase_chip_block_jedec,
6770 },
6771 },
6772 .write = write_jedec_1,
6773 .read = read_memmapped,
6774 },
6775
6776 {
6777 .vendor = "SyncMOS/MoselVitelic",
6778 .name = "{S,V}29C31004T",
6779 .bustype = CHIP_BUSTYPE_PARALLEL,
6780 .manufacture_id = SYNCMOS_MVC_ID,
6781 .model_id = SM_MVC_29C31004T,
6782 .total_size = 512,
6783 .page_size = 1024,
6784 .feature_bits = FEATURE_EITHER_RESET,
6785 .tested = TEST_UNTESTED,
6786 .probe = probe_jedec,
6787 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6788 .block_erasers =
6789 {
6790 {
6791 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00006792 .block_erase = erase_sector_jedec,
6793 }, {
6794 .eraseblocks = { {512 * 1024, 1} },
6795 .block_erase = erase_chip_block_jedec,
6796 },
6797 },
Sean Nelson35727f72010-01-28 23:55:12 +00006798 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006799 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006800 },
6801
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006802 {
Uwe Hermanna106d152009-05-27 23:17:40 +00006803 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006804 .name = "TMS29F002RB",
Urja Rannikko038a3122009-06-28 19:19:25 +00006805 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006806 .manufacture_id = TI_OLD_ID,
6807 .model_id = TI_TMS29F002RB,
6808 .total_size = 256,
6809 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00006810 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006811 .tested = TEST_UNTESTED,
6812 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006813 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006814 .block_erasers =
6815 {
6816 {
6817 .eraseblocks = {
6818 {16 * 1024, 1},
6819 {8 * 1024, 2},
6820 {32 * 1024, 1},
6821 {64 * 1024, 3},
6822 },
6823 .block_erase = erase_sector_jedec,
6824 }, {
6825 .eraseblocks = { {256 * 1024, 1} },
6826 .block_erase = erase_chip_block_jedec,
6827 },
6828 },
Sean Nelson35727f72010-01-28 23:55:12 +00006829 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006830 .read = read_memmapped,
6831 },
6832
6833 {
Uwe Hermanna106d152009-05-27 23:17:40 +00006834 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006835 .name = "TMS29F002RT",
Urja Rannikko038a3122009-06-28 19:19:25 +00006836 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006837 .manufacture_id = TI_OLD_ID,
6838 .model_id = TI_TMS29F002RT,
6839 .total_size = 256,
6840 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00006841 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006842 .tested = TEST_UNTESTED,
6843 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006844 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00006845 .block_erasers =
6846 {
6847 {
6848 .eraseblocks = {
6849 {64 * 1024, 3},
6850 {32 * 1024, 1},
6851 {8 * 1024, 2},
6852 {16 * 1024, 1},
6853 },
6854 .block_erase = erase_sector_jedec,
6855 }, {
6856 .eraseblocks = { {256 * 1024, 1} },
6857 .block_erase = erase_chip_block_jedec,
6858 },
6859 },
Sean Nelson35727f72010-01-28 23:55:12 +00006860 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00006861 .read = read_memmapped,
6862 },
6863
6864 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006865 .vendor = "Winbond",
Rudolf Marekce1c7982010-04-20 19:34:31 +00006866 .name = "W25Q80",
6867 .bustype = CHIP_BUSTYPE_SPI,
6868 .manufacture_id = WINBOND_NEX_ID,
6869 .model_id = W_25Q80,
6870 .total_size = 1024,
6871 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00006872 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00006873 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006874 .probe = probe_spi_rdid,
6875 .probe_timing = TIMING_ZERO,
6876 .block_erasers =
6877 {
6878 {
6879 .eraseblocks = { {4 * 1024, 256} },
6880 .block_erase = spi_block_erase_20,
6881 }, {
6882 .eraseblocks = { {32 * 1024, 32} },
6883 .block_erase = spi_block_erase_52,
6884 }, {
6885 .eraseblocks = { {64 * 1024, 16} },
6886 .block_erase = spi_block_erase_d8,
6887 }, {
6888 .eraseblocks = { {1024 * 1024, 1} },
6889 .block_erase = spi_block_erase_60,
6890 }, {
6891 .eraseblocks = { {1024 * 1024, 1} },
6892 .block_erase = spi_block_erase_c7,
6893 }
6894 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006895 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006896 .write = spi_chip_write_256,
6897 .read = spi_chip_read,
6898 },
6899
6900 {
6901 .vendor = "Winbond",
6902 .name = "W25Q16",
6903 .bustype = CHIP_BUSTYPE_SPI,
6904 .manufacture_id = WINBOND_NEX_ID,
6905 .model_id = W_25Q16,
6906 .total_size = 2048,
6907 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00006908 .feature_bits = FEATURE_WRSR_WREN,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006909 .tested = TEST_UNTESTED,
6910 .probe = probe_spi_rdid,
6911 .probe_timing = TIMING_ZERO,
6912 .block_erasers =
6913 {
6914 {
6915 .eraseblocks = { {4 * 1024, 512} },
6916 .block_erase = spi_block_erase_20,
6917 }, {
6918 .eraseblocks = { {32 * 1024, 64} },
6919 .block_erase = spi_block_erase_52,
6920 }, {
6921 .eraseblocks = { {64 * 1024, 32} },
6922 .block_erase = spi_block_erase_d8,
6923 }, {
6924 .eraseblocks = { {2 * 1024 * 1024, 1} },
6925 .block_erase = spi_block_erase_60,
6926 }, {
6927 .eraseblocks = { {2 * 1024 * 1024, 1} },
6928 .block_erase = spi_block_erase_c7,
6929 }
6930 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006931 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006932 .write = spi_chip_write_256,
6933 .read = spi_chip_read,
6934 },
6935
6936 {
6937 .vendor = "Winbond",
6938 .name = "W25Q32",
6939 .bustype = CHIP_BUSTYPE_SPI,
6940 .manufacture_id = WINBOND_NEX_ID,
6941 .model_id = W_25Q32,
6942 .total_size = 4096,
6943 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00006944 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +00006945 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006946 .probe = probe_spi_rdid,
6947 .probe_timing = TIMING_ZERO,
6948 .block_erasers =
6949 {
6950 {
6951 .eraseblocks = { {4 * 1024, 1024} },
6952 .block_erase = spi_block_erase_20,
6953 }, {
6954 .eraseblocks = { {32 * 1024, 128} },
6955 .block_erase = spi_block_erase_52,
6956 }, {
6957 .eraseblocks = { {64 * 1024, 64} },
6958 .block_erase = spi_block_erase_d8,
6959 }, {
6960 .eraseblocks = { {4 * 1024 * 1024, 1} },
6961 .block_erase = spi_block_erase_60,
6962 }, {
6963 .eraseblocks = { {4 * 1024 * 1024, 1} },
6964 .block_erase = spi_block_erase_c7,
6965 }
6966 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006967 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00006968 .write = spi_chip_write_256,
6969 .read = spi_chip_read,
6970 },
6971
6972 {
6973 .vendor = "Winbond",
David Hendricksc4acec92010-06-24 11:39:57 +00006974 .name = "W25Q64",
6975 .bustype = CHIP_BUSTYPE_SPI,
6976 .manufacture_id = WINBOND_NEX_ID,
6977 .model_id = W_25Q64,
6978 .total_size = 8192,
6979 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00006980 .feature_bits = FEATURE_WRSR_WREN,
David Hendricksc4acec92010-06-24 11:39:57 +00006981 .tested = TEST_OK_PRW,
6982 .probe = probe_spi_rdid,
6983 .probe_timing = TIMING_ZERO,
6984 .block_erasers =
6985 {
6986 {
6987 .eraseblocks = { {4 * 1024, 2048} },
6988 .block_erase = spi_block_erase_20,
6989 }, {
6990 .eraseblocks = { {32 * 1024, 256} },
6991 .block_erase = spi_block_erase_52,
6992 }, {
6993 .eraseblocks = { {64 * 1024, 128} },
6994 .block_erase = spi_block_erase_d8,
6995 }, {
6996 .eraseblocks = { {8 * 1024 * 1024, 1} },
6997 .block_erase = spi_block_erase_60,
6998 }, {
6999 .eraseblocks = { {8 * 1024 * 1024, 1} },
7000 .block_erase = spi_block_erase_c7,
7001 }
7002 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007003 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +00007004 .write = spi_chip_write_256,
7005 .read = spi_chip_read,
7006 },
7007
7008 {
7009 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007010 .name = "W25x10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007011 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007012 .manufacture_id = WINBOND_NEX_ID,
7013 .model_id = W_25X10,
7014 .total_size = 128,
7015 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007016 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007017 .tested = TEST_UNTESTED,
7018 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007019 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007020 .block_erasers =
7021 {
7022 {
7023 .eraseblocks = { {4 * 1024, 32} },
7024 .block_erase = spi_block_erase_20,
7025 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007026 .eraseblocks = { {64 * 1024, 2} },
7027 .block_erase = spi_block_erase_d8,
7028 }, {
7029 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007030 .block_erase = spi_block_erase_c7,
7031 }
7032 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007033 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007034 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007035 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007036 },
7037
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007038 {
7039 .vendor = "Winbond",
7040 .name = "W25x20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007041 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007042 .manufacture_id = WINBOND_NEX_ID,
7043 .model_id = W_25X20,
7044 .total_size = 256,
7045 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007046 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007047 .tested = TEST_UNTESTED,
7048 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007049 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007050 .block_erasers =
7051 {
7052 {
7053 .eraseblocks = { {4 * 1024, 64} },
7054 .block_erase = spi_block_erase_20,
7055 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007056 .eraseblocks = { {64 * 1024, 4} },
7057 .block_erase = spi_block_erase_d8,
7058 }, {
7059 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007060 .block_erase = spi_block_erase_c7,
7061 }
7062 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007063 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007064 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007065 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007066 },
7067
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007068 {
7069 .vendor = "Winbond",
7070 .name = "W25x40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007071 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007072 .manufacture_id = WINBOND_NEX_ID,
7073 .model_id = W_25X40,
7074 .total_size = 512,
7075 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007076 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00007077 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007078 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007079 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007080 .block_erasers =
7081 {
7082 {
7083 .eraseblocks = { {4 * 1024, 128} },
7084 .block_erase = spi_block_erase_20,
7085 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007086 .eraseblocks = { {64 * 1024, 8} },
7087 .block_erase = spi_block_erase_d8,
7088 }, {
7089 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007090 .block_erase = spi_block_erase_c7,
7091 }
7092 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007093 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007094 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007095 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007096 },
7097
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007098 {
7099 .vendor = "Winbond",
7100 .name = "W25x80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007101 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007102 .manufacture_id = WINBOND_NEX_ID,
7103 .model_id = W_25X80,
7104 .total_size = 1024,
7105 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007106 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00007107 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007108 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007109 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007110 .block_erasers =
7111 {
7112 {
7113 .eraseblocks = { {4 * 1024, 256} },
7114 .block_erase = spi_block_erase_20,
7115 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007116 .eraseblocks = { {64 * 1024, 16} },
7117 .block_erase = spi_block_erase_d8,
7118 }, {
7119 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007120 .block_erase = spi_block_erase_c7,
7121 }
7122 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007123 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007124 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007125 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007126 },
7127
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007128 {
7129 .vendor = "Winbond",
Hector Martina721ae22009-07-11 19:39:11 +00007130 .name = "W25x16",
7131 .bustype = CHIP_BUSTYPE_SPI,
7132 .manufacture_id = WINBOND_NEX_ID,
7133 .model_id = W_25X16,
7134 .total_size = 2048,
7135 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007136 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00007137 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +00007138 .probe = probe_spi_rdid,
7139 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007140 .block_erasers =
7141 {
7142 {
7143 .eraseblocks = { {4 * 1024, 512} },
7144 .block_erase = spi_block_erase_20,
7145 }, {
7146 .eraseblocks = { {32 * 1024, 64} },
7147 .block_erase = spi_block_erase_52,
7148 }, {
7149 .eraseblocks = { {64 * 1024, 32} },
7150 .block_erase = spi_block_erase_d8,
7151 }, {
7152 .eraseblocks = { {2 * 1024 * 1024, 1} },
7153 .block_erase = spi_block_erase_60,
7154 }, {
7155 .eraseblocks = { {2 * 1024 * 1024, 1} },
7156 .block_erase = spi_block_erase_c7,
7157 }
7158 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007159 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +00007160 .write = spi_chip_write_256,
7161 .read = spi_chip_read,
7162 },
7163
7164 {
7165 .vendor = "Winbond",
Zheng Bao1db2b752009-11-26 11:05:01 +00007166 .name = "W25x32",
7167 .bustype = CHIP_BUSTYPE_SPI,
7168 .manufacture_id = WINBOND_NEX_ID,
7169 .model_id = W_25X32,
7170 .total_size = 4096,
7171 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007172 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +00007173 .tested = TEST_OK_PROBE,
7174 .probe = probe_spi_rdid,
7175 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007176 .block_erasers =
7177 {
7178 {
7179 .eraseblocks = { {4 * 1024, 1024} },
7180 .block_erase = spi_block_erase_20,
7181 }, {
7182 .eraseblocks = { {32 * 1024, 128} },
7183 .block_erase = spi_block_erase_52,
7184 }, {
7185 .eraseblocks = { {64 * 1024, 64} },
7186 .block_erase = spi_block_erase_d8,
7187 }, {
7188 .eraseblocks = { {4 * 1024 * 1024, 1} },
7189 .block_erase = spi_block_erase_60,
7190 }, {
7191 .eraseblocks = { {4 * 1024 * 1024, 1} },
7192 .block_erase = spi_block_erase_c7,
7193 }
7194 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007195 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00007196 .write = spi_chip_write_256,
7197 .read = spi_chip_read,
7198 },
7199
7200 {
7201 .vendor = "Winbond",
7202 .name = "W25x64",
7203 .bustype = CHIP_BUSTYPE_SPI,
7204 .manufacture_id = WINBOND_NEX_ID,
7205 .model_id = W_25X64,
7206 .total_size = 8192,
7207 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00007208 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +00007209 .tested = TEST_UNTESTED,
7210 .probe = probe_spi_rdid,
7211 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007212 .block_erasers =
7213 {
7214 {
7215 .eraseblocks = { {4 * 1024, 2048} },
7216 .block_erase = spi_block_erase_20,
7217 }, {
7218 .eraseblocks = { {32 * 1024, 256} },
7219 .block_erase = spi_block_erase_52,
7220 }, {
7221 .eraseblocks = { {64 * 1024, 128} },
7222 .block_erase = spi_block_erase_d8,
7223 }, {
7224 .eraseblocks = { {8 * 1024 * 1024, 1} },
7225 .block_erase = spi_block_erase_60,
7226 }, {
7227 .eraseblocks = { {8 * 1024 * 1024, 1} },
7228 .block_erase = spi_block_erase_c7,
7229 }
7230 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007231 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00007232 .write = spi_chip_write_256,
7233 .read = spi_chip_read,
7234 },
7235
7236 {
7237 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007238 .name = "W29C011",
Urja Rannikko038a3122009-06-28 19:19:25 +00007239 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007240 .manufacture_id = WINBOND_ID,
7241 .model_id = W_29C011,
7242 .total_size = 128,
7243 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007244 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00007245 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007246 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007247 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007248 .block_erasers =
7249 {
7250 {
7251 .eraseblocks = { {128 * 1024, 1} },
7252 .block_erase = erase_chip_block_jedec,
7253 }
7254 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007255 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007256 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007257 },
7258
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007259 {
7260 .vendor = "Winbond",
7261 .name = "W29C020C",
Urja Rannikko161b8852009-06-05 08:47:37 +00007262 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007263 .manufacture_id = WINBOND_ID,
7264 .model_id = W_29C020C,
7265 .total_size = 256,
7266 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007267 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermannea5425b2010-05-30 17:00:19 +00007268 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007269 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007270 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007271 .block_erasers =
7272 {
7273 {
7274 .eraseblocks = { {256 * 1024, 1} },
7275 .block_erase = erase_chip_block_jedec,
7276 }
7277 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007278 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007279 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007280 },
7281
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007282 {
7283 .vendor = "Winbond",
7284 .name = "W29C040P",
Urja Rannikko161b8852009-06-05 08:47:37 +00007285 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007286 .manufacture_id = WINBOND_ID,
7287 .model_id = W_29C040P,
7288 .total_size = 512,
7289 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00007290 .feature_bits = FEATURE_LONG_RESET,
7291 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007292 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007293 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007294 .block_erasers =
7295 {
7296 {
7297 .eraseblocks = { {512 * 1024, 1} },
7298 .block_erase = erase_chip_block_jedec,
7299 }
7300 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007301 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007302 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007303 },
7304
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007305 {
7306 .vendor = "Winbond",
7307 .name = "W29EE011",
Urja Rannikko038a3122009-06-28 19:19:25 +00007308 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007309 .manufacture_id = WINBOND_ID,
7310 .model_id = W_29C011,
7311 .total_size = 128,
7312 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007313 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann1e94fa62010-08-08 15:52:07 +00007314 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007315 .probe = probe_w29ee011,
Maciej Pijankac6e11112009-06-03 14:46:22 +00007316 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (w29ee011.c) */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007317 .block_erasers =
7318 {
7319 {
7320 .eraseblocks = { {128 * 1024, 1} },
7321 .block_erase = erase_chip_block_jedec,
7322 }
7323 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007324 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007325 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007326 },
7327
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007328 {
7329 .vendor = "Winbond",
7330 .name = "W39V040A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007331 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007332 .manufacture_id = WINBOND_ID,
7333 .model_id = W_39V040A,
7334 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00007335 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007336 .feature_bits = FEATURE_EITHER_RESET,
Michael Karcher3355f062010-03-24 22:56:23 +00007337 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007338 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007339 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007340 .block_erasers =
7341 {
7342 {
7343 .eraseblocks = { {64 * 1024, 8} },
7344 .block_erase = erase_sector_jedec,
7345 }, {
7346 .eraseblocks = { {512 * 1024, 1} },
7347 .block_erase = erase_chip_block_jedec,
7348 }
7349 },
Sean Nelson35727f72010-01-28 23:55:12 +00007350 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007351 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007352 },
7353
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007354 {
7355 .vendor = "Winbond",
7356 .name = "W39V040B",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007357 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007358 .manufacture_id = WINBOND_ID,
7359 .model_id = W_39V040B,
7360 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00007361 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007362 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann8d341b52010-05-25 23:27:44 +00007363 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007364 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007365 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007366 .block_erasers =
7367 {
7368 {
7369 .eraseblocks = { {64 * 1024, 8} },
7370 .block_erase = erase_sector_jedec,
7371 }, {
7372 .eraseblocks = { {512 * 1024, 1} },
7373 .block_erase = erase_chip_block_jedec,
7374 }
7375 },
Sean Nelson35727f72010-01-28 23:55:12 +00007376 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007377 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007378 },
7379
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007380 {
7381 .vendor = "Winbond",
7382 .name = "W39V040C",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007383 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007384 .manufacture_id = WINBOND_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00007385 .model_id = W_39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007386 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00007387 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007388 .feature_bits = FEATURE_EITHER_RESET,
7389 .tested = TEST_UNTESTED,
7390 .probe = probe_jedec,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00007391 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007392 .block_erasers =
7393 {
7394 {
7395 .eraseblocks = { {64 * 1024, 8} },
7396 .block_erase = erase_sector_jedec,
7397 }, {
7398 .eraseblocks = { {512 * 1024, 1} },
7399 .block_erase = erase_chip_block_jedec,
7400 }
7401 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007402 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +00007403 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007404 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007405 },
7406
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007407 {
7408 .vendor = "Winbond",
7409 .name = "W39V040FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007410 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007411 .manufacture_id = WINBOND_ID,
7412 .model_id = W_39V040FA,
7413 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00007414 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +00007415 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Uwe Hermann41787602010-05-30 17:50:16 +00007416 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007417 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007418 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007419 .block_erasers =
7420 {
7421 {
7422 .eraseblocks = { {4 * 1024, 128} },
7423 .block_erase = erase_block_jedec,
7424 }, {
7425 .eraseblocks = { {64 * 1024, 8} },
7426 .block_erase = erase_sector_jedec,
7427 }, {
7428 .eraseblocks = { {512 * 1024, 1} },
7429 .block_erase = erase_chip_block_jedec,
7430 }
7431 },
Michael Karcherc9b63412010-05-30 16:55:18 +00007432 .printlock = printlock_sst_fwhub,
7433 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00007434 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007435 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007436 },
7437
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007438 {
7439 .vendor = "Winbond",
7440 .name = "W39V080A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007441 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007442 .manufacture_id = WINBOND_ID,
7443 .model_id = W_39V080A,
7444 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00007445 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007446 .feature_bits = FEATURE_EITHER_RESET,
7447 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007448 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007449 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007450 .block_erasers =
7451 {
7452 {
7453 .eraseblocks = { {64 * 1024, 16} },
7454 .block_erase = erase_sector_jedec,
7455 }, {
7456 .eraseblocks = { {1024 * 1024, 1} },
7457 .block_erase = erase_chip_block_jedec,
7458 }
7459 },
Sean Nelson35727f72010-01-28 23:55:12 +00007460 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007461 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007462 },
7463
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007464 {
7465 .vendor = "Winbond",
7466 .name = "W49F002U",
Urja Rannikko038a3122009-06-28 19:19:25 +00007467 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007468 .manufacture_id = WINBOND_ID,
7469 .model_id = W_49F002U,
7470 .total_size = 256,
7471 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007472 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann51afebb2010-08-01 00:13:49 +00007473 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007474 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007475 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007476 .block_erasers =
7477 {
7478 {
7479 .eraseblocks = {
7480 {128 * 1024, 1},
7481 {96 * 1024, 1},
7482 {8 * 1024, 2},
7483 {16 * 1024, 1},
7484 },
7485 .block_erase = erase_sector_jedec,
7486 }, {
7487 .eraseblocks = { {256 * 1024, 1} },
7488 .block_erase = erase_chip_block_jedec,
7489 }
7490 },
Sean Nelson35727f72010-01-28 23:55:12 +00007491 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007492 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007493 },
7494
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007495 {
7496 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00007497 .name = "W49F020",
7498 .bustype = CHIP_BUSTYPE_PARALLEL,
7499 .manufacture_id = WINBOND_ID,
7500 .model_id = W_49F020,
7501 .total_size = 256,
7502 .page_size = 128,
7503 .feature_bits = FEATURE_EITHER_RESET,
7504 .tested = TEST_OK_PROBE,
7505 .probe = probe_jedec,
7506 .probe_timing = 10,
7507 .block_erasers =
7508 {
7509 {
7510 .eraseblocks = { {256 * 1024, 1} },
7511 .block_erase = erase_chip_block_jedec,
7512 }
7513 },
7514 .write = write_jedec_1,
7515 .read = read_memmapped,
7516 },
7517
7518 {
7519 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007520 .name = "W49V002A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007521 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007522 .manufacture_id = WINBOND_ID,
7523 .model_id = W_49V002A,
7524 .total_size = 256,
7525 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007526 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermannc2521ab2010-07-29 22:39:47 +00007527 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007528 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007529 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007530 .block_erasers =
7531 {
7532 {
7533 .eraseblocks = {
7534 {64 * 1024, 3},
7535 {32 * 1024, 1},
7536 {8 * 1024, 2},
7537 {16 * 1024, 1},
7538 },
7539 .block_erase = erase_sector_jedec,
7540 }, {
7541 .eraseblocks = { {256 * 1024, 1} },
7542 .block_erase = erase_chip_block_jedec,
7543 }
7544 },
Sean Nelson35727f72010-01-28 23:55:12 +00007545 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007546 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007547 },
7548
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007549 {
7550 .vendor = "Winbond",
7551 .name = "W49V002FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007552 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007553 .manufacture_id = WINBOND_ID,
7554 .model_id = W_49V002FA,
7555 .total_size = 256,
7556 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00007557 .feature_bits = FEATURE_EITHER_RESET,
Michael Karcherb90c2212010-03-24 22:56:14 +00007558 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007559 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007560 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007561 .block_erasers =
7562 {
7563 {
7564 .eraseblocks = {
7565 {64 * 1024, 3},
7566 {32 * 1024, 1},
7567 {8 * 1024, 2},
7568 {16 * 1024, 1},
7569 },
7570 .block_erase = erase_sector_jedec,
7571 }, {
7572 .eraseblocks = { {256 * 1024, 1} },
7573 .block_erase = erase_chip_block_jedec,
7574 }
7575 },
Sean Nelson35727f72010-01-28 23:55:12 +00007576 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007577 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007578 },
7579
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007580 {
7581 .vendor = "Winbond",
7582 .name = "W39V080FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007583 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007584 .manufacture_id = WINBOND_ID,
7585 .model_id = W_39V080FA,
7586 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00007587 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007588 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Uwe Hermannea5425b2010-05-30 17:00:19 +00007589 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007590 .probe = probe_jedec,
7591 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007592 .block_erasers =
7593 {
7594 {
7595 .eraseblocks = { {64 * 1024, 16}, },
7596 .block_erase = erase_sector_jedec,
7597 }, {
7598 .eraseblocks = { {1024 * 1024, 1} },
7599 .block_erase = erase_chip_block_jedec,
7600 }
7601 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007602 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00007603 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007604 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007605 },
7606
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007607 {
7608 .vendor = "Winbond",
7609 .name = "W39V080FA (dual mode)",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00007610 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007611 .manufacture_id = WINBOND_ID,
7612 .model_id = W_39V080FA_DM,
7613 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00007614 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007615 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007616 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007617 .probe = probe_jedec,
7618 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00007619 .block_erasers =
7620 {
7621 {
7622 .eraseblocks = { {64 * 1024, 8}, },
7623 .block_erase = erase_sector_jedec,
7624 }, {
7625 .eraseblocks = { {512 * 1024, 1} },
7626 .block_erase = erase_chip_block_jedec,
7627 }
7628 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007629 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00007630 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007631 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00007632 },
7633
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007634 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00007635 .vendor = "AMIC",
7636 .name = "unknown AMIC SPI chip",
7637 .bustype = CHIP_BUSTYPE_SPI,
7638 .manufacture_id = AMIC_ID,
7639 .model_id = GENERIC_DEVICE_ID,
7640 .total_size = 0,
7641 .page_size = 256,
7642 .tested = TEST_BAD_PREW,
7643 .probe = probe_spi_rdid4,
7644 .probe_timing = TIMING_ZERO,
7645 .write = NULL,
7646 .read = NULL,
7647 },
7648
7649 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007650 .vendor = "Atmel",
7651 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007652 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007653 .manufacture_id = ATMEL_ID,
7654 .model_id = GENERIC_DEVICE_ID,
7655 .total_size = 0,
7656 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007657 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007658 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007659 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007660 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007661 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007662 },
7663
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007664 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00007665 .vendor = "Eon",
7666 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007667 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007668 .manufacture_id = EON_ID_NOPREFIX,
7669 .model_id = GENERIC_DEVICE_ID,
7670 .total_size = 0,
7671 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007672 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007673 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007674 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007675 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007676 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007677 },
7678
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007679 {
7680 .vendor = "Macronix",
7681 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007682 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007683 .manufacture_id = MX_ID,
7684 .model_id = GENERIC_DEVICE_ID,
7685 .total_size = 0,
7686 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007687 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007688 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007689 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007690 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007691 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007692 },
7693
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007694 {
7695 .vendor = "PMC",
7696 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007697 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007698 .manufacture_id = PMC_ID,
7699 .model_id = GENERIC_DEVICE_ID,
7700 .total_size = 0,
7701 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007702 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007703 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007704 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007705 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007706 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007707 },
7708
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007709 {
7710 .vendor = "SST",
7711 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007712 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007713 .manufacture_id = SST_ID,
7714 .model_id = GENERIC_DEVICE_ID,
7715 .total_size = 0,
7716 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007717 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007718 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007719 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007720 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007721 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007722 },
7723
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007724 {
7725 .vendor = "ST",
7726 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00007727 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007728 .manufacture_id = ST_ID,
7729 .model_id = GENERIC_DEVICE_ID,
7730 .total_size = 0,
7731 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00007732 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007733 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007734 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007735 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007736 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00007737 },
Uwe Hermannfc425e82008-03-16 02:06:25 +00007738
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00007739 {
Sean Nelson118e1d62009-11-24 02:08:11 +00007740 .vendor = "Sanyo",
7741 .name = "unknown Sanyo SPI chip",
7742 .bustype = CHIP_BUSTYPE_SPI,
7743 .manufacture_id = SANYO_ID,
7744 .model_id = GENERIC_DEVICE_ID,
7745 .total_size = 0,
7746 .page_size = 256,
7747 .tested = TEST_BAD_PREW,
7748 .probe = probe_spi_rdid,
7749 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +00007750 .write = NULL,
7751 .read = NULL,
7752 },
7753
7754 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00007755 .vendor = "Generic",
7756 .name = "unknown SPI chip (RDID)",
7757 .bustype = CHIP_BUSTYPE_SPI,
7758 .manufacture_id = GENERIC_MANUF_ID,
7759 .model_id = GENERIC_DEVICE_ID,
7760 .total_size = 0,
7761 .page_size = 256,
7762 .tested = TEST_BAD_PREW,
7763 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00007764 .write = NULL,
7765 },
7766 {
7767 .vendor = "Generic",
7768 .name = "unknown SPI chip (REMS)",
7769 .bustype = CHIP_BUSTYPE_SPI,
7770 .manufacture_id = GENERIC_MANUF_ID,
7771 .model_id = GENERIC_DEVICE_ID,
7772 .total_size = 0,
7773 .page_size = 256,
7774 .tested = TEST_BAD_PREW,
7775 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00007776 .write = NULL,
7777 },
7778
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007779 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +00007780};