blob: 86c766bec22f964e951f478baac4f071177cf6f7 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp
Stefan Reinauer4c390c82008-07-02 13:33:09 +00006 * Copyright (C) 2005-2008 coresystems GmbH <stepan@openbios.org>
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00007 * Copyright (C) 2006-2009 Carl-Daniel Hailfinger
Sean Nelsonc57a9202010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Uwe Hermannd1107642007-08-29 17:52:32 +00009 *
Stefan Reinauerce532972007-05-23 17:20:56 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Ollie Lho184a4042005-11-26 21:55:36 +000014 *
Stefan Reinauerce532972007-05-23 17:20:56 +000015 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Ollie Lho184a4042005-11-26 21:55:36 +000019 *
Stefan Reinauerce532972007-05-23 17:20:56 +000020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Uwe Hermannd1107642007-08-29 17:52:32 +000022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000023 */
24
25#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000026#include "flashchips.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000027#include "chipdrivers.h"
Ollie Lho184a4042005-11-26 21:55:36 +000028
Uwe Hermannfc425e82008-03-16 02:06:25 +000029/**
Uwe Hermanna9720402009-05-21 15:55:46 +000030 * List of supported flash chips.
Uwe Hermannfc425e82008-03-16 02:06:25 +000031 *
32 * Please keep the list sorted by vendor name and chip name, so that
33 * the output of 'flashrom -L' is alphabetically sorted.
34 */
Ollie Lho184a4042005-11-26 21:55:36 +000035struct flashchip flashchips[] = {
Uwe Hermannfc425e82008-03-16 02:06:25 +000036
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000037 /*
38 * .vendor = Vendor name
39 * .name = Chip name
40 * .bustype = Supported flash bus types (Parallel, LPC...)
41 * .manufacture_id = Manufacturer chip ID
42 * .model_id = Model chip ID
43 * .total_size = Total size in (binary) kbytes
44 * .page_size = Page or eraseblock(?) size in bytes
45 * .tested = Test status
46 * .probe = Probe function
47 * .probe_timing = Probe function delay
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +000048 * .block_erasers[] = Array of erase layouts and erase functions
49 * {
50 * .eraseblocks[] = Array of { blocksize, blockcount }
51 * .block_erase = Block erase function
52 * }
Sean Nelson6e0b9122010-02-19 00:52:10 +000053 * .printlock = Chip lock status function
54 * .unlock = Chip unlock function
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000055 * .write = Chip write function
56 * .read = Chip read function
FENG yu ningff692fb2008-12-08 18:15:10 +000057 */
58
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000059 {
60 .vendor = "AMD",
Uwe Hermanna8b37272009-06-19 15:54:39 +000061 .name = "Am29F010A/B",
62 .bustype = CHIP_BUSTYPE_PARALLEL,
63 .manufacture_id = AMD_ID,
64 .model_id = AM_29F010B, /* Same as Am29F010A */
65 .total_size = 128,
66 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000067 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
68 .tested = TEST_UNTESTED,
69 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000070 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000071 .block_erasers =
72 {
73 {
74 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000075 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000076 }, {
77 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000078 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000079 },
80 },
Sean Nelson35727f72010-01-28 23:55:12 +000081 .write = write_jedec_1,
Uwe Hermanna8b37272009-06-19 15:54:39 +000082 .read = read_memmapped,
83 },
84
85 {
86 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000087 .name = "Am29F002(N)BB",
Urja Rannikko038a3122009-06-28 19:19:25 +000088 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000089 .manufacture_id = AMD_ID,
90 .model_id = AM_29F002BB,
91 .total_size = 256,
92 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000093 .feature_bits = FEATURE_SHORT_RESET | FEATURE_ADDR_2AA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000094 .tested = TEST_UNTESTED,
95 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000096 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000097 .block_erasers =
98 {
99 {
100 .eraseblocks = {
101 {16 * 1024, 1},
102 {8 * 1024, 2},
103 {32 * 1024, 1},
104 {64 * 1024, 3},
105 },
106 .block_erase = erase_sector_jedec,
107 }, {
108 .eraseblocks = { {256 * 1024, 1} },
109 .block_erase = erase_chip_block_jedec,
110 },
111 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000112 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000113 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000114 },
115
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000116 {
117 .vendor = "AMD",
118 .name = "Am29F002(N)BT",
Urja Rannikko038a3122009-06-28 19:19:25 +0000119 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000120 .manufacture_id = AMD_ID,
121 .model_id = AM_29F002BT,
122 .total_size = 256,
123 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000124 .feature_bits = FEATURE_EITHER_RESET | FEATURE_ADDR_2AA,
125 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000126 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000127 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000128 .block_erasers =
129 {
130 {
131 .eraseblocks = {
132 {64 * 1024, 3},
133 {32 * 1024, 1},
134 {8 * 1024, 2},
135 {16 * 1024, 1},
136 },
137 .block_erase = erase_sector_jedec,
138 }, {
139 .eraseblocks = { {256 * 1024, 1} },
140 .block_erase = erase_chip_block_jedec,
141 },
142 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000143 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000144 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000145 },
146
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000147 {
148 .vendor = "AMD",
149 .name = "Am29F016D",
Urja Rannikko038a3122009-06-28 19:19:25 +0000150 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000151 .manufacture_id = AMD_ID,
152 .model_id = AM_29F016D,
Sean Nelson72a9a022009-12-22 22:15:33 +0000153 .total_size = 2 * 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000154 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000155 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000156 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000157 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000158 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000159 .block_erasers =
160 {
161 {
162 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson35727f72010-01-28 23:55:12 +0000163 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000164 }, {
165 .eraseblocks = { {2048 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000166 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000167 },
168 },
Sean Nelson35727f72010-01-28 23:55:12 +0000169 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000170 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000171 },
172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000173 {
174 .vendor = "AMD",
175 .name = "Am29F040B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000176 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000177 .manufacture_id = AMD_ID,
178 .model_id = AM_29F040B,
179 .total_size = 512,
180 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000181 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
182 .tested = TEST_UNTESTED,
183 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000184 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000185 .block_erasers =
186 {
187 {
188 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000189 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000190 }, {
191 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000192 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000193 },
194 },
Sean Nelson35727f72010-01-28 23:55:12 +0000195 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000196 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000197 },
198
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000199 {
200 .vendor = "AMD",
Peter Stuge8440cc02009-01-25 23:55:12 +0000201 .name = "Am29F080B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000202 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000203 .manufacture_id = AMD_ID,
204 .model_id = AM_29F080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000205 .total_size = 1024,
206 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000207 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000208 .tested = TEST_UNTESTED,
209 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000210 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000211 .block_erasers =
212 {
213 {
214 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000215 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000216 }, {
217 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000218 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000219 },
220 },
Sean Nelson35727f72010-01-28 23:55:12 +0000221 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000222 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +0000223 },
224
225 {
226 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000227 .name = "Am29LV040B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000228 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000229 .manufacture_id = AMD_ID,
230 .model_id = AM_29LV040B,
231 .total_size = 512,
232 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000233 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000234 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000235 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000236 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000237 .block_erasers =
238 {
239 {
240 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000241 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000242 }, {
243 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000244 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000245 },
246 },
Sean Nelson35727f72010-01-28 23:55:12 +0000247 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000248 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000249 },
250
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000251 {
Peter Stuge8440cc02009-01-25 23:55:12 +0000252 .vendor = "AMD",
253 .name = "Am29LV081B",
Urja Rannikko038a3122009-06-28 19:19:25 +0000254 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000255 .manufacture_id = AMD_ID,
Carl-Daniel Hailfinger6d5d2532009-08-10 10:14:23 +0000256 .model_id = AM_29LV080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000257 .total_size = 1024,
258 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000259 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000260 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000261 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000262 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +0000263 .block_erasers =
264 {
265 {
266 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000267 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000268 }, {
269 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000270 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000271 },
272 },
Sean Nelson35727f72010-01-28 23:55:12 +0000273 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000274 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +0000275 },
276
277 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000278 .vendor = "ASD",
279 .name = "AE49F2008",
Urja Rannikko038a3122009-06-28 19:19:25 +0000280 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000281 .manufacture_id = ASD_ID,
282 .model_id = ASD_AE49F2008,
283 .total_size = 256,
284 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000285 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000286 .tested = TEST_UNTESTED,
287 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000288 .probe_timing = TIMING_FIXME,
Sean Nelson54596372010-01-09 05:30:14 +0000289 .block_erasers =
290 {
291 {
292 .eraseblocks = {
293 {128 * 1024, 1},
294 {96 * 1024, 1},
295 {8 * 1024, 2},
296 {16 * 1024, 1},
297 },
298 .block_erase = erase_sector_jedec,
299 }, {
300 .eraseblocks = { {256 * 1024, 1} },
301 .block_erase = erase_chip_block_jedec,
302 }
303 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000304 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000305 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000306 },
307
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000308 {
309 .vendor = "Atmel",
310 .name = "AT25DF021",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000311 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000312 .manufacture_id = ATMEL_ID,
313 .model_id = AT_25DF021,
314 .total_size = 256,
315 .page_size = 256,
316 .tested = TEST_UNTESTED,
317 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000318 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000319 .block_erasers =
320 {
321 {
322 .eraseblocks = { {4 * 1024, 64} },
323 .block_erase = spi_block_erase_20,
324 }, {
325 .eraseblocks = { {32 * 1024, 8} },
326 .block_erase = spi_block_erase_52,
327 }, {
328 .eraseblocks = { {64 * 1024, 4} },
329 .block_erase = spi_block_erase_d8,
330 }, {
331 .eraseblocks = { {256 * 1024, 1} },
332 .block_erase = spi_block_erase_60,
333 }, {
334 .eraseblocks = { {256 * 1024, 1} },
335 .block_erase = spi_block_erase_c7,
336 }
337 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000338 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000339 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000340 },
341
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000342 {
343 .vendor = "Atmel",
344 .name = "AT25DF041A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000345 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000346 .manufacture_id = ATMEL_ID,
347 .model_id = AT_25DF041A,
348 .total_size = 512,
349 .page_size = 256,
350 .tested = TEST_UNTESTED,
351 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000352 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000353 .block_erasers =
354 {
355 {
356 .eraseblocks = { {4 * 1024, 128} },
357 .block_erase = spi_block_erase_20,
358 }, {
359 .eraseblocks = { {32 * 1024, 16} },
360 .block_erase = spi_block_erase_52,
361 }, {
362 .eraseblocks = { {64 * 1024, 8} },
363 .block_erase = spi_block_erase_d8,
364 }, {
365 .eraseblocks = { {512 * 1024, 1} },
366 .block_erase = spi_block_erase_60,
367 }, {
368 .eraseblocks = { {512 * 1024, 1} },
369 .block_erase = spi_block_erase_c7,
370 }
371 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000372 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000373 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000374 },
375
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000376 {
377 .vendor = "Atmel",
378 .name = "AT25DF081",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000379 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000380 .manufacture_id = ATMEL_ID,
381 .model_id = AT_25DF081,
382 .total_size = 1024,
383 .page_size = 256,
384 .tested = TEST_UNTESTED,
385 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000386 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000387 .block_erasers =
388 {
389 {
390 .eraseblocks = { {4 * 1024, 256} },
391 .block_erase = spi_block_erase_20,
392 }, {
393 .eraseblocks = { {32 * 1024, 32} },
394 .block_erase = spi_block_erase_52,
395 }, {
396 .eraseblocks = { {64 * 1024, 16} },
397 .block_erase = spi_block_erase_d8,
398 }, {
399 .eraseblocks = { {1024 * 1024, 1} },
400 .block_erase = spi_block_erase_60,
401 }, {
402 .eraseblocks = { {1024 * 1024, 1} },
403 .block_erase = spi_block_erase_c7,
404 }
405 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000406 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000407 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000408 },
409
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000410 {
411 .vendor = "Atmel",
412 .name = "AT25DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000413 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000414 .manufacture_id = ATMEL_ID,
415 .model_id = AT_25DF161,
416 .total_size = 2048,
417 .page_size = 256,
418 .tested = TEST_UNTESTED,
419 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000420 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000421 .block_erasers =
422 {
423 {
424 .eraseblocks = { {4 * 1024, 512} },
425 .block_erase = spi_block_erase_20,
426 }, {
427 .eraseblocks = { {32 * 1024, 64} },
428 .block_erase = spi_block_erase_52,
429 }, {
430 .eraseblocks = { {64 * 1024, 32} },
431 .block_erase = spi_block_erase_d8,
432 }, {
433 .eraseblocks = { {2 * 1024 * 1024, 1} },
434 .block_erase = spi_block_erase_60,
435 }, {
436 .eraseblocks = { {2 * 1024 * 1024, 1} },
437 .block_erase = spi_block_erase_c7,
438 }
439 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000440 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000441 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000442 },
443
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000444 {
445 .vendor = "Atmel",
446 .name = "AT25DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000447 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000448 .manufacture_id = ATMEL_ID,
449 .model_id = AT_25DF321,
450 .total_size = 4096,
451 .page_size = 256,
Sean Nelson89187292009-12-23 12:02:55 +0000452 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000453 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000454 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000455 .block_erasers =
456 {
457 {
458 .eraseblocks = { {4 * 1024, 1024} },
459 .block_erase = spi_block_erase_20,
460 }, {
461 .eraseblocks = { {32 * 1024, 128} },
462 .block_erase = spi_block_erase_52,
463 }, {
464 .eraseblocks = { {64 * 1024, 64} },
465 .block_erase = spi_block_erase_d8,
466 }, {
467 .eraseblocks = { {4 * 1024 * 1024, 1} },
468 .block_erase = spi_block_erase_60,
469 }, {
470 .eraseblocks = { {4 * 1024 * 1024, 1} },
471 .block_erase = spi_block_erase_c7,
472 }
473 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000474 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000475 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000476 },
477
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000478 {
479 .vendor = "Atmel",
480 .name = "AT25DF321A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000481 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000482 .manufacture_id = ATMEL_ID,
483 .model_id = AT_25DF321A,
484 .total_size = 4096,
485 .page_size = 256,
486 .tested = TEST_UNTESTED,
487 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000488 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000489 .block_erasers =
490 {
491 {
492 .eraseblocks = { {4 * 1024, 1024} },
493 .block_erase = spi_block_erase_20,
494 }, {
495 .eraseblocks = { {32 * 1024, 128} },
496 .block_erase = spi_block_erase_52,
497 }, {
498 .eraseblocks = { {64 * 1024, 64} },
499 .block_erase = spi_block_erase_d8,
500 }, {
501 .eraseblocks = { {4 * 1024 * 1024, 1} },
502 .block_erase = spi_block_erase_60,
503 }, {
504 .eraseblocks = { {4 * 1024 * 1024, 1} },
505 .block_erase = spi_block_erase_c7,
506 }
507 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000508 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000509 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000510 },
511
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000512 {
513 .vendor = "Atmel",
514 .name = "AT25DF641",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000515 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000516 .manufacture_id = ATMEL_ID,
517 .model_id = AT_25DF641,
518 .total_size = 8192,
519 .page_size = 256,
520 .tested = TEST_UNTESTED,
521 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000522 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000523 .block_erasers =
524 {
525 {
526 .eraseblocks = { {4 * 1024, 2048} },
527 .block_erase = spi_block_erase_20,
528 }, {
529 .eraseblocks = { {32 * 1024, 256} },
530 .block_erase = spi_block_erase_52,
531 }, {
532 .eraseblocks = { {64 * 1024, 128} },
533 .block_erase = spi_block_erase_d8,
534 }, {
535 .eraseblocks = { {8 * 1024 * 1024, 1} },
536 .block_erase = spi_block_erase_60,
537 }, {
538 .eraseblocks = { {8 * 1024 * 1024, 1} },
539 .block_erase = spi_block_erase_c7,
540 }
541 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000542 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000543 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000544 },
545
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000546 {
547 .vendor = "Atmel",
548 .name = "AT25F512B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000549 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000550 .manufacture_id = ATMEL_ID,
551 .model_id = AT_25F512B,
552 .total_size = 64,
553 .page_size = 256,
554 .tested = TEST_UNTESTED,
555 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000556 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000557 .block_erasers =
558 {
559 {
560 .eraseblocks = { {4 * 1024, 16} },
561 .block_erase = spi_block_erase_20,
562 }, {
563 .eraseblocks = { {32 * 1024, 2} },
564 .block_erase = spi_block_erase_52,
565 }, {
566 .eraseblocks = { {32 * 1024, 2} },
567 .block_erase = spi_block_erase_d8,
568 }, {
569 .eraseblocks = { {64 * 1024, 1} },
570 .block_erase = spi_block_erase_60,
571 }, {
572 .eraseblocks = { {64 * 1024, 1} },
573 .block_erase = spi_block_erase_c7,
574 }
575 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000576 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000577 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000578 },
579
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000580 {
581 .vendor = "Atmel",
582 .name = "AT25FS010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000583 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000584 .manufacture_id = ATMEL_ID,
585 .model_id = AT_25FS010,
586 .total_size = 128,
587 .page_size = 256,
588 .tested = TEST_UNTESTED,
589 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000590 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000591 .block_erasers =
592 {
593 {
594 .eraseblocks = { {4 * 1024, 32} },
595 .block_erase = spi_block_erase_20,
596 }, {
597 .eraseblocks = { {32 * 1024, 4} },
598 .block_erase = spi_block_erase_52,
599 }, {
600 .eraseblocks = { {32 * 1024, 4} },
601 .block_erase = spi_block_erase_d8,
602 }, {
603 .eraseblocks = { {128 * 1024, 1} },
604 .block_erase = spi_block_erase_60,
605 }, {
606 .eraseblocks = { {128 * 1024, 1} },
607 .block_erase = spi_block_erase_c7,
608 }
609 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000610 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000611 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000612 },
613
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000614 {
615 .vendor = "Atmel",
616 .name = "AT25FS040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000617 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000618 .manufacture_id = ATMEL_ID,
619 .model_id = AT_25FS040,
620 .total_size = 512,
621 .page_size = 256,
622 .tested = TEST_UNTESTED,
623 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000624 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000625 .block_erasers =
626 {
627 {
628 .eraseblocks = { {4 * 1024, 128} },
629 .block_erase = spi_block_erase_20,
630 }, {
631 .eraseblocks = { {64 * 1024, 8} },
632 .block_erase = spi_block_erase_52,
633 }, {
634 .eraseblocks = { {64 * 1024, 8} },
635 .block_erase = spi_block_erase_d8,
636 }, {
637 .eraseblocks = { {512 * 1024, 1} },
638 .block_erase = spi_block_erase_60,
639 }, {
640 .eraseblocks = { {512 * 1024, 1} },
641 .block_erase = spi_block_erase_c7,
642 }
643 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000644 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000645 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000646 },
647
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000648 {
649 .vendor = "Atmel",
650 .name = "AT26DF041",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000651 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000652 .manufacture_id = ATMEL_ID,
653 .model_id = AT_26DF041,
654 .total_size = 512,
655 .page_size = 256,
656 .tested = TEST_UNTESTED,
657 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000658 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000659 .block_erasers =
660 {
661 {
662 .eraseblocks = { {4 * 1024, 128} },
663 .block_erase = spi_block_erase_20,
664 }
665 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000666 .write = NULL /* Incompatible Page write */,
667 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000668 },
669
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000670 {
671 .vendor = "Atmel",
672 .name = "AT26DF081A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000673 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000674 .manufacture_id = ATMEL_ID,
675 .model_id = AT_26DF081A,
676 .total_size = 1024,
677 .page_size = 256,
678 .tested = TEST_UNTESTED,
679 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000680 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000681 .block_erasers =
682 {
683 {
684 .eraseblocks = { {4 * 1024, 256} },
685 .block_erase = spi_block_erase_20,
686 }, {
687 .eraseblocks = { {32 * 1024, 32} },
688 .block_erase = spi_block_erase_52,
689 }, {
690 .eraseblocks = { {64 * 1024, 16} },
691 .block_erase = spi_block_erase_d8,
692 }, {
693 .eraseblocks = { {1024 * 1024, 1} },
694 .block_erase = spi_block_erase_60,
695 }, {
696 .eraseblocks = { {1024 * 1024, 1} },
697 .block_erase = spi_block_erase_c7,
698 }
699 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000700 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000701 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000702 },
703
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000704 {
705 .vendor = "Atmel",
706 .name = "AT26DF161",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000707 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000708 .manufacture_id = ATMEL_ID,
709 .model_id = AT_26DF161,
710 .total_size = 2048,
711 .page_size = 256,
712 .tested = TEST_UNTESTED,
713 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000714 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000715 .block_erasers =
716 {
717 {
718 .eraseblocks = { {4 * 1024, 512} },
719 .block_erase = spi_block_erase_20,
720 }, {
721 .eraseblocks = { {32 * 1024, 64} },
722 .block_erase = spi_block_erase_52,
723 }, {
724 .eraseblocks = { {64 * 1024, 32} },
725 .block_erase = spi_block_erase_d8,
726 }, {
727 .eraseblocks = { {2 * 1024 * 1024, 1} },
728 .block_erase = spi_block_erase_60,
729 }, {
730 .eraseblocks = { {2 * 1024 * 1024, 1} },
731 .block_erase = spi_block_erase_c7,
732 }
733 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000734 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000735 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000736 },
737
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000738 {
739 .vendor = "Atmel",
740 .name = "AT26DF161A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000741 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000742 .manufacture_id = ATMEL_ID,
743 .model_id = AT_26DF161A,
744 .total_size = 2048,
745 .page_size = 256,
746 .tested = TEST_UNTESTED,
747 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000748 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000749 .block_erasers =
750 {
751 {
752 .eraseblocks = { {4 * 1024, 512} },
753 .block_erase = spi_block_erase_20,
754 }, {
755 .eraseblocks = { {32 * 1024, 64} },
756 .block_erase = spi_block_erase_52,
757 }, {
758 .eraseblocks = { {64 * 1024, 32} },
759 .block_erase = spi_block_erase_d8,
760 }, {
761 .eraseblocks = { {2 * 1024 * 1024, 1} },
762 .block_erase = spi_block_erase_60,
763 }, {
764 .eraseblocks = { {2 * 1024 * 1024, 1} },
765 .block_erase = spi_block_erase_c7,
766 }
767 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000768 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000769 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000770 },
771
772 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000773 /*{
774 .vendor = "Atmel",
775 .name = "AT26DF321",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000776 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000777 .manufacture_id = ATMEL_ID,
778 .model_id = AT_26DF321,
779 .total_size = 4096,
780 .page_size = 256,
781 .tested = TEST_UNTESTED,
782 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000783 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +0000784 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000785 .read = spi_chip_read,
786 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +0000787
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000788 {
789 .vendor = "Atmel",
790 .name = "AT26F004",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000791 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000792 .manufacture_id = ATMEL_ID,
793 .model_id = AT_26F004,
794 .total_size = 512,
795 .page_size = 256,
796 .tested = TEST_UNTESTED,
797 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000798 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +0000799 .block_erasers =
800 {
801 {
802 .eraseblocks = { {4 * 1024, 128} },
803 .block_erase = spi_block_erase_20,
804 }, {
805 .eraseblocks = { {32 * 1024, 16} },
806 .block_erase = spi_block_erase_52,
807 }, {
808 .eraseblocks = { {64 * 1024, 8} },
809 .block_erase = spi_block_erase_d8,
810 }, {
811 .eraseblocks = { {512 * 1024, 1} },
812 .block_erase = spi_block_erase_60,
813 }, {
814 .eraseblocks = { {512 * 1024, 1} },
815 .block_erase = spi_block_erase_c7,
816 }
817 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000818 .write = NULL /* Incompatible Page write */,
819 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +0000820 },
821
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000822 {
823 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000824 .name = "AT29C512",
Urja Rannikko038a3122009-06-28 19:19:25 +0000825 .bustype = CHIP_BUSTYPE_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000826 .manufacture_id = ATMEL_ID,
827 .model_id = AT_29C512,
828 .total_size = 64,
829 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000830 .feature_bits = FEATURE_LONG_RESET,
831 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000832 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000833 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +0000834 .block_erasers =
835 {
836 {
837 .eraseblocks = { {64 * 1024, 1} },
838 .block_erase = erase_chip_block_jedec,
839 }
840 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +0000841 .write = write_jedec,
842 .read = read_memmapped,
843
844 },
845
846 {
847 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000848 .name = "AT29C010A",
Urja Rannikko161b8852009-06-05 08:47:37 +0000849 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000850 .manufacture_id = ATMEL_ID,
851 .model_id = AT_29C010A,
852 .total_size = 128,
853 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +0000854 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +0000855 .tested = TEST_OK_PRW,
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000856 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +0000857 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +0000858 .block_erasers =
859 {
860 {
861 .eraseblocks = { {128 * 1024, 1} },
862 .block_erase = erase_chip_block_jedec,
863 }
864 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000865 .write = write_jedec, /* FIXME */
866 .read = read_memmapped,
867 },
868
869 {
870 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000871 .name = "AT29C020",
Urja Rannikko161b8852009-06-05 08:47:37 +0000872 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000873 .manufacture_id = ATMEL_ID,
874 .model_id = AT_29C020,
875 .total_size = 256,
876 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000877 .feature_bits = FEATURE_LONG_RESET,
878 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000879 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +0000880 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +0000881 .block_erasers =
882 {
883 {
884 .eraseblocks = { {256 * 1024, 1} },
885 .block_erase = erase_chip_block_jedec,
886 }
887 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000888 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000889 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000890 },
891
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000892 {
893 .vendor = "Atmel",
894 .name = "AT29C040A",
Urja Rannikko161b8852009-06-05 08:47:37 +0000895 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000896 .manufacture_id = ATMEL_ID,
897 .model_id = AT_29C040A,
898 .total_size = 512,
899 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000900 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000901 .tested = TEST_UNTESTED,
902 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +0000903 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +0000904 .block_erasers =
905 {
906 {
907 .eraseblocks = { {512 * 1024, 1} },
908 .block_erase = erase_chip_block_jedec,
909 }
910 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000911 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000912 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +0000913 },
914
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000915 {
916 .vendor = "Atmel",
917 .name = "AT45CS1282",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000918 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000919 .manufacture_id = ATMEL_ID,
920 .model_id = AT_45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000921 .total_size = 16896 /* No power of two sizes */,
922 .page_size = 1056 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000923 .tested = TEST_BAD_READ,
924 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000925 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000926 .write = NULL /* Incompatible Page write */,
927 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000928 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000929
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000930 {
931 .vendor = "Atmel",
932 .name = "AT45DB011D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000933 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000934 .manufacture_id = ATMEL_ID,
935 .model_id = AT_45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000936 .total_size = 128 /* Size can only be determined from status register */,
937 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000938 .tested = TEST_BAD_READ,
939 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000940 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000941 .write = NULL,
942 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000943 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000944
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000945 {
946 .vendor = "Atmel",
947 .name = "AT45DB021D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000948 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000949 .manufacture_id = ATMEL_ID,
950 .model_id = AT_45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000951 .total_size = 256 /* Size can only be determined from status register */,
952 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000953 .tested = TEST_BAD_READ,
954 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000955 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000956 .write = NULL,
957 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000958 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000959
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000960 {
961 .vendor = "Atmel",
962 .name = "AT45DB041D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000963 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000964 .manufacture_id = ATMEL_ID,
965 .model_id = AT_45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000966 .total_size = 512 /* Size can only be determined from status register */,
967 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000968 .tested = TEST_BAD_READ,
969 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000970 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000971 .write = NULL,
972 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000973 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000974
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000975 {
976 .vendor = "Atmel",
977 .name = "AT45DB081D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000978 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000979 .manufacture_id = ATMEL_ID,
980 .model_id = AT_45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000981 .total_size = 1024 /* Size can only be determined from status register */,
982 .page_size = 256 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000983 .tested = TEST_BAD_READ,
984 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +0000985 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000986 .write = NULL,
987 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000988 },
FENG yu ningff692fb2008-12-08 18:15:10 +0000989
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000990 {
991 .vendor = "Atmel",
992 .name = "AT45DB161D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000993 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000994 .manufacture_id = ATMEL_ID,
995 .model_id = AT_45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +0000996 .total_size = 2048 /* Size can only be determined from status register */,
997 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000998 .tested = TEST_BAD_READ,
999 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001000 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001001 .write = NULL,
1002 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001003 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001004
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001005 {
1006 .vendor = "Atmel",
1007 .name = "AT45DB321C",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001008 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001009 .manufacture_id = ATMEL_ID,
1010 .model_id = AT_45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001011 .total_size = 4224 /* No power of two sizes */,
1012 .page_size = 528 /* No power of two sizes */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001013 .tested = TEST_BAD_READ,
1014 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001015 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001016 .write = NULL,
1017 .read = NULL /* Incompatible read */,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001018 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001019
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001020 {
1021 .vendor = "Atmel",
1022 .name = "AT45DB321D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001023 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001024 .manufacture_id = ATMEL_ID,
1025 .model_id = AT_45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001026 .total_size = 4096 /* Size can only be determined from status register */,
1027 .page_size = 512 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001028 .tested = TEST_BAD_READ,
1029 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001030 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001031 .write = NULL,
1032 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001033 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001034
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001035 {
1036 .vendor = "Atmel",
1037 .name = "AT45DB642D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001038 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001039 .manufacture_id = ATMEL_ID,
1040 .model_id = AT_45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001041 .total_size = 8192 /* Size can only be determined from status register */,
1042 .page_size = 1024 /* Size can only be determined from status register */,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001043 .tested = TEST_BAD_READ,
1044 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001045 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001046 .write = NULL,
1047 .read = NULL,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00001048 },
FENG yu ningff692fb2008-12-08 18:15:10 +00001049
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001050 {
1051 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001052 .name = "AT49BV512",
Urja Rannikko161b8852009-06-05 08:47:37 +00001053 .bustype = CHIP_BUSTYPE_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001054 .manufacture_id = ATMEL_ID,
1055 .model_id = AT_49BV512,
1056 .total_size = 64,
1057 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00001058 .feature_bits = FEATURE_EITHER_RESET,
1059 .tested = TEST_UNTESTED,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001060 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001061 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001062 .block_erasers =
1063 {
1064 {
1065 .eraseblocks = { {64 * 1024, 1} },
1066 .block_erase = erase_chip_block_jedec,
1067 }
1068 },
Sean Nelson35727f72010-01-28 23:55:12 +00001069 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00001070 .read = read_memmapped,
1071 },
1072
1073 {
1074 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001075 .name = "AT49F002(N)",
Urja Rannikko161b8852009-06-05 08:47:37 +00001076 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001077 .manufacture_id = ATMEL_ID,
1078 .model_id = AT_49F002N,
1079 .total_size = 256,
1080 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001081 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001082 .tested = TEST_UNTESTED,
1083 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001084 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001085 .block_erasers =
1086 {
1087 {
1088 .eraseblocks = {
1089 {16 * 1024, 1},
1090 {8 * 1024, 2},
1091 {96 * 1024, 1},
1092 {128 * 1024, 1},
1093 },
1094 .block_erase = erase_sector_jedec,
1095 }, {
1096 .eraseblocks = { {256 * 1024, 1} },
1097 .block_erase = erase_chip_block_jedec,
1098 }
1099 },
Sean Nelson35727f72010-01-28 23:55:12 +00001100 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001101 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001102 },
1103
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001104 {
1105 .vendor = "Atmel",
1106 .name = "AT49F002(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00001107 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001108 .manufacture_id = ATMEL_ID,
1109 .model_id = AT_49F002NT,
1110 .total_size = 256,
1111 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00001112 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00001113 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001114 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001115 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00001116 .block_erasers =
1117 {
1118 {
1119 .eraseblocks = {
1120 {128 * 1024, 1},
1121 {96 * 1024, 1},
1122 {8 * 1024, 2},
1123 {16 * 1024, 1},
1124 },
1125 .block_erase = erase_sector_jedec,
1126 }, {
1127 .eraseblocks = { {256 * 1024, 1} },
1128 .block_erase = erase_chip_block_jedec,
1129 }
1130 },
Sean Nelson35727f72010-01-28 23:55:12 +00001131 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001132 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001133 },
1134
Sean Nelson54596372010-01-09 05:30:14 +00001135 /* The next two chip definitions have top/bottom boot blocks, but has no
1136 device differenciation between the two */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001137 {
1138 .vendor = "AMIC",
Sean Nelson54596372010-01-09 05:30:14 +00001139 .name = "A25L40PT",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001140 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001141 .manufacture_id = AMIC_ID,
1142 .model_id = AMIC_A25L40P,
1143 .total_size = 512,
1144 .page_size = 256,
Sean Nelson54596372010-01-09 05:30:14 +00001145 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001146 .probe = probe_spi_rdid4,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001147 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001148 .block_erasers =
1149 {
1150 {
1151 .eraseblocks = {
1152 {64 * 1024, 7},
1153 {32 * 1024, 1},
1154 {16 * 1024, 1},
1155 {8 * 1024, 1},
1156 {4 * 1024, 2},
1157 },
1158 .block_erase = spi_block_erase_d8,
1159 }, {
Sean Nelson2aff7aa2010-01-18 08:24:02 +00001160 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00001161 .block_erase = spi_block_erase_c7,
1162 }
1163 },
1164 .write = spi_chip_write_256,
1165 .read = spi_chip_read,
1166 },
1167
1168 {
1169 .vendor = "AMIC",
1170 .name = "A25L40PU",
1171 .bustype = CHIP_BUSTYPE_SPI,
1172 .manufacture_id = AMIC_ID,
1173 .model_id = AMIC_A25L40P,
1174 .total_size = 512,
1175 .page_size = 256,
1176 .tested = TEST_OK_PRW,
1177 .probe = probe_spi_rdid4,
1178 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001179 .block_erasers =
1180 {
1181 {
1182 .eraseblocks = {
1183 {4 * 1024, 2},
1184 {8 * 1024, 1},
1185 {16 * 1024, 1},
1186 {32 * 1024, 1},
1187 {64 * 1024, 7},
1188 },
1189 .block_erase = spi_block_erase_d8,
1190 }, {
Sean Nelson2aff7aa2010-01-18 08:24:02 +00001191 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00001192 .block_erase = spi_block_erase_c7,
1193 }
1194 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001195 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001196 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00001197 },
1198
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001199 {
1200 .vendor = "AMIC",
1201 .name = "A29002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00001202 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001203 .manufacture_id = AMIC_ID_NOPREFIX,
1204 .model_id = AMIC_A29002B,
1205 .total_size = 256,
1206 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001207 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001208 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00001209 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001210 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00001211 .block_erasers =
1212 {
1213 {
1214 .eraseblocks = {
1215 {16 * 1024, 1},
1216 {8 * 1024, 2},
1217 {32 * 1024, 1},
1218 {64 * 1024, 3},
1219 },
Sean Nelson35727f72010-01-28 23:55:12 +00001220 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001221 }, {
1222 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001223 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001224 },
1225 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00001226 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001227 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001228 },
1229
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001230 {
1231 .vendor = "AMIC",
1232 .name = "A29002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00001233 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001234 .manufacture_id = AMIC_ID_NOPREFIX,
1235 .model_id = AMIC_A29002T,
1236 .total_size = 256,
1237 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001238 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00001239 .tested = TEST_OK_PRW,
Sean Nelson35727f72010-01-28 23:55:12 +00001240 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001241 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00001242 .block_erasers =
1243 {
1244 {
1245 .eraseblocks = {
1246 {64 * 1024, 3},
1247 {32 * 1024, 1},
1248 {8 * 1024, 2},
1249 {16 * 1024, 1},
1250 },
Sean Nelson35727f72010-01-28 23:55:12 +00001251 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001252 }, {
1253 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001254 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001255 },
1256 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00001257 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001258 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001259 },
1260
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001261 {
1262 .vendor = "AMIC",
1263 .name = "A29040B",
Urja Rannikko161b8852009-06-05 08:47:37 +00001264 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001265 .manufacture_id = AMIC_ID_NOPREFIX,
1266 .model_id = AMIC_A29040B,
1267 .total_size = 512,
1268 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001269 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1270 .tested = TEST_UNTESTED,
1271 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001272 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson72a9a022009-12-22 22:15:33 +00001273 .block_erasers =
1274 {
1275 {
1276 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +00001277 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00001278 }, {
1279 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00001280 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00001281 },
1282 },
Sean Nelson35727f72010-01-28 23:55:12 +00001283 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001284 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001285 },
1286
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001287 {
1288 .vendor = "AMIC",
1289 .name = "A49LF040A",
Urja Rannikko161b8852009-06-05 08:47:37 +00001290 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001291 .manufacture_id = AMIC_ID_NOPREFIX,
1292 .model_id = AMIC_A49LF040A,
1293 .total_size = 512,
1294 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00001295 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
1296 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00001297 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001298 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson54596372010-01-09 05:30:14 +00001299 .block_erasers =
1300 {
1301 {
1302 .eraseblocks = { {64 * 1024, 8} },
1303 .block_erase = erase_block_jedec,
1304 }, {
1305 .eraseblocks = { {512 * 1024, 1} },
1306 .block_erase = erase_chip_block_jedec,
1307 }
1308 },
Sean Nelson36172342010-02-27 18:01:15 +00001309 .unlock = unlock_49fl00x,
1310 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001311 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001312 },
1313
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001314 {
1315 .vendor = "EMST",
1316 .name = "F49B002UA",
Urja Rannikko161b8852009-06-05 08:47:37 +00001317 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001318 .manufacture_id = EMST_ID,
1319 .model_id = EMST_F49B002UA,
1320 .total_size = 256,
1321 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00001322 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001323 .tested = TEST_UNTESTED,
1324 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00001325 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00001326 .block_erasers =
1327 {
1328 {
1329 .eraseblocks = {
1330 {128 * 1024, 1},
1331 {96 * 1024, 1},
1332 {8 * 1024, 2},
1333 {16 * 1024, 1},
1334 },
1335 .block_erase = erase_sector_jedec,
1336 }, {
1337 .eraseblocks = { {256 * 1024, 1} },
1338 .block_erase = erase_chip_block_jedec,
1339 }
1340 },
Sean Nelson35727f72010-01-28 23:55:12 +00001341 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001342 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00001343 },
1344
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001345 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001346 .vendor = "Eon",
1347 .name = "EN25B05",
1348 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001349 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001350 .model_id = EN_25B05,
1351 .total_size = 64,
1352 .page_size = 256,
1353 .tested = TEST_UNTESTED,
1354 .probe = probe_spi_rdid,
1355 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001356 .block_erasers =
1357 {
1358 {
1359 .eraseblocks = {
1360 {4 * 1024, 2},
1361 {8 * 1024, 1},
1362 {16 * 1024, 1},
1363 {32 * 1024, 1},
1364 },
1365 .block_erase = spi_block_erase_d8,
1366 }, {
1367 .eraseblocks = { {64 * 1024, 1} },
1368 .block_erase = spi_block_erase_c7,
1369 }
1370 },
1371 .write = spi_chip_write_256,
1372 .read = spi_chip_read,
1373 },
1374
1375 {
1376 .vendor = "Eon",
1377 .name = "EN25B05T",
1378 .bustype = CHIP_BUSTYPE_SPI,
1379 .manufacture_id = EON_ID_NOPREFIX,
1380 .model_id = EN_25B05,
1381 .total_size = 64,
1382 .page_size = 256,
1383 .tested = TEST_UNTESTED,
1384 .probe = probe_spi_rdid,
1385 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001386 .block_erasers =
1387 {
1388 {
1389 .eraseblocks = {
1390 {32 * 1024, 1},
1391 {16 * 1024, 1},
1392 {8 * 1024, 1},
1393 {4 * 1024, 2},
1394 },
1395 .block_erase = spi_block_erase_d8,
1396 }, {
1397 .eraseblocks = { {64 * 1024, 1} },
1398 .block_erase = spi_block_erase_c7,
1399 }
1400 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001401 .write = spi_chip_write_256,
1402 .read = spi_chip_read,
1403 },
1404
1405 {
1406 .vendor = "Eon",
1407 .name = "EN25B10",
1408 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001409 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001410 .model_id = EN_25B10,
1411 .total_size = 128,
1412 .page_size = 256,
1413 .tested = TEST_UNTESTED,
1414 .probe = probe_spi_rdid,
1415 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001416 .block_erasers =
1417 {
1418 {
1419 .eraseblocks = {
1420 {4 * 1024, 2},
1421 {8 * 1024, 1},
1422 {16 * 1024, 1},
1423 {32 * 1024, 3},
1424 },
1425 .block_erase = spi_block_erase_d8,
1426 }, {
1427 .eraseblocks = { {128 * 1024, 1} },
1428 .block_erase = spi_block_erase_c7,
1429 }
1430 },
1431 .write = spi_chip_write_256,
1432 .read = spi_chip_read,
1433 },
1434
1435 {
1436 .vendor = "Eon",
1437 .name = "EN25B10T",
1438 .bustype = CHIP_BUSTYPE_SPI,
1439 .manufacture_id = EON_ID_NOPREFIX,
1440 .model_id = EN_25B10,
1441 .total_size = 128,
1442 .page_size = 256,
1443 .tested = TEST_UNTESTED,
1444 .probe = probe_spi_rdid,
1445 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001446 .block_erasers =
1447 {
1448 {
1449 .eraseblocks = {
1450 {32 * 1024, 3},
1451 {16 * 1024, 1},
1452 {8 * 1024, 1},
1453 {4 * 1024, 2},
1454 },
1455 .block_erase = spi_block_erase_d8,
1456 }, {
1457 .eraseblocks = { {128 * 1024, 1} },
1458 .block_erase = spi_block_erase_c7,
1459 }
1460 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001461 .write = spi_chip_write_256,
1462 .read = spi_chip_read,
1463 },
1464
1465 {
1466 .vendor = "Eon",
1467 .name = "EN25B20",
1468 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001469 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001470 .model_id = EN_25B20,
1471 .total_size = 256,
1472 .page_size = 256,
1473 .tested = TEST_UNTESTED,
1474 .probe = probe_spi_rdid,
1475 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001476 .block_erasers =
1477 {
1478 {
1479 .eraseblocks = {
1480 {4 * 1024, 2},
1481 {8 * 1024, 1},
1482 {16 * 1024, 1},
1483 {32 * 1024, 1},
1484 {64 * 1024, 3}
1485 },
1486 .block_erase = spi_block_erase_d8,
1487 }, {
1488 .eraseblocks = { {256 * 1024, 1} },
1489 .block_erase = spi_block_erase_c7,
1490 }
1491 },
1492 .write = spi_chip_write_256,
1493 .read = spi_chip_read,
1494 },
1495
1496 {
1497 .vendor = "Eon",
1498 .name = "EN25B20T",
1499 .bustype = CHIP_BUSTYPE_SPI,
1500 .manufacture_id = EON_ID_NOPREFIX,
1501 .model_id = EN_25B20,
1502 .total_size = 256,
1503 .page_size = 256,
1504 .tested = TEST_UNTESTED,
1505 .probe = probe_spi_rdid,
1506 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001507 .block_erasers =
1508 {
1509 {
1510 .eraseblocks = {
1511 {64 * 1024, 3},
1512 {32 * 1024, 1},
1513 {16 * 1024, 1},
1514 {8 * 1024, 1},
1515 {4 * 1024, 2},
1516 },
1517 .block_erase = spi_block_erase_d8,
1518 }, {
1519 .eraseblocks = { {256 * 1024, 1} },
1520 .block_erase = spi_block_erase_c7,
1521 }
1522 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001523 .write = spi_chip_write_256,
1524 .read = spi_chip_read,
1525 },
1526
1527 {
1528 .vendor = "Eon",
1529 .name = "EN25B40",
1530 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001531 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001532 .model_id = EN_25B40,
1533 .total_size = 512,
1534 .page_size = 256,
1535 .tested = TEST_UNTESTED,
1536 .probe = probe_spi_rdid,
1537 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001538 .block_erasers =
1539 {
1540 {
1541 .eraseblocks = {
1542 {4 * 1024, 2},
1543 {8 * 1024, 1},
1544 {16 * 1024, 1},
1545 {32 * 1024, 1},
1546 {64 * 1024, 7}
1547 },
1548 .block_erase = spi_block_erase_d8,
1549 }, {
1550 .eraseblocks = { {512 * 1024, 1} },
1551 .block_erase = spi_block_erase_c7,
1552 }
1553 },
1554 .write = spi_chip_write_256,
1555 .read = spi_chip_read,
1556 },
1557
1558 {
1559 .vendor = "Eon",
1560 .name = "EN25B40T",
1561 .bustype = CHIP_BUSTYPE_SPI,
1562 .manufacture_id = EON_ID_NOPREFIX,
1563 .model_id = EN_25B40,
1564 .total_size = 512,
1565 .page_size = 256,
1566 .tested = TEST_UNTESTED,
1567 .probe = probe_spi_rdid,
1568 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001569 .block_erasers =
1570 {
1571 {
1572 .eraseblocks = {
1573 {64 * 1024, 7},
1574 {32 * 1024, 1},
1575 {16 * 1024, 1},
1576 {8 * 1024, 1},
1577 {4 * 1024, 2},
1578 },
1579 .block_erase = spi_block_erase_d8,
1580 }, {
1581 .eraseblocks = { {512 * 1024, 1} },
1582 .block_erase = spi_block_erase_c7,
1583 }
1584 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001585 .write = spi_chip_write_256,
1586 .read = spi_chip_read,
1587 },
1588
1589 {
1590 .vendor = "Eon",
1591 .name = "EN25B80",
1592 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001593 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001594 .model_id = EN_25B80,
1595 .total_size = 1024,
1596 .page_size = 256,
1597 .tested = TEST_UNTESTED,
1598 .probe = probe_spi_rdid,
1599 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001600 .block_erasers =
1601 {
1602 {
1603 .eraseblocks = {
1604 {4 * 1024, 2},
1605 {8 * 1024, 1},
1606 {16 * 1024, 1},
1607 {32 * 1024, 1},
1608 {64 * 1024, 15}
1609 },
1610 .block_erase = spi_block_erase_d8,
1611 }, {
1612 .eraseblocks = { {1024 * 1024, 1} },
1613 .block_erase = spi_block_erase_c7,
1614 }
1615 },
1616 .write = spi_chip_write_256,
1617 .read = spi_chip_read,
1618 },
1619
1620 {
1621 .vendor = "Eon",
1622 .name = "EN25B80T",
1623 .bustype = CHIP_BUSTYPE_SPI,
1624 .manufacture_id = EON_ID_NOPREFIX,
1625 .model_id = EN_25B80,
1626 .total_size = 1024,
1627 .page_size = 256,
1628 .tested = TEST_UNTESTED,
1629 .probe = probe_spi_rdid,
1630 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001631 .block_erasers =
1632 {
1633 {
1634 .eraseblocks = {
1635 {64 * 1024, 15},
1636 {32 * 1024, 1},
1637 {16 * 1024, 1},
1638 {8 * 1024, 1},
1639 {4 * 1024, 2},
1640 },
1641 .block_erase = spi_block_erase_d8,
1642 }, {
1643 .eraseblocks = { {1024 * 1024, 1} },
1644 .block_erase = spi_block_erase_c7,
1645 }
1646 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001647 .write = spi_chip_write_256,
1648 .read = spi_chip_read,
1649 },
1650
1651 {
1652 .vendor = "Eon",
1653 .name = "EN25B16",
1654 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001655 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001656 .model_id = EN_25B16,
1657 .total_size = 2048,
1658 .page_size = 256,
1659 .tested = TEST_UNTESTED,
1660 .probe = probe_spi_rdid,
1661 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001662 .block_erasers =
1663 {
1664 {
1665 .eraseblocks = {
1666 {4 * 1024, 2},
1667 {8 * 1024, 1},
1668 {16 * 1024, 1},
1669 {32 * 1024, 1},
1670 {64 * 1024, 31},
1671 },
1672 .block_erase = spi_block_erase_d8,
1673 }, {
1674 .eraseblocks = { {2 * 1024 * 1024, 1} },
1675 .block_erase = spi_block_erase_c7,
1676 }
1677 },
1678 .write = spi_chip_write_256,
1679 .read = spi_chip_read,
1680 },
1681
1682 {
1683 .vendor = "Eon",
1684 .name = "EN25B16T",
1685 .bustype = CHIP_BUSTYPE_SPI,
1686 .manufacture_id = EON_ID_NOPREFIX,
1687 .model_id = EN_25B16,
1688 .total_size = 2048,
1689 .page_size = 256,
1690 .tested = TEST_UNTESTED,
1691 .probe = probe_spi_rdid,
1692 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001693 .block_erasers =
1694 {
1695 {
1696 .eraseblocks = {
1697 {64 * 1024, 31},
1698 {32 * 1024, 1},
1699 {16 * 1024, 1},
1700 {8 * 1024, 1},
1701 {4 * 1024, 2},
1702 },
1703 .block_erase = spi_block_erase_d8,
1704 }, {
1705 .eraseblocks = { {2 * 1024 * 1024, 1} },
1706 .block_erase = spi_block_erase_c7,
1707 }
1708 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001709 .write = spi_chip_write_256,
1710 .read = spi_chip_read,
1711 },
1712
1713 {
1714 .vendor = "Eon",
1715 .name = "EN25B32",
1716 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001717 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001718 .model_id = EN_25B32,
1719 .total_size = 4096,
1720 .page_size = 256,
1721 .tested = TEST_UNTESTED,
1722 .probe = probe_spi_rdid,
1723 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001724 .block_erasers =
1725 {
1726 {
1727 .eraseblocks = {
1728 {4 * 1024, 2},
1729 {8 * 1024, 1},
1730 {16 * 1024, 1},
1731 {32 * 1024, 1},
1732 {64 * 1024, 63},
1733 },
1734 .block_erase = spi_block_erase_d8,
1735 }, {
1736 .eraseblocks = { {4 * 1024 * 1024, 1} },
1737 .block_erase = spi_block_erase_c7,
1738 }
1739 },
1740 .write = spi_chip_write_256,
1741 .read = spi_chip_read,
1742 },
1743
1744 {
1745 .vendor = "Eon",
1746 .name = "EN25B32T",
1747 .bustype = CHIP_BUSTYPE_SPI,
1748 .manufacture_id = EON_ID_NOPREFIX,
1749 .model_id = EN_25B32,
1750 .total_size = 4096,
1751 .page_size = 256,
1752 .tested = TEST_UNTESTED,
1753 .probe = probe_spi_rdid,
1754 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001755 .block_erasers =
1756 {
1757 {
1758 .eraseblocks = {
1759 {64 * 1024, 63},
1760 {32 * 1024, 1},
1761 {16 * 1024, 1},
1762 {8 * 1024, 1},
1763 {4 * 1024, 2},
1764 },
1765 .block_erase = spi_block_erase_d8,
1766 }, {
1767 .eraseblocks = { {4 * 1024 * 1024, 1} },
1768 .block_erase = spi_block_erase_c7,
1769 }
1770 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001771 .write = spi_chip_write_256,
1772 .read = spi_chip_read,
1773 },
1774
1775 {
1776 .vendor = "Eon",
1777 .name = "EN25B64",
1778 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001779 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001780 .model_id = EN_25B64,
1781 .total_size = 8192,
1782 .page_size = 256,
1783 .tested = TEST_UNTESTED,
1784 .probe = probe_spi_rdid,
1785 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001786 .block_erasers =
1787 {
1788 {
1789 .eraseblocks = {
1790 {4 * 1024, 2},
1791 {8 * 1024, 1},
1792 {16 * 1024, 1},
1793 {32 * 1024, 1},
1794 {64 * 1024, 127},
1795 },
1796 .block_erase = spi_block_erase_d8,
1797 }, {
1798 .eraseblocks = { {8 * 1024 * 1024, 1} },
1799 .block_erase = spi_block_erase_c7,
1800 }
1801 },
1802 .write = spi_chip_write_256,
1803 .read = spi_chip_read,
1804 },
1805
1806 {
1807 .vendor = "Eon",
1808 .name = "EN25B64T",
1809 .bustype = CHIP_BUSTYPE_SPI,
1810 .manufacture_id = EON_ID_NOPREFIX,
1811 .model_id = EN_25B64,
1812 .total_size = 8192,
1813 .page_size = 256,
1814 .tested = TEST_UNTESTED,
1815 .probe = probe_spi_rdid,
1816 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001817 .block_erasers =
1818 {
1819 {
1820 .eraseblocks = {
1821 {64 * 1024, 127},
1822 {32 * 1024, 1},
1823 {16 * 1024, 1},
1824 {8 * 1024, 1},
1825 {4 * 1024, 2},
1826 },
1827 .block_erase = spi_block_erase_d8,
1828 }, {
1829 .eraseblocks = { {8 * 1024 * 1024, 1} },
1830 .block_erase = spi_block_erase_c7,
1831 }
1832 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001833 .write = spi_chip_write_256,
1834 .read = spi_chip_read,
1835 },
1836
1837 {
1838 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001839 .name = "EN25D16",
1840 .bustype = CHIP_BUSTYPE_SPI,
1841 .manufacture_id = EON_ID_NOPREFIX,
1842 .model_id = EN_25D16,
1843 .total_size = 2048,
1844 .page_size = 256,
1845 .tested = TEST_UNTESTED,
1846 .probe = probe_spi_rdid,
1847 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001848 .block_erasers =
1849 {
1850 {
1851 .eraseblocks = { {4 * 1024, 512} },
1852 .block_erase = spi_block_erase_20,
1853 }, {
1854 .eraseblocks = { {64 * 1024, 32} },
1855 .block_erase = spi_block_erase_d8,
1856 }, {
1857 .eraseblocks = { {64 * 1024, 32} },
1858 .block_erase = spi_block_erase_52,
1859 }, {
1860 .eraseblocks = { {2 * 1024 * 1024, 1} },
1861 .block_erase = spi_block_erase_60,
1862 }, {
1863 .eraseblocks = { {2 * 1024 * 1024, 1} },
1864 .block_erase = spi_block_erase_c7,
1865 }
1866 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001867 .write = spi_chip_write_256,
1868 .read = spi_chip_read,
1869 },
1870
1871 {
1872 .vendor = "Eon",
1873 .name = "EN25F05",
1874 .bustype = CHIP_BUSTYPE_SPI,
1875 .manufacture_id = EON_ID_NOPREFIX,
1876 .model_id = EN_25F05,
1877 .total_size = 64,
1878 .page_size = 256,
1879 .tested = TEST_UNTESTED,
1880 .probe = probe_spi_rdid,
1881 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001882 .block_erasers =
1883 {
1884 {
1885 .eraseblocks = { {4 * 1024, 16} },
1886 .block_erase = spi_block_erase_20,
1887 }, {
1888 .eraseblocks = { {32 * 1024, 2} },
1889 .block_erase = spi_block_erase_d8,
1890 }, {
1891 .eraseblocks = { {32 * 1024, 2} },
1892 .block_erase = spi_block_erase_52,
1893 }, {
1894 .eraseblocks = { {64 * 1024, 1} },
1895 .block_erase = spi_block_erase_60,
1896 }, {
1897 .eraseblocks = { {64 * 1024, 1} },
1898 .block_erase = spi_block_erase_c7,
1899 }
1900 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001901 .write = spi_chip_write_256,
1902 .read = spi_chip_read,
1903 },
1904
1905 {
1906 .vendor = "Eon",
1907 .name = "EN25F10",
1908 .bustype = CHIP_BUSTYPE_SPI,
1909 .manufacture_id = EON_ID_NOPREFIX,
1910 .model_id = EN_25F10,
1911 .total_size = 128,
1912 .page_size = 256,
1913 .tested = TEST_UNTESTED,
1914 .probe = probe_spi_rdid,
1915 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001916 .block_erasers =
1917 {
1918 {
1919 .eraseblocks = { {4 * 1024, 32} },
1920 .block_erase = spi_block_erase_20,
1921 }, {
1922 .eraseblocks = { {32 * 1024, 4} },
1923 .block_erase = spi_block_erase_d8,
1924 }, {
1925 .eraseblocks = { {32 * 1024, 4} },
1926 .block_erase = spi_block_erase_52,
1927 }, {
1928 .eraseblocks = { {128 * 1024, 1} },
1929 .block_erase = spi_block_erase_60,
1930 }, {
1931 .eraseblocks = { {128 * 1024, 1} },
1932 .block_erase = spi_block_erase_c7,
1933 }
1934 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001935 .write = spi_chip_write_256,
1936 .read = spi_chip_read,
1937 },
1938
1939 {
1940 .vendor = "Eon",
1941 .name = "EN25F20",
1942 .bustype = CHIP_BUSTYPE_SPI,
1943 .manufacture_id = EON_ID_NOPREFIX,
1944 .model_id = EN_25F20,
1945 .total_size = 256,
1946 .page_size = 256,
1947 .tested = TEST_UNTESTED,
1948 .probe = probe_spi_rdid,
1949 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00001950 .block_erasers =
1951 {
1952 {
1953 .eraseblocks = { {4 * 1024, 64} },
1954 .block_erase = spi_block_erase_20,
1955 }, {
1956 .eraseblocks = { {64 * 1024, 4} },
1957 .block_erase = spi_block_erase_d8,
1958 }, {
1959 .eraseblocks = { {64 * 1024, 4} },
1960 .block_erase = spi_block_erase_52,
1961 }, {
1962 .eraseblocks = { {256 * 1024, 1} },
1963 .block_erase = spi_block_erase_60,
1964 }, {
1965 .eraseblocks = { {256 * 1024, 1} },
1966 .block_erase = spi_block_erase_c7,
1967 }
1968 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001969 .write = spi_chip_write_256,
1970 .read = spi_chip_read,
1971 },
1972
1973 {
1974 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001975 .name = "EN25F40",
1976 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00001977 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001978 .model_id = EN_25F40,
1979 .total_size = 512,
1980 .page_size = 256,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00001981 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00001982 .probe = probe_spi_rdid,
1983 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00001984 .block_erasers =
1985 {
1986 {
Sean Nelson54596372010-01-09 05:30:14 +00001987 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001988 .block_erase = spi_block_erase_20,
1989 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001990 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001991 .block_erase = spi_block_erase_d8,
1992 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001993 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001994 .block_erase = spi_block_erase_60,
1995 }, {
Sean Nelson54596372010-01-09 05:30:14 +00001996 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00001997 .block_erase = spi_block_erase_c7,
1998 },
1999 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002000 .write = spi_chip_write_256,
2001 .read = spi_chip_read,
2002 },
2003
2004 {
2005 .vendor = "Eon",
2006 .name = "EN25F80",
2007 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002008 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002009 .model_id = EN_25F80,
2010 .total_size = 1024,
2011 .page_size = 256,
2012 .tested = TEST_UNTESTED,
2013 .probe = probe_spi_rdid,
2014 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002015 .block_erasers =
2016 {
2017 {
2018 .eraseblocks = { {4 * 1024, 256} },
2019 .block_erase = spi_block_erase_20,
2020 }, {
2021 .eraseblocks = { {64 * 1024, 16} },
2022 .block_erase = spi_block_erase_d8,
2023 }, {
2024 .eraseblocks = { {1024 * 1024, 1} },
2025 .block_erase = spi_block_erase_60,
2026 }, {
2027 .eraseblocks = { {1024 * 1024, 1} },
2028 .block_erase = spi_block_erase_c7,
2029 }
2030 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002031 .write = spi_chip_write_256,
2032 .read = spi_chip_read,
2033 },
2034
2035 {
2036 .vendor = "Eon",
2037 .name = "EN25F16",
2038 .bustype = CHIP_BUSTYPE_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002039 .manufacture_id = EON_ID_NOPREFIX,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002040 .model_id = EN_25F16,
2041 .total_size = 2048,
2042 .page_size = 256,
2043 .tested = TEST_UNTESTED,
2044 .probe = probe_spi_rdid,
2045 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002046 .block_erasers =
2047 {
2048 {
2049 .eraseblocks = { {4 * 1024, 512} },
2050 .block_erase = spi_block_erase_20,
2051 }, {
2052 .eraseblocks = { {64 * 1024, 32} },
2053 .block_erase = spi_block_erase_d8,
2054 }, {
2055 .eraseblocks = { {2 * 1024 * 1024, 1} },
2056 .block_erase = spi_block_erase_60,
2057 }, {
2058 .eraseblocks = { {2 * 1024 * 1024, 1} },
2059 .block_erase = spi_block_erase_c7,
2060 }
2061 },
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002062 .write = spi_chip_write_256,
2063 .read = spi_chip_read,
2064 },
2065
2066 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002067 .vendor = "Eon",
2068 .name = "EN25F32",
2069 .bustype = CHIP_BUSTYPE_SPI,
2070 .manufacture_id = EON_ID_NOPREFIX,
2071 .model_id = EN_25F32,
2072 .total_size = 4096,
2073 .page_size = 256,
2074 .tested = TEST_UNTESTED,
2075 .probe = probe_spi_rdid,
2076 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002077 .block_erasers =
2078 {
2079 {
2080 .eraseblocks = { {4 * 1024, 1024} },
2081 .block_erase = spi_block_erase_20,
2082 }, {
2083 .eraseblocks = { {64 * 1024, 64} },
2084 .block_erase = spi_block_erase_d8,
2085 }, {
2086 .eraseblocks = { {4 * 1024 * 1024, 1} },
2087 .block_erase = spi_block_erase_60,
2088 }, {
2089 .eraseblocks = { {4 * 1024 * 1024, 1} },
2090 .block_erase = spi_block_erase_c7,
2091 }
2092 },
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002093 .write = spi_chip_write_256,
2094 .read = spi_chip_read,
2095 },
2096
2097 {
Russ Dill3cd5a122010-03-05 08:44:11 +00002098 .vendor = "Eon",
2099 .name = "EN29F010",
2100 .bustype = CHIP_BUSTYPE_PARALLEL,
2101 .manufacture_id = EON_ID,
2102 .model_id = EN_29F010,
2103 .total_size = 128,
2104 .page_size = 128,
2105 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
2106 .tested = TEST_OK_PREW,
2107 .probe = probe_jedec,
2108 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2109 .block_erasers =
2110 {
2111 {
2112 .eraseblocks = { {16 * 1024, 8} },
2113 .block_erase = erase_sector_jedec,
2114 },
2115 {
2116 .eraseblocks = { {128 * 1024, 1} },
2117 .block_erase = erase_chip_block_jedec,
2118 },
2119 },
2120 .write = write_jedec_1,
2121 .read = read_memmapped,
2122 },
2123
2124 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002125 .vendor = "EON",
2126 .name = "EN29F002(A)(N)B",
Urja Rannikko161b8852009-06-05 08:47:37 +00002127 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002128 .manufacture_id = EON_ID,
2129 .model_id = EN_29F002B,
2130 .total_size = 256,
2131 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002132 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002133 .tested = TEST_UNTESTED,
2134 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002135 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002136 .block_erasers =
2137 {
2138 {
2139 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002140 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002141 {8 * 1024, 2},
2142 {32 * 1024, 1},
2143 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002144 },
2145 .block_erase = erase_sector_jedec,
2146 }, {
2147 .eraseblocks = { {256 * 1024, 1} },
2148 .block_erase = erase_chip_block_jedec,
2149 },
2150 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002151 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002152 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002153 },
2154
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002155 {
2156 .vendor = "EON",
2157 .name = "EN29F002(A)(N)T",
Urja Rannikko161b8852009-06-05 08:47:37 +00002158 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002159 .manufacture_id = EON_ID,
2160 .model_id = EN_29F002T,
2161 .total_size = 256,
2162 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002163 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00002164 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002165 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002166 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002167 .block_erasers =
2168 {
2169 {
2170 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00002171 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00002172 {32 * 1024, 1},
2173 {8 * 1024, 2},
2174 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00002175 },
2176 .block_erase = erase_sector_jedec,
2177 }, {
2178 .eraseblocks = { {256 * 1024, 1} },
2179 .block_erase = erase_chip_block_jedec,
2180 },
2181 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002182 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002183 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002184 },
2185
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002186 {
2187 .vendor = "Fujitsu",
2188 .name = "MBM29F004BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002189 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002190 .manufacture_id = FUJITSU_ID,
2191 .model_id = MBM29F004BC,
2192 .total_size = 512,
2193 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002194 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002195 .tested = TEST_UNTESTED,
2196 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002197 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002198 .block_erasers =
2199 {
2200 {
2201 .eraseblocks = {
2202 {16 * 1024, 1},
2203 {8 * 1024, 2},
2204 {32 * 1024, 1},
2205 {64 * 1024, 7},
2206 },
Sean Nelson35727f72010-01-28 23:55:12 +00002207 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002208 }, {
2209 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002210 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002211 },
2212 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002213 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002214 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002215 },
2216
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002217 {
2218 .vendor = "Fujitsu",
2219 .name = "MBM29F004TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002220 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002221 .manufacture_id = FUJITSU_ID,
2222 .model_id = MBM29F004TC,
2223 .total_size = 512,
2224 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002225 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002226 .tested = TEST_UNTESTED,
2227 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002228 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002229 .block_erasers =
2230 {
2231 {
2232 .eraseblocks = {
2233 {64 * 1024, 7},
2234 {32 * 1024, 1},
2235 {8 * 1024, 2},
2236 {16 * 1024, 1},
2237 },
Sean Nelson35727f72010-01-28 23:55:12 +00002238 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002239 }, {
2240 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002241 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002242 },
2243 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002244 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002245 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002246 },
2247
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002248 {
Sean Nelson35727f72010-01-28 23:55:12 +00002249 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002250 .vendor = "Fujitsu",
2251 .name = "MBM29F400BC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002252 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002253 .manufacture_id = FUJITSU_ID,
2254 .model_id = MBM29F400BC,
2255 .total_size = 512,
2256 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002257 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002258 .tested = TEST_UNTESTED,
2259 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002260 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002261 .block_erasers =
2262 {
2263 {
2264 .eraseblocks = {
2265 {16 * 1024, 1},
2266 {8 * 1024, 2},
2267 {32 * 1024, 1},
2268 {64 * 1024, 7},
2269 },
2270 .block_erase = block_erase_m29f400bt,
2271 }, {
2272 .eraseblocks = { {512 * 1024, 1} },
2273 .block_erase = block_erase_chip_m29f400bt,
2274 },
2275 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002276 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002277 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002278 },
2279
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002280 {
2281 .vendor = "Fujitsu",
2282 .name = "MBM29F400TC",
Urja Rannikko038a3122009-06-28 19:19:25 +00002283 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002284 .manufacture_id = FUJITSU_ID,
2285 .model_id = MBM29F400TC,
2286 .total_size = 512,
2287 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002288 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002289 .tested = TEST_UNTESTED,
2290 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002291 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002292 .block_erasers =
2293 {
2294 {
2295 .eraseblocks = {
2296 {64 * 1024, 7},
2297 {32 * 1024, 1},
2298 {8 * 1024, 2},
2299 {16 * 1024, 1},
2300 },
2301 .block_erase = block_erase_m29f400bt,
2302 }, {
2303 .eraseblocks = { {512 * 1024, 1} },
2304 .block_erase = block_erase_chip_m29f400bt,
2305 },
2306 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002307 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002308 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002309 },
2310
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002311 {
2312 .vendor = "Intel",
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002313 .name = "28F001BX-B",
Urja Rannikko161b8852009-06-05 08:47:37 +00002314 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002315 .manufacture_id = INTEL_ID,
2316 .model_id = P28F001BXB,
2317 .total_size = 128,
2318 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelson54596372010-01-09 05:30:14 +00002319 .tested = TEST_BAD_WRITE,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002320 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002321 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002322 .block_erasers =
2323 {
2324 {
2325 .eraseblocks = {
2326 {8 * 1024, 1},
2327 {4 * 1024, 2},
2328 {112 * 1024, 1},
2329 },
Sean Nelson28accc22010-03-19 18:47:06 +00002330 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002331 },
2332 },
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002333 .write = NULL,
2334 .read = read_memmapped,
2335 },
2336
2337 {
2338 .vendor = "Intel",
2339 .name = "28F001BX-T",
Urja Rannikko161b8852009-06-05 08:47:37 +00002340 .bustype = CHIP_BUSTYPE_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002341 .manufacture_id = INTEL_ID,
2342 .model_id = P28F001BXT,
2343 .total_size = 128,
2344 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sean Nelson35727f72010-01-28 23:55:12 +00002345 .tested = TEST_BAD_WRITE,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002346 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002347 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002348 .block_erasers =
2349 {
2350 {
2351 .eraseblocks = {
2352 {112 * 1024, 1},
2353 {4 * 1024, 2},
2354 {8 * 1024, 1},
2355 },
Sean Nelson28accc22010-03-19 18:47:06 +00002356 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002357 },
2358 },
Urja Rannikkoebd7b832009-05-29 12:55:31 +00002359 .write = NULL,
2360 .read = read_memmapped,
2361 },
2362
2363 {
2364 .vendor = "Intel",
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002365 .name = "28F004S5",
2366 .bustype = CHIP_BUSTYPE_PARALLEL,
2367 .manufacture_id = INTEL_ID,
2368 .model_id = E_28F004S5,
2369 .total_size = 512,
2370 .page_size = 256,
Sean Nelsonfcc4f742010-03-20 03:01:19 +00002371 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002372 .tested = TEST_UNTESTED,
2373 .probe = probe_82802ab,
2374 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002375 .block_erasers =
2376 {
2377 {
2378 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00002379 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002380 },
2381 },
Sean Nelson28accc22010-03-19 18:47:06 +00002382 .unlock = unlock_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00002383 .write = write_82802ab,
2384 .read = read_memmapped,
2385 },
2386
2387 {
2388 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002389 .name = "82802AB",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002390 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002391 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002392 .model_id = I_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002393 .total_size = 512,
2394 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00002395 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00002396 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002397 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002398 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002399 .block_erasers =
2400 {
2401 {
2402 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00002403 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002404 },
2405 },
Sean Nelson28accc22010-03-19 18:47:06 +00002406 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002407 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002408 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002409 },
2410
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002411 {
2412 .vendor = "Intel",
2413 .name = "82802AC",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002414 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002415 .manufacture_id = INTEL_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002416 .model_id = I_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002417 .total_size = 1024,
2418 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00002419 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00002420 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002421 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002422 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002423 .block_erasers =
2424 {
2425 {
2426 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00002427 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00002428 },
2429 },
Sean Nelson28accc22010-03-19 18:47:06 +00002430 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002431 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002432 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002433 },
2434
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002435 {
2436 .vendor = "Macronix",
2437 .name = "MX25L512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002438 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002439 .manufacture_id = MX_ID,
2440 .model_id = MX_25L512,
2441 .total_size = 64,
2442 .page_size = 256,
2443 .tested = TEST_UNTESTED,
2444 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002445 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002446 .block_erasers =
2447 {
2448 {
2449 .eraseblocks = { {4 * 1024, 16} },
2450 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002451 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002452 .eraseblocks = { {64 * 1024, 1} },
2453 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002454 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002455 .eraseblocks = { {64 * 1024, 1} },
2456 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002457 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002458 .eraseblocks = { {64 * 1024, 1} },
2459 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002460 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002461 .eraseblocks = { {64 * 1024, 1} },
2462 .block_erase = spi_block_erase_c7,
2463 },
2464 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002465 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002466 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002467 },
2468
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002469 {
2470 .vendor = "Macronix",
2471 .name = "MX25L1005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002472 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002473 .manufacture_id = MX_ID,
2474 .model_id = MX_25L1005,
2475 .total_size = 128,
2476 .page_size = 256,
2477 .tested = TEST_UNTESTED,
2478 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002479 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002480 .block_erasers =
2481 {
2482 {
2483 .eraseblocks = { {4 * 1024, 32} },
2484 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002485 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002486 .eraseblocks = { {64 * 1024, 2} },
2487 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002488 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002489 .eraseblocks = { {128 * 1024, 1} },
2490 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002491 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00002492 .eraseblocks = { {128 * 1024, 1} },
2493 .block_erase = spi_block_erase_c7,
2494 },
2495 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002496 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002497 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002498 },
2499
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002500 {
2501 .vendor = "Macronix",
2502 .name = "MX25L2005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002503 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002504 .manufacture_id = MX_ID,
2505 .model_id = MX_25L2005,
2506 .total_size = 256,
2507 .page_size = 256,
2508 .tested = TEST_UNTESTED,
2509 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002510 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002511 .block_erasers =
2512 {
2513 {
2514 .eraseblocks = { {4 * 1024, 64} },
2515 .block_erase = spi_block_erase_20,
2516 }, {
2517 .eraseblocks = { {64 * 1024, 4} },
2518 .block_erase = spi_block_erase_52,
2519 }, {
2520 .eraseblocks = { {64 * 1024, 4} },
2521 .block_erase = spi_block_erase_d8,
2522 }, {
2523 .eraseblocks = { {256 * 1024, 1} },
2524 .block_erase = spi_block_erase_60,
2525 }, {
2526 .eraseblocks = { {256 * 1024, 1} },
2527 .block_erase = spi_block_erase_c7,
2528 },
2529 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002530 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002531 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002532 },
2533
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002534 {
2535 .vendor = "Macronix",
2536 .name = "MX25L4005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002537 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002538 .manufacture_id = MX_ID,
2539 .model_id = MX_25L4005,
2540 .total_size = 512,
2541 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002542 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002543 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002544 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002545 .block_erasers =
2546 {
2547 {
2548 .eraseblocks = { {4 * 1024, 128} },
2549 .block_erase = spi_block_erase_20,
2550 }, {
2551 .eraseblocks = { {64 * 1024, 8} },
2552 .block_erase = spi_block_erase_52,
2553 }, {
2554 .eraseblocks = { {64 * 1024, 8} },
2555 .block_erase = spi_block_erase_d8,
2556 }, {
2557 .eraseblocks = { {512 * 1024, 1} },
2558 .block_erase = spi_block_erase_60,
2559 }, {
2560 .eraseblocks = { {512 * 1024, 1} },
2561 .block_erase = spi_block_erase_c7,
2562 },
2563 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002564 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002565 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002566 },
2567
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002568 {
2569 .vendor = "Macronix",
2570 .name = "MX25L8005",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002571 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002572 .manufacture_id = MX_ID,
2573 .model_id = MX_25L8005,
2574 .total_size = 1024,
2575 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002576 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002577 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002578 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002579 .block_erasers =
2580 {
2581 {
2582 .eraseblocks = { {4 * 1024, 256} },
2583 .block_erase = spi_block_erase_20,
2584 }, {
2585 .eraseblocks = { {64 * 1024, 16} },
2586 .block_erase = spi_block_erase_52,
2587 }, {
2588 .eraseblocks = { {64 * 1024, 16} },
2589 .block_erase = spi_block_erase_d8,
2590 }, {
2591 .eraseblocks = { {1024 * 1024, 1} },
2592 .block_erase = spi_block_erase_60,
2593 }, {
2594 .eraseblocks = { {1024 * 1024, 1} },
2595 .block_erase = spi_block_erase_c7,
2596 },
2597 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002598 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002599 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002600 },
2601
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002602 {
2603 .vendor = "Macronix",
2604 .name = "MX25L1605",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002605 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002606 .manufacture_id = MX_ID,
2607 .model_id = MX_25L1605,
2608 .total_size = 2048,
2609 .page_size = 256,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002610 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002611 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002612 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00002613 .block_erasers =
2614 {
2615 {
2616 .eraseblocks = { {4 * 1024, 512} },
2617 .block_erase = spi_block_erase_20, /* This erase function has 64k blocksize for eLiteFlash */
2618 }, {
2619 .eraseblocks = { {64 * 1024, 32} }, /* Not supported in MX25L1605 (eLiteFlash) and MX25L1605D */
2620 .block_erase = spi_block_erase_52,
2621 }, {
2622 .eraseblocks = { {64 * 1024, 32} },
2623 .block_erase = spi_block_erase_d8,
2624 }, {
2625 .eraseblocks = { {2 * 1024 * 1024, 1} },
2626 .block_erase = spi_block_erase_60,
2627 }, {
2628 .eraseblocks = { {2 * 1024 * 1024, 1} },
2629 .block_erase = spi_block_erase_c7,
2630 },
2631 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002632 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002633 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002634 },
2635
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002636 {
2637 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002638 .name = "MX25L1635D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002639 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002640 .manufacture_id = MX_ID,
2641 .model_id = MX_25L1635D,
2642 .total_size = 2048,
2643 .page_size = 256,
2644 .tested = TEST_UNTESTED,
2645 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002646 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002647 .block_erasers =
2648 {
2649 {
2650 .eraseblocks = { {4 * 1024, 512} },
2651 .block_erase = spi_block_erase_20,
2652 }, {
2653 .eraseblocks = { {64 * 1024, 32} },
2654 .block_erase = spi_block_erase_d8,
2655 }, {
2656 .eraseblocks = { {2 * 1024 * 1024, 1} },
2657 .block_erase = spi_block_erase_60,
2658 }, {
2659 .eraseblocks = { {2 * 1024 * 1024, 1} },
2660 .block_erase = spi_block_erase_c7,
2661 }
2662 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002663 .write = spi_chip_write_256,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002664 .read = spi_chip_read,
2665 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00002666
Stephan Guillouxf5c70902009-04-19 23:04:00 +00002667 {
2668 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002669 .name = "MX25L3205",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002670 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002671 .manufacture_id = MX_ID,
2672 .model_id = MX_25L3205,
2673 .total_size = 4096,
2674 .page_size = 256,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002675 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002676 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002677 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002678 .block_erasers =
2679 {
2680 {
2681 .eraseblocks = { {4 * 1024, 1024} },
2682 .block_erase = spi_block_erase_20,
2683 }, {
2684 .eraseblocks = { {4 * 1024, 1024} },
2685 .block_erase = spi_block_erase_d8,
2686 }, {
2687 .eraseblocks = { {4 * 1024 * 1024, 1} },
2688 .block_erase = spi_block_erase_60,
2689 }, {
2690 .eraseblocks = { {4 * 1024 * 1024, 1} },
2691 .block_erase = spi_block_erase_c7,
2692 },
2693 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002694 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002695 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002696 },
2697
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002698 {
2699 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002700 .name = "MX25L3235D",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002701 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002702 .manufacture_id = MX_ID,
2703 .model_id = MX_25L3235D,
2704 .total_size = 4096,
2705 .page_size = 256,
2706 .tested = TEST_UNTESTED,
2707 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002708 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002709 .block_erasers =
2710 {
2711 {
2712 .eraseblocks = { {4 * 1024, 1024} },
2713 .block_erase = spi_block_erase_20,
2714 }, {
2715 .eraseblocks = { {64 * 1024, 64} },
2716 .block_erase = spi_block_erase_d8,
2717 }, {
2718 .eraseblocks = { {4 * 1024 * 1024, 1} },
2719 .block_erase = spi_block_erase_60,
2720 }, {
2721 .eraseblocks = { {4 * 1024 * 1024, 1} },
2722 .block_erase = spi_block_erase_c7,
2723 }
2724 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002725 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00002726 .read = spi_chip_read,
2727 },
2728
2729 {
2730 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002731 .name = "MX25L6405",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002732 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002733 .manufacture_id = MX_ID,
2734 .model_id = MX_25L6405,
2735 .total_size = 8192,
2736 .page_size = 256,
Carl-Daniel Hailfinger452b3e32009-06-22 11:14:43 +00002737 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002738 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002739 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002740 .block_erasers =
2741 {
2742 {
2743 .eraseblocks = { {64 * 1024, 128} },
2744 .block_erase = spi_block_erase_20,
2745 }, {
2746 .eraseblocks = { {64 * 1024, 128} },
2747 .block_erase = spi_block_erase_d8,
2748 }, {
2749 .eraseblocks = { {8 * 1024 * 1024, 1} },
2750 .block_erase = spi_block_erase_60,
2751 }, {
2752 .eraseblocks = { {8 * 1024 * 1024, 1} },
2753 .block_erase = spi_block_erase_c7,
2754 }
2755 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002756 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002757 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002758 },
2759
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002760 {
2761 .vendor = "Macronix",
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002762 .name = "MX25L12805",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002763 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002764 .manufacture_id = MX_ID,
2765 .model_id = MX_25L12805,
2766 .total_size = 16384,
2767 .page_size = 256,
2768 .tested = TEST_UNTESTED,
2769 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002770 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002771 .block_erasers =
2772 {
2773 {
2774 .eraseblocks = { {4 * 1024, 4096} },
2775 .block_erase = spi_block_erase_20,
2776 }, {
2777 .eraseblocks = { {64 * 1024, 256} },
2778 .block_erase = spi_block_erase_d8,
2779 }, {
2780 .eraseblocks = { {16 * 1024 * 1024, 1} },
2781 .block_erase = spi_block_erase_60,
2782 }, {
2783 .eraseblocks = { {16 * 1024 * 1024, 1} },
2784 .block_erase = spi_block_erase_c7,
2785 }
2786 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002787 .write = spi_chip_write_256,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00002788 .read = spi_chip_read,
2789 },
2790
2791 {
2792 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00002793 .name = "MX29F001B",
2794 .bustype = CHIP_BUSTYPE_PARALLEL,
2795 .manufacture_id = MX_ID,
2796 .model_id = MX_29F001B,
2797 .total_size = 128,
2798 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002799 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2800 .tested = TEST_UNTESTED,
2801 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002802 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002803 .block_erasers =
2804 {
2805 {
2806 .eraseblocks = {
2807 {8 * 1024, 1},
2808 {4 * 1024, 2},
2809 {8 * 1024, 2},
2810 {32 * 1024, 1},
2811 {64 * 1024, 1},
2812 },
Sean Nelson35727f72010-01-28 23:55:12 +00002813 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002814 }, {
2815 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002816 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002817 }
2818 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002819 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002820 .read = read_memmapped,
2821 },
2822
2823 {
2824 .vendor = "Macronix",
2825 .name = "MX29F001T",
2826 .bustype = CHIP_BUSTYPE_PARALLEL,
2827 .manufacture_id = MX_ID,
2828 .model_id = MX_29F001T,
2829 .total_size = 128,
2830 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002831 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2832 .tested = TEST_UNTESTED,
2833 .probe = probe_jedec,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002834 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002835 .block_erasers =
2836 {
2837 {
2838 .eraseblocks = {
2839 {64 * 1024, 1},
2840 {32 * 1024, 1},
2841 {8 * 1024, 2},
2842 {4 * 1024, 2},
2843 {8 * 1024, 1},
2844 },
Sean Nelson35727f72010-01-28 23:55:12 +00002845 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002846 }, {
2847 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002848 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002849 }
2850 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002851 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00002852 .read = read_memmapped,
2853 },
2854
2855 {
2856 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002857 .name = "MX29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00002858 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002859 .manufacture_id = MX_ID,
2860 .model_id = MX_29F002B,
2861 .total_size = 256,
2862 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002863 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002864 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00002865 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002866 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002867 .block_erasers =
2868 {
2869 {
2870 .eraseblocks = {
2871 {16 * 1024, 1},
2872 {8 * 1024, 2},
2873 {32 * 1024, 1},
2874 {64 * 1024, 3},
2875 },
Sean Nelson35727f72010-01-28 23:55:12 +00002876 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002877 }, {
2878 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002879 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002880 },
2881 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002882 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002883 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002884 },
2885
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002886 {
2887 .vendor = "Macronix",
2888 .name = "MX29F002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00002889 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002890 .manufacture_id = MX_ID,
2891 .model_id = MX_29F002T,
2892 .total_size = 256,
2893 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002894 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00002895 .tested = TEST_OK_PRW,
Sean Nelson35727f72010-01-28 23:55:12 +00002896 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002897 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00002898 .block_erasers =
2899 {
2900 {
2901 .eraseblocks = {
2902 {64 * 1024, 3},
2903 {32 * 1024, 1},
2904 {8 * 1024, 2},
2905 {16 * 1024, 1},
2906 },
Sean Nelson35727f72010-01-28 23:55:12 +00002907 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002908 }, {
2909 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002910 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00002911 },
2912 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002913 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002914 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00002915 },
2916
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002917 {
2918 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00002919 .name = "MX29LV040",
Urja Rannikko038a3122009-06-28 19:19:25 +00002920 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002921 .manufacture_id = MX_ID,
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00002922 .model_id = MX_29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002923 .total_size = 512,
2924 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00002925 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
2926 .tested = TEST_UNTESTED,
2927 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002928 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
Sean Nelson54596372010-01-09 05:30:14 +00002929 .block_erasers =
2930 {
2931 {
2932 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00002933 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002934 }, {
2935 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00002936 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00002937 },
2938 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00002939 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002940 .read = read_memmapped,
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00002941 },
2942
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002943 {
2944 .vendor = "Numonyx",
2945 .name = "M25PE10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002946 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002947 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002948 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002949 .total_size = 128,
2950 .page_size = 256,
2951 .tested = TEST_UNTESTED,
2952 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002953 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00002954 .block_erasers =
2955 {
2956 {
2957 .eraseblocks = { {4 * 1024, 32} },
2958 .block_erase = spi_block_erase_20,
2959 }, {
2960 .eraseblocks = { {64 * 1024, 2} },
2961 .block_erase = spi_block_erase_d8,
2962 }, {
2963 .eraseblocks = { {128 * 1024, 1} },
2964 .block_erase = spi_block_erase_c7,
2965 }
2966 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002967 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002968 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002969 },
2970
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002971 {
2972 .vendor = "Numonyx",
2973 .name = "M25PE20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00002974 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002975 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00002976 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002977 .total_size = 256,
2978 .page_size = 256,
2979 .tested = TEST_UNTESTED,
2980 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002981 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00002982 .block_erasers =
2983 {
2984 {
2985 .eraseblocks = { {4 * 1024, 64} },
2986 .block_erase = spi_block_erase_20,
2987 }, {
2988 .eraseblocks = { {64 * 1024, 4} },
2989 .block_erase = spi_block_erase_d8,
2990 }, {
2991 .eraseblocks = { {256 * 1024, 1} },
2992 .block_erase = spi_block_erase_c7,
2993 }
2994 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002995 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002996 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00002997 },
2998
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002999 {
3000 .vendor = "Numonyx",
3001 .name = "M25PE40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003002 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003003 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003004 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00003005 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003006 .page_size = 256,
3007 .tested = TEST_UNTESTED,
3008 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003009 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003010 .block_erasers =
3011 {
3012 {
3013 .eraseblocks = { {4 * 1024, 128} },
3014 .block_erase = spi_block_erase_20,
3015 }, {
3016 .eraseblocks = { {64 * 1024, 8} },
3017 .block_erase = spi_block_erase_d8,
3018 }, {
3019 .eraseblocks = { {512 * 1024, 1} },
3020 .block_erase = spi_block_erase_c7,
3021 }
3022 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003023 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003024 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003025 },
3026
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003027 {
3028 .vendor = "Numonyx",
3029 .name = "M25PE80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003030 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003031 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003032 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003033 .total_size = 1024,
3034 .page_size = 256,
3035 .tested = TEST_OK_PREW,
3036 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003037 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003038 .block_erasers =
3039 {
3040 {
3041 .eraseblocks = { {4 * 1024, 256} },
3042 .block_erase = spi_block_erase_20,
3043 }, {
3044 .eraseblocks = { {64 * 1024, 16} },
3045 .block_erase = spi_block_erase_d8,
3046 }, {
3047 .eraseblocks = { {1024 * 1024, 1} },
3048 .block_erase = spi_block_erase_c7,
3049 }
3050 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003051 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003052 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003053 },
3054
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003055 {
3056 .vendor = "Numonyx",
3057 .name = "M25PE16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003058 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003059 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003060 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003061 .total_size = 2048,
3062 .page_size = 256,
3063 .tested = TEST_UNTESTED,
3064 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003065 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003066 .block_erasers =
3067 {
3068 {
3069 .eraseblocks = { {4 * 1024, 512} },
3070 .block_erase = spi_block_erase_20,
3071 }, {
3072 .eraseblocks = { {64 * 1024, 32} },
3073 .block_erase = spi_block_erase_d8,
3074 }, {
3075 .eraseblocks = { {2 * 1024 * 1024, 1} },
3076 .block_erase = spi_block_erase_c7,
3077 }
3078 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003079 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003080 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003081 },
3082
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003083 {
3084 .vendor = "PMC",
3085 .name = "Pm25LV010",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003086 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003087 .manufacture_id = PMC_ID,
3088 .model_id = PMC_25LV010,
3089 .total_size = 128,
3090 .page_size = 256,
3091 .tested = TEST_UNTESTED,
3092 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003093 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003094 .block_erasers =
3095 {
3096 {
3097 .eraseblocks = { {4 * 1024, 32} },
3098 .block_erase = spi_block_erase_d7,
3099 }, {
3100 .eraseblocks = { {32 * 1024, 4} },
3101 .block_erase = spi_block_erase_d8,
3102 }, {
3103 .eraseblocks = { {128 * 1024, 1} },
3104 .block_erase = spi_block_erase_c7,
3105 }
3106 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003107 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003108 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003109 },
3110
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003111 {
3112 .vendor = "PMC",
3113 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003114 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003115 .manufacture_id = PMC_ID,
3116 .model_id = PMC_25LV016B,
3117 .total_size = 2048,
3118 .page_size = 256,
3119 .tested = TEST_UNTESTED,
3120 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003121 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003122 .block_erasers =
3123 {
3124 {
3125 .eraseblocks = { {4 * 1024, 512} },
3126 .block_erase = spi_block_erase_d7,
3127 }, {
3128 .eraseblocks = { {4 * 1024, 512} },
3129 .block_erase = spi_block_erase_20,
3130 }, {
3131 .eraseblocks = { {64 * 1024, 32} },
3132 .block_erase = spi_block_erase_d8,
3133 }, {
3134 .eraseblocks = { {2 * 1024 * 1024, 1} },
3135 .block_erase = spi_block_erase_60,
3136 }, {
3137 .eraseblocks = { {2 * 1024 * 1024, 1} },
3138 .block_erase = spi_block_erase_c7,
3139 }
3140 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003141 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003142 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003143 },
3144
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003145 {
3146 .vendor = "PMC",
3147 .name = "Pm25LV020",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003148 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003149 .manufacture_id = PMC_ID,
3150 .model_id = PMC_25LV020,
3151 .total_size = 256,
3152 .page_size = 256,
3153 .tested = TEST_UNTESTED,
3154 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003155 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003156 .block_erasers =
3157 {
3158 {
3159 .eraseblocks = { {4 * 1024, 64} },
3160 .block_erase = spi_block_erase_d7,
3161 }, {
3162 .eraseblocks = { {64 * 1024, 4} },
3163 .block_erase = spi_block_erase_d8,
3164 }, {
3165 .eraseblocks = { {256 * 1024, 1} },
3166 .block_erase = spi_block_erase_c7,
3167 }
3168 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003169 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003170 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003171 },
3172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003173 {
3174 .vendor = "PMC",
3175 .name = "Pm25LV040",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003176 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003177 .manufacture_id = PMC_ID,
3178 .model_id = PMC_25LV040,
3179 .total_size = 512,
3180 .page_size = 256,
3181 .tested = TEST_UNTESTED,
3182 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003183 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003184 .block_erasers =
3185 {
3186 {
3187 .eraseblocks = { {4 * 1024, 128} },
3188 .block_erase = spi_block_erase_d7,
3189 }, {
3190 .eraseblocks = { {64 * 1024, 8} },
3191 .block_erase = spi_block_erase_d8,
3192 }, {
3193 .eraseblocks = { {512 * 1024, 1} },
3194 .block_erase = spi_block_erase_c7,
3195 }
3196 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003197 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003198 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003199 },
3200
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003201 {
3202 .vendor = "PMC",
3203 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003204 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003205 .manufacture_id = PMC_ID,
3206 .model_id = PMC_25LV080B,
3207 .total_size = 1024,
3208 .page_size = 256,
3209 .tested = TEST_UNTESTED,
3210 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003211 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003212 .block_erasers =
3213 {
3214 {
3215 .eraseblocks = { {4 * 1024, 256} },
3216 .block_erase = spi_block_erase_d7,
3217 }, {
3218 .eraseblocks = { {4 * 1024, 256} },
3219 .block_erase = spi_block_erase_20,
3220 }, {
3221 .eraseblocks = { {64 * 1024, 16} },
3222 .block_erase = spi_block_erase_d8,
3223 }, {
3224 .eraseblocks = { {1024 * 1024, 1} },
3225 .block_erase = spi_block_erase_60,
3226 }, {
3227 .eraseblocks = { {1024 * 1024, 1} },
3228 .block_erase = spi_block_erase_c7,
3229 }
3230 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003231 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003232 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003233 },
3234
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003235 {
3236 .vendor = "PMC",
3237 .name = "Pm25LV512",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003238 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003239 .manufacture_id = PMC_ID,
3240 .model_id = PMC_25LV512,
3241 .total_size = 64,
3242 .page_size = 256,
3243 .tested = TEST_UNTESTED,
3244 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003245 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003246 .block_erasers =
3247 {
3248 {
3249 .eraseblocks = { {4 * 1024, 16} },
3250 .block_erase = spi_block_erase_d7,
3251 }, {
3252 .eraseblocks = { {32 * 1024, 2} },
3253 .block_erase = spi_block_erase_d8,
3254 }, {
3255 .eraseblocks = { {64 * 1024, 1} },
3256 .block_erase = spi_block_erase_c7,
3257 }
3258 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003259 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003260 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003261 },
3262
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003263 {
3264 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00003265 .name = "Pm29F002T",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003266 .bustype = CHIP_BUSTYPE_PARALLEL,
3267 .manufacture_id = PMC_ID_NOPREFIX,
3268 .model_id = PMC_29F002T,
3269 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00003270 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003271 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
3272 .tested = TEST_UNTESTED,
3273 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003274 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00003275 .block_erasers =
3276 {
3277 {
3278 .eraseblocks = {
3279 {128 * 1024, 1},
3280 {96 * 1024, 1},
3281 {8 * 1024, 2},
3282 {16 * 1024, 1},
3283 },
Sean Nelson35727f72010-01-28 23:55:12 +00003284 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003285 }, {
3286 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003287 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003288 },
3289 },
Sean Nelson35727f72010-01-28 23:55:12 +00003290 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003291 .read = read_memmapped,
3292 },
3293
3294 {
3295 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00003296 .name = "Pm29F002B",
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003297 .bustype = CHIP_BUSTYPE_PARALLEL,
3298 .manufacture_id = PMC_ID_NOPREFIX,
3299 .model_id = PMC_29F002B,
3300 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00003301 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003302 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003303 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00003304 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003305 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00003306 .block_erasers =
3307 {
3308 {
3309 .eraseblocks = {
3310 {16 * 1024, 1},
3311 {8 * 1024, 2},
3312 {96 * 1024, 1},
3313 {128 * 1024, 1},
3314 },
Sean Nelson35727f72010-01-28 23:55:12 +00003315 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003316 }, {
3317 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003318 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00003319 },
3320 },
Sean Nelson35727f72010-01-28 23:55:12 +00003321 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00003322 .read = read_memmapped,
3323 },
3324
3325 {
3326 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003327 .name = "Pm39LV010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003328 .bustype = CHIP_BUSTYPE_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003329 .manufacture_id = PMC_ID_NOPREFIX,
3330 .model_id = PMC_39F010,
3331 .total_size = 128,
3332 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003333 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
3334 .tested = TEST_UNTESTED,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003335 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003336 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00003337 .block_erasers =
3338 {
3339 {
3340 .eraseblocks = { {4 * 1024, 32} },
3341 .block_erase = erase_sector_jedec,
3342 }, {
3343 .eraseblocks = { {64 * 1024, 2} },
3344 .block_erase = erase_block_jedec,
3345 }, {
3346 .eraseblocks = { {128 * 1024, 1} },
3347 .block_erase = erase_chip_block_jedec,
3348 }
3349 },
Sean Nelson35727f72010-01-28 23:55:12 +00003350 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00003351 .read = read_memmapped,
3352 },
3353
3354 {
3355 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003356 .name = "Pm49FL002",
Sean Nelson35727f72010-01-28 23:55:12 +00003357 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux*/
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003358 .manufacture_id = PMC_ID_NOPREFIX,
3359 .model_id = PMC_49FL002,
3360 .total_size = 256,
3361 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003362 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Russ Dill8c7c4682010-03-09 16:53:06 +00003363 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00003364 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003365 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00003366 .block_erasers =
3367 {
3368 {
3369 .eraseblocks = { {4 * 1024, 64} },
3370 .block_erase = erase_sector_jedec,
3371 }, {
3372 .eraseblocks = { {16 * 1024, 16} },
3373 .block_erase = erase_block_jedec,
3374 }, {
3375 .eraseblocks = { {256 * 1024, 1} },
3376 .block_erase = erase_chip_block_jedec,
3377 }
3378 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00003379 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00003380 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003381 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003382 },
3383
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003384 {
3385 .vendor = "PMC",
3386 .name = "Pm49FL004",
Sean Nelson35727f72010-01-28 23:55:12 +00003387 .bustype = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH, /* A/A Mux*/
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003388 .manufacture_id = PMC_ID_NOPREFIX,
3389 .model_id = PMC_49FL004,
3390 .total_size = 512,
3391 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003392 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
3393 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00003394 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003395 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00003396 .block_erasers =
3397 {
3398 {
3399 .eraseblocks = { {4 * 1024, 128} },
3400 .block_erase = erase_sector_jedec,
3401 }, {
3402 .eraseblocks = { {64 * 1024, 8} },
3403 .block_erase = erase_block_jedec,
3404 }, {
3405 .eraseblocks = { {512 * 1024, 1} },
3406 .block_erase = erase_chip_block_jedec,
3407 }
3408 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00003409 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00003410 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003411 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003412 },
3413
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003414 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00003415 .vendor = "Sanyo",
3416 .name = "LF25FW203A",
3417 .bustype = CHIP_BUSTYPE_SPI,
3418 .manufacture_id = SANYO_ID,
3419 .model_id = SANYO_LE25FW203A,
3420 .total_size = 2048,
3421 .page_size = 256,
3422 .tested = TEST_UNTESTED,
3423 .probe = probe_spi_rdid,
3424 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003425 .block_erasers =
3426 {
3427 {
3428 .eraseblocks = { {64 * 1024, 32} },
3429 .block_erase = spi_block_erase_d8,
3430 }, {
3431 .eraseblocks = { {2 * 1024 * 1024, 1} },
3432 .block_erase = spi_block_erase_c7,
3433 }
3434 },
Sean Nelsond70b09c2009-11-24 02:11:08 +00003435 .write = spi_chip_write_256,
3436 .read = spi_chip_read,
3437 },
3438
3439 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003440 .vendor = "Sharp",
3441 .name = "LHF00L04",
Urja Rannikko038a3122009-06-28 19:19:25 +00003442 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003443 .manufacture_id = SHARP_ID,
3444 .model_id = SHARP_LHF00L04,
3445 .total_size = 1024,
3446 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003447 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003448 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003449 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003450 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003451 .block_erasers =
3452 {
3453 {
3454 .eraseblocks = {
3455 {64 * 1024, 15},
3456 {8 * 1024, 8}
3457 },
Sean Nelson28accc22010-03-19 18:47:06 +00003458 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003459 }, {
3460 .eraseblocks = {
3461 {1024 * 1024, 1}
3462 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00003463 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00003464 },
3465 },
Sean Nelson28accc22010-03-19 18:47:06 +00003466 .unlock = unlock_82802ab,
3467 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003468 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003469 },
3470
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003471 {
3472 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00003473 .name = "S25FL008A",
3474 .bustype = CHIP_BUSTYPE_SPI,
3475 .manufacture_id = SPANSION_ID,
3476 .model_id = SPANSION_S25FL008A,
3477 .total_size = 1024,
3478 .page_size = 256,
3479 .tested = TEST_OK_PREW,
3480 .probe = probe_spi_rdid,
3481 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00003482 .block_erasers =
3483 {
3484 {
3485 .eraseblocks = { {64 * 1024, 16} },
3486 .block_erase = spi_block_erase_d8,
3487 }, {
3488 .eraseblocks = { {1024 * 1024, 1} },
3489 .block_erase = spi_block_erase_c7,
3490 }
3491 },
3492 .write = spi_chip_write_256,
3493 .read = spi_chip_read,
3494 },
3495
3496 {
3497 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003498 .name = "S25FL016A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003499 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003500 .manufacture_id = SPANSION_ID,
3501 .model_id = SPANSION_S25FL016A,
3502 .total_size = 2048,
3503 .page_size = 256,
Sean Nelson5643c072010-01-19 03:23:07 +00003504 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003505 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003506 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00003507 .block_erasers =
3508 {
3509 {
3510 .eraseblocks = { {64 * 1024, 32} },
3511 .block_erase = spi_block_erase_d8,
3512 }, {
3513 .eraseblocks = { {2 * 1024 * 1024, 1} },
3514 .block_erase = spi_block_erase_c7,
3515 }
3516 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003517 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003518 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003519 },
3520
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003521 {
3522 .vendor = "SST",
3523 .name = "SST25VF016B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003524 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003525 .manufacture_id = SST_ID,
3526 .model_id = SST_25VF016B,
3527 .total_size = 2048,
3528 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003529 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003530 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003531 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003532 .block_erasers =
3533 {
3534 {
3535 .eraseblocks = { {4 * 1024, 512} },
3536 .block_erase = spi_block_erase_20,
3537 }, {
3538 .eraseblocks = { {32 * 1024, 64} },
3539 .block_erase = spi_block_erase_52,
3540 }, {
3541 .eraseblocks = { {64 * 1024, 32} },
3542 .block_erase = spi_block_erase_d8,
3543 }, {
3544 .eraseblocks = { {2 * 1024 * 1024, 1} },
3545 .block_erase = spi_block_erase_60,
3546 }, {
3547 .eraseblocks = { {2 * 1024 * 1024, 1} },
3548 .block_erase = spi_block_erase_c7,
3549 },
3550 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003551 .write = spi_chip_write_1,
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 = "SST",
3557 .name = "SST25VF032B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003558 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003559 .manufacture_id = SST_ID,
3560 .model_id = SST_25VF032B,
3561 .total_size = 4096,
3562 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003563 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003564 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003565 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003566 .block_erasers =
3567 {
3568 {
3569 .eraseblocks = { {4 * 1024, 1024} },
3570 .block_erase = spi_block_erase_20,
3571 }, {
3572 .eraseblocks = { {32 * 1024, 128} },
3573 .block_erase = spi_block_erase_52,
3574 }, {
3575 .eraseblocks = { {64 * 1024, 64} },
3576 .block_erase = spi_block_erase_d8,
3577 }, {
3578 .eraseblocks = { {4 * 1024 * 1024, 1} },
3579 .block_erase = spi_block_erase_60,
3580 }, {
3581 .eraseblocks = { {4 * 1024 * 1024, 1} },
3582 .block_erase = spi_block_erase_c7,
3583 },
3584 },
3585 .write = spi_chip_write_1,
3586 .read = spi_chip_read,
3587 },
3588
3589 {
3590 .vendor = "SST",
3591 .name = "SST25VF040.REMS",
3592 .bustype = CHIP_BUSTYPE_SPI,
3593 .manufacture_id = SST_ID,
3594 .model_id = SST_25VF040_REMS,
3595 .total_size = 512,
3596 .page_size = 256,
3597 .tested = TEST_OK_PR,
3598 .probe = probe_spi_rems,
3599 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003600 .block_erasers =
3601 {
3602 {
3603 .eraseblocks = { {4 * 1024, 128} },
3604 .block_erase = spi_block_erase_20,
3605 }, {
3606 .eraseblocks = { {32 * 1024, 16} },
3607 .block_erase = spi_block_erase_52,
3608 }, {
3609 .eraseblocks = { {512 * 1024, 1} },
3610 .block_erase = spi_block_erase_60,
3611 },
3612 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003613 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003614 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003615 },
3616
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003617 {
3618 .vendor = "SST",
3619 .name = "SST25VF040B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003620 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003621 .manufacture_id = SST_ID,
3622 .model_id = SST_25VF040B,
3623 .total_size = 512,
3624 .page_size = 256,
3625 .tested = TEST_UNTESTED,
3626 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003627 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003628 .block_erasers =
3629 {
3630 {
3631 .eraseblocks = { {4 * 1024, 128} },
3632 .block_erase = spi_block_erase_20,
3633 }, {
3634 .eraseblocks = { {32 * 1024, 16} },
3635 .block_erase = spi_block_erase_52,
3636 }, {
3637 .eraseblocks = { {64 * 1024, 8} },
3638 .block_erase = spi_block_erase_d8,
3639 }, {
3640 .eraseblocks = { {512 * 1024, 1} },
3641 .block_erase = spi_block_erase_60,
3642 }, {
3643 .eraseblocks = { {512 * 1024, 1} },
3644 .block_erase = spi_block_erase_c7,
3645 },
3646 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003647 .write = spi_chip_write_1,
Zheng Bao0677dff2009-02-25 08:07:33 +00003648 .read = spi_chip_read,
3649 },
3650
3651 {
3652 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00003653 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003654 .bustype = CHIP_BUSTYPE_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003655 .manufacture_id = SST_ID,
3656 .model_id = SST_25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00003657 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003658 .page_size = 256,
Peter Stugefd9217d2009-01-26 03:37:40 +00003659 .tested = TEST_OK_PR,
3660 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003661 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003662 .block_erasers =
3663 {
3664 {
3665 .eraseblocks = { {4 * 1024, 128} },
3666 .block_erase = spi_block_erase_20,
3667 }, {
3668 .eraseblocks = { {32 * 1024, 16} },
3669 .block_erase = spi_block_erase_52,
3670 }, {
3671 .eraseblocks = { {64 * 1024, 8} },
3672 .block_erase = spi_block_erase_d8,
3673 }, {
3674 .eraseblocks = { {512 * 1024, 1} },
3675 .block_erase = spi_block_erase_60,
3676 }, {
3677 .eraseblocks = { {512 * 1024, 1} },
3678 .block_erase = spi_block_erase_c7,
3679 },
3680 },
Carl-Daniel Hailfinger93bb3752009-05-13 22:19:12 +00003681 .write = spi_chip_write_1,
Peter Stugefd9217d2009-01-26 03:37:40 +00003682 .read = spi_chip_read,
3683 },
3684
3685 {
3686 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003687 .name = "SST25VF080B",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00003688 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003689 .manufacture_id = SST_ID,
3690 .model_id = SST_25VF080B,
3691 .total_size = 1024,
3692 .page_size = 256,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003693 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003694 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003695 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00003696 .block_erasers =
3697 {
3698 {
3699 .eraseblocks = { {4 * 1024, 256} },
3700 .block_erase = spi_block_erase_20,
3701 }, {
3702 .eraseblocks = { {32 * 1024, 32} },
3703 .block_erase = spi_block_erase_52,
3704 }, {
3705 .eraseblocks = { {64 * 1024, 16} },
3706 .block_erase = spi_block_erase_d8,
3707 }, {
3708 .eraseblocks = { {1024 * 1024, 1} },
3709 .block_erase = spi_block_erase_60,
3710 }, {
3711 .eraseblocks = { {1024 * 1024, 1} },
3712 .block_erase = spi_block_erase_c7,
3713 },
3714 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00003715 .write = spi_chip_write_1,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003716 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00003717 },
3718
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003719 {
3720 .vendor = "SST",
3721 .name = "SST28SF040A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003722 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003723 .manufacture_id = SST_ID,
3724 .model_id = SST_28SF040,
3725 .total_size = 512,
3726 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003727 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003728 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00003729 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00003730 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003731 .block_erasers =
3732 {
3733 {
3734 .eraseblocks = { {128, 4096} },
3735 .block_erase = erase_sector_28sf040,
3736 }, {
3737 .eraseblocks = { {512 * 1024, 1} },
3738 .block_erase = erase_chip_28sf040,
3739 }
3740 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003741 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003742 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003743 },
3744
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003745 {
3746 .vendor = "SST",
3747 .name = "SST29EE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003748 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003749 .manufacture_id = SST_ID,
3750 .model_id = SST_29EE010,
3751 .total_size = 128,
3752 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003753 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003754 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003755 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003756 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003757 .block_erasers =
3758 {
3759 {
3760 .eraseblocks = { {128 * 1024, 1} },
3761 .block_erase = erase_chip_block_jedec,
3762 }
3763 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003764 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003765 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003766 },
3767
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003768 {
3769 .vendor = "SST",
3770 .name = "SST29LE010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003771 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003772 .manufacture_id = SST_ID,
3773 .model_id = SST_29LE010,
3774 .total_size = 128,
3775 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003776 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003777 .tested = TEST_UNTESTED,
3778 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003779 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003780 .block_erasers =
3781 {
3782 {
3783 .eraseblocks = { {128 * 1024, 1} },
3784 .block_erase = erase_chip_block_jedec,
3785 }
3786 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003787 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003788 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003789 },
3790
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003791 {
3792 .vendor = "SST",
3793 .name = "SST29EE020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003794 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003795 .manufacture_id = SST_ID,
3796 .model_id = SST_29EE020A,
3797 .total_size = 256,
3798 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003799 .feature_bits = FEATURE_LONG_RESET,
3800 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003801 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003802 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003803 .block_erasers =
3804 {
3805 {
3806 .eraseblocks = { {256 * 1024, 1} },
3807 .block_erase = erase_chip_block_jedec,
3808 }
3809 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003810 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003811 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003812 },
3813
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003814 {
3815 .vendor = "SST",
3816 .name = "SST29LE020",
Urja Rannikko038a3122009-06-28 19:19:25 +00003817 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003818 .manufacture_id = SST_ID,
3819 .model_id = SST_29LE020,
3820 .total_size = 256,
3821 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00003822 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003823 .tested = TEST_UNTESTED,
3824 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003825 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00003826 .block_erasers =
3827 {
3828 {
3829 .eraseblocks = { {256 * 1024, 1} },
3830 .block_erase = erase_chip_block_jedec,
3831 }
3832 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003833 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003834 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003835 },
3836
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003837 {
3838 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00003839 .name = "SST39SF512",
3840 .bustype = CHIP_BUSTYPE_PARALLEL,
3841 .manufacture_id = SST_ID,
3842 .model_id = SST_39SF512,
3843 .total_size = 64,
3844 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003845 .feature_bits = FEATURE_EITHER_RESET,
3846 .tested = TEST_UNTESTED,
Uwe Hermann48da3f92010-01-23 15:15:19 +00003847 .probe = probe_jedec,
3848 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00003849 .block_erasers =
3850 {
3851 {
3852 .eraseblocks = { {4 * 1024, 16} },
3853 .block_erase = erase_sector_jedec,
3854 }, {
3855 .eraseblocks = { {64 * 1024, 1} },
3856 .block_erase = erase_chip_block_jedec,
3857 }
3858 },
Sean Nelson35727f72010-01-28 23:55:12 +00003859 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00003860 .read = read_memmapped,
3861 },
3862
3863 {
3864 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003865 .name = "SST39SF010A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003866 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003867 .manufacture_id = SST_ID,
3868 .model_id = SST_39SF010,
3869 .total_size = 128,
3870 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003871 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003872 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003873 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003874 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003875 .block_erasers =
3876 {
3877 {
3878 .eraseblocks = { {4 * 1024, 32} },
3879 .block_erase = erase_sector_jedec,
3880 }, {
3881 .eraseblocks = { {128 * 1024, 1} },
3882 .block_erase = erase_chip_block_jedec,
3883 }
3884 },
Sean Nelson35727f72010-01-28 23:55:12 +00003885 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003886 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003887 },
3888
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003889 {
3890 .vendor = "SST",
3891 .name = "SST39SF020A",
Urja Rannikko038a3122009-06-28 19:19:25 +00003892 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003893 .manufacture_id = SST_ID,
3894 .model_id = SST_39SF020,
3895 .total_size = 256,
3896 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003897 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00003898 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003899 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003900 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003901 .block_erasers =
3902 {
3903 {
3904 .eraseblocks = { {4 * 1024, 64} },
3905 .block_erase = erase_sector_jedec,
3906 }, {
3907 .eraseblocks = { {256 * 1024, 1} },
3908 .block_erase = erase_chip_block_jedec,
3909 }
3910 },
Sean Nelson35727f72010-01-28 23:55:12 +00003911 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003912 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003913 },
3914
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003915 {
3916 .vendor = "SST",
3917 .name = "SST39SF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00003918 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003919 .manufacture_id = SST_ID,
3920 .model_id = SST_39SF040,
3921 .total_size = 512,
3922 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003923 .feature_bits = FEATURE_EITHER_RESET,
3924 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003925 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003926 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003927 .block_erasers =
3928 {
3929 {
3930 .eraseblocks = { {4 * 1024, 128} },
3931 .block_erase = erase_sector_jedec,
3932 }, {
3933 .eraseblocks = { {512 * 1024, 1} },
3934 .block_erase = erase_chip_block_jedec,
3935 }
3936 },
Sean Nelson35727f72010-01-28 23:55:12 +00003937 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003938 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003939 },
3940
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003941 {
3942 .vendor = "SST",
3943 .name = "SST39VF512",
Urja Rannikko038a3122009-06-28 19:19:25 +00003944 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003945 .manufacture_id = SST_ID,
3946 .model_id = SST_39VF512,
3947 .total_size = 64,
3948 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003949 .feature_bits = FEATURE_EITHER_RESET,
3950 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003951 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003952 .probe_timing = 1, /* 150 ns*/
Sean Nelson51c83fb2010-01-20 20:55:53 +00003953 .block_erasers =
3954 {
3955 {
3956 .eraseblocks = { {4 * 1024, 16} },
3957 .block_erase = erase_sector_jedec,
3958 }, {
3959 .eraseblocks = { {64 * 1024, 1} },
3960 .block_erase = erase_chip_block_jedec,
3961 }
3962 },
Sean Nelson35727f72010-01-28 23:55:12 +00003963 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003964 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003965 },
3966
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003967 {
3968 .vendor = "SST",
3969 .name = "SST39VF010",
Urja Rannikko038a3122009-06-28 19:19:25 +00003970 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003971 .manufacture_id = SST_ID,
3972 .model_id = SST_39VF010,
3973 .total_size = 128,
3974 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003975 .feature_bits = FEATURE_EITHER_RESET,
3976 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003977 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00003978 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00003979 .block_erasers =
3980 {
3981 {
3982 .eraseblocks = { {4 * 1024, 32} },
3983 .block_erase = erase_sector_jedec,
3984 }, {
3985 .eraseblocks = { {128 * 1024, 1} },
3986 .block_erase = erase_chip_block_jedec,
3987 }
3988 },
Sean Nelson35727f72010-01-28 23:55:12 +00003989 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003990 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00003991 },
3992
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003993 {
3994 .vendor = "SST",
3995 .name = "SST39VF020",
Urja Rannikko038a3122009-06-28 19:19:25 +00003996 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003997 .manufacture_id = SST_ID,
3998 .model_id = SST_39VF020,
3999 .total_size = 256,
4000 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004001 .feature_bits = FEATURE_EITHER_RESET,
4002 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004003 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004004 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004005 .block_erasers =
4006 {
4007 {
4008 .eraseblocks = { {4 * 1024, 64} },
4009 .block_erase = erase_sector_jedec,
4010 }, {
4011 .eraseblocks = { {256 * 1024, 1} },
4012 .block_erase = erase_chip_block_jedec,
4013 }
4014 },
Sean Nelson35727f72010-01-28 23:55:12 +00004015 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004016 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004017 },
4018
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004019 {
4020 .vendor = "SST",
4021 .name = "SST39VF040",
Urja Rannikko038a3122009-06-28 19:19:25 +00004022 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004023 .manufacture_id = SST_ID,
4024 .model_id = SST_39VF040,
4025 .total_size = 512,
4026 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004027 .feature_bits = FEATURE_EITHER_RESET,
4028 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004029 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004030 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004031 .block_erasers =
4032 {
4033 {
4034 .eraseblocks = { {4 * 1024, 128} },
4035 .block_erase = erase_sector_jedec,
4036 }, {
4037 .eraseblocks = { {512 * 1024, 1} },
4038 .block_erase = erase_chip_block_jedec,
4039 }
4040 },
Sean Nelson35727f72010-01-28 23:55:12 +00004041 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004042 .read = read_memmapped,
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00004043 },
FENG yu ningff692fb2008-12-08 18:15:10 +00004044
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004045 {
4046 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00004047 .name = "SST39VF080",
Urja Rannikko038a3122009-06-28 19:19:25 +00004048 .bustype = CHIP_BUSTYPE_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004049 .manufacture_id = SST_ID,
4050 .model_id = SST_39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00004051 .total_size = 1024,
4052 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004053 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00004054 .tested = TEST_UNTESTED,
4055 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004056 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004057 .block_erasers =
4058 {
4059 {
4060 .eraseblocks = { {4 * 1024, 256} },
4061 .block_erase = erase_sector_jedec,
4062 }, {
4063 .eraseblocks = { {64 * 1024, 16} },
4064 .block_erase = erase_block_jedec,
4065 }, {
4066 .eraseblocks = { {1024 * 1024, 1} },
4067 .block_erase = erase_chip_block_jedec,
4068 }
4069 },
Sean Nelson35727f72010-01-28 23:55:12 +00004070 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004071 .read = read_memmapped,
Peter Stuge8440cc02009-01-25 23:55:12 +00004072 },
4073
4074 {
4075 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004076 .name = "SST49LF002A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004077 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004078 .manufacture_id = SST_ID,
4079 .model_id = SST_49LF002A,
4080 .total_size = 256,
4081 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004082 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004083 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004084 .probe = probe_jedec,
4085 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004086 .block_erasers =
4087 {
4088 {
4089 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004090 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004091 }, {
4092 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004093 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004094 }, {
4095 .eraseblocks = { {256 * 1024, 1} },
4096 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4097 }
4098 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004099 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004100 .printlock = printlock_sst_fwhub,
4101 .unlock = unlock_sst_fwhub,
4102 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004103 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004104 },
4105
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004106 {
4107 .vendor = "SST",
4108 .name = "SST49LF003A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004109 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004110 .manufacture_id = SST_ID,
4111 .model_id = SST_49LF003A,
4112 .total_size = 384,
4113 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004114 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Peter Lemenkov45835c42009-09-25 01:09:18 +00004115 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004116 .probe = probe_jedec,
4117 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004118 .block_erasers =
4119 {
4120 {
4121 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004122 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004123 }, {
4124 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004125 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004126 }, {
4127 .eraseblocks = { {384 * 1024, 1} },
4128 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4129 }
4130 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004131 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004132 .printlock = printlock_sst_fwhub,
4133 .unlock = unlock_sst_fwhub,
4134 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004135 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004136 },
4137
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004138 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004139 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
4140 * and is only honored for 64k block erase, but not 4k sector erase.
4141 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004142 .vendor = "SST",
4143 .name = "SST49LF004A/B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004144 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004145 .manufacture_id = SST_ID,
4146 .model_id = SST_49LF004A,
4147 .total_size = 512,
4148 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004149 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004150 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004151 .probe = probe_jedec,
4152 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004153 .block_erasers =
4154 {
4155 {
4156 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004157 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004158 }, {
4159 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004160 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004161 }, {
4162 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00004163 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00004164 },
4165 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004166 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004167 .printlock = printlock_sst_fwhub,
4168 .unlock = unlock_sst_fwhub,
4169 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004170 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004171 },
4172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004173 {
4174 .vendor = "SST",
4175 .name = "SST49LF004C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004176 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004177 .manufacture_id = SST_ID,
4178 .model_id = SST_49LF004C,
4179 .total_size = 512,
4180 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004181 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004182 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004183 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004184 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004185 .block_erasers =
4186 {
4187 {
4188 .eraseblocks = { {4 * 1024, 128} },
4189 .block_erase = erase_sector_49lfxxxc,
4190 }, {
4191 .eraseblocks = {
4192 {64 * 1024, 7},
4193 {32 * 1024, 1},
4194 {8 * 1024, 2},
4195 {16 * 1024, 1},
4196 },
4197 .block_erase = erase_block_49lfxxxc,
4198 }
4199 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004200 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004201 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004202 },
4203
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004204 {
4205 .vendor = "SST",
4206 .name = "SST49LF008A",
Urja Rannikko038a3122009-06-28 19:19:25 +00004207 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004208 .manufacture_id = SST_ID,
4209 .model_id = SST_49LF008A,
4210 .total_size = 1024,
4211 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004212 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004213 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004214 .probe = probe_jedec,
4215 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004216 .block_erasers =
4217 {
4218 {
4219 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004220 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004221 }, {
4222 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004223 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004224 }, {
4225 .eraseblocks = { {1024 * 1024, 1} },
4226 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
4227 }
4228 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004229 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00004230 .printlock = printlock_sst_fwhub,
4231 .unlock = unlock_sst_fwhub,
4232 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004233 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004234 },
4235
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004236 {
4237 .vendor = "SST",
4238 .name = "SST49LF008C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004239 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004240 .manufacture_id = SST_ID,
4241 .model_id = SST_49LF008C,
4242 .total_size = 1024,
4243 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004244 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004245 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004246 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004247 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004248 .block_erasers =
4249 {
4250 {
4251 .eraseblocks = { {4 * 1024, 256} },
4252 .block_erase = erase_sector_49lfxxxc,
4253 }, {
4254 .eraseblocks = {
4255 {64 * 1024, 15},
4256 {32 * 1024, 1},
4257 {8 * 1024, 2},
4258 {16 * 1024, 1},
4259 },
4260 .block_erase = erase_block_49lfxxxc,
4261 }
4262 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004263 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004264 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004265 },
4266
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004267 {
4268 .vendor = "SST",
4269 .name = "SST49LF016C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004270 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004271 .manufacture_id = SST_ID,
4272 .model_id = SST_49LF016C,
4273 .total_size = 2048,
4274 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004275 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004276 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004277 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004278 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004279 .block_erasers =
4280 {
4281 {
4282 .eraseblocks = { {4 * 1024, 512} },
4283 .block_erase = erase_sector_49lfxxxc,
4284 }, {
4285 .eraseblocks = {
4286 {64 * 1024, 31},
4287 {32 * 1024, 1},
4288 {8 * 1024, 2},
4289 {16 * 1024, 1},
4290 },
4291 .block_erase = erase_block_49lfxxxc,
4292 }
4293 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004294 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004295 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004296 },
4297
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004298 {
4299 .vendor = "SST",
4300 .name = "SST49LF020",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004301 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004302 .manufacture_id = SST_ID,
4303 .model_id = SST_49LF020,
4304 .total_size = 256,
4305 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004306 .feature_bits = FEATURE_EITHER_RESET,
4307 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004308 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004309 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004310 .block_erasers =
4311 {
4312 {
4313 .eraseblocks = { {4 * 1024, 64} },
4314 .block_erase = erase_sector_jedec,
4315 }, {
4316 .eraseblocks = { {16 * 1024, 16} },
4317 .block_erase = erase_block_jedec,
4318 }, {
4319 .eraseblocks = { {256 * 1024, 1} },
4320 .block_erase = NULL,
4321 }
4322 },
Sean Nelson35727f72010-01-28 23:55:12 +00004323 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004324 .read = read_memmapped,
Sven Schnellec208dfb2009-01-07 12:35:09 +00004325 },
4326
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004327 {
4328 .vendor = "SST",
4329 .name = "SST49LF020A",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004330 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004331 .manufacture_id = SST_ID,
4332 .model_id = SST_49LF020A,
4333 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00004334 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004335 .feature_bits = FEATURE_EITHER_RESET,
4336 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004337 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004338 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004339 .block_erasers =
4340 {
4341 {
4342 .eraseblocks = { {4 * 1024, 64} },
4343 .block_erase = erase_sector_jedec,
4344 }, {
4345 .eraseblocks = { {16 * 1024, 16} },
4346 .block_erase = erase_block_jedec,
4347 }, {
4348 .eraseblocks = { {256 * 1024, 1} },
4349 .block_erase = NULL,
4350 }
4351 },
Sean Nelson35727f72010-01-28 23:55:12 +00004352 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004353 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004354 },
4355
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004356 {
4357 .vendor = "SST",
4358 .name = "SST49LF040",
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004359 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004360 .manufacture_id = SST_ID,
4361 .model_id = SST_49LF040,
4362 .total_size = 512,
4363 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004364 .feature_bits = FEATURE_EITHER_RESET,
4365 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004366 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00004367 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004368 .block_erasers =
4369 {
4370 {
4371 .eraseblocks = { {4 * 1024, 128} },
4372 .block_erase = erase_sector_jedec,
4373 }, {
4374 .eraseblocks = { {64 * 1024, 8} },
4375 .block_erase = erase_block_jedec,
4376 }, {
4377 .eraseblocks = { {512 * 1024, 1} },
4378 .block_erase = NULL,
4379 }
4380 },
Sean Nelson35727f72010-01-28 23:55:12 +00004381 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004382 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004383 },
4384
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004385 {
4386 .vendor = "SST",
4387 .name = "SST49LF040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004388 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004389 .manufacture_id = SST_ID,
4390 .model_id = SST_49LF040B,
4391 .total_size = 512,
4392 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004393 .feature_bits = FEATURE_EITHER_RESET,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004394 .tested = TEST_UNTESTED,
4395 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004396 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004397 .block_erasers =
4398 {
4399 {
4400 .eraseblocks = { {4 * 1024, 128} },
4401 .block_erase = erase_sector_jedec,
4402 }, {
4403 .eraseblocks = { {64 * 1024, 8} },
4404 .block_erase = erase_block_jedec,
4405 }, {
4406 .eraseblocks = { {512 * 1024, 1} },
4407 .block_erase = NULL,
4408 }
4409 },
Sean Nelson35727f72010-01-28 23:55:12 +00004410 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004411 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004412 },
4413
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004414 {
4415 .vendor = "SST",
4416 .name = "SST49LF080A",
Urja Rannikko038a3122009-06-28 19:19:25 +00004417 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004418 .manufacture_id = SST_ID,
Urja Rannikko038a3122009-06-28 19:19:25 +00004419 .model_id = SST_49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004420 .total_size = 1024,
4421 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00004422 .feature_bits = FEATURE_EITHER_RESET,
4423 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004424 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004425 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004426 .block_erasers =
4427 {
4428 {
4429 .eraseblocks = { {4 * 1024, 256} },
4430 .block_erase = erase_sector_jedec,
4431 }, {
4432 .eraseblocks = { {64 * 1024, 16} },
4433 .block_erase = erase_block_jedec,
4434 }, {
4435 .eraseblocks = { {1024 * 1024, 1} },
4436 .block_erase = NULL,
4437 }
4438 },
Sean Nelson35727f72010-01-28 23:55:12 +00004439 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004440 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004441 },
4442
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004443 {
4444 .vendor = "SST",
4445 .name = "SST49LF160C",
Urja Rannikko038a3122009-06-28 19:19:25 +00004446 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004447 .manufacture_id = SST_ID,
4448 .model_id = SST_49LF160C,
4449 .total_size = 2048,
4450 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004451 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson51c83fb2010-01-20 20:55:53 +00004452 .tested = TEST_OK_PRW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004453 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004454 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00004455 .block_erasers =
4456 {
4457 {
4458 .eraseblocks = { {4 * 1024, 512} },
4459 .block_erase = erase_sector_49lfxxxc,
4460 }, {
4461 .eraseblocks = {
4462 {64 * 1024, 31},
4463 {32 * 1024, 1},
4464 {8 * 1024, 2},
4465 {16 * 1024, 1},
4466 },
4467 .block_erase = erase_block_49lfxxxc,
4468 }
4469 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00004470 .unlock = unlock_49lfxxxc,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004471 .write = write_49lfxxxc,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004472 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004473 },
4474
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004475 {
4476 .vendor = "ST",
4477 .name = "M25P05-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004478 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004479 .manufacture_id = ST_ID,
4480 .model_id = ST_M25P05A,
4481 .total_size = 64,
4482 .page_size = 256,
4483 .tested = TEST_UNTESTED,
4484 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004485 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004486 .block_erasers =
4487 {
4488 {
4489 .eraseblocks = { {32 * 1024, 2} },
4490 .block_erase = spi_block_erase_d8,
4491 }, {
4492 .eraseblocks = { {64 * 1024, 1} },
4493 .block_erase = spi_block_erase_c7,
4494 }
4495 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004496 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004497 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004498 },
4499
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004500 /* The ST M25P05 is a bit of a problem. It has the same ID as the
4501 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
4502 * of 256 byte writes. We rely heavily on the fact that probe_spi_res
4503 * only is successful if RDID does not work.
4504 */
4505 {
4506 .vendor = "ST",
4507 .name = "M25P05.RES",
4508 .bustype = CHIP_BUSTYPE_SPI,
4509 .manufacture_id = ST_ID,
4510 .model_id = ST_M25P05_RES,
4511 .total_size = 64,
4512 .page_size = 256,
4513 .tested = TEST_UNTESTED,
4514 .probe = probe_spi_res,
4515 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004516 .block_erasers =
4517 {
4518 {
4519 .eraseblocks = { {32 * 1024, 2} },
4520 .block_erase = spi_block_erase_d8,
4521 }, {
4522 .eraseblocks = { {64 * 1024, 1} },
4523 .block_erase = spi_block_erase_c7,
4524 }
4525 },
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004526 .write = spi_chip_write_1, /* 128 */
4527 .read = spi_chip_read,
4528 },
4529
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004530 {
4531 .vendor = "ST",
4532 .name = "M25P10-A",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004533 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004534 .manufacture_id = ST_ID,
4535 .model_id = ST_M25P10A,
4536 .total_size = 128,
4537 .page_size = 256,
4538 .tested = TEST_UNTESTED,
4539 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004540 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004541 .block_erasers =
4542 {
4543 {
4544 .eraseblocks = { {32 * 1024, 4} },
4545 .block_erase = spi_block_erase_d8,
4546 }, {
4547 .eraseblocks = { {128 * 1024, 1} },
4548 .block_erase = spi_block_erase_c7,
4549 }
4550 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004551 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004552 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004553 },
4554
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004555 /* The ST M25P10 has the same problem as the M25P05. */
4556 {
4557 .vendor = "ST",
4558 .name = "M25P10.RES",
4559 .bustype = CHIP_BUSTYPE_SPI,
4560 .manufacture_id = ST_ID,
4561 .model_id = ST_M25P10_RES,
4562 .total_size = 128,
4563 .page_size = 256,
4564 .tested = TEST_UNTESTED,
4565 .probe = probe_spi_res,
4566 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004567 .block_erasers =
4568 {
4569 {
4570 .eraseblocks = { {32 * 1024, 4} },
4571 .block_erase = spi_block_erase_d8,
4572 }, {
4573 .eraseblocks = { {128 * 1024, 1} },
4574 .block_erase = spi_block_erase_c7,
4575 }
4576 },
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00004577 .write = spi_chip_write_1, /* 128 */
4578 .read = spi_chip_read,
4579 },
4580
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004581 {
4582 .vendor = "ST",
4583 .name = "M25P20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004584 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004585 .manufacture_id = ST_ID,
4586 .model_id = ST_M25P20,
4587 .total_size = 256,
4588 .page_size = 256,
4589 .tested = TEST_UNTESTED,
4590 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004591 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004592 .block_erasers =
4593 {
4594 {
4595 .eraseblocks = { {64 * 1024, 4} },
4596 .block_erase = spi_block_erase_d8,
4597 }, {
4598 .eraseblocks = { {256 * 1024, 1} },
4599 .block_erase = spi_block_erase_c7,
4600 }
4601 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004602 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004603 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004604 },
4605
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004606 {
4607 .vendor = "ST",
4608 .name = "M25P40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004609 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004610 .manufacture_id = ST_ID,
4611 .model_id = ST_M25P40,
4612 .total_size = 512,
4613 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004614 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004615 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004616 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004617 .block_erasers =
4618 {
4619 {
4620 .eraseblocks = { {64 * 1024, 8} },
4621 .block_erase = spi_block_erase_d8,
4622 }, {
4623 .eraseblocks = { {512 * 1024, 1} },
4624 .block_erase = spi_block_erase_c7,
4625 }
4626 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004627 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004628 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004629 },
4630
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004631 {
4632 .vendor = "ST",
4633 .name = "M25P40-old",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004634 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004635 .manufacture_id = ST_ID,
4636 .model_id = ST_M25P40_RES,
4637 .total_size = 512,
4638 .page_size = 256,
4639 .tested = TEST_UNTESTED,
4640 .probe = probe_spi_res,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004641 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004642 .block_erasers =
4643 {
4644 {
4645 .eraseblocks = { {64 * 1024, 8} },
4646 .block_erase = spi_block_erase_d8,
4647 }, {
4648 .eraseblocks = { {512 * 1024, 1} },
4649 .block_erase = spi_block_erase_c7,
4650 }
4651 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004652 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004653 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004654 },
4655
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004656 {
4657 .vendor = "ST",
4658 .name = "M25P80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004659 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004660 .manufacture_id = ST_ID,
4661 .model_id = ST_M25P80,
4662 .total_size = 1024,
4663 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004664 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004665 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004666 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004667 .block_erasers =
4668 {
4669 {
4670 .eraseblocks = { {64 * 1024, 16} },
4671 .block_erase = spi_block_erase_d8,
4672 }, {
4673 .eraseblocks = { {1024 * 1024, 1} },
4674 .block_erase = spi_block_erase_c7,
4675 }
4676 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004677 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004678 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004679 },
4680
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004681 {
4682 .vendor = "ST",
4683 .name = "M25P16",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004684 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004685 .manufacture_id = ST_ID,
4686 .model_id = ST_M25P16,
4687 .total_size = 2048,
4688 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004689 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004690 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004691 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004692 .block_erasers =
4693 {
4694 {
4695 .eraseblocks = { {64 * 1024, 32} },
4696 .block_erase = spi_block_erase_d8,
4697 }, {
4698 .eraseblocks = { {2 * 1024 * 1024, 1} },
4699 .block_erase = spi_block_erase_c7,
4700 }
4701 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004702 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004703 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004704 },
4705
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004706 {
4707 .vendor = "ST",
4708 .name = "M25P32",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004709 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004710 .manufacture_id = ST_ID,
4711 .model_id = ST_M25P32,
4712 .total_size = 4096,
4713 .page_size = 256,
Sean Nelson56358aa2010-01-19 16:08:51 +00004714 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004715 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004716 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004717 .block_erasers =
4718 {
4719 {
4720 .eraseblocks = { {64 * 1024, 64} },
4721 .block_erase = spi_block_erase_d8,
4722 }, {
4723 .eraseblocks = { {4 * 1024 * 1024, 1} },
4724 .block_erase = spi_block_erase_c7,
4725 }
4726 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004727 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004728 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004729 },
4730
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004731 {
4732 .vendor = "ST",
4733 .name = "M25P64",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004734 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004735 .manufacture_id = ST_ID,
4736 .model_id = ST_M25P64,
4737 .total_size = 8192,
4738 .page_size = 256,
4739 .tested = TEST_UNTESTED,
4740 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004741 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004742 .block_erasers =
4743 {
4744 {
4745 .eraseblocks = { {64 * 1024, 128} },
4746 .block_erase = spi_block_erase_d8,
4747 }, {
4748 .eraseblocks = { {8 * 1024 * 1024, 1} },
4749 .block_erase = spi_block_erase_c7,
4750 }
4751 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004752 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004753 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004754 },
4755
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004756 {
4757 .vendor = "ST",
4758 .name = "M25P128",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00004759 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004760 .manufacture_id = ST_ID,
4761 .model_id = ST_M25P128,
4762 .total_size = 16384,
4763 .page_size = 256,
4764 .tested = TEST_UNTESTED,
4765 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004766 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00004767 .block_erasers =
4768 {
4769 {
4770 .eraseblocks = { {256 * 1024, 64} },
4771 .block_erase = spi_block_erase_d8,
4772 }, {
4773 .eraseblocks = { {16 * 1024 * 1024, 1} },
4774 .block_erase = spi_block_erase_c7,
4775 }
4776 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004777 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004778 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00004779 },
4780
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004781 {
4782 .vendor = "ST",
4783 .name = "M29F002B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004784 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004785 .manufacture_id = ST_ID,
4786 .model_id = ST_M29F002B,
4787 .total_size = 256,
4788 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004789 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004790 .tested = TEST_UNTESTED,
4791 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004792 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004793 .block_erasers =
4794 {
4795 {
4796 .eraseblocks = {
4797 {16 * 1024, 1},
4798 {8 * 1024, 2},
4799 {32 * 1024, 1},
4800 {64 * 1024, 3},
4801 },
4802 .block_erase = erase_sector_jedec,
4803 }, {
4804 .eraseblocks = { {256 * 1024, 1} },
4805 .block_erase = erase_chip_block_jedec,
4806 }
4807 },
Sean Nelson35727f72010-01-28 23:55:12 +00004808 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004809 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004810 },
4811
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004812 {
4813 .vendor = "ST",
4814 .name = "M29F002T/NT",
Urja Rannikko038a3122009-06-28 19:19:25 +00004815 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004816 .manufacture_id = ST_ID,
4817 .model_id = ST_M29F002T,
4818 .total_size = 256,
4819 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004820 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
4821 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004822 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004823 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004824 .block_erasers =
4825 {
4826 {
4827 .eraseblocks = {
4828 {64 * 1024, 3},
4829 {32 * 1024, 1},
4830 {8 * 1024, 2},
4831 {16 * 1024, 1},
4832 },
4833 .block_erase = erase_sector_jedec,
4834 }, {
4835 .eraseblocks = { {256 * 1024, 1} },
4836 .block_erase = erase_chip_block_jedec,
4837 }
4838 },
Sean Nelson35727f72010-01-28 23:55:12 +00004839 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004840 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004841 },
4842
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004843 {
4844 .vendor = "ST",
4845 .name = "M29F040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004846 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004847 .manufacture_id = ST_ID,
4848 .model_id = ST_M29F040B,
4849 .total_size = 512,
4850 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004851 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4852 .tested = TEST_UNTESTED,
4853 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004854 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (am29f040b.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00004855 .block_erasers =
4856 {
4857 {
4858 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00004859 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00004860 }, {
4861 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004862 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00004863 }
4864 },
Sean Nelson35727f72010-01-28 23:55:12 +00004865 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004866 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004867 },
4868
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004869 {
Sean Nelson35727f72010-01-28 23:55:12 +00004870 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004871 .vendor = "ST",
4872 .name = "M29F400BT",
Urja Rannikko038a3122009-06-28 19:19:25 +00004873 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004874 .manufacture_id = ST_ID,
4875 .model_id = ST_M29F400BT,
4876 .total_size = 512,
4877 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004878 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004879 .tested = TEST_UNTESTED,
4880 .probe = probe_m29f400bt,
Maciej Pijankac6e11112009-06-03 14:46:22 +00004881 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00004882 .block_erasers =
4883 {
4884 {
4885 .eraseblocks = {
4886 {64 * 1024, 7},
4887 {32 * 1024, 1},
4888 {8 * 1024, 2},
4889 {16 * 1024, 1},
4890 },
4891 .block_erase = block_erase_m29f400bt,
4892 }, {
4893 .eraseblocks = { {512 * 1024, 1} },
4894 .block_erase = block_erase_chip_m29f400bt,
4895 }
4896 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004897 .write = write_coreboot_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004898 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004899 },
4900
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004901 {
4902 .vendor = "ST",
4903 .name = "M29W010B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004904 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004905 .manufacture_id = ST_ID,
4906 .model_id = ST_M29W010B,
4907 .total_size = 128,
4908 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004909 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004910 .tested = TEST_UNTESTED,
4911 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004912 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004913 .block_erasers =
4914 {
4915 {
4916 .eraseblocks = { {16 * 1024, 8}, },
4917 .block_erase = erase_sector_jedec,
4918 }, {
4919 .eraseblocks = { {128 * 1024, 1} },
4920 .block_erase = erase_chip_block_jedec,
4921 }
4922 },
Sean Nelson35727f72010-01-28 23:55:12 +00004923 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004924 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004925 },
4926
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004927 {
4928 .vendor = "ST",
4929 .name = "M29W040B",
Urja Rannikko038a3122009-06-28 19:19:25 +00004930 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004931 .manufacture_id = ST_ID,
4932 .model_id = ST_M29W040B,
4933 .total_size = 512,
4934 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004935 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004936 .tested = TEST_UNTESTED,
4937 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004938 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00004939 .block_erasers =
4940 {
4941 {
4942 .eraseblocks = { {64 * 1024, 8}, },
4943 .block_erase = erase_sector_jedec,
4944 }, {
4945 .eraseblocks = { {512 * 1024, 1} },
4946 .block_erase = erase_chip_block_jedec,
4947 }
4948 },
Sean Nelson35727f72010-01-28 23:55:12 +00004949 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004950 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00004951 },
4952
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00004953 {
4954 .vendor = "ST",
4955 .name = "M29W512B",
4956 .bustype = CHIP_BUSTYPE_PARALLEL,
4957 .manufacture_id = ST_ID,
4958 .model_id = ST_M29W512B,
4959 .total_size = 64,
4960 .page_size = 64 * 1024,
4961 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4962 .tested = TEST_OK_PREW,
4963 .probe = probe_jedec,
4964 .probe_timing = TIMING_ZERO,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00004965 .block_erasers =
4966 {
4967 {
4968 .eraseblocks = { {64 * 1024, 1} },
4969 .block_erase = erase_chip_block_jedec,
4970 }
4971 },
4972 .write = write_jedec_1,
4973 .read = read_memmapped,
4974 },
4975
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004976 {
4977 .vendor = "ST",
4978 .name = "M50FLW040A",
Sean Nelson35727f72010-01-28 23:55:12 +00004979 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004980 .manufacture_id = ST_ID,
4981 .model_id = ST_M50FLW040A,
4982 .total_size = 512,
4983 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004984 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004985 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00004986 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00004987 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00004988 .block_erasers =
4989 {
4990 {
Sean Nelson329bde72010-01-19 16:39:19 +00004991 .eraseblocks = {
4992 {4 * 1024, 16}, /* sector */
4993 {64 * 1024, 5}, /* block */
4994 {4 * 1024, 16}, /* sector */
4995 {4 * 1024, 16}, /* sector */
4996 },
4997 .block_erase = NULL,
4998 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00004999 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005000 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005001 }, {
5002 .eraseblocks = { {512 * 1024, 1} },
5003 .block_erase = erase_chip_stm50flw0x0x,
5004 }
5005 },
Sean Nelson28accc22010-03-19 18:47:06 +00005006 .unlock = unlock_stm50flw0x0x,
5007 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005008 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005009 },
5010
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005011 {
5012 .vendor = "ST",
5013 .name = "M50FLW040B",
Sean Nelson35727f72010-01-28 23:55:12 +00005014 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005015 .manufacture_id = ST_ID,
5016 .model_id = ST_M50FLW040B,
5017 .total_size = 512,
5018 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005019 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005020 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005021 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005022 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005023 .block_erasers =
5024 {
5025 {
Sean Nelson329bde72010-01-19 16:39:19 +00005026 .eraseblocks = {
5027 {4 * 1024, 16}, /* sector */
5028 {4 * 1024, 16}, /* sector */
5029 {64 * 1024, 5}, /* block */
5030 {4 * 1024, 16}, /* sector */
5031 },
5032 .block_erase = NULL,
5033 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005034 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005035 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005036 }, {
5037 .eraseblocks = { {512 * 1024, 1} },
5038 .block_erase = erase_chip_stm50flw0x0x,
5039 }
5040 },
Sean Nelson28accc22010-03-19 18:47:06 +00005041 .unlock = unlock_stm50flw0x0x,
5042 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005043 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005044 },
5045
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005046 {
5047 .vendor = "ST",
5048 .name = "M50FLW080A",
Sean Nelson35727f72010-01-28 23:55:12 +00005049 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005050 .manufacture_id = ST_ID,
5051 .model_id = ST_M50FLW080A,
5052 .total_size = 1024,
5053 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005054 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson35727f72010-01-28 23:55:12 +00005055 .tested = TEST_UNTESTED,
5056 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005057 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005058 .block_erasers =
5059 {
5060 {
Sean Nelson329bde72010-01-19 16:39:19 +00005061 .eraseblocks = {
5062 {4 * 1024, 16}, /* sector */
5063 {64 * 1024, 13}, /* block */
5064 {4 * 1024, 16}, /* sector */
5065 {4 * 1024, 16}, /* sector */
5066 },
5067 .block_erase = NULL,
5068 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005069 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005070 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005071 }, {
5072 .eraseblocks = { {1024 * 1024, 1} },
5073 .block_erase = erase_chip_stm50flw0x0x,
5074 }
5075 },
Sean Nelson28accc22010-03-19 18:47:06 +00005076 .unlock = unlock_stm50flw0x0x,
5077 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005078 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005079 },
5080
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005081 {
5082 .vendor = "ST",
5083 .name = "M50FLW080B",
Sean Nelson35727f72010-01-28 23:55:12 +00005084 .bustype = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005085 .manufacture_id = ST_ID,
5086 .model_id = ST_M50FLW080B,
5087 .total_size = 1024,
5088 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005089 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005090 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005091 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005092 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00005093 .block_erasers =
5094 {
5095 {
Sean Nelson329bde72010-01-19 16:39:19 +00005096 .eraseblocks = {
5097 {4 * 1024, 16}, /* sector */
5098 {4 * 1024, 16}, /* sector */
5099 {64 * 1024, 13}, /* block */
5100 {4 * 1024, 16}, /* sector */
5101 },
5102 .block_erase = NULL,
5103 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00005104 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005105 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005106 }, {
5107 .eraseblocks = { {1024 * 1024, 1} },
5108 .block_erase = erase_chip_stm50flw0x0x,
5109 }
5110 },
Sean Nelson28accc22010-03-19 18:47:06 +00005111 .unlock = unlock_stm50flw0x0x,
5112 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005113 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005114 },
5115
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005116 {
5117 .vendor = "ST",
5118 .name = "M50FW002",
Urja Rannikko038a3122009-06-28 19:19:25 +00005119 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005120 .manufacture_id = ST_ID,
5121 .model_id = ST_M50FW002,
5122 .total_size = 256,
5123 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005124 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005125 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005126 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005127 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005128 .block_erasers =
5129 {
5130 {
5131 .eraseblocks = {
5132 {64 * 1024, 3},
5133 {32 * 1024, 1},
5134 {8 * 1024, 2},
5135 {16 * 1024, 1},
5136 },
Sean Nelson28accc22010-03-19 18:47:06 +00005137 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005138 }, {
5139 .eraseblocks = { {256 * 1024, 1} },
5140 .block_erase = erase_chip_stm50flw0x0x,
5141 }
5142 },
Sean Nelson28accc22010-03-19 18:47:06 +00005143 .unlock = unlock_stm50flw0x0x,
5144 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005145 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005146 },
5147
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005148 {
5149 .vendor = "ST",
5150 .name = "M50FW016",
Urja Rannikko038a3122009-06-28 19:19:25 +00005151 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005152 .manufacture_id = ST_ID,
5153 .model_id = ST_M50FW016,
5154 .total_size = 2048,
5155 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005156 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005157 .tested = TEST_UNTESTED,
5158 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005159 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005160 .block_erasers =
5161 {
5162 {
5163 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005164 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005165 }, {
5166 .eraseblocks = { {2 * 1024 * 1024, 1} },
5167 .block_erase = erase_chip_stm50flw0x0x,
5168 }
5169 },
Sean Nelson28accc22010-03-19 18:47:06 +00005170 .unlock = unlock_stm50flw0x0x,
5171 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005172 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005173 },
5174
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005175 {
5176 .vendor = "ST",
5177 .name = "M50FW040",
Urja Rannikko038a3122009-06-28 19:19:25 +00005178 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005179 .manufacture_id = ST_ID,
5180 .model_id = ST_M50FW040,
5181 .total_size = 512,
5182 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005183 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005184 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005185 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005186 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005187 .block_erasers =
5188 {
5189 {
5190 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005191 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005192 }, {
5193 .eraseblocks = { {512 * 1024, 1} },
5194 .block_erase = erase_chip_stm50flw0x0x,
5195 }
5196 },
Sean Nelson28accc22010-03-19 18:47:06 +00005197 .unlock = unlock_stm50flw0x0x,
5198 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005199 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005200 },
5201
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005202 {
5203 .vendor = "ST",
5204 .name = "M50FW080",
Urja Rannikko038a3122009-06-28 19:19:25 +00005205 .bustype = CHIP_BUSTYPE_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005206 .manufacture_id = ST_ID,
5207 .model_id = ST_M50FW080,
5208 .total_size = 1024,
5209 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005210 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005211 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005212 .probe = probe_82802ab,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005213 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00005214 .block_erasers =
5215 {
5216 {
5217 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00005218 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005219 }, {
5220 .eraseblocks = { {1024 * 1024, 1} },
5221 .block_erase = erase_chip_stm50flw0x0x,
5222 }
5223 },
Sean Nelson28accc22010-03-19 18:47:06 +00005224 .unlock = unlock_stm50flw0x0x,
5225 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005226 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005227 },
5228
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005229 {
5230 .vendor = "ST",
5231 .name = "M50LPW116",
Urja Rannikko038a3122009-06-28 19:19:25 +00005232 .bustype = CHIP_BUSTYPE_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005233 .manufacture_id = ST_ID,
5234 .model_id = ST_M50LPW116,
5235 .total_size = 2048,
5236 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005237 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005238 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005239 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00005240 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005241 .block_erasers =
5242 {
5243 {
5244 .eraseblocks = {
5245 {4 * 1024, 16},
5246 {64 * 1024, 30},
5247 {32 * 1024, 1},
5248 {8 * 1024, 2},
5249 {16 * 1024, 1},
5250 },
Sean Nelson28accc22010-03-19 18:47:06 +00005251 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00005252 }, {
5253 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005254 .block_erase = erase_chip_stm50flw0x0x,
Sean Nelson56358aa2010-01-19 16:08:51 +00005255 }
5256 },
Sean Nelson28accc22010-03-19 18:47:06 +00005257 .unlock = unlock_stm50flw0x0x,
5258 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005259 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005260 },
5261
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005262 {
5263 .vendor = "SyncMOS",
5264 .name = "S29C31004T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005265 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005266 .manufacture_id = SYNCMOS_ID,
5267 .model_id = S29C31004T,
5268 .total_size = 512,
5269 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005270 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005271 .tested = TEST_UNTESTED,
5272 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005273 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005274 .block_erasers =
5275 {
5276 {
5277 .eraseblocks = { {1 * 1024, 512} },
5278 .block_erase = erase_sector_jedec,
5279 }, {
5280 .eraseblocks = { {512 * 1024, 1} },
5281 .block_erase = erase_chip_block_jedec,
5282 },
5283 },
Sean Nelson35727f72010-01-28 23:55:12 +00005284 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005285 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005286 },
5287
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005288 {
5289 .vendor = "SyncMOS",
5290 .name = "S29C51001T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005291 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005292 .manufacture_id = SYNCMOS_ID,
5293 .model_id = S29C51001T,
5294 .total_size = 128,
5295 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005296 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005297 .tested = TEST_UNTESTED,
5298 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005299 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005300 .block_erasers =
5301 {
5302 {
5303 .eraseblocks = { {512, 256} },
5304 .block_erase = erase_sector_jedec,
5305 }, {
5306 .eraseblocks = { {128 * 1024, 1} },
5307 .block_erase = erase_chip_block_jedec,
5308 },
5309 },
Sean Nelson35727f72010-01-28 23:55:12 +00005310 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005311 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005312 },
5313
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005314 {
5315 .vendor = "SyncMOS",
5316 .name = "S29C51002T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005317 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005318 .manufacture_id = SYNCMOS_ID,
5319 .model_id = S29C51002T,
5320 .total_size = 256,
5321 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005322 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005323 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005324 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005325 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005326 .block_erasers =
5327 {
5328 {
5329 .eraseblocks = { {512, 512} },
5330 .block_erase = erase_sector_jedec,
5331 }, {
5332 .eraseblocks = { {256 * 1024, 1} },
5333 .block_erase = erase_chip_block_jedec,
5334 },
5335 },
Sean Nelson35727f72010-01-28 23:55:12 +00005336 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005337 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005338 },
5339
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005340 {
5341 .vendor = "SyncMOS",
5342 .name = "S29C51004T",
Urja Rannikko038a3122009-06-28 19:19:25 +00005343 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005344 .manufacture_id = SYNCMOS_ID,
5345 .model_id = S29C51004T,
5346 .total_size = 512,
5347 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005348 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005349 .tested = TEST_UNTESTED,
5350 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005351 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00005352 .block_erasers =
5353 {
5354 {
Sean Nelson012a31e2010-01-19 20:23:26 +00005355 .eraseblocks = { {1 * 1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00005356 .block_erase = erase_sector_jedec,
5357 }, {
5358 .eraseblocks = { {512 * 1024, 1} },
5359 .block_erase = erase_chip_block_jedec,
5360 },
5361 },
Sean Nelson35727f72010-01-28 23:55:12 +00005362 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005363 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005364 },
5365
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005366 {
Uwe Hermanna106d152009-05-27 23:17:40 +00005367 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005368 .name = "TMS29F002RB",
Urja Rannikko038a3122009-06-28 19:19:25 +00005369 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005370 .manufacture_id = TI_OLD_ID,
5371 .model_id = TI_TMS29F002RB,
5372 .total_size = 256,
5373 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00005374 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005375 .tested = TEST_UNTESTED,
5376 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005377 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005378 .block_erasers =
5379 {
5380 {
5381 .eraseblocks = {
5382 {16 * 1024, 1},
5383 {8 * 1024, 2},
5384 {32 * 1024, 1},
5385 {64 * 1024, 3},
5386 },
5387 .block_erase = erase_sector_jedec,
5388 }, {
5389 .eraseblocks = { {256 * 1024, 1} },
5390 .block_erase = erase_chip_block_jedec,
5391 },
5392 },
Sean Nelson35727f72010-01-28 23:55:12 +00005393 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005394 .read = read_memmapped,
5395 },
5396
5397 {
Uwe Hermanna106d152009-05-27 23:17:40 +00005398 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005399 .name = "TMS29F002RT",
Urja Rannikko038a3122009-06-28 19:19:25 +00005400 .bustype = CHIP_BUSTYPE_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005401 .manufacture_id = TI_OLD_ID,
5402 .model_id = TI_TMS29F002RT,
5403 .total_size = 256,
5404 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00005405 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005406 .tested = TEST_UNTESTED,
5407 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005408 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00005409 .block_erasers =
5410 {
5411 {
5412 .eraseblocks = {
5413 {64 * 1024, 3},
5414 {32 * 1024, 1},
5415 {8 * 1024, 2},
5416 {16 * 1024, 1},
5417 },
5418 .block_erase = erase_sector_jedec,
5419 }, {
5420 .eraseblocks = { {256 * 1024, 1} },
5421 .block_erase = erase_chip_block_jedec,
5422 },
5423 },
Sean Nelson35727f72010-01-28 23:55:12 +00005424 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00005425 .read = read_memmapped,
5426 },
5427
5428 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005429 .vendor = "Winbond",
5430 .name = "W25x10",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005431 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005432 .manufacture_id = WINBOND_NEX_ID,
5433 .model_id = W_25X10,
5434 .total_size = 128,
5435 .page_size = 256,
5436 .tested = TEST_UNTESTED,
5437 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005438 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005439 .block_erasers =
5440 {
5441 {
5442 .eraseblocks = { {4 * 1024, 32} },
5443 .block_erase = spi_block_erase_20,
5444 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005445 .eraseblocks = { {64 * 1024, 2} },
5446 .block_erase = spi_block_erase_d8,
5447 }, {
5448 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005449 .block_erase = spi_block_erase_c7,
5450 }
5451 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005452 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005453 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005454 },
5455
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005456 {
5457 .vendor = "Winbond",
5458 .name = "W25x20",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005459 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005460 .manufacture_id = WINBOND_NEX_ID,
5461 .model_id = W_25X20,
5462 .total_size = 256,
5463 .page_size = 256,
5464 .tested = TEST_UNTESTED,
5465 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005466 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005467 .block_erasers =
5468 {
5469 {
5470 .eraseblocks = { {4 * 1024, 64} },
5471 .block_erase = spi_block_erase_20,
5472 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005473 .eraseblocks = { {64 * 1024, 4} },
5474 .block_erase = spi_block_erase_d8,
5475 }, {
5476 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005477 .block_erase = spi_block_erase_c7,
5478 }
5479 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005480 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005481 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005482 },
5483
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005484 {
5485 .vendor = "Winbond",
5486 .name = "W25x40",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005487 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005488 .manufacture_id = WINBOND_NEX_ID,
5489 .model_id = W_25X40,
5490 .total_size = 512,
5491 .page_size = 256,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005492 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005493 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005494 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005495 .block_erasers =
5496 {
5497 {
5498 .eraseblocks = { {4 * 1024, 128} },
5499 .block_erase = spi_block_erase_20,
5500 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005501 .eraseblocks = { {64 * 1024, 8} },
5502 .block_erase = spi_block_erase_d8,
5503 }, {
5504 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005505 .block_erase = spi_block_erase_c7,
5506 }
5507 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005508 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005509 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005510 },
5511
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005512 {
5513 .vendor = "Winbond",
5514 .name = "W25x80",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00005515 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005516 .manufacture_id = WINBOND_NEX_ID,
5517 .model_id = W_25X80,
5518 .total_size = 1024,
5519 .page_size = 256,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005520 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005521 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005522 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005523 .block_erasers =
5524 {
5525 {
5526 .eraseblocks = { {4 * 1024, 256} },
5527 .block_erase = spi_block_erase_20,
5528 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005529 .eraseblocks = { {64 * 1024, 16} },
5530 .block_erase = spi_block_erase_d8,
5531 }, {
5532 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005533 .block_erase = spi_block_erase_c7,
5534 }
5535 },
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005536 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005537 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00005538 },
5539
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005540 {
5541 .vendor = "Winbond",
Hector Martina721ae22009-07-11 19:39:11 +00005542 .name = "W25x16",
5543 .bustype = CHIP_BUSTYPE_SPI,
5544 .manufacture_id = WINBOND_NEX_ID,
5545 .model_id = W_25X16,
5546 .total_size = 2048,
5547 .page_size = 256,
5548 .tested = TEST_OK_PR,
5549 .probe = probe_spi_rdid,
5550 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005551 .block_erasers =
5552 {
5553 {
5554 .eraseblocks = { {4 * 1024, 512} },
5555 .block_erase = spi_block_erase_20,
5556 }, {
5557 .eraseblocks = { {32 * 1024, 64} },
5558 .block_erase = spi_block_erase_52,
5559 }, {
5560 .eraseblocks = { {64 * 1024, 32} },
5561 .block_erase = spi_block_erase_d8,
5562 }, {
5563 .eraseblocks = { {2 * 1024 * 1024, 1} },
5564 .block_erase = spi_block_erase_60,
5565 }, {
5566 .eraseblocks = { {2 * 1024 * 1024, 1} },
5567 .block_erase = spi_block_erase_c7,
5568 }
5569 },
Hector Martina721ae22009-07-11 19:39:11 +00005570 .write = spi_chip_write_256,
5571 .read = spi_chip_read,
5572 },
5573
5574 {
5575 .vendor = "Winbond",
Zheng Bao1db2b752009-11-26 11:05:01 +00005576 .name = "W25x32",
5577 .bustype = CHIP_BUSTYPE_SPI,
5578 .manufacture_id = WINBOND_NEX_ID,
5579 .model_id = W_25X32,
5580 .total_size = 4096,
5581 .page_size = 256,
5582 .tested = TEST_OK_PROBE,
5583 .probe = probe_spi_rdid,
5584 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005585 .block_erasers =
5586 {
5587 {
5588 .eraseblocks = { {4 * 1024, 1024} },
5589 .block_erase = spi_block_erase_20,
5590 }, {
5591 .eraseblocks = { {32 * 1024, 128} },
5592 .block_erase = spi_block_erase_52,
5593 }, {
5594 .eraseblocks = { {64 * 1024, 64} },
5595 .block_erase = spi_block_erase_d8,
5596 }, {
5597 .eraseblocks = { {4 * 1024 * 1024, 1} },
5598 .block_erase = spi_block_erase_60,
5599 }, {
5600 .eraseblocks = { {4 * 1024 * 1024, 1} },
5601 .block_erase = spi_block_erase_c7,
5602 }
5603 },
Zheng Bao1db2b752009-11-26 11:05:01 +00005604 .write = spi_chip_write_256,
5605 .read = spi_chip_read,
5606 },
5607
5608 {
5609 .vendor = "Winbond",
5610 .name = "W25x64",
5611 .bustype = CHIP_BUSTYPE_SPI,
5612 .manufacture_id = WINBOND_NEX_ID,
5613 .model_id = W_25X64,
5614 .total_size = 8192,
5615 .page_size = 256,
5616 .tested = TEST_UNTESTED,
5617 .probe = probe_spi_rdid,
5618 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005619 .block_erasers =
5620 {
5621 {
5622 .eraseblocks = { {4 * 1024, 2048} },
5623 .block_erase = spi_block_erase_20,
5624 }, {
5625 .eraseblocks = { {32 * 1024, 256} },
5626 .block_erase = spi_block_erase_52,
5627 }, {
5628 .eraseblocks = { {64 * 1024, 128} },
5629 .block_erase = spi_block_erase_d8,
5630 }, {
5631 .eraseblocks = { {8 * 1024 * 1024, 1} },
5632 .block_erase = spi_block_erase_60,
5633 }, {
5634 .eraseblocks = { {8 * 1024 * 1024, 1} },
5635 .block_erase = spi_block_erase_c7,
5636 }
5637 },
Zheng Bao1db2b752009-11-26 11:05:01 +00005638 .write = spi_chip_write_256,
5639 .read = spi_chip_read,
5640 },
5641
5642 {
5643 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005644 .name = "W29C011",
Urja Rannikko038a3122009-06-28 19:19:25 +00005645 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005646 .manufacture_id = WINBOND_ID,
5647 .model_id = W_29C011,
5648 .total_size = 128,
5649 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005650 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005651 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005652 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005653 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005654 .block_erasers =
5655 {
5656 {
5657 .eraseblocks = { {128 * 1024, 1} },
5658 .block_erase = erase_chip_block_jedec,
5659 }
5660 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005661 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005662 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005663 },
5664
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005665 {
5666 .vendor = "Winbond",
5667 .name = "W29C020C",
Urja Rannikko161b8852009-06-05 08:47:37 +00005668 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005669 .manufacture_id = WINBOND_ID,
5670 .model_id = W_29C020C,
5671 .total_size = 256,
5672 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005673 .feature_bits = FEATURE_LONG_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005674 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005675 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005676 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005677 .block_erasers =
5678 {
5679 {
5680 .eraseblocks = { {256 * 1024, 1} },
5681 .block_erase = erase_chip_block_jedec,
5682 }
5683 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005684 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005685 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005686 },
5687
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005688 {
5689 .vendor = "Winbond",
5690 .name = "W29C040P",
Urja Rannikko161b8852009-06-05 08:47:37 +00005691 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005692 .manufacture_id = WINBOND_ID,
5693 .model_id = W_29C040P,
5694 .total_size = 512,
5695 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005696 .feature_bits = FEATURE_LONG_RESET,
5697 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005698 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005699 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005700 .block_erasers =
5701 {
5702 {
5703 .eraseblocks = { {512 * 1024, 1} },
5704 .block_erase = erase_chip_block_jedec,
5705 }
5706 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005707 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005708 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005709 },
5710
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005711 {
5712 .vendor = "Winbond",
5713 .name = "W29EE011",
Urja Rannikko038a3122009-06-28 19:19:25 +00005714 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005715 .manufacture_id = WINBOND_ID,
5716 .model_id = W_29C011,
5717 .total_size = 128,
5718 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005719 .feature_bits = FEATURE_LONG_RESET,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005720 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005721 .probe = probe_w29ee011,
Maciej Pijankac6e11112009-06-03 14:46:22 +00005722 .probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (w29ee011.c) */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005723 .block_erasers =
5724 {
5725 {
5726 .eraseblocks = { {128 * 1024, 1} },
5727 .block_erase = erase_chip_block_jedec,
5728 }
5729 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005730 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005731 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005732 },
5733
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005734 {
5735 .vendor = "Winbond",
5736 .name = "W39V040A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005737 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005738 .manufacture_id = WINBOND_ID,
5739 .model_id = W_39V040A,
5740 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005741 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005742 .feature_bits = FEATURE_EITHER_RESET,
5743 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005744 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005745 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005746 .block_erasers =
5747 {
5748 {
5749 .eraseblocks = { {64 * 1024, 8} },
5750 .block_erase = erase_sector_jedec,
5751 }, {
5752 .eraseblocks = { {512 * 1024, 1} },
5753 .block_erase = erase_chip_block_jedec,
5754 }
5755 },
Sean Nelson35727f72010-01-28 23:55:12 +00005756 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005757 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005758 },
5759
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005760 {
5761 .vendor = "Winbond",
5762 .name = "W39V040B",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005763 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005764 .manufacture_id = WINBOND_ID,
5765 .model_id = W_39V040B,
5766 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005767 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005768 .feature_bits = FEATURE_EITHER_RESET,
5769 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005770 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005771 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005772 .block_erasers =
5773 {
5774 {
5775 .eraseblocks = { {64 * 1024, 8} },
5776 .block_erase = erase_sector_jedec,
5777 }, {
5778 .eraseblocks = { {512 * 1024, 1} },
5779 .block_erase = erase_chip_block_jedec,
5780 }
5781 },
Sean Nelson35727f72010-01-28 23:55:12 +00005782 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005783 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005784 },
5785
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005786 {
5787 .vendor = "Winbond",
5788 .name = "W39V040C",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005789 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005790 .manufacture_id = WINBOND_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005791 .model_id = W_39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005792 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005793 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005794 .feature_bits = FEATURE_EITHER_RESET,
5795 .tested = TEST_UNTESTED,
5796 .probe = probe_jedec,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00005797 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005798 .block_erasers =
5799 {
5800 {
5801 .eraseblocks = { {64 * 1024, 8} },
5802 .block_erase = erase_sector_jedec,
5803 }, {
5804 .eraseblocks = { {512 * 1024, 1} },
5805 .block_erase = erase_chip_block_jedec,
5806 }
5807 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005808 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +00005809 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005810 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005811 },
5812
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005813 {
5814 .vendor = "Winbond",
5815 .name = "W39V040FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005816 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005817 .manufacture_id = WINBOND_ID,
5818 .model_id = W_39V040FA,
5819 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005820 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005821 .feature_bits = FEATURE_EITHER_RESET,
5822 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005823 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005824 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005825 .block_erasers =
5826 {
5827 {
5828 .eraseblocks = { {4 * 1024, 128} },
5829 .block_erase = erase_block_jedec,
5830 }, {
5831 .eraseblocks = { {64 * 1024, 8} },
5832 .block_erase = erase_sector_jedec,
5833 }, {
5834 .eraseblocks = { {512 * 1024, 1} },
5835 .block_erase = erase_chip_block_jedec,
5836 }
5837 },
Sean Nelson35727f72010-01-28 23:55:12 +00005838 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005839 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005840 },
5841
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005842 {
5843 .vendor = "Winbond",
5844 .name = "W39V080A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005845 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005846 .manufacture_id = WINBOND_ID,
5847 .model_id = W_39V080A,
5848 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00005849 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005850 .feature_bits = FEATURE_EITHER_RESET,
5851 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005852 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005853 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005854 .block_erasers =
5855 {
5856 {
5857 .eraseblocks = { {64 * 1024, 16} },
5858 .block_erase = erase_sector_jedec,
5859 }, {
5860 .eraseblocks = { {1024 * 1024, 1} },
5861 .block_erase = erase_chip_block_jedec,
5862 }
5863 },
Sean Nelson35727f72010-01-28 23:55:12 +00005864 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005865 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005866 },
5867
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005868 {
5869 .vendor = "Winbond",
5870 .name = "W49F002U",
Urja Rannikko038a3122009-06-28 19:19:25 +00005871 .bustype = CHIP_BUSTYPE_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005872 .manufacture_id = WINBOND_ID,
5873 .model_id = W_49F002U,
5874 .total_size = 256,
5875 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005876 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann60939692010-03-17 00:05:59 +00005877 .tested = TEST_OK_PRW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005878 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005879 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005880 .block_erasers =
5881 {
5882 {
5883 .eraseblocks = {
5884 {128 * 1024, 1},
5885 {96 * 1024, 1},
5886 {8 * 1024, 2},
5887 {16 * 1024, 1},
5888 },
5889 .block_erase = erase_sector_jedec,
5890 }, {
5891 .eraseblocks = { {256 * 1024, 1} },
5892 .block_erase = erase_chip_block_jedec,
5893 }
5894 },
Sean Nelson35727f72010-01-28 23:55:12 +00005895 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005896 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005897 },
5898
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005899 {
5900 .vendor = "Winbond",
5901 .name = "W49V002A",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005902 .bustype = CHIP_BUSTYPE_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005903 .manufacture_id = WINBOND_ID,
5904 .model_id = W_49V002A,
5905 .total_size = 256,
5906 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005907 .feature_bits = FEATURE_EITHER_RESET,
5908 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005909 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005910 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005911 .block_erasers =
5912 {
5913 {
5914 .eraseblocks = {
5915 {64 * 1024, 3},
5916 {32 * 1024, 1},
5917 {8 * 1024, 2},
5918 {16 * 1024, 1},
5919 },
5920 .block_erase = erase_sector_jedec,
5921 }, {
5922 .eraseblocks = { {256 * 1024, 1} },
5923 .block_erase = erase_chip_block_jedec,
5924 }
5925 },
Sean Nelson35727f72010-01-28 23:55:12 +00005926 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005927 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005928 },
5929
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005930 {
5931 .vendor = "Winbond",
5932 .name = "W49V002FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005933 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005934 .manufacture_id = WINBOND_ID,
5935 .model_id = W_49V002FA,
5936 .total_size = 256,
5937 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00005938 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005939 .tested = TEST_UNTESTED,
5940 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005941 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005942 .block_erasers =
5943 {
5944 {
5945 .eraseblocks = {
5946 {64 * 1024, 3},
5947 {32 * 1024, 1},
5948 {8 * 1024, 2},
5949 {16 * 1024, 1},
5950 },
5951 .block_erase = erase_sector_jedec,
5952 }, {
5953 .eraseblocks = { {256 * 1024, 1} },
5954 .block_erase = erase_chip_block_jedec,
5955 }
5956 },
Sean Nelson35727f72010-01-28 23:55:12 +00005957 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005958 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005959 },
5960
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005961 {
5962 .vendor = "Winbond",
5963 .name = "W39V080FA",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005964 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005965 .manufacture_id = WINBOND_ID,
5966 .model_id = W_39V080FA,
5967 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00005968 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005969 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
5970 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005971 .probe = probe_jedec,
5972 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00005973 .block_erasers =
5974 {
5975 {
5976 .eraseblocks = { {64 * 1024, 16}, },
5977 .block_erase = erase_sector_jedec,
5978 }, {
5979 .eraseblocks = { {1024 * 1024, 1} },
5980 .block_erase = erase_chip_block_jedec,
5981 }
5982 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005983 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00005984 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005985 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00005986 },
5987
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005988 {
5989 .vendor = "Winbond",
5990 .name = "W39V080FA (dual mode)",
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00005991 .bustype = CHIP_BUSTYPE_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005992 .manufacture_id = WINBOND_ID,
5993 .model_id = W_39V080FA_DM,
5994 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00005995 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005996 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005997 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005998 .probe = probe_jedec,
5999 .probe_timing = TIMING_FIXME,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00006000 .block_erasers =
6001 {
6002 {
6003 .eraseblocks = { {64 * 1024, 8}, },
6004 .block_erase = erase_sector_jedec,
6005 }, {
6006 .eraseblocks = { {512 * 1024, 1} },
6007 .block_erase = erase_chip_block_jedec,
6008 }
6009 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00006010 .unlock = unlock_winbond_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00006011 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006012 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00006013 },
6014
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006015 {
6016 .vendor = "Atmel",
6017 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006018 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006019 .manufacture_id = ATMEL_ID,
6020 .model_id = GENERIC_DEVICE_ID,
6021 .total_size = 0,
6022 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006023 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006024 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006025 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006026 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006027 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006028 },
6029
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006030 {
6031 .vendor = "EON",
6032 .name = "unknown EON SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006033 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006034 .manufacture_id = EON_ID_NOPREFIX,
6035 .model_id = GENERIC_DEVICE_ID,
6036 .total_size = 0,
6037 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006038 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006039 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006040 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006041 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006042 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006043 },
6044
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006045 {
6046 .vendor = "Macronix",
6047 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006048 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006049 .manufacture_id = MX_ID,
6050 .model_id = GENERIC_DEVICE_ID,
6051 .total_size = 0,
6052 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006053 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006054 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006055 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006056 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006057 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006058 },
6059
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006060 {
6061 .vendor = "PMC",
6062 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006063 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006064 .manufacture_id = PMC_ID,
6065 .model_id = GENERIC_DEVICE_ID,
6066 .total_size = 0,
6067 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006068 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006069 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006070 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006071 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006072 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006073 },
6074
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006075 {
6076 .vendor = "SST",
6077 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006078 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006079 .manufacture_id = SST_ID,
6080 .model_id = GENERIC_DEVICE_ID,
6081 .total_size = 0,
6082 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006083 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006084 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006085 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006086 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006087 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006088 },
6089
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006090 {
6091 .vendor = "ST",
6092 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00006093 .bustype = CHIP_BUSTYPE_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006094 .manufacture_id = ST_ID,
6095 .model_id = GENERIC_DEVICE_ID,
6096 .total_size = 0,
6097 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00006098 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006099 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006100 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006101 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006102 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00006103 },
Uwe Hermannfc425e82008-03-16 02:06:25 +00006104
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006105 {
Sean Nelson118e1d62009-11-24 02:08:11 +00006106 .vendor = "Sanyo",
6107 .name = "unknown Sanyo SPI chip",
6108 .bustype = CHIP_BUSTYPE_SPI,
6109 .manufacture_id = SANYO_ID,
6110 .model_id = GENERIC_DEVICE_ID,
6111 .total_size = 0,
6112 .page_size = 256,
6113 .tested = TEST_BAD_PREW,
6114 .probe = probe_spi_rdid,
6115 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +00006116 .write = NULL,
6117 .read = NULL,
6118 },
6119
6120 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006121 .vendor = "Generic",
6122 .name = "unknown SPI chip (RDID)",
6123 .bustype = CHIP_BUSTYPE_SPI,
6124 .manufacture_id = GENERIC_MANUF_ID,
6125 .model_id = GENERIC_DEVICE_ID,
6126 .total_size = 0,
6127 .page_size = 256,
6128 .tested = TEST_BAD_PREW,
6129 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006130 .write = NULL,
6131 },
6132 {
6133 .vendor = "Generic",
6134 .name = "unknown SPI chip (REMS)",
6135 .bustype = CHIP_BUSTYPE_SPI,
6136 .manufacture_id = GENERIC_MANUF_ID,
6137 .model_id = GENERIC_DEVICE_ID,
6138 .total_size = 0,
6139 .page_size = 256,
6140 .tested = TEST_BAD_PREW,
6141 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00006142 .write = NULL,
6143 },
6144
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006145 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +00006146};