blob: 7635942848e80137519743b689b03d8435c5bc56 [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 */
20
21#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000022#include "flashchips.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000023#include "chipdrivers.h"
Ollie Lho184a4042005-11-26 21:55:36 +000024
Uwe Hermannfc425e82008-03-16 02:06:25 +000025/**
Uwe Hermanna9720402009-05-21 15:55:46 +000026 * List of supported flash chips.
Uwe Hermannfc425e82008-03-16 02:06:25 +000027 *
Alan Green1f9cc7d2019-07-01 11:10:45 +100028 * Temporarily, this file is sorted alphabetically by vendor and name to
29 * assist with merging the Chromium fork of flashrom.
30 *
31 * The usual intention is that that this list is sorted by vendor, then chip
32 * family and chip density, which is useful for the output of 'flashrom -L'.
Uwe Hermannfc425e82008-03-16 02:06:25 +000033 */
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +000034const struct flashchip flashchips[] = {
Uwe Hermannfc425e82008-03-16 02:06:25 +000035
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000036 /*
37 * .vendor = Vendor name
38 * .name = Chip name
39 * .bustype = Supported flash bus types (Parallel, LPC...)
40 * .manufacture_id = Manufacturer chip ID
41 * .model_id = Model chip ID
42 * .total_size = Total size in (binary) kbytes
43 * .page_size = Page or eraseblock(?) size in bytes
44 * .tested = Test status
45 * .probe = Probe function
46 * .probe_timing = Probe function delay
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +000047 * .block_erasers[] = Array of erase layouts and erase functions
48 * {
49 * .eraseblocks[] = Array of { blocksize, blockcount }
50 * .block_erase = Block erase function
51 * }
Sean Nelson6e0b9122010-02-19 00:52:10 +000052 * .printlock = Chip lock status function
53 * .unlock = Chip unlock function
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000054 * .write = Chip write function
55 * .read = Chip read function
Steven Zakuleccbe370e2011-06-03 07:26:31 +000056 * .voltage = Voltage range in millivolt
FENG yu ningff692fb2008-12-08 18:15:10 +000057 */
58
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000059 {
60 .vendor = "AMD",
61 .name = "Am29F002(N)BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000062 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000063 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000064 .model_id = AMD_AM29F002BB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000065 .total_size = 256,
66 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000067 .feature_bits = FEATURE_SHORT_RESET | FEATURE_ADDR_2AA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000068 .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 = {
75 {16 * 1024, 1},
76 {8 * 1024, 2},
77 {32 * 1024, 1},
78 {64 * 1024, 3},
79 },
80 .block_erase = erase_sector_jedec,
81 }, {
82 .eraseblocks = { {256 * 1024, 1} },
83 .block_erase = erase_chip_block_jedec,
84 },
85 },
Michael Karcher1c296ca2009-11-27 17:49:42 +000086 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000087 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000088 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000089 },
90
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000091 {
92 .vendor = "AMD",
93 .name = "Am29F002(N)BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000094 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000095 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000096 .model_id = AMD_AM29F002BT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000097 .total_size = 256,
98 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000099 .feature_bits = FEATURE_EITHER_RESET | FEATURE_ADDR_2AA,
100 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000101 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000102 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000103 .block_erasers =
104 {
105 {
106 .eraseblocks = {
107 {64 * 1024, 3},
108 {32 * 1024, 1},
109 {8 * 1024, 2},
110 {16 * 1024, 1},
111 },
112 .block_erase = erase_sector_jedec,
113 }, {
114 .eraseblocks = { {256 * 1024, 1} },
115 .block_erase = erase_chip_block_jedec,
116 },
117 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000118 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000119 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000120 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +0000121 },
122
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000123 {
124 .vendor = "AMD",
Alan Green1f9cc7d2019-07-01 11:10:45 +1000125 .name = "Am29F010",
126 .bustype = BUS_PARALLEL,
127 .manufacture_id = AMD_ID,
128 .model_id = AMD_AM29F010,
129 .total_size = 128,
130 .page_size = 16 * 1024,
131 .feature_bits = FEATURE_SHORT_RESET,
132 .tested = TEST_UNTESTED,
133 .probe = probe_jedec,
134 .probe_timing = TIMING_ZERO,
135 .block_erasers =
136 {
137 {
138 .eraseblocks = { {16 * 1024, 8} },
139 .block_erase = erase_sector_jedec,
140 }, {
141 .eraseblocks = { {128 * 1024, 1} },
142 .block_erase = erase_chip_block_jedec,
143 },
144 },
145 .write = write_jedec_1,
146 .read = read_memmapped,
147 .voltage = {4500, 5500},
148 },
149
150 {
151 .vendor = "AMD",
152 .name = "Am29F010A/B",
153 .bustype = BUS_PARALLEL,
154 .manufacture_id = AMD_ID,
155 .model_id = AMD_AM29F010,
156 .total_size = 128,
157 .page_size = 16 * 1024,
158 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Alan Greena4e579f2019-07-24 14:18:39 +1000159 .tested = TEST_OK_PRE,
Alan Green1f9cc7d2019-07-01 11:10:45 +1000160 .probe = probe_jedec,
161 .probe_timing = TIMING_ZERO,
162 .block_erasers =
163 {
164 {
165 .eraseblocks = { {16 * 1024, 8} },
166 .block_erase = erase_sector_jedec,
167 }, {
168 .eraseblocks = { {128 * 1024, 1} },
169 .block_erase = erase_chip_block_jedec,
170 },
171 },
172 .write = write_jedec_1,
173 .read = read_memmapped,
174 .voltage = {4500, 5500},
175 },
176
177 {
178 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000179 .name = "Am29F016D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000180 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000181 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000182 .model_id = AMD_AM29F016D,
Sean Nelson72a9a022009-12-22 22:15:33 +0000183 .total_size = 2 * 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000184 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000185 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000186 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000187 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000188 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000189 .block_erasers =
190 {
191 {
192 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson35727f72010-01-28 23:55:12 +0000193 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000194 }, {
195 .eraseblocks = { {2048 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000196 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000197 },
198 },
Sean Nelson35727f72010-01-28 23:55:12 +0000199 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000200 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000201 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000202 },
203
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000204 {
205 .vendor = "AMD",
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000206 .name = "Am29F040",
207 .bustype = BUS_PARALLEL,
208 .manufacture_id = AMD_ID,
209 .model_id = AMD_AM29F040,
210 .total_size = 512,
211 .page_size = 64 * 1024,
212 .feature_bits = FEATURE_EITHER_RESET,
213 .tested = TEST_UNTESTED,
214 .probe = probe_jedec,
215 .probe_timing = TIMING_ZERO,
216 .block_erasers =
217 {
218 {
219 .eraseblocks = { {64 * 1024, 8} },
220 .block_erase = erase_sector_jedec,
221 }, {
222 .eraseblocks = { {512 * 1024, 1} },
223 .block_erase = erase_chip_block_jedec,
224 },
225 },
226 .write = write_jedec_1,
227 .read = read_memmapped,
228 .voltage = {4500, 5500},
229 },
230
231 {
232 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000233 .name = "Am29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000234 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000235 .manufacture_id = AMD_ID,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000236 .model_id = AMD_AM29F040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000237 .total_size = 512,
238 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000239 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
240 .tested = TEST_UNTESTED,
241 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000242 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000243 .block_erasers =
244 {
245 {
246 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000247 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000248 }, {
249 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000250 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000251 },
252 },
Sean Nelson35727f72010-01-28 23:55:12 +0000253 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000254 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000255 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000256 },
257
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000258 {
259 .vendor = "AMD",
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000260 .name = "Am29F080",
261 .bustype = BUS_PARALLEL,
262 .manufacture_id = AMD_ID,
263 .model_id = AMD_AM29F080,
264 .total_size = 1024,
265 .page_size = 64 * 1024,
266 .feature_bits = FEATURE_EITHER_RESET,
267 .tested = TEST_UNTESTED,
268 .probe = probe_jedec,
269 .probe_timing = TIMING_ZERO,
270 .block_erasers =
271 {
272 {
273 .eraseblocks = { {64 * 1024, 16} },
274 .block_erase = erase_sector_jedec,
275 }, {
276 .eraseblocks = { {1024 * 1024, 1} },
277 .block_erase = erase_chip_block_jedec,
278 },
279 },
280 .write = write_jedec_1,
281 .read = read_memmapped,
282 .voltage = {4500, 5500},
283 },
284
285 {
286 .vendor = "AMD",
Peter Stuge8440cc02009-01-25 23:55:12 +0000287 .name = "Am29F080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000288 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000289 .manufacture_id = AMD_ID,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000290 .model_id = AMD_AM29F080,
Peter Stuge8440cc02009-01-25 23:55:12 +0000291 .total_size = 1024,
292 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000293 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000294 .tested = TEST_UNTESTED,
295 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000296 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000297 .block_erasers =
298 {
299 {
300 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000301 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000302 }, {
303 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000304 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000305 },
306 },
Sean Nelson35727f72010-01-28 23:55:12 +0000307 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000308 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000309 .voltage = {4500, 5500},
Peter Stuge8440cc02009-01-25 23:55:12 +0000310 },
311
312 {
313 .vendor = "AMD",
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000314 .name = "Am29LV001BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000315 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000316 .manufacture_id = AMD_ID,
317 .model_id = AMD_AM29LV001BB,
318 .total_size = 128,
319 .page_size = 64 * 1024, /* unused */
320 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
321 .tested = TEST_OK_PREW,
322 .probe = probe_jedec,
323 .probe_timing = TIMING_ZERO,
324 .block_erasers =
325 {
326 {
327 .eraseblocks = {
328 {8 * 1024, 1},
329 {4 * 1024, 2},
330 {16 * 1024, 7},
331 },
332 .block_erase = erase_sector_jedec,
333 }, {
334 .eraseblocks = { {128 * 1024, 1} },
335 .block_erase = erase_chip_block_jedec,
336 },
337 },
338 .write = write_jedec_1,
339 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000340 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000341 },
342
343 {
344 .vendor = "AMD",
345 .name = "Am29LV001BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000346 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000347 .manufacture_id = AMD_ID,
348 .model_id = AMD_AM29LV001BT,
349 .total_size = 128,
350 .page_size = 64 * 1024, /* unused */
351 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
352 .tested = TEST_UNTESTED,
353 .probe = probe_jedec,
354 .probe_timing = TIMING_ZERO,
355 .block_erasers =
356 {
357 {
358 .eraseblocks = {
359 {16 * 1024, 7},
360 {4 * 1024, 2},
361 {8 * 1024, 1},
362 },
363 .block_erase = erase_sector_jedec,
364 }, {
365 .eraseblocks = { {128 * 1024, 1} },
366 .block_erase = erase_chip_block_jedec,
367 },
368 },
369 .write = write_jedec_1,
370 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000371 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000372 },
373
374 {
375 .vendor = "AMD",
376 .name = "Am29LV002BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000377 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000378 .manufacture_id = AMD_ID,
379 .model_id = AMD_AM29LV002BB,
380 .total_size = 256,
381 .page_size = 64 * 1024, /* unused */
382 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
383 .tested = TEST_UNTESTED,
384 .probe = probe_jedec,
385 .probe_timing = TIMING_ZERO,
386 .block_erasers =
387 {
388 {
389 .eraseblocks = {
390 {16 * 1024, 1},
391 {8 * 1024, 2},
392 {32 * 1024, 1},
393 {64 * 1024, 3},
394 },
395 .block_erase = erase_sector_jedec,
396 }, {
397 .eraseblocks = { {256 * 1024, 1} },
398 .block_erase = erase_chip_block_jedec,
399 },
400 },
401 .write = write_jedec_1,
402 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000403 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000404 },
405
406 {
407 .vendor = "AMD",
408 .name = "Am29LV002BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000409 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000410 .manufacture_id = AMD_ID,
411 .model_id = AMD_AM29LV002BT,
412 .total_size = 256,
413 .page_size = 64 * 1024, /* unused */
414 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
415 .tested = TEST_UNTESTED,
416 .probe = probe_jedec,
417 .probe_timing = TIMING_ZERO,
418 .block_erasers =
419 {
420 {
421 .eraseblocks = {
422 {64 * 1024, 3},
423 {32 * 1024, 1},
424 {8 * 1024, 2},
425 {16 * 1024, 1},
426 },
427 .block_erase = erase_sector_jedec,
428 }, {
429 .eraseblocks = { {256 * 1024, 1} },
430 .block_erase = erase_chip_block_jedec,
431 },
432 },
433 .write = write_jedec_1,
434 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000435 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000436 },
437
438 {
439 .vendor = "AMD",
440 .name = "Am29LV004BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000441 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000442 .manufacture_id = AMD_ID,
443 .model_id = AMD_AM29LV004BB,
444 .total_size = 512,
445 .page_size = 64 * 1024, /* unused */
446 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
447 .tested = TEST_UNTESTED,
448 .probe = probe_jedec,
449 .probe_timing = TIMING_ZERO,
450 .block_erasers =
451 {
452 {
453 .eraseblocks = {
454 {16 * 1024, 1},
455 {8 * 1024, 2},
456 {32 * 1024, 1},
457 {64 * 1024, 7},
458 },
459 .block_erase = erase_sector_jedec,
460 }, {
461 .eraseblocks = { {512 * 1024, 1} },
462 .block_erase = erase_chip_block_jedec,
463 },
464 },
465 .write = write_jedec_1,
466 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000467 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000468 },
469
470 {
471 .vendor = "AMD",
472 .name = "Am29LV004BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000473 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000474 .manufacture_id = AMD_ID,
475 .model_id = AMD_AM29LV004BT,
476 .total_size = 512,
477 .page_size = 64 * 1024, /* unused */
478 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
479 .tested = TEST_UNTESTED,
480 .probe = probe_jedec,
481 .probe_timing = TIMING_ZERO,
482 .block_erasers =
483 {
484 {
485 .eraseblocks = {
486 {64 * 1024, 7},
487 {32 * 1024, 1},
488 {8 * 1024, 2},
489 {16 * 1024, 1},
490 },
491 .block_erase = erase_sector_jedec,
492 }, {
493 .eraseblocks = { {512 * 1024, 1} },
494 .block_erase = erase_chip_block_jedec,
495 },
496 },
497 .write = write_jedec_1,
498 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000499 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000500 },
501
502 {
503 .vendor = "AMD",
504 .name = "Am29LV008BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000505 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000506 .manufacture_id = AMD_ID,
507 .model_id = AMD_AM29LV008BB,
508 .total_size = 1024,
509 .page_size = 64 * 1024, /* unused */
510 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann09ebd522011-08-25 22:54:23 +0000511 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000512 .probe = probe_jedec,
513 .probe_timing = TIMING_ZERO,
514 .block_erasers =
515 {
516 {
517 .eraseblocks = {
518 {16 * 1024, 1},
519 {8 * 1024, 2},
520 {32 * 1024, 1},
521 {64 * 1024, 15},
522 },
523 .block_erase = erase_sector_jedec,
524 }, {
525 .eraseblocks = { {1024 * 1024, 1} },
526 .block_erase = erase_chip_block_jedec,
527 },
528 },
529 .write = write_jedec_1,
530 .read = read_memmapped,
Alan Greenf5ad6882019-06-27 12:09:13 +1000531 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000532 },
533
534 {
535 .vendor = "AMD",
536 .name = "Am29LV008BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000537 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000538 .manufacture_id = AMD_ID,
539 .model_id = AMD_AM29LV008BT,
540 .total_size = 1024,
541 .page_size = 64 * 1024, /* unused */
542 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
543 .tested = TEST_UNTESTED,
544 .probe = probe_jedec,
545 .probe_timing = TIMING_ZERO,
546 .block_erasers =
547 {
548 {
549 .eraseblocks = {
550 {64 * 1024, 15},
551 {32 * 1024, 1},
552 {8 * 1024, 2},
553 {16 * 1024, 1},
554 },
555 .block_erase = erase_sector_jedec,
556 }, {
557 .eraseblocks = { {1024 * 1024, 1} },
558 .block_erase = erase_chip_block_jedec,
559 },
560 },
561 .write = write_jedec_1,
562 .read = read_memmapped,
Alan Greenf5ad6882019-06-27 12:09:13 +1000563 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000564 },
565
566 {
567 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000568 .name = "Am29LV040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000569 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000570 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000571 .model_id = AMD_AM29LV040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000572 .total_size = 512,
573 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000574 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000575 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +0000576 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000577 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000578 .block_erasers =
579 {
580 {
581 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000582 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000583 }, {
584 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000585 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000586 },
587 },
Sean Nelson35727f72010-01-28 23:55:12 +0000588 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000589 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000590 .voltage = {3000, 3600}, /* 3.0-3.6V for type -60R, others 2.7-3.6V*/
FENG yu ningff692fb2008-12-08 18:15:10 +0000591 },
592
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000593 {
Peter Stuge8440cc02009-01-25 23:55:12 +0000594 .vendor = "AMD",
595 .name = "Am29LV081B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000596 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000597 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000598 .model_id = AMD_AM29LV080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000599 .total_size = 1024,
600 .page_size = 64 * 1024,
David Borg204f4652010-12-04 03:26:40 +0000601 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET, /* datasheet specifies address as don't care */
Peter Stuge8440cc02009-01-25 23:55:12 +0000602 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000603 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000604 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000605 .block_erasers =
606 {
607 {
608 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000609 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000610 }, {
611 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000612 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000613 },
614 },
Sean Nelson35727f72010-01-28 23:55:12 +0000615 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000616 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000617 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Peter Stuge8440cc02009-01-25 23:55:12 +0000618 },
619
620 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000621 .vendor = "AMIC",
Alan Green1f9cc7d2019-07-01 11:10:45 +1000622 .name = "A25L010",
623 .bustype = BUS_SPI,
624 .manufacture_id = AMIC_ID_NOPREFIX,
625 .model_id = AMIC_A25L010,
626 .total_size = 128,
627 .page_size = 256,
628 .feature_bits = FEATURE_WRSR_WREN,
629 .tested = TEST_UNTESTED,
630 .probe = probe_spi_rdid,
631 .probe_timing = TIMING_ZERO,
632 .block_erasers =
633 {
634 {
635 .eraseblocks = { { 4 * 1024, 32 } },
636 .block_erase = spi_block_erase_20,
637 }, {
638 .eraseblocks = { { 64 * 1024, 2 } },
639 .block_erase = spi_block_erase_d8,
640 }, {
641 .eraseblocks = { { 128 * 1024, 1 } },
642 .block_erase = spi_block_erase_c7,
643 }
644 },
645 .printlock = spi_prettyprint_status_register_bp2_srwd,
646 .unlock = spi_disable_blockprotect,
647 .write = spi_chip_write_256,
648 .read = spi_chip_read,
649 .voltage = {2700, 3600},
650 },
651
652 {
653 .vendor = "AMIC",
654 .name = "A25L016",
655 .bustype = BUS_SPI,
656 .manufacture_id = AMIC_ID_NOPREFIX,
657 .model_id = AMIC_A25L016,
658 .total_size = 2048,
659 .page_size = 256,
660 .feature_bits = FEATURE_WRSR_WREN,
661 .tested = TEST_UNTESTED,
662 .probe = probe_spi_rdid,
663 .probe_timing = TIMING_ZERO,
664 .block_erasers =
665 {
666 {
667 .eraseblocks = { { 4 * 1024, 512 } },
668 .block_erase = spi_block_erase_20,
669 }, {
670 .eraseblocks = { { 64 * 1024, 32 } },
671 .block_erase = spi_block_erase_d8,
672 }, {
673 .eraseblocks = { { 2048 * 1024, 1 } },
674 .block_erase = spi_block_erase_c7,
675 }
676 },
677 .printlock = spi_prettyprint_status_register_bp2_srwd,
678 .unlock = spi_disable_blockprotect,
679 .write = spi_chip_write_256,
680 .read = spi_chip_read,
681 .voltage = {2700, 3600},
682 },
683
684 {
685 .vendor = "AMIC",
686 .name = "A25L020",
687 .bustype = BUS_SPI,
688 .manufacture_id = AMIC_ID_NOPREFIX,
689 .model_id = AMIC_A25L020,
690 .total_size = 256,
691 .page_size = 256,
692 .feature_bits = FEATURE_WRSR_WREN,
693 .tested = TEST_UNTESTED,
694 .probe = probe_spi_rdid,
695 .probe_timing = TIMING_ZERO,
696 .block_erasers =
697 {
698 {
699 .eraseblocks = { { 4 * 1024, 64 } },
700 .block_erase = spi_block_erase_20,
701 }, {
702 .eraseblocks = { { 64 * 1024, 4 } },
703 .block_erase = spi_block_erase_d8,
704 }, {
705 .eraseblocks = { { 256 * 1024, 1 } },
706 .block_erase = spi_block_erase_c7,
707 }
708 },
709 .printlock = spi_prettyprint_status_register_bp2_srwd,
710 .unlock = spi_disable_blockprotect,
711 .write = spi_chip_write_256,
712 .read = spi_chip_read,
713 .voltage = {2700, 3600},
714 },
715
716 {
717 .vendor = "AMIC",
718 .name = "A25L032",
719 .bustype = BUS_SPI,
720 .manufacture_id = AMIC_ID_NOPREFIX,
721 .model_id = AMIC_A25L032,
722 .total_size = 4096,
723 .page_size = 256,
724 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
725 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
726 .tested = TEST_OK_PREW,
727 .probe = probe_spi_rdid,
728 .probe_timing = TIMING_ZERO,
729 .block_erasers =
730 {
731 {
732 .eraseblocks = { { 4 * 1024, 1024 } },
733 .block_erase = spi_block_erase_20,
734 }, {
735 .eraseblocks = { { 64 * 1024, 64 } },
736 .block_erase = spi_block_erase_52,
737 }, {
738 .eraseblocks = { { 64 * 1024, 64 } },
739 .block_erase = spi_block_erase_d8,
740 }, {
741 .eraseblocks = { { 4096 * 1024, 1 } },
742 .block_erase = spi_block_erase_60,
743 }, {
744 .eraseblocks = { { 4096 * 1024, 1 } },
745 .block_erase = spi_block_erase_c7,
746 }
747 },
748 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
749 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
750 .write = spi_chip_write_256,
751 .read = spi_chip_read,
752 .voltage = {2700, 3600},
753 },
754
755 {
756 .vendor = "AMIC",
757 .name = "A25L040",
758 .bustype = BUS_SPI,
759 .manufacture_id = AMIC_ID_NOPREFIX,
760 .model_id = AMIC_A25L040,
761 .total_size = 512,
762 .page_size = 256,
763 .feature_bits = FEATURE_WRSR_WREN,
764 .tested = TEST_UNTESTED,
765 .probe = probe_spi_rdid,
766 .probe_timing = TIMING_ZERO,
767 .block_erasers =
768 {
769 {
770 .eraseblocks = { { 4 * 1024, 128 } },
771 .block_erase = spi_block_erase_20,
772 }, {
773 .eraseblocks = { { 64 * 1024, 8 } },
774 .block_erase = spi_block_erase_d8,
775 }, {
776 .eraseblocks = { { 512 * 1024, 1 } },
777 .block_erase = spi_block_erase_c7,
778 }
779 },
780 .printlock = spi_prettyprint_status_register_bp2_srwd,
781 .unlock = spi_disable_blockprotect,
782 .write = spi_chip_write_256,
783 .read = spi_chip_read,
784 .voltage = {2700, 3600},
785 },
786
787 {
788 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000789 .name = "A25L05PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000790 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000791 .manufacture_id = AMIC_ID,
792 .model_id = AMIC_A25L05PT,
793 .total_size = 64,
794 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000795 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000796 .tested = TEST_UNTESTED,
797 .probe = probe_spi_rdid4,
798 .probe_timing = TIMING_ZERO,
799 .block_erasers =
800 {
801 {
802 .eraseblocks = {
803 {32 * 1024, 1},
804 {16 * 1024, 1},
805 {8 * 1024, 1},
806 {4 * 1024, 2},
807 },
808 .block_erase = spi_block_erase_d8,
809 }, {
810 .eraseblocks = { {64 * 1024, 1} },
811 .block_erase = spi_block_erase_c7,
812 }
813 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000814 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000815 .unlock = spi_disable_blockprotect,
816 .write = spi_chip_write_256,
817 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000818 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000819 },
820
821 {
822 .vendor = "AMIC",
823 .name = "A25L05PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000824 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000825 .manufacture_id = AMIC_ID,
826 .model_id = AMIC_A25L05PU,
827 .total_size = 64,
828 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000829 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000830 .tested = TEST_UNTESTED,
831 .probe = probe_spi_rdid4,
832 .probe_timing = TIMING_ZERO,
833 .block_erasers =
834 {
835 {
836 .eraseblocks = {
837 {4 * 1024, 2},
838 {8 * 1024, 1},
839 {16 * 1024, 1},
840 {32 * 1024, 1},
841 },
842 .block_erase = spi_block_erase_d8,
843 }, {
844 .eraseblocks = { {64 * 1024, 1} },
845 .block_erase = spi_block_erase_c7,
846 }
847 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000848 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000849 .unlock = spi_disable_blockprotect,
850 .write = spi_chip_write_256,
851 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000852 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000853 },
854
855 {
856 .vendor = "AMIC",
Alan Green1f9cc7d2019-07-01 11:10:45 +1000857 .name = "A25L080",
858 .bustype = BUS_SPI,
859 .manufacture_id = AMIC_ID_NOPREFIX,
860 .model_id = AMIC_A25L080,
861 .total_size = 1024,
862 .page_size = 256,
863 .feature_bits = FEATURE_WRSR_WREN,
864 .tested = TEST_UNTESTED,
865 .probe = probe_spi_rdid,
866 .probe_timing = TIMING_ZERO,
867 .block_erasers =
868 {
869 {
870 .eraseblocks = { { 4 * 1024, 256 } },
871 .block_erase = spi_block_erase_20,
872 }, {
873 .eraseblocks = { { 64 * 1024, 16 } },
874 .block_erase = spi_block_erase_d8,
875 }, {
876 .eraseblocks = { { 1024 * 1024, 1 } },
877 .block_erase = spi_block_erase_c7,
878 }
879 },
880 .printlock = spi_prettyprint_status_register_bp2_srwd,
881 .unlock = spi_disable_blockprotect,
882 .write = spi_chip_write_256,
883 .read = spi_chip_read,
884 .voltage = {2700, 3600},
885 },
886
887 {
888 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000889 .name = "A25L10PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000890 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000891 .manufacture_id = AMIC_ID,
892 .model_id = AMIC_A25L10PT,
893 .total_size = 128,
894 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000895 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000896 .tested = TEST_UNTESTED,
897 .probe = probe_spi_rdid4,
898 .probe_timing = TIMING_ZERO,
899 .block_erasers =
900 {
901 {
902 .eraseblocks = {
903 {64 * 1024, 1},
904 {32 * 1024, 1},
905 {16 * 1024, 1},
906 {8 * 1024, 1},
907 {4 * 1024, 2},
908 },
909 .block_erase = spi_block_erase_d8,
910 }, {
911 .eraseblocks = { {128 * 1024, 1} },
912 .block_erase = spi_block_erase_c7,
913 }
914 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000915 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000916 .unlock = spi_disable_blockprotect,
917 .write = spi_chip_write_256,
918 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000919 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000920 },
921
922 {
923 .vendor = "AMIC",
924 .name = "A25L10PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000925 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000926 .manufacture_id = AMIC_ID,
927 .model_id = AMIC_A25L10PU,
928 .total_size = 128,
929 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000930 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000931 .tested = TEST_UNTESTED,
932 .probe = probe_spi_rdid4,
933 .probe_timing = TIMING_ZERO,
934 .block_erasers =
935 {
936 {
937 .eraseblocks = {
938 {4 * 1024, 2},
939 {8 * 1024, 1},
940 {16 * 1024, 1},
941 {32 * 1024, 1},
942 {64 * 1024, 1},
943 },
944 .block_erase = spi_block_erase_d8,
945 }, {
946 .eraseblocks = { {128 * 1024, 1} },
947 .block_erase = spi_block_erase_c7,
948 }
949 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000950 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000951 .unlock = spi_disable_blockprotect,
952 .write = spi_chip_write_256,
953 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000954 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000955 },
956
957 {
958 .vendor = "AMIC",
Alan Green1f9cc7d2019-07-01 11:10:45 +1000959 .name = "A25L16PT",
960 .bustype = BUS_SPI,
961 .manufacture_id = AMIC_ID,
962 .model_id = AMIC_A25L16PT,
963 .total_size = 2048,
964 .page_size = 256,
965 .feature_bits = FEATURE_WRSR_WREN,
966 .tested = TEST_UNTESTED,
967 .probe = probe_spi_rdid4,
968 .probe_timing = TIMING_ZERO,
969 .block_erasers =
970 {
971 {
972 .eraseblocks = {
973 {64 * 1024, 31},
974 {32 * 1024, 1},
975 {16 * 1024, 1},
976 {8 * 1024, 1},
977 {4 * 1024, 2},
978 },
979 .block_erase = spi_block_erase_d8,
980 }, {
981 .eraseblocks = { {2048 * 1024, 1} },
982 .block_erase = spi_block_erase_60,
983 }, {
984 .eraseblocks = { {2048 * 1024, 1} },
985 .block_erase = spi_block_erase_c7,
986 }
987 },
988 .printlock = spi_prettyprint_status_register_bp2_srwd,
989 .unlock = spi_disable_blockprotect,
990 .write = spi_chip_write_256,
991 .read = spi_chip_read,
992 .voltage = {2700, 3600},
993 },
994
995 {
996 .vendor = "AMIC",
997 .name = "A25L16PU",
998 .bustype = BUS_SPI,
999 .manufacture_id = AMIC_ID,
1000 .model_id = AMIC_A25L16PU,
1001 .total_size = 2048,
1002 .page_size = 256,
1003 .feature_bits = FEATURE_WRSR_WREN,
1004 .tested = TEST_OK_PR,
1005 .probe = probe_spi_rdid4,
1006 .probe_timing = TIMING_ZERO,
1007 .block_erasers =
1008 {
1009 {
1010 .eraseblocks = {
1011 {4 * 1024, 2},
1012 {8 * 1024, 1},
1013 {16 * 1024, 1},
1014 {32 * 1024, 1},
1015 {64 * 1024, 31},
1016 },
1017 .block_erase = spi_block_erase_d8,
1018 }, {
1019 .eraseblocks = { {2048 * 1024, 1} },
1020 .block_erase = spi_block_erase_60,
1021 }, {
1022 .eraseblocks = { {2048 * 1024, 1} },
1023 .block_erase = spi_block_erase_c7,
1024 }
1025 },
1026 .printlock = spi_prettyprint_status_register_bp2_srwd,
1027 .unlock = spi_disable_blockprotect,
1028 .write = spi_chip_write_256,
1029 .read = spi_chip_read,
1030 .voltage = {2700, 3600},
1031 },
1032
1033 {
1034 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001035 .name = "A25L20PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001036 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001037 .manufacture_id = AMIC_ID,
1038 .model_id = AMIC_A25L20PT,
1039 .total_size = 256,
1040 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001041 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001042 .tested = TEST_UNTESTED,
1043 .probe = probe_spi_rdid4,
1044 .probe_timing = TIMING_ZERO,
1045 .block_erasers =
1046 {
1047 {
1048 .eraseblocks = {
1049 {64 * 1024, 3},
1050 {32 * 1024, 1},
1051 {16 * 1024, 1},
1052 {8 * 1024, 1},
1053 {4 * 1024, 2},
1054 },
1055 .block_erase = spi_block_erase_d8,
1056 }, {
1057 .eraseblocks = { {256 * 1024, 1} },
1058 .block_erase = spi_block_erase_c7,
1059 }
1060 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001061 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001062 .unlock = spi_disable_blockprotect,
1063 .write = spi_chip_write_256,
1064 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001065 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001066 },
1067
1068 {
1069 .vendor = "AMIC",
1070 .name = "A25L20PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001071 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001072 .manufacture_id = AMIC_ID,
1073 .model_id = AMIC_A25L20PU,
1074 .total_size = 256,
1075 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001076 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001077 .tested = TEST_UNTESTED,
1078 .probe = probe_spi_rdid4,
1079 .probe_timing = TIMING_ZERO,
1080 .block_erasers =
1081 {
1082 {
1083 .eraseblocks = {
1084 {4 * 1024, 2},
1085 {8 * 1024, 1},
1086 {16 * 1024, 1},
1087 {32 * 1024, 1},
1088 {64 * 1024, 3},
1089 },
1090 .block_erase = spi_block_erase_d8,
1091 }, {
1092 .eraseblocks = { {256 * 1024, 1} },
1093 .block_erase = spi_block_erase_c7,
1094 }
1095 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001096 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001097 .unlock = spi_disable_blockprotect,
1098 .write = spi_chip_write_256,
1099 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001100 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001101 },
1102
1103 /* The A25L40P{T,U} chips are distinguished by their
1104 * erase block layouts, but without any distinction in RDID.
1105 * This inexplicable quirk was verified by Rudolf Marek
1106 * and discussed on the flashrom mailing list on 2010-07-12.
1107 */
1108 {
1109 .vendor = "AMIC",
1110 .name = "A25L40PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001111 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001112 .manufacture_id = AMIC_ID,
1113 .model_id = AMIC_A25L40PT,
1114 .total_size = 512,
1115 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001116 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001117 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001118 .probe = probe_spi_rdid4,
1119 .probe_timing = TIMING_ZERO,
1120 .block_erasers =
1121 {
1122 {
1123 .eraseblocks = {
1124 {64 * 1024, 7},
1125 {32 * 1024, 1},
1126 {16 * 1024, 1},
1127 {8 * 1024, 1},
1128 {4 * 1024, 2},
1129 },
1130 .block_erase = spi_block_erase_d8,
1131 }, {
1132 .eraseblocks = { {512 * 1024, 1} },
1133 .block_erase = spi_block_erase_c7,
1134 }
1135 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001136 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001137 .unlock = spi_disable_blockprotect,
1138 .write = spi_chip_write_256,
1139 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001140 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001141 },
1142
1143 {
1144 .vendor = "AMIC",
1145 .name = "A25L40PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001146 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001147 .manufacture_id = AMIC_ID,
1148 .model_id = AMIC_A25L40PU,
1149 .total_size = 512,
1150 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001151 .feature_bits = FEATURE_WRSR_WREN,
Angel Pons6f088352018-09-30 19:59:42 +02001152 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001153 .probe = probe_spi_rdid4,
1154 .probe_timing = TIMING_ZERO,
1155 .block_erasers =
1156 {
1157 {
1158 .eraseblocks = {
1159 {4 * 1024, 2},
1160 {8 * 1024, 1},
1161 {16 * 1024, 1},
1162 {32 * 1024, 1},
1163 {64 * 1024, 7},
1164 },
1165 .block_erase = spi_block_erase_d8,
1166 }, {
1167 .eraseblocks = { {512 * 1024, 1} },
1168 .block_erase = spi_block_erase_c7,
1169 }
1170 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001171 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001172 .unlock = spi_disable_blockprotect,
1173 .write = spi_chip_write_256,
1174 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001175 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001176 },
1177
1178 {
1179 .vendor = "AMIC",
Alan Green1f9cc7d2019-07-01 11:10:45 +10001180 .name = "A25L512",
1181 .bustype = BUS_SPI,
1182 .manufacture_id = AMIC_ID_NOPREFIX,
1183 .model_id = AMIC_A25L512,
1184 .total_size = 64,
1185 .page_size = 256,
1186 .feature_bits = FEATURE_WRSR_WREN,
1187 .tested = TEST_UNTESTED,
1188 .probe = probe_spi_rdid,
1189 .probe_timing = TIMING_ZERO,
1190 .block_erasers =
1191 {
1192 {
1193 .eraseblocks = { { 4 * 1024, 16 } },
1194 .block_erase = spi_block_erase_20,
1195 }, {
1196 .eraseblocks = { { 64 * 1024, 1 } },
1197 .block_erase = spi_block_erase_d8,
1198 }, {
1199 .eraseblocks = { { 64 * 1024, 1 } },
1200 .block_erase = spi_block_erase_c7,
1201 }
1202 },
1203 .printlock = spi_prettyprint_status_register_bp2_srwd,
1204 .unlock = spi_disable_blockprotect,
1205 .write = spi_chip_write_256,
1206 .read = spi_chip_read,
1207 .voltage = {2700, 3600},
1208 },
1209
1210 {
1211 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001212 .name = "A25L80P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001213 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001214 .manufacture_id = AMIC_ID,
1215 .model_id = AMIC_A25L80P,
1216 .total_size = 1024,
1217 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001218 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001219 .tested = TEST_OK_PRE,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001220 .probe = probe_spi_rdid4,
1221 .probe_timing = TIMING_ZERO,
1222 .block_erasers =
1223 {
1224 {
1225 .eraseblocks = {
1226 {4 * 1024, 2},
1227 {8 * 1024, 1},
1228 {16 * 1024, 1},
1229 {32 * 1024, 1},
1230 {64 * 1024, 15},
1231 },
1232 .block_erase = spi_block_erase_d8,
1233 }, {
1234 .eraseblocks = { {1024 * 1024, 1} },
1235 .block_erase = spi_block_erase_c7,
1236 }
1237 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001238 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001239 .unlock = spi_disable_blockprotect,
1240 .write = spi_chip_write_256,
1241 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001242 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001243 },
1244
1245 {
1246 .vendor = "AMIC",
Alan Green1f9cc7d2019-07-01 11:10:45 +10001247 .name = "A25LQ032/A25LQ32A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001248 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001249 .manufacture_id = AMIC_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10001250 .model_id = AMIC_A25LQ032,
Dan Lenski11617122010-07-29 15:00:40 +00001251 .total_size = 4096,
1252 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10001253 /* A25LQ32A supports SFDP */
Daniel Lenski65922a32012-02-15 23:40:23 +00001254 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1255 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Alan Green1f9cc7d2019-07-01 11:10:45 +10001256 .tested = TEST_UNTESTED,
Dan Lenski11617122010-07-29 15:00:40 +00001257 .probe = probe_spi_rdid,
1258 .probe_timing = TIMING_ZERO,
1259 .block_erasers =
1260 {
1261 {
1262 .eraseblocks = { { 4 * 1024, 1024 } },
1263 .block_erase = spi_block_erase_20,
1264 }, {
1265 .eraseblocks = { { 64 * 1024, 64 } },
1266 .block_erase = spi_block_erase_52,
1267 }, {
1268 .eraseblocks = { { 64 * 1024, 64 } },
1269 .block_erase = spi_block_erase_d8,
1270 }, {
1271 .eraseblocks = { { 4096 * 1024, 1 } },
1272 .block_erase = spi_block_erase_60,
1273 }, {
1274 .eraseblocks = { { 4096 * 1024, 1 } },
1275 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001276 }
Dan Lenski11617122010-07-29 15:00:40 +00001277 },
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001278 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
1279 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
Dan Lenski11617122010-07-29 15:00:40 +00001280 .write = spi_chip_write_256,
1281 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001282 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001283 },
1284
1285 {
1286 .vendor = "AMIC",
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001287 .name = "A25LQ16",
1288 .bustype = BUS_SPI,
1289 .manufacture_id = AMIC_ID_NOPREFIX,
1290 .model_id = AMIC_A25LQ16,
1291 .total_size = 2048,
1292 .page_size = 256,
1293 /* supports SFDP */
1294 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1295 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1296 .tested = TEST_UNTESTED,
1297 .probe = probe_spi_rdid,
1298 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10001299 .block_erasers =
1300 {
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001301 {
1302 .eraseblocks = { { 4 * 1024, 512 } },
1303 .block_erase = spi_block_erase_20,
1304 }, {
1305 .eraseblocks = { { 64 * 1024, 32 } },
1306 .block_erase = spi_block_erase_52,
1307 }, {
1308 .eraseblocks = { { 64 * 1024, 32 } },
1309 .block_erase = spi_block_erase_d8,
1310 }, {
1311 .eraseblocks = { { 2048 * 1024, 1 } },
1312 .block_erase = spi_block_erase_60,
1313 }, {
1314 .eraseblocks = { { 2048 * 1024, 1 } },
1315 .block_erase = spi_block_erase_c7,
1316 }
1317 },
1318 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
1319 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
1320 .write = spi_chip_write_256,
1321 .read = spi_chip_read,
1322 .voltage = {2700, 3600},
1323 },
1324
1325 {
1326 .vendor = "AMIC",
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001327 .name = "A25LQ64",
1328 .bustype = BUS_SPI,
1329 .manufacture_id = AMIC_ID_NOPREFIX,
Stefan Tauner23e10b82016-01-23 16:16:49 +00001330 .model_id = AMIC_A25LQ64,
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001331 .total_size = 8192,
1332 .page_size = 256,
1333 /* supports SFDP */
1334 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
1335 /* QPI enable 0x35, disable 0xF5 */
1336 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
1337 .tested = TEST_UNTESTED,
1338 .probe = probe_spi_rdid,
1339 .probe_timing = TIMING_ZERO,
1340 .block_erasers =
1341 {
1342 {
1343 .eraseblocks = { { 4 * 1024, 2048 } },
1344 .block_erase = spi_block_erase_20,
1345 }, {
1346 .eraseblocks = { { 32 * 1024, 256 } },
1347 .block_erase = spi_block_erase_52,
1348 }, {
1349 .eraseblocks = { { 64 * 1024, 128 } },
1350 .block_erase = spi_block_erase_d8,
1351 }, {
1352 .eraseblocks = { { 8192 * 1024, 1 } },
1353 .block_erase = spi_block_erase_60,
1354 }, {
1355 .eraseblocks = { { 8192 * 1024, 1 } },
1356 .block_erase = spi_block_erase_c7,
1357 }
1358 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001359 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enhance (sic!) */
Stefan Tauner5c316f92015-02-08 21:57:52 +00001360 .unlock = spi_disable_blockprotect_bp3_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001361 .write = spi_chip_write_256,
1362 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001363 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001364 },
1365
1366 {
1367 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001368 .name = "A29002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001369 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001370 .manufacture_id = AMIC_ID_NOPREFIX,
1371 .model_id = AMIC_A29002B,
1372 .total_size = 256,
1373 .page_size = 64 * 1024,
1374 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1375 .tested = TEST_UNTESTED,
1376 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001377 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001378 .block_erasers =
1379 {
1380 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00001381 .eraseblocks = {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001382 {16 * 1024, 1},
1383 {8 * 1024, 2},
1384 {32 * 1024, 1},
1385 {64 * 1024, 3},
1386 },
1387 .block_erase = erase_sector_jedec,
1388 }, {
1389 .eraseblocks = { {256 * 1024, 1} },
1390 .block_erase = erase_chip_block_jedec,
1391 },
1392 },
1393 .write = write_jedec_1,
1394 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001395 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001396 },
1397
1398 {
1399 .vendor = "AMIC",
1400 .name = "A29002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001401 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001402 .manufacture_id = AMIC_ID_NOPREFIX,
1403 .model_id = AMIC_A29002T,
1404 .total_size = 256,
1405 .page_size = 64 * 1024,
1406 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00001407 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001408 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001409 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001410 .block_erasers =
1411 {
1412 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00001413 .eraseblocks = {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001414 {64 * 1024, 3},
1415 {32 * 1024, 1},
1416 {8 * 1024, 2},
1417 {16 * 1024, 1},
1418 },
1419 .block_erase = erase_sector_jedec,
1420 }, {
1421 .eraseblocks = { {256 * 1024, 1} },
1422 .block_erase = erase_chip_block_jedec,
1423 },
1424 },
1425 .write = write_jedec_1,
1426 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001427 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001428 },
1429
1430 {
1431 .vendor = "AMIC",
1432 .name = "A29040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001433 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001434 .manufacture_id = AMIC_ID_NOPREFIX,
1435 .model_id = AMIC_A29040B,
1436 .total_size = 512,
1437 .page_size = 64 * 1024,
1438 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Corey Osgoodcbd56652013-09-10 10:42:48 +00001439 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001440 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001441 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001442 .block_erasers =
1443 {
1444 {
1445 .eraseblocks = { {64 * 1024, 8} },
1446 .block_erase = erase_sector_jedec,
1447 }, {
1448 .eraseblocks = { {512 * 1024, 1} },
1449 .block_erase = erase_chip_block_jedec,
1450 },
1451 },
1452 .write = write_jedec_1,
1453 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001454 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001455 },
1456
1457 {
1458 .vendor = "AMIC",
1459 .name = "A49LF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001460 .bustype = BUS_LPC,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001461 .manufacture_id = AMIC_ID_NOPREFIX,
1462 .model_id = AMIC_A49LF040A,
1463 .total_size = 512,
1464 .page_size = 64 * 1024,
1465 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00001466 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001467 .probe = probe_jedec,
1468 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
1469 .block_erasers =
1470 {
1471 {
1472 .eraseblocks = { {64 * 1024, 8} },
1473 .block_erase = erase_block_jedec,
1474 }, {
1475 .eraseblocks = { {512 * 1024, 1} },
1476 .block_erase = erase_chip_block_jedec,
1477 }
1478 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00001479 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001480 .write = write_jedec_1,
1481 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001482 .voltage = {3000, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001483 },
1484
1485 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001486 .vendor = "Atmel",
1487 .name = "AT25DF021",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001488 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001489 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001490 .model_id = ATMEL_AT25DF021,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001491 .total_size = 256,
1492 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001493 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1494 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001495 .tested = TEST_UNTESTED,
1496 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001497 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001498 .block_erasers =
1499 {
1500 {
1501 .eraseblocks = { {4 * 1024, 64} },
1502 .block_erase = spi_block_erase_20,
1503 }, {
1504 .eraseblocks = { {32 * 1024, 8} },
1505 .block_erase = spi_block_erase_52,
1506 }, {
1507 .eraseblocks = { {64 * 1024, 4} },
1508 .block_erase = spi_block_erase_d8,
1509 }, {
1510 .eraseblocks = { {256 * 1024, 1} },
1511 .block_erase = spi_block_erase_60,
1512 }, {
1513 .eraseblocks = { {256 * 1024, 1} },
1514 .block_erase = spi_block_erase_c7,
1515 }
1516 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001517 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001518 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001519 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001520 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001521 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001522 },
1523
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001524 {
1525 .vendor = "Atmel",
Steffen Mauch0b59b0d2018-06-02 23:46:03 +02001526 .name = "AT25DF021A",
1527 .bustype = BUS_SPI,
1528 .manufacture_id = ATMEL_ID,
1529 .model_id = ATMEL_AT25DF021A,
1530 .total_size = 256,
1531 .page_size = 256,
1532 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1533 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1534 .tested = TEST_OK_PREW,
1535 .probe = probe_spi_rdid,
1536 .probe_timing = TIMING_ZERO,
1537 .block_erasers =
1538 {
1539 {
1540 .eraseblocks = { {4 * 1024, 64} },
1541 .block_erase = spi_block_erase_20,
1542 }, {
1543 .eraseblocks = { {32 * 1024, 8} },
1544 .block_erase = spi_block_erase_52,
1545 }, {
1546 .eraseblocks = { {64 * 1024, 4} },
1547 .block_erase = spi_block_erase_d8,
1548 }, {
1549 .eraseblocks = { {256 * 1024, 1} },
1550 .block_erase = spi_block_erase_60,
1551 }, {
1552 .eraseblocks = { {256 * 1024, 1} },
1553 .block_erase = spi_block_erase_c7,
1554 }
1555 },
1556 .printlock = spi_prettyprint_status_register_at25df,
1557 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
1558 .write = spi_chip_write_256,
1559 .read = spi_chip_read,
1560 .voltage = {1650, 3600},
1561 },
1562
1563 {
1564 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001565 .name = "AT25DF041A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001566 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001567 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001568 .model_id = ATMEL_AT25DF041A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001569 .total_size = 512,
1570 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001571 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00001572 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001573 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001574 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001575 .block_erasers =
1576 {
1577 {
1578 .eraseblocks = { {4 * 1024, 128} },
1579 .block_erase = spi_block_erase_20,
1580 }, {
1581 .eraseblocks = { {32 * 1024, 16} },
1582 .block_erase = spi_block_erase_52,
1583 }, {
1584 .eraseblocks = { {64 * 1024, 8} },
1585 .block_erase = spi_block_erase_d8,
1586 }, {
1587 .eraseblocks = { {512 * 1024, 1} },
1588 .block_erase = spi_block_erase_60,
1589 }, {
1590 .eraseblocks = { {512 * 1024, 1} },
1591 .block_erase = spi_block_erase_c7,
1592 }
1593 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001594 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001595 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001596 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001597 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001598 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001599 },
1600
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001601 {
1602 .vendor = "Atmel",
1603 .name = "AT25DF081",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001604 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001605 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001606 .model_id = ATMEL_AT25DF081,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001607 .total_size = 1024,
1608 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001609 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001610 .tested = TEST_UNTESTED,
1611 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001612 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001613 .block_erasers =
1614 {
1615 {
1616 .eraseblocks = { {4 * 1024, 256} },
1617 .block_erase = spi_block_erase_20,
1618 }, {
1619 .eraseblocks = { {32 * 1024, 32} },
1620 .block_erase = spi_block_erase_52,
1621 }, {
1622 .eraseblocks = { {64 * 1024, 16} },
1623 .block_erase = spi_block_erase_d8,
1624 }, {
1625 .eraseblocks = { {1024 * 1024, 1} },
1626 .block_erase = spi_block_erase_60,
1627 }, {
1628 .eraseblocks = { {1024 * 1024, 1} },
1629 .block_erase = spi_block_erase_c7,
1630 }
1631 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001632 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001633 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001634 .write = spi_chip_write_256,
1635 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001636 .voltage = {1600, 2000}, /* Datasheet says range is 1.65-1.95 V */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001637 },
1638
1639 {
1640 .vendor = "Atmel",
1641 .name = "AT25DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001642 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001643 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001644 .model_id = ATMEL_AT25DF081A,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001645 .total_size = 1024,
1646 .page_size = 256,
1647 .feature_bits = FEATURE_WRSR_WREN,
1648 .tested = TEST_UNTESTED,
1649 .probe = probe_spi_rdid,
1650 .probe_timing = TIMING_ZERO,
1651 .block_erasers =
1652 {
1653 {
1654 .eraseblocks = { {4 * 1024, 256} },
1655 .block_erase = spi_block_erase_20,
1656 }, {
1657 .eraseblocks = { {32 * 1024, 32} },
1658 .block_erase = spi_block_erase_52,
1659 }, {
1660 .eraseblocks = { {64 * 1024, 16} },
1661 .block_erase = spi_block_erase_d8,
1662 }, {
1663 .eraseblocks = { {1024 * 1024, 1} },
1664 .block_erase = spi_block_erase_60,
1665 }, {
1666 .eraseblocks = { {1024 * 1024, 1} },
1667 .block_erase = spi_block_erase_c7,
1668 }
1669 },
1670 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001671 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001672 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001673 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001674 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001675 },
1676
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001677 {
1678 .vendor = "Atmel",
1679 .name = "AT25DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001680 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001681 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001682 .model_id = ATMEL_AT25DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001683 .total_size = 2048,
1684 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001685 .feature_bits = FEATURE_WRSR_WREN,
Angel Pons8b5b9622018-09-30 19:13:15 +02001686 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001687 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001688 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001689 .block_erasers =
1690 {
1691 {
1692 .eraseblocks = { {4 * 1024, 512} },
1693 .block_erase = spi_block_erase_20,
1694 }, {
1695 .eraseblocks = { {32 * 1024, 64} },
1696 .block_erase = spi_block_erase_52,
1697 }, {
1698 .eraseblocks = { {64 * 1024, 32} },
1699 .block_erase = spi_block_erase_d8,
1700 }, {
1701 .eraseblocks = { {2 * 1024 * 1024, 1} },
1702 .block_erase = spi_block_erase_60,
1703 }, {
1704 .eraseblocks = { {2 * 1024 * 1024, 1} },
1705 .block_erase = spi_block_erase_c7,
1706 }
1707 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001708 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001709 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001710 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001711 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001712 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001713 },
1714
Alan Green86bf6ab2019-06-27 16:58:20 +10001715 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001716 {
1717 .vendor = "Atmel",
1718 .name = "AT25DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001719 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001720 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001721 .model_id = ATMEL_AT25DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001722 .total_size = 4096,
1723 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001724 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd06d9412011-06-12 19:47:55 +00001725 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001726 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001727 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001728 .block_erasers =
1729 {
1730 {
1731 .eraseblocks = { {4 * 1024, 1024} },
1732 .block_erase = spi_block_erase_20,
1733 }, {
1734 .eraseblocks = { {32 * 1024, 128} },
1735 .block_erase = spi_block_erase_52,
1736 }, {
1737 .eraseblocks = { {64 * 1024, 64} },
1738 .block_erase = spi_block_erase_d8,
1739 }, {
1740 .eraseblocks = { {4 * 1024 * 1024, 1} },
1741 .block_erase = spi_block_erase_60,
1742 }, {
1743 .eraseblocks = { {4 * 1024 * 1024, 1} },
1744 .block_erase = spi_block_erase_c7,
1745 }
1746 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001747 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001748 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001749 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001750 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001751 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001752 },
1753
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001754 {
1755 .vendor = "Atmel",
1756 .name = "AT25DF321A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001757 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001758 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001759 .model_id = ATMEL_AT25DF321A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001760 .total_size = 4096,
1761 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001762 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1763 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001764 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001765 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001766 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001767 .block_erasers =
1768 {
1769 {
1770 .eraseblocks = { {4 * 1024, 1024} },
1771 .block_erase = spi_block_erase_20,
1772 }, {
1773 .eraseblocks = { {32 * 1024, 128} },
1774 .block_erase = spi_block_erase_52,
1775 }, {
1776 .eraseblocks = { {64 * 1024, 64} },
1777 .block_erase = spi_block_erase_d8,
1778 }, {
1779 .eraseblocks = { {4 * 1024 * 1024, 1} },
1780 .block_erase = spi_block_erase_60,
1781 }, {
1782 .eraseblocks = { {4 * 1024 * 1024, 1} },
1783 .block_erase = spi_block_erase_c7,
1784 }
1785 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001786 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001787 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001788 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001789 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001790 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001791 },
1792
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001793 {
1794 .vendor = "Atmel",
Paul Menzelac427b22012-02-16 21:07:07 +00001795 .name = "AT25DF641(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001796 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001797 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001798 .model_id = ATMEL_AT25DF641,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001799 .total_size = 8192,
1800 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001801 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00001802 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001803 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001804 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001805 .block_erasers =
1806 {
1807 {
1808 .eraseblocks = { {4 * 1024, 2048} },
1809 .block_erase = spi_block_erase_20,
1810 }, {
1811 .eraseblocks = { {32 * 1024, 256} },
1812 .block_erase = spi_block_erase_52,
1813 }, {
1814 .eraseblocks = { {64 * 1024, 128} },
1815 .block_erase = spi_block_erase_d8,
1816 }, {
1817 .eraseblocks = { {8 * 1024 * 1024, 1} },
1818 .block_erase = spi_block_erase_60,
1819 }, {
1820 .eraseblocks = { {8 * 1024 * 1024, 1} },
1821 .block_erase = spi_block_erase_c7,
1822 }
1823 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001824 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001825 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001826 .write = spi_chip_write_256,
1827 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001828 .voltage = {2700, 3600},
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001829 },
1830
1831 {
1832 .vendor = "Atmel",
Stefan Taunerc9d8b272014-06-01 13:22:35 +00001833 .name = "AT25DL081",
1834 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +10001835 .manufacture_id = ATMEL_ID,
Stefan Taunerc9d8b272014-06-01 13:22:35 +00001836 .model_id = ATMEL_AT25DF081,
1837 .total_size = 1024,
1838 .page_size = 256,
1839 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1840 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1841 .tested = TEST_UNTESTED,
1842 .probe = probe_spi_rdid,
1843 .probe_timing = TIMING_ZERO,
1844 .block_erasers =
1845 {
1846 {
1847 .eraseblocks = { {4 * 1024, 256} },
1848 .block_erase = spi_block_erase_20,
1849 }, {
1850 .eraseblocks = { {32 * 1024, 32} },
1851 .block_erase = spi_block_erase_52,
1852 }, {
1853 .eraseblocks = { {64 * 1024, 16} },
1854 .block_erase = spi_block_erase_d8,
1855 }, {
1856 .eraseblocks = { {1 * 1024 * 1024, 1} },
1857 .block_erase = spi_block_erase_60,
1858 }, {
1859 .eraseblocks = { {1 * 1024 * 1024, 1} },
1860 .block_erase = spi_block_erase_c7,
1861 }
1862 },
1863 .printlock = spi_prettyprint_status_register_at25df_sec,
1864 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
1865 .write = spi_chip_write_256, /* Dual I/O (0xA2) supported */
1866 .read = spi_chip_read, /* Fast read (0x0B), dual I/O (0x3B) supported */
1867 .voltage = {1650, 1950},
1868 },
1869
1870 {
1871 .vendor = "Atmel",
1872 .name = "AT25DL161",
1873 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +10001874 .manufacture_id = ATMEL_ID,
Stefan Taunerc9d8b272014-06-01 13:22:35 +00001875 .model_id = ATMEL_AT25DL161,
1876 .total_size = 2048,
1877 .page_size = 256,
1878 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1879 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1880 .tested = TEST_UNTESTED,
1881 .probe = probe_spi_rdid,
1882 .probe_timing = TIMING_ZERO,
1883 .block_erasers =
1884 {
1885 {
1886 .eraseblocks = { {4 * 1024, 512} },
1887 .block_erase = spi_block_erase_20,
1888 }, {
1889 .eraseblocks = { {32 * 1024, 64} },
1890 .block_erase = spi_block_erase_52,
1891 }, {
1892 .eraseblocks = { {64 * 1024, 32} },
1893 .block_erase = spi_block_erase_d8,
1894 }, {
1895 .eraseblocks = { {2 * 1024 * 1024, 1} },
1896 .block_erase = spi_block_erase_60,
1897 }, {
1898 .eraseblocks = { {2 * 1024 * 1024, 1} },
1899 .block_erase = spi_block_erase_c7,
1900 }
1901 },
1902 .printlock = spi_prettyprint_status_register_at25df_sec,
1903 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
1904 .write = spi_chip_write_256, /* Dual I/O (0xA2) supported */
1905 .read = spi_chip_read, /* Fast read (0x0B), dual I/O (0x3B) supported */
1906 .voltage = {1650, 1950},
1907 },
1908
1909 {
1910 .vendor = "Atmel",
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001911 .name = "AT25DQ161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001912 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001913 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001914 .model_id = ATMEL_AT25DQ161,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001915 .total_size = 2048,
1916 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001917 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1918 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001919 .tested = TEST_UNTESTED,
1920 .probe = probe_spi_rdid,
1921 .probe_timing = TIMING_ZERO,
1922 .block_erasers =
1923 {
1924 {
1925 .eraseblocks = { {4 * 1024, 512} },
1926 .block_erase = spi_block_erase_20,
1927 }, {
1928 .eraseblocks = { {32 * 1024, 64} },
1929 .block_erase = spi_block_erase_52,
1930 }, {
1931 .eraseblocks = { {64 * 1024, 32} },
1932 .block_erase = spi_block_erase_d8,
1933 }, {
1934 .eraseblocks = { {2 * 1024 * 1024, 1} },
1935 .block_erase = spi_block_erase_60,
1936 }, {
1937 .eraseblocks = { {2 * 1024 * 1024, 1} },
1938 .block_erase = spi_block_erase_c7,
1939 }
1940 },
1941 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001942 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001943 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001944 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001945 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001946 },
1947
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001948 {
1949 .vendor = "Atmel",
Alan Green1f9cc7d2019-07-01 11:10:45 +10001950 /* The A suffix indicates 33MHz instead of 20MHz clock rate.
1951 * All other properties seem to be the same.*/
1952 .name = "AT25F1024(A)",
1953 .bustype = BUS_SPI,
1954 .manufacture_id = ATMEL_ID,
1955 .model_id = ATMEL_AT25F1024,
1956 .total_size = 128,
1957 .page_size = 256,
1958 .feature_bits = FEATURE_WRSR_WREN,
1959 .tested = TEST_OK_PREW,
1960 .probe = probe_spi_at25f,
1961 .probe_timing = TIMING_ZERO,
1962 .block_erasers =
1963 {
1964 {
1965 .eraseblocks = { {32 * 1024, 4} },
1966 .block_erase = spi_block_erase_52,
1967 }, {
1968 .eraseblocks = { {128 * 1024, 1} },
1969 .block_erase = spi_block_erase_62,
1970 }
1971 },
1972 .printlock = spi_prettyprint_status_register_at25f,
1973 .unlock = spi_disable_blockprotect_at25f,
1974 .write = spi_chip_write_256,
1975 .read = spi_chip_read,
1976 .voltage = {2700, 3600},
1977 },
1978
1979 {
1980 .vendor = "Atmel",
1981 .name = "AT25F2048",
1982 .bustype = BUS_SPI,
1983 .manufacture_id = ATMEL_ID,
1984 .model_id = ATMEL_AT25F2048,
1985 .total_size = 256,
1986 .page_size = 256,
1987 .feature_bits = FEATURE_WRSR_WREN,
1988 .tested = TEST_UNTESTED,
1989 .probe = probe_spi_at25f,
1990 .probe_timing = TIMING_ZERO,
1991 .block_erasers =
1992 {
1993 {
1994 .eraseblocks = { {64 * 1024, 4} },
1995 .block_erase = spi_block_erase_52,
1996 }, {
1997 .eraseblocks = { {256 * 1024, 1} },
1998 .block_erase = spi_block_erase_62,
1999 }
2000 },
2001 .printlock = spi_prettyprint_status_register_at25f,
2002 .unlock = spi_disable_blockprotect_at25f,
2003 .write = spi_chip_write_256,
2004 .read = spi_chip_read,
2005 .voltage = {2700, 3600},
2006 },
2007
2008 {
2009 .vendor = "Atmel",
2010 .name = "AT25F4096",
2011 .bustype = BUS_SPI,
2012 .manufacture_id = ATMEL_ID,
2013 .model_id = ATMEL_AT25F4096,
2014 .total_size = 512,
2015 .page_size = 256,
2016 .feature_bits = FEATURE_WRSR_WREN,
2017 .tested = TEST_OK_PREW,
2018 .probe = probe_spi_at25f,
2019 .probe_timing = TIMING_ZERO,
2020 .block_erasers =
2021 {
2022 {
2023 .eraseblocks = { {64 * 1024, 8} },
2024 .block_erase = spi_block_erase_52,
2025 }, {
2026 .eraseblocks = { {512 * 1024, 1} },
2027 .block_erase = spi_block_erase_62,
2028 }
2029 },
2030 .printlock = spi_prettyprint_status_register_at25f4096,
2031 /* "Bits 5-6 are 0s when device is not in an internal write cycle." Better leave them alone: */
2032 .unlock = spi_disable_blockprotect_bp2_srwd,
2033 .write = spi_chip_write_256,
2034 .read = spi_chip_read,
2035 .voltage = {2700, 3600},
2036 },
2037
2038 {
2039 .vendor = "Atmel",
Stefan Tauner57794ac2012-12-29 15:04:20 +00002040 .name = "AT25F512",
2041 .bustype = BUS_SPI,
2042 .manufacture_id = ATMEL_ID,
2043 .model_id = ATMEL_AT25F512,
2044 .total_size = 64,
2045 .page_size = 256,
2046 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00002047 .tested = TEST_OK_PREW,
Stefan Tauner57794ac2012-12-29 15:04:20 +00002048 .probe = probe_spi_at25f,
2049 .probe_timing = TIMING_ZERO,
2050 .block_erasers =
2051 {
2052 {
2053 .eraseblocks = { {32 * 1024, 2} },
2054 .block_erase = spi_block_erase_52,
2055 }, {
2056 .eraseblocks = { {64 * 1024, 1} },
2057 .block_erase = spi_block_erase_62,
2058 }
2059 },
2060 .printlock = spi_prettyprint_status_register_at25f,
2061 .unlock = spi_disable_blockprotect_at25f,
2062 .write = spi_chip_write_256,
2063 .read = spi_chip_read,
2064 .voltage = {2700, 3600},
2065 },
2066
2067 {
2068 .vendor = "Atmel",
2069 .name = "AT25F512A",
2070 .bustype = BUS_SPI,
2071 .manufacture_id = ATMEL_ID,
2072 .model_id = ATMEL_AT25F512A,
2073 .total_size = 64,
2074 .page_size = 128,
2075 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00002076 .tested = TEST_OK_PREW,
Stefan Tauner57794ac2012-12-29 15:04:20 +00002077 .probe = probe_spi_at25f,
2078 .probe_timing = TIMING_ZERO,
2079 .block_erasers =
2080 {
2081 {
2082 .eraseblocks = { {32 * 1024, 2} },
2083 .block_erase = spi_block_erase_52,
2084 }, {
2085 .eraseblocks = { {64 * 1024, 1} },
2086 .block_erase = spi_block_erase_62,
2087 }
2088 },
2089 .printlock = spi_prettyprint_status_register_at25f512a,
2090 /* FIXME: It is not correct to use this one, because the BP1 bit is N/A. */
2091 .unlock = spi_disable_blockprotect_at25f512a,
2092 .write = spi_chip_write_256,
2093 .read = spi_chip_read,
2094 .voltage = {2700, 3600},
2095 },
2096
2097 {
2098 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002099 .name = "AT25F512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002100 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002101 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002102 .model_id = ATMEL_AT25F512B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002103 .total_size = 64,
2104 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00002105 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2106 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002107 .tested = TEST_UNTESTED,
2108 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002109 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002110 .block_erasers =
2111 {
2112 {
2113 .eraseblocks = { {4 * 1024, 16} },
2114 .block_erase = spi_block_erase_20,
2115 }, {
2116 .eraseblocks = { {32 * 1024, 2} },
2117 .block_erase = spi_block_erase_52,
2118 }, {
2119 .eraseblocks = { {32 * 1024, 2} },
2120 .block_erase = spi_block_erase_d8,
2121 }, {
2122 .eraseblocks = { {64 * 1024, 1} },
2123 .block_erase = spi_block_erase_60,
2124 }, {
2125 .eraseblocks = { {64 * 1024, 1} },
2126 .block_erase = spi_block_erase_c7,
Stefan Tauner3c0fcd02012-09-21 12:46:56 +00002127 }, {
2128 .eraseblocks = { {64 * 1024, 1} },
2129 .block_erase = spi_block_erase_62,
Sean Nelson89187292009-12-23 12:02:55 +00002130 }
2131 },
Stefan Tauner7bf4ed92012-08-26 21:04:27 +00002132 .printlock = spi_prettyprint_status_register_at25f512b,
2133 .unlock = spi_disable_blockprotect_at25f512b,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002134 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002135 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002136 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002137 },
2138
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002139 {
2140 .vendor = "Atmel",
2141 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002142 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002143 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002144 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002145 .total_size = 128,
2146 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002147 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00002148 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002149 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002150 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002151 .block_erasers =
2152 {
2153 {
2154 .eraseblocks = { {4 * 1024, 32} },
2155 .block_erase = spi_block_erase_20,
2156 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002157 .eraseblocks = { {4 * 1024, 32} },
2158 .block_erase = spi_block_erase_d7,
2159 }, {
Sean Nelson89187292009-12-23 12:02:55 +00002160 .eraseblocks = { {32 * 1024, 4} },
2161 .block_erase = spi_block_erase_52,
2162 }, {
2163 .eraseblocks = { {32 * 1024, 4} },
2164 .block_erase = spi_block_erase_d8,
2165 }, {
2166 .eraseblocks = { {128 * 1024, 1} },
2167 .block_erase = spi_block_erase_60,
2168 }, {
2169 .eraseblocks = { {128 * 1024, 1} },
2170 .block_erase = spi_block_erase_c7,
2171 }
2172 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002173 .printlock = spi_prettyprint_status_register_at25fs010,
2174 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002175 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002176 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002177 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002178 },
2179
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002180 {
2181 .vendor = "Atmel",
2182 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002183 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002184 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002185 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002186 .total_size = 512,
2187 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002188 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002189 .tested = TEST_UNTESTED,
2190 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002191 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002192 .block_erasers =
2193 {
2194 {
2195 .eraseblocks = { {4 * 1024, 128} },
2196 .block_erase = spi_block_erase_20,
2197 }, {
2198 .eraseblocks = { {64 * 1024, 8} },
2199 .block_erase = spi_block_erase_52,
2200 }, {
2201 .eraseblocks = { {64 * 1024, 8} },
2202 .block_erase = spi_block_erase_d8,
2203 }, {
2204 .eraseblocks = { {512 * 1024, 1} },
2205 .block_erase = spi_block_erase_60,
2206 }, {
2207 .eraseblocks = { {512 * 1024, 1} },
2208 .block_erase = spi_block_erase_c7,
2209 }
2210 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002211 .printlock = spi_prettyprint_status_register_at25fs040,
2212 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002213 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002214 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002215 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002216 },
2217
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002218 {
2219 .vendor = "Atmel",
jvma3ab6c62018-03-08 15:43:20 +01002220 .name = "AT25SF041",
2221 .bustype = BUS_SPI,
2222 .manufacture_id = ATMEL_ID,
2223 .model_id = ATMEL_AT25SF041,
2224 .total_size = 512,
2225 .page_size = 256,
2226 .feature_bits = FEATURE_WRSR_WREN,
2227 .tested = TEST_OK_PREW,
2228 .probe = probe_spi_rdid,
2229 .probe_timing = TIMING_ZERO,
2230 .block_erasers =
2231 {
2232 {
2233 .eraseblocks = { {4 * 1024, 128} },
2234 .block_erase = spi_block_erase_20,
2235 }, {
2236 .eraseblocks = { {32 * 1024, 16} },
2237 .block_erase = spi_block_erase_52,
2238 }, {
2239 .eraseblocks = { {64 * 1024, 8} },
2240 .block_erase = spi_block_erase_d8,
2241 }, {
2242 .eraseblocks = { {512 * 1024, 1} },
2243 .block_erase = spi_block_erase_60,
2244 }, {
2245 .eraseblocks = { {512 * 1024, 1} },
2246 .block_erase = spi_block_erase_c7,
2247 }
2248 },
2249 .printlock = spi_prettyprint_status_register_plain,
2250 .unlock = spi_disable_blockprotect,
2251 .write = spi_chip_write_256,
2252 .read = spi_chip_read,
2253 .voltage = {2500, 3600},
2254 },
2255
2256 {
2257 .vendor = "Atmel",
Evan Jensen291c1012018-05-17 14:30:19 -07002258 .name = "AT25SF081",
2259 .bustype = BUS_SPI,
2260 .manufacture_id = ATMEL_ID,
2261 .model_id = ATMEL_AT25SF081,
2262 .total_size = 1024,
2263 .page_size = 256,
2264 .feature_bits = FEATURE_WRSR_WREN,
2265 .tested = TEST_OK_PREW,
2266 .probe = probe_spi_rdid,
2267 .probe_timing = TIMING_ZERO,
2268 .block_erasers =
2269 {
2270 {
2271 .eraseblocks = { {4 * 1024, 256} },
2272 .block_erase = spi_block_erase_20,
2273 }, {
2274 .eraseblocks = { {32 * 1024, 32} },
2275 .block_erase = spi_block_erase_52,
2276 }, {
2277 .eraseblocks = { {64 * 1024, 16} },
2278 .block_erase = spi_block_erase_d8,
2279 }, {
2280 .eraseblocks = { {1024 * 1024, 1} },
2281 .block_erase = spi_block_erase_60,
2282 }, {
2283 .eraseblocks = { {1024 * 1024, 1} },
2284 .block_erase = spi_block_erase_c7,
2285 }
2286 },
2287 .printlock = spi_prettyprint_status_register_plain,
2288 .unlock = spi_disable_blockprotect,
2289 .write = spi_chip_write_256,
2290 .read = spi_chip_read,
2291 .voltage = {2300, 3600},
2292 },
2293
2294 {
2295 .vendor = "Atmel",
Stanislav Sedovf5775442018-03-07 14:16:51 -08002296 .name = "AT25SF161",
2297 .bustype = BUS_SPI,
2298 .manufacture_id = ATMEL_ID,
2299 .model_id = ATMEL_AT25SF161,
2300 .total_size = 2048,
2301 .page_size = 256,
2302 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
2303 .tested = TEST_OK_PREW,
2304 .probe = probe_spi_rdid,
2305 .probe_timing = TIMING_ZERO,
2306 .block_erasers =
2307 {
2308 {
2309 .eraseblocks = { {4 * 1024, 512} },
2310 .block_erase = spi_block_erase_20,
2311 }, {
2312 .eraseblocks = { {32 * 1024, 64} },
2313 .block_erase = spi_block_erase_52,
2314 }, {
2315 .eraseblocks = { {64 * 1024, 32} },
2316 .block_erase = spi_block_erase_d8,
2317 }, {
2318 .eraseblocks = { {2048 * 1024, 1} },
2319 .block_erase = spi_block_erase_60,
2320 }, {
2321 .eraseblocks = { {2048 * 1024, 1} },
2322 .block_erase = spi_block_erase_c7,
2323 }
2324 },
2325 .printlock = spi_prettyprint_status_register_plain,
2326 .unlock = spi_disable_blockprotect,
2327 .write = spi_chip_write_256,
2328 .read = spi_chip_read,
2329 .voltage = {2500, 3600},
2330 },
2331
2332 {
Alan Green57938f82019-06-27 15:06:43 +10002333 .vendor = "Atmel",
Hal Martin49e23d22018-05-27 14:18:43 +02002334 .name = "AT25SL128A",
2335 .bustype = BUS_SPI,
2336 .manufacture_id = ATMEL_ID,
2337 .model_id = ATMEL_AT25SL128A,
2338 .total_size = 16384,
2339 .page_size = 256,
2340 /* supports SFDP */
2341 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
2342 .tested = TEST_OK_PREW,
2343 .probe = probe_spi_rdid,
2344 .probe_timing = TIMING_ZERO,
2345 .block_erasers =
2346 {
2347 {
2348 .eraseblocks = { {4 * 1024, 4096} },
2349 .block_erase = spi_block_erase_20,
2350 }, {
2351 .eraseblocks = { {32 * 1024, 512} },
2352 .block_erase = spi_block_erase_52,
2353 }, {
2354 .eraseblocks = { {64 * 1024, 256} },
2355 .block_erase = spi_block_erase_d8,
2356 }, {
2357 .eraseblocks = { {16 * 1024 * 1024, 1} },
2358 .block_erase = spi_block_erase_60,
2359 }, {
2360 .eraseblocks = { {16 * 1024 * 1024, 1} },
2361 .block_erase = spi_block_erase_c7,
2362 }
2363 },
2364 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
2365 .unlock = spi_disable_blockprotect,
2366 .write = spi_chip_write_256,
2367 .read = spi_chip_read,
2368 .voltage = {1700, 2000},
2369 },
2370
2371 {
Stanislav Sedovf5775442018-03-07 14:16:51 -08002372 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002373 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002374 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002375 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002376 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002377 .total_size = 512,
2378 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002379 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner94b39b42012-10-27 00:06:02 +00002380 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002381 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002382 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002383 .block_erasers =
2384 {
2385 {
Stefan Tauner94b39b42012-10-27 00:06:02 +00002386 .eraseblocks = { {256, 2048} },
2387 .block_erase = spi_block_erase_81,
2388 }, {
2389 .eraseblocks = { {2 * 1024, 256} },
2390 .block_erase = spi_block_erase_50,
2391 }, {
Sean Nelson89187292009-12-23 12:02:55 +00002392 .eraseblocks = { {4 * 1024, 128} },
2393 .block_erase = spi_block_erase_20,
2394 }
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002395 },
Stefan Taunercecb2c52013-06-20 22:55:41 +00002396 .printlock = spi_prettyprint_status_register_plain,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002397 /* Supports also an incompatible page write (of exactly 256 B) and an auto-erasing write. */
Stefan Tauner94b39b42012-10-27 00:06:02 +00002398 .write = spi_chip_write_1,
2399 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002400 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00002401 },
2402
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002403 {
2404 .vendor = "Atmel",
2405 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002406 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002407 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002408 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002409 .total_size = 1024,
2410 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00002411 .feature_bits = FEATURE_WRSR_WREN,
2412 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002413 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002414 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002415 .block_erasers =
2416 {
2417 {
2418 .eraseblocks = { {4 * 1024, 256} },
2419 .block_erase = spi_block_erase_20,
2420 }, {
2421 .eraseblocks = { {32 * 1024, 32} },
2422 .block_erase = spi_block_erase_52,
2423 }, {
2424 .eraseblocks = { {64 * 1024, 16} },
2425 .block_erase = spi_block_erase_d8,
2426 }, {
2427 .eraseblocks = { {1024 * 1024, 1} },
2428 .block_erase = spi_block_erase_60,
2429 }, {
2430 .eraseblocks = { {1024 * 1024, 1} },
2431 .block_erase = spi_block_erase_c7,
2432 }
2433 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002434 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002435 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002436 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002437 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002438 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002439 },
2440
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002441 {
2442 .vendor = "Atmel",
2443 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002444 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002445 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002446 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002447 .total_size = 2048,
2448 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002449 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00002450 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002451 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002452 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002453 .block_erasers =
2454 {
2455 {
2456 .eraseblocks = { {4 * 1024, 512} },
2457 .block_erase = spi_block_erase_20,
2458 }, {
2459 .eraseblocks = { {32 * 1024, 64} },
2460 .block_erase = spi_block_erase_52,
2461 }, {
2462 .eraseblocks = { {64 * 1024, 32} },
2463 .block_erase = spi_block_erase_d8,
2464 }, {
2465 .eraseblocks = { {2 * 1024 * 1024, 1} },
2466 .block_erase = spi_block_erase_60,
2467 }, {
2468 .eraseblocks = { {2 * 1024 * 1024, 1} },
2469 .block_erase = spi_block_erase_c7,
2470 }
2471 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00002472 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002473 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002474 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002475 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002476 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002477 },
2478
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002479 {
2480 .vendor = "Atmel",
2481 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002482 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002483 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002484 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002485 .total_size = 2048,
2486 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002487 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002488 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002489 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002490 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002491 .block_erasers =
2492 {
2493 {
2494 .eraseblocks = { {4 * 1024, 512} },
2495 .block_erase = spi_block_erase_20,
2496 }, {
2497 .eraseblocks = { {32 * 1024, 64} },
2498 .block_erase = spi_block_erase_52,
2499 }, {
2500 .eraseblocks = { {64 * 1024, 32} },
2501 .block_erase = spi_block_erase_d8,
2502 }, {
2503 .eraseblocks = { {2 * 1024 * 1024, 1} },
2504 .block_erase = spi_block_erase_60,
2505 }, {
2506 .eraseblocks = { {2 * 1024 * 1024, 1} },
2507 .block_erase = spi_block_erase_c7,
2508 }
2509 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002510 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002511 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002512 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002513 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002514 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002515 },
2516
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002517 {
2518 .vendor = "Atmel",
2519 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002520 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002521 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002522 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002523 .total_size = 512,
2524 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002525 .feature_bits = FEATURE_WRSR_WREN,
Alan Green908adf42019-07-03 15:34:06 +10002526 .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD},
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002527 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002528 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002529 .block_erasers =
2530 {
2531 {
2532 .eraseblocks = { {4 * 1024, 128} },
2533 .block_erase = spi_block_erase_20,
2534 }, {
2535 .eraseblocks = { {32 * 1024, 16} },
2536 .block_erase = spi_block_erase_52,
2537 }, {
2538 .eraseblocks = { {64 * 1024, 8} },
2539 .block_erase = spi_block_erase_d8,
2540 }, {
2541 .eraseblocks = { {512 * 1024, 1} },
2542 .block_erase = spi_block_erase_60,
2543 }, {
2544 .eraseblocks = { {512 * 1024, 1} },
2545 .block_erase = spi_block_erase_c7,
2546 }
2547 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002548 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Alan Greencbb85c02019-06-25 13:42:34 +10002549 .write = NULL, /* Incompatible Page write */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002550 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002551 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002552 },
2553
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002554 {
2555 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002556 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002557 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002558 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002559 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002560 .total_size = 128,
2561 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002562 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002563 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002564 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002565 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002566 .block_erasers =
2567 {
2568 {
2569 .eraseblocks = { {128 * 1024, 1} },
2570 .block_erase = erase_chip_block_jedec,
2571 }
2572 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002573 .write = write_jedec, /* FIXME */
2574 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002575 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002576 },
2577
2578 {
2579 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002580 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002581 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002582 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002583 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002584 .total_size = 256,
2585 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002586 .feature_bits = FEATURE_LONG_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00002587 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002588 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002589 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002590 .block_erasers =
2591 {
2592 {
2593 .eraseblocks = { {256 * 1024, 1} },
2594 .block_erase = erase_chip_block_jedec,
2595 }
2596 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002597 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002598 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002599 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002600 },
2601
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002602 {
2603 .vendor = "Atmel",
2604 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002605 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002606 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002607 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002608 .total_size = 512,
2609 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002610 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002611 .tested = TEST_UNTESTED,
2612 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002613 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002614 .block_erasers =
2615 {
2616 {
2617 .eraseblocks = { {512 * 1024, 1} },
2618 .block_erase = erase_chip_block_jedec,
2619 }
2620 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002621 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002622 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002623 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002624 },
2625
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002626 {
2627 .vendor = "Atmel",
Alan Green1f9cc7d2019-07-01 11:10:45 +10002628 .name = "AT29C512",
2629 .bustype = BUS_PARALLEL,
2630 .manufacture_id = ATMEL_ID,
2631 .model_id = ATMEL_AT29C512,
2632 .total_size = 64,
2633 .page_size = 128,
2634 .feature_bits = FEATURE_LONG_RESET,
2635 .tested = TEST_OK_PREW,
2636 .probe = probe_jedec,
2637 .probe_timing = 10000, /* 10mS, Enter=Exec */
2638 .block_erasers =
2639 {
2640 {
2641 .eraseblocks = { {64 * 1024, 1} },
2642 .block_erase = erase_chip_block_jedec,
2643 }
2644 },
2645 .write = write_jedec,
2646 .read = read_memmapped,
2647 .voltage = {4500, 5500},
2648 },
2649
2650 {
2651 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002652 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002653 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002654 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002655 .model_id = ATMEL_AT45CS1282,
Alan Greencbb85c02019-06-25 13:42:34 +10002656 .total_size = 16896, /* No power of two sizes */
2657 .page_size = 1056, /* No power of two sizes */
Steven Zakulec3603a282012-05-02 20:07:57 +00002658 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +00002659 /* OTP: 128B total, 64B pre-programmed; read 0x77 (4 dummy bytes); write 0x9A (via buffer) */
2660 .feature_bits = FEATURE_OTP,
2661 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002662 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002663 .probe_timing = TIMING_ZERO,
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +00002664 .block_erasers =
2665 {
2666 {
2667 .eraseblocks = {
2668 {8 * 1056, 1}, /* sector 0a: opcode 50h */
2669 {248 * 1056, 1}, /* sector 0b: opcode 7Ch */
2670 {256 * 1056, 63}, /* sectors 1 - 63: opcode 7Ch */
2671 },
2672 .block_erase = spi_erase_at45cs_sector,
2673 }
2674 },
2675 .printlock = spi_prettyprint_status_register_plain,
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +00002676 .write = spi_write_at45db,
2677 .read = spi_read_at45db,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002678 .voltage = {2700, 3600},
Alan Greenc1863ca2019-06-27 15:08:03 +10002679 .gran = write_gran_1056bytes,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002680 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002681
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002682 {
2683 .vendor = "Atmel",
2684 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002685 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002686 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002687 .model_id = ATMEL_AT45DB011D,
Alan Greencbb85c02019-06-25 13:42:34 +10002688 .total_size = 128, /* or 132, determined from status register */
2689 .page_size = 256, /* or 264, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002690 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002691 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2692 .feature_bits = FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +00002693 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002694 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002695 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002696 .block_erasers =
2697 {
2698 {
2699 .eraseblocks = { {256, 512} },
2700 .block_erase = spi_erase_at45db_page,
2701 }, {
2702 .eraseblocks = { {8 * 256, 512/8} },
2703 .block_erase = spi_erase_at45db_block,
2704 }, {
2705 .eraseblocks = {
2706 {8 * 256, 1},
2707 {120 * 256, 1},
2708 {128 * 256, 3},
2709 },
2710 .block_erase = spi_erase_at45db_sector
2711 }, {
2712 .eraseblocks = { {128 * 1024, 1} },
2713 .block_erase = spi_erase_at45db_chip,
2714 }
2715 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002716 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002717 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002718 /* granularity will be set by the probing function. */
2719 .write = spi_write_at45db,
2720 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002721 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002722 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002723
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002724 {
2725 .vendor = "Atmel",
2726 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002727 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002728 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002729 .model_id = ATMEL_AT45DB021D,
Alan Greencbb85c02019-06-25 13:42:34 +10002730 .total_size = 256, /* or 264, determined from status register */
2731 .page_size = 256, /* or 264, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002732 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002733 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2734 .feature_bits = FEATURE_OTP,
Stefan Tauner6697f712014-08-06 15:09:15 +00002735 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002736 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002737 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002738 .block_erasers =
2739 {
2740 {
2741 .eraseblocks = { {256, 1024} },
2742 .block_erase = spi_erase_at45db_page,
2743 }, {
2744 .eraseblocks = { {8 * 256, 1024/8} },
2745 .block_erase = spi_erase_at45db_block,
2746 }, {
2747 .eraseblocks = {
2748 {8 * 256, 1},
2749 {120 * 256, 1},
2750 {128 * 256, 7},
2751 },
2752 .block_erase = spi_erase_at45db_sector
2753 }, {
2754 .eraseblocks = { {256 * 1024, 1} },
2755 .block_erase = spi_erase_at45db_chip,
2756 }
2757 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002758 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002759 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002760 /* granularity will be set by the probing function. */
2761 .write = spi_write_at45db,
2762 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002763 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002764 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002765
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002766 {
2767 .vendor = "Atmel",
2768 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002769 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002770 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002771 .model_id = ATMEL_AT45DB041D,
Alan Greencbb85c02019-06-25 13:42:34 +10002772 .total_size = 512, /* or 528, determined from status register */
2773 .page_size = 256, /* or 264, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002774 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002775 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2776 .feature_bits = FEATURE_OTP,
2777 .tested = TEST_OK_PREW,
2778 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002779 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002780 .block_erasers =
2781 {
2782 {
2783 .eraseblocks = { {256, 2048} },
2784 .block_erase = spi_erase_at45db_page,
2785 }, {
2786 .eraseblocks = { {8 * 256, 2048/8} },
2787 .block_erase = spi_erase_at45db_block,
2788 }, {
2789 .eraseblocks = {
2790 {8 * 256, 1},
2791 {248 * 256, 1},
2792 {256 * 256, 7},
2793 },
2794 .block_erase = spi_erase_at45db_sector
2795 }, {
2796 .eraseblocks = { {512 * 1024, 1} },
2797 .block_erase = spi_erase_at45db_chip,
2798 }
2799 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002800 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002801 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002802 /* granularity will be set by the probing function. */
2803 .write = spi_write_at45db,
2804 .read = spi_read_at45db, /* Fast read (0x0B) supported */
2805 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002806 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002807
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002808 {
2809 .vendor = "Atmel",
2810 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002811 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002812 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002813 .model_id = ATMEL_AT45DB081D,
Alan Greencbb85c02019-06-25 13:42:34 +10002814 .total_size = 1024, /* or 1056, determined from status register */
2815 .page_size = 256, /* or 264, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002816 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002817 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2818 .feature_bits = FEATURE_OTP,
Angel Pons250aeba2018-09-30 20:28:22 +02002819 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002820 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002821 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002822 .block_erasers =
2823 {
2824 {
2825 .eraseblocks = { {256, 4096} },
2826 .block_erase = spi_erase_at45db_page,
2827 }, {
2828 .eraseblocks = { {8 * 256, 4096/8} },
2829 .block_erase = spi_erase_at45db_block,
2830 }, {
2831 .eraseblocks = {
2832 {8 * 256, 1},
2833 {248 * 256, 1},
2834 {256 * 256, 15},
2835 },
2836 .block_erase = spi_erase_at45db_sector
2837 }, {
2838 .eraseblocks = { {1024 * 1024, 1} },
2839 .block_erase = spi_erase_at45db_chip,
2840 }
2841 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002842 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002843 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002844 /* granularity will be set by the probing function. */
2845 .write = spi_write_at45db,
2846 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002847 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002848 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002849
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002850 {
2851 .vendor = "Atmel",
2852 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002853 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002854 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002855 .model_id = ATMEL_AT45DB161D,
Alan Greencbb85c02019-06-25 13:42:34 +10002856 .total_size = 2048, /* or 2112, determined from status register */
2857 .page_size = 512, /* or 528, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002858 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002859 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2860 .feature_bits = FEATURE_OTP,
2861 .tested = TEST_OK_PREW,
2862 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002863 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002864 .block_erasers =
2865 {
2866 {
2867 .eraseblocks = { {512, 4096} },
2868 .block_erase = spi_erase_at45db_page,
2869 }, {
2870 .eraseblocks = { {8 * 512, 4096/8} },
2871 .block_erase = spi_erase_at45db_block,
2872 }, {
2873 .eraseblocks = {
2874 {8 * 512, 1},
2875 {248 * 512, 1},
2876 {256 * 512, 15},
2877 },
2878 .block_erase = spi_erase_at45db_sector
2879 }, {
2880 .eraseblocks = { {2048 * 1024, 1} },
2881 .block_erase = spi_erase_at45db_chip,
2882 }
2883 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002884 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002885 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002886 /* granularity will be set by the probing function. */
2887 .write = spi_write_at45db,
2888 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002889 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002890 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002891
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002892 {
2893 .vendor = "Atmel",
2894 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002895 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002896 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002897 .model_id = ATMEL_AT45DB321C,
Alan Greencbb85c02019-06-25 13:42:34 +10002898 .total_size = 4224, /* No power of two sizes */
2899 .page_size = 528, /* No power of two sizes */
Steven Zakulec3603a282012-05-02 20:07:57 +00002900 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002901 /* OTP: 128B total, 64B pre-programmed; read 0x77 (4 dummy bytes); write 0x9A (via buffer) */
2902 .feature_bits = FEATURE_OTP,
2903 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002904 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002905 .probe_timing = TIMING_ZERO,
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002906 .block_erasers =
2907 {
2908 {
2909 .eraseblocks = { {528, 8192} },
2910 .block_erase = spi_erase_at45db_page,
2911 }, {
2912 .eraseblocks = { {8 * 528, 8192/8} },
2913 .block_erase = spi_erase_at45db_block,
2914 }, /* Although the datasheets describes sectors (which can be write protected)
2915 * there seems to be no erase functions for them.
Stefan Tauner23e10b82016-01-23 16:16:49 +00002916 {
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002917 .eraseblocks = {
2918 {8 * 528, 1},
2919 {120 * 528, 1},
2920 {128 * 528, 63},
2921 },
2922 .block_erase = spi_erase_at45db_sector
2923 }, */ {
2924 .eraseblocks = { {4224 * 1024, 1} },
2925 .block_erase = spi_erase_at45db_chip,
2926 }
2927 },
2928 .printlock = spi_prettyprint_status_register_at45db, /* Bit 0 is undefined, no lockdown */
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002929 .write = spi_write_at45db,
2930 .read = spi_read_at45db_e8, /* 3 address and 4 dummy bytes */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002931 .voltage = {2700, 3600},
Alan Greenc1863ca2019-06-27 15:08:03 +10002932 .gran = write_gran_528bytes,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002933 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002934
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002935 {
2936 .vendor = "Atmel",
2937 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002938 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002939 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002940 .model_id = ATMEL_AT45DB321D,
Alan Greencbb85c02019-06-25 13:42:34 +10002941 .total_size = 4096, /* or 4224, determined from status register */
2942 .page_size = 512, /* or 528, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00002943 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002944 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Daniel Lenski65922a32012-02-15 23:40:23 +00002945 .feature_bits = FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00002946 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002947 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002948 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002949 .block_erasers =
2950 {
2951 {
2952 .eraseblocks = { {512, 8192} },
2953 .block_erase = spi_erase_at45db_page,
2954 }, {
2955 .eraseblocks = { {8 * 512, 8192/8} },
2956 .block_erase = spi_erase_at45db_block,
2957 }, {
2958 .eraseblocks = {
2959 {8 * 512, 1},
2960 {120 * 512, 1},
2961 {128 * 512, 63},
2962 },
2963 .block_erase = spi_erase_at45db_sector
2964 }, {
2965 .eraseblocks = { {4096 * 1024, 1} },
2966 .block_erase = spi_erase_at45db_chip,
2967 }
2968 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002969 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10002970 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002971 /* granularity will be set by the probing function. */
2972 .write = spi_write_at45db,
2973 .read = spi_read_at45db, /* Fast read (0x0B) supported */
2974 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
2975 },
2976
2977 {
2978 .vendor = "Atmel",
2979 .name = "AT45DB321E",
2980 .bustype = BUS_SPI,
2981 .manufacture_id = ATMEL_ID,
2982 .model_id = ATMEL_AT45DB321C,
Alan Greencbb85c02019-06-25 13:42:34 +10002983 .total_size = 4096, /* or 4224, determined from status register */
2984 .page_size = 512, /* or 528, determined from status register */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002985 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
2986 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2987 .feature_bits = FEATURE_OTP,
2988 .tested = TEST_UNTESTED,
2989 .probe = probe_spi_at45db,
2990 .probe_timing = TIMING_ZERO,
2991 .block_erasers =
2992 {
2993 {
2994 .eraseblocks = { {512, 8192} },
2995 .block_erase = spi_erase_at45db_page,
2996 }, {
2997 .eraseblocks = { {8 * 512, 8192/8} },
2998 .block_erase = spi_erase_at45db_block,
2999 }, {
3000 .eraseblocks = {
3001 {8 * 512, 1},
3002 {120 * 512, 1},
3003 {128 * 512, 63},
3004 },
3005 .block_erase = spi_erase_at45db_sector
3006 }, {
3007 .eraseblocks = { {4096 * 1024, 1} },
3008 .block_erase = spi_erase_at45db_chip,
3009 }
3010 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003011 .printlock = spi_prettyprint_status_register_at45db, /* has a 2nd status register */
Alan Greenc1863ca2019-06-27 15:08:03 +10003012 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003013 /* granularity will be set by the probing function. */
3014 .write = spi_write_at45db,
3015 .read = spi_read_at45db, /* Fast read (0x0B) supported */
3016 .voltage = {2500, 3600}, /* 2.3-3.6V & 2.5-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00003017 },
FENG yu ningff692fb2008-12-08 18:15:10 +00003018
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003019 {
3020 .vendor = "Atmel",
3021 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003022 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003023 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003024 .model_id = ATMEL_AT45DB642D,
Alan Greencbb85c02019-06-25 13:42:34 +10003025 .total_size = 8192, /* or 8448, determined from status register */
3026 .page_size = 1024, /* or 1056, determined from status register */
Steven Zakulec3603a282012-05-02 20:07:57 +00003027 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003028 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
3029 .feature_bits = FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +00003030 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003031 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003032 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003033 .block_erasers =
3034 {
3035 {
3036 .eraseblocks = { {1024, 8192} },
3037 .block_erase = spi_erase_at45db_page,
3038 }, {
3039 .eraseblocks = { {8 * 1024, 8192/8} },
3040 .block_erase = spi_erase_at45db_block,
3041 }, {
3042 .eraseblocks = {
3043 {8 * 1024, 1},
3044 {248 * 1024, 1},
3045 {256 * 1024, 31},
3046 },
3047 .block_erase = spi_erase_at45db_sector
3048 }, {
3049 .eraseblocks = { {8192 * 1024, 1} },
3050 .block_erase = spi_erase_at45db_chip,
3051 }
3052 },
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003053 .printlock = spi_prettyprint_status_register_at45db,
Alan Greenc1863ca2019-06-27 15:08:03 +10003054 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003055 /* granularity will be set by the probing function. */
3056 .write = spi_write_at45db,
3057 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003058 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00003059 },
FENG yu ningff692fb2008-12-08 18:15:10 +00003060
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003061 {
3062 .vendor = "Atmel",
Alan Green1f9cc7d2019-07-01 11:10:45 +10003063 .name = "AT49(H)F010",
3064 .bustype = BUS_PARALLEL,
3065 .manufacture_id = ATMEL_ID,
3066 .model_id = ATMEL_AT49F010,
3067 .total_size = 128,
3068 .page_size = 0, /* unused */
3069 .feature_bits = FEATURE_EITHER_RESET,
3070 .tested = TEST_OK_PREW,
3071 .probe = probe_jedec,
3072 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3073 .block_erasers =
3074 {
3075 {
3076 .eraseblocks = { {128 * 1024, 1} },
3077 .block_erase = erase_chip_block_jedec,
3078 }
3079 },
3080 .printlock = printlock_at49f,
3081 .write = write_jedec_1,
3082 .read = read_memmapped,
3083 .voltage = {4500, 5500},
3084 },
3085
3086 {
3087 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003088 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003089 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003090 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003091 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003092 .total_size = 64,
3093 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00003094 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00003095 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003096 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003097 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003098 .block_erasers =
3099 {
3100 {
3101 .eraseblocks = { {64 * 1024, 1} },
3102 .block_erase = erase_chip_block_jedec,
3103 }
3104 },
Sean Nelson35727f72010-01-28 23:55:12 +00003105 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003106 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003107 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003108 },
3109
3110 {
3111 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003112 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003113 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003114 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003115 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003116 .total_size = 256,
3117 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003118 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003119 .tested = TEST_UNTESTED,
3120 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003121 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003122 .block_erasers =
3123 {
3124 {
3125 .eraseblocks = {
3126 {16 * 1024, 1},
3127 {8 * 1024, 2},
3128 {96 * 1024, 1},
3129 {128 * 1024, 1},
3130 },
3131 .block_erase = erase_sector_jedec,
3132 }, {
3133 .eraseblocks = { {256 * 1024, 1} },
3134 .block_erase = erase_chip_block_jedec,
3135 }
3136 },
Sean Nelson35727f72010-01-28 23:55:12 +00003137 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003138 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003139 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003140 },
3141
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003142 {
3143 .vendor = "Atmel",
3144 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003145 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003146 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003147 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003148 .total_size = 256,
3149 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003150 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003151 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003152 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003153 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003154 .block_erasers =
3155 {
3156 {
3157 .eraseblocks = {
3158 {128 * 1024, 1},
3159 {96 * 1024, 1},
3160 {8 * 1024, 2},
3161 {16 * 1024, 1},
3162 },
3163 .block_erase = erase_sector_jedec,
3164 }, {
3165 .eraseblocks = { {256 * 1024, 1} },
3166 .block_erase = erase_chip_block_jedec,
3167 }
3168 },
Sean Nelson35727f72010-01-28 23:55:12 +00003169 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003170 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003171 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003172 },
3173
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00003174 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00003175 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00003176 .name = "AT49F020",
3177 .bustype = BUS_PARALLEL,
3178 .manufacture_id = ATMEL_ID,
3179 .model_id = ATMEL_AT49F020,
3180 .total_size = 256,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003181 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00003182 .feature_bits = FEATURE_EITHER_RESET,
3183 .tested = TEST_OK_PRE,
3184 .probe = probe_jedec,
3185 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3186 .block_erasers =
3187 {
3188 {
3189 .eraseblocks = { {256 * 1024, 1} },
3190 .block_erase = erase_chip_block_jedec,
3191 }
3192 /* Chip features an optional permanent write protection
3193 * of the first 8 kB. The erase function is the same as
3194 * above, but 00000H to 01FFFH will not be erased.
3195 * FIXME: add another eraser when partial erasers are
3196 * supported.
3197 */
3198 },
3199 .printlock = printlock_at49f,
3200 .write = write_jedec_1,
3201 .read = read_memmapped,
3202 .voltage = {4500, 5500},
3203 },
3204
3205 {
3206 .vendor = "Atmel",
3207 .name = "AT49F040",
3208 .bustype = BUS_PARALLEL,
3209 .manufacture_id = ATMEL_ID,
3210 .model_id = ATMEL_AT49F040,
3211 .total_size = 512,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003212 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00003213 .feature_bits = FEATURE_EITHER_RESET,
3214 .tested = TEST_UNTESTED,
3215 .probe = probe_jedec,
3216 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3217 .block_erasers =
3218 {
3219 {
3220 .eraseblocks = { {512 * 1024, 1} },
3221 .block_erase = erase_chip_block_jedec,
3222 }
3223 /* Chip features an optional permanent write protection
3224 * of the first 16 kB. The erase function is the same as
3225 * above, but 00000H to 03FFFH will not be erased.
3226 * FIXME: add another eraser when partial erasers are
3227 * supported.
3228 */
3229 },
3230 .printlock = printlock_at49f,
3231 .write = write_jedec_1,
3232 .read = read_memmapped,
3233 .voltage = {4500, 5500},
3234 },
3235
3236 {
3237 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003238 .name = "AT49F080",
3239 .bustype = BUS_PARALLEL,
3240 .manufacture_id = ATMEL_ID,
3241 .model_id = ATMEL_AT49F080,
3242 .total_size = 1024,
3243 .page_size = 0, /* unused */
3244 .feature_bits = FEATURE_EITHER_RESET,
3245 .tested = TEST_UNTESTED,
3246 .probe = probe_jedec,
3247 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3248 .block_erasers =
3249 {
3250 {
3251 .eraseblocks = { {1024 * 1024, 1} },
3252 .block_erase = erase_chip_block_jedec,
3253 }
3254 /* Chip features an optional permanent write protection
3255 * of the first 16 kB. The erase function is the same as
3256 * above, but 00000H to 03FFFH will not be erased.
3257 * FIXME: add another eraser when partial erasers are
3258 * supported.
3259 */
3260 },
3261 .printlock = printlock_at49f,
3262 .write = write_jedec_1,
3263 .read = read_memmapped,
3264 .voltage = {4500, 5500},
3265 },
3266
3267 {
3268 /* 'top' version of AT49F080. equal in all aspects but the boot block address */
3269 .vendor = "Atmel",
3270 .name = "AT49F080T",
3271 .bustype = BUS_PARALLEL,
3272 .manufacture_id = ATMEL_ID,
3273 .model_id = ATMEL_AT49F080T,
3274 .total_size = 1024,
3275 .page_size = 0, /* unused */
3276 .feature_bits = FEATURE_EITHER_RESET,
3277 .tested = TEST_UNTESTED,
3278 .probe = probe_jedec,
3279 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3280 .block_erasers =
3281 {
3282 {
3283 .eraseblocks = { {1024 * 1024, 1} },
3284 .block_erase = erase_chip_block_jedec,
3285 }
3286 /* Chip features an optional permanent write protection
3287 * of the first 16 kB. The erase function is the same as
3288 * above, but FC000H to FFFFFH will not be erased.
3289 * FIXME: add another eraser when partial erasers are
3290 * supported.
3291 */
3292 },
3293 .printlock = printlock_at49f,
3294 .write = write_jedec_1,
3295 .read = read_memmapped,
3296 .voltage = {4500, 5500},
3297 },
3298
3299 {
3300 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00003301 .name = "AT49LH002",
3302 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3303 .manufacture_id = ATMEL_ID,
3304 .model_id = ATMEL_AT49LH002,
3305 .total_size = 256,
3306 .page_size = 0, /* unused */
Stefan Tauner7de93932014-08-03 13:05:45 +00003307 .feature_bits = FEATURE_REGISTERMAP,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003308 .tested = TEST_UNTESTED,
Stefan Tauner7de93932014-08-03 13:05:45 +00003309 .probe = probe_82802ab,
3310 .probe_timing = TIMING_ZERO,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003311 .block_erasers =
3312 {
3313 {
3314 .eraseblocks = {
3315 {64 * 1024, 3},
3316 {32 * 1024, 1},
3317 {8 * 1024, 2},
3318 {16 * 1024, 1},
3319 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003320 .block_erase = NULL, /* TODO: Implement. */
Uwe Hermannc74e9772011-09-08 19:55:18 +00003321 }, {
3322 .eraseblocks = {
3323 {64 * 1024, 4},
3324 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003325 .block_erase = erase_block_82802ab,
3326 },
3327 },
3328 .printlock = printlock_regspace2_block_eraser_0,
3329 .unlock = unlock_regspace2_block_eraser_0,
3330 .write = write_82802ab,
3331 .read = read_memmapped,
3332 .voltage = {3000, 3600},
3333 },
3334
3335 {
3336 .vendor = "Atmel",
Stefan Tauner7de93932014-08-03 13:05:45 +00003337 .name = "AT49LH004",
3338 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3339 .manufacture_id = ATMEL_ID,
3340 .model_id = ATMEL_AT49LH004,
3341 .total_size = 512,
3342 .page_size = 0, /* unused */
3343 .feature_bits = FEATURE_REGISTERMAP,
3344 .tested = TEST_UNTESTED,
3345 .probe = probe_82802ab,
3346 .probe_timing = TIMING_ZERO,
3347 .block_erasers =
3348 {
3349 {
3350 .eraseblocks = {
3351 {64 * 1024, 7},
3352 {32 * 1024, 1},
3353 {8 * 1024, 2},
3354 {16 * 1024, 1},
3355 },
3356 .block_erase = erase_block_82802ab,
3357 }, {
3358 .eraseblocks = {
3359 {64 * 1024, 8},
3360 },
Uwe Hermannc74e9772011-09-08 19:55:18 +00003361 .block_erase = NULL, /* TODO: Implement. */
3362 },
3363 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003364 .printlock = printlock_regspace2_block_eraser_0,
3365 .unlock = unlock_regspace2_block_eraser_0,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003366 .write = write_82802ab,
3367 .read = read_memmapped,
3368 .voltage = {3000, 3600},
3369 },
3370
3371 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003372 .vendor = "Atmel",
3373 .name = "AT49LH00B4",
3374 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3375 .manufacture_id = ATMEL_ID,
3376 .model_id = ATMEL_AT49LH00B4,
3377 .total_size = 512,
Andrew Morganca081462011-09-13 22:05:44 +00003378 .page_size = 0, /* unused */
Alan Green1f9cc7d2019-07-01 11:10:45 +10003379 .feature_bits = FEATURE_REGISTERMAP,
3380 .tested = TEST_UNTESTED,
3381 .probe = probe_82802ab,
Andrew Morganca081462011-09-13 22:05:44 +00003382 .probe_timing = TIMING_ZERO,
3383 .block_erasers =
3384 {
3385 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003386 .eraseblocks = {
3387 {8 * 1024, 2},
3388 {16 * 1024, 1},
3389 {32 * 1024, 1},
3390 {64 * 1024, 7},
3391 },
3392 .block_erase = NULL, /* TODO: Implement. */
3393 }, {
3394 .eraseblocks = {
3395 {64 * 1024, 8},
3396 },
3397 .block_erase = erase_block_82802ab,
Andrew Morganca081462011-09-13 22:05:44 +00003398 },
3399 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10003400 .printlock = printlock_regspace2_block_eraser_0,
3401 .unlock = unlock_regspace2_block_eraser_0,
3402 .write = write_82802ab,
Andrew Morganca081462011-09-13 22:05:44 +00003403 .read = read_memmapped,
Alan Green1f9cc7d2019-07-01 11:10:45 +10003404 .voltage = {3000, 3600},
Andrew Morganca081462011-09-13 22:05:44 +00003405 },
3406
3407 {
Joshua Roysf1324e02010-09-16 00:51:51 +00003408 .vendor = "Bright",
3409 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003410 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00003411 .manufacture_id = BRIGHT_ID,
3412 .model_id = BRIGHT_BM29F040,
3413 .total_size = 512,
3414 .page_size = 64 * 1024,
3415 .feature_bits = FEATURE_EITHER_RESET,
3416 .tested = TEST_OK_PR,
3417 .probe = probe_jedec,
3418 .probe_timing = TIMING_ZERO,
3419 .block_erasers =
3420 {
3421 {
3422 .eraseblocks = { {64 * 1024, 8} },
3423 .block_erase = erase_sector_jedec,
3424 }, {
3425 .eraseblocks = { {512 * 1024, 1} },
3426 .block_erase = erase_chip_block_jedec,
3427 },
3428 },
3429 .write = write_jedec_1,
3430 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003431 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00003432 },
3433
3434 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003435 .vendor = "Catalyst",
3436 .name = "CAT28F512",
3437 .bustype = BUS_PARALLEL,
3438 .manufacture_id = CATALYST_ID,
3439 .model_id = CATALYST_CAT28F512,
3440 .total_size = 64,
3441 .page_size = 0, /* unused */
3442 .feature_bits = 0,
Alan Green908adf42019-07-03 15:34:06 +10003443 .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD},
Alan Green1f9cc7d2019-07-01 11:10:45 +10003444 .probe = probe_jedec, /* FIXME! */
3445 .probe_timing = TIMING_ZERO,
3446 .block_erasers =
3447 {
3448 {
3449 .eraseblocks = { {64 * 1024, 1} },
3450 .block_erase = NULL, /* TODO */
3451 },
3452 },
3453 .write = NULL, /* TODO */
3454 .read = read_memmapped,
3455 .voltage = {4500, 5500},
3456 },
3457
3458 {
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003459 .vendor = "ENE",
3460 .name = "KB9012 (EDI)",
3461 .bustype = BUS_SPI,
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003462 .total_size = 128,
3463 .page_size = 128,
3464 .feature_bits = FEATURE_ERASED_ZERO,
3465 .tested = TEST_OK_PREW,
Alan Greenc1863ca2019-06-27 15:08:03 +10003466 .spi_cmd_set = SPI_EDI,
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003467 .probe = edi_probe_kb9012,
3468 .probe_timing = TIMING_ZERO,
3469 .block_erasers =
3470 {
3471 {
3472 .eraseblocks = { {128, 1024} },
3473 .block_erase = edi_chip_block_erase,
3474 },
3475 },
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003476 .write = edi_chip_write,
3477 .read = edi_chip_read,
3478 .voltage = {2700, 3600},
Alan Greenc1863ca2019-06-27 15:08:03 +10003479 .gran = write_gran_128bytes,
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003480 },
3481
3482 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003483 .vendor = "ESI",
3484 .name = "ES25P16",
3485 .bustype = BUS_SPI,
3486 .manufacture_id = EXCEL_ID_NOPREFIX,
3487 .model_id = EXCEL_ES25P16,
3488 .total_size = 2 * 1024,
3489 .page_size = 256,
3490 /* 256-byte parameter page separate from memory array:
3491 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
3492 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003493 .tested = TEST_UNTESTED,
Alan Green1f9cc7d2019-07-01 11:10:45 +10003494 .probe = probe_spi_rdid,
3495 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003496 .block_erasers =
3497 {
3498 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003499 .eraseblocks = { {64 * 1024, 32} },
3500 .block_erase = spi_block_erase_d8,
Sean Nelson54596372010-01-09 05:30:14 +00003501 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003502 .eraseblocks = { {2 * 1024 * 1024, 1} },
3503 .block_erase = spi_block_erase_c7,
Sean Nelson54596372010-01-09 05:30:14 +00003504 }
3505 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10003506 .printlock = spi_prettyprint_status_register_bp2_srwd,
3507 .unlock = spi_disable_blockprotect_bp2_srwd,
3508 .write = spi_chip_write_256,
3509 .read = spi_chip_read, /* Fast Read (0x0B) supported */
3510 .voltage = {2700, 3600},
3511 },
3512
3513 {
3514 .vendor = "ESI",
3515 .name = "ES25P40",
3516 .bustype = BUS_SPI,
3517 .manufacture_id = EXCEL_ID_NOPREFIX,
3518 .model_id = EXCEL_ES25P40,
3519 .total_size = 512,
3520 .page_size = 256,
3521 /* 256-byte parameter page separate from memory array:
3522 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
3523 .feature_bits = FEATURE_WRSR_WREN,
3524 .tested = TEST_UNTESTED,
3525 .probe = probe_spi_rdid,
3526 .probe_timing = TIMING_ZERO,
3527 .block_erasers =
3528 {
3529 {
3530 .eraseblocks = { {64 * 1024, 8} },
3531 .block_erase = spi_block_erase_d8,
3532 }, {
3533 .eraseblocks = { {512 * 1024, 1} },
3534 .block_erase = spi_block_erase_c7,
3535 }
3536 },
3537 .printlock = spi_prettyprint_status_register_bp2_srwd,
3538 .unlock = spi_disable_blockprotect_bp2_srwd,
3539 .write = spi_chip_write_256,
3540 .read = spi_chip_read, /* Fast Read (0x0B) supported */
3541 .voltage = {2700, 3600},
3542 },
3543
3544 {
3545 .vendor = "ESI",
3546 .name = "ES25P80",
3547 .bustype = BUS_SPI,
3548 .manufacture_id = EXCEL_ID_NOPREFIX,
3549 .model_id = EXCEL_ES25P80,
3550 .total_size = 1024,
3551 .page_size = 256,
3552 /* 256-byte parameter page separate from memory array:
3553 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
3554 .feature_bits = FEATURE_WRSR_WREN,
3555 .tested = TEST_UNTESTED,
3556 .probe = probe_spi_rdid,
3557 .probe_timing = TIMING_ZERO,
3558 .block_erasers =
3559 {
3560 {
3561 .eraseblocks = { {64 * 1024, 16} },
3562 .block_erase = spi_block_erase_d8,
3563 }, {
3564 .eraseblocks = { {1024 * 1024, 1} },
3565 .block_erase = spi_block_erase_c7,
3566 }
3567 },
3568 .printlock = spi_prettyprint_status_register_bp2_srwd,
3569 .unlock = spi_disable_blockprotect_bp2_srwd,
3570 .write = spi_chip_write_256,
3571 .read = spi_chip_read, /* Fast Read (0x0B) supported */
3572 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00003573 },
3574
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003575 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00003576 .vendor = "ESMT",
Michael Karcher80a59ea2010-06-19 22:06:35 +00003577 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003578 .bustype = BUS_SPI,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003579 .manufacture_id = ESMT_ID,
3580 .model_id = ESMT_F25L008A,
Michael Karcher80a59ea2010-06-19 22:06:35 +00003581 .total_size = 1024,
3582 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003583 .feature_bits = FEATURE_WRSR_EITHER,
Stefan Taunereb582572012-09-21 12:52:50 +00003584 .tested = TEST_OK_PREW,
Michael Karcher80a59ea2010-06-19 22:06:35 +00003585 .probe = probe_spi_rdid,
3586 .probe_timing = TIMING_ZERO,
3587 .block_erasers =
3588 {
3589 {
3590 .eraseblocks = { {4 * 1024, 256} },
3591 .block_erase = spi_block_erase_20,
3592 }, {
3593 .eraseblocks = { {64 * 1024, 16} },
3594 .block_erase = spi_block_erase_d8,
3595 }, {
3596 .eraseblocks = { {1024 * 1024, 1} },
3597 .block_erase = spi_block_erase_60,
3598 }, {
3599 .eraseblocks = { {1024 * 1024, 1} },
3600 .block_erase = spi_block_erase_c7,
3601 }
3602 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003603 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003604 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00003605 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00003606 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003607 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00003608 },
3609
3610 {
Stefan Tauner85f09f72014-05-27 21:27:14 +00003611 .vendor = "ESMT",
3612 .name = "F25L32PA",
3613 .bustype = BUS_SPI,
3614 .manufacture_id = ESMT_ID,
3615 .model_id = ESMT_F25L32PA,
3616 .total_size = 4096,
3617 .page_size = 256,
3618 .feature_bits = FEATURE_WRSR_EITHER | FEATURE_OTP,
3619 .tested = TEST_UNTESTED,
3620 .probe = probe_spi_rdid,
3621 .probe_timing = TIMING_ZERO,
3622 .block_erasers =
3623 {
3624 {
3625 .eraseblocks = { {4 * 1024, 1024} },
3626 .block_erase = spi_block_erase_20,
3627 }, {
3628 .eraseblocks = { {64 * 1024, 64} },
3629 .block_erase = spi_block_erase_d8,
3630 }, {
3631 .eraseblocks = { {4 * 1024 * 1024, 1} },
3632 .block_erase = spi_block_erase_60,
3633 }, {
3634 .eraseblocks = { {4 * 1024 * 1024, 1} },
3635 .block_erase = spi_block_erase_c7,
3636 }
3637 },
3638 .printlock = spi_prettyprint_status_register_bp2_bpl,
3639 .unlock = spi_disable_blockprotect,
3640 .write = spi_chip_write_256,
3641 .read = spi_chip_read,
3642 .voltage = {2700, 3600},
3643 },
3644
3645 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003646 .vendor = "ESMT",
3647 .name = "F49B002UA",
3648 .bustype = BUS_PARALLEL,
3649 .manufacture_id = ESMT_ID,
3650 .model_id = ESMT_F49B002UA,
3651 .total_size = 256,
3652 .page_size = 4096,
3653 .feature_bits = FEATURE_EITHER_RESET,
3654 .tested = TEST_UNTESTED,
3655 .probe = probe_jedec,
3656 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3657 .block_erasers =
3658 {
3659 {
3660 .eraseblocks = {
3661 {128 * 1024, 1},
3662 {96 * 1024, 1},
3663 {8 * 1024, 2},
3664 {16 * 1024, 1},
3665 },
3666 .block_erase = erase_sector_jedec,
3667 }, {
3668 .eraseblocks = { {256 * 1024, 1} },
3669 .block_erase = erase_chip_block_jedec,
3670 }
3671 },
3672 .write = write_jedec_1,
3673 .read = read_memmapped,
3674 .voltage = {4500, 5500},
3675 },
3676
3677 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003678 .vendor = "Eon",
3679 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003680 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003681 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003682 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003683 .total_size = 64,
3684 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003685 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003686 .tested = TEST_UNTESTED,
3687 .probe = probe_spi_rdid,
3688 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003689 .block_erasers =
3690 {
3691 {
3692 .eraseblocks = {
3693 {4 * 1024, 2},
3694 {8 * 1024, 1},
3695 {16 * 1024, 1},
3696 {32 * 1024, 1},
3697 },
3698 .block_erase = spi_block_erase_d8,
3699 }, {
3700 .eraseblocks = { {64 * 1024, 1} },
3701 .block_erase = spi_block_erase_c7,
3702 }
3703 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003704 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003705 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003706 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003707 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003708 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003709 },
3710
3711 {
3712 .vendor = "Eon",
3713 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003714 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003715 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003716 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00003717 .total_size = 64,
3718 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003719 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003720 .tested = TEST_UNTESTED,
3721 .probe = probe_spi_rdid,
3722 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003723 .block_erasers =
3724 {
3725 {
3726 .eraseblocks = {
3727 {32 * 1024, 1},
3728 {16 * 1024, 1},
3729 {8 * 1024, 1},
3730 {4 * 1024, 2},
3731 },
3732 .block_erase = spi_block_erase_d8,
3733 }, {
3734 .eraseblocks = { {64 * 1024, 1} },
3735 .block_erase = spi_block_erase_c7,
3736 }
3737 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003738 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003739 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003740 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003741 .read = spi_chip_read, /* Fast read (0x0B) supported */
3742 .voltage = {2700, 3600},
3743 },
3744
3745 {
3746 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003747 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003748 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003749 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003750 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003751 .total_size = 128,
3752 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003753 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003754 .tested = TEST_UNTESTED,
3755 .probe = probe_spi_rdid,
3756 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003757 .block_erasers =
3758 {
3759 {
3760 .eraseblocks = {
3761 {4 * 1024, 2},
3762 {8 * 1024, 1},
3763 {16 * 1024, 1},
3764 {32 * 1024, 3},
3765 },
3766 .block_erase = spi_block_erase_d8,
3767 }, {
3768 .eraseblocks = { {128 * 1024, 1} },
3769 .block_erase = spi_block_erase_c7,
3770 }
3771 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003772 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003773 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003774 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003775 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003776 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003777 },
3778
3779 {
3780 .vendor = "Eon",
3781 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003782 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003783 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003784 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00003785 .total_size = 128,
3786 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003787 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00003788 .tested = TEST_OK_PREW,
Sean Nelson54596372010-01-09 05:30:14 +00003789 .probe = probe_spi_rdid,
3790 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003791 .block_erasers =
3792 {
3793 {
3794 .eraseblocks = {
3795 {32 * 1024, 3},
3796 {16 * 1024, 1},
3797 {8 * 1024, 1},
3798 {4 * 1024, 2},
3799 },
3800 .block_erase = spi_block_erase_d8,
3801 }, {
3802 .eraseblocks = { {128 * 1024, 1} },
3803 .block_erase = spi_block_erase_c7,
3804 }
3805 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003806 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003807 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003808 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003809 .read = spi_chip_read, /* Fast read (0x0B) supported */
3810 .voltage = {2700, 3600},
3811 },
3812
3813 {
3814 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003815 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003816 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003817 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003818 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003819 .total_size = 2048,
3820 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003821 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003822 .tested = TEST_UNTESTED,
3823 .probe = probe_spi_rdid,
3824 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003825 .block_erasers =
3826 {
3827 {
3828 .eraseblocks = {
3829 {4 * 1024, 2},
3830 {8 * 1024, 1},
3831 {16 * 1024, 1},
3832 {32 * 1024, 1},
3833 {64 * 1024, 31},
3834 },
3835 .block_erase = spi_block_erase_d8,
3836 }, {
3837 .eraseblocks = { {2 * 1024 * 1024, 1} },
3838 .block_erase = spi_block_erase_c7,
3839 }
3840 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003841 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003842 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003843 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003844 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003845 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003846 },
3847
3848 {
3849 .vendor = "Eon",
3850 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003851 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003852 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003853 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00003854 .total_size = 2048,
3855 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003856 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003857 .tested = TEST_UNTESTED,
3858 .probe = probe_spi_rdid,
3859 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003860 .block_erasers =
3861 {
3862 {
3863 .eraseblocks = {
3864 {64 * 1024, 31},
3865 {32 * 1024, 1},
3866 {16 * 1024, 1},
3867 {8 * 1024, 1},
3868 {4 * 1024, 2},
3869 },
3870 .block_erase = spi_block_erase_d8,
3871 }, {
3872 .eraseblocks = { {2 * 1024 * 1024, 1} },
3873 .block_erase = spi_block_erase_c7,
3874 }
3875 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003876 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003877 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003878 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003879 .read = spi_chip_read, /* Fast read (0x0B) supported */
3880 .voltage = {2700, 3600},
3881 },
3882
3883 {
3884 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10003885 .name = "EN25B20",
Stefan Taunerb175af52015-01-24 15:06:27 +00003886 .bustype = BUS_SPI,
3887 .manufacture_id = EON_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10003888 .model_id = EON_EN25B20,
3889 .total_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003890 .page_size = 256,
3891 .feature_bits = FEATURE_WRSR_WREN,
3892 .tested = TEST_UNTESTED,
3893 .probe = probe_spi_rdid,
3894 .probe_timing = TIMING_ZERO,
3895 .block_erasers =
3896 {
3897 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003898 .eraseblocks = {
3899 {4 * 1024, 2},
3900 {8 * 1024, 1},
3901 {16 * 1024, 1},
3902 {32 * 1024, 1},
3903 {64 * 1024, 3}
3904 },
Stefan Taunerb175af52015-01-24 15:06:27 +00003905 .block_erase = spi_block_erase_d8,
3906 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10003907 .eraseblocks = { {256 * 1024, 1} },
3908 .block_erase = spi_block_erase_c7,
3909 }
3910 },
3911 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3912 .unlock = spi_disable_blockprotect,
3913 .write = spi_chip_write_256,
3914 .read = spi_chip_read, /* Fast read (0x0B) supported */
3915 .voltage = {2700, 3600},
3916 },
3917
3918 {
3919 .vendor = "Eon",
3920 .name = "EN25B20T",
3921 .bustype = BUS_SPI,
3922 .manufacture_id = EON_ID_NOPREFIX,
3923 .model_id = EON_EN25B20,
3924 .total_size = 256,
3925 .page_size = 256,
3926 .feature_bits = FEATURE_WRSR_WREN,
3927 .tested = TEST_UNTESTED,
3928 .probe = probe_spi_rdid,
3929 .probe_timing = TIMING_ZERO,
3930 .block_erasers =
3931 {
3932 {
3933 .eraseblocks = {
3934 {64 * 1024, 3},
3935 {32 * 1024, 1},
3936 {16 * 1024, 1},
3937 {8 * 1024, 1},
3938 {4 * 1024, 2},
3939 },
3940 .block_erase = spi_block_erase_d8,
3941 }, {
3942 .eraseblocks = { {256 * 1024, 1} },
Stefan Taunerb175af52015-01-24 15:06:27 +00003943 .block_erase = spi_block_erase_c7,
3944 }
3945 },
3946 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3947 .unlock = spi_disable_blockprotect,
3948 .write = spi_chip_write_256,
3949 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003950 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003951 },
3952
3953 {
3954 .vendor = "Eon",
3955 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003956 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003957 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003958 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003959 .total_size = 4096,
3960 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003961 /* OTP: 512B total; enter 0x3A */
3962 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003963 .tested = TEST_UNTESTED,
3964 .probe = probe_spi_rdid,
3965 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003966 .block_erasers =
3967 {
3968 {
3969 .eraseblocks = {
3970 {4 * 1024, 2},
3971 {8 * 1024, 1},
3972 {16 * 1024, 1},
3973 {32 * 1024, 1},
3974 {64 * 1024, 63},
3975 },
3976 .block_erase = spi_block_erase_d8,
3977 }, {
3978 .eraseblocks = { {4 * 1024 * 1024, 1} },
3979 .block_erase = spi_block_erase_c7,
3980 }
3981 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003982 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003983 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003984 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003985 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003986 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003987 },
3988
3989 {
3990 .vendor = "Eon",
3991 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003992 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003993 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003994 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00003995 .total_size = 4096,
3996 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003997 /* OTP: 512B total; enter 0x3A */
3998 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Sean Nelson54596372010-01-09 05:30:14 +00003999 .tested = TEST_UNTESTED,
4000 .probe = probe_spi_rdid,
4001 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004002 .block_erasers =
4003 {
4004 {
4005 .eraseblocks = {
4006 {64 * 1024, 63},
4007 {32 * 1024, 1},
4008 {16 * 1024, 1},
4009 {8 * 1024, 1},
4010 {4 * 1024, 2},
4011 },
4012 .block_erase = spi_block_erase_d8,
4013 }, {
4014 .eraseblocks = { {4 * 1024 * 1024, 1} },
4015 .block_erase = spi_block_erase_c7,
4016 }
4017 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004018 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004019 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004020 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004021 .read = spi_chip_read, /* Fast read (0x0B) supported */
4022 .voltage = {2700, 3600},
4023 },
4024
4025 {
4026 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004027 .name = "EN25B40",
Stefan Taunerb175af52015-01-24 15:06:27 +00004028 .bustype = BUS_SPI,
4029 .manufacture_id = EON_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004030 .model_id = EON_EN25B40,
4031 .total_size = 512,
Stefan Taunerb175af52015-01-24 15:06:27 +00004032 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004033 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerb175af52015-01-24 15:06:27 +00004034 .tested = TEST_UNTESTED,
4035 .probe = probe_spi_rdid,
4036 .probe_timing = TIMING_ZERO,
4037 .block_erasers =
4038 {
4039 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10004040 .eraseblocks = {
4041 {4 * 1024, 2},
4042 {8 * 1024, 1},
4043 {16 * 1024, 1},
4044 {32 * 1024, 1},
4045 {64 * 1024, 7}
4046 },
Stefan Taunerb175af52015-01-24 15:06:27 +00004047 .block_erase = spi_block_erase_d8,
4048 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10004049 .eraseblocks = { {512 * 1024, 1} },
4050 .block_erase = spi_block_erase_c7,
4051 }
4052 },
4053 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4054 .unlock = spi_disable_blockprotect,
4055 .write = spi_chip_write_256,
4056 .read = spi_chip_read, /* Fast read (0x0B) supported */
4057 .voltage = {2700, 3600},
4058 },
4059
4060 {
4061 .vendor = "Eon",
4062 .name = "EN25B40T",
4063 .bustype = BUS_SPI,
4064 .manufacture_id = EON_ID_NOPREFIX,
4065 .model_id = EON_EN25B40,
4066 .total_size = 512,
4067 .page_size = 256,
4068 .feature_bits = FEATURE_WRSR_WREN,
4069 .tested = TEST_UNTESTED,
4070 .probe = probe_spi_rdid,
4071 .probe_timing = TIMING_ZERO,
4072 .block_erasers =
4073 {
4074 {
4075 .eraseblocks = {
4076 {64 * 1024, 7},
4077 {32 * 1024, 1},
4078 {16 * 1024, 1},
4079 {8 * 1024, 1},
4080 {4 * 1024, 2},
4081 },
4082 .block_erase = spi_block_erase_d8,
4083 }, {
4084 .eraseblocks = { {512 * 1024, 1} },
Stefan Taunerb175af52015-01-24 15:06:27 +00004085 .block_erase = spi_block_erase_c7,
4086 }
4087 },
4088 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4089 .unlock = spi_disable_blockprotect,
4090 .write = spi_chip_write_256,
4091 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004092 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004093 },
4094
4095 {
4096 .vendor = "Eon",
4097 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004098 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004099 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004100 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004101 .total_size = 8192,
4102 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004103 /* OTP: 512B total; enter 0x3A */
4104 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004105 .tested = TEST_UNTESTED,
4106 .probe = probe_spi_rdid,
4107 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004108 .block_erasers =
4109 {
4110 {
4111 .eraseblocks = {
4112 {4 * 1024, 2},
4113 {8 * 1024, 1},
4114 {16 * 1024, 1},
4115 {32 * 1024, 1},
4116 {64 * 1024, 127},
4117 },
4118 .block_erase = spi_block_erase_d8,
4119 }, {
4120 .eraseblocks = { {8 * 1024 * 1024, 1} },
4121 .block_erase = spi_block_erase_c7,
4122 }
4123 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004124 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004125 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00004126 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004127 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004128 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00004129 },
4130
4131 {
4132 .vendor = "Eon",
4133 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004134 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00004135 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004136 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00004137 .total_size = 8192,
4138 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004139 /* OTP: 512B total; enter 0x3A */
4140 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Sean Nelson54596372010-01-09 05:30:14 +00004141 .tested = TEST_UNTESTED,
4142 .probe = probe_spi_rdid,
4143 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004144 .block_erasers =
4145 {
4146 {
4147 .eraseblocks = {
4148 {64 * 1024, 127},
4149 {32 * 1024, 1},
4150 {16 * 1024, 1},
4151 {8 * 1024, 1},
4152 {4 * 1024, 2},
4153 },
4154 .block_erase = spi_block_erase_d8,
4155 }, {
4156 .eraseblocks = { {8 * 1024 * 1024, 1} },
4157 .block_erase = spi_block_erase_c7,
4158 }
4159 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004160 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004161 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004162 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004163 .read = spi_chip_read, /* Fast read (0x0B) supported */
4164 .voltage = {2700, 3600},
4165 },
4166
4167 {
4168 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004169 .name = "EN25B80",
Stefan Taunerb175af52015-01-24 15:06:27 +00004170 .bustype = BUS_SPI,
4171 .manufacture_id = EON_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004172 .model_id = EON_EN25B80,
4173 .total_size = 1024,
Stefan Taunerb175af52015-01-24 15:06:27 +00004174 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004175 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerb175af52015-01-24 15:06:27 +00004176 .tested = TEST_UNTESTED,
4177 .probe = probe_spi_rdid,
4178 .probe_timing = TIMING_ZERO,
4179 .block_erasers =
4180 {
4181 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10004182 .eraseblocks = {
4183 {4 * 1024, 2},
4184 {8 * 1024, 1},
4185 {16 * 1024, 1},
4186 {32 * 1024, 1},
4187 {64 * 1024, 15}
4188 },
Stefan Taunerb175af52015-01-24 15:06:27 +00004189 .block_erase = spi_block_erase_d8,
4190 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10004191 .eraseblocks = { {1024 * 1024, 1} },
4192 .block_erase = spi_block_erase_c7,
4193 }
4194 },
4195 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4196 .unlock = spi_disable_blockprotect,
4197 .write = spi_chip_write_256,
4198 .read = spi_chip_read, /* Fast read (0x0B) supported */
4199 .voltage = {2700, 3600},
4200 },
4201
4202 {
4203 .vendor = "Eon",
4204 .name = "EN25B80T",
4205 .bustype = BUS_SPI,
4206 .manufacture_id = EON_ID_NOPREFIX,
4207 .model_id = EON_EN25B80,
4208 .total_size = 1024,
4209 .page_size = 256,
4210 .feature_bits = FEATURE_WRSR_WREN,
4211 .tested = TEST_UNTESTED,
4212 .probe = probe_spi_rdid,
4213 .probe_timing = TIMING_ZERO,
4214 .block_erasers =
4215 {
4216 {
4217 .eraseblocks = {
4218 {64 * 1024, 15},
4219 {32 * 1024, 1},
4220 {16 * 1024, 1},
4221 {8 * 1024, 1},
4222 {4 * 1024, 2},
4223 },
4224 .block_erase = spi_block_erase_d8,
4225 }, {
4226 .eraseblocks = { {1024 * 1024, 1} },
Stefan Taunerb175af52015-01-24 15:06:27 +00004227 .block_erase = spi_block_erase_c7,
4228 }
4229 },
4230 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4231 .unlock = spi_disable_blockprotect,
4232 .write = spi_chip_write_256,
4233 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004234 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004235 },
4236
4237 {
4238 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004239 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004240 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004241 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004242 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004243 .total_size = 64,
4244 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004245 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00004246 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004247 .probe = probe_spi_rdid,
4248 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004249 .block_erasers =
4250 {
4251 {
4252 .eraseblocks = { {4 * 1024, 16} },
4253 .block_erase = spi_block_erase_20,
4254 }, {
4255 .eraseblocks = { {32 * 1024, 2} },
4256 .block_erase = spi_block_erase_d8,
4257 }, {
4258 .eraseblocks = { {32 * 1024, 2} },
4259 .block_erase = spi_block_erase_52,
4260 }, {
4261 .eraseblocks = { {64 * 1024, 1} },
4262 .block_erase = spi_block_erase_60,
4263 }, {
4264 .eraseblocks = { {64 * 1024, 1} },
4265 .block_erase = spi_block_erase_c7,
4266 }
4267 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004268 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004269 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004270 .write = spi_chip_write_256,
4271 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004272 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004273 },
4274
4275 {
4276 .vendor = "Eon",
4277 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004278 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004279 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004280 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004281 .total_size = 128,
4282 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004283 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004284 .tested = TEST_UNTESTED,
4285 .probe = probe_spi_rdid,
4286 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004287 .block_erasers =
4288 {
4289 {
4290 .eraseblocks = { {4 * 1024, 32} },
4291 .block_erase = spi_block_erase_20,
4292 }, {
4293 .eraseblocks = { {32 * 1024, 4} },
4294 .block_erase = spi_block_erase_d8,
4295 }, {
4296 .eraseblocks = { {32 * 1024, 4} },
4297 .block_erase = spi_block_erase_52,
4298 }, {
4299 .eraseblocks = { {128 * 1024, 1} },
4300 .block_erase = spi_block_erase_60,
4301 }, {
4302 .eraseblocks = { {128 * 1024, 1} },
4303 .block_erase = spi_block_erase_c7,
4304 }
4305 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004306 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004307 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004308 .write = spi_chip_write_256,
4309 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004310 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004311 },
4312
4313 {
4314 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004315 .name = "EN25F16",
4316 .bustype = BUS_SPI,
4317 .manufacture_id = EON_ID_NOPREFIX,
4318 .model_id = EON_EN25F16,
4319 .total_size = 2048,
4320 .page_size = 256,
4321 .feature_bits = FEATURE_WRSR_WREN,
4322 .tested = TEST_OK_PREW,
4323 .probe = probe_spi_rdid,
4324 .probe_timing = TIMING_ZERO,
4325 .block_erasers =
4326 {
4327 {
4328 .eraseblocks = { {4 * 1024, 512} },
4329 .block_erase = spi_block_erase_20,
4330 }, {
4331 .eraseblocks = { {64 * 1024, 32} },
4332 .block_erase = spi_block_erase_d8,
4333 }, {
4334 .eraseblocks = { {2 * 1024 * 1024, 1} },
4335 .block_erase = spi_block_erase_60,
4336 }, {
4337 .eraseblocks = { {2 * 1024 * 1024, 1} },
4338 .block_erase = spi_block_erase_c7,
4339 }
4340 },
4341 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4342 .unlock = spi_disable_blockprotect,
4343 .write = spi_chip_write_256,
4344 .read = spi_chip_read,
4345 .voltage = {2700, 3600},
4346 },
4347
4348 {
4349 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004350 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004351 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004352 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004353 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004354 .total_size = 256,
4355 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004356 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004357 .tested = TEST_UNTESTED,
4358 .probe = probe_spi_rdid,
4359 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004360 .block_erasers =
4361 {
4362 {
4363 .eraseblocks = { {4 * 1024, 64} },
4364 .block_erase = spi_block_erase_20,
4365 }, {
4366 .eraseblocks = { {64 * 1024, 4} },
4367 .block_erase = spi_block_erase_d8,
4368 }, {
4369 .eraseblocks = { {64 * 1024, 4} },
4370 .block_erase = spi_block_erase_52,
4371 }, {
4372 .eraseblocks = { {256 * 1024, 1} },
4373 .block_erase = spi_block_erase_60,
4374 }, {
4375 .eraseblocks = { {256 * 1024, 1} },
4376 .block_erase = spi_block_erase_c7,
4377 }
4378 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004379 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004380 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004381 .write = spi_chip_write_256,
4382 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004383 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004384 },
4385
4386 {
4387 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004388 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004389 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004390 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004391 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004392 .total_size = 4096,
4393 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004394 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00004395 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004396 .probe = probe_spi_rdid,
4397 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004398 .block_erasers =
4399 {
4400 {
4401 .eraseblocks = { {4 * 1024, 1024} },
4402 .block_erase = spi_block_erase_20,
4403 }, {
4404 .eraseblocks = { {64 * 1024, 64} },
4405 .block_erase = spi_block_erase_d8,
4406 }, {
4407 .eraseblocks = { {4 * 1024 * 1024, 1} },
4408 .block_erase = spi_block_erase_60,
4409 }, {
4410 .eraseblocks = { {4 * 1024 * 1024, 1} },
4411 .block_erase = spi_block_erase_c7,
4412 }
4413 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004414 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004415 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004416 .write = spi_chip_write_256,
4417 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004418 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004419 },
4420
4421 {
Russ Dill3cd5a122010-03-05 08:44:11 +00004422 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004423 .name = "EN25F40",
4424 .bustype = BUS_SPI,
4425 .manufacture_id = EON_ID_NOPREFIX,
4426 .model_id = EON_EN25F40,
4427 .total_size = 512,
4428 .page_size = 256,
4429 .feature_bits = FEATURE_WRSR_WREN,
4430 .tested = TEST_OK_PREW,
4431 .probe = probe_spi_rdid,
4432 .probe_timing = TIMING_ZERO,
4433 .block_erasers =
4434 {
4435 {
4436 .eraseblocks = { {4 * 1024, 128} },
4437 .block_erase = spi_block_erase_20,
4438 }, {
4439 .eraseblocks = { {64 * 1024, 8} },
4440 .block_erase = spi_block_erase_d8,
4441 }, {
4442 .eraseblocks = { {512 * 1024, 1} },
4443 .block_erase = spi_block_erase_60,
4444 }, {
4445 .eraseblocks = { {512 * 1024, 1} },
4446 .block_erase = spi_block_erase_c7,
4447 },
4448 },
4449 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4450 .unlock = spi_disable_blockprotect,
4451 .write = spi_chip_write_256,
4452 .read = spi_chip_read,
4453 .voltage = {2700, 3600},
4454 },
4455
4456 {
4457 .vendor = "Eon",
Stefan Taunerd932fd02012-09-06 17:37:16 +00004458 .name = "EN25F64",
4459 .bustype = BUS_SPI,
4460 .manufacture_id = EON_ID_NOPREFIX,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00004461 .model_id = EON_EN25F64,
Stefan Taunerd932fd02012-09-06 17:37:16 +00004462 .total_size = 8192,
4463 .page_size = 256,
4464 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00004465 .tested = TEST_OK_PREW,
Stefan Taunerd932fd02012-09-06 17:37:16 +00004466 .probe = probe_spi_rdid,
4467 .probe_timing = TIMING_ZERO,
4468 .block_erasers =
4469 {
4470 {
4471 .eraseblocks = { {4 * 1024, 2048} },
4472 .block_erase = spi_block_erase_20,
4473 }, {
4474 .eraseblocks = { {64 * 1024, 128} },
4475 .block_erase = spi_block_erase_d8,
4476 }, {
4477 .eraseblocks = { {8 * 1024 * 1024, 1} },
4478 .block_erase = spi_block_erase_60,
4479 }, {
4480 .eraseblocks = { {8 * 1024 * 1024, 1} },
4481 .block_erase = spi_block_erase_c7,
4482 }
4483 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004484 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stefan Taunerd932fd02012-09-06 17:37:16 +00004485 .unlock = spi_disable_blockprotect,
4486 .write = spi_chip_write_256,
4487 .read = spi_chip_read,
4488 .voltage = {2700, 3600},
4489 },
4490
4491 {
4492 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004493 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004494 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004495 .manufacture_id = EON_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004496 .model_id = EON_EN25F80,
David Hendricks6d715302011-07-24 22:21:57 +00004497 .total_size = 1024,
4498 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004499 .feature_bits = FEATURE_WRSR_WREN,
4500 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004501 .probe = probe_spi_rdid,
4502 .probe_timing = TIMING_ZERO,
4503 .block_erasers =
4504 {
4505 {
4506 .eraseblocks = { {4 * 1024, 256} },
4507 .block_erase = spi_block_erase_20,
4508 }, {
4509 .eraseblocks = { {64 * 1024, 16} },
4510 .block_erase = spi_block_erase_d8,
4511 }, {
4512 .eraseblocks = { {1024 * 1024, 1} },
4513 .block_erase = spi_block_erase_60,
4514 }, {
4515 .eraseblocks = { {1024 * 1024, 1} },
4516 .block_erase = spi_block_erase_c7,
4517 }
4518 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004519 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004520 .unlock = spi_disable_blockprotect,
4521 .write = spi_chip_write_256,
4522 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004523 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004524 },
4525
4526 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10004527 .vendor = "Eon",
4528 .name = "EN25P05",
4529 .bustype = BUS_SPI,
4530 .manufacture_id = EON_ID_NOPREFIX,
4531 .model_id = EON_EN25B05,
4532 .total_size = 64,
4533 .page_size = 256,
4534 .feature_bits = FEATURE_WRSR_WREN,
4535 .tested = TEST_UNTESTED,
4536 .probe = probe_spi_rdid,
4537 .probe_timing = TIMING_ZERO,
4538 .block_erasers =
4539 {
4540 {
4541 .eraseblocks = {
4542 {32 * 1024, 2} },
4543 .block_erase = spi_block_erase_d8,
4544 }, {
4545 .eraseblocks = { {64 * 1024, 1} },
4546 .block_erase = spi_block_erase_c7,
4547 }
4548 },
4549 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4550 .unlock = spi_disable_blockprotect,
4551 .write = spi_chip_write_256,
4552 .read = spi_chip_read, /* Fast read (0x0B) supported */
4553 .voltage = {2700, 3600},
4554 },
4555
4556 {
4557 .vendor = "Eon",
4558 .name = "EN25P10",
4559 .bustype = BUS_SPI,
4560 .manufacture_id = EON_ID_NOPREFIX,
4561 .model_id = EON_EN25B10,
4562 .total_size = 128,
4563 .page_size = 256,
4564 .feature_bits = FEATURE_WRSR_WREN,
4565 .tested = TEST_UNTESTED,
4566 .probe = probe_spi_rdid,
4567 .probe_timing = TIMING_ZERO,
4568 .block_erasers =
4569 {
4570 {
4571 .eraseblocks = { {32 * 1024, 4} },
4572 .block_erase = spi_block_erase_d8,
4573 }, {
4574 .eraseblocks = { {128 * 1024, 1} },
4575 .block_erase = spi_block_erase_c7,
4576 }
4577 },
4578 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4579 .unlock = spi_disable_blockprotect,
4580 .write = spi_chip_write_256,
4581 .read = spi_chip_read, /* Fast read (0x0B) supported */
4582 .voltage = {2700, 3600},
4583 },
4584
4585 {
4586 .vendor = "Eon",
4587 .name = "EN25P16",
4588 .bustype = BUS_SPI,
4589 .manufacture_id = EON_ID_NOPREFIX,
4590 .model_id = EON_EN25B16,
4591 .total_size = 2048,
4592 .page_size = 256,
4593 .feature_bits = FEATURE_WRSR_WREN,
4594 .tested = TEST_UNTESTED,
4595 .probe = probe_spi_rdid,
4596 .probe_timing = TIMING_ZERO,
4597 .block_erasers =
4598 {
4599 {
4600 .eraseblocks = { {64 * 1024, 32} },
4601 .block_erase = spi_block_erase_d8,
4602 }, {
4603 .eraseblocks = { {2 * 1024 * 1024, 1} },
4604 .block_erase = spi_block_erase_c7,
4605 }
4606 },
4607 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4608 .unlock = spi_disable_blockprotect,
4609 .write = spi_chip_write_256,
4610 .read = spi_chip_read, /* Fast read (0x0B) supported */
4611 .voltage = {2700, 3600},
4612 },
4613
4614 {
4615 .vendor = "Eon",
4616 .name = "EN25P20",
4617 .bustype = BUS_SPI,
4618 .manufacture_id = EON_ID_NOPREFIX,
4619 .model_id = EON_EN25B20,
4620 .total_size = 256,
4621 .page_size = 256,
4622 .feature_bits = FEATURE_WRSR_WREN,
4623 .tested = TEST_UNTESTED,
4624 .probe = probe_spi_rdid,
4625 .probe_timing = TIMING_ZERO,
4626 .block_erasers =
4627 {
4628 {
4629 .eraseblocks = { {64 * 1024, 4} },
4630 .block_erase = spi_block_erase_d8,
4631 }, {
4632 .eraseblocks = { {256 * 1024, 1} },
4633 .block_erase = spi_block_erase_c7,
4634 }
4635 },
4636 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4637 .unlock = spi_disable_blockprotect,
4638 .write = spi_chip_write_256,
4639 .read = spi_chip_read, /* Fast read (0x0B) supported */
4640 .voltage = {2700, 3600},
4641 },
4642
4643 {
4644 .vendor = "Eon",
4645 .name = "EN25P32", /* Uniform version of EN25B32 */
4646 .bustype = BUS_SPI,
4647 .manufacture_id = EON_ID_NOPREFIX,
4648 .model_id = EON_EN25B32,
4649 .total_size = 4096,
4650 .page_size = 256,
4651 /* OTP: 512B total; enter 0x3A */
4652 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4653 .tested = TEST_UNTESTED,
4654 .probe = probe_spi_rdid,
4655 .probe_timing = TIMING_ZERO,
4656 .block_erasers =
4657 {
4658 {
4659 .eraseblocks = { {64 * 1024, 64} },
4660 .block_erase = spi_block_erase_d8,
4661 }, {
4662 .eraseblocks = { {4 * 1024 * 1024, 1} },
4663 .block_erase = spi_block_erase_c7,
4664 }
4665 },
4666 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4667 .unlock = spi_disable_blockprotect,
4668 .write = spi_chip_write_256,
4669 .read = spi_chip_read, /* Fast read (0x0B) supported */
4670 .voltage = {2700, 3600},
4671 },
4672
4673 {
4674 .vendor = "Eon",
4675 .name = "EN25P40",
4676 .bustype = BUS_SPI,
4677 .manufacture_id = EON_ID_NOPREFIX,
4678 .model_id = EON_EN25B40,
4679 .total_size = 512,
4680 .page_size = 256,
4681 .feature_bits = FEATURE_WRSR_WREN,
4682 .tested = TEST_UNTESTED,
4683 .probe = probe_spi_rdid,
4684 .probe_timing = TIMING_ZERO,
4685 .block_erasers =
4686 {
4687 {
4688 .eraseblocks = { {64 * 1024, 8} },
4689 .block_erase = spi_block_erase_d8,
4690 }, {
4691 .eraseblocks = { {512 * 1024, 1} },
4692 .block_erase = spi_block_erase_c7,
4693 }
4694 },
4695 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4696 .unlock = spi_disable_blockprotect,
4697 .write = spi_chip_write_256,
4698 .read = spi_chip_read, /* Fast read (0x0B) supported */
4699 .voltage = {2700, 3600},
4700 },
4701
4702 {
4703 .vendor = "Eon",
4704 .name = "EN25P64",
4705 .bustype = BUS_SPI,
4706 .manufacture_id = EON_ID_NOPREFIX,
4707 .model_id = EON_EN25B64,
4708 .total_size = 8192,
4709 .page_size = 256,
4710 /* OTP: 512B total; enter 0x3A */
4711 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4712 .tested = TEST_UNTESTED,
4713 .probe = probe_spi_rdid,
4714 .probe_timing = TIMING_ZERO,
4715 .block_erasers =
4716 {
4717 {
4718 .eraseblocks = { {64 * 1024, 128} },
4719 .block_erase = spi_block_erase_d8,
4720 }, {
4721 .eraseblocks = { {8 * 1024 * 1024, 1} },
4722 .block_erase = spi_block_erase_c7,
4723 }
4724 },
4725 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4726 .unlock = spi_disable_blockprotect,
4727 .write = spi_chip_write_256,
4728 .read = spi_chip_read, /* Fast read (0x0B) supported */
4729 .voltage = {2700, 3600},
4730 },
4731
4732 {
4733 .vendor = "Eon",
4734 .name = "EN25P80",
4735 .bustype = BUS_SPI,
4736 .manufacture_id = EON_ID_NOPREFIX,
4737 .model_id = EON_EN25B80,
4738 .total_size = 1024,
4739 .page_size = 256,
4740 .feature_bits = FEATURE_WRSR_WREN,
4741 .tested = TEST_UNTESTED,
4742 .probe = probe_spi_rdid,
4743 .probe_timing = TIMING_ZERO,
4744 .block_erasers =
4745 {
4746 {
4747 .eraseblocks = { {64 * 1024, 16} },
4748 .block_erase = spi_block_erase_d8,
4749 }, {
4750 .eraseblocks = { {1024 * 1024, 1} },
4751 .block_erase = spi_block_erase_c7,
4752 }
4753 },
4754 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4755 .unlock = spi_disable_blockprotect,
4756 .write = spi_chip_write_256,
4757 .read = spi_chip_read, /* Fast read (0x0B) supported */
4758 .voltage = {2700, 3600},
4759 },
4760
4761 {
4762 .vendor = "Eon",
4763 .name = "EN25Q128",
4764 .bustype = BUS_SPI,
4765 .manufacture_id = EON_ID_NOPREFIX,
4766 .model_id = EON_EN25Q128,
4767 .total_size = 16384,
4768 .page_size = 256,
4769 /* OTP: 512B total; enter 0x3A */
4770 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4771 .tested = TEST_OK_PREW,
4772 .probe = probe_spi_rdid,
4773 .probe_timing = TIMING_ZERO,
4774 .block_erasers =
4775 {
4776 {
4777 .eraseblocks = { {4 * 1024, 4096} },
4778 .block_erase = spi_block_erase_20,
4779 }, {
4780 .eraseblocks = { {64 * 1024, 256} },
4781 .block_erase = spi_block_erase_d8,
4782 }, {
4783 .eraseblocks = { {16 * 1024 * 1024, 1} },
4784 .block_erase = spi_block_erase_60,
4785 }, {
4786 .eraseblocks = { {16 * 1024 * 1024, 1} },
4787 .block_erase = spi_block_erase_c7,
4788 }
4789 },
4790 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4791 .unlock = spi_disable_blockprotect,
4792 .write = spi_chip_write_256,
4793 .read = spi_chip_read,
4794 },
4795
4796 {
David Hendricks6d715302011-07-24 22:21:57 +00004797 /* Note: EN25D16 is an evil twin which shares the model ID
4798 but has different write protection capabilities */
4799 .vendor = "Eon",
4800 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004801 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004802 .manufacture_id = EON_ID_NOPREFIX,
4803 .model_id = EON_EN25Q16,
4804 .total_size = 2048,
4805 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004806 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
4807 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00004808 .tested = TEST_UNTESTED,
4809 .probe = probe_spi_rdid,
4810 .probe_timing = TIMING_ZERO,
4811 .block_erasers =
4812 {
4813 {
4814 .eraseblocks = { {4 * 1024, 512} },
4815 .block_erase = spi_block_erase_20,
4816 }, {
4817 .eraseblocks = { {64 * 1024, 32} },
4818 .block_erase = spi_block_erase_d8,
4819 }, {
4820 /* not supported by Q16 version */
4821 .eraseblocks = { {64 * 1024, 32} },
4822 .block_erase = spi_block_erase_52,
4823 }, {
4824 .eraseblocks = { {2 * 1024 * 1024, 1} },
4825 .block_erase = spi_block_erase_60,
4826 }, {
4827 .eraseblocks = { {2 * 1024 * 1024, 1} },
4828 .block_erase = spi_block_erase_c7,
4829 }
4830 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004831 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004832 .unlock = spi_disable_blockprotect,
4833 .write = spi_chip_write_256,
4834 .read = spi_chip_read,
4835 .voltage = {2700, 3600},
4836 },
4837
4838 {
4839 .vendor = "Eon",
4840 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004841 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004842 .manufacture_id = EON_ID_NOPREFIX,
4843 .model_id = EON_EN25Q32,
4844 .total_size = 4096,
4845 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004846 /* OTP: 512B total; enter 0x3A */
4847 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004848 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004849 .probe = probe_spi_rdid,
4850 .probe_timing = TIMING_ZERO,
4851 .block_erasers =
4852 {
4853 {
4854 .eraseblocks = { {4 * 1024, 1024} },
4855 .block_erase = spi_block_erase_20,
4856 }, {
4857 .eraseblocks = { {64 * 1024, 64} },
4858 .block_erase = spi_block_erase_d8,
4859 }, {
4860 .eraseblocks = { {4 * 1024 * 1024, 1} },
4861 .block_erase = spi_block_erase_60,
4862 }, {
4863 .eraseblocks = { {4 * 1024 * 1024, 1} },
4864 .block_erase = spi_block_erase_c7,
4865 }
4866 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004867 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004868 .unlock = spi_disable_blockprotect,
4869 .write = spi_chip_write_256,
4870 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004871 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004872 },
4873
4874 {
4875 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004876 .name = "EN25Q40",
4877 .bustype = BUS_SPI,
4878 .manufacture_id = EON_ID_NOPREFIX,
4879 .model_id = EON_EN25Q40,
4880 .total_size = 512,
4881 .page_size = 256,
4882 /* OTP: 256B total; enter 0x3A */
4883 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4884 .tested = TEST_UNTESTED,
4885 .probe = probe_spi_rdid,
4886 .probe_timing = TIMING_ZERO,
4887 .block_erasers =
4888 {
4889 {
4890 .eraseblocks = { {4 * 1024, 128} },
4891 .block_erase = spi_block_erase_20,
4892 }, {
4893 .eraseblocks = { {64 * 1024, 8} },
4894 .block_erase = spi_block_erase_d8,
4895 }, {
4896 .eraseblocks = { {512 * 1024, 1} },
4897 .block_erase = spi_block_erase_60,
4898 }, {
4899 .eraseblocks = { {512 * 1024, 1} },
4900 .block_erase = spi_block_erase_c7,
4901 }
4902 },
4903 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4904 .unlock = spi_disable_blockprotect,
4905 .write = spi_chip_write_256,
4906 .read = spi_chip_read,
4907 .voltage = {2700, 3600},
4908 },
4909
4910 {
4911 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00004912 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004913 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004914 .manufacture_id = EON_ID_NOPREFIX,
4915 .model_id = EON_EN25Q64,
4916 .total_size = 8192,
4917 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004918 /* OTP: 512B total; enter 0x3A */
4919 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004920 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004921 .probe = probe_spi_rdid,
4922 .probe_timing = TIMING_ZERO,
4923 .block_erasers =
4924 {
4925 {
4926 .eraseblocks = { {4 * 1024, 2048} },
4927 .block_erase = spi_block_erase_20,
4928 }, {
4929 .eraseblocks = { {64 * 1024, 128} },
4930 .block_erase = spi_block_erase_d8,
4931 }, {
4932 .eraseblocks = { {8 * 1024 * 1024, 1} },
4933 .block_erase = spi_block_erase_60,
4934 }, {
4935 .eraseblocks = { {8 * 1024 * 1024, 1} },
4936 .block_erase = spi_block_erase_c7,
4937 }
4938 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004939 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004940 .unlock = spi_disable_blockprotect,
4941 .write = spi_chip_write_256,
4942 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004943 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004944 },
4945
4946 {
4947 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10004948 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004949 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004950 .manufacture_id = EON_ID_NOPREFIX,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004951 .model_id = EON_EN25Q80,
4952 .total_size = 1024,
4953 .page_size = 256,
4954 /* OTP: 256B total; enter 0x3A */
4955 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4956 .tested = TEST_UNTESTED,
4957 .probe = probe_spi_rdid,
4958 .probe_timing = TIMING_ZERO,
4959 .block_erasers =
4960 {
4961 {
4962 .eraseblocks = { {4 * 1024, 256} },
4963 .block_erase = spi_block_erase_20,
4964 }, {
4965 .eraseblocks = { {64 * 1024, 16} },
4966 .block_erase = spi_block_erase_d8,
4967 }, {
4968 .eraseblocks = { {1024 * 1024, 1} },
4969 .block_erase = spi_block_erase_60,
4970 }, {
4971 .eraseblocks = { {1024 * 1024, 1} },
4972 .block_erase = spi_block_erase_c7,
4973 }
4974 },
4975 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4976 .unlock = spi_disable_blockprotect,
4977 .write = spi_chip_write_256,
4978 .read = spi_chip_read,
4979 .voltage = {2700, 3600},
4980 },
4981
4982 {
4983 .vendor = "Eon",
4984 .name = "EN25QH128",
4985 .bustype = BUS_SPI,
4986 .manufacture_id = EON_ID_NOPREFIX,
4987 .model_id = EON_EN25QH128,
David Hendricks6d715302011-07-24 22:21:57 +00004988 .total_size = 16384,
4989 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10004990 /* supports SFDP */
Daniel Lenski65922a32012-02-15 23:40:23 +00004991 /* OTP: 512B total; enter 0x3A */
Alan Green1f9cc7d2019-07-01 11:10:45 +10004992 /* QPI enable 0x38, disable 0xFF */
4993 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
4994 .tested = TEST_UNTESTED,
David Hendricks6d715302011-07-24 22:21:57 +00004995 .probe = probe_spi_rdid,
4996 .probe_timing = TIMING_ZERO,
4997 .block_erasers =
4998 {
4999 {
5000 .eraseblocks = { {4 * 1024, 4096} },
5001 .block_erase = spi_block_erase_20,
5002 }, {
5003 .eraseblocks = { {64 * 1024, 256} },
5004 .block_erase = spi_block_erase_d8,
5005 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005006 .eraseblocks = { { 16384 * 1024, 1} },
David Hendricks6d715302011-07-24 22:21:57 +00005007 .block_erase = spi_block_erase_60,
5008 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005009 .eraseblocks = { { 16384 * 1024, 1} },
David Hendricks6d715302011-07-24 22:21:57 +00005010 .block_erase = spi_block_erase_c7,
5011 }
5012 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005013 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
5014 .unlock = spi_disable_blockprotect_bp3_srwd,
David Hendricks6d715302011-07-24 22:21:57 +00005015 .write = spi_chip_write_256,
5016 .read = spi_chip_read,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005017 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00005018 },
5019
5020 {
5021 .vendor = "Eon",
5022 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005023 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00005024 .manufacture_id = EON_ID_NOPREFIX,
5025 .model_id = EON_EN25QH16,
5026 .total_size = 2048,
5027 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00005028 /* supports SFDP */
5029 /* OTP: 512B total; enter 0x3A */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005030 /* QPI enable 0x38, disable 0xFF */
5031 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner5c316f92015-02-08 21:57:52 +00005032 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00005033 .probe = probe_spi_rdid,
5034 .probe_timing = TIMING_ZERO,
5035 .block_erasers =
5036 {
5037 {
5038 .eraseblocks = { {4 * 1024, 512} },
5039 .block_erase = spi_block_erase_20,
5040 }, {
5041 .eraseblocks = { {64 * 1024, 32} },
5042 .block_erase = spi_block_erase_d8,
5043 }, {
5044 .eraseblocks = { {1024 * 2048, 1} },
5045 .block_erase = spi_block_erase_60,
5046 }, {
5047 .eraseblocks = { {1024 * 2048, 1} },
5048 .block_erase = spi_block_erase_c7,
5049 }
5050 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005051 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005052 .unlock = spi_disable_blockprotect_bp3_srwd,
David Hendricks6d715302011-07-24 22:21:57 +00005053 .write = spi_chip_write_256,
5054 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00005055 .voltage = {2700, 3600},
5056 },
5057
5058 {
5059 .vendor = "Eon",
5060 .name = "EN25QH32",
5061 .bustype = BUS_SPI,
5062 .manufacture_id = EON_ID_NOPREFIX,
5063 .model_id = EON_EN25QH32,
5064 .total_size = 4096,
5065 .page_size = 256,
5066 /* supports SFDP */
5067 /* OTP: 512B total; enter 0x3A */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005068 /* QPI enable 0x38, disable 0xFF */
5069 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner23e10b82016-01-23 16:16:49 +00005070 .tested = TEST_OK_PREW,
Stefan Tauner2cef9162012-05-14 01:51:46 +00005071 .probe = probe_spi_rdid,
5072 .probe_timing = TIMING_ZERO,
5073 .block_erasers =
5074 {
5075 {
5076 .eraseblocks = { {4 * 1024, 1024} },
5077 .block_erase = spi_block_erase_20,
5078 }, {
5079 .eraseblocks = { {64 * 1024, 64} },
5080 .block_erase = spi_block_erase_d8,
5081 }, {
5082 .eraseblocks = { {1024 * 4096, 1} },
5083 .block_erase = spi_block_erase_60,
5084 }, {
5085 .eraseblocks = { {1024 * 4096, 1} },
5086 .block_erase = spi_block_erase_c7,
5087 }
5088 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005089 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005090 .unlock = spi_disable_blockprotect_bp3_srwd,
5091 .write = spi_chip_write_256,
5092 .read = spi_chip_read,
5093 .voltage = {2700, 3600},
5094 },
5095
5096 {
5097 .vendor = "Eon",
5098 .name = "EN25QH64",
5099 .bustype = BUS_SPI,
5100 .manufacture_id = EON_ID_NOPREFIX,
5101 .model_id = EON_EN25QH64,
5102 .total_size = 8192,
5103 .page_size = 256,
5104 /* supports SFDP */
5105 /* OTP: 512B total; enter 0x3A */
5106 /* QPI enable 0x38, disable 0xFF */
5107 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner23e10b82016-01-23 16:16:49 +00005108 .tested = TEST_OK_PREW,
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005109 .probe = probe_spi_rdid,
5110 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10005111 .block_erasers =
5112 {
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005113 {
5114 .eraseblocks = { {4 * 1024, 2048} },
5115 .block_erase = spi_block_erase_20,
5116 }, {
5117 .eraseblocks = { {64 * 1024, 128} },
5118 .block_erase = spi_block_erase_d8,
5119 }, {
5120 .eraseblocks = { { 8192 * 1024, 1} },
5121 .block_erase = spi_block_erase_60,
5122 }, {
5123 .eraseblocks = { { 8192 * 1024, 1} },
5124 .block_erase = spi_block_erase_c7,
5125 }
5126 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005127 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005128 .unlock = spi_disable_blockprotect_bp3_srwd,
5129 .write = spi_chip_write_256,
5130 .read = spi_chip_read,
5131 .voltage = {2700, 3600},
5132 },
5133
5134 {
5135 .vendor = "Eon",
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005136 .name = "EN25S10",
5137 .bustype = BUS_SPI,
5138 .manufacture_id = EON_ID_NOPREFIX,
5139 .model_id = EON_EN25S10,
5140 .total_size = 128,
5141 .page_size = 256,
5142 /* OTP: 256B total; enter 0x3A */
5143 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5144 .tested = TEST_UNTESTED,
5145 .probe = probe_spi_rdid,
5146 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10005147 .block_erasers =
5148 {
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005149 {
5150 .eraseblocks = { {4 * 1024, 32} },
5151 .block_erase = spi_block_erase_20,
5152 }, {
5153 .eraseblocks = { {32 * 1024, 4} },
5154 .block_erase = spi_block_erase_52,
5155 }, {
5156 .eraseblocks = { {128 * 1024, 1} },
5157 .block_erase = spi_block_erase_60,
5158 }, {
5159 .eraseblocks = { {128 * 1024, 1} },
5160 .block_erase = spi_block_erase_c7,
5161 }
5162 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005163 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005164 .unlock = spi_disable_blockprotect,
5165 .write = spi_chip_write_256,
5166 .read = spi_chip_read,
5167 .voltage = {1650, 1950},
5168 },
5169
5170 {
5171 .vendor = "Eon",
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005172 .name = "EN25S16",
5173 .bustype = BUS_SPI,
5174 .manufacture_id = EON_ID_NOPREFIX,
5175 .model_id = EON_EN25S16,
5176 .total_size = 2048,
5177 .page_size = 256,
5178 /* OTP: 512B total; enter 0x3A */
5179 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5180 .tested = TEST_UNTESTED,
5181 .probe = probe_spi_rdid,
5182 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10005183 .block_erasers =
5184 {
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005185 {
5186 .eraseblocks = { {4 * 1024, 512} },
5187 .block_erase = spi_block_erase_20,
5188 }, {
5189 .eraseblocks = { {64 * 1024, 32} },
5190 .block_erase = spi_block_erase_52,
5191 }, {
5192 .eraseblocks = { {32 * 1024, 64} },
5193 .block_erase = spi_block_erase_d8,
5194 }, {
5195 .eraseblocks = { {2048 * 1024, 1} },
5196 .block_erase = spi_block_erase_60,
5197 }, {
5198 .eraseblocks = { {2048 * 1024, 1} },
5199 .block_erase = spi_block_erase_c7,
5200 }
5201 },
5202 .printlock = spi_prettyprint_status_register_en25s_wp,
5203 .unlock = spi_disable_blockprotect_bp3_srwd,
5204 .write = spi_chip_write_256,
5205 .read = spi_chip_read,
5206 .voltage = {1650, 1950},
5207 },
5208
5209 {
5210 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10005211 .name = "EN25S20",
5212 .bustype = BUS_SPI,
5213 .manufacture_id = EON_ID_NOPREFIX,
5214 .model_id = EON_EN25S20,
5215 .total_size = 256,
5216 .page_size = 256,
5217 /* OTP: 256B total; enter 0x3A */
5218 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5219 .tested = TEST_UNTESTED,
5220 .probe = probe_spi_rdid,
5221 .probe_timing = TIMING_ZERO,
5222 .block_erasers =
5223 {
5224 {
5225 .eraseblocks = { {4 * 1024, 64} },
5226 .block_erase = spi_block_erase_20,
5227 }, {
5228 .eraseblocks = { {64 * 1024, 4} },
5229 .block_erase = spi_block_erase_d8,
5230 }, {
5231 .eraseblocks = { {256 * 1024, 1} },
5232 .block_erase = spi_block_erase_60,
5233 }, {
5234 .eraseblocks = { {256 * 1024, 1} },
5235 .block_erase = spi_block_erase_c7,
5236 }
5237 },
5238 .printlock = spi_prettyprint_status_register_bp2_srwd,
5239 .unlock = spi_disable_blockprotect,
5240 .write = spi_chip_write_256,
5241 .read = spi_chip_read,
5242 .voltage = {1650, 1950},
5243 },
5244
5245 {
5246 .vendor = "Eon",
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005247 .name = "EN25S32",
5248 .bustype = BUS_SPI,
5249 .manufacture_id = EON_ID_NOPREFIX,
5250 .model_id = EON_EN25S32,
5251 .total_size = 4096,
5252 .page_size = 256,
5253 /* OTP: 512B total; enter 0x3A */
5254 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5255 .tested = TEST_UNTESTED,
5256 .probe = probe_spi_rdid,
5257 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10005258 .block_erasers =
5259 {
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005260 {
5261 .eraseblocks = { {4 * 1024, 1024} },
5262 .block_erase = spi_block_erase_20,
5263 }, {
5264 .eraseblocks = { {32 * 1024, 128} },
5265 .block_erase = spi_block_erase_52,
5266 }, {
5267 .eraseblocks = { {64 * 1024, 64} },
5268 .block_erase = spi_block_erase_d8,
5269 }, {
5270 .eraseblocks = { {4096 * 1024, 1} },
5271 .block_erase = spi_block_erase_60,
5272 }, {
5273 .eraseblocks = { {4096 * 1024, 1} },
5274 .block_erase = spi_block_erase_c7,
5275 }
5276 },
5277 .printlock = spi_prettyprint_status_register_en25s_wp,
5278 .unlock = spi_disable_blockprotect_bp3_srwd,
5279 .write = spi_chip_write_256,
5280 .read = spi_chip_read,
5281 .voltage = {1650, 1950},
5282 },
5283
5284 {
5285 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10005286 .name = "EN25S40",
5287 .bustype = BUS_SPI,
5288 .manufacture_id = EON_ID_NOPREFIX,
5289 .model_id = EON_EN25S40,
5290 .total_size = 512,
5291 .page_size = 256,
5292 /* OTP: 256B total; enter 0x3A */
5293 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5294 .tested = TEST_OK_PREW,
5295 .probe = probe_spi_rdid,
5296 .probe_timing = TIMING_ZERO,
5297 .block_erasers =
5298 {
5299 {
5300 .eraseblocks = { {4 * 1024, 128} },
5301 .block_erase = spi_block_erase_20,
5302 }, {
5303 .eraseblocks = { {64 * 1024, 8} },
5304 .block_erase = spi_block_erase_d8,
5305 }, {
5306 .eraseblocks = { {512 * 1024, 1} },
5307 .block_erase = spi_block_erase_60,
5308 }, {
5309 .eraseblocks = { {512 * 1024, 1} },
5310 .block_erase = spi_block_erase_c7,
5311 }
5312 },
5313 .printlock = spi_prettyprint_status_register_bp2_srwd,
5314 .unlock = spi_disable_blockprotect,
5315 .write = spi_chip_write_256,
5316 .read = spi_chip_read,
5317 .voltage = {1650, 1950},
5318 },
5319
5320 {
5321 .vendor = "Eon",
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005322 .name = "EN25S64",
5323 .bustype = BUS_SPI,
5324 .manufacture_id = EON_ID_NOPREFIX,
5325 .model_id = EON_EN25S64,
5326 .total_size = 8192,
5327 .page_size = 256,
5328 /* OTP: 512B total; enter 0x3A */
5329 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5330 .tested = TEST_UNTESTED,
5331 .probe = probe_spi_rdid,
5332 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10005333 .block_erasers =
5334 {
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005335 {
5336 .eraseblocks = { {4 * 1024, 2048} },
5337 .block_erase = spi_block_erase_20,
5338 }, {
5339 .eraseblocks = { {64 * 1024, 128} },
5340 .block_erase = spi_block_erase_d8,
5341 }, {
5342 .eraseblocks = { {8192 * 1024, 1} },
5343 .block_erase = spi_block_erase_60,
5344 }, {
5345 .eraseblocks = { {8192 * 1024, 1} },
5346 .block_erase = spi_block_erase_c7,
5347 }
5348 },
5349 .printlock = spi_prettyprint_status_register_en25s_wp,
5350 .unlock = spi_disable_blockprotect_bp3_srwd,
5351 .write = spi_chip_write_256,
5352 .read = spi_chip_read,
5353 .voltage = {1650, 1950},
5354 },
5355
5356 {
5357 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10005358 .name = "EN25S80",
5359 .bustype = BUS_SPI,
5360 .manufacture_id = EON_ID_NOPREFIX,
5361 .model_id = EON_EN25S80,
5362 .total_size = 1024,
5363 .page_size = 256,
5364 /* OTP: 256B total; enter 0x3A */
5365 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5366 .tested = TEST_UNTESTED,
5367 .probe = probe_spi_rdid,
5368 .probe_timing = TIMING_ZERO,
Russ Dill3cd5a122010-03-05 08:44:11 +00005369 .block_erasers =
5370 {
5371 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005372 .eraseblocks = { {4 * 1024, 256} },
5373 .block_erase = spi_block_erase_20,
5374 }, {
5375 .eraseblocks = { {64 * 1024, 16} },
5376 .block_erase = spi_block_erase_d8,
5377 }, {
5378 .eraseblocks = { {1024 * 1024, 1} },
5379 .block_erase = spi_block_erase_60,
5380 }, {
5381 .eraseblocks = { {1024 * 1024, 1} },
5382 .block_erase = spi_block_erase_c7,
5383 }
Russ Dill3cd5a122010-03-05 08:44:11 +00005384 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005385 .printlock = spi_prettyprint_status_register_bp2_srwd,
5386 .unlock = spi_disable_blockprotect,
5387 .write = spi_chip_write_256,
5388 .read = spi_chip_read,
5389 .voltage = {1650, 1950},
Russ Dill3cd5a122010-03-05 08:44:11 +00005390 },
5391
5392 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00005393 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005394 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005395 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005396 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005397 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005398 .total_size = 256,
5399 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005400 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Alan Green4362e622019-08-26 15:02:12 +10005401 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005402 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005403 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005404 .block_erasers =
5405 {
5406 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005407 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005408 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00005409 {8 * 1024, 2},
5410 {32 * 1024, 1},
5411 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00005412 },
5413 .block_erase = erase_sector_jedec,
5414 }, {
5415 .eraseblocks = { {256 * 1024, 1} },
5416 .block_erase = erase_chip_block_jedec,
5417 },
5418 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005419 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005420 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005421 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005422 },
5423
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005424 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00005425 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005426 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005427 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005428 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005429 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005430 .total_size = 256,
5431 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005432 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005433 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005434 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005435 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005436 .block_erasers =
5437 {
5438 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005439 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005440 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00005441 {32 * 1024, 1},
5442 {8 * 1024, 2},
5443 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00005444 },
5445 .block_erase = erase_sector_jedec,
5446 }, {
5447 .eraseblocks = { {256 * 1024, 1} },
5448 .block_erase = erase_chip_block_jedec,
5449 },
5450 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005451 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005452 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005453 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005454 },
5455
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005456 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005457 .vendor = "Eon",
Alan Green1f9cc7d2019-07-01 11:10:45 +10005458 .name = "EN29F010",
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005459 .bustype = BUS_PARALLEL,
5460 .manufacture_id = EON_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005461 .model_id = EON_EN29F010,
5462 .total_size = 128,
5463 .page_size = 128,
5464 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
5465 .tested = TEST_OK_PRE,
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005466 .probe = probe_jedec,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005467 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005468 .block_erasers =
5469 {
5470 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005471 .eraseblocks = { {16 * 1024, 8} },
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005472 .block_erase = erase_sector_jedec,
5473 },
5474 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005475 .eraseblocks = { {128 * 1024, 1} },
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005476 .block_erase = erase_chip_block_jedec,
5477 },
5478 },
5479 .write = write_jedec_1,
5480 .read = read_memmapped,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005481 .voltage = {4500, 5500},
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005482 },
5483
5484 {
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00005485 .vendor = "Eon",
5486 .name = "EN29GL064(A)B",
5487 .bustype = BUS_PARALLEL,
5488 .manufacture_id = EON_ID,
5489 .model_id = EON_EN29GL064B,
5490 .total_size = 8192,
5491 .page_size = 128 * 1024, /* actual page size is 16 */
5492 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5493 .tested = TEST_UNTESTED,
5494 .probe = probe_jedec_29gl,
5495 .probe_timing = TIMING_ZERO,
5496 .block_erasers =
5497 {
5498 {
5499 .eraseblocks = {
5500 {8 * 1024, 8},
5501 {64 * 1024, 127},
5502 },
5503 .block_erase = erase_sector_jedec,
5504 }, {
5505 .eraseblocks = { {8 * 1024 * 1024, 1} },
5506 .block_erase = erase_chip_block_jedec,
5507 },
5508 },
5509 .write = write_jedec_1,
5510 .read = read_memmapped,
5511 .voltage = {2700, 3600},
5512 },
5513
5514 {
5515 .vendor = "Eon",
5516 .name = "EN29GL064(A)T",
5517 .bustype = BUS_PARALLEL,
5518 .manufacture_id = EON_ID,
5519 .model_id = EON_EN29GL064T,
5520 .total_size = 8192,
5521 .page_size = 128 * 1024, /* actual page size is 16 */
5522 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5523 .tested = TEST_UNTESTED,
5524 .probe = probe_jedec_29gl,
5525 .probe_timing = TIMING_ZERO,
5526 .block_erasers =
5527 {
5528 {
5529 .eraseblocks = {
5530 {64 * 1024, 127},
5531 {8 * 1024, 8},
5532 },
5533 .block_erase = erase_sector_jedec,
5534 }, {
5535 .eraseblocks = { {8 * 1024 * 1024, 1} },
5536 .block_erase = erase_chip_block_jedec,
5537 },
5538 },
5539 .write = write_jedec_1,
5540 .read = read_memmapped,
5541 .voltage = {2700, 3600},
5542 },
5543
5544 {
5545 .vendor = "Eon",
5546 .name = "EN29GL064H/L",
5547 .bustype = BUS_PARALLEL,
5548 .manufacture_id = EON_ID,
5549 .model_id = EON_EN29GL064HL,
5550 .total_size = 8192,
5551 .page_size = 128 * 1024, /* actual page size is 16 */
5552 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5553 .tested = TEST_UNTESTED,
5554 .probe = probe_jedec_29gl,
5555 .probe_timing = TIMING_ZERO,
5556 .block_erasers =
5557 {
5558 {
5559 .eraseblocks = { {64 * 1024, 128} },
5560 .block_erase = erase_sector_jedec,
5561 }, {
5562 .eraseblocks = { {8 * 1024 * 1024, 1} },
5563 .block_erase = erase_chip_block_jedec,
5564 },
5565 },
5566 .write = write_jedec_1,
5567 .read = read_memmapped,
5568 .voltage = {2700, 3600},
5569 },
5570
5571 {
5572 .vendor = "Eon",
5573 .name = "EN29GL128",
5574 .bustype = BUS_PARALLEL,
5575 .manufacture_id = EON_ID,
5576 .model_id = EON_EN29GL128HL,
5577 .total_size = 16384,
5578 .page_size = 128 * 1024, /* actual page size is 16 */
5579 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5580 .tested = TEST_UNTESTED,
5581 .probe = probe_jedec_29gl,
5582 .probe_timing = TIMING_ZERO,
5583 .block_erasers =
5584 {
5585 {
5586 .eraseblocks = { {128 * 1024, 128} },
5587 .block_erase = erase_sector_jedec,
5588 }, {
5589 .eraseblocks = { {16 * 1024 * 1024, 1} },
5590 .block_erase = erase_chip_block_jedec,
5591 },
5592 },
5593 .write = write_jedec_1,
5594 .read = read_memmapped,
5595 .voltage = {2700, 3600},
5596 },
5597
5598 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005599 .vendor = "Eon",
5600 .name = "EN29LV040(A)",
5601 .bustype = BUS_PARALLEL,
5602 .manufacture_id = EON_ID,
5603 .model_id = EON_EN29LV040,
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005604 .total_size = 512,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005605 .page_size = 4 * 1024,
5606 .tested = TEST_OK_PREW,
5607 .probe = probe_jedec,
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005608 .probe_timing = TIMING_ZERO,
5609 .block_erasers =
5610 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00005611 {
5612 .eraseblocks = { {64 * 1024, 8} },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005613 .block_erase = erase_sector_jedec,
5614 },
5615 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00005616 .eraseblocks = { {512 * 1024, 1} },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005617 .block_erase = erase_chip_block_jedec,
5618 },
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005619 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005620 .write = write_jedec_1,
5621 .read = read_memmapped,
5622 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R and 55R, others 2.7-3.6V */
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005623 },
5624
5625 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005626 .vendor = "Eon",
5627 .name = "EN29LV640B",
5628 .bustype = BUS_PARALLEL,
5629 .manufacture_id = EON_ID,
5630 .model_id = EON_EN29LV640B,
5631 .total_size = 8192,
5632 .page_size = 8192,
5633 .feature_bits = FEATURE_ADDR_SHIFTED,
5634 .tested = TEST_OK_PREW,
5635 .probe = probe_en29lv640b,
5636 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005637 .block_erasers =
5638 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00005639 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005640 .eraseblocks = {
5641 {8 * 1024, 8},
5642 {64 * 1024, 127},
5643 },
5644 .block_erase = erase_block_jedec,
Stefan Tauner0be072c2016-03-13 15:16:30 +00005645 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005646 .eraseblocks = { {8 * 1024 * 1024, 1} },
5647 .block_erase = erase_chip_block_jedec,
5648 },
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005649 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10005650 .write = write_en29lv640b,
5651 .read = read_memmapped,
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005652 .voltage = {2700, 3600},
5653 },
5654
5655 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005656 .vendor = "Fujitsu",
5657 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005658 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005659 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005660 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005661 .total_size = 512,
5662 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005663 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005664 .tested = TEST_UNTESTED,
5665 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005666 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005667 .block_erasers =
5668 {
5669 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005670 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005671 {16 * 1024, 1},
5672 {8 * 1024, 2},
5673 {32 * 1024, 1},
5674 {64 * 1024, 7},
5675 },
Sean Nelson35727f72010-01-28 23:55:12 +00005676 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005677 }, {
5678 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005679 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005680 },
5681 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005682 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005683 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005684 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005685 },
5686
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005687 {
5688 .vendor = "Fujitsu",
5689 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005690 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005691 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005692 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005693 .total_size = 512,
5694 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005695 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005696 .tested = TEST_UNTESTED,
5697 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005698 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005699 .block_erasers =
5700 {
5701 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005702 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005703 {64 * 1024, 7},
5704 {32 * 1024, 1},
5705 {8 * 1024, 2},
5706 {16 * 1024, 1},
5707 },
Sean Nelson35727f72010-01-28 23:55:12 +00005708 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005709 }, {
5710 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005711 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005712 },
5713 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005714 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005715 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005716 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005717 },
5718
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005719 {
Sean Nelson35727f72010-01-28 23:55:12 +00005720 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005721 .vendor = "Fujitsu",
5722 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005723 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005724 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005725 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005726 .total_size = 512,
5727 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005728 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00005729 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005730 .probe = probe_jedec,
5731 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson6b11ad22009-12-23 17:05:59 +00005732 .block_erasers =
5733 {
5734 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005735 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005736 {16 * 1024, 1},
5737 {8 * 1024, 2},
5738 {32 * 1024, 1},
5739 {64 * 1024, 7},
5740 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005741 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005742 }, {
5743 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005744 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005745 },
5746 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005747 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005748 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005749 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00005750 },
5751
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005752 {
5753 .vendor = "Fujitsu",
5754 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005755 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005756 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005757 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005758 .total_size = 512,
5759 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005760 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005761 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005762 .probe = probe_jedec,
5763 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson6b11ad22009-12-23 17:05:59 +00005764 .block_erasers =
5765 {
5766 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005767 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005768 {64 * 1024, 7},
5769 {32 * 1024, 1},
5770 {8 * 1024, 2},
5771 {16 * 1024, 1},
5772 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005773 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005774 }, {
5775 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005776 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005777 },
5778 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005779 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005780 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005781 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00005782 },
5783
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005784 {
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005785 .vendor = "Fujitsu",
5786 .name = "MBM29LV160BE",
5787 .bustype = BUS_PARALLEL,
5788 .manufacture_id = FUJITSU_ID,
5789 .model_id = FUJITSU_MBM29LV160BE,
5790 .total_size = 2 * 1024,
5791 .page_size = 0,
5792 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_SHORT_RESET,
5793 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005794 .probe = probe_jedec,
5795 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005796 .block_erasers =
5797 {
5798 {
5799 .eraseblocks = {
5800 {16 * 1024, 1},
5801 {8 * 1024, 2},
5802 {32 * 1024, 1},
5803 {64 * 1024, 31},
5804 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005805 .block_erase = erase_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005806 }, {
5807 .eraseblocks = { {2048 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005808 .block_erase = erase_chip_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005809 },
5810 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005811 .write = write_jedec_1, /* Supports a fast mode too */
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005812 .read = read_memmapped,
5813 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70, others 2.7-3.6V */
5814 },
5815
5816 {
5817 .vendor = "Fujitsu",
5818 .name = "MBM29LV160TE",
5819 .bustype = BUS_PARALLEL,
5820 .manufacture_id = FUJITSU_ID,
5821 .model_id = FUJITSU_MBM29LV160TE,
5822 .total_size = 2 * 1024,
5823 .page_size = 0,
5824 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_SHORT_RESET,
5825 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005826 .probe = probe_jedec,
5827 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005828 .block_erasers =
5829 {
5830 {
5831 .eraseblocks = {
5832 {64 * 1024, 31},
5833 {32 * 1024, 1},
5834 {8 * 1024, 2},
5835 {16 * 1024, 1},
5836 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005837 .block_erase = erase_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005838 }, {
5839 .eraseblocks = { {2048 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005840 .block_erase = erase_chip_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005841 },
5842 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005843 .write = write_jedec_1, /* Supports a fast mode too */
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005844 .read = read_memmapped,
5845 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70, others 2.7-3.6V */
5846 },
5847
5848 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00005849 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10005850 .name = "GD25B128B/GD25Q128B",
Roman Titov95edc892015-04-03 21:29:04 +00005851 .bustype = BUS_SPI,
5852 .manufacture_id = GIGADEVICE_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005853 .model_id = GIGADEVICE_GD25Q128,
5854 .total_size = 16384,
Roman Titov95edc892015-04-03 21:29:04 +00005855 .page_size = 256,
5856 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5857 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005858 .tested = TEST_OK_PREW,
Roman Titov95edc892015-04-03 21:29:04 +00005859 .probe = probe_spi_rdid,
5860 .probe_timing = TIMING_ZERO,
5861 .block_erasers =
5862 {
5863 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005864 .eraseblocks = { {4 * 1024, 4096} },
Roman Titov95edc892015-04-03 21:29:04 +00005865 .block_erase = spi_block_erase_20,
5866 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005867 .eraseblocks = { {32 * 1024, 512} },
Roman Titov95edc892015-04-03 21:29:04 +00005868 .block_erase = spi_block_erase_52,
5869 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005870 .eraseblocks = { {64 * 1024, 256} },
Roman Titov95edc892015-04-03 21:29:04 +00005871 .block_erase = spi_block_erase_d8,
5872 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005873 .eraseblocks = { {16 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00005874 .block_erase = spi_block_erase_60,
5875 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005876 .eraseblocks = { {16 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00005877 .block_erase = spi_block_erase_c7,
5878 }
5879 },
5880 .printlock = spi_prettyprint_status_register_bp4_srwd,
5881 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5882 .write = spi_chip_write_256,
5883 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Alan Green1f9cc7d2019-07-01 11:10:45 +10005884 .voltage = {2700, 3600},
Roman Titov95edc892015-04-03 21:29:04 +00005885 },
5886
5887 {
5888 .vendor = "GigaDevice",
Alan Green188127e2019-08-06 16:10:34 +10005889 .name = "GD25LQ128C/GD25LQ128D",
Roman Titov95edc892015-04-03 21:29:04 +00005890 .bustype = BUS_SPI,
5891 .manufacture_id = GIGADEVICE_ID,
Alan Green188127e2019-08-06 16:10:34 +10005892 .model_id = GIGADEVICE_GD25LQ128CD,
Alan Green1f9cc7d2019-07-01 11:10:45 +10005893 .total_size = 16384,
Roman Titov95edc892015-04-03 21:29:04 +00005894 .page_size = 256,
5895 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5896 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5897 .tested = TEST_UNTESTED,
5898 .probe = probe_spi_rdid,
5899 .probe_timing = TIMING_ZERO,
5900 .block_erasers =
5901 {
5902 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005903 .eraseblocks = { {4 * 1024, 4096} },
Roman Titov95edc892015-04-03 21:29:04 +00005904 .block_erase = spi_block_erase_20,
5905 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005906 .eraseblocks = { {32 * 1024, 512} },
Roman Titov95edc892015-04-03 21:29:04 +00005907 .block_erase = spi_block_erase_52,
5908 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005909 .eraseblocks = { {64 * 1024, 256} },
Roman Titov95edc892015-04-03 21:29:04 +00005910 .block_erase = spi_block_erase_d8,
5911 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005912 .eraseblocks = { {16 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00005913 .block_erase = spi_block_erase_60,
5914 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10005915 .eraseblocks = { {16 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00005916 .block_erase = spi_block_erase_c7,
5917 }
5918 },
5919 .printlock = spi_prettyprint_status_register_bp4_srwd,
5920 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5921 .write = spi_chip_write_256,
5922 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5923 .voltage = {1695, 1950},
5924 },
5925
5926 {
5927 .vendor = "GigaDevice",
5928 .name = "GD25LQ16",
5929 .bustype = BUS_SPI,
5930 .manufacture_id = GIGADEVICE_ID,
5931 .model_id = GIGADEVICE_GD25LQ16,
5932 .total_size = 2048,
5933 .page_size = 256,
5934 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5935 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5936 .tested = TEST_UNTESTED,
5937 .probe = probe_spi_rdid,
5938 .probe_timing = TIMING_ZERO,
5939 .block_erasers =
5940 {
5941 {
5942 .eraseblocks = { {4 * 1024, 512} },
5943 .block_erase = spi_block_erase_20,
5944 }, {
5945 .eraseblocks = { {32 * 1024, 64} },
5946 .block_erase = spi_block_erase_52,
5947 }, {
5948 .eraseblocks = { {64 * 1024, 32} },
5949 .block_erase = spi_block_erase_d8,
5950 }, {
5951 .eraseblocks = { {2 * 1024 * 1024, 1} },
5952 .block_erase = spi_block_erase_60,
5953 }, {
5954 .eraseblocks = { {2 * 1024 * 1024, 1} },
5955 .block_erase = spi_block_erase_c7,
5956 }
5957 },
5958 .printlock = spi_prettyprint_status_register_bp4_srwd,
5959 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5960 .write = spi_chip_write_256,
5961 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5962 .voltage = {1695, 1950},
5963 },
5964
5965 {
5966 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00005967 .name = "GD25LQ32",
5968 .bustype = BUS_SPI,
5969 .manufacture_id = GIGADEVICE_ID,
5970 .model_id = GIGADEVICE_GD25LQ32,
5971 .total_size = 4096,
5972 .page_size = 256,
5973 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5974 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5975 .tested = TEST_OK_PREW,
5976 .probe = probe_spi_rdid,
5977 .probe_timing = TIMING_ZERO,
5978 .block_erasers =
5979 {
5980 {
5981 .eraseblocks = { {4 * 1024, 1024} },
5982 .block_erase = spi_block_erase_20,
5983 }, {
5984 .eraseblocks = { {32 * 1024, 128} },
5985 .block_erase = spi_block_erase_52,
5986 }, {
5987 .eraseblocks = { {64 * 1024, 64} },
5988 .block_erase = spi_block_erase_d8,
5989 }, {
5990 .eraseblocks = { {4 * 1024 * 1024, 1} },
5991 .block_erase = spi_block_erase_60,
5992 }, {
5993 .eraseblocks = { {4 * 1024 * 1024, 1} },
5994 .block_erase = spi_block_erase_c7,
5995 }
5996 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005997 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00005998 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5999 .write = spi_chip_write_256,
Roman Titov95edc892015-04-03 21:29:04 +00006000 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6001 .voltage = {1695, 1950},
6002 },
6003
6004 {
6005 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10006006 .name = "GD25LQ40",
6007 .bustype = BUS_SPI,
6008 .manufacture_id = GIGADEVICE_ID,
6009 .model_id = GIGADEVICE_GD25LQ40,
6010 .total_size = 512,
6011 .page_size = 256,
6012 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6013 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6014 .tested = TEST_UNTESTED,
6015 .probe = probe_spi_rdid,
6016 .probe_timing = TIMING_ZERO,
6017 .block_erasers =
6018 {
6019 {
6020 .eraseblocks = { {4 * 1024, 128} },
6021 .block_erase = spi_block_erase_20,
6022 }, {
6023 .eraseblocks = { {32 * 1024, 16} },
6024 .block_erase = spi_block_erase_52,
6025 }, {
6026 .eraseblocks = { {64 * 1024, 8} },
6027 .block_erase = spi_block_erase_d8,
6028 }, {
6029 .eraseblocks = { {512 * 1024, 1} },
6030 .block_erase = spi_block_erase_60,
6031 }, {
6032 .eraseblocks = { {512 * 1024, 1} },
6033 .block_erase = spi_block_erase_c7,
6034 }
6035 },
6036 .printlock = spi_prettyprint_status_register_bp4_srwd,
6037 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6038 .write = spi_chip_write_256,
6039 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6040 .voltage = {1695, 1950},
6041 },
6042
6043 {
6044 .vendor = "GigaDevice",
Roman Titov95edc892015-04-03 21:29:04 +00006045 .name = "GD25LQ64(B)",
6046 .bustype = BUS_SPI,
6047 .manufacture_id = GIGADEVICE_ID,
6048 .model_id = GIGADEVICE_GD25LQ64,
6049 .total_size = 8192,
6050 .page_size = 256,
6051 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6052 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00006053 .tested = TEST_OK_PREW,
Roman Titov95edc892015-04-03 21:29:04 +00006054 .probe = probe_spi_rdid,
6055 .probe_timing = TIMING_ZERO,
6056 .block_erasers =
6057 {
6058 {
6059 .eraseblocks = { {4 * 1024, 2048} },
6060 .block_erase = spi_block_erase_20,
6061 }, {
6062 .eraseblocks = { {32 * 1024, 256} },
6063 .block_erase = spi_block_erase_52,
6064 }, {
6065 .eraseblocks = { {64 * 1024, 128} },
6066 .block_erase = spi_block_erase_d8,
6067 }, {
6068 .eraseblocks = { {8 * 1024 * 1024, 1} },
6069 .block_erase = spi_block_erase_60,
6070 }, {
6071 .eraseblocks = { {8 * 1024 * 1024, 1} },
6072 .block_erase = spi_block_erase_c7,
6073 }
6074 },
6075 .printlock = spi_prettyprint_status_register_bp4_srwd,
6076 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6077 .write = spi_chip_write_256,
6078 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6079 .voltage = {1695, 1950},
6080 },
6081
6082 {
6083 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10006084 .name = "GD25LQ80",
Roman Titov95edc892015-04-03 21:29:04 +00006085 .bustype = BUS_SPI,
6086 .manufacture_id = GIGADEVICE_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10006087 .model_id = GIGADEVICE_GD25LQ80,
6088 .total_size = 1024,
Roman Titov95edc892015-04-03 21:29:04 +00006089 .page_size = 256,
6090 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6091 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6092 .tested = TEST_UNTESTED,
6093 .probe = probe_spi_rdid,
6094 .probe_timing = TIMING_ZERO,
6095 .block_erasers =
6096 {
6097 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006098 .eraseblocks = { {4 * 1024, 256} },
Roman Titov95edc892015-04-03 21:29:04 +00006099 .block_erase = spi_block_erase_20,
6100 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006101 .eraseblocks = { {32 * 1024, 32} },
Roman Titov95edc892015-04-03 21:29:04 +00006102 .block_erase = spi_block_erase_52,
6103 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006104 .eraseblocks = { {64 * 1024, 16} },
Roman Titov95edc892015-04-03 21:29:04 +00006105 .block_erase = spi_block_erase_d8,
6106 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006107 .eraseblocks = { {1 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00006108 .block_erase = spi_block_erase_60,
6109 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006110 .eraseblocks = { {1 * 1024 * 1024, 1} },
Roman Titov95edc892015-04-03 21:29:04 +00006111 .block_erase = spi_block_erase_c7,
6112 }
6113 },
6114 .printlock = spi_prettyprint_status_register_bp4_srwd,
6115 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6116 .write = spi_chip_write_256,
6117 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6118 .voltage = {1695, 1950},
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006119 },
6120
6121 {
6122 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006123 .name = "GD25Q10",
6124 .bustype = BUS_SPI,
6125 .manufacture_id = GIGADEVICE_ID,
6126 .model_id = GIGADEVICE_GD25Q10,
6127 .total_size = 128,
6128 .page_size = 256,
6129 .feature_bits = FEATURE_WRSR_WREN,
6130 .tested = TEST_UNTESTED,
6131 .probe = probe_spi_rdid,
6132 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10006133 .block_erasers =
6134 {
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006135 {
6136 .eraseblocks = { {4 * 1024, 32} },
6137 .block_erase = spi_block_erase_20,
6138 }, {
6139 .eraseblocks = { {32 * 1024, 4} },
6140 .block_erase = spi_block_erase_52,
6141 }, {
6142 .eraseblocks = { {64 * 1024, 2} },
6143 .block_erase = spi_block_erase_d8,
6144 }, {
6145 .eraseblocks = { {128 * 1024, 1} },
6146 .block_erase = spi_block_erase_60,
6147 }, {
6148 .eraseblocks = { {128 * 1024, 1} },
6149 .block_erase = spi_block_erase_c7,
6150 }
6151 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006152 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006153 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6154 .write = spi_chip_write_256,
6155 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6156 .voltage = {2700, 3600},
6157 },
6158
6159 {
6160 .vendor = "GigaDevice",
Alan Green4f009122019-08-26 10:45:18 +10006161 .name = "GD25Q127C/GD25Q128C",
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006162 .bustype = BUS_SPI,
6163 .manufacture_id = GIGADEVICE_ID,
6164 .model_id = GIGADEVICE_GD25Q128,
6165 .total_size = 16384,
6166 .page_size = 256,
6167 /* OTP: 1536B total; read 0x48; write 0x42, erase 0x44 */
6168 /* QPI: enable 0x38, disable 0xFF */
6169 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Angel Ponsbce364c2018-09-30 20:04:14 +02006170 .tested = TEST_OK_PREW,
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006171 .probe = probe_spi_rdid,
6172 .probe_timing = TIMING_ZERO,
6173 .block_erasers =
6174 {
6175 {
6176 .eraseblocks = { {4 * 1024, 4096} },
6177 .block_erase = spi_block_erase_20,
6178 }, {
6179 .eraseblocks = { {32 * 1024, 512} },
6180 .block_erase = spi_block_erase_52,
6181 }, {
6182 .eraseblocks = { {64 * 1024, 256} },
6183 .block_erase = spi_block_erase_d8,
6184 }, {
6185 .eraseblocks = { {16 * 1024 * 1024, 1} },
6186 .block_erase = spi_block_erase_60,
6187 }, {
6188 .eraseblocks = { {16 * 1024 * 1024, 1} },
6189 .block_erase = spi_block_erase_c7,
6190 }
6191 },
6192 /* TODO: 2nd status reg (read 0x35, write 0x31) and 3rd status reg (read 0x15, write 0x11) */
6193 .printlock = spi_prettyprint_status_register_bp4_srwd,
6194 .unlock = spi_disable_blockprotect_bp4_srwd,
6195 .write = spi_chip_write_256,
6196 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6197 .voltage = {2700, 3600},
6198 },
6199
6200 {
6201 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10006202 .name = "GD25Q16(B)",
6203 .bustype = BUS_SPI,
6204 .manufacture_id = GIGADEVICE_ID,
6205 .model_id = GIGADEVICE_GD25Q16,
6206 .total_size = 2048,
6207 .page_size = 256,
6208 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
6209 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6210 .tested = TEST_OK_PREW,
6211 .probe = probe_spi_rdid,
6212 .probe_timing = TIMING_ZERO,
6213 .block_erasers =
6214 {
6215 {
6216 .eraseblocks = { {4 * 1024, 512} },
6217 .block_erase = spi_block_erase_20,
6218 }, {
6219 .eraseblocks = { {32 * 1024, 64} },
6220 .block_erase = spi_block_erase_52,
6221 }, {
6222 .eraseblocks = { {64 * 1024, 32} },
6223 .block_erase = spi_block_erase_d8,
6224 }, {
6225 .eraseblocks = { {2 * 1024 * 1024, 1} },
6226 .block_erase = spi_block_erase_60,
6227 }, {
6228 .eraseblocks = { {2 * 1024 * 1024, 1} },
6229 .block_erase = spi_block_erase_c7,
6230 }
6231 },
6232 .printlock = spi_prettyprint_status_register_bp4_srwd,
6233 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6234 .write = spi_chip_write_256,
6235 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6236 .voltage = {2700, 3600},
6237 },
6238
6239 {
6240 .vendor = "GigaDevice",
6241 .name = "GD25Q20(B)",
6242 .bustype = BUS_SPI,
6243 .manufacture_id = GIGADEVICE_ID,
6244 .model_id = GIGADEVICE_GD25Q20,
6245 .total_size = 256,
6246 .page_size = 256,
6247 .feature_bits = FEATURE_WRSR_WREN,
6248 .tested = TEST_OK_PREW,
6249 .probe = probe_spi_rdid,
6250 .probe_timing = TIMING_ZERO,
6251 .block_erasers =
6252 {
6253 {
6254 .eraseblocks = { {4 * 1024, 64} },
6255 .block_erase = spi_block_erase_20,
6256 }, {
6257 .eraseblocks = { {32 * 1024, 8} },
6258 .block_erase = spi_block_erase_52,
6259 }, {
6260 .eraseblocks = { {64 * 1024, 4} },
6261 .block_erase = spi_block_erase_d8,
6262 }, {
6263 .eraseblocks = { {256 * 1024, 1} },
6264 .block_erase = spi_block_erase_60,
6265 }, {
6266 .eraseblocks = { {256 * 1024, 1} },
6267 .block_erase = spi_block_erase_c7,
6268 }
6269 },
6270 .printlock = spi_prettyprint_status_register_bp4_srwd,
6271 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6272 .write = spi_chip_write_256,
6273 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6274 .voltage = {2700, 3600},
6275 },
6276
6277 {
6278 .vendor = "GigaDevice",
Alan Green86fc9cf2019-08-26 15:02:12 +10006279 .name = "GD25Q256D",
6280 .bustype = BUS_SPI,
6281 .manufacture_id = GIGADEVICE_ID,
6282 .model_id = GIGADEVICE_GD25Q256D,
6283 .total_size = 32768,
6284 .page_size = 256,
6285 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
6286 .tested = TEST_UNTESTED,
6287 .probe = probe_spi_rdid,
6288 .probe_timing = TIMING_ZERO,
6289 .block_erasers =
6290 {
6291 {
6292 .eraseblocks = { {4 * 1024, 8192} },
6293 .block_erase = spi_block_erase_20,
6294 }, {
6295 .eraseblocks = { {32 * 1024, 1024} },
6296 .block_erase = spi_block_erase_52,
6297 }, {
6298 .eraseblocks = { {64 * 1024, 512} },
6299 .block_erase = spi_block_erase_d8,
6300 }, {
6301 .eraseblocks = { {32 * 1024 * 1024, 1} },
6302 .block_erase = spi_block_erase_60,
6303 }, {
6304 .eraseblocks = { {32 * 1024 * 1024, 1} },
6305 .block_erase = spi_block_erase_c7,
6306 }
6307 },
6308 .printlock = spi_prettyprint_status_register_bp3_srwd,
6309 .unlock = spi_disable_blockprotect,
6310 .write = spi_chip_write_256,
6311 .read = spi_chip_read,
6312 .voltage = {2700, 3600},
6313 },
6314
6315 {
6316 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10006317 .name = "GD25Q32(B)",
6318 .bustype = BUS_SPI,
6319 .manufacture_id = GIGADEVICE_ID,
6320 .model_id = GIGADEVICE_GD25Q32,
6321 .total_size = 4096,
6322 .page_size = 256,
6323 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6324 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6325 .tested = TEST_OK_PREW,
6326 .probe = probe_spi_rdid,
6327 .probe_timing = TIMING_ZERO,
6328 .block_erasers =
6329 {
6330 {
6331 .eraseblocks = { {4 * 1024, 1024} },
6332 .block_erase = spi_block_erase_20,
6333 }, {
6334 .eraseblocks = { {32 * 1024, 128} },
6335 .block_erase = spi_block_erase_52,
6336 }, {
6337 .eraseblocks = { {64 * 1024, 64} },
6338 .block_erase = spi_block_erase_d8,
6339 }, {
6340 .eraseblocks = { {4 * 1024 * 1024, 1} },
6341 .block_erase = spi_block_erase_60,
6342 }, {
6343 .eraseblocks = { {4 * 1024 * 1024, 1} },
6344 .block_erase = spi_block_erase_c7,
6345 }
6346 },
6347 .printlock = spi_prettyprint_status_register_bp4_srwd,
6348 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6349 .write = spi_chip_write_256,
6350 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6351 .voltage = {2700, 3600},
6352 },
6353
6354 {
6355 .vendor = "GigaDevice",
6356 .name = "GD25Q40(B)",
6357 .bustype = BUS_SPI,
6358 .manufacture_id = GIGADEVICE_ID,
6359 .model_id = GIGADEVICE_GD25Q40,
6360 .total_size = 512,
6361 .page_size = 256,
6362 .feature_bits = FEATURE_WRSR_WREN,
6363 .tested = TEST_UNTESTED,
6364 .probe = probe_spi_rdid,
6365 .probe_timing = TIMING_ZERO,
6366 .block_erasers =
6367 {
6368 {
6369 .eraseblocks = { {4 * 1024, 128} },
6370 .block_erase = spi_block_erase_20,
6371 }, {
6372 .eraseblocks = { {32 * 1024, 16} },
6373 .block_erase = spi_block_erase_52,
6374 }, {
6375 .eraseblocks = { {64 * 1024, 8} },
6376 .block_erase = spi_block_erase_d8,
6377 }, {
6378 .eraseblocks = { {512 * 1024, 1} },
6379 .block_erase = spi_block_erase_60,
6380 }, {
6381 .eraseblocks = { {512 * 1024, 1} },
6382 .block_erase = spi_block_erase_c7,
6383 }
6384 },
6385 .printlock = spi_prettyprint_status_register_bp4_srwd,
6386 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6387 .write = spi_chip_write_256,
6388 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6389 .voltage = {2700, 3600},
6390 },
6391
6392 {
6393 .vendor = "GigaDevice",
6394 .name = "GD25Q512",
6395 .bustype = BUS_SPI,
6396 .manufacture_id = GIGADEVICE_ID,
6397 .model_id = GIGADEVICE_GD25Q512,
6398 .total_size = 64,
6399 .page_size = 256,
6400 .feature_bits = FEATURE_WRSR_WREN,
6401 .tested = TEST_OK_PREW,
6402 .probe = probe_spi_rdid,
6403 .probe_timing = TIMING_ZERO,
6404 .block_erasers =
6405 {
6406 {
6407 .eraseblocks = { {4 * 1024, 16} },
6408 .block_erase = spi_block_erase_20,
6409 }, {
6410 .eraseblocks = { {32 * 1024, 2} },
6411 .block_erase = spi_block_erase_52,
6412 }, {
6413 .eraseblocks = { {64 * 1024, 1} },
6414 .block_erase = spi_block_erase_60,
6415 }, {
6416 .eraseblocks = { {64 * 1024, 1} },
6417 .block_erase = spi_block_erase_c7,
6418 }
6419 },
6420 .printlock = spi_prettyprint_status_register_bp4_srwd,
6421 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6422 .write = spi_chip_write_256,
6423 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6424 .voltage = {2700, 3600},
6425 },
6426
6427 {
6428 .vendor = "GigaDevice",
6429 .name = "GD25Q64(B)",
6430 .bustype = BUS_SPI,
6431 .manufacture_id = GIGADEVICE_ID,
6432 .model_id = GIGADEVICE_GD25Q64,
6433 .total_size = 8192,
6434 .page_size = 256,
6435 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6436 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6437 .tested = TEST_OK_PREW,
6438 .probe = probe_spi_rdid,
6439 .probe_timing = TIMING_ZERO,
6440 .block_erasers =
6441 {
6442 {
6443 .eraseblocks = { {4 * 1024, 2048} },
6444 .block_erase = spi_block_erase_20,
6445 }, {
6446 .eraseblocks = { {32 * 1024, 256} },
6447 .block_erase = spi_block_erase_52,
6448 }, {
6449 .eraseblocks = { {64 * 1024, 128} },
6450 .block_erase = spi_block_erase_d8,
6451 }, {
6452 .eraseblocks = { {8 * 1024 * 1024, 1} },
6453 .block_erase = spi_block_erase_60,
6454 }, {
6455 .eraseblocks = { {8 * 1024 * 1024, 1} },
6456 .block_erase = spi_block_erase_c7,
6457 }
6458 },
6459 .printlock = spi_prettyprint_status_register_bp4_srwd,
6460 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6461 .write = spi_chip_write_256,
6462 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6463 .voltage = {2700, 3600},
6464 },
6465
6466 {
6467 .vendor = "GigaDevice",
6468 .name = "GD25Q80(B)",
6469 .bustype = BUS_SPI,
6470 .manufacture_id = GIGADEVICE_ID,
6471 .model_id = GIGADEVICE_GD25Q80,
6472 .total_size = 1024,
6473 .page_size = 256,
6474 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
6475 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6476 .tested = TEST_OK_PREW,
6477 .probe = probe_spi_rdid,
6478 .probe_timing = TIMING_ZERO,
6479 .block_erasers =
6480 {
6481 {
6482 .eraseblocks = { {4 * 1024, 256} },
6483 .block_erase = spi_block_erase_20,
6484 }, {
6485 .eraseblocks = { {32 * 1024, 32} },
6486 .block_erase = spi_block_erase_52,
6487 }, {
6488 .eraseblocks = { {64 * 1024, 16} },
6489 .block_erase = spi_block_erase_d8,
6490 }, {
6491 .eraseblocks = { {1024 * 1024, 1} },
6492 .block_erase = spi_block_erase_60,
6493 }, {
6494 .eraseblocks = { {1024 * 1024, 1} },
6495 .block_erase = spi_block_erase_c7,
6496 }
6497 },
6498 .printlock = spi_prettyprint_status_register_bp4_srwd,
6499 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6500 .write = spi_chip_write_256,
6501 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6502 .voltage = {2700, 3600},
6503 },
6504
6505 {
6506 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006507 .name = "GD25T80",
6508 .bustype = BUS_SPI,
6509 .manufacture_id = GIGADEVICE_ID,
6510 .model_id = GIGADEVICE_GD25T80,
6511 .total_size = 1024,
6512 .page_size = 256,
6513 /* OTP: 256B total; enter 0x3A */
6514 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6515 .tested = TEST_UNTESTED,
6516 .probe = probe_spi_rdid,
6517 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +10006518 .block_erasers =
6519 {
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006520 {
6521 .eraseblocks = { {4 * 1024, 256} },
6522 .block_erase = spi_block_erase_20,
6523 }, {
6524 .eraseblocks = { {64 * 1024, 16} },
6525 .block_erase = spi_block_erase_52,
6526 }, {
6527 .eraseblocks = { {64 * 1024, 16} },
6528 .block_erase = spi_block_erase_d8,
6529 }, {
6530 .eraseblocks = { {1024 * 1024, 1} },
6531 .block_erase = spi_block_erase_60,
6532 }, {
6533 .eraseblocks = { {1024 * 1024, 1} },
6534 .block_erase = spi_block_erase_c7,
6535 }
6536 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006537 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006538 .unlock = spi_disable_blockprotect,
6539 .write = spi_chip_write_256,
6540 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006541 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006542 },
6543
6544 {
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006545 .vendor = "GigaDevice",
Alan Green1f9cc7d2019-07-01 11:10:45 +10006546 .name = "GD25VQ16C",
6547 .bustype = BUS_SPI,
6548 .manufacture_id = GIGADEVICE_ID,
6549 .model_id = GIGADEVICE_GD25VQ16C,
6550 .total_size = 2 * 1024,
6551 .page_size = 256,
6552 /* Supports SFDP */
6553 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6554 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6555 .tested = TEST_UNTESTED,
6556 .probe = probe_spi_rdid,
6557 .probe_timing = TIMING_ZERO,
6558 .block_erasers =
6559 {
6560 {
6561 .eraseblocks = { { 4 * 1024, 512} },
6562 .block_erase = spi_block_erase_20,
6563 }, {
6564 .eraseblocks = { { 32 * 1024, 64} },
6565 .block_erase = spi_block_erase_52,
6566 }, {
6567 .eraseblocks = { { 64 * 1024, 32} },
6568 .block_erase = spi_block_erase_d8,
6569 }, {
6570 .eraseblocks = { {2 * 1024 * 1024, 1} },
6571 .block_erase = spi_block_erase_60,
6572 }, {
6573 .eraseblocks = { {2 * 1024 * 1024, 1} },
6574 .block_erase = spi_block_erase_c7,
6575 }
6576 },
6577 .printlock = spi_prettyprint_status_register_bp4_srwd,
6578 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6579 .write = spi_chip_write_256,
6580 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6581 .voltage = {2300, 3600},
6582 },
6583
6584 {
6585 .vendor = "GigaDevice",
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006586 .name = "GD25VQ21B",
6587 .bustype = BUS_SPI,
6588 .manufacture_id = GIGADEVICE_ID,
6589 .model_id = GIGADEVICE_GD25VQ21B,
6590 .total_size = 256,
6591 .page_size = 256,
6592 /* OTP: 1536B total; read 0x48, write 0x42, erase 0x44 */
6593 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6594 .tested = TEST_UNTESTED,
6595 .probe = probe_spi_rdid,
6596 .probe_timing = TIMING_ZERO,
6597 .block_erasers =
6598 {
6599 {
6600 .eraseblocks = { { 4 * 1024, 64} },
6601 .block_erase = spi_block_erase_20,
6602 }, {
6603 .eraseblocks = { { 32 * 1024, 8} },
6604 .block_erase = spi_block_erase_52,
6605 }, {
6606 .eraseblocks = { { 64 * 1024, 4} },
6607 .block_erase = spi_block_erase_d8,
6608 }, {
6609 .eraseblocks = { {256 * 1024, 1} },
6610 .block_erase = spi_block_erase_60,
6611 }, {
6612 .eraseblocks = { {256 * 1024, 1} },
6613 .block_erase = spi_block_erase_c7,
6614 }
6615 },
6616 .printlock = spi_prettyprint_status_register_bp4_srwd,
6617 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6618 .write = spi_chip_write_256,
6619 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6620 .voltage = {2300, 3600},
6621 },
6622
6623 {
6624 .vendor = "GigaDevice",
6625 .name = "GD25VQ40C",
6626 .bustype = BUS_SPI,
6627 .manufacture_id = GIGADEVICE_ID,
6628 .model_id = GIGADEVICE_GD25VQ41B,
6629 .total_size = 512,
6630 .page_size = 256,
6631 /* Supports SFDP */
6632 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6633 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6634 .tested = TEST_UNTESTED,
6635 .probe = probe_spi_rdid,
6636 .probe_timing = TIMING_ZERO,
6637 .block_erasers =
6638 {
6639 {
6640 .eraseblocks = { { 4 * 1024, 128} },
6641 .block_erase = spi_block_erase_20,
6642 }, {
6643 .eraseblocks = { { 32 * 1024, 16} },
6644 .block_erase = spi_block_erase_52,
6645 }, {
6646 .eraseblocks = { { 64 * 1024, 8} },
6647 .block_erase = spi_block_erase_d8,
6648 }, {
6649 .eraseblocks = { {512 * 1024, 1} },
6650 .block_erase = spi_block_erase_60,
6651 }, {
6652 .eraseblocks = { {512 * 1024, 1} },
6653 .block_erase = spi_block_erase_c7,
6654 }
6655 },
6656 .printlock = spi_prettyprint_status_register_bp4_srwd,
6657 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6658 .write = spi_chip_write_256,
6659 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6660 .voltage = {2300, 3600},
6661 },
6662
6663 {
6664 .vendor = "GigaDevice",
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006665 .name = "GD25VQ41B",
6666 .bustype = BUS_SPI,
6667 .manufacture_id = GIGADEVICE_ID,
6668 .model_id = GIGADEVICE_GD25VQ41B,
6669 .total_size = 512,
6670 .page_size = 256,
6671 /* OTP: 1536B total; read 0x48, write 0x42, erase 0x44 */
6672 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner0be072c2016-03-13 15:16:30 +00006673 .tested = TEST_OK_PREW,
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006674 .probe = probe_spi_rdid,
6675 .probe_timing = TIMING_ZERO,
Stefan Tauner0be072c2016-03-13 15:16:30 +00006676 .block_erasers =
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006677 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00006678 {
6679 .eraseblocks = { { 4 * 1024, 128} },
6680 .block_erase = spi_block_erase_20,
6681 }, {
6682 .eraseblocks = { { 32 * 1024, 16} },
6683 .block_erase = spi_block_erase_52,
6684 }, {
6685 .eraseblocks = { { 64 * 1024, 8} },
6686 .block_erase = spi_block_erase_d8,
6687 }, {
6688 .eraseblocks = { {512 * 1024, 1} },
6689 .block_erase = spi_block_erase_60,
6690 }, {
6691 .eraseblocks = { {512 * 1024, 1} },
6692 .block_erase = spi_block_erase_c7,
6693 }
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006694 },
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006695 .printlock = spi_prettyprint_status_register_bp4_srwd,
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006696 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6697 .write = spi_chip_write_256,
6698 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6699 .voltage = {2300, 3600},
6700 },
6701
6702 {
6703 .vendor = "GigaDevice",
6704 .name = "GD25VQ80C",
6705 .bustype = BUS_SPI,
6706 .manufacture_id = GIGADEVICE_ID,
6707 .model_id = GIGADEVICE_GD25VQ80C,
6708 .total_size = 1024,
6709 .page_size = 256,
6710 /* Supports SFDP */
6711 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6712 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6713 .tested = TEST_UNTESTED,
6714 .probe = probe_spi_rdid,
6715 .probe_timing = TIMING_ZERO,
6716 .block_erasers =
6717 {
6718 {
6719 .eraseblocks = { { 4 * 1024, 256} },
6720 .block_erase = spi_block_erase_20,
6721 }, {
6722 .eraseblocks = { { 32 * 1024, 32} },
6723 .block_erase = spi_block_erase_52,
6724 }, {
6725 .eraseblocks = { { 64 * 1024, 16} },
6726 .block_erase = spi_block_erase_d8,
6727 }, {
6728 .eraseblocks = { {1024 * 1024, 1} },
6729 .block_erase = spi_block_erase_60,
6730 }, {
6731 .eraseblocks = { {1024 * 1024, 1} },
6732 .block_erase = spi_block_erase_c7,
6733 }
6734 },
6735 .printlock = spi_prettyprint_status_register_bp4_srwd,
6736 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6737 .write = spi_chip_write_256,
6738 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6739 .voltage = {2300, 3600},
6740 },
6741
6742 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006743 .vendor = "Hyundai",
6744 .name = "HY29F002B",
6745 .bustype = BUS_PARALLEL,
6746 .manufacture_id = HYUNDAI_ID,
6747 .model_id = HYUNDAI_HY29F002B,
6748 .total_size = 256,
6749 .page_size = 256 * 1024,
6750 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006751 .tested = TEST_UNTESTED,
Alan Green1f9cc7d2019-07-01 11:10:45 +10006752 .probe = probe_jedec,
6753 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006754 .block_erasers =
6755 {
6756 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006757 .eraseblocks = {
6758 {16 * 1024, 1},
6759 {8 * 1024, 2},
6760 {32 * 1024, 1},
6761 {64 * 1024, 3},
6762 },
6763 .block_erase = erase_sector_jedec,
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006764 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10006765 .eraseblocks = { {256 * 1024, 1} },
6766 .block_erase = erase_chip_block_jedec,
6767 },
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006768 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10006769 .write = write_jedec_1,
6770 .read = read_memmapped,
6771 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006772 },
6773
6774 {
David Borgc96a8bd2010-06-21 16:12:22 +00006775 .vendor = "Hyundai",
6776 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006777 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00006778 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006779 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00006780 .total_size = 256,
6781 .page_size = 256 * 1024,
6782 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006783 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00006784 .probe = probe_jedec,
6785 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6786 .block_erasers =
6787 {
6788 {
6789 .eraseblocks = {
6790 {64 * 1024, 3},
6791 {32 * 1024, 1},
6792 {8 * 1024, 2},
6793 {16 * 1024, 1},
6794 },
6795 .block_erase = erase_sector_jedec,
6796 }, {
6797 .eraseblocks = { {256 * 1024, 1} },
6798 .block_erase = erase_chip_block_jedec,
6799 },
6800 },
6801 .write = write_jedec_1,
6802 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006803 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00006804 },
6805
6806 {
6807 .vendor = "Hyundai",
Joshua Roysf1324e02010-09-16 00:51:51 +00006808 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006809 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00006810 .manufacture_id = HYUNDAI_ID,
6811 .model_id = HYUNDAI_HY29F040A,
6812 .total_size = 512,
6813 .page_size = 64 * 1024,
6814 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
6815 .tested = TEST_UNTESTED,
6816 .probe = probe_jedec,
6817 .probe_timing = TIMING_ZERO,
6818 .block_erasers =
6819 {
6820 {
6821 .eraseblocks = { {64 * 1024, 8} },
6822 .block_erase = erase_sector_jedec,
6823 }, {
6824 .eraseblocks = { {512 * 1024, 1} },
6825 .block_erase = erase_chip_block_jedec,
6826 },
6827 },
6828 .write = write_jedec_1,
6829 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006830 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00006831 },
6832
6833 {
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00006834 .vendor = "ISSI",
Angel Pons2ef47f32018-09-30 16:47:30 +02006835 .name = "IS25LP064",
6836 .bustype = BUS_SPI,
6837 .manufacture_id = ISSI_ID_SPI,
6838 .model_id = ISSI_IS25LP064,
6839 .total_size = 8192,
6840 .page_size = 256,
6841 /* OTP: 1024B total; read 0x48; write 0x42 */
6842 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6843 .tested = TEST_UNTESTED,
6844 .probe = probe_spi_rdid,
6845 .probe_timing = TIMING_ZERO,
6846 .block_erasers =
6847 {
6848 {
6849 .eraseblocks = { {4 * 1024, 2048} },
6850 .block_erase = spi_block_erase_20,
6851 }, {
6852 .eraseblocks = { {4 * 1024, 2048} },
6853 .block_erase = spi_block_erase_d7,
6854 }, {
6855 .eraseblocks = { {32 * 1024, 256} },
6856 .block_erase = spi_block_erase_52,
6857 }, {
6858 .eraseblocks = { {64 * 1024, 128} },
6859 .block_erase = spi_block_erase_d8,
6860 }, {
6861 .eraseblocks = { {8 * 1024 * 1024, 1} },
6862 .block_erase = spi_block_erase_60,
6863 }, {
6864 .eraseblocks = { {8 * 1024 * 1024, 1} },
6865 .block_erase = spi_block_erase_c7,
6866 }
6867 },
6868 .unlock = spi_disable_blockprotect,
6869 .write = spi_chip_write_256,
6870 .read = spi_chip_read,
6871 .voltage = {2300, 3600},
6872 },
6873
6874 {
6875 .vendor = "ISSI",
David Hendricks3083ed92017-05-02 13:25:56 -07006876 .name = "IS25LP128",
6877 .bustype = BUS_SPI,
6878 .manufacture_id = ISSI_ID_SPI,
6879 .model_id = ISSI_IS25LP128,
6880 .total_size = 16384,
6881 .page_size = 256,
6882 /* OTP: 1024B total; read 0x48; write 0x42 */
6883 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6884 .tested = TEST_OK_PREW,
6885 .probe = probe_spi_rdid,
6886 .probe_timing = TIMING_ZERO,
6887 .block_erasers =
6888 {
6889 {
6890 .eraseblocks = { {4 * 1024, 4096} },
6891 .block_erase = spi_block_erase_20,
6892 }, {
6893 .eraseblocks = { {4 * 1024, 4096} },
6894 .block_erase = spi_block_erase_d7,
6895 }, {
6896 .eraseblocks = { {32 * 1024, 512} },
6897 .block_erase = spi_block_erase_52,
6898 }, {
6899 .eraseblocks = { {64 * 1024, 256} },
6900 .block_erase = spi_block_erase_d8,
6901 }, {
6902 .eraseblocks = { {16 * 1024 * 1024, 1} },
6903 .block_erase = spi_block_erase_60,
6904 }, {
6905 .eraseblocks = { {16 * 1024 * 1024, 1} },
6906 .block_erase = spi_block_erase_c7,
6907 }
6908 },
6909 .unlock = spi_disable_blockprotect,
6910 .write = spi_chip_write_256,
6911 .read = spi_chip_read,
6912 .voltage = {2300, 3600},
6913 },
6914
6915 {
6916 .vendor = "ISSI",
David Hendricks61818dc2018-10-28 01:02:21 +00006917 .name = "IS25LP256",
6918 .bustype = BUS_SPI,
6919 .manufacture_id = ISSI_ID_SPI,
6920 .model_id = ISSI_IS25LP256,
6921 .total_size = 32768,
6922 .page_size = 256,
6923 /* supports SFDP */
6924 /* OTP: 1024B total; read 0x68; write 0x62, erase 0x64, read ID 0x4B */
6925 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
6926 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA | FEATURE_4BA_ENTER_EAR7,
6927 .tested = TEST_OK_PREW,
6928 .probe = probe_spi_rdid,
6929 .probe_timing = TIMING_ZERO,
6930 .block_erasers =
6931 {
6932 {
6933 .eraseblocks = { {4 * 1024, 8192} },
6934 .block_erase = spi_block_erase_21,
6935 }, {
6936 .eraseblocks = { {4 * 1024, 8192} },
6937 .block_erase = spi_block_erase_20,
6938 /* could also use spi_block_erase_d7 */
6939 }, {
6940 .eraseblocks = { {32 * 1024, 1024} },
6941 .block_erase = spi_block_erase_5c,
6942 }, {
6943 .eraseblocks = { {32 * 1024, 1024} },
6944 .block_erase = spi_block_erase_52,
6945 }, {
6946 .eraseblocks = { {64 * 1024, 512} },
6947 .block_erase = spi_block_erase_dc,
6948 }, {
6949 .eraseblocks = { {64 * 1024, 512} },
6950 .block_erase = spi_block_erase_d8,
6951 }, {
6952 .eraseblocks = { {32 * 1024 * 1024, 1} },
6953 .block_erase = spi_block_erase_60,
6954 }, {
6955 .eraseblocks = { {32 * 1024 * 1024, 1} },
6956 .block_erase = spi_block_erase_c7,
6957 }
6958 },
6959 .unlock = spi_disable_blockprotect,
6960 .write = spi_chip_write_256,
6961 .read = spi_chip_read,
6962 .voltage = {2300, 3600},
6963 },
6964
6965 {
6966 .vendor = "ISSI",
Nico Huberb27b8d12018-10-02 20:46:21 +02006967 .name = "IS25WP032",
6968 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +10006969 .manufacture_id = ISSI_ID_SPI,
Nico Huberb27b8d12018-10-02 20:46:21 +02006970 .model_id = ISSI_IS25WP032,
6971 .total_size = 4096,
6972 .page_size = 256,
6973 /* OTP: 1024B total; read 0x48; write 0x42 */
6974 /* QPI enable 0x35, disable 0xF5 */
6975 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6976 .tested = TEST_UNTESTED,
6977 .probe = probe_spi_rdid,
6978 .probe_timing = TIMING_ZERO,
6979 .block_erasers =
6980 {
6981 {
6982 .eraseblocks = { {4 * 1024, 1024} },
6983 .block_erase = spi_block_erase_20,
6984 }, {
6985 .eraseblocks = { {4 * 1024, 1024} },
6986 .block_erase = spi_block_erase_d7,
6987 }, {
6988 .eraseblocks = { {32 * 1024, 128} },
6989 .block_erase = spi_block_erase_52,
6990 }, {
6991 .eraseblocks = { {64 * 1024, 64} },
6992 .block_erase = spi_block_erase_d8,
6993 }, {
6994 .eraseblocks = { {4 * 1024 * 1024, 1} },
6995 .block_erase = spi_block_erase_60,
6996 }, {
6997 .eraseblocks = { {4 * 1024 * 1024, 1} },
6998 .block_erase = spi_block_erase_c7,
6999 }
7000 },
7001 .unlock = spi_disable_blockprotect,
7002 .write = spi_chip_write_256,
7003 .read = spi_chip_read,
7004 .voltage = {1650, 1950},
7005 },
7006
7007 {
7008 .vendor = "ISSI",
7009 .name = "IS25WP064",
7010 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +10007011 .manufacture_id = ISSI_ID_SPI,
Nico Huberb27b8d12018-10-02 20:46:21 +02007012 .model_id = ISSI_IS25WP064,
7013 .total_size = 8192,
7014 .page_size = 256,
7015 /* OTP: 1024B total; read 0x48; write 0x42 */
7016 /* QPI enable 0x35, disable 0xF5 */
7017 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
7018 .tested = TEST_OK_PREW,
7019 .probe = probe_spi_rdid,
7020 .probe_timing = TIMING_ZERO,
7021 .block_erasers =
7022 {
7023 {
7024 .eraseblocks = { {4 * 1024, 2048} },
7025 .block_erase = spi_block_erase_20,
7026 }, {
7027 .eraseblocks = { {4 * 1024, 2048} },
7028 .block_erase = spi_block_erase_d7,
7029 }, {
7030 .eraseblocks = { {32 * 1024, 256} },
7031 .block_erase = spi_block_erase_52,
7032 }, {
7033 .eraseblocks = { {64 * 1024, 128} },
7034 .block_erase = spi_block_erase_d8,
7035 }, {
7036 .eraseblocks = { {8 * 1024 * 1024, 1} },
7037 .block_erase = spi_block_erase_60,
7038 }, {
7039 .eraseblocks = { {8 * 1024 * 1024, 1} },
7040 .block_erase = spi_block_erase_c7,
7041 }
7042 },
7043 .unlock = spi_disable_blockprotect,
7044 .write = spi_chip_write_256,
7045 .read = spi_chip_read,
7046 .voltage = {1650, 1950},
7047 },
7048
7049 {
7050 .vendor = "ISSI",
David Hendricks3083ed92017-05-02 13:25:56 -07007051 .name = "IS25WP128",
7052 .bustype = BUS_SPI,
7053 .manufacture_id = ISSI_ID_SPI,
7054 .model_id = ISSI_IS25WP128,
7055 .total_size = 16384,
7056 .page_size = 256,
7057 /* OTP: 1024B total; read 0x48; write 0x42 */
Nico Huberb27b8d12018-10-02 20:46:21 +02007058 /* QPI enable 0x35, disable 0xF5 */
7059 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
David Hendricks3083ed92017-05-02 13:25:56 -07007060 .tested = TEST_OK_PREW,
7061 .probe = probe_spi_rdid,
7062 .probe_timing = TIMING_ZERO,
7063 .block_erasers =
7064 {
7065 {
7066 .eraseblocks = { {4 * 1024, 4096} },
7067 .block_erase = spi_block_erase_20,
7068 }, {
7069 .eraseblocks = { {4 * 1024, 4096} },
7070 .block_erase = spi_block_erase_d7,
7071 }, {
7072 .eraseblocks = { {32 * 1024, 512} },
7073 .block_erase = spi_block_erase_52,
7074 }, {
7075 .eraseblocks = { {64 * 1024, 256} },
7076 .block_erase = spi_block_erase_d8,
7077 }, {
7078 .eraseblocks = { {16 * 1024 * 1024, 1} },
7079 .block_erase = spi_block_erase_60,
7080 }, {
7081 .eraseblocks = { {16 * 1024 * 1024, 1} },
7082 .block_erase = spi_block_erase_c7,
7083 }
7084 },
7085 .unlock = spi_disable_blockprotect,
7086 .write = spi_chip_write_256,
7087 .read = spi_chip_read,
7088 .voltage = {1650, 1950},
7089 },
7090
7091 {
7092 .vendor = "ISSI",
David Hendricks61818dc2018-10-28 01:02:21 +00007093 .name = "IS25WP256",
7094 .bustype = BUS_SPI,
7095 .manufacture_id = ISSI_ID_SPI,
7096 .model_id = ISSI_IS25WP256,
7097 .total_size = 32768,
7098 .page_size = 256,
7099 /* supports SFDP */
7100 /* OTP: 1024B total; read 0x68; write 0x62, erase 0x64, read ID 0x4B */
7101 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
7102 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA | FEATURE_4BA_ENTER_EAR7,
7103 .tested = TEST_OK_PREW,
7104 .probe = probe_spi_rdid,
7105 .probe_timing = TIMING_ZERO,
7106 .block_erasers =
7107 {
7108 {
7109 .eraseblocks = { {4 * 1024, 8192} },
7110 .block_erase = spi_block_erase_21,
7111 }, {
7112 .eraseblocks = { {4 * 1024, 8192} },
7113 .block_erase = spi_block_erase_20,
7114 /* could also use spi_block_erase_d7 */
7115 }, {
7116 .eraseblocks = { {32 * 1024, 1024} },
7117 .block_erase = spi_block_erase_5c,
7118 }, {
7119 .eraseblocks = { {32 * 1024, 1024} },
7120 .block_erase = spi_block_erase_52,
7121 }, {
7122 .eraseblocks = { {64 * 1024, 512} },
7123 .block_erase = spi_block_erase_dc,
7124 }, {
7125 .eraseblocks = { {64 * 1024, 512} },
7126 .block_erase = spi_block_erase_d8,
7127 }, {
7128 .eraseblocks = { {32 * 1024 * 1024, 1} },
7129 .block_erase = spi_block_erase_60,
7130 }, {
7131 .eraseblocks = { {32 * 1024 * 1024, 1} },
7132 .block_erase = spi_block_erase_c7,
7133 }
7134 },
7135 .unlock = spi_disable_blockprotect,
7136 .write = spi_chip_write_256,
7137 .read = spi_chip_read,
7138 .voltage = {1650, 1950},
7139 },
7140
7141 {
7142 .vendor = "ISSI",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00007143 .name = "IS29GL064B",
7144 .bustype = BUS_PARALLEL,
7145 .manufacture_id = ISSI_ID,
7146 .model_id = ISSI_PMC_IS29GL064B,
7147 .total_size = 8192,
7148 .page_size = 128 * 1024, /* actual page size is 16 */
7149 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7150 .tested = TEST_UNTESTED,
7151 .probe = probe_jedec_29gl,
7152 .probe_timing = TIMING_ZERO,
7153 .block_erasers =
7154 {
7155 {
7156 .eraseblocks = {
7157 {8 * 1024, 8},
7158 {64 * 1024, 127},
7159 },
7160 .block_erase = erase_sector_jedec,
7161 }, {
7162 .eraseblocks = { {8 * 1024 * 1024, 1} },
7163 .block_erase = erase_chip_block_jedec,
7164 },
7165 },
7166 .write = write_jedec_1,
7167 .read = read_memmapped,
7168 .voltage = {2700, 3600},
7169 },
7170
7171 {
7172 .vendor = "ISSI",
Alan Green1f9cc7d2019-07-01 11:10:45 +10007173 .name = "IS29GL064H/L",
7174 .bustype = BUS_PARALLEL,
7175 .manufacture_id = ISSI_ID,
7176 .model_id = ISSI_PMC_IS29GL064HL,
7177 .total_size = 8192,
7178 .page_size = 128 * 1024, /* actual page size is 16 */
7179 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7180 .tested = TEST_UNTESTED,
7181 .probe = probe_jedec_29gl,
7182 .probe_timing = TIMING_ZERO,
7183 .block_erasers =
7184 {
7185 {
7186 .eraseblocks = { {64 * 1024, 128} },
7187 .block_erase = erase_sector_jedec,
7188 }, {
7189 .eraseblocks = { {8 * 1024 * 1024, 1} },
7190 .block_erase = erase_chip_block_jedec,
7191 },
7192 },
7193 .write = write_jedec_1,
7194 .read = read_memmapped,
7195 .voltage = {2700, 3600},
7196 },
7197
7198 {
7199 .vendor = "ISSI",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00007200 .name = "IS29GL064T",
7201 .bustype = BUS_PARALLEL,
7202 .manufacture_id = ISSI_ID,
7203 .model_id = ISSI_PMC_IS29GL064T,
7204 .total_size = 8192,
7205 .page_size = 128 * 1024, /* actual page size is 16 */
7206 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7207 .tested = TEST_UNTESTED,
7208 .probe = probe_jedec_29gl,
7209 .probe_timing = TIMING_ZERO,
7210 .block_erasers =
7211 {
7212 {
7213 .eraseblocks = {
7214 {64 * 1024, 127},
7215 {8 * 1024, 8},
7216 },
7217 .block_erase = erase_sector_jedec,
7218 }, {
7219 .eraseblocks = { {8 * 1024 * 1024, 1} },
7220 .block_erase = erase_chip_block_jedec,
7221 },
7222 },
7223 .write = write_jedec_1,
7224 .read = read_memmapped,
7225 .voltage = {2700, 3600},
7226 },
7227
7228 {
7229 .vendor = "ISSI",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00007230 .name = "IS29GL128H/L",
7231 .bustype = BUS_PARALLEL,
7232 .manufacture_id = ISSI_ID,
7233 .model_id = ISSI_PMC_IS29GL128HL,
7234 .total_size = 16384,
7235 .page_size = 128 * 1024, /* actual page size is 16 */
7236 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7237 .tested = TEST_UNTESTED,
7238 .probe = probe_jedec_29gl,
7239 .probe_timing = TIMING_ZERO,
7240 .block_erasers =
7241 {
7242 {
7243 .eraseblocks = { {128 * 1024, 128} },
7244 .block_erase = erase_sector_jedec,
7245 }, {
7246 .eraseblocks = { {16 * 1024 * 1024, 1} },
7247 .block_erase = erase_chip_block_jedec,
7248 },
7249 },
7250 .write = write_jedec_1,
7251 .read = read_memmapped,
7252 .voltage = {2700, 3600},
7253 },
7254
7255 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007256 .vendor = "Intel",
7257 .name = "25F160S33B8",
7258 .bustype = BUS_SPI,
7259 .manufacture_id = INTEL_ID,
7260 .model_id = INTEL_25F160S33B8,
7261 .total_size = 2048,
7262 .page_size = 256,
7263 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7264 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7265 .tested = TEST_UNTESTED,
7266 .probe = probe_spi_rdid,
7267 .probe_timing = TIMING_ZERO,
7268 .block_erasers =
7269 {
7270 {
7271 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7272 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7273 * have no effect on the memory contents, but sets a flag in the SR.
7274 .eraseblocks = {
7275 {8 * 1024, 8},
7276 {64 * 1024, 31} // inaccessible
7277 },
7278 .block_erase = spi_block_erase_40,
7279 }, { */
7280 .eraseblocks = { {64 * 1024, 32} },
7281 .block_erase = spi_block_erase_d8,
7282 }, {
7283 .eraseblocks = { {2 * 1024 * 1024, 1} },
7284 .block_erase = spi_block_erase_c7,
7285 }
7286 },
7287 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7288 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7289 .write = spi_chip_write_256,
7290 .read = spi_chip_read, /* also fast read 0x0B */
7291 .voltage = {2700, 3600},
7292 },
7293
7294 {
7295 .vendor = "Intel",
7296 .name = "25F160S33T8",
7297 .bustype = BUS_SPI,
7298 .manufacture_id = INTEL_ID,
7299 .model_id = INTEL_25F160S33T8,
7300 .total_size = 2048,
7301 .page_size = 256,
7302 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7303 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7304 .tested = TEST_UNTESTED,
7305 .probe = probe_spi_rdid,
7306 .probe_timing = TIMING_ZERO,
7307 .block_erasers =
7308 {
7309 {
7310 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7311 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7312 * have no effect on the memory contents, but sets a flag in the SR.
7313 .eraseblocks = {
7314 {64 * 1024, 31}, // inaccessible
7315 {8 * 1024, 8}
7316 },
7317 .block_erase = spi_block_erase_40,
7318 }, { */
7319 .eraseblocks = { {64 * 1024, 32} },
7320 .block_erase = spi_block_erase_d8,
7321 }, {
7322 .eraseblocks = { {2 * 1024 * 1024, 1} },
7323 .block_erase = spi_block_erase_c7,
7324 }
7325 },
7326 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7327 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7328 .write = spi_chip_write_256,
7329 .read = spi_chip_read, /* also fast read 0x0B */
7330 .voltage = {2700, 3600},
7331 },
7332
7333 {
7334 .vendor = "Intel",
7335 .name = "25F320S33B8",
7336 .bustype = BUS_SPI,
7337 .manufacture_id = INTEL_ID,
7338 .model_id = INTEL_25F320S33B8,
7339 .total_size = 4096,
7340 .page_size = 256,
7341 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7342 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7343 .tested = TEST_UNTESTED,
7344 .probe = probe_spi_rdid,
7345 .probe_timing = TIMING_ZERO,
7346 .block_erasers =
7347 {
7348 {
7349 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7350 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7351 * have no effect on the memory contents, but sets a flag in the SR.
7352 .eraseblocks = {
7353 {8 * 1024, 8},
7354 {64 * 1024, 63} // inaccessible
7355 },
7356 .block_erase = spi_block_erase_40,
7357 }, { */
7358 .eraseblocks = { {64 * 1024, 64} },
7359 .block_erase = spi_block_erase_d8,
7360 }, {
7361 .eraseblocks = { {4 * 1024 * 1024, 1} },
7362 .block_erase = spi_block_erase_c7,
7363 }
7364 },
7365 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7366 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7367 .write = spi_chip_write_256,
7368 .read = spi_chip_read, /* also fast read 0x0B */
7369 .voltage = {2700, 3600},
7370 },
7371
7372 {
7373 .vendor = "Intel",
7374 .name = "25F320S33T8",
7375 .bustype = BUS_SPI,
7376 .manufacture_id = INTEL_ID,
7377 .model_id = INTEL_25F320S33T8,
7378 .total_size = 4096,
7379 .page_size = 256,
7380 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7381 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7382 .tested = TEST_UNTESTED,
7383 .probe = probe_spi_rdid,
7384 .probe_timing = TIMING_ZERO,
7385 .block_erasers =
7386 {
7387 {
7388 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7389 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7390 * have no effect on the memory contents, but sets a flag in the SR.
7391 .eraseblocks = {
7392 {64 * 1024, 63}, // inaccessible
7393 {8 * 1024, 8}
7394 },
7395 .block_erase = spi_block_erase_40,
7396 }, { */
7397 .eraseblocks = { {64 * 1024, 64} },
7398 .block_erase = spi_block_erase_d8,
7399 }, {
7400 .eraseblocks = { {4 * 1024 * 1024, 1} },
7401 .block_erase = spi_block_erase_c7,
7402 }
7403 },
7404 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7405 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7406 .write = spi_chip_write_256,
7407 .read = spi_chip_read, /* also fast read 0x0B */
7408 .voltage = {2700, 3600},
7409 },
7410
7411 {
7412 .vendor = "Intel",
7413 .name = "25F640S33B8",
7414 .bustype = BUS_SPI,
7415 .manufacture_id = INTEL_ID,
7416 .model_id = INTEL_25F640S33B8,
7417 .total_size = 8192,
7418 .page_size = 256,
7419 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7420 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7421 .tested = TEST_UNTESTED,
7422 .probe = probe_spi_rdid,
7423 .probe_timing = TIMING_ZERO,
7424 .block_erasers =
7425 {
7426 {
7427 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7428 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7429 * have no effect on the memory contents, but sets a flag in the SR.
7430 .eraseblocks = {
7431 {8 * 1024, 8},
7432 {64 * 1024, 127} // inaccessible
7433 },
7434 .block_erase = spi_block_erase_40,
7435 }, { */
7436 .eraseblocks = { {64 * 1024, 128} },
7437 .block_erase = spi_block_erase_d8,
7438 }, {
7439 .eraseblocks = { {8 * 1024 * 1024, 1} },
7440 .block_erase = spi_block_erase_c7,
7441 }
7442 },
7443 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7444 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7445 .write = spi_chip_write_256,
7446 .read = spi_chip_read, /* also fast read 0x0B */
7447 .voltage = {2700, 3600},
7448 },
7449
7450 {
7451 .vendor = "Intel",
7452 .name = "25F640S33T8",
7453 .bustype = BUS_SPI,
7454 .manufacture_id = INTEL_ID,
7455 .model_id = INTEL_25F640S33T8,
7456 .total_size = 8192,
7457 .page_size = 256,
7458 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
7459 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7460 .tested = TEST_UNTESTED,
7461 .probe = probe_spi_rdid,
7462 .probe_timing = TIMING_ZERO,
7463 .block_erasers =
7464 {
7465 {
7466 /* This chip supports erasing of the 8 so-called "parameter blocks" with
7467 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
7468 * have no effect on the memory contents, but sets a flag in the SR.
7469 .eraseblocks = {
7470 {64 * 1024, 127}, // inaccessible
7471 {8 * 1024, 8}
7472 },
7473 .block_erase = spi_block_erase_40,
7474 }, { */
7475 .eraseblocks = { {64 * 1024, 128} },
7476 .block_erase = spi_block_erase_d8,
7477 }, {
7478 .eraseblocks = { {8 * 1024 * 1024, 1} },
7479 .block_erase = spi_block_erase_c7,
7480 }
7481 },
7482 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
7483 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
7484 .write = spi_chip_write_256,
7485 .read = spi_chip_read, /* also fast read 0x0B */
7486 .voltage = {2700, 3600},
7487 },
7488
7489 {
7490 .vendor = "Intel",
7491 .name = "28F001BN/BX-B",
7492 .bustype = BUS_PARALLEL,
7493 .manufacture_id = INTEL_ID,
7494 .model_id = INTEL_28F001B,
7495 .total_size = 128,
7496 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
7497 .tested = TEST_UNTESTED,
7498 .probe = probe_jedec,
7499 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7500 .block_erasers =
7501 {
7502 {
7503 .eraseblocks = {
7504 {8 * 1024, 1},
7505 {4 * 1024, 2},
7506 {112 * 1024, 1},
7507 },
7508 .block_erase = erase_block_82802ab,
7509 },
7510 },
7511 .write = write_82802ab,
7512 .read = read_memmapped,
7513 .voltage = {4500, 5500},
7514 },
7515
7516 {
7517 .vendor = "Intel",
7518 .name = "28F001BN/BX-T",
7519 .bustype = BUS_PARALLEL,
7520 .manufacture_id = INTEL_ID,
7521 .model_id = INTEL_28F001T,
7522 .total_size = 128,
7523 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
7524 .tested = TEST_OK_PREW,
7525 .probe = probe_jedec,
7526 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7527 .block_erasers =
7528 {
7529 {
7530 .eraseblocks = {
7531 {112 * 1024, 1},
7532 {4 * 1024, 2},
7533 {8 * 1024, 1},
7534 },
7535 .block_erase = erase_block_82802ab,
7536 },
7537 },
7538 .write = write_82802ab,
7539 .read = read_memmapped,
7540 .voltage = {4500, 5500},
7541 },
7542
7543 {
7544 .vendor = "Intel",
7545 .name = "28F002BC/BL/BV/BX-T",
7546 .bustype = BUS_PARALLEL,
7547 .manufacture_id = INTEL_ID,
7548 .model_id = INTEL_28F002T,
7549 .total_size = 256,
7550 .page_size = 256 * 1024,
7551 .tested = TEST_OK_PRE,
7552 .probe = probe_82802ab,
7553 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7554 .block_erasers =
7555 {
7556 {
7557 .eraseblocks = {
7558 {128 * 1024, 1},
7559 {96 * 1024, 1},
7560 {8 * 1024, 2},
7561 {16 * 1024, 1},
7562 },
7563 .block_erase = erase_block_82802ab,
7564 },
7565 },
7566 .write = write_82802ab,
7567 .read = read_memmapped,
7568 },
7569
7570 {
7571 .vendor = "Intel",
7572 .name = "28F004B5/BE/BV/BX-B",
7573 .bustype = BUS_PARALLEL,
7574 .manufacture_id = INTEL_ID,
7575 .model_id = INTEL_28F004B,
7576 .total_size = 512,
7577 .page_size = 128 * 1024, /* maximal block size */
7578 .tested = TEST_UNTESTED,
7579 .probe = probe_82802ab,
7580 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7581 .block_erasers =
7582 {
7583 {
7584 .eraseblocks = {
7585 {16 * 1024, 1},
7586 {8 * 1024, 2},
7587 {96 * 1024, 1},
7588 {128 * 1024, 3},
7589 },
7590 .block_erase = erase_block_82802ab,
7591 },
7592 },
7593 .write = write_82802ab,
7594 .read = read_memmapped,
7595 },
7596
7597 {
7598 .vendor = "Intel",
7599 .name = "28F004B5/BE/BV/BX-T",
7600 .bustype = BUS_PARALLEL,
7601 .manufacture_id = INTEL_ID,
7602 .model_id = INTEL_28F004T,
7603 .total_size = 512,
7604 .page_size = 128 * 1024, /* maximal block size */
7605 .tested = TEST_UNTESTED,
7606 .probe = probe_82802ab,
7607 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7608 .block_erasers =
7609 {
7610 {
7611 .eraseblocks = {
7612 {128 * 1024, 3},
7613 {96 * 1024, 1},
7614 {8 * 1024, 2},
7615 {16 * 1024, 1},
7616 },
7617 .block_erase = erase_block_82802ab,
7618 },
7619 },
7620 .write = write_82802ab,
7621 .read = read_memmapped,
7622 },
7623
7624 {
7625 .vendor = "Intel",
7626 .name = "28F008S3/S5/SC",
7627 .bustype = BUS_PARALLEL,
7628 .manufacture_id = INTEL_ID,
7629 .model_id = INTEL_28F004S3,
7630 .total_size = 512,
7631 .page_size = 256,
7632 .tested = TEST_UNTESTED,
7633 .probe = probe_82802ab,
7634 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7635 .block_erasers =
7636 {
7637 {
7638 .eraseblocks = { {64 * 1024, 8} },
7639 .block_erase = erase_block_82802ab,
7640 },
7641 },
7642 .unlock = unlock_28f004s5,
7643 .write = write_82802ab,
7644 .read = read_memmapped,
7645 },
7646
7647 {
7648 .vendor = "Intel",
7649 .name = "28F400BV/BX/CE/CV-B",
7650 .bustype = BUS_PARALLEL,
7651 .manufacture_id = INTEL_ID,
7652 .model_id = INTEL_28F400B,
7653 .total_size = 512,
7654 .page_size = 128 * 1024, /* maximal block size */
7655 .feature_bits = FEATURE_ADDR_SHIFTED,
7656 .tested = TEST_UNTESTED,
7657 .probe = probe_82802ab,
7658 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7659 .block_erasers =
7660 {
7661 {
7662 .eraseblocks = {
7663 {16 * 1024, 1},
7664 {8 * 1024, 2},
7665 {96 * 1024, 1},
7666 {128 * 1024, 3},
7667 },
7668 .block_erase = erase_block_82802ab,
7669 },
7670 },
7671 .write = write_82802ab,
7672 .read = read_memmapped,
7673 },
7674
7675 {
7676 .vendor = "Intel",
7677 .name = "28F400BV/BX/CE/CV-T",
7678 .bustype = BUS_PARALLEL,
7679 .manufacture_id = INTEL_ID,
7680 .model_id = INTEL_28F400T,
7681 .total_size = 512,
7682 .page_size = 128 * 1024, /* maximal block size */
7683 .feature_bits = FEATURE_ADDR_SHIFTED,
7684 .tested = TEST_UNTESTED,
7685 .probe = probe_82802ab,
7686 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7687 .block_erasers =
7688 {
7689 {
7690 .eraseblocks = {
7691 {128 * 1024, 3},
7692 {96 * 1024, 1},
7693 {8 * 1024, 2},
7694 {16 * 1024, 1},
7695 },
7696 .block_erase = erase_block_82802ab,
7697 },
7698 },
7699 .write = write_82802ab,
7700 .read = read_memmapped,
7701 },
7702
7703 {
7704 .vendor = "Intel",
7705 .name = "82802AB",
7706 .bustype = BUS_FWH,
7707 .manufacture_id = INTEL_ID,
7708 .model_id = INTEL_82802AB,
7709 .total_size = 512,
7710 .page_size = 64 * 1024,
7711 .feature_bits = FEATURE_REGISTERMAP,
Alan Green88552572019-07-24 13:56:06 +10007712 .tested = TEST_OK_PREW,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007713 .probe = probe_82802ab,
7714 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
7715 .block_erasers =
7716 {
7717 {
7718 .eraseblocks = { {64 * 1024, 8} },
7719 .block_erase = erase_block_82802ab,
7720 },
7721 },
7722 .unlock = unlock_regspace2_uniform_64k,
7723 .write = write_82802ab,
7724 .read = read_memmapped,
7725 .voltage = {3000, 3600},
7726 },
7727
7728 {
7729 .vendor = "Intel",
7730 .name = "82802AC",
7731 .bustype = BUS_FWH,
7732 .manufacture_id = INTEL_ID,
7733 .model_id = INTEL_82802AC,
7734 .total_size = 1024,
7735 .page_size = 64 * 1024,
7736 .feature_bits = FEATURE_REGISTERMAP,
7737 .tested = TEST_OK_PR,
7738 .probe = probe_82802ab,
7739 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
7740 .block_erasers =
7741 {
7742 {
7743 .eraseblocks = { {64 * 1024, 16} },
7744 .block_erase = erase_block_82802ab,
7745 },
7746 },
7747 .unlock = unlock_regspace2_uniform_64k,
7748 .write = write_82802ab,
7749 .read = read_memmapped,
7750 .voltage = {3000, 3600},
7751 },
7752
7753 {
7754 .vendor = "Macronix",
7755 .name = "MX23L12854",
7756 .bustype = BUS_SPI,
7757 .manufacture_id = MACRONIX_ID,
7758 .model_id = MACRONIX_MX23L12854,
7759 .total_size = 16384,
7760 .page_size = 256,
7761 .tested = {.probe = NT, .read = NT, .erase = NA, .write = NA},
7762 .probe = probe_spi_rdid,
7763 .probe_timing = TIMING_ZERO,
7764 .write = NULL, /* MX23L12854 is a mask ROM, so it is read-only */
7765 .read = spi_chip_read, /* Fast read (0x0B) supported */
7766 .voltage = {3000, 3600},
7767 },
7768
7769 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007770 .vendor = "Macronix",
Michael Coppola583ea322014-08-20 18:56:35 +00007771 .name = "MX23L1654",
7772 .bustype = BUS_SPI,
7773 .manufacture_id = MACRONIX_ID,
7774 .model_id = MACRONIX_MX23L1654,
7775 .total_size = 2048,
7776 .page_size = 256,
7777 .tested = {.probe = NT, .read = NT, .erase = NA, .write = NA},
7778 .probe = probe_spi_rdid,
7779 .probe_timing = TIMING_ZERO,
7780 .write = NULL, /* MX23L1654 is a mask ROM, so it is read-only */
7781 .read = spi_chip_read, /* Fast read (0x0B) supported */
7782 .voltage = {3000, 3600},
7783 },
7784
7785 {
7786 .vendor = "Macronix",
Michael Coppola4e7f36e2014-05-03 23:01:18 +00007787 .name = "MX23L3254",
7788 .bustype = BUS_SPI,
7789 .manufacture_id = MACRONIX_ID,
7790 .model_id = MACRONIX_MX23L3254,
7791 .total_size = 4096,
7792 .page_size = 256,
Stefan Tauner6455dff2014-05-26 00:36:24 +00007793 .tested = {.probe = OK, .read = OK, .erase = NA, .write = NA},
Michael Coppola4e7f36e2014-05-03 23:01:18 +00007794 .probe = probe_spi_rdid,
7795 .probe_timing = TIMING_ZERO,
7796 .write = NULL, /* MX23L3254 is a mask ROM, so it is read-only */
7797 .read = spi_chip_read, /* Fast read (0x0B) supported */
7798 .voltage = {3000, 3600},
7799 },
7800
7801 {
7802 .vendor = "Macronix",
Michael Coppola583ea322014-08-20 18:56:35 +00007803 .name = "MX23L6454",
7804 .bustype = BUS_SPI,
7805 .manufacture_id = MACRONIX_ID,
7806 .model_id = MACRONIX_MX23L6454,
7807 .total_size = 8192,
7808 .page_size = 256,
Stefan Tauner23e10b82016-01-23 16:16:49 +00007809 .tested = {.probe = OK, .read = OK, .erase = NA, .write = NA},
Michael Coppola583ea322014-08-20 18:56:35 +00007810 .probe = probe_spi_rdid,
7811 .probe_timing = TIMING_ZERO,
7812 .write = NULL, /* MX23L6454 is a mask ROM, so it is read-only */
7813 .read = spi_chip_read, /* Fast read (0x0B) supported */
7814 .voltage = {3000, 3600},
7815 },
7816
7817 {
7818 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00007819 .name = "MX25L1005(C)/MX25L1006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007820 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007821 .manufacture_id = MACRONIX_ID,
7822 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007823 .total_size = 128,
7824 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007825 /* MX25L1006E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00007826 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00007827 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007828 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007829 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007830 .block_erasers =
7831 {
7832 {
7833 .eraseblocks = { {4 * 1024, 32} },
7834 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007835 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007836 .eraseblocks = { {64 * 1024, 2} },
7837 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007838 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007839 .eraseblocks = { {128 * 1024, 1} },
7840 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007841 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007842 .eraseblocks = { {128 * 1024, 1} },
7843 .block_erase = spi_block_erase_c7,
7844 },
7845 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007846 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007847 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007848 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007849 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L1006E supports dual I/O */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007850 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007851 },
7852
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007853 {
7854 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10007855 .name = "MX25L12805D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007856 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007857 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007858 .model_id = MACRONIX_MX25L12805D,
7859 .total_size = 16384,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007860 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007861 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
7862 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00007863 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007864 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007865 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007866 .block_erasers =
7867 {
7868 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007869 .eraseblocks = { {4 * 1024, 4096} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007870 .block_erase = spi_block_erase_20,
7871 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007872 .eraseblocks = { {64 * 1024, 256} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007873 .block_erase = spi_block_erase_d8,
7874 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007875 .eraseblocks = { {16 * 1024 * 1024, 1} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007876 .block_erase = spi_block_erase_60,
7877 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007878 .eraseblocks = { {16 * 1024 * 1024, 1} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007879 .block_erase = spi_block_erase_c7,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007880 }
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007881 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10007882 .printlock = spi_prettyprint_status_register_bp3_srwd,
7883 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007884 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007885 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007886 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007887 },
7888
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007889 {
7890 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10007891 .name = "MX25L12835F/MX25L12845E/MX25L12865E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007892 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007893 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007894 .model_id = MACRONIX_MX25L12805D,
7895 .total_size = 16384,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007896 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007897 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
7898 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner8179be52011-06-04 13:13:34 +00007899 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007900 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007901 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007902 .block_erasers =
7903 {
7904 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007905 .eraseblocks = { {4 * 1024, 4096} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007906 .block_erase = spi_block_erase_20,
7907 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007908 .eraseblocks = { {32 * 1024, 512} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007909 .block_erase = spi_block_erase_52,
7910 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007911 .eraseblocks = { {64 * 1024, 256} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007912 .block_erase = spi_block_erase_d8,
7913 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007914 .eraseblocks = { {16 * 1024 * 1024, 1} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007915 .block_erase = spi_block_erase_60,
7916 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10007917 .eraseblocks = { {16 * 1024 * 1024, 1} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007918 .block_erase = spi_block_erase_c7,
Alan Green1f9cc7d2019-07-01 11:10:45 +10007919 }
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007920 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10007921 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
7922 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
7923 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007924 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007925 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007926 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007927 },
7928
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007929 {
7930 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007931 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007932 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007933 .manufacture_id = MACRONIX_ID,
7934 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007935 .total_size = 2048,
7936 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00007937 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00007938 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007939 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007940 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007941 .block_erasers =
7942 {
7943 {
Stefan Tauner226037d2013-03-16 01:22:12 +00007944 .eraseblocks = { {64 * 1024, 32} },
7945 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007946 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00007947 .eraseblocks = { {64 * 1024, 32} },
7948 .block_erase = spi_block_erase_d8,
7949 }, {
7950 .eraseblocks = { {2 * 1024 * 1024, 1} },
7951 .block_erase = spi_block_erase_60,
7952 }, {
7953 .eraseblocks = { {2 * 1024 * 1024, 1} },
7954 .block_erase = spi_block_erase_c7,
7955 },
7956 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007957 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit6: error flag */
Stefan Tauner226037d2013-03-16 01:22:12 +00007958 .unlock = spi_disable_blockprotect,
7959 .write = spi_chip_write_256,
7960 .read = spi_chip_read, /* Fast read (0x0B) supported */
7961 .voltage = {2700, 3600},
7962 },
7963
7964 {
7965 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007966 .name = "MX25L1605A/MX25L1606E/MX25L1608E",
Stefan Tauner226037d2013-03-16 01:22:12 +00007967 .bustype = BUS_SPI,
7968 .manufacture_id = MACRONIX_ID,
7969 .model_id = MACRONIX_MX25L1605,
7970 .total_size = 2048,
7971 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007972 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L1606E and MX25L1608E only) */
Stefan Tauner226037d2013-03-16 01:22:12 +00007973 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7974 .tested = TEST_OK_PREW,
7975 .probe = probe_spi_rdid,
7976 .probe_timing = TIMING_ZERO,
7977 .block_erasers =
7978 {
7979 {
7980 .eraseblocks = { {4 * 1024, 512} },
7981 .block_erase = spi_block_erase_20,
7982 }, {
7983 .eraseblocks = { {64 * 1024, 32} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007984 .block_erase = spi_block_erase_52,
7985 }, {
7986 .eraseblocks = { {64 * 1024, 32} },
7987 .block_erase = spi_block_erase_d8,
7988 }, {
7989 .eraseblocks = { {2 * 1024 * 1024, 1} },
7990 .block_erase = spi_block_erase_60,
7991 }, {
7992 .eraseblocks = { {2 * 1024 * 1024, 1} },
7993 .block_erase = spi_block_erase_c7,
7994 },
7995 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007996 .printlock = spi_prettyprint_status_register_bp3_srwd, /* MX25L1605A bp2 only */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007997 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007998 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007999 .read = spi_chip_read, /* Fast read (0x0B) supported (MX25L1608E supports dual-I/O read) */
Stefan Tauner226037d2013-03-16 01:22:12 +00008000 .voltage = {2700, 3600},
8001 },
8002
8003 {
8004 .vendor = "Macronix",
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008005 .name = "MX25L1605D/MX25L1608D/MX25L1673E",
Stefan Tauner226037d2013-03-16 01:22:12 +00008006 .bustype = BUS_SPI,
8007 .manufacture_id = MACRONIX_ID,
8008 .model_id = MACRONIX_MX25L1605,
8009 .total_size = 2048,
8010 .page_size = 256,
8011 .feature_bits = FEATURE_WRSR_WREN,
8012 .tested = TEST_OK_PREW,
8013 .probe = probe_spi_rdid,
8014 .probe_timing = TIMING_ZERO,
8015 .block_erasers =
8016 {
8017 {
8018 .eraseblocks = { {4 * 1024, 512} },
8019 .block_erase = spi_block_erase_20,
8020 }, {
8021 .eraseblocks = { {64 * 1024, 32} },
8022 .block_erase = spi_block_erase_d8,
8023 }, {
8024 .eraseblocks = { {2 * 1024 * 1024, 1} },
8025 .block_erase = spi_block_erase_60,
8026 }, {
8027 .eraseblocks = { {2 * 1024 * 1024, 1} },
8028 .block_erase = spi_block_erase_c7,
8029 },
8030 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008031 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: Continuously Program (CP) mode, for 73E is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008032 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008033 .write = spi_chip_write_256,
8034 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008035 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008036 },
8037
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008038 {
8039 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00008040 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008041 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008042 .manufacture_id = MACRONIX_ID,
8043 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00008044 .total_size = 2048,
8045 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008046 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8047 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00008048 .tested = TEST_UNTESTED,
8049 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008050 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008051 .block_erasers =
8052 {
8053 {
8054 .eraseblocks = { {4 * 1024, 512} },
8055 .block_erase = spi_block_erase_20,
8056 }, {
8057 .eraseblocks = { {64 * 1024, 32} },
8058 .block_erase = spi_block_erase_d8,
8059 }, {
8060 .eraseblocks = { {2 * 1024 * 1024, 1} },
8061 .block_erase = spi_block_erase_60,
8062 }, {
8063 .eraseblocks = { {2 * 1024 * 1024, 1} },
8064 .block_erase = spi_block_erase_c7,
8065 }
8066 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008067 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008068 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008069 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008070 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008071 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00008072 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00008073
Stephan Guillouxf5c70902009-04-19 23:04:00 +00008074 {
8075 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00008076 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008077 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008078 .manufacture_id = MACRONIX_ID,
8079 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00008080 .total_size = 2048,
8081 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008082 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8083 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux3611b802010-09-13 19:59:28 +00008084 .tested = TEST_UNTESTED,
8085 .probe = probe_spi_rdid,
8086 .probe_timing = TIMING_ZERO,
8087 .block_erasers =
8088 {
8089 {
8090 .eraseblocks = { {4 * 1024, 512} },
8091 .block_erase = spi_block_erase_20,
8092 }, {
8093 .eraseblocks = { {64 * 1024, 32} },
8094 .block_erase = spi_block_erase_d8,
8095 }, {
8096 .eraseblocks = { {2 * 1024 * 1024, 1} },
8097 .block_erase = spi_block_erase_60,
8098 }, {
8099 .eraseblocks = { {2 * 1024 * 1024, 1} },
8100 .block_erase = spi_block_erase_c7,
8101 }
8102 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008103 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008104 .unlock = spi_disable_blockprotect_bp3_srwd,
Stephan Guilloux3611b802010-09-13 19:59:28 +00008105 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008106 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00008107 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00008108 },
8109
8110 {
8111 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008112 .name = "MX25L2005(C)/MX25L2006E",
8113 .bustype = BUS_SPI,
8114 .manufacture_id = MACRONIX_ID,
8115 .model_id = MACRONIX_MX25L2005,
8116 .total_size = 256,
8117 .page_size = 256,
8118 .feature_bits = FEATURE_WRSR_WREN,
8119 .tested = TEST_OK_PREW,
8120 .probe = probe_spi_rdid,
8121 .probe_timing = TIMING_ZERO,
8122 .block_erasers =
8123 {
8124 {
8125 .eraseblocks = { {4 * 1024, 64} },
8126 .block_erase = spi_block_erase_20,
8127 }, {
8128 .eraseblocks = { {64 * 1024, 4} },
8129 .block_erase = spi_block_erase_52,
8130 }, {
8131 .eraseblocks = { {64 * 1024, 4} },
8132 .block_erase = spi_block_erase_d8,
8133 }, {
8134 .eraseblocks = { {256 * 1024, 1} },
8135 .block_erase = spi_block_erase_60,
8136 }, {
8137 .eraseblocks = { {256 * 1024, 1} },
8138 .block_erase = spi_block_erase_c7,
8139 },
8140 },
8141 .printlock = spi_prettyprint_status_register_bp1_srwd,
8142 .unlock = spi_disable_blockprotect,
8143 .write = spi_chip_write_256,
8144 .read = spi_chip_read, /* Fast read (0x0B) supported */
8145 .voltage = {2700, 3600},
8146 },
8147
8148 {
8149 .vendor = "Macronix",
Alan Green03707302019-08-26 12:50:43 +10008150 .name = "MX25L25635F/MX25L25645G",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008151 .bustype = BUS_SPI,
8152 .manufacture_id = MACRONIX_ID,
8153 .model_id = MACRONIX_MX25L25635F,
8154 .total_size = 32768,
8155 .page_size = 256,
8156 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8157 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA,
8158 .tested = TEST_OK_PREW,
8159 .probe = probe_spi_rdid,
8160 .probe_timing = TIMING_ZERO,
8161 .block_erasers =
8162 {
8163 {
8164 .eraseblocks = { {4 * 1024, 8192} },
8165 .block_erase = spi_block_erase_21,
8166 }, {
8167 .eraseblocks = { {4 * 1024, 8192} },
8168 .block_erase = spi_block_erase_20,
8169 }, {
8170 .eraseblocks = { {32 * 1024, 1024} },
8171 .block_erase = spi_block_erase_5c,
8172 }, {
8173 .eraseblocks = { {32 * 1024, 1024} },
8174 .block_erase = spi_block_erase_52,
8175 }, {
8176 .eraseblocks = { {64 * 1024, 512} },
8177 .block_erase = spi_block_erase_dc,
8178 }, {
8179 .eraseblocks = { {64 * 1024, 512} },
8180 .block_erase = spi_block_erase_d8,
8181 }, {
8182 .eraseblocks = { {32 * 1024 * 1024, 1} },
8183 .block_erase = spi_block_erase_60,
8184 }, {
8185 .eraseblocks = { {32 * 1024 * 1024, 1} },
8186 .block_erase = spi_block_erase_c7,
8187 }
8188 },
8189 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
8190 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8191 .unlock = spi_disable_blockprotect_bp3_srwd,
8192 .write = spi_chip_write_256,
8193 .read = spi_chip_read, /* Fast read (0x0B) supported */
8194 .voltage = {2700, 3600},
8195 },
8196
8197 {
8198 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00008199 .name = "MX25L3205(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008200 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008201 .manufacture_id = MACRONIX_ID,
8202 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008203 .total_size = 4096,
8204 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00008205 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00008206 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008207 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008208 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008209 .block_erasers =
8210 {
8211 {
Stefan Tauner226037d2013-03-16 01:22:12 +00008212 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00008213 .block_erase = spi_block_erase_20,
8214 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00008215 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00008216 .block_erase = spi_block_erase_d8,
8217 }, {
8218 .eraseblocks = { {4 * 1024 * 1024, 1} },
8219 .block_erase = spi_block_erase_60,
8220 }, {
8221 .eraseblocks = { {4 * 1024 * 1024, 1} },
8222 .block_erase = spi_block_erase_c7,
8223 },
8224 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008225 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit6: error flag */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008226 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008227 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008228 .read = spi_chip_read, /* Fast read (0x0B) supported */
8229 .voltage = {2700, 3600},
8230 },
8231
8232 {
8233 .vendor = "Macronix",
8234 .name = "MX25L3205D/MX25L3208D",
8235 .bustype = BUS_SPI,
8236 .manufacture_id = MACRONIX_ID,
8237 .model_id = MACRONIX_MX25L3205,
8238 .total_size = 4096,
8239 .page_size = 256,
8240 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8241 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8242 .tested = TEST_OK_PREW,
8243 .probe = probe_spi_rdid,
8244 .probe_timing = TIMING_ZERO,
8245 .block_erasers =
8246 {
8247 {
8248 .eraseblocks = { {4 * 1024, 1024} },
8249 .block_erase = spi_block_erase_20,
8250 }, {
8251 .eraseblocks = { {64 * 1024, 64} },
8252 .block_erase = spi_block_erase_d8,
8253 }, {
8254 .eraseblocks = { {4 * 1024 * 1024, 1} },
8255 .block_erase = spi_block_erase_60,
8256 }, {
8257 .eraseblocks = { {4 * 1024 * 1024, 1} },
8258 .block_erase = spi_block_erase_c7,
8259 },
8260 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008261 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: continuously program mode */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008262 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008263 .write = spi_chip_write_256,
8264 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
8265 .voltage = {2700, 3600},
8266 },
8267
8268 {
8269 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008270 .name = "MX25L3206E/MX25L3208E",
Stefan Tauner226037d2013-03-16 01:22:12 +00008271 .bustype = BUS_SPI,
8272 .manufacture_id = MACRONIX_ID,
8273 .model_id = MACRONIX_MX25L3205,
8274 .total_size = 4096,
8275 .page_size = 256,
8276 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8277 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8278 .tested = TEST_OK_PREW,
8279 .probe = probe_spi_rdid,
8280 .probe_timing = TIMING_ZERO,
8281 .block_erasers =
8282 {
8283 {
8284 .eraseblocks = { {4 * 1024, 1024} },
8285 .block_erase = spi_block_erase_20,
8286 }, {
8287 .eraseblocks = { {64 * 1024, 64} },
8288 .block_erase = spi_block_erase_d8,
8289 }, {
8290 .eraseblocks = { {64 * 1024, 64} },
8291 .block_erase = spi_block_erase_52,
8292 }, {
8293 .eraseblocks = { {4 * 1024 * 1024, 1} },
8294 .block_erase = spi_block_erase_60,
8295 }, {
8296 .eraseblocks = { {4 * 1024 * 1024, 1} },
8297 .block_erase = spi_block_erase_c7,
8298 },
8299 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008300 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008301 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008302 .write = spi_chip_write_256,
8303 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008304 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008305 },
8306
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008307 {
8308 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008309 .name = "MX25L3235D",
8310 .bustype = BUS_SPI,
8311 .manufacture_id = MACRONIX_ID,
8312 .model_id = MACRONIX_MX25L3235D,
8313 .total_size = 4096,
8314 .page_size = 256,
8315 /* OTP: 256B total; enter 0xB1, exit 0xC1 */
8316 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8317 .tested = TEST_UNTESTED,
8318 .probe = probe_spi_rdid,
8319 .probe_timing = TIMING_ZERO,
8320 .block_erasers =
8321 {
8322 {
8323 .eraseblocks = { {4 * 1024, 1024} },
8324 .block_erase = spi_block_erase_20,
8325 }, {
8326 .eraseblocks = { {64 * 1024, 64} },
8327 .block_erase = spi_block_erase_d8,
8328 }, {
8329 .eraseblocks = { {4 * 1024 * 1024, 1} },
8330 .block_erase = spi_block_erase_60,
8331 }, {
8332 .eraseblocks = { {4 * 1024 * 1024, 1} },
8333 .block_erase = spi_block_erase_c7,
8334 }
8335 },
8336 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8337 .unlock = spi_disable_blockprotect_bp3_srwd,
8338 .write = spi_chip_write_256,
8339 .read = spi_chip_read,
8340 .voltage = {2700, 3600},
8341 },
8342
8343 {
8344 .vendor = "Macronix",
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008345 .name = "MX25L3273E",
8346 .bustype = BUS_SPI,
8347 .manufacture_id = MACRONIX_ID,
8348 .model_id = MACRONIX_MX25L3205,
8349 .total_size = 4096,
8350 .page_size = 256,
8351 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8352 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00008353 .tested = TEST_OK_PREW,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008354 .probe = probe_spi_rdid,
8355 .probe_timing = TIMING_ZERO,
8356 .block_erasers =
8357 {
8358 {
8359 .eraseblocks = { {4 * 1024, 1024} },
8360 .block_erase = spi_block_erase_20,
8361 }, {
8362 .eraseblocks = { {32 * 1024, 128} },
8363 .block_erase = spi_block_erase_52,
8364 }, {
8365 .eraseblocks = { {64 * 1024, 64} },
8366 .block_erase = spi_block_erase_d8,
8367 }, {
8368 .eraseblocks = { {4 * 1024 * 1024, 1} },
8369 .block_erase = spi_block_erase_60,
8370 }, {
8371 .eraseblocks = { {4 * 1024 * 1024, 1} },
8372 .block_erase = spi_block_erase_c7,
8373 },
8374 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008375 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008376 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008377 .write = spi_chip_write_256,
8378 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
8379 .voltage = {2700, 3600},
8380 },
8381
8382 {
8383 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008384 .name = "MX25L4005(A/C)/MX25L4006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008385 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008386 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008387 .model_id = MACRONIX_MX25L4005,
8388 .total_size = 512,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008389 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008390 .feature_bits = FEATURE_WRSR_WREN,
8391 .tested = TEST_OK_PREW,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008392 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008393 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008394 .block_erasers =
8395 {
8396 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008397 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson54596372010-01-09 05:30:14 +00008398 .block_erase = spi_block_erase_20,
8399 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008400 .eraseblocks = { {64 * 1024, 8} },
8401 .block_erase = spi_block_erase_52,
8402 }, {
8403 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson54596372010-01-09 05:30:14 +00008404 .block_erase = spi_block_erase_d8,
8405 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008406 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00008407 .block_erase = spi_block_erase_60,
8408 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008409 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00008410 .block_erase = spi_block_erase_c7,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008411 },
Sean Nelson54596372010-01-09 05:30:14 +00008412 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10008413 .printlock = spi_prettyprint_status_register_bp2_srwd,
8414 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008415 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008416 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008417 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008418 },
8419
8420 {
8421 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008422 .name = "MX25L512(E)/MX25V512(C)",
8423 .bustype = BUS_SPI,
8424 .manufacture_id = MACRONIX_ID,
8425 .model_id = MACRONIX_MX25L512,
8426 .total_size = 64,
8427 .page_size = 256,
8428 /* MX25L512E supports SFDP */
8429 .feature_bits = FEATURE_WRSR_WREN,
8430 .tested = TEST_OK_PREW,
8431 .probe = probe_spi_rdid,
8432 .probe_timing = TIMING_ZERO,
8433 .block_erasers =
8434 {
8435 {
8436 .eraseblocks = { {4 * 1024, 16} },
8437 .block_erase = spi_block_erase_20,
8438 }, {
8439 .eraseblocks = { {64 * 1024, 1} },
8440 .block_erase = spi_block_erase_52,
8441 }, {
8442 .eraseblocks = { {64 * 1024, 1} },
8443 .block_erase = spi_block_erase_d8,
8444 }, {
8445 .eraseblocks = { {64 * 1024, 1} },
8446 .block_erase = spi_block_erase_60,
8447 }, {
8448 .eraseblocks = { {64 * 1024, 1} },
8449 .block_erase = spi_block_erase_c7,
8450 },
8451 },
8452 .printlock = spi_prettyprint_status_register_bp1_srwd,
8453 .unlock = spi_disable_blockprotect,
8454 .write = spi_chip_write_256,
8455 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L512E supports dual I/O */
8456 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V512(C) */
8457 },
8458
8459 {
8460 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008461 .name = "MX25L6405",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008462 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008463 .manufacture_id = MACRONIX_ID,
8464 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008465 .total_size = 8192,
8466 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008467 /* Has an additional 512B EEPROM sector */
8468 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00008469 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008470 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008471 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008472 .block_erasers =
8473 {
8474 {
8475 .eraseblocks = { {64 * 1024, 128} },
8476 .block_erase = spi_block_erase_20,
8477 }, {
8478 .eraseblocks = { {64 * 1024, 128} },
8479 .block_erase = spi_block_erase_d8,
8480 }, {
8481 .eraseblocks = { {8 * 1024 * 1024, 1} },
8482 .block_erase = spi_block_erase_60,
8483 }, {
8484 .eraseblocks = { {8 * 1024 * 1024, 1} },
8485 .block_erase = spi_block_erase_c7,
8486 }
8487 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008488 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: error flag */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008489 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008490 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008491 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008492 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008493 },
8494
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008495 {
8496 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008497 .name = "MX25L6405D",
Stefan Tauner226037d2013-03-16 01:22:12 +00008498 .bustype = BUS_SPI,
8499 .manufacture_id = MACRONIX_ID,
8500 .model_id = MACRONIX_MX25L6405,
8501 .total_size = 8192,
8502 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008503 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
Stefan Tauner226037d2013-03-16 01:22:12 +00008504 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8505 .tested = TEST_OK_PREW,
8506 .probe = probe_spi_rdid,
8507 .probe_timing = TIMING_ZERO,
8508 .block_erasers =
8509 {
8510 {
8511 .eraseblocks = { {4 * 1024, 2048} },
8512 .block_erase = spi_block_erase_20,
8513 }, {
8514 .eraseblocks = { {64 * 1024, 128} },
8515 .block_erase = spi_block_erase_d8,
8516 }, {
8517 .eraseblocks = { {8 * 1024 * 1024, 1} },
8518 .block_erase = spi_block_erase_60,
8519 }, {
8520 .eraseblocks = { {8 * 1024 * 1024, 1} },
8521 .block_erase = spi_block_erase_c7,
8522 }
8523 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008524 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: continuously program mode */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008525 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008526 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008527 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0xBB) supported */
Stefan Tauner226037d2013-03-16 01:22:12 +00008528 .voltage = {2700, 3600},
8529 },
8530
8531 {
8532 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008533 .name = "MX25L6406E/MX25L6408E",
8534 .bustype = BUS_SPI,
8535 .manufacture_id = MACRONIX_ID,
8536 .model_id = MACRONIX_MX25L6405,
8537 .total_size = 8192,
8538 .page_size = 256,
8539 /* MX25L6406E supports SFDP */
8540 /* OTP: 06E 64B total; enter 0xB1, exit 0xC1 */
8541 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8542 .tested = TEST_OK_PREW,
8543 .probe = probe_spi_rdid,
8544 .probe_timing = TIMING_ZERO,
8545 .block_erasers =
8546 {
8547 {
8548 .eraseblocks = { {4 * 1024, 2048} },
8549 .block_erase = spi_block_erase_20,
8550 }, {
8551 .eraseblocks = { {64 * 1024, 128} },
8552 .block_erase = spi_block_erase_52,
8553 }, {
8554 .eraseblocks = { {64 * 1024, 128} },
8555 .block_erase = spi_block_erase_d8,
8556 }, {
8557 .eraseblocks = { {8 * 1024 * 1024, 1} },
8558 .block_erase = spi_block_erase_60,
8559 }, {
8560 .eraseblocks = { {8 * 1024 * 1024, 1} },
8561 .block_erase = spi_block_erase_c7,
8562 }
8563 },
8564 .printlock = spi_prettyprint_status_register_bp3_srwd,
8565 .unlock = spi_disable_blockprotect_bp3_srwd,
8566 .write = spi_chip_write_256,
8567 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read supported */
8568 .voltage = {2700, 3600},
8569 },
8570
8571 {
8572 .vendor = "Macronix",
Nico Huberb0072782017-12-06 21:02:57 +01008573 .name = "MX25L6436E/MX25L6445E/MX25L6465E/MX25L6473E/MX25L6473F",
Stefan Tauner226037d2013-03-16 01:22:12 +00008574 .bustype = BUS_SPI,
8575 .manufacture_id = MACRONIX_ID,
8576 .model_id = MACRONIX_MX25L6405,
8577 .total_size = 8192,
8578 .page_size = 256,
8579 /* supports SFDP */
8580 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8581 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8582 .tested = TEST_OK_PREW,
8583 .probe = probe_spi_rdid,
8584 .probe_timing = TIMING_ZERO,
8585 .block_erasers =
8586 {
8587 {
8588 .eraseblocks = { {4 * 1024, 2048} },
8589 .block_erase = spi_block_erase_20,
8590 }, {
8591 .eraseblocks = { {32 * 1024, 256} },
8592 .block_erase = spi_block_erase_52,
8593 }, {
8594 .eraseblocks = { {64 * 1024, 128} },
8595 .block_erase = spi_block_erase_d8,
8596 }, {
8597 .eraseblocks = { {8 * 1024 * 1024, 1} },
8598 .block_erase = spi_block_erase_60,
8599 }, {
8600 .eraseblocks = { {8 * 1024 * 1024, 1} },
8601 .block_erase = spi_block_erase_c7,
8602 }
8603 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008604 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008605 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008606 .write = spi_chip_write_256,
8607 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8608 .voltage = {2700, 3600},
8609 },
8610
8611 {
8612 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008613 .name = "MX25L6495F",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008614 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008615 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008616 .model_id = MACRONIX_MX25L6495F,
8617 .total_size = 8192,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00008618 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008619 /* OTP: 1024B total; enter 0xB1, exit 0xC1 */
Stefan Tauner226037d2013-03-16 01:22:12 +00008620 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0554ca52013-07-25 22:54:25 +00008621 .tested = TEST_OK_PREW,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00008622 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008623 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008624 .block_erasers =
8625 {
8626 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008627 .eraseblocks = { {4 * 1024, 2048} },
Sean Nelson54596372010-01-09 05:30:14 +00008628 .block_erase = spi_block_erase_20,
8629 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008630 .eraseblocks = { {64 * 1024, 128} },
Sean Nelson54596372010-01-09 05:30:14 +00008631 .block_erase = spi_block_erase_d8,
8632 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008633 .eraseblocks = { {32 * 1024, 256} },
8634 .block_erase = spi_block_erase_52,
8635 }, {
8636 .eraseblocks = { {8 * 1024 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00008637 .block_erase = spi_block_erase_60,
8638 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008639 .eraseblocks = { {8 * 1024 * 1024, 1} },
Sean Nelson54596372010-01-09 05:30:14 +00008640 .block_erase = spi_block_erase_c7,
8641 }
8642 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10008643 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008644 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008645 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008646 .voltage = {2700, 3600},
8647 },
8648
8649 {
8650 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008651 .name = "MX25L8005/MX25L8006E/MX25L8008E/MX25V8005",
Stefan Tauner5c316f92015-02-08 21:57:52 +00008652 .bustype = BUS_SPI,
8653 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008654 .model_id = MACRONIX_MX25L8005,
8655 .total_size = 1024,
8656 .page_size = 256,
8657 /* MX25L8006E, MX25L8008E support SFDP */
8658 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L8006E, MX25L8008E only) */
8659 .feature_bits = FEATURE_WRSR_WREN,
8660 .tested = TEST_OK_PREW,
8661 .probe = probe_spi_rdid,
8662 .probe_timing = TIMING_ZERO,
8663 .block_erasers =
8664 {
8665 {
8666 .eraseblocks = { {4 * 1024, 256} },
8667 .block_erase = spi_block_erase_20,
8668 }, {
8669 .eraseblocks = { {64 * 1024, 16} },
8670 .block_erase = spi_block_erase_52,
8671 }, {
8672 .eraseblocks = { {64 * 1024, 16} },
8673 .block_erase = spi_block_erase_d8,
8674 }, {
8675 .eraseblocks = { {1024 * 1024, 1} },
8676 .block_erase = spi_block_erase_60,
8677 }, {
8678 .eraseblocks = { {1024 * 1024, 1} },
8679 .block_erase = spi_block_erase_c7,
8680 },
8681 },
8682 .printlock = spi_prettyprint_status_register_bp2_srwd,
8683 .unlock = spi_disable_blockprotect,
8684 .write = spi_chip_write_256,
8685 .read = spi_chip_read, /* Fast read (0x0B) supported */
8686 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V8005 */
8687 },
8688
8689 {
8690 .vendor = "Macronix",
8691 .name = "MX25R6435F",
8692 .bustype = BUS_SPI,
8693 .manufacture_id = MACRONIX_ID,
8694 .model_id = MACRONIX_MX25R6435F,
8695 .total_size = 8192,
8696 .page_size = 256,
8697 /* OTP: 1024B total; enter 0xB1, exit 0xC1 */
8698 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8699 .tested = TEST_OK_PREW,
8700 .probe = probe_spi_rdid,
8701 .probe_timing = TIMING_ZERO,
8702 .block_erasers =
8703 {
8704 {
8705 .eraseblocks = { {4 * 1024, 2048} },
8706 .block_erase = spi_block_erase_20,
8707 }, {
8708 .eraseblocks = { {64 * 1024, 128} },
8709 .block_erase = spi_block_erase_d8,
8710 }, {
8711 .eraseblocks = { {32 * 1024, 256} },
8712 .block_erase = spi_block_erase_52,
8713 }, {
8714 .eraseblocks = { {8 * 1024 * 1024, 1} },
8715 .block_erase = spi_block_erase_60,
8716 }, {
8717 .eraseblocks = { {8 * 1024 * 1024, 1} },
8718 .block_erase = spi_block_erase_c7,
8719 }
8720 },
8721 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8722 .unlock = spi_disable_blockprotect_bp3_srwd,
8723 .write = spi_chip_write_256,
8724 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8725 .voltage = {1650, 3600},
8726 },
8727
8728 {
8729 .vendor = "Macronix",
8730 .name = "MX25U12835F",
8731 .bustype = BUS_SPI,
8732 .manufacture_id = MACRONIX_ID,
8733 .model_id = MACRONIX_MX25U12835E,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008734 .total_size = 16384,
8735 .page_size = 256,
8736 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
Alan Green1f9cc7d2019-07-01 11:10:45 +10008737 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008738 .tested = TEST_OK_PREW,
8739 .probe = probe_spi_rdid,
8740 .probe_timing = TIMING_ZERO,
8741 .block_erasers =
8742 {
8743 {
8744 .eraseblocks = { {4 * 1024, 4096} },
8745 .block_erase = spi_block_erase_20,
8746 }, {
8747 .eraseblocks = { {32 * 1024, 512} },
8748 .block_erase = spi_block_erase_52,
8749 }, {
8750 .eraseblocks = { {64 * 1024, 256} },
8751 .block_erase = spi_block_erase_d8,
8752 }, {
8753 .eraseblocks = { {16 * 1024 * 1024, 1} },
8754 .block_erase = spi_block_erase_60,
8755 }, {
8756 .eraseblocks = { {16 * 1024 * 1024, 1} },
8757 .block_erase = spi_block_erase_c7,
8758 }
8759 },
Angel Ponsf112e242018-09-30 20:14:17 +02008760 /* TODO: security register */
8761 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8762 .unlock = spi_disable_blockprotect_bp3_srwd,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008763 .write = spi_chip_write_256, /* Multi I/O supported */
Angel Ponsf112e242018-09-30 20:14:17 +02008764 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8765 .voltage = {1650, 2000},
8766 },
8767
8768 {
8769 .vendor = "Macronix",
Vincent Palatinf800f552013-03-15 02:03:16 +00008770 .name = "MX25U1635E",
8771 .bustype = BUS_SPI,
8772 .manufacture_id = MACRONIX_ID,
8773 .model_id = MACRONIX_MX25U1635E,
8774 .total_size = 2048,
8775 .page_size = 256,
8776 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8777 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8778 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008779 .tested = TEST_OK_PR,
Vincent Palatinf800f552013-03-15 02:03:16 +00008780 .probe = probe_spi_rdid,
8781 .probe_timing = TIMING_ZERO,
8782 .block_erasers =
8783 {
8784 {
8785 .eraseblocks = { {4 * 1024, 512} },
8786 .block_erase = spi_block_erase_20,
8787 }, {
8788 .eraseblocks = { {32 * 1024, 64} },
8789 .block_erase = spi_block_erase_52,
8790 }, {
8791 .eraseblocks = { {64 * 1024, 32} },
8792 .block_erase = spi_block_erase_d8,
8793 }, {
8794 .eraseblocks = { {2 * 1024 * 1024, 1} },
8795 .block_erase = spi_block_erase_60,
8796 }, {
8797 .eraseblocks = { {2 * 1024 * 1024, 1} },
8798 .block_erase = spi_block_erase_c7,
8799 }
8800 },
8801 /* TODO: security register */
Stefan Tauner12f3d512014-05-27 21:27:27 +00008802 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008803 .unlock = spi_disable_blockprotect_bp3_srwd,
Vincent Palatinf800f552013-03-15 02:03:16 +00008804 .write = spi_chip_write_256,
8805 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8806 .voltage = {1650, 2000},
8807 },
8808
8809 {
8810 .vendor = "Macronix",
David Tomaschikf75d8c52019-06-20 09:49:01 -07008811 .name = "MX25U25635F",
8812 .bustype = BUS_SPI,
8813 .manufacture_id = MACRONIX_ID,
8814 .model_id = MACRONIX_MX25U25635F,
8815 .total_size = 32768,
8816 .page_size = 256,
8817 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8818 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI | FEATURE_4BA,
8819 .tested = TEST_OK_PR,
8820 .probe = probe_spi_rdid,
8821 .probe_timing = TIMING_ZERO,
8822 .block_erasers =
8823 {
8824 {
8825 .eraseblocks = { {4 * 1024, 8192} },
8826 .block_erase = spi_block_erase_21,
8827 }, {
8828 .eraseblocks = { {4 * 1024, 8192} },
8829 .block_erase = spi_block_erase_20,
8830 }, {
8831 .eraseblocks = { {32 * 1024, 1024} },
8832 .block_erase = spi_block_erase_5c,
8833 }, {
8834 .eraseblocks = { {32 * 1024, 1024} },
8835 .block_erase = spi_block_erase_52,
8836 }, {
8837 .eraseblocks = { {64 * 1024, 512} },
8838 .block_erase = spi_block_erase_dc,
8839 }, {
8840 .eraseblocks = { {64 * 1024, 512} },
8841 .block_erase = spi_block_erase_d8,
8842 }, {
8843 .eraseblocks = { {32 * 1024 * 1024, 1} },
8844 .block_erase = spi_block_erase_60,
8845 }, {
8846 .eraseblocks = { {32 * 1024 * 1024, 1} },
8847 .block_erase = spi_block_erase_c7,
8848 }
8849 },
8850 /* TODO: security register */
8851 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8852 .unlock = spi_disable_blockprotect_bp3_srwd,
8853 .write = spi_chip_write_256, /* Multi I/O supported */
8854 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8855 .voltage = {1650, 2000},
8856 },
8857
8858 {
8859 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008860 .name = "MX25U3235E/F",
8861 .bustype = BUS_SPI,
8862 .manufacture_id = MACRONIX_ID,
8863 .model_id = MACRONIX_MX25U3235E,
8864 .total_size = 4096,
8865 .page_size = 256,
8866 /* F model supports SFDP */
8867 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8868 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8869 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
8870 .tested = TEST_OK_PREW,
8871 .probe = probe_spi_rdid,
8872 .probe_timing = TIMING_ZERO,
8873 .block_erasers =
8874 {
8875 {
8876 .eraseblocks = { {4 * 1024, 1024} },
8877 .block_erase = spi_block_erase_20,
8878 }, {
8879 .eraseblocks = { {32 * 1024, 128} },
8880 .block_erase = spi_block_erase_52,
8881 }, {
8882 .eraseblocks = { {64 * 1024, 64} },
8883 .block_erase = spi_block_erase_d8,
8884 }, {
8885 .eraseblocks = { {4 * 1024 * 1024, 1} },
8886 .block_erase = spi_block_erase_60,
8887 }, {
8888 .eraseblocks = { {4 * 1024 * 1024, 1} },
8889 .block_erase = spi_block_erase_c7,
8890 }
8891 },
8892 /* TODO: security register */
8893 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8894 .unlock = spi_disable_blockprotect_bp3_srwd,
8895 .write = spi_chip_write_256,
8896 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8897 .voltage = {1650, 2000},
8898 },
8899
8900 {
8901 .vendor = "Macronix",
Daniel Thompsoncadd4202018-06-04 13:52:22 +01008902 .name = "MX25U51245G",
8903 .bustype = BUS_SPI,
8904 .manufacture_id = MACRONIX_ID,
8905 .model_id = MACRONIX_MX25U51245G,
8906 .total_size = 65536,
8907 .page_size = 256,
8908 /* OTP: 512B factory programmed and 512B customer programmed; enter 0xB1, exit 0xC1 */
8909 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI | FEATURE_4BA,
8910 .tested = TEST_OK_PREW,
8911 .probe = probe_spi_rdid,
8912 .probe_timing = TIMING_ZERO,
8913 .block_erasers =
8914 {
8915 {
8916 .eraseblocks = { {4 * 1024, 16384} },
8917 .block_erase = spi_block_erase_21,
8918 }, {
8919 .eraseblocks = { {4 * 1024, 16384} },
8920 .block_erase = spi_block_erase_20,
8921 }, {
8922 .eraseblocks = { {32 * 1024, 2048} },
8923 .block_erase = spi_block_erase_5c,
8924 }, {
8925 .eraseblocks = { {32 * 1024, 2048} },
8926 .block_erase = spi_block_erase_52,
8927 }, {
8928 .eraseblocks = { {64 * 1024, 1024} },
8929 .block_erase = spi_block_erase_dc,
8930 }, {
8931 .eraseblocks = { {64 * 1024, 1024} },
8932 .block_erase = spi_block_erase_d8,
8933 }, {
8934 .eraseblocks = { {64 * 1024 * 1024, 1} },
8935 .block_erase = spi_block_erase_60,
8936 }, {
8937 .eraseblocks = { {64 * 1024 * 1024, 1} },
8938 .block_erase = spi_block_erase_c7,
8939 }
8940 },
8941 /* TODO: security register */
8942 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8943 .unlock = spi_disable_blockprotect_bp3_srwd,
8944 .write = spi_chip_write_256, /* Multi I/O supported */
8945 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8946 .voltage = {1650, 2000},
8947 },
8948
8949 {
8950 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10008951 .name = "MX25U6435E/F",
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008952 .bustype = BUS_SPI,
8953 .manufacture_id = MACRONIX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008954 .model_id = MACRONIX_MX25U6435E,
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008955 .total_size = 8192,
8956 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10008957 /* F model supports SFDP */
8958 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8959 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8960 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008961 .tested = TEST_OK_PREW,
8962 .probe = probe_spi_rdid,
8963 .probe_timing = TIMING_ZERO,
8964 .block_erasers =
8965 {
8966 {
8967 .eraseblocks = { {4 * 1024, 2048} },
8968 .block_erase = spi_block_erase_20,
8969 }, {
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008970 .eraseblocks = { {32 * 1024, 256} },
8971 .block_erase = spi_block_erase_52,
8972 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10008973 .eraseblocks = { {64 * 1024, 128} },
8974 .block_erase = spi_block_erase_d8,
8975 }, {
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008976 .eraseblocks = { {8 * 1024 * 1024, 1} },
8977 .block_erase = spi_block_erase_60,
8978 }, {
8979 .eraseblocks = { {8 * 1024 * 1024, 1} },
8980 .block_erase = spi_block_erase_c7,
8981 }
8982 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10008983 /* TODO: security register */
Nathan Rennie-Waldock5a7f9422018-08-10 15:35:23 +01008984 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8985 .unlock = spi_disable_blockprotect_bp3_srwd,
8986 .write = spi_chip_write_256,
8987 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Alan Green1f9cc7d2019-07-01 11:10:45 +10008988 .voltage = {1650, 2000},
8989 },
8990
8991 {
8992 .vendor = "Macronix",
8993 .name = "MX25U8032E",
8994 .bustype = BUS_SPI,
8995 .manufacture_id = MACRONIX_ID,
8996 .model_id = MACRONIX_MX25U8032E,
8997 .total_size = 1024,
8998 .page_size = 256,
8999 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
9000 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9001 .tested = TEST_OK_PREW,
9002 .probe = probe_spi_rdid,
9003 .probe_timing = TIMING_ZERO,
9004 .block_erasers =
9005 {
9006 {
9007 .eraseblocks = { {4 * 1024, 256} },
9008 .block_erase = spi_block_erase_20,
9009 }, {
9010 .eraseblocks = { {32 * 1024, 32} },
9011 .block_erase = spi_block_erase_52,
9012 }, {
9013 .eraseblocks = { {64 * 1024, 16} },
9014 .block_erase = spi_block_erase_d8,
9015 }, {
9016 .eraseblocks = { {1024 * 1024, 1} },
9017 .block_erase = spi_block_erase_60,
9018 }, {
9019 .eraseblocks = { {1024 * 1024, 1} },
9020 .block_erase = spi_block_erase_c7,
9021 }
9022 },
9023 /* TODO: security register */
9024 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
9025 .unlock = spi_disable_blockprotect_bp3_srwd,
9026 .write = spi_chip_write_256,
9027 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9028 .voltage = {1650, 2000},
Nathan Rennie-Waldock5a7f9422018-08-10 15:35:23 +01009029 },
9030
9031 {
9032 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00009033 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009034 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009035 .manufacture_id = MACRONIX_ID,
9036 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00009037 .total_size = 128,
9038 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009039 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9040 .tested = TEST_UNTESTED,
9041 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009042 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00009043 .block_erasers =
9044 {
9045 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00009046 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00009047 {8 * 1024, 1},
9048 {4 * 1024, 2},
9049 {8 * 1024, 2},
9050 {32 * 1024, 1},
9051 {64 * 1024, 1},
9052 },
Sean Nelson35727f72010-01-28 23:55:12 +00009053 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009054 }, {
9055 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009056 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009057 }
9058 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009059 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00009060 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009061 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00009062 },
9063
9064 {
9065 .vendor = "Macronix",
9066 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009067 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009068 .manufacture_id = MACRONIX_ID,
9069 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00009070 .total_size = 128,
9071 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009072 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00009073 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00009074 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009075 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00009076 .block_erasers =
9077 {
9078 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00009079 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00009080 {64 * 1024, 1},
9081 {32 * 1024, 1},
9082 {8 * 1024, 2},
9083 {4 * 1024, 2},
9084 {8 * 1024, 1},
9085 },
Sean Nelson35727f72010-01-28 23:55:12 +00009086 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009087 }, {
9088 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009089 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009090 }
9091 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009092 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00009093 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009094 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00009095 },
9096
9097 {
9098 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009099 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009100 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009101 .manufacture_id = MACRONIX_ID,
9102 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009103 .total_size = 256,
9104 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009105 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009106 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009107 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009108 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009109 .block_erasers =
9110 {
9111 {
9112 .eraseblocks = {
9113 {16 * 1024, 1},
9114 {8 * 1024, 2},
9115 {32 * 1024, 1},
9116 {64 * 1024, 3},
9117 },
Sean Nelson35727f72010-01-28 23:55:12 +00009118 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009119 }, {
9120 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009121 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009122 },
9123 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009124 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009125 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009126 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009127 },
9128
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009129 {
9130 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009131 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009132 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009133 .manufacture_id = MACRONIX_ID,
9134 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009135 .total_size = 256,
9136 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009137 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009138 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00009139 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009140 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009141 .block_erasers =
9142 {
9143 {
9144 .eraseblocks = {
9145 {64 * 1024, 3},
9146 {32 * 1024, 1},
9147 {8 * 1024, 2},
9148 {16 * 1024, 1},
9149 },
Sean Nelson35727f72010-01-28 23:55:12 +00009150 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009151 }, {
9152 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009153 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00009154 },
9155 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009156 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009157 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009158 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009159 },
9160
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009161 {
9162 .vendor = "Macronix",
Daniele Forsi6a18a932014-07-13 14:53:45 +00009163 .name = "MX29F022(N)B",
9164 .bustype = BUS_PARALLEL,
9165 .manufacture_id = MACRONIX_ID,
9166 .model_id = MACRONIX_MX29F022B,
9167 .total_size = 256,
9168 .page_size = 0, /* unused */
9169 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9170 .tested = TEST_UNTESTED,
9171 .probe = probe_jedec,
9172 .probe_timing = TIMING_ZERO,
9173 .block_erasers =
9174 {
9175 {
9176 .eraseblocks = {
9177 {16 * 1024, 1},
9178 {8 * 1024, 2},
9179 {32 * 1024, 1},
9180 {64 * 1024, 3},
9181 },
9182 .block_erase = erase_sector_jedec,
9183 }, {
9184 .eraseblocks = { {256 * 1024, 1} },
9185 .block_erase = erase_chip_block_jedec,
9186 }
9187 },
9188 .write = write_jedec_1,
9189 .read = read_memmapped,
9190 .voltage = {4500, 5500},
9191 },
9192
9193 {
9194 .vendor = "Macronix",
9195 .name = "MX29F022(N)T",
9196 .bustype = BUS_PARALLEL,
9197 .manufacture_id = MACRONIX_ID,
9198 .model_id = MACRONIX_MX29F022T,
9199 .total_size = 256,
9200 .page_size = 0, /* unused */
9201 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9202 .tested = TEST_OK_PREW,
9203 .probe = probe_jedec,
9204 .probe_timing = TIMING_ZERO,
9205 .block_erasers =
9206 {
9207 {
9208 .eraseblocks = {
9209 {64 * 1024, 3},
9210 {32 * 1024, 1},
9211 {8 * 1024, 2},
9212 {16 * 1024, 1},
9213 },
9214 .block_erase = erase_sector_jedec,
9215 }, {
9216 .eraseblocks = { {256 * 1024, 1} },
9217 .block_erase = erase_chip_block_jedec,
9218 }
9219 },
9220 .write = write_jedec_1,
9221 .read = read_memmapped,
9222 .voltage = {4500, 5500},
9223 },
9224
9225 {
9226 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00009227 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009228 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00009229 .manufacture_id = MACRONIX_ID,
9230 .model_id = MACRONIX_MX29F040,
9231 .total_size = 512,
9232 .page_size = 64 * 1024,
9233 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9234 .tested = TEST_UNTESTED,
9235 .probe = probe_jedec,
9236 .probe_timing = TIMING_ZERO,
9237 .block_erasers =
9238 {
9239 {
9240 .eraseblocks = { {64 * 1024, 8} },
9241 .block_erase = erase_sector_jedec,
9242 }, {
9243 .eraseblocks = { {512 * 1024, 1} },
9244 .block_erase = erase_chip_block_jedec,
9245 },
9246 },
9247 .write = write_jedec_1,
9248 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009249 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00009250 },
9251
9252 {
9253 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009254 .name = "MX29GL128F",
9255 .bustype = BUS_PARALLEL,
9256 .manufacture_id = MACRONIX_ID,
9257 .model_id = MACRONIX_MX29GL128F,
9258 .total_size = 16384,
9259 .page_size = 128 * 1024, /* actual page size is 16 */
9260 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9261 .tested = TEST_UNTESTED,
9262 .probe = probe_jedec_29gl,
9263 .probe_timing = TIMING_ZERO,
9264 .block_erasers =
9265 {
9266 {
9267 .eraseblocks = { {128 * 1024, 128} },
9268 .block_erase = erase_sector_jedec,
9269 }, {
9270 .eraseblocks = { {16 * 1024 * 1024, 1} },
9271 .block_erase = erase_chip_block_jedec,
9272 },
9273 },
9274 .write = write_jedec_1,
9275 .read = read_memmapped,
9276 .voltage = {2700, 3600},
9277 },
9278
9279 {
9280 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00009281 .name = "MX29GL320EB",
9282 .bustype = BUS_PARALLEL,
9283 .manufacture_id = MACRONIX_ID,
9284 .model_id = MACRONIX_MX29GL320EB,
9285 .total_size = 4096,
9286 .page_size = 128 * 1024, /* actual page size is 16 */
9287 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9288 .tested = TEST_UNTESTED,
9289 .probe = probe_jedec_29gl,
9290 .probe_timing = TIMING_ZERO,
9291 .block_erasers =
9292 {
9293 {
9294 .eraseblocks = {
9295 {8 * 1024, 8},
9296 {64 * 1024, 63},
9297 },
9298 .block_erase = erase_sector_jedec,
9299 }, {
9300 .eraseblocks = { {4 * 1024 * 1024, 1} },
9301 .block_erase = erase_chip_block_jedec,
9302 },
9303 },
9304 .write = write_jedec_1,
9305 .read = read_memmapped,
9306 .voltage = {2700, 3600},
9307 },
9308
9309 {
9310 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009311 .name = "MX29GL320EH/L",
9312 .bustype = BUS_PARALLEL,
9313 .manufacture_id = MACRONIX_ID,
9314 .model_id = MACRONIX_MX29GL320EHL,
9315 .total_size = 4096,
9316 .page_size = 128 * 1024, /* actual page size is 16 */
9317 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9318 .tested = TEST_UNTESTED,
9319 .probe = probe_jedec_29gl,
9320 .probe_timing = TIMING_ZERO,
9321 .block_erasers =
9322 {
9323 {
9324 .eraseblocks = { {64 * 1024, 64} },
9325 .block_erase = erase_sector_jedec,
9326 }, {
9327 .eraseblocks = { {4 * 1024 * 1024, 1} },
9328 .block_erase = erase_chip_block_jedec,
9329 },
9330 },
9331 .write = write_jedec_1,
9332 .read = read_memmapped,
9333 .voltage = {2700, 3600},
9334 },
9335
9336 {
9337 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00009338 .name = "MX29GL320ET",
9339 .bustype = BUS_PARALLEL,
9340 .manufacture_id = MACRONIX_ID,
9341 .model_id = MACRONIX_MX29GL320ET,
9342 .total_size = 4096,
9343 .page_size = 128 * 1024, /* actual page size is 16 */
9344 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9345 .tested = TEST_UNTESTED,
9346 .probe = probe_jedec_29gl,
9347 .probe_timing = TIMING_ZERO,
9348 .block_erasers =
9349 {
9350 {
9351 .eraseblocks = {
9352 {64 * 1024, 63},
9353 {8 * 1024, 8},
9354 },
9355 .block_erase = erase_sector_jedec,
9356 }, {
9357 .eraseblocks = { {4 * 1024 * 1024, 1} },
9358 .block_erase = erase_chip_block_jedec,
9359 },
9360 },
9361 .write = write_jedec_1,
9362 .read = read_memmapped,
9363 .voltage = {2700, 3600},
9364 },
9365
9366 {
9367 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00009368 .name = "MX29GL640EB",
9369 .bustype = BUS_PARALLEL,
9370 .manufacture_id = MACRONIX_ID,
9371 .model_id = MACRONIX_MX29GL640EB,
9372 .total_size = 8192,
9373 .page_size = 128 * 1024, /* actual page size is 16 */
9374 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9375 .tested = TEST_UNTESTED,
9376 .probe = probe_jedec_29gl,
9377 .probe_timing = TIMING_ZERO,
9378 .block_erasers =
9379 {
9380 {
9381 .eraseblocks = {
9382 {8 * 1024, 8},
9383 {64 * 1024, 127},
9384 },
9385 .block_erase = erase_sector_jedec,
9386 }, {
9387 .eraseblocks = { {8 * 1024 * 1024, 1} },
9388 .block_erase = erase_chip_block_jedec,
9389 },
9390 },
9391 .write = write_jedec_1,
9392 .read = read_memmapped,
9393 .voltage = {2700, 3600},
9394 },
9395
9396 {
9397 .vendor = "Macronix",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009398 .name = "MX29GL640EH/L",
9399 .bustype = BUS_PARALLEL,
9400 .manufacture_id = MACRONIX_ID,
9401 .model_id = MACRONIX_MX29GL640EHL,
9402 .total_size = 8192,
9403 .page_size = 128 * 1024, /* actual page size is 16 */
9404 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9405 .tested = TEST_UNTESTED,
9406 .probe = probe_jedec_29gl,
9407 .probe_timing = TIMING_ZERO,
9408 .block_erasers =
9409 {
9410 {
9411 .eraseblocks = { {64 * 1024, 128} },
9412 .block_erase = erase_sector_jedec,
9413 }, {
9414 .eraseblocks = { {8 * 1024 * 1024, 1} },
9415 .block_erase = erase_chip_block_jedec,
9416 },
9417 },
9418 .write = write_jedec_1,
9419 .read = read_memmapped,
9420 .voltage = {2700, 3600},
9421 },
9422
9423 {
9424 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00009425 .name = "MX29GL640ET",
9426 .bustype = BUS_PARALLEL,
9427 .manufacture_id = MACRONIX_ID,
9428 .model_id = MACRONIX_MX29GL640ET,
9429 .total_size = 8192,
9430 .page_size = 128 * 1024, /* actual page size is 16 */
9431 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9432 .tested = TEST_UNTESTED,
9433 .probe = probe_jedec_29gl,
9434 .probe_timing = TIMING_ZERO,
9435 .block_erasers =
9436 {
9437 {
9438 .eraseblocks = {
9439 {64 * 1024, 127},
9440 {8 * 1024, 8},
9441 },
9442 .block_erase = erase_sector_jedec,
9443 }, {
9444 .eraseblocks = { {8 * 1024 * 1024, 1} },
9445 .block_erase = erase_chip_block_jedec,
9446 },
9447 },
9448 .write = write_jedec_1,
9449 .read = read_memmapped,
9450 .voltage = {2700, 3600},
9451 },
9452
9453 {
9454 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00009455 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009456 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009457 .manufacture_id = MACRONIX_ID,
9458 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009459 .total_size = 512,
9460 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009461 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9462 .tested = TEST_UNTESTED,
9463 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009464 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00009465 .block_erasers =
9466 {
9467 {
Stefan Tauner6697f712014-08-06 15:09:15 +00009468 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +00009469 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009470 }, {
9471 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009472 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009473 },
9474 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009475 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009476 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009477 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00009478 },
9479
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009480 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009481 .vendor = "Macronix",
Hemanth Guruva Reddya136d422019-07-11 11:08:27 +02009482 .name = "MX66L51235F/MX25L51245G",
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009483 .bustype = BUS_SPI,
Alan Green1f9cc7d2019-07-01 11:10:45 +10009484 .manufacture_id = MACRONIX_ID,
9485 .model_id = MACRONIX_MX66L51235F,
9486 .total_size = 65536,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009487 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10009488 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
9489 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009490 .tested = TEST_OK_PREW,
9491 .probe = probe_spi_rdid,
9492 .probe_timing = TIMING_ZERO,
9493 .block_erasers =
9494 {
9495 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009496 .eraseblocks = { {4 * 1024, 16384} },
9497 .block_erase = spi_block_erase_21,
9498 }, {
9499 .eraseblocks = { {4 * 1024, 16384} },
9500 .block_erase = spi_block_erase_20,
9501 }, {
9502 .eraseblocks = { {32 * 1024, 2048} },
9503 .block_erase = spi_block_erase_5c,
9504 }, {
9505 .eraseblocks = { {32 * 1024, 2048} },
9506 .block_erase = spi_block_erase_52,
9507 }, {
9508 .eraseblocks = { {64 * 1024, 1024} },
9509 .block_erase = spi_block_erase_dc,
9510 }, {
9511 .eraseblocks = { {64 * 1024, 1024} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009512 .block_erase = spi_block_erase_d8,
9513 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009514 .eraseblocks = { {64 * 1024 * 1024, 1} },
9515 .block_erase = spi_block_erase_60,
9516 }, {
9517 .eraseblocks = { {64 * 1024 * 1024, 1} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009518 .block_erase = spi_block_erase_c7,
9519 }
9520 },
Alan Green1f9cc7d2019-07-01 11:10:45 +10009521 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
9522 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009523 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009524 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +10009525 .read = spi_chip_read, /* Fast read (0x0B) supported */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009526 .voltage = {2700, 3600},
9527 },
9528
9529 /* The ST M25P05 is a bit of a problem. It has the same ID as the
9530 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
9531 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
9532 * only is successful if RDID does not work.
9533 */
9534 {
9535 .vendor = "Micron/Numonyx/ST",
9536 .name = "M25P05",
9537 .bustype = BUS_SPI,
9538 .manufacture_id = 0, /* Not used. */
9539 .model_id = ST_M25P05_RES,
9540 .total_size = 64,
9541 .page_size = 256,
9542 .feature_bits = FEATURE_WRSR_WREN,
9543 .tested = TEST_UNTESTED,
9544 .probe = probe_spi_res1,
9545 .probe_timing = TIMING_ZERO,
9546 .block_erasers =
9547 {
9548 {
9549 .eraseblocks = { {32 * 1024, 2} },
9550 .block_erase = spi_block_erase_d8,
9551 }, {
9552 .eraseblocks = { {64 * 1024, 1} },
9553 .block_erase = spi_block_erase_c7,
9554 }
9555 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009556 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009557 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009558 .write = spi_chip_write_1, /* 128 */
9559 .read = spi_chip_read,
9560 .voltage = {2700, 3600},
9561 },
9562
9563 {
9564 .vendor = "Micron/Numonyx/ST",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009565 .name = "M25P05-A",
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009566 .bustype = BUS_SPI,
9567 .manufacture_id = ST_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10009568 .model_id = ST_M25P05A,
9569 .total_size = 64,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009570 .page_size = 256,
9571 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +00009572 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009573 .probe = probe_spi_rdid,
9574 .probe_timing = TIMING_ZERO,
9575 .block_erasers =
9576 {
9577 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009578 .eraseblocks = { {32 * 1024, 2} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009579 .block_erase = spi_block_erase_d8,
9580 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009581 .eraseblocks = { {64 * 1024, 1} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009582 .block_erase = spi_block_erase_c7,
9583 }
9584 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009585 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009586 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009587 .write = spi_chip_write_256,
9588 .read = spi_chip_read,
9589 .voltage = {2700, 3600},
9590 },
9591
9592 /* The ST M25P10 has the same problem as the M25P05. */
9593 {
9594 .vendor = "Micron/Numonyx/ST",
9595 .name = "M25P10",
9596 .bustype = BUS_SPI,
9597 .manufacture_id = 0, /* Not used. */
9598 .model_id = ST_M25P10_RES,
9599 .total_size = 128,
9600 .page_size = 256,
9601 .feature_bits = FEATURE_WRSR_WREN,
9602 .tested = TEST_UNTESTED,
9603 .probe = probe_spi_res1,
9604 .probe_timing = TIMING_ZERO,
9605 .block_erasers =
9606 {
9607 {
9608 .eraseblocks = { {32 * 1024, 4} },
9609 .block_erase = spi_block_erase_d8,
9610 }, {
9611 .eraseblocks = { {128 * 1024, 1} },
9612 .block_erase = spi_block_erase_c7,
9613 }
9614 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009615 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009616 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009617 .write = spi_chip_write_1, /* 128 */
9618 .read = spi_chip_read,
9619 .voltage = {2700, 3600},
9620 },
9621
9622 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009623 .vendor = "Micron/Numonyx/ST",
9624 .name = "M25P10-A",
9625 .bustype = BUS_SPI,
9626 .manufacture_id = ST_ID,
9627 .model_id = ST_M25P10A,
9628 .total_size = 128,
9629 .page_size = 256,
9630 .feature_bits = FEATURE_WRSR_WREN,
9631 .tested = TEST_OK_PREW,
9632 .probe = probe_spi_rdid,
9633 .probe_timing = TIMING_ZERO,
9634 .block_erasers =
9635 {
9636 {
9637 .eraseblocks = { {32 * 1024, 4} },
9638 .block_erase = spi_block_erase_d8,
9639 }, {
9640 .eraseblocks = { {128 * 1024, 1} },
9641 .block_erase = spi_block_erase_c7,
9642 }
9643 },
9644 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
9645 .unlock = spi_disable_blockprotect_bp3_srwd,
9646 .write = spi_chip_write_256,
9647 .read = spi_chip_read,
9648 .voltage = {2700, 3600},
9649 },
9650
9651 {
9652 .vendor = "Micron/Numonyx/ST",
9653 .name = "M25P128",
9654 .bustype = BUS_SPI,
9655 .manufacture_id = ST_ID,
9656 .model_id = ST_M25P128,
9657 .total_size = 16384,
9658 .page_size = 256,
9659 .feature_bits = FEATURE_WRSR_WREN,
9660 .tested = TEST_OK_PREW,
9661 .probe = probe_spi_rdid,
9662 .probe_timing = TIMING_ZERO,
9663 .block_erasers =
9664 {
9665 {
9666 .eraseblocks = { {256 * 1024, 64} },
9667 .block_erase = spi_block_erase_d8,
9668 }, {
9669 .eraseblocks = { {16 * 1024 * 1024, 1} },
9670 .block_erase = spi_block_erase_c7,
9671 }
9672 },
9673 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
9674 .unlock = spi_disable_blockprotect_bp3_srwd,
9675 .write = spi_chip_write_256,
9676 .read = spi_chip_read,
9677 .voltage = {2700, 3600},
9678 },
9679
9680 {
9681 .vendor = "Micron/Numonyx/ST",
9682 .name = "M25P16",
9683 .bustype = BUS_SPI,
9684 .manufacture_id = ST_ID,
9685 .model_id = ST_M25P16,
9686 .total_size = 2048,
9687 .page_size = 256,
9688 .feature_bits = FEATURE_WRSR_WREN,
9689 .tested = TEST_OK_PREW,
9690 .probe = probe_spi_rdid,
9691 .probe_timing = TIMING_ZERO,
9692 .block_erasers =
9693 {
9694 {
9695 .eraseblocks = { {64 * 1024, 32} },
9696 .block_erase = spi_block_erase_d8,
9697 }, {
9698 .eraseblocks = { {2 * 1024 * 1024, 1} },
9699 .block_erase = spi_block_erase_c7,
9700 }
9701 },
9702 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
9703 .unlock = spi_disable_blockprotect_bp3_srwd,
9704 .write = spi_chip_write_256,
9705 .read = spi_chip_read,
9706 .voltage = {2700, 3600},
9707 },
9708
9709 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009710 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9711 .name = "M25P20",
9712 .bustype = BUS_SPI,
9713 .manufacture_id = ST_ID,
9714 .model_id = ST_M25P20,
9715 .total_size = 256,
9716 .page_size = 256,
9717 .feature_bits = FEATURE_WRSR_WREN,
9718 .tested = TEST_UNTESTED,
9719 .probe = probe_spi_rdid,
9720 .probe_timing = TIMING_ZERO,
9721 .block_erasers =
9722 {
9723 {
9724 .eraseblocks = { {64 * 1024, 4} },
9725 .block_erase = spi_block_erase_d8,
9726 }, {
9727 .eraseblocks = { {256 * 1024, 1} },
9728 .block_erase = spi_block_erase_c7,
9729 }
9730 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009731 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009732 .unlock = spi_disable_blockprotect,
9733 .write = spi_chip_write_256,
9734 .read = spi_chip_read, /* Fast read (0x0B) supported */
9735 .voltage = {2700, 3600},
9736 },
9737
9738 {
9739 .vendor = "Micron/Numonyx/ST",
9740 .name = "M25P20-old",
9741 .bustype = BUS_SPI,
9742 .manufacture_id = 0, /* Not used. */
9743 .model_id = ST_M25P20_RES,
9744 .total_size = 256,
9745 .page_size = 256,
9746 .feature_bits = FEATURE_WRSR_WREN,
9747 .tested = TEST_OK_PREW,
9748 .probe = probe_spi_res1,
9749 .probe_timing = TIMING_ZERO,
9750 .block_erasers =
9751 {
9752 {
9753 .eraseblocks = { {64 * 1024, 4} },
9754 .block_erase = spi_block_erase_d8,
9755 }, {
9756 .eraseblocks = { {256 * 1024, 1} },
9757 .block_erase = spi_block_erase_c7,
9758 }
9759 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009760 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009761 .unlock = spi_disable_blockprotect,
9762 .write = spi_chip_write_256,
9763 .read = spi_chip_read, /* Fast read (0x0B) supported */
9764 .voltage = {2700, 3600},
9765 },
9766
9767 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009768 .vendor = "Micron/Numonyx/ST",
9769 .name = "M25P32",
9770 .bustype = BUS_SPI,
9771 .manufacture_id = ST_ID,
9772 .model_id = ST_M25P32,
9773 .total_size = 4096,
9774 .page_size = 256,
9775 .feature_bits = FEATURE_WRSR_WREN,
9776 .tested = TEST_OK_PREW,
9777 .probe = probe_spi_rdid,
9778 .probe_timing = TIMING_ZERO,
9779 .block_erasers =
9780 {
9781 {
9782 .eraseblocks = { {64 * 1024, 64} },
9783 .block_erase = spi_block_erase_d8,
9784 }, {
9785 .eraseblocks = { {4 * 1024 * 1024, 1} },
9786 .block_erase = spi_block_erase_c7,
9787 }
9788 },
9789 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
9790 .unlock = spi_disable_blockprotect_bp3_srwd,
9791 .write = spi_chip_write_256,
9792 .read = spi_chip_read,
9793 .voltage = {2700, 3600},
9794 },
9795
9796 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009797 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9798 .name = "M25P40",
9799 .bustype = BUS_SPI,
9800 .manufacture_id = ST_ID,
9801 .model_id = ST_M25P40,
9802 .total_size = 512,
9803 .page_size = 256,
9804 .feature_bits = FEATURE_WRSR_WREN,
9805 .tested = TEST_OK_PREW,
9806 .probe = probe_spi_rdid,
9807 .probe_timing = TIMING_ZERO,
9808 .block_erasers =
9809 {
9810 {
9811 .eraseblocks = { {64 * 1024, 8} },
9812 .block_erase = spi_block_erase_d8,
9813 }, {
9814 .eraseblocks = { {512 * 1024, 1} },
9815 .block_erase = spi_block_erase_c7,
9816 }
9817 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009818 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009819 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009820 .write = spi_chip_write_256,
9821 .read = spi_chip_read,
9822 .voltage = {2700, 3600},
9823 },
9824
9825 {
9826 .vendor = "Micron/Numonyx/ST",
9827 .name = "M25P40-old",
9828 .bustype = BUS_SPI,
9829 .manufacture_id = 0, /* Not used. */
9830 .model_id = ST_M25P40_RES,
9831 .total_size = 512,
9832 .page_size = 256,
9833 .feature_bits = FEATURE_WRSR_WREN,
9834 .tested = TEST_UNTESTED,
9835 .probe = probe_spi_res1,
9836 .probe_timing = TIMING_ZERO,
9837 .block_erasers =
9838 {
9839 {
9840 .eraseblocks = { {64 * 1024, 8} },
9841 .block_erase = spi_block_erase_d8,
9842 }, {
9843 .eraseblocks = { {512 * 1024, 1} },
9844 .block_erase = spi_block_erase_c7,
9845 }
9846 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009847 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009848 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009849 .write = spi_chip_write_256,
9850 .read = spi_chip_read,
9851 },
9852
9853 {
9854 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009855 .name = "M25P64",
9856 .bustype = BUS_SPI,
9857 .manufacture_id = ST_ID,
9858 .model_id = ST_M25P64,
9859 .total_size = 8192,
9860 .page_size = 256,
9861 .feature_bits = FEATURE_WRSR_WREN,
9862 .tested = TEST_OK_PREW,
9863 .probe = probe_spi_rdid,
9864 .probe_timing = TIMING_ZERO,
9865 .block_erasers =
9866 {
9867 {
9868 .eraseblocks = { {64 * 1024, 128} },
9869 .block_erase = spi_block_erase_d8,
9870 }, {
9871 .eraseblocks = { {8 * 1024 * 1024, 1} },
9872 .block_erase = spi_block_erase_c7,
9873 }
9874 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009875 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009876 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009877 .write = spi_chip_write_256,
9878 .read = spi_chip_read,
9879 .voltage = {2700, 3600},
9880 },
9881
9882 {
9883 .vendor = "Micron/Numonyx/ST",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009884 .name = "M25P80",
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009885 .bustype = BUS_SPI,
9886 .manufacture_id = ST_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +10009887 .model_id = ST_M25P80,
9888 .total_size = 1024,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009889 .page_size = 256,
9890 .feature_bits = FEATURE_WRSR_WREN,
9891 .tested = TEST_OK_PREW,
9892 .probe = probe_spi_rdid,
9893 .probe_timing = TIMING_ZERO,
9894 .block_erasers =
9895 {
9896 {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009897 .eraseblocks = { {64 * 1024, 16} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009898 .block_erase = spi_block_erase_d8,
9899 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +10009900 .eraseblocks = { {1024 * 1024, 1} },
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009901 .block_erase = spi_block_erase_c7,
9902 }
9903 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009904 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009905 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009906 .write = spi_chip_write_256,
9907 .read = spi_chip_read,
9908 .voltage = {2700, 3600},
9909 },
9910
9911 {
9912 .vendor = "Micron/Numonyx/ST",
9913 .name = "M25PE10",
9914 .bustype = BUS_SPI,
9915 .manufacture_id = ST_ID,
9916 .model_id = ST_M25PE10,
9917 .total_size = 128,
9918 .page_size = 256,
9919 .feature_bits = FEATURE_WRSR_WREN,
9920 .tested = TEST_UNTESTED,
9921 .probe = probe_spi_rdid,
9922 .probe_timing = TIMING_ZERO,
9923 .block_erasers =
9924 {
9925 {
9926 .eraseblocks = { {4 * 1024, 32} },
9927 .block_erase = spi_block_erase_20,
9928 }, {
9929 .eraseblocks = { {64 * 1024, 2} },
9930 .block_erase = spi_block_erase_d8,
9931 }, {
9932 .eraseblocks = { {128 * 1024, 1} },
9933 .block_erase = spi_block_erase_c7,
9934 }
9935 },
9936 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9937 .unlock = spi_disable_blockprotect,
9938 .write = spi_chip_write_256,
9939 .read = spi_chip_read,
9940 .voltage = {2700, 3600},
9941 },
9942
9943 {
9944 .vendor = "Micron/Numonyx/ST",
Alan Green1f9cc7d2019-07-01 11:10:45 +10009945 .name = "M25PE16",
9946 .bustype = BUS_SPI,
9947 .manufacture_id = ST_ID,
9948 .model_id = ST_M25PE16,
9949 .total_size = 2048,
9950 .page_size = 256,
9951 .feature_bits = FEATURE_WRSR_WREN,
9952 .tested = TEST_UNTESTED,
9953 .probe = probe_spi_rdid,
9954 .probe_timing = TIMING_ZERO,
9955 .block_erasers =
9956 {
9957 {
9958 .eraseblocks = { {4 * 1024, 512} },
9959 .block_erase = spi_block_erase_20,
9960 }, {
9961 .eraseblocks = { {64 * 1024, 32} },
9962 .block_erase = spi_block_erase_d8,
9963 }, {
9964 .eraseblocks = { {2 * 1024 * 1024, 1} },
9965 .block_erase = spi_block_erase_c7,
9966 }
9967 },
9968 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9969 .unlock = spi_disable_blockprotect,
9970 .write = spi_chip_write_256,
9971 .read = spi_chip_read,
9972 .voltage = {2700, 3600},
9973 },
9974
9975 {
9976 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009977 .name = "M25PE20",
9978 .bustype = BUS_SPI,
9979 .manufacture_id = ST_ID,
9980 .model_id = ST_M25PE20,
9981 .total_size = 256,
9982 .page_size = 256,
9983 .feature_bits = FEATURE_WRSR_WREN,
9984 .tested = TEST_UNTESTED,
9985 .probe = probe_spi_rdid,
9986 .probe_timing = TIMING_ZERO,
9987 .block_erasers =
9988 {
9989 {
9990 .eraseblocks = { {4 * 1024, 64} },
9991 .block_erase = spi_block_erase_20,
9992 }, {
9993 .eraseblocks = { {64 * 1024, 4} },
9994 .block_erase = spi_block_erase_d8,
9995 }, {
9996 .eraseblocks = { {256 * 1024, 1} },
9997 .block_erase = spi_block_erase_c7,
9998 }
9999 },
10000 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10001 .unlock = spi_disable_blockprotect,
10002 .write = spi_chip_write_256,
10003 .read = spi_chip_read,
10004 .voltage = {2700, 3600},
10005 },
10006
10007 {
10008 .vendor = "Micron/Numonyx/ST",
10009 .name = "M25PE40",
10010 .bustype = BUS_SPI,
10011 .manufacture_id = ST_ID,
10012 .model_id = ST_M25PE40,
10013 .total_size = 512,
10014 .page_size = 256,
10015 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000010016 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010017 .probe = probe_spi_rdid,
10018 .probe_timing = TIMING_ZERO,
10019 .block_erasers =
10020 {
10021 {
10022 .eraseblocks = { {4 * 1024, 128} },
10023 .block_erase = spi_block_erase_20,
10024 }, {
10025 .eraseblocks = { {64 * 1024, 8} },
10026 .block_erase = spi_block_erase_d8,
10027 }, {
10028 .eraseblocks = { {512 * 1024, 1} },
10029 .block_erase = spi_block_erase_c7,
10030 }
10031 },
10032 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10033 .unlock = spi_disable_blockprotect,
10034 .write = spi_chip_write_256,
10035 .read = spi_chip_read,
10036 .voltage = {2700, 3600},
10037 },
10038
10039 {
10040 .vendor = "Micron/Numonyx/ST",
10041 .name = "M25PE80",
10042 .bustype = BUS_SPI,
10043 .manufacture_id = ST_ID,
10044 .model_id = ST_M25PE80,
10045 .total_size = 1024,
10046 .page_size = 256,
10047 .feature_bits = FEATURE_WRSR_WREN,
10048 .tested = TEST_OK_PREW,
10049 .probe = probe_spi_rdid,
10050 .probe_timing = TIMING_ZERO,
10051 .block_erasers =
10052 {
10053 {
10054 .eraseblocks = { {4 * 1024, 256} },
10055 .block_erase = spi_block_erase_20,
10056 }, {
10057 .eraseblocks = { {64 * 1024, 16} },
10058 .block_erase = spi_block_erase_d8,
10059 }, {
10060 .eraseblocks = { {1024 * 1024, 1} },
10061 .block_erase = spi_block_erase_c7,
10062 }
10063 },
10064 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10065 .unlock = spi_disable_blockprotect,
10066 .write = spi_chip_write_256,
10067 .read = spi_chip_read,
10068 .voltage = {2700, 3600},
10069 },
10070
10071 {
10072 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010073 .name = "M25PX16",
10074 .bustype = BUS_SPI,
10075 .manufacture_id = ST_ID,
10076 .model_id = ST_M25PX16,
10077 .total_size = 2048,
10078 .page_size = 256,
10079 /* OTP: 64B total; read 0x4B; write 0x42 */
10080 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10081 .tested = TEST_OK_PREW,
10082 .probe = probe_spi_rdid,
10083 .probe_timing = TIMING_ZERO,
10084 .block_erasers =
10085 {
10086 {
10087 .eraseblocks = { { 4 * 1024, 512 } },
10088 .block_erase = spi_block_erase_20,
10089 }, {
10090 .eraseblocks = { {64 * 1024, 32} },
10091 .block_erase = spi_block_erase_d8,
10092 }, {
10093 .eraseblocks = { {2 * 1024 * 1024, 1} },
10094 .block_erase = spi_block_erase_c7,
10095 }
10096 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010097 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010098 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
10099 .write = spi_chip_write_256,
10100 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010101 .voltage = {2300, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010102 },
10103
10104 {
10105 .vendor = "Micron/Numonyx/ST",
10106 .name = "M25PX32",
10107 .bustype = BUS_SPI,
10108 .manufacture_id = ST_ID,
10109 .model_id = ST_M25PX32,
10110 .total_size = 4096,
10111 .page_size = 256,
10112 /* OTP: 64B total; read 0x4B; write 0x42 */
10113 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10114 .tested = TEST_OK_PRE,
10115 .probe = probe_spi_rdid,
10116 .probe_timing = TIMING_ZERO,
10117 .block_erasers =
10118 {
10119 {
10120 .eraseblocks = { { 4 * 1024, 1024 } },
10121 .block_erase = spi_block_erase_20,
10122 }, {
10123 .eraseblocks = { {64 * 1024, 64} },
10124 .block_erase = spi_block_erase_d8,
10125 }, {
10126 .eraseblocks = { {4 * 1024 * 1024, 1} },
10127 .block_erase = spi_block_erase_c7,
10128 }
10129 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010130 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010131 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
10132 .write = spi_chip_write_256,
10133 .read = spi_chip_read,
10134 .voltage = {2700, 3600},
10135 },
10136
10137 {
10138 .vendor = "Micron/Numonyx/ST",
10139 .name = "M25PX64",
10140 .bustype = BUS_SPI,
10141 .manufacture_id = ST_ID,
10142 .model_id = ST_M25PX64,
10143 .total_size = 8192,
10144 .page_size = 256,
10145 /* OTP: 64B total; read 0x4B; write 0x42 */
10146 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010147 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010148 .probe = probe_spi_rdid,
10149 .probe_timing = TIMING_ZERO,
10150 .block_erasers =
10151 {
10152 {
10153 .eraseblocks = { { 4 * 1024, 2048 } },
10154 .block_erase = spi_block_erase_20,
10155 }, {
10156 .eraseblocks = { {64 * 1024, 128} },
10157 .block_erase = spi_block_erase_d8,
10158 }, {
10159 .eraseblocks = { {8 * 1024 * 1024, 1} },
10160 .block_erase = spi_block_erase_c7,
10161 }
10162 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010163 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010164 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
10165 .write = spi_chip_write_256,
10166 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010167 .voltage = {2700, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010168 },
10169
10170 {
10171 .vendor = "Micron/Numonyx/ST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100010172 .name = "M25PX80",
10173 .bustype = BUS_SPI,
10174 .manufacture_id = ST_ID,
10175 .model_id = ST_M25PX80,
10176 .total_size = 1024,
10177 .page_size = 256,
10178 /* OTP: 64B total; read 0x4B, write 0x42 */
10179 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10180 .tested = TEST_OK_PREW,
10181 .probe = probe_spi_rdid,
10182 .probe_timing = TIMING_ZERO,
10183 .block_erasers =
10184 {
10185 {
10186 .eraseblocks = { { 4 * 1024, 256 } },
10187 .block_erase = spi_block_erase_20,
10188 }, {
10189 .eraseblocks = { {64 * 1024, 16} },
10190 .block_erase = spi_block_erase_d8,
10191 }, {
10192 .eraseblocks = { {1024 * 1024, 1} },
10193 .block_erase = spi_block_erase_c7,
10194 }
10195 },
10196 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
10197 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
10198 .write = spi_chip_write_256,
10199 .read = spi_chip_read,
10200 .voltage = {2700, 3600},
10201 },
10202
10203 {
10204 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010205 .name = "M45PE10",
10206 .bustype = BUS_SPI,
10207 .manufacture_id = ST_ID,
10208 .model_id = ST_M45PE10,
10209 .total_size = 128,
10210 .page_size = 256,
10211 .tested = TEST_UNTESTED,
10212 .probe = probe_spi_rdid,
10213 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010214 .block_erasers =
10215 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010216 {
10217 .eraseblocks = { {256, 512} },
10218 .block_erase = spi_block_erase_db,
10219 }, {
10220 .eraseblocks = { {64 * 1024, 2} },
10221 .block_erase = spi_block_erase_d8,
10222 }
10223 },
10224 .printlock = spi_prettyprint_status_register_default_welwip,
10225 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
10226 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
10227 .read = spi_chip_read, /* Fast read (0x0B) supported */
10228 .voltage = {2700, 3600},
10229 },
10230
10231 {
10232 .vendor = "Micron/Numonyx/ST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100010233 .name = "M45PE16",
10234 .bustype = BUS_SPI,
10235 .manufacture_id = ST_ID,
10236 .model_id = ST_M45PE16,
10237 .total_size = 2048,
10238 .page_size = 256,
10239 .tested = TEST_UNTESTED,
10240 .probe = probe_spi_rdid,
10241 .probe_timing = TIMING_ZERO,
10242 .block_erasers =
10243 {
10244 {
10245 .eraseblocks = { {256, 8192} },
10246 .block_erase = spi_block_erase_db,
10247 }, {
10248 .eraseblocks = { {64 * 1024, 32} },
10249 .block_erase = spi_block_erase_d8,
10250 }
10251 },
10252 .printlock = spi_prettyprint_status_register_default_welwip,
10253 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
10254 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
10255 .read = spi_chip_read, /* Fast read (0x0B) supported */
10256 .voltage = {2700, 3600},
10257 },
10258
10259 {
10260 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010261 .name = "M45PE20",
10262 .bustype = BUS_SPI,
10263 .manufacture_id = ST_ID,
10264 .model_id = ST_M45PE20,
10265 .total_size = 256,
10266 .page_size = 256,
10267 .tested = TEST_UNTESTED,
10268 .probe = probe_spi_rdid,
10269 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010270 .block_erasers =
10271 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010272 {
10273 .eraseblocks = { {256, 1024} },
10274 .block_erase = spi_block_erase_db,
10275 }, {
10276 .eraseblocks = { {64 * 1024, 4} },
10277 .block_erase = spi_block_erase_d8,
10278 }
10279 },
10280 .printlock = spi_prettyprint_status_register_default_welwip,
10281 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
10282 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
10283 .read = spi_chip_read, /* Fast read (0x0B) supported */
10284 .voltage = {2700, 3600},
10285 },
10286
10287 {
10288 .vendor = "Micron/Numonyx/ST",
10289 .name = "M45PE40",
10290 .bustype = BUS_SPI,
10291 .manufacture_id = ST_ID,
10292 .model_id = ST_M45PE40,
10293 .total_size = 512,
10294 .page_size = 256,
10295 .tested = TEST_UNTESTED,
10296 .probe = probe_spi_rdid,
10297 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010298 .block_erasers =
10299 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010300 {
10301 .eraseblocks = { {256, 2048} },
10302 .block_erase = spi_block_erase_db,
10303 }, {
10304 .eraseblocks = { {64 * 1024, 8} },
10305 .block_erase = spi_block_erase_d8,
10306 }
10307 },
10308 .printlock = spi_prettyprint_status_register_default_welwip,
10309 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Stefan Tauner23e10b82016-01-23 16:16:49 +000010310 .write = spi_chip_write_256, /* Page write supported (similar to PP but allows 0->1 changes) */
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010311 .read = spi_chip_read, /* Fast read (0x0B) supported */
10312 .voltage = {2700, 3600},
10313 },
10314
10315 {
10316 .vendor = "Micron/Numonyx/ST",
10317 .name = "M45PE80",
10318 .bustype = BUS_SPI,
10319 .manufacture_id = ST_ID,
10320 .model_id = ST_M45PE80,
10321 .total_size = 1024,
10322 .page_size = 256,
10323 .tested = TEST_UNTESTED,
10324 .probe = probe_spi_rdid,
10325 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010326 .block_erasers =
10327 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010328 {
10329 .eraseblocks = { {256, 4096} },
10330 .block_erase = spi_block_erase_db,
10331 }, {
10332 .eraseblocks = { {64 * 1024, 16} },
10333 .block_erase = spi_block_erase_d8,
10334 }
10335 },
10336 .printlock = spi_prettyprint_status_register_default_welwip,
10337 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
10338 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
10339 .read = spi_chip_read, /* Fast read (0x0B) supported */
10340 .voltage = {2700, 3600},
10341 },
10342
10343 {
10344 .vendor = "Micron/Numonyx/ST",
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010345 .name = "N25Q016",
10346 .bustype = BUS_SPI,
10347 .manufacture_id = ST_ID,
10348 .model_id = ST_N25Q016__1E,
10349 .total_size = 2048,
10350 .page_size = 256,
10351 /* supports SFDP */
10352 /* OTP: 64B total; read 0x4B, write 0x42 */
10353 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10354 .tested = TEST_UNTESTED,
10355 .probe = probe_spi_rdid,
10356 .probe_timing = TIMING_ZERO,
10357 .block_erasers =
10358 {
10359 {
10360 .eraseblocks = { {4 * 1024, 512} },
10361 .block_erase = spi_block_erase_20,
10362 }, {
10363 .eraseblocks = { {32 * 1024, 64} },
10364 .block_erase = spi_block_erase_52,
10365 }, {
10366 .eraseblocks = { {64 * 1024, 32} },
10367 .block_erase = spi_block_erase_d8,
10368 }, {
10369 .eraseblocks = { {2 * 1024 * 1024, 1} },
10370 .block_erase = spi_block_erase_c7,
10371 }
10372 },
10373 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10374 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10375 .write = spi_chip_write_256, /* Multi I/O supported */
10376 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10377 .voltage = {1700, 2000},
10378 },
10379
10380 {
10381 .vendor = "Micron/Numonyx/ST",
10382 .name = "N25Q032..1E",
10383 .bustype = BUS_SPI,
10384 .manufacture_id = ST_ID,
10385 .model_id = ST_N25Q032__1E,
10386 .total_size = 4096,
10387 .page_size = 256,
10388 /* supports SFDP */
10389 /* OTP: 64B total; read 0x4B, write 0x42 */
10390 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10391 .tested = TEST_UNTESTED,
10392 .probe = probe_spi_rdid,
10393 .probe_timing = TIMING_ZERO,
10394 .block_erasers =
10395 {
10396 {
10397 .eraseblocks = { {4 * 1024, 1024} },
10398 .block_erase = spi_block_erase_20,
10399 }, {
10400 .eraseblocks = { {64 * 1024, 64} },
10401 .block_erase = spi_block_erase_d8,
10402 }, {
10403 .eraseblocks = { {4 * 1024 * 1024, 1} },
10404 .block_erase = spi_block_erase_c7,
10405 }
10406 },
10407 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10408 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10409 .write = spi_chip_write_256, /* Multi I/O supported */
10410 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10411 .voltage = {1700, 2000},
10412 },
10413
10414 {
10415 .vendor = "Micron/Numonyx/ST",
10416 .name = "N25Q032..3E",
10417 .bustype = BUS_SPI,
10418 .manufacture_id = ST_ID,
10419 .model_id = ST_N25Q032__3E,
10420 .total_size = 4096,
10421 .page_size = 256,
10422 /* supports SFDP */
10423 /* OTP: 64B total; read 0x4B, write 0x42 */
10424 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10425 .tested = TEST_OK_PREW,
10426 .probe = probe_spi_rdid,
10427 .probe_timing = TIMING_ZERO,
10428 .block_erasers =
10429 {
10430 {
10431 .eraseblocks = { {4 * 1024, 1024} },
10432 .block_erase = spi_block_erase_20,
10433 }, {
10434 .eraseblocks = { {64 * 1024, 64} },
10435 .block_erase = spi_block_erase_d8,
10436 }, {
10437 .eraseblocks = { {4 * 1024 * 1024, 1} },
10438 .block_erase = spi_block_erase_c7,
10439 }
10440 },
10441 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10442 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10443 .write = spi_chip_write_256, /* Multi I/O supported */
10444 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10445 .voltage = {2700, 3600},
10446 },
10447
10448 {
10449 .vendor = "Micron/Numonyx/ST",
10450 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
10451 .bustype = BUS_SPI,
10452 .manufacture_id = ST_ID,
10453 .model_id = ST_N25Q064__1E,
10454 .total_size = 8192,
10455 .page_size = 256,
10456 /* supports SFDP */
10457 /* OTP: 64B total; read 0x4B, write 0x42 */
10458 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010459 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010460 .probe = probe_spi_rdid,
10461 .probe_timing = TIMING_ZERO,
10462 .block_erasers =
10463 {
10464 {
10465 .eraseblocks = { {4 * 1024, 2048 } },
10466 .block_erase = spi_block_erase_20,
10467 }, {
10468 .eraseblocks = { {64 * 1024, 128} },
10469 .block_erase = spi_block_erase_d8,
10470 }, {
10471 .eraseblocks = { {8 * 1024 * 1024, 1} },
10472 .block_erase = spi_block_erase_c7,
10473 }
10474 },
10475 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10476 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10477 .write = spi_chip_write_256, /* Multi I/O supported */
10478 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10479 .voltage = {1700, 2000},
10480 },
10481
10482 {
10483 .vendor = "Micron/Numonyx/ST",
10484 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10485 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +100010486 .manufacture_id = ST_ID,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010487 .model_id = ST_N25Q064__3E,
10488 .total_size = 8192,
10489 .page_size = 256,
10490 /* supports SFDP */
10491 /* OTP: 64B total; read 0x4B, write 0x42 */
10492 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10493 .tested = TEST_OK_PREW,
10494 .probe = probe_spi_rdid,
10495 .probe_timing = TIMING_ZERO,
10496 .block_erasers =
10497 {
10498 {
10499 .eraseblocks = { {4 * 1024, 2048 } },
10500 .block_erase = spi_block_erase_20,
10501 }, {
10502 .eraseblocks = { {64 * 1024, 128} },
10503 .block_erase = spi_block_erase_d8,
10504 }, {
10505 .eraseblocks = { {8 * 1024 * 1024, 1} },
10506 .block_erase = spi_block_erase_c7,
10507 }
10508 },
10509 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10510 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10511 .write = spi_chip_write_256, /* Multi I/O supported */
10512 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10513 .voltage = {2700, 3600},
10514 },
10515
10516 {
10517 .vendor = "Micron/Numonyx/ST",
10518 .name = "N25Q128..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
10519 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +100010520 .manufacture_id = ST_ID,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010521 .model_id = ST_N25Q128__1E,
10522 .total_size = 16384,
10523 .page_size = 256,
10524 /* supports SFDP */
10525 /* OTP: 64B total; read 0x4B, write 0x42 */
10526 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000010527 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010528 .probe = probe_spi_rdid,
10529 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010530 .block_erasers =
10531 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010532 {
10533 .eraseblocks = { {4 * 1024, 4096 } },
10534 .block_erase = spi_block_erase_20,
10535 }, {
10536 .eraseblocks = { {64 * 1024, 256} },
10537 .block_erase = spi_block_erase_d8,
10538 }, {
10539 .eraseblocks = { {16384 * 1024, 1} },
10540 .block_erase = spi_block_erase_c7,
10541 }
10542 },
10543 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10544 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10545 .write = spi_chip_write_256, /* Multi I/O supported */
10546 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10547 .voltage = {1700, 2000},
10548 },
10549
10550 {
10551 .vendor = "Micron/Numonyx/ST",
10552 .name = "N25Q128..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10553 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +100010554 .manufacture_id = ST_ID,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010555 .model_id = ST_N25Q128__3E,
10556 .total_size = 16384,
10557 .page_size = 256,
10558 /* supports SFDP */
10559 /* OTP: 64B total; read 0x4B, write 0x42 */
10560 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10561 .tested = TEST_OK_PREW,
10562 .probe = probe_spi_rdid,
10563 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010564 .block_erasers =
10565 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010566 {
10567 .eraseblocks = { {4 * 1024, 4096 } },
10568 .block_erase = spi_block_erase_20,
10569 }, {
10570 .eraseblocks = { {64 * 1024, 256} },
10571 .block_erase = spi_block_erase_d8,
10572 }, {
10573 .eraseblocks = { {16384 * 1024, 1} },
10574 .block_erase = spi_block_erase_c7,
10575 }
10576 },
10577 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10578 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10579 .write = spi_chip_write_256, /* Multi I/O supported */
10580 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10581 .voltage = {2700, 3600},
10582 },
10583
10584 {
Jacob Creedon08e9d1d2019-07-22 12:04:40 -070010585 .vendor = "Micron/Numonyx/ST",
10586 .name = "N25Q256..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10587 .bustype = BUS_SPI,
10588 .manufacture_id = ST_ID,
10589 .model_id = ST_N25Q256__3E,
10590 .total_size = 32768,
10591 .page_size = 256,
10592 /* supports SFDP */
10593 /* OTP: 64B total; read 0x4B, write 0x42 */
10594 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10595 .tested = TEST_UNTESTED,
10596 .probe = probe_spi_rdid,
10597 .probe_timing = TIMING_ZERO,
10598 .block_erasers =
10599 {
10600 {
10601 .eraseblocks = { {4 * 1024, 8192} },
10602 .block_erase = spi_block_erase_21,
10603 }, {
10604 .eraseblocks = { {4 * 1024, 8192} },
10605 .block_erase = spi_block_erase_20,
10606 }, {
10607 .eraseblocks = { {64 * 1024, 512} },
10608 .block_erase = spi_block_erase_dc,
10609 }, {
10610 .eraseblocks = { {64 * 1024, 512} },
10611 .block_erase = spi_block_erase_d8,
10612 }, {
10613 .eraseblocks = { {32768 * 1024, 1} },
10614 .block_erase = spi_block_erase_c7,
10615 }
10616 },
10617 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10618 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10619 .write = spi_chip_write_256, /* Multi I/O supported */
10620 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10621 .voltage = {2700, 3600},
10622 },
10623
10624 {
10625 .vendor = "Micron/Numonyx/ST",
10626 .name = "N25Q512..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10627 .bustype = BUS_SPI,
10628 .manufacture_id = ST_ID,
10629 .model_id = ST_N25Q512__3E,
10630 .total_size = 65536,
10631 .page_size = 256,
10632 /* supports SFDP */
10633 /* OTP: 64B total; read 0x4B, write 0x42 */
10634 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10635 .tested = TEST_OK_PREW,
10636 .probe = probe_spi_rdid,
10637 .probe_timing = TIMING_ZERO,
10638 .block_erasers =
10639 {
10640 {
10641 .eraseblocks = { {4 * 1024, 16384} },
10642 .block_erase = spi_block_erase_21,
10643 }, {
10644 .eraseblocks = { {4 * 1024, 16384} },
10645 .block_erase = spi_block_erase_20,
10646 }, {
10647 .eraseblocks = { {64 * 1024, 1024} },
10648 .block_erase = spi_block_erase_dc,
10649 }, {
10650 .eraseblocks = { {64 * 1024, 1024} },
10651 .block_erase = spi_block_erase_d8,
10652 }, {
Jacob Creedone8e7b0e2019-07-22 12:21:22 -070010653 .eraseblocks = { {32768 * 1024, 2} },
10654 .block_erase = spi_block_erase_c4,
Jacob Creedon08e9d1d2019-07-22 12:04:40 -070010655 }
10656 },
10657 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10658 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10659 .write = spi_chip_write_256, /* Multi I/O supported */
10660 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10661 .voltage = {2700, 3600},
10662 },
10663
10664 {
Ed Swierk199ab392017-07-03 13:33:44 -070010665 .vendor = "Micron",
Jacob Creedon08e9d1d2019-07-22 12:04:40 -070010666 .name = "MT25QL256", /* L = 3V, uniform 64KB/4KB blocks/sectors */
Ed Swierk199ab392017-07-03 13:33:44 -070010667 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +100010668 .manufacture_id = ST_ID,
Ed Swierk199ab392017-07-03 13:33:44 -070010669 .model_id = ST_N25Q256__3E,
10670 .total_size = 32768,
10671 .page_size = 256,
10672 /* supports SFDP */
10673 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010674 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10675 .tested = TEST_UNTESTED,
Ed Swierk199ab392017-07-03 13:33:44 -070010676 .probe = probe_spi_rdid,
10677 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010678 .block_erasers =
10679 {
Ed Swierk199ab392017-07-03 13:33:44 -070010680 {
10681 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010682 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010683 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010684 .eraseblocks = { {4 * 1024, 8192} },
10685 .block_erase = spi_block_erase_20,
10686 }, {
Jacob Creedon045b97e2019-07-22 12:26:56 -070010687 .eraseblocks = { {32 * 1024, 1024} },
10688 .block_erase = spi_block_erase_5c,
10689 }, {
10690 .eraseblocks = { {32 * 1024, 1024} },
10691 .block_erase = spi_block_erase_52,
10692 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010693 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010694 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010695 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010696 .eraseblocks = { {64 * 1024, 512} },
10697 .block_erase = spi_block_erase_d8,
10698 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010699 .eraseblocks = { {32768 * 1024, 1} },
10700 .block_erase = spi_block_erase_c7,
Jacob Creedon045b97e2019-07-22 12:26:56 -070010701 }, {
10702 .eraseblocks = { {32768 * 1024, 1} },
10703 .block_erase = spi_block_erase_60,
Ed Swierk199ab392017-07-03 13:33:44 -070010704 }
10705 },
10706 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10707 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10708 .write = spi_chip_write_256, /* Multi I/O supported */
10709 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10710 .voltage = {2700, 3600},
10711 },
10712
10713 {
10714 .vendor = "Micron",
Jacob Creedon08e9d1d2019-07-22 12:04:40 -070010715 .name = "MT25QL512", /* L = 3V, uniform 64KB/4KB blocks/sectors */
Ed Swierk199ab392017-07-03 13:33:44 -070010716 .bustype = BUS_SPI,
Alan Greenfa3fcd32019-06-27 15:41:50 +100010717 .manufacture_id = ST_ID,
Ed Swierk199ab392017-07-03 13:33:44 -070010718 .model_id = ST_N25Q512__3E,
10719 .total_size = 65536,
10720 .page_size = 256,
10721 /* supports SFDP */
10722 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010723 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
Angel Pons3ed5a352018-09-30 16:31:09 +020010724 .tested = TEST_OK_PREW,
Ed Swierk199ab392017-07-03 13:33:44 -070010725 .probe = probe_spi_rdid,
10726 .probe_timing = TIMING_ZERO,
Alan Greenfdf5da42019-06-27 16:56:52 +100010727 .block_erasers =
10728 {
Ed Swierk199ab392017-07-03 13:33:44 -070010729 {
10730 .eraseblocks = { {4 * 1024, 16384} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010731 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010732 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010733 .eraseblocks = { {4 * 1024, 16384} },
10734 .block_erase = spi_block_erase_20,
10735 }, {
Jacob Creedon045b97e2019-07-22 12:26:56 -070010736 .eraseblocks = { {32 * 1024, 2048} },
10737 .block_erase = spi_block_erase_5c,
10738 }, {
10739 .eraseblocks = { {32 * 1024, 2048} },
10740 .block_erase = spi_block_erase_52,
10741 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010742 .eraseblocks = { {64 * 1024, 1024} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010743 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010744 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010745 .eraseblocks = { {64 * 1024, 1024} },
10746 .block_erase = spi_block_erase_d8,
10747 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010748 .eraseblocks = { {65536 * 1024, 1} },
10749 .block_erase = spi_block_erase_c7,
Jacob Creedon045b97e2019-07-22 12:26:56 -070010750 }, {
10751 .eraseblocks = { {65536 * 1024, 1} },
10752 .block_erase = spi_block_erase_60,
Ed Swierk199ab392017-07-03 13:33:44 -070010753 }
10754 },
10755 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10756 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10757 .write = spi_chip_write_256, /* Multi I/O supported */
10758 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10759 .voltage = {2700, 3600},
10760 },
10761
10762 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010763 .vendor = "MoselVitelic",
10764 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010765 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010766 .manufacture_id = SYNCMOS_MVC_ID,
10767 .model_id = MVC_V29C51000B,
10768 .total_size = 64,
10769 .page_size = 512,
10770 .feature_bits = FEATURE_EITHER_RESET,
10771 .tested = TEST_UNTESTED,
10772 .probe = probe_jedec,
10773 .probe_timing = TIMING_ZERO,
10774 .block_erasers =
10775 {
10776 {
10777 .eraseblocks = { {512, 128} },
10778 .block_erase = erase_sector_jedec,
10779 }, {
10780 .eraseblocks = { {64 * 1024, 1} },
10781 .block_erase = erase_chip_block_jedec,
10782 },
10783 },
10784 .write = write_jedec_1,
10785 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010786 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010787 },
10788
10789 {
10790 .vendor = "MoselVitelic",
10791 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010792 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010793 .manufacture_id = SYNCMOS_MVC_ID,
10794 .model_id = MVC_V29C51000T,
10795 .total_size = 64,
10796 .page_size = 512,
10797 .feature_bits = FEATURE_EITHER_RESET,
10798 .tested = TEST_UNTESTED,
10799 .probe = probe_jedec,
10800 .probe_timing = TIMING_ZERO,
10801 .block_erasers =
10802 {
10803 {
10804 .eraseblocks = { {512, 128} },
10805 .block_erase = erase_sector_jedec,
10806 }, {
10807 .eraseblocks = { {64 * 1024, 1} },
10808 .block_erase = erase_chip_block_jedec,
10809 },
10810 },
10811 .write = write_jedec_1,
10812 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010813 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010814 },
10815
10816 {
10817 .vendor = "MoselVitelic",
10818 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010819 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010820 .manufacture_id = SYNCMOS_MVC_ID,
10821 .model_id = MVC_V29C51400B,
10822 .total_size = 512,
10823 .page_size = 1024,
10824 .feature_bits = FEATURE_EITHER_RESET,
10825 .tested = TEST_UNTESTED,
10826 .probe = probe_jedec,
10827 .probe_timing = TIMING_ZERO,
10828 .block_erasers =
10829 {
10830 {
10831 .eraseblocks = { {1024, 512} },
10832 .block_erase = erase_sector_jedec,
10833 }, {
10834 .eraseblocks = { {512 * 1024, 1} },
10835 .block_erase = erase_chip_block_jedec,
10836 },
10837 },
10838 .write = write_jedec_1,
10839 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010840 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010841 },
10842
10843 {
10844 .vendor = "MoselVitelic",
10845 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010846 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010847 .manufacture_id = SYNCMOS_MVC_ID,
10848 .model_id = MVC_V29C51400T,
10849 .total_size = 512,
10850 .page_size = 1024,
10851 .feature_bits = FEATURE_EITHER_RESET,
10852 .tested = TEST_UNTESTED,
10853 .probe = probe_jedec,
10854 .probe_timing = TIMING_ZERO,
10855 .block_erasers =
10856 {
10857 {
10858 .eraseblocks = { {1024, 512} },
10859 .block_erase = erase_sector_jedec,
10860 }, {
10861 .eraseblocks = { {512 * 1024, 1} },
10862 .block_erase = erase_chip_block_jedec,
10863 },
10864 },
10865 .write = write_jedec_1,
10866 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010867 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010868 },
10869
10870 {
10871 .vendor = "MoselVitelic",
10872 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010873 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010874 .manufacture_id = SYNCMOS_MVC_ID,
10875 .model_id = MVC_V29LC51000,
10876 .total_size = 64,
10877 .page_size = 512,
10878 .feature_bits = FEATURE_EITHER_RESET,
10879 .tested = TEST_UNTESTED,
10880 .probe = probe_jedec,
10881 .probe_timing = TIMING_ZERO,
10882 .block_erasers =
10883 {
10884 {
10885 .eraseblocks = { {512, 128} },
10886 .block_erase = erase_sector_jedec,
10887 }, {
10888 .eraseblocks = { {64 * 1024, 1} },
10889 .block_erase = erase_chip_block_jedec,
10890 },
10891 },
10892 .write = write_jedec_1,
10893 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010894 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010895 },
10896
10897 {
10898 .vendor = "MoselVitelic",
10899 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010900 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010901 .manufacture_id = SYNCMOS_MVC_ID,
10902 .model_id = MVC_V29LC51001,
10903 .total_size = 128,
10904 .page_size = 512,
10905 .feature_bits = FEATURE_EITHER_RESET,
10906 .tested = TEST_UNTESTED,
10907 .probe = probe_jedec,
10908 .probe_timing = TIMING_ZERO,
10909 .block_erasers =
10910 {
10911 {
10912 .eraseblocks = { {512, 256} },
10913 .block_erase = erase_sector_jedec,
10914 }, {
10915 .eraseblocks = { {128 * 1024, 1} },
10916 .block_erase = erase_chip_block_jedec,
10917 },
10918 },
10919 .write = write_jedec_1,
10920 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010921 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010922 },
10923
10924 {
10925 .vendor = "MoselVitelic",
10926 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010927 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010928 .manufacture_id = SYNCMOS_MVC_ID,
10929 .model_id = MVC_V29LC51002,
10930 .total_size = 256,
10931 .page_size = 512,
10932 .feature_bits = FEATURE_EITHER_RESET,
10933 .tested = TEST_UNTESTED,
10934 .probe = probe_jedec,
10935 .probe_timing = TIMING_ZERO,
10936 .block_erasers =
10937 {
10938 {
10939 .eraseblocks = { {512, 512} },
10940 .block_erase = erase_sector_jedec,
10941 }, {
10942 .eraseblocks = { {256 * 1024, 1} },
10943 .block_erase = erase_chip_block_jedec,
10944 },
10945 },
10946 .write = write_jedec_1,
10947 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010948 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010949 },
10950
10951 {
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010952 .vendor = "Nantronics",
10953 .name = "N25S10",
10954 .bustype = BUS_SPI,
10955 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10956 .model_id = NANTRONICS_N25S10,
10957 .total_size = 128,
10958 .page_size = 256,
10959 .feature_bits = FEATURE_WRSR_WREN,
10960 .tested = TEST_UNTESTED,
10961 .probe = probe_spi_rdid,
10962 .probe_timing = TIMING_ZERO,
10963 .block_erasers =
10964 {
10965 {
10966 .eraseblocks = { {4 * 1024, 32} },
10967 .block_erase = spi_block_erase_20,
10968 }, {
10969 .eraseblocks = { {4 * 1024, 32} },
10970 .block_erase = spi_block_erase_d7,
10971 }, {
10972 .eraseblocks = { {32 * 1024, 4} },
10973 .block_erase = spi_block_erase_52,
10974 }, {
10975 .eraseblocks = { {64 * 1024, 2} },
10976 .block_erase = spi_block_erase_d8,
10977 }, {
10978 .eraseblocks = { {128 * 1024, 1} },
10979 .block_erase = spi_block_erase_60,
10980 }, {
10981 .eraseblocks = { {128 * 1024, 1} },
10982 .block_erase = spi_block_erase_c7,
10983 }
10984 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010985 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010986 .unlock = spi_disable_blockprotect_bp3_srwd,
10987 .write = spi_chip_write_256,
10988 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10989 .voltage = {2700, 3600},
10990 },
10991
10992 {
10993 .vendor = "Nantronics",
Alan Green1f9cc7d2019-07-01 11:10:45 +100010994 .name = "N25S16",
10995 .bustype = BUS_SPI,
10996 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10997 .model_id = NANTRONICS_N25S16,
10998 .total_size = 2048,
10999 .page_size = 256,
11000 .feature_bits = FEATURE_WRSR_WREN,
11001 .tested = TEST_UNTESTED,
11002 .probe = probe_spi_rdid,
11003 .probe_timing = TIMING_ZERO,
11004 .block_erasers =
11005 {
11006 {
11007 .eraseblocks = { {4 * 1024, 512} },
11008 .block_erase = spi_block_erase_20,
11009 }, {
11010 .eraseblocks = { {64 * 1024, 32} },
11011 .block_erase = spi_block_erase_d8,
11012 }, {
11013 .eraseblocks = { {2048 * 1024, 1} },
11014 .block_erase = spi_block_erase_60,
11015 }, {
11016 .eraseblocks = { {2048 * 1024, 1} },
11017 .block_erase = spi_block_erase_c7,
11018 }
11019 },
11020 .printlock = spi_prettyprint_status_register_bp3_srwd,
11021 .unlock = spi_disable_blockprotect_bp3_srwd,
11022 .write = spi_chip_write_256,
11023 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
11024 .voltage = {2700, 3600},
11025 },
11026
11027 {
11028 .vendor = "Nantronics",
Stefan Taunerb6b00e92013-06-28 21:28:43 +000011029 .name = "N25S20",
11030 .bustype = BUS_SPI,
11031 .manufacture_id = NANTRONICS_ID_NOPREFIX,
11032 .model_id = NANTRONICS_N25S20,
11033 .total_size = 256,
11034 .page_size = 256,
11035 .feature_bits = FEATURE_WRSR_WREN,
11036 .tested = TEST_UNTESTED,
11037 .probe = probe_spi_rdid,
11038 .probe_timing = TIMING_ZERO,
11039 .block_erasers =
11040 {
11041 {
11042 .eraseblocks = { {4 * 1024, 64} },
11043 .block_erase = spi_block_erase_20,
11044 }, {
11045 .eraseblocks = { {4 * 1024, 64} },
11046 .block_erase = spi_block_erase_d7,
11047 }, {
11048 .eraseblocks = { {32 * 1024, 8} },
11049 .block_erase = spi_block_erase_52,
11050 }, {
11051 .eraseblocks = { {64 * 1024, 4} },
11052 .block_erase = spi_block_erase_d8,
11053 }, {
11054 .eraseblocks = { {256 * 1024, 1} },
11055 .block_erase = spi_block_erase_60,
11056 }, {
11057 .eraseblocks = { {256 * 1024, 1} },
11058 .block_erase = spi_block_erase_c7,
11059 }
11060 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011061 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000011062 .unlock = spi_disable_blockprotect_bp3_srwd,
11063 .write = spi_chip_write_256,
11064 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
11065 .voltage = {2700, 3600},
11066 },
11067
11068 {
11069 .vendor = "Nantronics",
11070 .name = "N25S40",
11071 .bustype = BUS_SPI,
11072 .manufacture_id = NANTRONICS_ID_NOPREFIX,
11073 .model_id = NANTRONICS_N25S40,
11074 .total_size = 512,
11075 .page_size = 256,
11076 .feature_bits = FEATURE_WRSR_WREN,
11077 .tested = TEST_UNTESTED,
11078 .probe = probe_spi_rdid,
11079 .probe_timing = TIMING_ZERO,
11080 .block_erasers =
11081 {
11082 {
11083 .eraseblocks = { {4 * 1024, 128} },
11084 .block_erase = spi_block_erase_20,
11085 }, {
11086 .eraseblocks = { {4 * 1024, 128} },
11087 .block_erase = spi_block_erase_d7,
11088 }, {
11089 .eraseblocks = { {32 * 1024, 16} },
11090 .block_erase = spi_block_erase_52,
11091 }, {
11092 .eraseblocks = { {64 * 1024, 8} },
11093 .block_erase = spi_block_erase_d8,
11094 }, {
11095 .eraseblocks = { {512 * 1024, 1} },
11096 .block_erase = spi_block_erase_60,
11097 }, {
11098 .eraseblocks = { {512 * 1024, 1} },
11099 .block_erase = spi_block_erase_c7,
11100 }
11101 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011102 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000011103 .unlock = spi_disable_blockprotect_bp3_srwd,
11104 .write = spi_chip_write_256,
11105 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
11106 .voltage = {2700, 3600},
11107 },
11108
11109 {
11110 .vendor = "Nantronics",
11111 .name = "N25S80",
11112 .bustype = BUS_SPI,
11113 .manufacture_id = NANTRONICS_ID_NOPREFIX,
11114 .model_id = NANTRONICS_N25S80,
11115 .total_size = 1024,
11116 .page_size = 256,
11117 .feature_bits = FEATURE_WRSR_WREN,
11118 .tested = TEST_UNTESTED,
11119 .probe = probe_spi_rdid,
11120 .probe_timing = TIMING_ZERO,
11121 .block_erasers =
11122 {
11123 {
11124 .eraseblocks = { {4 * 1024, 256} },
11125 .block_erase = spi_block_erase_20,
11126 }, {
11127 .eraseblocks = { {32 * 1024, 32} },
11128 .block_erase = spi_block_erase_52,
11129 }, {
11130 .eraseblocks = { {64 * 1024, 16} },
11131 .block_erase = spi_block_erase_d8,
11132 }, {
11133 .eraseblocks = { {1024 * 1024, 1} },
11134 .block_erase = spi_block_erase_60,
11135 }, {
11136 .eraseblocks = { {1024 * 1024, 1} },
11137 .block_erase = spi_block_erase_c7,
11138 }
11139 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011140 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000011141 .unlock = spi_disable_blockprotect_bp3_srwd,
11142 .write = spi_chip_write_256,
11143 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
11144 .voltage = {2700, 3600},
11145 },
11146
11147 {
Stefan Taunerf4451612013-04-19 01:59:15 +000011148 .vendor = "PMC",
11149 .name = "Pm25LD010(C)",
11150 .bustype = BUS_SPI,
11151 .manufacture_id = PMC_ID,
11152 .model_id = PMC_PM25LD010,
11153 .total_size = 128,
11154 .page_size = 256,
11155 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000011156 .tested = TEST_OK_PREW,
Stefan Taunerf4451612013-04-19 01:59:15 +000011157 .probe = probe_spi_rdid,
11158 .probe_timing = TIMING_ZERO,
11159 .block_erasers =
11160 {
11161 {
11162 .eraseblocks = { {4 * 1024, 32} },
11163 .block_erase = spi_block_erase_20,
11164 }, {
11165 .eraseblocks = { {4 * 1024, 32} },
11166 .block_erase = spi_block_erase_d7,
11167 }, {
11168 .eraseblocks = { {32 * 1024, 4} },
11169 .block_erase = spi_block_erase_d8,
11170 }, {
11171 .eraseblocks = { {128 * 1024, 1} },
11172 .block_erase = spi_block_erase_60,
11173 }, {
11174 .eraseblocks = { {128 * 1024, 1} },
11175 .block_erase = spi_block_erase_c7,
11176 }
11177 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011178 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000011179 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
11180 .write = spi_chip_write_256,
11181 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
11182 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
11183 },
11184
11185 {
11186 .vendor = "PMC",
11187 .name = "Pm25LD020(C)",
11188 .bustype = BUS_SPI,
11189 .manufacture_id = PMC_ID,
11190 .model_id = PMC_PM25LD020,
11191 .total_size = 256,
11192 .page_size = 256,
11193 .feature_bits = FEATURE_WRSR_WREN,
Angel Ponsf5822a82018-09-30 20:09:58 +020011194 .tested = TEST_OK_PREW,
Stefan Taunerf4451612013-04-19 01:59:15 +000011195 .probe = probe_spi_rdid,
11196 .probe_timing = TIMING_ZERO,
11197 .block_erasers =
11198 {
11199 {
11200 .eraseblocks = { {4 * 1024, 64} },
11201 .block_erase = spi_block_erase_20,
11202 }, {
11203 .eraseblocks = { {4 * 1024, 64} },
11204 .block_erase = spi_block_erase_d7,
11205 }, {
11206 .eraseblocks = { {64 * 1024, 4} },
11207 .block_erase = spi_block_erase_d8,
11208 }, {
11209 .eraseblocks = { {256 * 1024, 1} },
11210 .block_erase = spi_block_erase_60,
11211 }, {
11212 .eraseblocks = { {256 * 1024, 1} },
11213 .block_erase = spi_block_erase_c7,
11214 }
11215 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011216 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000011217 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
11218 .write = spi_chip_write_256,
11219 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
11220 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
11221 },
11222
11223 {
11224 .vendor = "PMC",
11225 .name = "Pm25LD040(C)",
11226 .bustype = BUS_SPI,
11227 .manufacture_id = PMC_ID,
11228 .model_id = PMC_PM25LV040,
11229 .total_size = 512,
11230 .page_size = 256,
11231 .feature_bits = FEATURE_WRSR_WREN,
Angel Pons05127bf2018-09-30 20:23:24 +020011232 .tested = TEST_OK_PREW,
Stefan Taunerf4451612013-04-19 01:59:15 +000011233 .probe = probe_spi_rdid,
11234 .probe_timing = TIMING_ZERO,
11235 .block_erasers =
11236 {
11237 {
11238 .eraseblocks = { {4 * 1024, 128} },
11239 .block_erase = spi_block_erase_20,
11240 }, {
11241 .eraseblocks = { {4 * 1024, 128} },
11242 .block_erase = spi_block_erase_d7,
11243 }, {
11244 .eraseblocks = { {64 * 1024, 8} },
11245 .block_erase = spi_block_erase_d8,
11246 }, {
11247 .eraseblocks = { {512 * 1024, 1} },
11248 .block_erase = spi_block_erase_60,
11249 }, {
11250 .eraseblocks = { {512 * 1024, 1} },
11251 .block_erase = spi_block_erase_c7,
11252 }
11253 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011254 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000011255 .unlock = spi_disable_blockprotect,
11256 .write = spi_chip_write_256,
11257 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
11258 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
11259 },
11260
Steven Honeyman81a8fb72015-06-02 22:32:24 +000011261 {
11262 .vendor = "PMC",
Alan Green1f9cc7d2019-07-01 11:10:45 +100011263 .name = "Pm25LD256C",
11264 .bustype = BUS_SPI,
11265 .manufacture_id = PMC_ID,
11266 .model_id = PMC_PM25LD256C,
11267 .total_size = 32,
11268 .page_size = 256,
11269 .feature_bits = FEATURE_WRSR_WREN,
11270 .tested = TEST_UNTESTED,
11271 .probe = probe_spi_rdid,
11272 .probe_timing = TIMING_ZERO,
11273 .block_erasers =
11274 {
11275 {
11276 .eraseblocks = { {4 * 1024, 8} },
11277 .block_erase = spi_block_erase_20,
11278 }, {
11279 .eraseblocks = { {4 * 1024, 8} },
11280 .block_erase = spi_block_erase_d7,
11281 }, {
11282 .eraseblocks = { {32 * 1024, 1} },
11283 .block_erase = spi_block_erase_d8,
11284 }, {
11285 .eraseblocks = { {32 * 1024, 1} },
11286 .block_erase = spi_block_erase_60,
11287 }, {
11288 .eraseblocks = { {32 * 1024, 1} },
11289 .block_erase = spi_block_erase_c7,
11290 }
11291 },
11292 .printlock = spi_prettyprint_status_register_bp2_srwd,
11293 .unlock = spi_disable_blockprotect,
11294 .write = spi_chip_write_256,
11295 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
11296 .voltage = {2700, 3600},
11297 },
11298
11299 {
11300 .vendor = "PMC",
11301 .name = "Pm25LD512(C)",
11302 .bustype = BUS_SPI,
11303 .manufacture_id = PMC_ID,
11304 .model_id = PMC_PM25LD512,
11305 .total_size = 64,
11306 .page_size = 256,
11307 .feature_bits = FEATURE_WRSR_WREN,
11308 .tested = TEST_OK_PREW,
11309 .probe = probe_spi_rdid,
11310 .probe_timing = TIMING_ZERO,
11311 .block_erasers =
11312 {
11313 {
11314 .eraseblocks = { {4 * 1024, 16} },
11315 .block_erase = spi_block_erase_20,
11316 }, {
11317 .eraseblocks = { {4 * 1024, 16} },
11318 .block_erase = spi_block_erase_d7,
11319 }, {
11320 .eraseblocks = { {32 * 1024, 2} },
11321 .block_erase = spi_block_erase_d8,
11322 }, {
11323 .eraseblocks = { {64 * 1024, 1} },
11324 .block_erase = spi_block_erase_60,
11325 }, {
11326 .eraseblocks = { {64 * 1024, 1} },
11327 .block_erase = spi_block_erase_c7,
11328 }
11329 },
11330 .printlock = spi_prettyprint_status_register_bp2_srwd,
11331 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
11332 .write = spi_chip_write_256,
11333 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
11334 .voltage = {2300, 3600},
11335 },
11336
11337 {
11338 .vendor = "PMC",
11339 .name = "Pm25LQ016",
11340 .bustype = BUS_SPI,
11341 .manufacture_id = PMC_ID,
11342 .model_id = PMC_PM25LQ016,
11343 .total_size = 2048,
11344 .page_size = 256,
11345 /* OTP: 256B total; read 0x4B, write 0xB1 */
11346 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
11347 .tested = TEST_UNTESTED,
11348 .probe = probe_spi_rdid,
11349 .probe_timing = TIMING_ZERO,
11350 .block_erasers =
11351 {
11352 {
11353 .eraseblocks = { {4 * 1024, 512} },
11354 .block_erase = spi_block_erase_20,
11355 }, {
11356 .eraseblocks = { {4 * 1024, 512} },
11357 .block_erase = spi_block_erase_d7,
11358 }, {
11359 .eraseblocks = { {64 * 1024, 32} },
11360 .block_erase = spi_block_erase_d8,
11361 }, {
11362 .eraseblocks = { {2048 * 1024, 1} },
11363 .block_erase = spi_block_erase_60,
11364 }, {
11365 .eraseblocks = { {2048 * 1024, 1} },
11366 .block_erase = spi_block_erase_c7,
11367 }
11368 },
11369 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11370 .unlock = spi_disable_blockprotect_bp3_srwd,
11371 .write = spi_chip_write_256,
11372 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
11373 .voltage = {2300, 3600},
11374 },
11375
11376 {
11377 .vendor = "PMC",
Steven Honeyman81a8fb72015-06-02 22:32:24 +000011378 .name = "Pm25LQ020",
11379 .bustype = BUS_SPI,
11380 .manufacture_id = PMC_ID,
11381 .model_id = PMC_PM25LQ020,
11382 .total_size = 256,
11383 .page_size = 256,
11384 /* OTP: 256B total; read 0x4B, write 0xB1 */
11385 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
11386 .tested = TEST_UNTESTED,
11387 .probe = probe_spi_rdid,
11388 .probe_timing = TIMING_ZERO,
11389 .block_erasers =
11390 {
11391 {
11392 .eraseblocks = { {4 * 1024, 64} },
11393 .block_erase = spi_block_erase_20,
11394 }, {
11395 .eraseblocks = { {4 * 1024, 64} },
11396 .block_erase = spi_block_erase_d7,
11397 }, {
11398 .eraseblocks = { {64 * 1024, 4} },
11399 .block_erase = spi_block_erase_d8,
11400 }, {
11401 .eraseblocks = { {256 * 1024, 1} },
11402 .block_erase = spi_block_erase_60,
11403 }, {
11404 .eraseblocks = { {256 * 1024, 1} },
11405 .block_erase = spi_block_erase_c7,
11406 }
11407 },
11408 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11409 .unlock = spi_disable_blockprotect_bp3_srwd,
11410 .write = spi_chip_write_256,
11411 .read = spi_chip_read,
11412 .voltage = {2300, 3600},
11413 },
11414
11415 {
11416 .vendor = "PMC",
Alan Green1f9cc7d2019-07-01 11:10:45 +100011417 .name = "Pm25LQ032C",
11418 .bustype = BUS_SPI,
11419 .manufacture_id = PMC_ID,
11420 .model_id = PMC_PM25LQ032C,
11421 .total_size = 4096,
11422 .page_size = 256,
11423 /* OTP: 64B total; read 0x4B, write 0xB1 */
11424 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
11425 .tested = TEST_OK_PREW,
11426 .probe = probe_spi_rdid,
11427 .probe_timing = TIMING_ZERO,
11428 .block_erasers =
11429 {
11430 {
11431 .eraseblocks = { {4 * 1024, 1024} },
11432 .block_erase = spi_block_erase_20,
11433 }, {
11434 .eraseblocks = { {4 * 1024, 1024} },
11435 .block_erase = spi_block_erase_d7,
11436 }, {
11437 .eraseblocks = { {64 * 1024, 64} },
11438 .block_erase = spi_block_erase_d8,
11439 }, {
11440 .eraseblocks = { {4096 * 1024, 1} },
11441 .block_erase = spi_block_erase_60,
11442 }, {
11443 .eraseblocks = { {4096 * 1024, 1} },
11444 .block_erase = spi_block_erase_c7,
11445 }
11446 },
11447 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11448 .unlock = spi_disable_blockprotect_bp3_srwd,
11449 .write = spi_chip_write_256,
11450 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
11451 .voltage = {2700, 3600},
11452 },
11453
11454 {
11455 .vendor = "PMC",
Steven Honeyman81a8fb72015-06-02 22:32:24 +000011456 .name = "Pm25LQ040",
11457 .bustype = BUS_SPI,
11458 .manufacture_id = PMC_ID,
11459 .model_id = PMC_PM25LQ040,
11460 .total_size = 512,
11461 .page_size = 256,
11462 /* OTP: 256B total; read 0x4B, write 0xB1 */
11463 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
11464 .tested = TEST_UNTESTED,
11465 .probe = probe_spi_rdid,
11466 .probe_timing = TIMING_ZERO,
11467 .block_erasers =
11468 {
11469 {
11470 .eraseblocks = { {4 * 1024, 128} },
11471 .block_erase = spi_block_erase_20,
11472 }, {
11473 .eraseblocks = { {4 * 1024, 128} },
11474 .block_erase = spi_block_erase_d7,
11475 }, {
11476 .eraseblocks = { {64 * 1024, 8} },
11477 .block_erase = spi_block_erase_d8,
11478 }, {
11479 .eraseblocks = { {512 * 1024, 1} },
11480 .block_erase = spi_block_erase_60,
11481 }, {
11482 .eraseblocks = { {512 * 1024, 1} },
11483 .block_erase = spi_block_erase_c7,
11484 }
11485 },
11486 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11487 .unlock = spi_disable_blockprotect_bp3_srwd,
11488 .write = spi_chip_write_256,
11489 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
11490 .voltage = {2300, 3600},
11491 },
11492
11493 {
11494 .vendor = "PMC",
11495 .name = "Pm25LQ080",
11496 .bustype = BUS_SPI,
11497 .manufacture_id = PMC_ID,
11498 .model_id = PMC_PM25LQ080,
11499 .total_size = 1024,
11500 .page_size = 256,
11501 /* OTP: 64B total; read 0x4B, write 0xB1 */
11502 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
11503 .tested = TEST_UNTESTED,
11504 .probe = probe_spi_rdid,
11505 .probe_timing = TIMING_ZERO,
11506 .block_erasers =
11507 {
11508 {
11509 .eraseblocks = { {4 * 1024, 256} },
11510 .block_erase = spi_block_erase_20,
11511 }, {
11512 .eraseblocks = { {4 * 1024, 256} },
11513 .block_erase = spi_block_erase_d7,
11514 }, {
11515 .eraseblocks = { {64 * 1024, 16} },
11516 .block_erase = spi_block_erase_d8,
11517 }, {
11518 .eraseblocks = { {1024 * 1024, 1} },
11519 .block_erase = spi_block_erase_60,
11520 }, {
11521 .eraseblocks = { {1024 * 1024, 1} },
11522 .block_erase = spi_block_erase_c7,
11523 }
11524 },
11525 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11526 .unlock = spi_disable_blockprotect_bp3_srwd,
11527 .write = spi_chip_write_256,
11528 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
11529 .voltage = {2300, 3600},
11530 },
11531
11532 {
11533 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011534 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011535 .bustype = BUS_SPI,
Stefan Taunerbecda742014-05-30 19:34:00 +000011536 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011537 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011538 .total_size = 128,
11539 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011540 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerbecda742014-05-30 19:34:00 +000011541 .tested = TEST_OK_PREW,
11542 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011543 .probe_timing = TIMING_ZERO,
11544 .block_erasers =
11545 {
11546 {
11547 .eraseblocks = { {4 * 1024, 32} },
11548 .block_erase = spi_block_erase_d7,
11549 }, {
11550 .eraseblocks = { {32 * 1024, 4} },
11551 .block_erase = spi_block_erase_d8,
11552 }, {
11553 .eraseblocks = { {128 * 1024, 1} },
11554 .block_erase = spi_block_erase_c7,
11555 }
11556 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011557 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011558 .unlock = spi_disable_blockprotect,
11559 .write = spi_chip_write_256,
11560 .read = spi_chip_read, /* Fast read (0x0B) supported */
11561 .voltage = {2700, 3600},
11562 },
11563
11564 {
11565 .vendor = "PMC",
11566 .name = "Pm25LV010A",
11567 .bustype = BUS_SPI,
11568 .manufacture_id = PMC_ID,
11569 .model_id = PMC_PM25LV010,
11570 .total_size = 128,
11571 .page_size = 256,
11572 .feature_bits = FEATURE_WRSR_WREN,
11573 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011574 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011575 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011576 .block_erasers =
11577 {
11578 {
11579 .eraseblocks = { {4 * 1024, 32} },
11580 .block_erase = spi_block_erase_d7,
11581 }, {
11582 .eraseblocks = { {32 * 1024, 4} },
11583 .block_erase = spi_block_erase_d8,
11584 }, {
11585 .eraseblocks = { {128 * 1024, 1} },
11586 .block_erase = spi_block_erase_c7,
11587 }
11588 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011589 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011590 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011591 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011592 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011593 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011594 },
11595
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011596 {
11597 .vendor = "PMC",
Alan Green1f9cc7d2019-07-01 11:10:45 +100011598 .name = "Pm25LV016B",
11599 .bustype = BUS_SPI,
11600 .manufacture_id = PMC_ID,
11601 .model_id = PMC_PM25LV016B,
11602 .total_size = 2048,
11603 .page_size = 256,
11604 .feature_bits = FEATURE_WRSR_WREN,
11605 .tested = TEST_UNTESTED,
11606 .probe = probe_spi_rdid,
11607 .probe_timing = TIMING_ZERO,
11608 .block_erasers =
11609 {
11610 {
11611 .eraseblocks = { {4 * 1024, 512} },
11612 .block_erase = spi_block_erase_d7,
11613 }, {
11614 .eraseblocks = { {4 * 1024, 512} },
11615 .block_erase = spi_block_erase_20,
11616 }, {
11617 .eraseblocks = { {64 * 1024, 32} },
11618 .block_erase = spi_block_erase_d8,
11619 }, {
11620 .eraseblocks = { {2 * 1024 * 1024, 1} },
11621 .block_erase = spi_block_erase_60,
11622 }, {
11623 .eraseblocks = { {2 * 1024 * 1024, 1} },
11624 .block_erase = spi_block_erase_c7,
11625 }
11626 },
11627 .printlock = spi_prettyprint_status_register_bp2_srwd,
11628 .unlock = spi_disable_blockprotect,
11629 .write = spi_chip_write_256,
11630 .read = spi_chip_read, /* Fast read (0x0B) supported */
11631 .voltage = {2700, 3600},
11632 },
11633
11634 {
11635 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011636 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011637 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011638 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011639 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011640 .total_size = 256,
11641 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011642 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011643 .tested = TEST_UNTESTED,
11644 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011645 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011646 .block_erasers =
11647 {
11648 {
11649 .eraseblocks = { {4 * 1024, 64} },
11650 .block_erase = spi_block_erase_d7,
11651 }, {
11652 .eraseblocks = { {64 * 1024, 4} },
11653 .block_erase = spi_block_erase_d8,
11654 }, {
11655 .eraseblocks = { {256 * 1024, 1} },
11656 .block_erase = spi_block_erase_c7,
11657 }
11658 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011659 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011660 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011661 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011662 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011663 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011664 },
11665
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011666 {
11667 .vendor = "PMC",
11668 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011669 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011670 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011671 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011672 .total_size = 512,
11673 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011674 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +000011675 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011676 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011677 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011678 .block_erasers =
11679 {
11680 {
11681 .eraseblocks = { {4 * 1024, 128} },
11682 .block_erase = spi_block_erase_d7,
11683 }, {
11684 .eraseblocks = { {64 * 1024, 8} },
11685 .block_erase = spi_block_erase_d8,
11686 }, {
11687 .eraseblocks = { {512 * 1024, 1} },
11688 .block_erase = spi_block_erase_c7,
11689 }
11690 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011691 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011692 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011693 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011694 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011695 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011696 },
11697
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011698 {
11699 .vendor = "PMC",
11700 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011701 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011702 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011703 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011704 .total_size = 1024,
11705 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011706 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011707 .tested = TEST_UNTESTED,
11708 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011709 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011710 .block_erasers =
11711 {
11712 {
11713 .eraseblocks = { {4 * 1024, 256} },
11714 .block_erase = spi_block_erase_d7,
11715 }, {
11716 .eraseblocks = { {4 * 1024, 256} },
11717 .block_erase = spi_block_erase_20,
11718 }, {
11719 .eraseblocks = { {64 * 1024, 16} },
11720 .block_erase = spi_block_erase_d8,
11721 }, {
11722 .eraseblocks = { {1024 * 1024, 1} },
11723 .block_erase = spi_block_erase_60,
11724 }, {
11725 .eraseblocks = { {1024 * 1024, 1} },
11726 .block_erase = spi_block_erase_c7,
11727 }
11728 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011729 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011730 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011731 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011732 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011733 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011734 },
11735
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011736 {
11737 .vendor = "PMC",
Alan Green1f9cc7d2019-07-01 11:10:45 +100011738 .name = "Pm25LV512(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011739 .bustype = BUS_SPI,
Alan Green1f9cc7d2019-07-01 11:10:45 +100011740 .manufacture_id = PMC_ID_NOPREFIX,
11741 .model_id = PMC_PM25LV512,
11742 .total_size = 64,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011743 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011744 .feature_bits = FEATURE_WRSR_WREN,
Alan Green1f9cc7d2019-07-01 11:10:45 +100011745 .tested = TEST_OK_PREW,
11746 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011747 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011748 .block_erasers =
11749 {
11750 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100011751 .eraseblocks = { {4 * 1024, 16} },
Sean Nelson5643c072010-01-19 03:23:07 +000011752 .block_erase = spi_block_erase_d7,
11753 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100011754 .eraseblocks = { {32 * 1024, 2} },
Sean Nelson5643c072010-01-19 03:23:07 +000011755 .block_erase = spi_block_erase_d8,
11756 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100011757 .eraseblocks = { {64 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +000011758 .block_erase = spi_block_erase_c7,
11759 }
11760 },
Alan Green1f9cc7d2019-07-01 11:10:45 +100011761 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011762 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011763 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011764 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011765 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011766 },
11767
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011768 {
11769 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +000011770 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011771 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011772 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011773 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011774 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +000011775 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011776 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011777 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000011778 .probe = probe_jedec,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000011779 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +000011780 .block_erasers =
11781 {
11782 {
11783 .eraseblocks = {
11784 {16 * 1024, 1},
11785 {8 * 1024, 2},
11786 {96 * 1024, 1},
11787 {128 * 1024, 1},
11788 },
Sean Nelson35727f72010-01-28 23:55:12 +000011789 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011790 }, {
11791 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000011792 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011793 },
11794 },
Sean Nelson35727f72010-01-28 23:55:12 +000011795 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011796 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011797 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011798 },
11799
11800 {
11801 .vendor = "PMC",
Alan Green1f9cc7d2019-07-01 11:10:45 +100011802 .name = "Pm29F002T",
11803 .bustype = BUS_PARALLEL,
11804 .manufacture_id = PMC_ID_NOPREFIX,
11805 .model_id = PMC_PM29F002T,
11806 .total_size = 256,
11807 .page_size = 8 * 1024,
11808 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11809 .tested = TEST_OK_PREW,
11810 .probe = probe_jedec,
11811 .probe_timing = TIMING_FIXME,
11812 .block_erasers =
11813 {
11814 {
11815 .eraseblocks = {
11816 {128 * 1024, 1},
11817 {96 * 1024, 1},
11818 {8 * 1024, 2},
11819 {16 * 1024, 1},
11820 },
11821 .block_erase = erase_sector_jedec,
11822 }, {
11823 .eraseblocks = { {256 * 1024, 1} },
11824 .block_erase = erase_chip_block_jedec,
11825 },
11826 },
11827 .write = write_jedec_1,
11828 .read = read_memmapped,
11829 .voltage = {4500, 5500},
11830 },
11831
11832 {
11833 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011834 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011835 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011836 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011837 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011838 .total_size = 128,
11839 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000011840 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011841 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011842 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011843 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +000011844 .block_erasers =
11845 {
11846 {
11847 .eraseblocks = { {4 * 1024, 32} },
11848 .block_erase = erase_sector_jedec,
11849 }, {
11850 .eraseblocks = { {64 * 1024, 2} },
11851 .block_erase = erase_block_jedec,
11852 }, {
11853 .eraseblocks = { {128 * 1024, 1} },
11854 .block_erase = erase_chip_block_jedec,
11855 }
11856 },
Sean Nelson35727f72010-01-28 23:55:12 +000011857 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011858 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011859 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011860 },
11861
11862 {
11863 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011864 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011865 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011866 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011867 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011868 .total_size = 256,
11869 .page_size = 4096,
11870 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11871 .tested = TEST_UNTESTED,
11872 .probe = probe_jedec,
11873 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Alan Greenfa3fcd32019-06-27 15:41:50 +100011874 .block_erasers =
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011875 {
11876 {
11877 .eraseblocks = { {4 * 1024, 64} },
11878 .block_erase = erase_sector_jedec,
11879 }, {
11880 .eraseblocks = { {64 * 1024, 4} },
11881 .block_erase = erase_block_jedec,
11882 }, {
11883 .eraseblocks = { {256 * 1024, 1} },
11884 .block_erase = erase_chip_block_jedec,
11885 }
11886 },
11887 .write = write_jedec_1,
11888 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011889 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011890 },
11891
11892 {
11893 .vendor = "PMC",
11894 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011895 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011896 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011897 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011898 .total_size = 512,
11899 .page_size = 4096,
11900 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011901 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011902 .probe = probe_jedec,
11903 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Alan Greenfa3fcd32019-06-27 15:41:50 +100011904 .block_erasers =
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011905 {
11906 {
11907 .eraseblocks = { {4 * 1024, 128} },
11908 .block_erase = erase_sector_jedec,
11909 }, {
11910 .eraseblocks = { {64 * 1024, 8} },
11911 .block_erase = erase_block_jedec,
11912 }, {
11913 .eraseblocks = { {512 * 1024, 1} },
11914 .block_erase = erase_chip_block_jedec,
11915 }
11916 },
11917 .write = write_jedec_1,
11918 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011919 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011920 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +000011921
11922 {
11923 .vendor = "PMC",
11924 .name = "Pm39LV512",
11925 .bustype = BUS_PARALLEL,
11926 .manufacture_id = PMC_ID_NOPREFIX,
11927 .model_id = PMC_PM39LV512,
11928 .total_size = 64,
11929 .page_size = 4096,
11930 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11931 .tested = TEST_OK_PREW,
11932 .probe = probe_jedec,
11933 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11934 .block_erasers =
11935 {
11936 {
11937 .eraseblocks = { {4 * 1024, 16} },
11938 .block_erase = erase_sector_jedec,
11939 }, {
11940 .eraseblocks = { {64 * 1024, 1} },
11941 .block_erase = erase_block_jedec,
11942 }, {
11943 .eraseblocks = { {64 * 1024, 1} },
11944 .block_erase = erase_chip_block_jedec,
11945 }
11946 },
11947 .write = write_jedec_1,
11948 .read = read_memmapped,
11949 .voltage = {2700, 3600},
11950 },
11951
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011952 {
11953 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011954 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011955 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011956 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011957 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011958 .total_size = 256,
11959 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011960 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011961 .tested = TEST_OK_PR,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011962 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011963 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +000011964 .block_erasers =
11965 {
11966 {
11967 .eraseblocks = { {4 * 1024, 64} },
11968 .block_erase = erase_sector_jedec,
11969 }, {
11970 .eraseblocks = { {16 * 1024, 16} },
11971 .block_erase = erase_block_jedec,
11972 }, {
11973 .eraseblocks = { {256 * 1024, 1} },
11974 .block_erase = erase_chip_block_jedec,
11975 }
11976 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011977 .unlock = unlock_regspace2_uniform_32k,
Sean Nelson36172342010-02-27 18:01:15 +000011978 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011979 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011980 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011981 },
11982
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011983 {
11984 .vendor = "PMC",
11985 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011986 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011987 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011988 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011989 .total_size = 512,
11990 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011991 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011992 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011993 .probe = probe_jedec,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011994 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011995 .block_erasers =
11996 {
11997 {
11998 .eraseblocks = { {4 * 1024, 128} },
11999 .block_erase = erase_sector_jedec,
12000 }, {
12001 .eraseblocks = { {64 * 1024, 8} },
12002 .block_erase = erase_block_jedec,
12003 }, {
12004 .eraseblocks = { {512 * 1024, 1} },
12005 .block_erase = erase_chip_block_jedec,
12006 }
12007 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000012008 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson36172342010-02-27 18:01:15 +000012009 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000012010 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012011 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000012012 },
12013
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012014 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012015 .vendor = "SST",
Idwer Volleringf3607d12014-05-07 15:25:04 +000012016 .name = "SST25LF020A",
12017 .bustype = BUS_SPI,
12018 .manufacture_id = SST_ID,
12019 .model_id = SST_SST25VF020_REMS,
12020 .total_size = 256,
12021 .page_size = 256,
12022 .feature_bits = FEATURE_WRSR_EWSR,
12023 .tested = TEST_OK_PREW,
12024 .probe = probe_spi_rems,
12025 .probe_timing = TIMING_ZERO,
12026 .block_erasers =
12027 {
12028 {
12029 .eraseblocks = { {4 * 1024, 64} },
12030 .block_erase = spi_block_erase_20,
12031 }, {
12032 .eraseblocks = { {32 * 1024, 8} },
12033 .block_erase = spi_block_erase_52,
12034 }, {
12035 .eraseblocks = { {256 * 1024, 1} },
12036 .block_erase = spi_block_erase_60,
12037 },
12038 },
12039 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12040 .unlock = spi_disable_blockprotect,
12041 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12042 .read = spi_chip_read, /* Fast read (0x0B) supported */
12043 .voltage = {2700, 3600},
12044 },
12045
12046 {
12047 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +000012048 .name = "SST25LF040A",
12049 .bustype = BUS_SPI,
12050 .manufacture_id = SST_ID,
12051 .model_id = SST_SST25VF040_REMS,
12052 .total_size = 512,
12053 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012054 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +000012055 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +000012056 .probe = probe_spi_res2,
12057 .probe_timing = TIMING_ZERO,
12058 .block_erasers =
12059 {
12060 {
12061 .eraseblocks = { {4 * 1024, 128} },
12062 .block_erase = spi_block_erase_20,
12063 }, {
12064 .eraseblocks = { {32 * 1024, 16} },
12065 .block_erase = spi_block_erase_52,
12066 }, {
12067 .eraseblocks = { {512 * 1024, 1} },
12068 .block_erase = spi_block_erase_60,
12069 },
12070 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012071 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012072 .unlock = spi_disable_blockprotect,
12073 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12074 .read = spi_chip_read,
12075 .voltage = {3000, 3600},
12076 },
12077
12078 {
12079 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +000012080 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +000012081 .bustype = BUS_SPI,
12082 .manufacture_id = SST_ID,
12083 .model_id = SST_SST25VF080_REMS,
12084 .total_size = 1024,
12085 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012086 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +000012087 .tested = TEST_UNTESTED,
12088 .probe = probe_spi_res2,
12089 .probe_timing = TIMING_ZERO,
12090 .block_erasers =
12091 {
12092 {
12093 .eraseblocks = { {4 * 1024, 256} },
12094 .block_erase = spi_block_erase_20,
12095 }, {
12096 .eraseblocks = { {32 * 1024, 32} },
12097 .block_erase = spi_block_erase_52,
12098 }, {
12099 .eraseblocks = { {1024 * 1024, 1} },
12100 .block_erase = spi_block_erase_60,
12101 },
12102 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012103 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012104 .unlock = spi_disable_blockprotect,
12105 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12106 .read = spi_chip_read,
12107 .voltage = {3000, 3600},
12108 },
12109
12110 {
12111 .vendor = "SST",
Stefan Tauner6697f712014-08-06 15:09:15 +000012112 .name = "SST25VF010(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012113 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +000012114 .manufacture_id = SST_ID,
12115 .model_id = SST_SST25VF010_REMS,
12116 .total_size = 128,
12117 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012118 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +000012119 .tested = TEST_OK_PREW,
12120 .probe = probe_spi_rems,
12121 .probe_timing = TIMING_ZERO,
12122 .block_erasers =
12123 {
12124 {
12125 .eraseblocks = { {4 * 1024, 32} },
12126 .block_erase = spi_block_erase_20,
12127 }, {
12128 .eraseblocks = { {32 * 1024, 4} },
12129 .block_erase = spi_block_erase_52,
12130 }, {
Cory Henderson370f5822013-10-19 23:09:16 +000012131 .eraseblocks = { {32 * 1024, 4} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012132 .block_erase = spi_block_erase_d8, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012133 }, {
Mark Marshall90021f22010-12-03 14:48:11 +000012134 .eraseblocks = { {128 * 1024, 1} },
12135 .block_erase = spi_block_erase_60,
Cory Henderson370f5822013-10-19 23:09:16 +000012136 }, {
12137 .eraseblocks = { {128 * 1024, 1} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012138 .block_erase = spi_block_erase_c7, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012139 },
12140 },
12141 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12142 .unlock = spi_disable_blockprotect,
12143 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stefan Tauner6697f712014-08-06 15:09:15 +000012144 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012145 .voltage = {2700, 3600},
12146 },
12147
12148 {
12149 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012150 .name = "SST25VF016B",
12151 .bustype = BUS_SPI,
12152 .manufacture_id = SST_ID,
12153 .model_id = SST_SST25VF016B,
12154 .total_size = 2048,
12155 .page_size = 256,
12156 .feature_bits = FEATURE_WRSR_EITHER,
12157 .tested = TEST_OK_PREW,
12158 .probe = probe_spi_rdid,
12159 .probe_timing = TIMING_ZERO,
12160 .block_erasers =
12161 {
12162 {
12163 .eraseblocks = { {4 * 1024, 512} },
12164 .block_erase = spi_block_erase_20,
12165 }, {
12166 .eraseblocks = { {32 * 1024, 64} },
12167 .block_erase = spi_block_erase_52,
12168 }, {
12169 .eraseblocks = { {64 * 1024, 32} },
12170 .block_erase = spi_block_erase_d8,
12171 }, {
12172 .eraseblocks = { {2 * 1024 * 1024, 1} },
12173 .block_erase = spi_block_erase_60,
12174 }, {
12175 .eraseblocks = { {2 * 1024 * 1024, 1} },
12176 .block_erase = spi_block_erase_c7,
12177 },
12178 },
12179 .printlock = spi_prettyprint_status_register_sst25vf016,
12180 .unlock = spi_disable_blockprotect,
12181 .write = spi_aai_write,
12182 .read = spi_chip_read,
12183 .voltage = {2700, 3600},
12184 },
12185
12186 {
12187 .vendor = "SST",
Cory Henderson370f5822013-10-19 23:09:16 +000012188 .name = "SST25VF020",
12189 .bustype = BUS_SPI,
12190 .manufacture_id = SST_ID,
12191 .model_id = SST_SST25VF020_REMS,
12192 .total_size = 256,
12193 .page_size = 256,
12194 .feature_bits = FEATURE_WRSR_EWSR,
12195 .tested = TEST_UNTESTED,
12196 .probe = probe_spi_rems,
12197 .probe_timing = TIMING_ZERO,
12198 .block_erasers =
12199 {
12200 {
12201 .eraseblocks = { {4 * 1024, 64} },
12202 .block_erase = spi_block_erase_20,
12203 }, {
12204 .eraseblocks = { {32 * 1024, 8} },
12205 .block_erase = spi_block_erase_52,
12206 }, {
12207 .eraseblocks = { {256 * 1024, 1} },
12208 .block_erase = spi_block_erase_60,
12209 },
12210 },
12211 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12212 .unlock = spi_disable_blockprotect,
12213 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12214 .read = spi_chip_read, /* only */
12215 .voltage = {2700, 3600},
12216 },
12217
12218 {
12219 .vendor = "SST",
12220 .name = "SST25VF020B",
12221 .bustype = BUS_SPI,
12222 .manufacture_id = SST_ID,
12223 .model_id = SST_SST25VF020B,
12224 .total_size = 256,
12225 .page_size = 256,
12226 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000012227 .tested = TEST_OK_PREW,
Cory Henderson370f5822013-10-19 23:09:16 +000012228 .probe = probe_spi_rdid,
12229 .probe_timing = TIMING_ZERO,
12230 .block_erasers =
12231 {
12232 {
12233 .eraseblocks = { {4 * 1024, 64} },
12234 .block_erase = spi_block_erase_20,
12235 }, {
12236 .eraseblocks = { {32 * 1024, 8} },
12237 .block_erase = spi_block_erase_52,
12238 }, {
12239 .eraseblocks = { {64 * 1024, 4} },
12240 .block_erase = spi_block_erase_d8,
12241 }, {
12242 .eraseblocks = { {256 * 1024, 1} },
12243 .block_erase = spi_block_erase_60,
12244 }, {
12245 .eraseblocks = { {256 * 1024, 1} },
12246 .block_erase = spi_block_erase_c7,
12247 },
12248 },
12249 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 and 2nd SR */
12250 .unlock = spi_disable_blockprotect, /* FIXME: 2nd SR */
12251 .write = spi_aai_write, /* AAI supported (0xAD) */
12252 .read = spi_chip_read, /* Fast read (0x0B) supported */
12253 .voltage = {2700, 3600},
12254 },
12255
12256 {
12257 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012258 .name = "SST25VF032B",
12259 .bustype = BUS_SPI,
12260 .manufacture_id = SST_ID,
12261 .model_id = SST_SST25VF032B,
12262 .total_size = 4096,
12263 .page_size = 256,
12264 .feature_bits = FEATURE_WRSR_EWSR,
12265 .tested = TEST_OK_PREW,
12266 .probe = probe_spi_rdid,
12267 .probe_timing = TIMING_ZERO,
12268 .block_erasers =
12269 {
12270 {
12271 .eraseblocks = { {4 * 1024, 1024} },
12272 .block_erase = spi_block_erase_20,
12273 }, {
12274 .eraseblocks = { {32 * 1024, 128} },
12275 .block_erase = spi_block_erase_52,
12276 }, {
12277 .eraseblocks = { {64 * 1024, 64} },
12278 .block_erase = spi_block_erase_d8,
12279 }, {
12280 .eraseblocks = { {4 * 1024 * 1024, 1} },
12281 .block_erase = spi_block_erase_60,
12282 }, {
12283 .eraseblocks = { {4 * 1024 * 1024, 1} },
12284 .block_erase = spi_block_erase_c7,
12285 },
12286 },
12287 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
12288 .unlock = spi_disable_blockprotect,
12289 .write = spi_aai_write,
12290 .read = spi_chip_read,
12291 .voltage = {2700, 3600},
12292 },
12293
12294 {
12295 .vendor = "SST",
Cory Henderson370f5822013-10-19 23:09:16 +000012296 .name = "SST25VF040",
12297 .bustype = BUS_SPI,
12298 .manufacture_id = SST_ID,
12299 .model_id = SST_SST25VF040_REMS,
12300 .total_size = 512,
12301 .page_size = 256,
12302 .feature_bits = FEATURE_WRSR_EWSR,
12303 .tested = TEST_OK_PR,
12304 .probe = probe_spi_rems,
12305 .probe_timing = TIMING_ZERO,
12306 .block_erasers =
12307 {
12308 {
12309 .eraseblocks = { {4 * 1024, 128} },
12310 .block_erase = spi_block_erase_20,
12311 }, {
12312 .eraseblocks = { {32 * 1024, 16} },
12313 .block_erase = spi_block_erase_52,
12314 }, {
12315 .eraseblocks = { {512 * 1024, 1} },
12316 .block_erase = spi_block_erase_60,
Mark Marshall90021f22010-12-03 14:48:11 +000012317 },
12318 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012319 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +000012320 .unlock = spi_disable_blockprotect,
Cory Henderson370f5822013-10-19 23:09:16 +000012321 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12322 .read = spi_chip_read,
12323 .voltage = {2700, 3600},
12324 },
12325
12326 {
12327 .vendor = "SST",
12328 .name = "SST25VF040B",
12329 .bustype = BUS_SPI,
12330 .manufacture_id = SST_ID,
12331 .model_id = SST_SST25VF040B,
12332 .total_size = 512,
12333 .page_size = 256,
12334 .feature_bits = FEATURE_WRSR_EWSR,
12335 .tested = TEST_OK_PREW,
12336 .probe = probe_spi_rdid,
12337 .probe_timing = TIMING_ZERO,
12338 .block_erasers =
12339 {
12340 {
12341 .eraseblocks = { {4 * 1024, 128} },
12342 .block_erase = spi_block_erase_20,
12343 }, {
12344 .eraseblocks = { {32 * 1024, 16} },
12345 .block_erase = spi_block_erase_52,
12346 }, {
12347 .eraseblocks = { {64 * 1024, 8} },
12348 .block_erase = spi_block_erase_d8,
12349 }, {
12350 .eraseblocks = { {512 * 1024, 1} },
12351 .block_erase = spi_block_erase_60,
12352 }, {
12353 .eraseblocks = { {512 * 1024, 1} },
12354 .block_erase = spi_block_erase_c7,
12355 },
12356 },
12357 .printlock = spi_prettyprint_status_register_sst25vf040b,
12358 .unlock = spi_disable_blockprotect,
12359 .write = spi_aai_write, /* AAI supported (0xAD) */
12360 .read = spi_chip_read, /* Fast read (0x0B) supported */
12361 .voltage = {2700, 3600},
12362 },
12363
12364 {
12365 .vendor = "SST",
12366 .name = "SST25VF040B.REMS",
12367 .bustype = BUS_SPI,
12368 .manufacture_id = SST_ID,
12369 .model_id = SST_SST25VF040B_REMS,
12370 .total_size = 512,
12371 .page_size = 256,
12372 .feature_bits = FEATURE_WRSR_EWSR,
12373 .tested = TEST_OK_PREW,
12374 .probe = probe_spi_rems,
12375 .probe_timing = TIMING_ZERO,
12376 .block_erasers =
12377 {
12378 {
12379 .eraseblocks = { {4 * 1024, 128} },
12380 .block_erase = spi_block_erase_20,
12381 }, {
12382 .eraseblocks = { {32 * 1024, 16} },
12383 .block_erase = spi_block_erase_52,
12384 }, {
12385 .eraseblocks = { {64 * 1024, 8} },
12386 .block_erase = spi_block_erase_d8,
12387 }, {
12388 .eraseblocks = { {512 * 1024, 1} },
12389 .block_erase = spi_block_erase_60,
12390 }, {
12391 .eraseblocks = { {512 * 1024, 1} },
12392 .block_erase = spi_block_erase_c7,
12393 },
12394 },
12395 .printlock = spi_prettyprint_status_register_sst25vf040b,
12396 .unlock = spi_disable_blockprotect,
12397 .write = spi_aai_write,
12398 .read = spi_chip_read,
12399 .voltage = {2700, 3600},
12400 },
12401
12402 {
12403 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012404 .name = "SST25VF064C",
Ben Gardnerbcf61092015-11-22 02:23:31 +000012405 .bustype = BUS_SPI,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012406 .manufacture_id = SST_ID,
12407 .model_id = SST_SST25VF064C,
12408 .total_size = 8192,
Ben Gardnerbcf61092015-11-22 02:23:31 +000012409 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012410 .feature_bits = FEATURE_WRSR_EWSR,
Ben Gardnerbcf61092015-11-22 02:23:31 +000012411 .tested = TEST_OK_PREW,
12412 .probe = probe_spi_rdid,
12413 .probe_timing = TIMING_ZERO,
12414 .block_erasers =
12415 {
12416 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012417 .eraseblocks = { {4 * 1024, 2048} },
Ben Gardnerbcf61092015-11-22 02:23:31 +000012418 .block_erase = spi_block_erase_20,
12419 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012420 .eraseblocks = { {32 * 1024, 256} },
12421 .block_erase = spi_block_erase_52,
12422 }, {
12423 .eraseblocks = { {64 * 1024, 128} },
Ben Gardnerbcf61092015-11-22 02:23:31 +000012424 .block_erase = spi_block_erase_d8,
12425 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012426 .eraseblocks = { {8 * 1024 * 1024, 1} },
Ben Gardnerbcf61092015-11-22 02:23:31 +000012427 .block_erase = spi_block_erase_60,
12428 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012429 .eraseblocks = { {8 * 1024 * 1024, 1} },
Ben Gardnerbcf61092015-11-22 02:23:31 +000012430 .block_erase = spi_block_erase_c7,
12431 },
12432 },
Alan Green1f9cc7d2019-07-01 11:10:45 +100012433 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
12434 .unlock = spi_disable_blockprotect,
Ben Gardnerbcf61092015-11-22 02:23:31 +000012435 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012436 .read = spi_chip_read,
12437 .voltage = {2700, 3600},
Ben Gardnerbcf61092015-11-22 02:23:31 +000012438 },
12439
12440 {
12441 .vendor = "SST",
Cory Henderson370f5822013-10-19 23:09:16 +000012442 .name = "SST25VF080B",
12443 .bustype = BUS_SPI,
12444 .manufacture_id = SST_ID,
12445 .model_id = SST_SST25VF080B,
12446 .total_size = 1024,
12447 .page_size = 256,
12448 .feature_bits = FEATURE_WRSR_EWSR,
12449 .tested = TEST_OK_PREW,
12450 .probe = probe_spi_rdid,
12451 .probe_timing = TIMING_ZERO,
12452 .block_erasers =
12453 {
12454 {
12455 .eraseblocks = { {4 * 1024, 256} },
12456 .block_erase = spi_block_erase_20,
12457 }, {
12458 .eraseblocks = { {32 * 1024, 32} },
12459 .block_erase = spi_block_erase_52,
12460 }, {
12461 .eraseblocks = { {64 * 1024, 16} },
12462 .block_erase = spi_block_erase_d8,
12463 }, {
12464 .eraseblocks = { {1024 * 1024, 1} },
12465 .block_erase = spi_block_erase_60,
12466 }, {
12467 .eraseblocks = { {1024 * 1024, 1} },
12468 .block_erase = spi_block_erase_c7,
12469 },
12470 },
12471 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
12472 .unlock = spi_disable_blockprotect,
12473 .write = spi_aai_write,
Mark Marshall90021f22010-12-03 14:48:11 +000012474 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000012475 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +000012476 },
12477
12478 {
12479 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012480 .name = "SST25VF512(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012481 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012482 .manufacture_id = SST_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012483 .model_id = SST_SST25VF512_REMS,
12484 .total_size = 64,
12485 .page_size = 256,
12486 .feature_bits = FEATURE_WRSR_EWSR,
12487 .tested = TEST_OK_PREW,
12488 .probe = probe_spi_rems,
12489 .probe_timing = TIMING_ZERO,
12490 .block_erasers =
12491 {
12492 {
12493 .eraseblocks = { {4 * 1024, 16} },
12494 .block_erase = spi_block_erase_20,
12495 }, {
12496 .eraseblocks = { {32 * 1024, 2} },
12497 .block_erase = spi_block_erase_52,
12498 }, {
12499 .eraseblocks = { {32 * 1024, 2} },
12500 .block_erase = spi_block_erase_d8, /* Supported by SST25VF512A only */
12501 }, {
12502 .eraseblocks = { {64 * 1024, 1} },
12503 .block_erase = spi_block_erase_60,
12504 }, {
12505 .eraseblocks = { {64 * 1024, 1} },
12506 .block_erase = spi_block_erase_c7, /* Supported by SST25VF512A only */
12507 },
12508 },
12509 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12510 .unlock = spi_disable_blockprotect,
12511 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12512 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF512A only */
12513 .voltage = {2700, 3600},
12514 },
12515
12516 {
12517 .vendor = "SST",
12518 .name = "SST25WF010",
12519 .bustype = BUS_SPI,
12520 .manufacture_id = SST_ID,
12521 .model_id = SST_SST25WF010,
12522 .total_size = 128,
12523 .page_size = 256,
12524 .feature_bits = FEATURE_WRSR_EITHER,
12525 .tested = TEST_UNTESTED,
12526 .probe = probe_spi_rdid,
12527 .probe_timing = TIMING_ZERO,
12528 .block_erasers =
12529 {
12530 {
12531 .eraseblocks = { {4 * 1024, 32} },
12532 .block_erase = spi_block_erase_20,
12533 }, {
12534 .eraseblocks = { {32 * 1024, 4} },
12535 .block_erase = spi_block_erase_52,
12536 }, {
12537 .eraseblocks = { {1024 * 128, 1} },
12538 .block_erase = spi_block_erase_60,
12539 }, {
12540 .eraseblocks = { {1024 * 128, 1} },
12541 .block_erase = spi_block_erase_c7,
12542 },
12543 },
12544 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
12545 .unlock = spi_disable_blockprotect_bp2_srwd,
12546 .write = spi_aai_write,
12547 .read = spi_chip_read, /* Fast read (0x0B) supported */
12548 .voltage = {1650, 1950},
12549 },
12550
12551 {
12552 .vendor = "SST",
12553 .name = "SST25WF020",
12554 .bustype = BUS_SPI,
12555 .manufacture_id = SST_ID,
12556 .model_id = SST_SST25WF020,
12557 .total_size = 256,
12558 .page_size = 256,
12559 .feature_bits = FEATURE_WRSR_EITHER,
12560 .tested = TEST_UNTESTED,
12561 .probe = probe_spi_rdid,
12562 .probe_timing = TIMING_ZERO,
12563 .block_erasers =
12564 {
12565 {
12566 .eraseblocks = { {4 * 1024, 64} },
12567 .block_erase = spi_block_erase_20,
12568 }, {
12569 .eraseblocks = { {32 * 1024, 8} },
12570 .block_erase = spi_block_erase_52,
12571 }, {
12572 .eraseblocks = { {64 * 1024, 4} },
12573 .block_erase = spi_block_erase_d8,
12574 }, {
12575 .eraseblocks = { {1024 * 256, 1} },
12576 .block_erase = spi_block_erase_60,
12577 }, {
12578 .eraseblocks = { {1024 * 256, 1} },
12579 .block_erase = spi_block_erase_c7,
12580 },
12581 },
12582 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
12583 .unlock = spi_disable_blockprotect_bp2_srwd,
12584 .write = spi_aai_write,
12585 .read = spi_chip_read, /* Fast read (0x0B) supported */
12586 .voltage = {1650, 1950},
12587 },
12588
12589 {
12590 .vendor = "SST",
12591 .name = "SST25WF020A",
12592 .bustype = BUS_SPI,
12593 .manufacture_id = SANYO_ID, /* See flashchips.h */
12594 .model_id = SST_SST25WF020A,
12595 .total_size = 256,
12596 .page_size = 256,
12597 .feature_bits = FEATURE_WRSR_WREN,
12598 .tested = TEST_UNTESTED,
12599 .probe = probe_spi_rdid,
12600 .probe_timing = TIMING_ZERO,
12601 .block_erasers =
12602 {
12603 {
12604 .eraseblocks = { {4 * 1024, 64} },
12605 .block_erase = spi_block_erase_20,
12606 }, {
12607 .eraseblocks = { {64 * 1024, 4} },
12608 .block_erase = spi_block_erase_d8,
12609 }, {
12610 .eraseblocks = { {256 * 1024, 1} },
12611 .block_erase = spi_block_erase_60,
12612 }, {
12613 .eraseblocks = { {256 * 1024, 1} },
12614 .block_erase = spi_block_erase_c7,
12615 },
12616 },
12617 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12618 .unlock = spi_disable_blockprotect_bp2_srwd,
12619 .write = spi_chip_write_256,
12620 .read = spi_chip_read, /* Fast read (0x0B) supported */
12621 .voltage = {1650, 1950},
12622 },
12623
12624 {
12625 .vendor = "SST",
12626 .name = "SST25WF040",
12627 .bustype = BUS_SPI,
12628 .manufacture_id = SST_ID,
12629 .model_id = SST_SST25WF040,
12630 .total_size = 512,
12631 .page_size = 256,
12632 .feature_bits = FEATURE_WRSR_EITHER,
12633 .tested = TEST_UNTESTED,
12634 .probe = probe_spi_rdid,
12635 .probe_timing = TIMING_ZERO,
12636 .block_erasers =
12637 {
12638 {
12639 .eraseblocks = { {4 * 1024, 128} },
12640 .block_erase = spi_block_erase_20,
12641 }, {
12642 .eraseblocks = { {32 * 1024, 16} },
12643 .block_erase = spi_block_erase_52,
12644 }, {
12645 .eraseblocks = { {64 * 1024, 8} },
12646 .block_erase = spi_block_erase_d8,
12647 }, {
12648 .eraseblocks = { {1024 * 512, 1} },
12649 .block_erase = spi_block_erase_60,
12650 }, {
12651 .eraseblocks = { {1024 * 512, 1} },
12652 .block_erase = spi_block_erase_c7,
12653 },
12654 },
12655 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
12656 .unlock = spi_disable_blockprotect_bp2_srwd,
12657 .write = spi_aai_write,
12658 .read = spi_chip_read, /* Fast read (0x0B) supported */
12659 .voltage = {1650, 1950},
12660 },
12661
12662 {
12663 .vendor = "SST",
12664 .name = "SST25WF040B",
12665 .bustype = BUS_SPI,
12666 .manufacture_id = SANYO_ID, /* See flashchips.h */
12667 .model_id = SST_SST25WF040B,
12668 .total_size = 512,
12669 .page_size = 256,
12670 .feature_bits = FEATURE_WRSR_WREN,
12671 .tested = TEST_UNTESTED,
12672 .probe = probe_spi_rdid,
12673 .probe_timing = TIMING_ZERO,
12674 .block_erasers =
12675 {
12676 {
12677 .eraseblocks = { {4 * 1024, 128} },
12678 .block_erase = spi_block_erase_20,
12679 }, {
12680 .eraseblocks = { {64 * 1024, 8} },
12681 .block_erase = spi_block_erase_d8,
12682 }, {
12683 .eraseblocks = { {512 * 1024, 1} },
12684 .block_erase = spi_block_erase_60,
12685 }, {
12686 .eraseblocks = { {512 * 1024, 1} },
12687 .block_erase = spi_block_erase_c7,
12688 },
12689 },
12690 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12691 .unlock = spi_disable_blockprotect_bp2_srwd,
12692 .write = spi_chip_write_256,
12693 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12694 .voltage = {1650, 1950},
12695 },
12696
12697 {
12698 .vendor = "SST",
12699 .name = "SST25WF080",
12700 .bustype = BUS_SPI,
12701 .manufacture_id = SST_ID,
12702 .model_id = SST_SST25WF080,
12703 .total_size = 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012704 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012705 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +000012706 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012707 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000012708 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012709 .block_erasers =
12710 {
12711 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012712 .eraseblocks = { {4 * 1024, 256} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012713 .block_erase = spi_block_erase_20,
12714 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012715 .eraseblocks = { {32 * 1024, 32} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012716 .block_erase = spi_block_erase_52,
12717 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012718 .eraseblocks = { {64 * 1024, 16} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012719 .block_erase = spi_block_erase_d8,
12720 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012721 .eraseblocks = { {1024 * 1024, 1} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012722 .block_erase = spi_block_erase_60,
12723 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012724 .eraseblocks = { {1024 * 1024, 1} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012725 .block_erase = spi_block_erase_c7,
12726 },
12727 },
Alan Green1f9cc7d2019-07-01 11:10:45 +100012728 .printlock = spi_prettyprint_status_register_sst25, /* *does* have a BP3 but it is useless */
12729 .unlock = spi_disable_blockprotect_bp3_srwd,
Joshua Roys87955bf2011-08-01 18:39:28 +000012730 .write = spi_aai_write,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012731 .read = spi_chip_read, /* Fast read (0x0B) supported */
12732 .voltage = {1650, 1950},
FENG yu ningff692fb2008-12-08 18:15:10 +000012733 },
12734
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012735 {
12736 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012737 .name = "SST25WF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012738 .bustype = BUS_SPI,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012739 .manufacture_id = SANYO_ID, /* See flashchips.h */
12740 .model_id = SST_SST25WF080B,
12741 .total_size = 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012742 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012743 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +000012744 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012745 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000012746 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012747 .block_erasers =
12748 {
12749 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012750 .eraseblocks = { {4 * 1024, 256} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012751 .block_erase = spi_block_erase_20,
12752 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012753 .eraseblocks = { {64 * 1024, 16} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012754 .block_erase = spi_block_erase_d8,
12755 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012756 .eraseblocks = { {1024 * 1024, 1} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012757 .block_erase = spi_block_erase_60,
12758 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100012759 .eraseblocks = { {1024 * 1024, 1} },
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012760 .block_erase = spi_block_erase_c7,
12761 },
12762 },
Alan Green1f9cc7d2019-07-01 11:10:45 +100012763 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12764 .unlock = spi_disable_blockprotect_bp2_srwd,
Helge Wagner1db7a442010-10-05 22:29:08 +000012765 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100012766 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12767 .voltage = {1650, 1950},
12768 },
12769
12770 {
12771 .vendor = "SST",
12772 .name = "SST25WF512",
12773 .bustype = BUS_SPI,
12774 .manufacture_id = SST_ID,
12775 .model_id = SST_SST25WF512,
12776 .total_size = 64,
12777 .page_size = 256,
12778 .feature_bits = FEATURE_WRSR_EITHER,
12779 .tested = TEST_UNTESTED,
12780 .probe = probe_spi_rdid,
12781 .probe_timing = TIMING_ZERO,
12782 .block_erasers =
12783 {
12784 {
12785 .eraseblocks = { {4 * 1024, 16} },
12786 .block_erase = spi_block_erase_20,
12787 }, {
12788 .eraseblocks = { {32 * 1024, 2} },
12789 .block_erase = spi_block_erase_52,
12790 }, {
12791 .eraseblocks = { {1024 * 64, 1} },
12792 .block_erase = spi_block_erase_60,
12793 }, {
12794 .eraseblocks = { {1024 * 64, 1} },
12795 .block_erase = spi_block_erase_c7,
12796 },
12797 },
12798 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
12799 .unlock = spi_disable_blockprotect_bp2_srwd,
12800 .write = spi_aai_write,
12801 .read = spi_chip_read, /* Fast read (0x0B) supported */
12802 .voltage = {1650, 1950},
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012803 },
12804
12805 {
12806 .vendor = "SST",
Wei Hu25584de2018-04-30 14:02:08 -070012807 .name = "SST26VF016B(A)",
12808 .bustype = BUS_SPI,
12809 .manufacture_id = SST_ID,
12810 .model_id = SST_SST26VF016B,
12811 .total_size = 2048,
12812 .page_size = 256,
12813 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12814 .tested = TEST_OK_PREW,
12815 .probe = probe_spi_rdid,
12816 .probe_timing = TIMING_ZERO,
12817 .block_erasers =
12818 {
12819 {
12820 .eraseblocks = { {4 * 1024, 512} },
12821 .block_erase = spi_block_erase_20,
12822 }, {
12823 .eraseblocks = {
12824 {8 * 1024, 4},
12825 {32 * 1024, 1},
12826 {64 * 1024, 30},
12827 {32 * 1024, 1},
12828 {8 * 1024, 4},
12829 },
12830 .block_erase = spi_block_erase_d8,
12831 }, {
12832 .eraseblocks = { {2 * 1024 * 1024, 1} },
12833 .block_erase = spi_block_erase_c7,
12834 },
12835 },
12836 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
12837 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
12838 .write = spi_chip_write_256, /* Multi I/O supported */
12839 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12840 .voltage = {2700, 3600},
12841 },
Alan Greenfa3fcd32019-06-27 15:41:50 +100012842
Wei Hu25584de2018-04-30 14:02:08 -070012843 {
12844 .vendor = "SST",
12845 .name = "SST26VF032B(A)",
12846 .bustype = BUS_SPI,
12847 .manufacture_id = SST_ID,
12848 .model_id = SST_SST26VF032B,
12849 .total_size = 4096,
12850 .page_size = 256,
12851 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12852 .tested = TEST_UNTESTED,
12853 .probe = probe_spi_rdid,
12854 .probe_timing = TIMING_ZERO,
12855 .block_erasers =
12856 {
12857 {
12858 .eraseblocks = { {4 * 1024, 1024} },
12859 .block_erase = spi_block_erase_20,
12860 }, {
12861 .eraseblocks = {
12862 {8 * 1024, 4},
12863 {32 * 1024, 1},
12864 {64 * 1024, 62},
12865 {32 * 1024, 1},
12866 {8 * 1024, 4},
12867 },
12868 .block_erase = spi_block_erase_d8,
12869 }, {
12870 .eraseblocks = { {4 * 1024 * 1024, 1} },
12871 .block_erase = spi_block_erase_c7,
12872 },
12873 },
12874 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
12875 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
12876 .write = spi_chip_write_256, /* Multi I/O supported */
12877 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12878 .voltage = {2700, 3600},
12879 },
12880
Wei Hu25584de2018-04-30 14:02:08 -070012881 {
12882 .vendor = "SST",
12883 .name = "SST26VF064B(A)",
12884 .bustype = BUS_SPI,
12885 .manufacture_id = SST_ID,
12886 .model_id = SST_SST26VF064B,
12887 .total_size = 8192,
12888 .page_size = 256,
12889 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12890 .tested = TEST_OK_PREW,
12891 .probe = probe_spi_rdid,
12892 .probe_timing = TIMING_ZERO,
12893 .block_erasers =
12894 {
12895 {
12896 .eraseblocks = { {4 * 1024, 2048} },
12897 .block_erase = spi_block_erase_20,
12898 }, {
12899 .eraseblocks = {
12900 {8 * 1024, 4},
12901 {32 * 1024, 1},
12902 {64 * 1024, 126},
12903 {32 * 1024, 1},
12904 {8 * 1024, 4},
12905 },
12906 .block_erase = spi_block_erase_d8,
12907 }, {
12908 .eraseblocks = { {8 * 1024 * 1024, 1} },
12909 .block_erase = spi_block_erase_c7,
12910 },
12911 },
12912 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
12913 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
12914 .write = spi_chip_write_256, /* Multi I/O supported */
12915 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12916 .voltage = {2700, 3600},
12917 },
12918
12919 {
12920 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012921 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012922 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012923 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012924 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012925 .total_size = 512,
12926 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000012927 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012928 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000012929 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000012930 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000012931 .block_erasers =
12932 {
12933 {
12934 .eraseblocks = { {128, 4096} },
12935 .block_erase = erase_sector_28sf040,
12936 }, {
12937 .eraseblocks = { {512 * 1024, 1} },
12938 .block_erase = erase_chip_28sf040,
12939 }
12940 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000012941 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012942 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000012943 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012944 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000012945 },
12946
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012947 {
12948 .vendor = "SST",
12949 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012950 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012951 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012952 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012953 .total_size = 128,
12954 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000012955 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000012956 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012957 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000012958 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000012959 .block_erasers =
12960 {
12961 {
12962 .eraseblocks = { {128 * 1024, 1} },
12963 .block_erase = erase_chip_block_jedec,
12964 }
12965 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012966 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000012967 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012968 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000012969 },
12970
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012971 {
12972 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012973 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012974 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012975 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012976 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012977 .total_size = 256,
12978 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000012979 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000012980 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012981 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000012982 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000012983 .block_erasers =
12984 {
12985 {
12986 .eraseblocks = { {256 * 1024, 1} },
12987 .block_erase = erase_chip_block_jedec,
12988 }
12989 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012990 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000012991 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012992 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000012993 },
12994
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012995 {
12996 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100012997 .name = "SST29LE010",
12998 .bustype = BUS_PARALLEL,
12999 .manufacture_id = SST_ID,
13000 .model_id = SST_SST29LE010,
13001 .total_size = 128,
13002 .page_size = 128,
13003 .feature_bits = FEATURE_LONG_RESET,
13004 .tested = TEST_UNTESTED,
13005 .probe = probe_jedec,
13006 .probe_timing = 10,
13007 .block_erasers =
13008 {
13009 {
13010 .eraseblocks = { {128 * 1024, 1} },
13011 .block_erase = erase_chip_block_jedec,
13012 }
13013 },
13014 .write = write_jedec,
13015 .read = read_memmapped,
13016 .voltage = {3000, 3600},
13017 },
13018
13019 {
13020 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013021 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013022 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013023 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013024 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013025 .total_size = 256,
13026 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013027 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013028 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013029 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013030 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013031 .block_erasers =
13032 {
13033 {
13034 .eraseblocks = { {256 * 1024, 1} },
13035 .block_erase = erase_chip_block_jedec,
13036 }
13037 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013038 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013039 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013040 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013041 },
13042
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013043 {
13044 .vendor = "SST",
13045 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013046 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013047 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013048 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013049 .total_size = 128,
13050 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013051 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000013052 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013053 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013054 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013055 .block_erasers =
13056 {
13057 {
13058 .eraseblocks = { {4 * 1024, 32} },
13059 .block_erase = erase_sector_jedec,
13060 }, {
13061 .eraseblocks = { {128 * 1024, 1} },
13062 .block_erase = erase_chip_block_jedec,
13063 }
13064 },
Sean Nelson35727f72010-01-28 23:55:12 +000013065 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013066 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013067 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013068 },
13069
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013070 {
13071 .vendor = "SST",
13072 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013073 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013074 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013075 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013076 .total_size = 256,
13077 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013078 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +000013079 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013080 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013081 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013082 .block_erasers =
13083 {
13084 {
13085 .eraseblocks = { {4 * 1024, 64} },
13086 .block_erase = erase_sector_jedec,
13087 }, {
13088 .eraseblocks = { {256 * 1024, 1} },
13089 .block_erase = erase_chip_block_jedec,
13090 }
13091 },
Sean Nelson35727f72010-01-28 23:55:12 +000013092 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013093 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013094 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013095 },
13096
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013097 {
13098 .vendor = "SST",
13099 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013100 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013101 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013102 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013103 .total_size = 512,
13104 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013105 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +000013106 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013107 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013108 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013109 .block_erasers =
13110 {
13111 {
13112 .eraseblocks = { {4 * 1024, 128} },
13113 .block_erase = erase_sector_jedec,
13114 }, {
13115 .eraseblocks = { {512 * 1024, 1} },
13116 .block_erase = erase_chip_block_jedec,
13117 }
13118 },
Sean Nelson35727f72010-01-28 23:55:12 +000013119 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013120 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013121 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013122 },
13123
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013124 {
13125 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100013126 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013127 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013128 .manufacture_id = SST_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100013129 .model_id = SST_SST39SF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013130 .total_size = 64,
13131 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013132 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +000013133 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013134 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013135 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013136 .block_erasers =
13137 {
13138 {
13139 .eraseblocks = { {4 * 1024, 16} },
13140 .block_erase = erase_sector_jedec,
13141 }, {
13142 .eraseblocks = { {64 * 1024, 1} },
13143 .block_erase = erase_chip_block_jedec,
13144 }
13145 },
Sean Nelson35727f72010-01-28 23:55:12 +000013146 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013147 .read = read_memmapped,
Alan Green1f9cc7d2019-07-01 11:10:45 +100013148 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013149 },
13150
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013151 {
13152 .vendor = "SST",
13153 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013154 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013155 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013156 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013157 .total_size = 128,
13158 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013159 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +000013160 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013161 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013162 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013163 .block_erasers =
13164 {
13165 {
13166 .eraseblocks = { {4 * 1024, 32} },
13167 .block_erase = erase_sector_jedec,
13168 }, {
13169 .eraseblocks = { {128 * 1024, 1} },
13170 .block_erase = erase_chip_block_jedec,
13171 }
13172 },
Sean Nelson35727f72010-01-28 23:55:12 +000013173 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013174 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013175 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013176 },
13177
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013178 {
13179 .vendor = "SST",
13180 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013181 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013182 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013183 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013184 .total_size = 256,
13185 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013186 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner5c316f92015-02-08 21:57:52 +000013187 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013188 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013189 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013190 .block_erasers =
13191 {
13192 {
13193 .eraseblocks = { {4 * 1024, 64} },
13194 .block_erase = erase_sector_jedec,
13195 }, {
13196 .eraseblocks = { {256 * 1024, 1} },
13197 .block_erase = erase_chip_block_jedec,
13198 }
13199 },
Sean Nelson35727f72010-01-28 23:55:12 +000013200 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013201 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013202 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013203 },
13204
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013205 {
13206 .vendor = "SST",
13207 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013208 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013209 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013210 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013211 .total_size = 512,
13212 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013213 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013214 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013215 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013216 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013217 .block_erasers =
13218 {
13219 {
13220 .eraseblocks = { {4 * 1024, 128} },
13221 .block_erase = erase_sector_jedec,
13222 }, {
13223 .eraseblocks = { {512 * 1024, 1} },
13224 .block_erase = erase_chip_block_jedec,
13225 }
13226 },
Sean Nelson35727f72010-01-28 23:55:12 +000013227 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013228 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013229 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +000013230 },
FENG yu ningff692fb2008-12-08 18:15:10 +000013231
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013232 {
13233 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +000013234 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013235 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013236 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013237 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +000013238 .total_size = 1024,
13239 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013240 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +000013241 .tested = TEST_UNTESTED,
13242 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013243 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013244 .block_erasers =
13245 {
13246 {
13247 .eraseblocks = { {4 * 1024, 256} },
13248 .block_erase = erase_sector_jedec,
13249 }, {
13250 .eraseblocks = { {64 * 1024, 16} },
13251 .block_erase = erase_block_jedec,
13252 }, {
13253 .eraseblocks = { {1024 * 1024, 1} },
13254 .block_erase = erase_chip_block_jedec,
13255 }
13256 },
Sean Nelson35727f72010-01-28 23:55:12 +000013257 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013258 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013259 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +000013260 },
13261
13262 {
13263 .vendor = "SST",
Alan Green1f9cc7d2019-07-01 11:10:45 +100013264 .name = "SST39VF512",
13265 .bustype = BUS_PARALLEL,
13266 .manufacture_id = SST_ID,
13267 .model_id = SST_SST39VF512,
13268 .total_size = 64,
13269 .page_size = 4096,
13270 .feature_bits = FEATURE_EITHER_RESET,
13271 .tested = TEST_OK_PREW,
13272 .probe = probe_jedec,
13273 .probe_timing = 1, /* 150 ns */
13274 .block_erasers =
13275 {
13276 {
13277 .eraseblocks = { {4 * 1024, 16} },
13278 .block_erase = erase_sector_jedec,
13279 }, {
13280 .eraseblocks = { {64 * 1024, 1} },
13281 .block_erase = erase_chip_block_jedec,
13282 }
13283 },
13284 .write = write_jedec_1,
13285 .read = read_memmapped,
13286 .voltage = {2700, 3600},
13287 },
13288
13289 {
13290 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013291 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013292 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013293 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013294 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013295 .total_size = 256,
13296 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013297 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013298 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013299 .probe = probe_jedec,
13300 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013301 .block_erasers =
13302 {
13303 {
13304 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013305 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013306 }, {
13307 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013308 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013309 }, {
13310 .eraseblocks = { {256 * 1024, 1} },
13311 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13312 }
13313 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013314 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013315 .unlock = unlock_sst_fwhub,
13316 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013317 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013318 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013319 },
13320
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013321 {
13322 .vendor = "SST",
13323 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013324 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013325 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013326 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013327 .total_size = 384,
13328 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013329 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000013330 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013331 .probe = probe_jedec,
13332 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013333 .block_erasers =
13334 {
13335 {
13336 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013337 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013338 }, {
13339 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013340 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013341 }, {
13342 .eraseblocks = { {384 * 1024, 1} },
13343 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13344 }
13345 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013346 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013347 .unlock = unlock_sst_fwhub,
13348 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013349 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013350 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013351 },
13352
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013353 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013354 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
13355 * and is only honored for 64k block erase, but not 4k sector erase.
13356 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013357 .vendor = "SST",
13358 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013359 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013360 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013361 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013362 .total_size = 512,
13363 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013364 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013365 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013366 .probe = probe_jedec,
13367 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013368 .block_erasers =
13369 {
13370 {
13371 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013372 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013373 }, {
13374 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013375 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013376 }, {
13377 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +000013378 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013379 },
13380 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013381 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013382 .unlock = unlock_sst_fwhub,
13383 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013384 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013385 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013386 },
13387
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013388 {
13389 .vendor = "SST",
13390 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013391 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013392 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013393 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013394 .total_size = 512,
13395 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013396 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013397 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013398 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013399 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013400 .block_erasers =
13401 {
13402 {
13403 .eraseblocks = { {4 * 1024, 128} },
13404 .block_erase = erase_sector_49lfxxxc,
13405 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013406 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013407 {64 * 1024, 7},
13408 {32 * 1024, 1},
13409 {8 * 1024, 2},
13410 {16 * 1024, 1},
13411 },
Sean Nelson69e58112010-03-23 17:10:28 +000013412 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013413 }
13414 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013415 .printlock = printlock_regspace2_block_eraser_1,
13416 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013417 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013418 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013419 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013420 },
13421
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013422 {
13423 .vendor = "SST",
13424 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013425 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013426 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013427 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013428 .total_size = 1024,
13429 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013430 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000013431 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013432 .probe = probe_jedec,
13433 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013434 .block_erasers =
13435 {
13436 {
13437 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013438 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013439 }, {
13440 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013441 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013442 }, {
13443 .eraseblocks = { {1024 * 1024, 1} },
13444 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13445 }
13446 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013447 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013448 .unlock = unlock_sst_fwhub,
13449 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013450 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013451 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013452 },
13453
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013454 {
13455 .vendor = "SST",
13456 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013457 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013458 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013459 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013460 .total_size = 1024,
13461 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013462 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013463 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013464 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013465 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013466 .block_erasers =
13467 {
13468 {
13469 .eraseblocks = { {4 * 1024, 256} },
13470 .block_erase = erase_sector_49lfxxxc,
13471 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013472 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013473 {64 * 1024, 15},
13474 {32 * 1024, 1},
13475 {8 * 1024, 2},
13476 {16 * 1024, 1},
13477 },
Sean Nelson69e58112010-03-23 17:10:28 +000013478 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013479 }
13480 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013481 .printlock = printlock_regspace2_block_eraser_1,
13482 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013483 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013484 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013485 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013486 },
13487
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013488 {
13489 .vendor = "SST",
13490 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013491 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013492 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013493 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013494 .total_size = 2048,
13495 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013496 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013497 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013498 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013499 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013500 .block_erasers =
13501 {
13502 {
13503 .eraseblocks = { {4 * 1024, 512} },
13504 .block_erase = erase_sector_49lfxxxc,
13505 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013506 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013507 {64 * 1024, 31},
13508 {32 * 1024, 1},
13509 {8 * 1024, 2},
13510 {16 * 1024, 1},
13511 },
Sean Nelson69e58112010-03-23 17:10:28 +000013512 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013513 }
13514 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013515 .printlock = printlock_regspace2_block_eraser_1,
13516 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013517 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013518 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013519 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013520 },
13521
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013522 {
13523 .vendor = "SST",
13524 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013525 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013526 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013527 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013528 .total_size = 256,
13529 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013530 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +000013531 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013532 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013533 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013534 .block_erasers =
13535 {
13536 {
13537 .eraseblocks = { {4 * 1024, 64} },
13538 .block_erase = erase_sector_jedec,
13539 }, {
13540 .eraseblocks = { {16 * 1024, 16} },
13541 .block_erase = erase_block_jedec,
13542 }, {
13543 .eraseblocks = { {256 * 1024, 1} },
13544 .block_erase = NULL,
13545 }
13546 },
Sean Nelson35727f72010-01-28 23:55:12 +000013547 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013548 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013549 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +000013550 },
13551
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013552 {
13553 .vendor = "SST",
13554 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013555 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013556 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013557 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013558 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +000013559 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013560 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013561 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013562 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013563 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013564 .block_erasers =
13565 {
13566 {
13567 .eraseblocks = { {4 * 1024, 64} },
13568 .block_erase = erase_sector_jedec,
13569 }, {
13570 .eraseblocks = { {16 * 1024, 16} },
13571 .block_erase = erase_block_jedec,
13572 }, {
13573 .eraseblocks = { {256 * 1024, 1} },
13574 .block_erase = NULL,
13575 }
13576 },
Sean Nelson35727f72010-01-28 23:55:12 +000013577 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013578 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013579 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013580 },
13581
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013582 {
13583 .vendor = "SST",
13584 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013585 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013586 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013587 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013588 .total_size = 512,
13589 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013590 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000013591 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013592 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013593 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013594 .block_erasers =
13595 {
13596 {
13597 .eraseblocks = { {4 * 1024, 128} },
13598 .block_erase = erase_sector_jedec,
13599 }, {
13600 .eraseblocks = { {64 * 1024, 8} },
13601 .block_erase = erase_block_jedec,
13602 }, {
13603 .eraseblocks = { {512 * 1024, 1} },
13604 .block_erase = NULL,
13605 }
13606 },
Sean Nelson35727f72010-01-28 23:55:12 +000013607 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013608 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013609 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013610 },
13611
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013612 {
13613 .vendor = "SST",
13614 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013615 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013616 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013617 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013618 .total_size = 512,
13619 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +000013620 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013621 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013622 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013623 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013624 .block_erasers =
13625 {
13626 {
13627 .eraseblocks = { {4 * 1024, 128} },
13628 .block_erase = erase_sector_jedec,
13629 }, {
13630 .eraseblocks = { {64 * 1024, 8} },
13631 .block_erase = erase_block_jedec,
13632 }, {
13633 .eraseblocks = { {512 * 1024, 1} },
13634 .block_erase = NULL,
13635 }
13636 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013637 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000013638 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013639 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013640 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013641 },
13642
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013643 {
13644 .vendor = "SST",
13645 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013646 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013647 .manufacture_id = SST_ID,
Elyes HAOUAS124ef382018-03-27 12:15:09 +020013648 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013649 .total_size = 1024,
13650 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013651 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +000013652 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013653 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013654 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013655 .block_erasers =
13656 {
13657 {
13658 .eraseblocks = { {4 * 1024, 256} },
13659 .block_erase = erase_sector_jedec,
13660 }, {
13661 .eraseblocks = { {64 * 1024, 16} },
13662 .block_erase = erase_block_jedec,
13663 }, {
13664 .eraseblocks = { {1024 * 1024, 1} },
13665 .block_erase = NULL,
13666 }
13667 },
Sean Nelson35727f72010-01-28 23:55:12 +000013668 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013669 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013670 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013671 },
13672
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013673 {
13674 .vendor = "SST",
13675 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013676 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013677 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013678 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013679 .total_size = 2048,
13680 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013681 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013682 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013683 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013684 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013685 .block_erasers =
13686 {
13687 {
13688 .eraseblocks = { {4 * 1024, 512} },
13689 .block_erase = erase_sector_49lfxxxc,
13690 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013691 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013692 {64 * 1024, 31},
13693 {32 * 1024, 1},
13694 {8 * 1024, 2},
13695 {16 * 1024, 1},
13696 },
Sean Nelson69e58112010-03-23 17:10:28 +000013697 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013698 }
13699 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013700 .printlock = printlock_regspace2_block_eraser_1,
13701 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013702 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013703 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013704 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013705 },
13706
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013707 {
13708 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013709 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013710 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013711 .manufacture_id = ST_ID,
13712 .model_id = ST_M29F002B,
13713 .total_size = 256,
13714 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013715 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013716 .tested = TEST_UNTESTED,
13717 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013718 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000013719 .block_erasers =
13720 {
13721 {
13722 .eraseblocks = {
13723 {16 * 1024, 1},
13724 {8 * 1024, 2},
13725 {32 * 1024, 1},
13726 {64 * 1024, 3},
13727 },
13728 .block_erase = erase_sector_jedec,
13729 }, {
13730 .eraseblocks = { {256 * 1024, 1} },
13731 .block_erase = erase_chip_block_jedec,
13732 }
13733 },
Sean Nelson35727f72010-01-28 23:55:12 +000013734 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013735 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000013736 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000013737 },
13738
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013739 {
13740 .vendor = "ST",
13741 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013742 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013743 .manufacture_id = ST_ID,
13744 .model_id = ST_M29F002T,
13745 .total_size = 256,
13746 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013747 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +000013748 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013749 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013750 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000013751 .block_erasers =
13752 {
13753 {
13754 .eraseblocks = {
13755 {64 * 1024, 3},
13756 {32 * 1024, 1},
13757 {8 * 1024, 2},
13758 {16 * 1024, 1},
13759 },
13760 .block_erase = erase_sector_jedec,
13761 }, {
13762 .eraseblocks = { {256 * 1024, 1} },
13763 .block_erase = erase_chip_block_jedec,
13764 }
13765 },
Sean Nelson35727f72010-01-28 23:55:12 +000013766 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013767 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000013768 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000013769 },
13770
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013771 {
13772 .vendor = "ST",
13773 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013774 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013775 .manufacture_id = ST_ID,
13776 .model_id = ST_M29F040B,
13777 .total_size = 512,
13778 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013779 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
13780 .tested = TEST_UNTESTED,
13781 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +000013782 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +000013783 .block_erasers =
13784 {
13785 {
Stefan Tauner6697f712014-08-06 15:09:15 +000013786 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000013787 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000013788 }, {
13789 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000013790 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000013791 }
13792 },
Sean Nelson35727f72010-01-28 23:55:12 +000013793 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013794 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013795 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013796 },
13797
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013798 {
Sean Nelson35727f72010-01-28 23:55:12 +000013799 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013800 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013801 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013802 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013803 .manufacture_id = ST_ID,
13804 .model_id = ST_M29F400BB,
13805 .total_size = 512,
13806 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013807 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013808 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013809 .probe = probe_jedec,
13810 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013811 .block_erasers =
13812 {
13813 {
13814 .eraseblocks = {
13815 {16 * 1024, 1},
13816 {8 * 1024, 2},
13817 {32 * 1024, 1},
13818 {64 * 1024, 7},
13819 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013820 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013821 }, {
13822 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013823 .block_erase = erase_chip_block_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013824 }
13825 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013826 .write = write_jedec_1,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013827 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013828 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013829 },
Alan Greenfa3fcd32019-06-27 15:41:50 +100013830
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000013831 {
13832 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
13833 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013834 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013835 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013836 .manufacture_id = ST_ID,
13837 .model_id = ST_M29F400BT,
13838 .total_size = 512,
13839 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013840 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013841 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013842 .probe = probe_jedec,
13843 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson56358aa2010-01-19 16:08:51 +000013844 .block_erasers =
13845 {
13846 {
13847 .eraseblocks = {
13848 {64 * 1024, 7},
13849 {32 * 1024, 1},
13850 {8 * 1024, 2},
13851 {16 * 1024, 1},
13852 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013853 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000013854 }, {
13855 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013856 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000013857 }
13858 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000013859 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013860 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013861 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013862 },
13863
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013864 {
13865 .vendor = "ST",
13866 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013867 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013868 .manufacture_id = ST_ID,
13869 .model_id = ST_M29W010B,
13870 .total_size = 128,
13871 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013872 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013873 .tested = TEST_UNTESTED,
13874 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013875 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000013876 .block_erasers =
13877 {
13878 {
Stefan Tauner6697f712014-08-06 15:09:15 +000013879 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000013880 .block_erase = erase_sector_jedec,
13881 }, {
13882 .eraseblocks = { {128 * 1024, 1} },
13883 .block_erase = erase_chip_block_jedec,
13884 }
13885 },
Sean Nelson35727f72010-01-28 23:55:12 +000013886 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013887 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013888 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013889 },
13890
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013891 {
13892 .vendor = "ST",
13893 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013894 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013895 .manufacture_id = ST_ID,
13896 .model_id = ST_M29W040B,
13897 .total_size = 512,
13898 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013899 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013900 .tested = TEST_UNTESTED,
13901 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013902 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000013903 .block_erasers =
13904 {
13905 {
Stefan Tauner6697f712014-08-06 15:09:15 +000013906 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000013907 .block_erase = erase_sector_jedec,
13908 }, {
13909 .eraseblocks = { {512 * 1024, 1} },
13910 .block_erase = erase_chip_block_jedec,
13911 }
13912 },
Sean Nelson35727f72010-01-28 23:55:12 +000013913 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013914 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013915 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013916 },
13917
Stefan Taunereb582572012-09-21 12:52:50 +000013918 {
13919 .vendor = "ST",
13920 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013921 .bustype = BUS_PARALLEL,
Alan Greenfa3fcd32019-06-27 15:41:50 +100013922 .manufacture_id = ST_ID,
Stefan Taunereb582572012-09-21 12:52:50 +000013923 .model_id = ST_M29W512B,
13924 .total_size = 64,
13925 .page_size = 64 * 1024,
13926 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013927 .tested = TEST_OK_PREW,
Stefan Taunereb582572012-09-21 12:52:50 +000013928 .probe = probe_jedec,
13929 .probe_timing = TIMING_ZERO,
13930 .block_erasers =
13931 {
13932 {
13933 .eraseblocks = { {64 * 1024, 1} },
13934 .block_erase = erase_chip_block_jedec,
13935 }
13936 },
13937 .write = write_jedec_1,
13938 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013939 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +000013940 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +000013941
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013942 {
13943 .vendor = "ST",
13944 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013945 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013946 .manufacture_id = ST_ID,
13947 .model_id = ST_M50FLW040A,
13948 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000013949 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013950 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013951 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000013952 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000013953 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000013954 .block_erasers =
13955 {
13956 {
Sean Nelson329bde72010-01-19 16:39:19 +000013957 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000013958 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000013959 {64 * 1024, 5}, /* block */
13960 {4 * 1024, 16}, /* sector */
13961 {4 * 1024, 16}, /* sector */
13962 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000013963 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000013964 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000013965 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000013966 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000013967 }
13968 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013969 .unlock = unlock_regspace2_uniform_64k,
Alan Greenc1863ca2019-06-27 15:08:03 +100013970 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013971 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013972 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000013973 },
13974
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013975 {
13976 .vendor = "ST",
13977 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013978 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013979 .manufacture_id = ST_ID,
13980 .model_id = ST_M50FLW040B,
13981 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000013982 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013983 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013984 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000013985 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000013986 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000013987 .block_erasers =
13988 {
13989 {
Sean Nelson329bde72010-01-19 16:39:19 +000013990 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000013991 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000013992 {4 * 1024, 16}, /* sector */
13993 {64 * 1024, 5}, /* block */
13994 {4 * 1024, 16}, /* sector */
13995 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000013996 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000013997 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000013998 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000013999 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014000 }
14001 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014002 .unlock = unlock_regspace2_uniform_64k,
Alan Greenc1863ca2019-06-27 15:08:03 +100014003 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014004 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014005 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014006 },
14007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014008 {
14009 .vendor = "ST",
14010 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014011 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014012 .manufacture_id = ST_ID,
14013 .model_id = ST_M50FLW080A,
14014 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014015 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014016 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014017 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014018 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014019 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014020 .block_erasers =
14021 {
14022 {
Sean Nelson329bde72010-01-19 16:39:19 +000014023 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014024 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014025 {64 * 1024, 13}, /* block */
14026 {4 * 1024, 16}, /* sector */
14027 {4 * 1024, 16}, /* sector */
14028 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014029 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014030 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014031 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014032 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014033 }
14034 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014035 .printlock = printlock_regspace2_block_eraser_0,
14036 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014037 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014038 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014039 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014040 },
14041
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014042 {
14043 .vendor = "ST",
14044 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014045 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014046 .manufacture_id = ST_ID,
14047 .model_id = ST_M50FLW080B,
14048 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014049 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014050 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014051 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014052 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014053 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014054 .block_erasers =
14055 {
14056 {
Sean Nelson329bde72010-01-19 16:39:19 +000014057 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014058 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014059 {4 * 1024, 16}, /* sector */
14060 {64 * 1024, 13}, /* block */
14061 {4 * 1024, 16}, /* sector */
14062 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014063 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014064 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014065 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014066 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014067 }
14068 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014069 .printlock = printlock_regspace2_block_eraser_0,
14070 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014071 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014072 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014073 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014074 },
14075
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014076 {
14077 .vendor = "ST",
14078 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014079 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014080 .manufacture_id = ST_ID,
14081 .model_id = ST_M50FW002,
14082 .total_size = 256,
Stefan Tauner4404f732013-09-12 08:28:56 +000014083 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014084 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014085 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014086 .probe = probe_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014087 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014088 .block_erasers =
14089 {
14090 {
14091 .eraseblocks = {
14092 {64 * 1024, 3},
14093 {32 * 1024, 1},
14094 {8 * 1024, 2},
14095 {16 * 1024, 1},
14096 },
Sean Nelson28accc22010-03-19 18:47:06 +000014097 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014098 }, {
Stefan Tauner5c316f92015-02-08 21:57:52 +000014099 .eraseblocks = { {256 * 1024, 1} },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014100 .block_erase = NULL, /* Only in A/A mux mode */
Sean Nelson56358aa2010-01-19 16:08:51 +000014101 }
14102 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014103 .printlock = printlock_regspace2_block_eraser_0,
14104 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014105 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014106 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014107 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014108 },
14109
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014110 {
14111 .vendor = "ST",
14112 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014113 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014114 .manufacture_id = ST_ID,
14115 .model_id = ST_M50FW016,
14116 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014117 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014118 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014119 .tested = TEST_UNTESTED,
14120 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014121 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014122 .block_erasers =
14123 {
14124 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014125 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson28accc22010-03-19 18:47:06 +000014126 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014127 }
14128 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014129 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014130 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014131 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014132 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014133 },
14134
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014135 {
14136 .vendor = "ST",
14137 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014138 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014139 .manufacture_id = ST_ID,
14140 .model_id = ST_M50FW040,
14141 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014142 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014143 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +000014144 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014145 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014146 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014147 .block_erasers =
14148 {
14149 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014150 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014151 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014152 }
14153 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014154 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014155 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014156 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014157 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014158 },
14159
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014160 {
14161 .vendor = "ST",
14162 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014163 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014164 .manufacture_id = ST_ID,
14165 .model_id = ST_M50FW080,
14166 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014167 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014168 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014169 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014170 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014171 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014172 .block_erasers =
14173 {
14174 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014175 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014176 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014177 }
14178 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014179 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014180 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014181 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014182 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014183 },
14184
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014185 {
14186 .vendor = "ST",
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014187 .name = "M50LPW080",
14188 .bustype = BUS_LPC, /* A/A Mux */
14189 .manufacture_id = ST_ID,
14190 .model_id = ST_M50LPW080,
14191 .total_size = 1024,
14192 .page_size = 0,
14193 .feature_bits = FEATURE_REGISTERMAP,
14194 .tested = TEST_UNTESTED,
14195 .probe = probe_82802ab,
14196 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14197 .block_erasers =
14198 {
14199 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014200 .eraseblocks = { {64 * 1024, 16} },
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014201 .block_erase = erase_block_82802ab,
14202 }
14203 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014204 .unlock = unlock_regspace2_uniform_64k,
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014205 .write = write_82802ab,
14206 .read = read_memmapped,
14207 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
14208 },
14209
14210 {
14211 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014212 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014213 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014214 .manufacture_id = ST_ID,
14215 .model_id = ST_M50LPW116,
14216 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014217 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014218 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014219 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014220 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +000014221 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014222 .block_erasers =
14223 {
14224 {
14225 .eraseblocks = {
14226 {4 * 1024, 16},
14227 {64 * 1024, 30},
14228 {32 * 1024, 1},
14229 {8 * 1024, 2},
14230 {16 * 1024, 1},
14231 },
Sean Nelson28accc22010-03-19 18:47:06 +000014232 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014233 }
14234 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014235 .printlock = printlock_regspace2_block_eraser_0,
14236 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014237 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014238 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014239 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014240 },
14241
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014242 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100014243 .vendor = "Sanyo",
14244 .name = "LE25FU106B",
14245 .bustype = BUS_SPI,
14246 .manufacture_id = SANYO_ID,
14247 .model_id = SANYO_LE25FU106B,
14248 .total_size = 128,
14249 .page_size = 256,
14250 .feature_bits = FEATURE_WRSR_WREN,
14251 .tested = TEST_UNTESTED,
14252 .probe = probe_spi_res2,
14253 .probe_timing = TIMING_ZERO,
14254 .block_erasers =
14255 {
14256 /* FIXME: Is this correct?
14257 {
14258 .eraseblocks = { {2 * 1024, 64} },
14259 .block_erase = spi_block_erase_d7,
14260 },*/
14261 {
14262 .eraseblocks = { {32 * 1024, 4} },
14263 .block_erase = spi_block_erase_d8,
14264 }, {
14265 .eraseblocks = { {128 * 1024, 1} },
14266 .block_erase = spi_block_erase_c7,
14267 }
14268 },
14269 .printlock = spi_prettyprint_status_register_bp1_srwd,
14270 .unlock = spi_disable_blockprotect_bp1_srwd,
14271 .write = spi_chip_write_256,
14272 .read = spi_chip_read,
14273 .voltage = {2300, 3600},
14274 },
14275
14276 {
14277 .vendor = "Sanyo",
14278 .name = "LE25FU206",
14279 .bustype = BUS_SPI,
14280 .manufacture_id = SANYO_ID,
14281 .model_id = SANYO_LE25FU206,
14282 .total_size = 256,
14283 .page_size = 256,
14284 .feature_bits = FEATURE_WRSR_WREN,
14285 .tested = TEST_UNTESTED,
14286 .probe = probe_spi_res2,
14287 .probe_timing = TIMING_ZERO,
14288 .block_erasers =
14289 {
14290 {
14291 .eraseblocks = { {4 * 1024, 64} },
14292 .block_erase = spi_block_erase_d7,
14293 }, {
14294 .eraseblocks = { {64 * 1024, 4} },
14295 .block_erase = spi_block_erase_d8,
14296 }, {
14297 .eraseblocks = { {256 * 1024, 1} },
14298 .block_erase = spi_block_erase_c7,
14299 }
14300 },
14301 .printlock = spi_prettyprint_status_register_bp1_srwd,
14302 .unlock = spi_disable_blockprotect_bp1_srwd,
14303 .write = spi_chip_write_256,
14304 .read = spi_chip_read,
14305 .voltage = {2300, 3600},
14306 },
14307
14308 {
14309 .vendor = "Sanyo",
14310 .name = "LE25FU206A",
14311 .bustype = BUS_SPI,
14312 .manufacture_id = SANYO_ID,
14313 .model_id = SANYO_LE25FU206A,
14314 .total_size = 256,
14315 .page_size = 256,
14316 .tested = TEST_UNTESTED,
14317 .probe = probe_spi_rdid,
14318 .probe_timing = TIMING_ZERO,
14319 .block_erasers =
14320 {
14321 {
14322 .eraseblocks = { {4 * 1024, 64} },
14323 .block_erase = spi_block_erase_20,
14324 }, {
14325 .eraseblocks = { {4 * 1024, 64} },
14326 .block_erase = spi_block_erase_d7,
14327 }, {
14328 .eraseblocks = { {64 * 1024, 4} },
14329 .block_erase = spi_block_erase_d8,
14330 }, {
14331 .eraseblocks = { {256 * 1024, 1} },
14332 .block_erase = spi_block_erase_60,
14333 }, {
14334 .eraseblocks = { {256 * 1024, 1} },
14335 .block_erase = spi_block_erase_c7,
14336 }
14337 },
14338 .printlock = spi_prettyprint_status_register_bp2_srwd,
14339 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
14340 .write = spi_chip_write_256,
14341 .read = spi_chip_read,
14342 .voltage = {2300, 3600},
14343 },
14344
14345 {
14346 .vendor = "Sanyo",
14347 .name = "LE25FU406B",
14348 .bustype = BUS_SPI,
14349 .manufacture_id = SANYO_ID,
14350 .model_id = SANYO_LE25FU406B,
14351 .total_size = 512,
14352 .page_size = 256,
14353 .feature_bits = FEATURE_WRSR_WREN,
14354 .tested = TEST_OK_PREW,
14355 .probe = probe_spi_res2,
14356 .probe_timing = TIMING_ZERO,
14357 .block_erasers =
14358 {
14359 {
14360 .eraseblocks = { {4 * 1024, 128} },
14361 .block_erase = spi_block_erase_d7,
14362 }, {
14363 .eraseblocks = { {64 * 1024, 8} },
14364 .block_erase = spi_block_erase_d8,
14365 }, {
14366 .eraseblocks = { {512 * 1024, 1} },
14367 .block_erase = spi_block_erase_c7,
14368 }
14369 },
14370 .printlock = spi_prettyprint_status_register_bp2_srwd,
14371 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
14372 .write = spi_chip_write_256,
14373 .read = spi_chip_read,
14374 .voltage = {2300, 3600},
14375 },
14376
14377 {
14378 .vendor = "Sanyo",
14379 .name = "LE25FU406C/LE25U40CMC",
14380 .bustype = BUS_SPI,
14381 .manufacture_id = SANYO_ID,
14382 .model_id = SANYO_LE25FU406C,
14383 .total_size = 512,
14384 .page_size = 256,
14385 .feature_bits = FEATURE_WRSR_WREN,
14386 .tested = TEST_OK_PREW,
14387 .probe = probe_spi_rdid,
14388 .probe_timing = TIMING_ZERO,
14389 .block_erasers =
14390 {
14391 {
14392 .eraseblocks = { {4 * 1024, 128} },
14393 .block_erase = spi_block_erase_20,
14394 }, {
14395 .eraseblocks = { {4 * 1024, 128} },
14396 .block_erase = spi_block_erase_d7,
14397 }, {
14398 .eraseblocks = { {64 * 1024, 8} },
14399 .block_erase = spi_block_erase_d8,
14400 }, {
14401 .eraseblocks = { {512 * 1024, 1} },
14402 .block_erase = spi_block_erase_60,
14403 }, {
14404 .eraseblocks = { {512 * 1024, 1} },
14405 .block_erase = spi_block_erase_c7,
14406 }
14407 },
14408 .printlock = spi_prettyprint_status_register_bp2_srwd,
14409 .unlock = spi_disable_blockprotect_bp2_srwd,
14410 .write = spi_chip_write_256,
14411 .read = spi_chip_read, /* Fast read (0x0B), dual read (0x3B) and dual I/O (0xBB) supported */
14412 .voltage = {2300, 3600},
14413 },
14414
14415 {
14416 .vendor = "Sanyo",
14417 .name = "LE25FW106",
14418 .bustype = BUS_SPI,
14419 .manufacture_id = SANYO_ID,
14420 .model_id = SANYO_LE25FW106,
14421 .total_size = 128,
14422 .page_size = 256,
14423 .feature_bits = FEATURE_WRSR_WREN,
14424 .tested = TEST_OK_PREW,
14425 .probe = probe_spi_res2,
14426 .probe_timing = TIMING_ZERO,
14427 .block_erasers =
14428 {
14429 {
14430 .eraseblocks = { {2 * 1024, 64} },
14431 .block_erase = spi_block_erase_d7,
14432 }, {
14433 .eraseblocks = { {32 * 1024, 4} },
14434 .block_erase = spi_block_erase_d8,
14435 }, {
14436 .eraseblocks = { {128 * 1024, 1} },
14437 .block_erase = spi_block_erase_c7,
14438 }
14439 },
14440 .printlock = spi_prettyprint_status_register_bp1_srwd, /* FIXME: Add ERSER error flag. */
14441 .unlock = spi_disable_blockprotect_bp1_srwd,
14442 .write = spi_chip_write_256,
14443 .read = spi_chip_read,
14444 .voltage = {2700, 3600},
14445 },
14446
14447 {
14448 .vendor = "Sanyo",
14449 .name = "LE25FW203A",
14450 .bustype = BUS_SPI,
14451 .manufacture_id = SANYO_ID,
14452 .model_id = SANYO_LE25FW203A,
14453 .total_size = 256,
14454 .page_size = 256,
14455 .tested = TEST_UNTESTED,
14456 .probe = probe_spi_rdid,
14457 .probe_timing = TIMING_ZERO,
14458 .block_erasers =
14459 {
14460 {
14461 .eraseblocks = { {256, 1024} },
14462 .block_erase = spi_block_erase_db,
14463 }, {
14464 .eraseblocks = { {64 * 1024, 4} },
14465 .block_erase = spi_block_erase_d8,
14466 }, {
14467 .eraseblocks = { {256 * 1024, 1} },
14468 .block_erase = spi_block_erase_c7,
14469 }
14470 },
14471 .printlock = spi_prettyprint_status_register_default_welwip,
14472 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
14473 .write = spi_chip_write_256,
14474 .read = spi_chip_read,
14475 .voltage = {2700, 3600},
14476 },
14477
14478 {
14479 .vendor = "Sanyo",
14480 .name = "LE25FW403A",
14481 .bustype = BUS_SPI,
14482 .manufacture_id = SANYO_ID,
14483 .model_id = SANYO_LE25FW403A,
14484 .total_size = 512,
14485 .page_size = 256,
14486 .tested = TEST_UNTESTED,
14487 .probe = probe_spi_rdid,
14488 .probe_timing = TIMING_ZERO,
14489 .block_erasers =
14490 {
14491 {
14492 .eraseblocks = { {256, 2 * 1024} },
14493 .block_erase = spi_block_erase_db,
14494 }, {
14495 .eraseblocks = { {64 * 1024, 8} },
14496 .block_erase = spi_block_erase_d8,
14497 }, {
14498 .eraseblocks = { {512 * 1024, 1} },
14499 .block_erase = spi_block_erase_c7,
14500 }
14501 },
14502 .printlock = spi_prettyprint_status_register_default_welwip,
14503 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
14504 .write = spi_chip_write_256,
14505 .read = spi_chip_read,
14506 .voltage = {2700, 3600},
14507 },
14508
14509 {
14510 .vendor = "Sanyo",
14511 .name = "LE25FW406A",
14512 .bustype = BUS_SPI,
14513 .manufacture_id = SANYO_ID,
14514 .model_id = SANYO_LE25FW406A,
14515 .total_size = 512,
14516 .page_size = 256,
14517 .feature_bits = FEATURE_WRSR_WREN,
14518 .tested = TEST_OK_PREW,
14519 .probe = probe_spi_res2,
14520 .probe_timing = TIMING_ZERO,
14521 .block_erasers =
14522 {
14523 {
14524 .eraseblocks = { {4 * 1024, 128} },
14525 .block_erase = spi_block_erase_d7,
14526 }, {
14527 .eraseblocks = { {64 * 1024, 8} },
14528 .block_erase = spi_block_erase_d8,
14529 }, {
14530 .eraseblocks = { {512 * 1024, 1} },
14531 .block_erase = spi_block_erase_c7,
14532 }
14533 },
14534 .printlock = spi_prettyprint_status_register_plain,
14535 .unlock = spi_disable_blockprotect,
14536 .write = spi_chip_write_256,
14537 .read = spi_chip_read,
14538 .voltage = {2700, 3600},
14539 },
14540
14541 {
14542 .vendor = "Sanyo",
14543 .name = "LE25FW418A",
14544 .bustype = BUS_SPI,
14545 .manufacture_id = SANYO_ID,
14546 .model_id = SANYO_LE25FW418A,
14547 .total_size = 512,
14548 .page_size = 256,
14549 .feature_bits = FEATURE_WRSR_WREN,
14550 .tested = TEST_UNTESTED,
14551 .probe = probe_spi_res2,
14552 .probe_timing = TIMING_ZERO,
14553 .block_erasers =
14554 {
14555 {
14556 .eraseblocks = { {4 * 1024, 128} },
14557 .block_erase = spi_block_erase_d7,
14558 }, {
14559 .eraseblocks = { {64 * 1024, 8} },
14560 .block_erase = spi_block_erase_d8,
14561 }, {
14562 .eraseblocks = { {512 * 1024, 1} },
14563 .block_erase = spi_block_erase_c7,
14564 }
14565 },
14566 .printlock = spi_prettyprint_status_register_bp2_srwd,
14567 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
14568 .write = spi_chip_write_256,
14569 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
14570 .voltage = {2700, 3600},
14571 },
14572
14573 {
14574 .vendor = "Sanyo",
14575 .name = "LE25FW806",
14576 .bustype = BUS_SPI,
14577 .manufacture_id = SANYO_ID,
14578 .model_id = SANYO_LE25FW806,
14579 .total_size = 1024,
14580 .page_size = 256,
14581 .feature_bits = FEATURE_WRSR_WREN,
14582 .tested = TEST_UNTESTED,
14583 .probe = probe_spi_res2,
14584 .probe_timing = TIMING_ZERO,
14585 .block_erasers =
14586 {
14587 {
14588 .eraseblocks = { {4 * 1024, 256} },
14589 .block_erase = spi_block_erase_20,
14590 }, {
14591 .eraseblocks = { {4 * 1024, 256} },
14592 .block_erase = spi_block_erase_d7,
14593 }, {
14594 .eraseblocks = { {64 * 1024, 16} },
14595 .block_erase = spi_block_erase_d8,
14596 }, {
14597 .eraseblocks = { {1024 * 1024, 1} },
14598 .block_erase = spi_block_erase_c7,
14599 }
14600 },
14601 .printlock = spi_prettyprint_status_register_bp2_srwd,
14602 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
14603 .write = spi_chip_write_256,
14604 .read = spi_chip_read,
14605 .voltage = {2700, 3600},
14606 },
14607
14608 {
14609 .vendor = "Sanyo",
14610 .name = "LE25FW808",
14611 .bustype = BUS_SPI,
14612 .manufacture_id = SANYO_ID,
14613 .model_id = SANYO_LE25FW808,
14614 .total_size = 1024,
14615 .page_size = 256,
14616 .feature_bits = FEATURE_WRSR_WREN,
14617 .tested = TEST_UNTESTED,
14618 .probe = probe_spi_res2,
14619 .probe_timing = TIMING_ZERO,
14620 .block_erasers =
14621 {
14622 {
14623 .eraseblocks = { {8 * 1024, 128} },
14624 .block_erase = spi_block_erase_d7,
14625 }, {
14626 .eraseblocks = { {64 * 1024, 16} },
14627 .block_erase = spi_block_erase_d8,
14628 }, {
14629 .eraseblocks = { {1024 * 1024, 1} },
14630 .block_erase = spi_block_erase_c7,
14631 }
14632 },
14633 .printlock = spi_prettyprint_status_register_bp2_srwd,
14634 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
14635 .write = spi_chip_write_256,
14636 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
14637 .voltage = {2700, 3600},
14638 },
14639
14640 {
14641 .vendor = "Sharp",
14642 .name = "LH28F008BJT-BTLZ1",
14643 .bustype = BUS_PARALLEL,
14644 .manufacture_id = SHARP_ID,
14645 .model_id = SHARP_LH28F008BJ__PB,
14646 .total_size = 1024,
14647 .page_size = 64 * 1024,
14648 .tested = TEST_OK_PREW,
14649 .probe = probe_82802ab,
14650 .probe_timing = TIMING_ZERO,
14651 .block_erasers =
14652 {
14653 {
14654 .eraseblocks = {
14655 {8 * 1024, 8},
14656 {64 * 1024, 15}
14657 },
14658 .block_erase = erase_block_82802ab,
14659 }, {
14660 .eraseblocks = { {1024 * 1024, 1} },
14661 .block_erase = erase_sector_49lfxxxc,
14662 }
14663 },
14664 .unlock = unlock_lh28f008bjt,
14665 .write = write_82802ab,
14666 .read = read_memmapped,
14667 .voltage = {2700, 3600},
14668 },
14669
14670 {
14671 .vendor = "Sharp",
14672 .name = "LHF00L04",
14673 .bustype = BUS_FWH, /* A/A Mux */
14674 .manufacture_id = SHARP_ID,
14675 .model_id = SHARP_LHF00L04,
14676 .total_size = 1024,
14677 .page_size = 64 * 1024,
14678 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
14679 .tested = TEST_UNTESTED,
14680 .probe = probe_82802ab,
14681 .probe_timing = TIMING_ZERO,
14682 .block_erasers =
14683 {
14684 {
14685 .eraseblocks = {
14686 {64 * 1024, 15},
14687 {8 * 1024, 8}
14688 },
14689 .block_erase = erase_block_82802ab,
14690 }, {
14691 .eraseblocks = {
14692 {1024 * 1024, 1}
14693 },
14694 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
14695 },
14696 },
14697 .unlock = unlock_regspace2_uniform_64k,
14698 .write = write_82802ab,
14699 .read = read_memmapped,
14700 .voltage = {3000, 3600},
14701 },
14702
14703 {
14704 .vendor = "Spansion",
14705 .name = "S25FL004A",
14706 .bustype = BUS_SPI,
14707 .manufacture_id = SPANSION_ID,
14708 .model_id = SPANSION_S25FL004A,
14709 .total_size = 512,
14710 .page_size = 256,
14711 .feature_bits = FEATURE_WRSR_WREN,
14712 .tested = TEST_UNTESTED,
14713 .probe = probe_spi_rdid,
14714 .probe_timing = TIMING_ZERO,
14715 .block_erasers =
14716 {
14717 {
14718 .eraseblocks = { {64 * 1024, 8} },
14719 .block_erase = spi_block_erase_d8,
14720 }, {
14721 .eraseblocks = { {512 * 1024, 1} },
14722 .block_erase = spi_block_erase_c7,
14723 }
14724 },
14725 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14726 .unlock = spi_disable_blockprotect,
14727 .write = spi_chip_write_256,
14728 .read = spi_chip_read,
14729 .voltage = {2700, 3600},
14730 },
14731
14732 {
14733 .vendor = "Spansion",
14734 .name = "S25FL008A",
14735 .bustype = BUS_SPI,
14736 .manufacture_id = SPANSION_ID,
14737 .model_id = SPANSION_S25FL008A,
14738 .total_size = 1024,
14739 .page_size = 256,
14740 .feature_bits = FEATURE_WRSR_WREN,
14741 .tested = TEST_OK_PRE,
14742 .probe = probe_spi_rdid,
14743 .probe_timing = TIMING_ZERO,
14744 .block_erasers =
14745 {
14746 {
14747 .eraseblocks = { {64 * 1024, 16} },
14748 .block_erase = spi_block_erase_d8,
14749 }, {
14750 .eraseblocks = { {1024 * 1024, 1} },
14751 .block_erase = spi_block_erase_c7,
14752 }
14753 },
14754 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14755 .unlock = spi_disable_blockprotect,
14756 .write = spi_chip_write_256,
14757 .read = spi_chip_read,
14758 .voltage = {2700, 3600},
14759 },
14760
14761 {
14762 .vendor = "Spansion",
14763 .name = "S25FL016A",
14764 .bustype = BUS_SPI,
14765 .manufacture_id = SPANSION_ID,
14766 .model_id = SPANSION_S25FL016A,
14767 .total_size = 2048,
14768 .page_size = 256,
14769 .feature_bits = FEATURE_WRSR_WREN,
14770 .tested = TEST_OK_PREW,
14771 .probe = probe_spi_rdid,
14772 .probe_timing = TIMING_ZERO,
14773 .block_erasers =
14774 {
14775 {
14776 .eraseblocks = { {64 * 1024, 32} },
14777 .block_erase = spi_block_erase_d8,
14778 }, {
14779 .eraseblocks = { {2 * 1024 * 1024, 1} },
14780 .block_erase = spi_block_erase_c7,
14781 }
14782 },
14783 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14784 .unlock = spi_disable_blockprotect,
14785 .write = spi_chip_write_256,
14786 .read = spi_chip_read,
14787 .voltage = {2700, 3600},
14788 },
14789
14790 {
14791 .vendor = "Spansion",
14792 .name = "S25FL032A/P",
14793 .bustype = BUS_SPI,
14794 .manufacture_id = SPANSION_ID,
14795 .model_id = SPANSION_S25FL032A,
14796 .total_size = 4096,
14797 .page_size = 256,
14798 .feature_bits = FEATURE_WRSR_WREN,
14799 .tested = TEST_OK_PREW,
14800 .probe = probe_spi_rdid,
14801 .probe_timing = TIMING_ZERO,
14802 .block_erasers =
14803 {
14804 {
14805 .eraseblocks = { {64 * 1024, 64} },
14806 .block_erase = spi_block_erase_d8,
14807 }, {
14808 .eraseblocks = { {4 * 1024 * 1024, 1} },
14809 .block_erase = spi_block_erase_c7,
14810 }
14811 },
14812 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14813 .unlock = spi_disable_blockprotect,
14814 .write = spi_chip_write_256,
14815 .read = spi_chip_read,
14816 .voltage = {2700, 3600},
14817 },
14818
14819 {
14820 .vendor = "Spansion",
14821 .name = "S25FL064A/P",
14822 .bustype = BUS_SPI,
14823 .manufacture_id = SPANSION_ID,
14824 .model_id = SPANSION_S25FL064A,
14825 .total_size = 8192,
14826 .page_size = 256,
14827 .feature_bits = FEATURE_WRSR_WREN,
14828 .tested = TEST_OK_PREW,
14829 .probe = probe_spi_rdid,
14830 .probe_timing = TIMING_ZERO,
14831 .block_erasers =
14832 {
14833 {
14834 .eraseblocks = { {64 * 1024, 128} },
14835 .block_erase = spi_block_erase_d8,
14836 }, {
14837 .eraseblocks = { {8 * 1024 * 1024, 1} },
14838 .block_erase = spi_block_erase_c7,
14839 }
14840 },
14841 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14842 .unlock = spi_disable_blockprotect,
14843 .write = spi_chip_write_256,
14844 .read = spi_chip_read,
14845 .voltage = {2700, 3600},
14846 },
14847
14848 {
14849 .vendor = "Spansion",
14850 .name = "S25FL116K/S25FL216K", /* FIXME: separate them */
14851 .bustype = BUS_SPI,
14852 .manufacture_id = SPANSION_ID,
14853 .model_id = SPANSION_S25FL216,
14854 .total_size = 2048,
14855 .page_size = 256,
14856 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (S25FL116K only) */
14857 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
14858 .tested = TEST_UNTESTED,
14859 .probe = probe_spi_rdid,
14860 .probe_timing = TIMING_ZERO,
14861 .block_erasers =
14862 {
14863 {
14864 .eraseblocks = { {4 * 1024, 512} },
14865 .block_erase = spi_block_erase_20,
14866 }, {
14867 .eraseblocks = { {64 * 1024, 32} },
14868 .block_erase = spi_block_erase_d8,
14869 }, {
14870 .eraseblocks = { { 2048 * 1024, 1} },
14871 .block_erase = spi_block_erase_60,
14872 }, {
14873 .eraseblocks = { { 2048 * 1024, 1} },
14874 .block_erase = spi_block_erase_c7,
14875 }
14876 },
14877 .printlock = spi_prettyprint_status_register_bp3_srwd,
14878 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
14879 .write = spi_chip_write_256,
14880 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
14881 .voltage = {2700, 3600},
14882 },
14883
14884 {
14885 .vendor = "Spansion",
14886 .name = "S25FL127S-256kB", /* uniform 256kB sectors */
14887 .bustype = BUS_SPI,
14888 .manufacture_id = SPANSION_ID,
14889 .model_id = SPANSION_S25FL128,
14890 .total_size = 16384,
14891 .page_size = 512,
14892 /* supports 4B addressing */
14893 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
14894 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
14895 .tested = TEST_UNTESTED,
14896 .probe = probe_spi_rdid,
14897 .probe_timing = TIMING_ZERO,
14898 .block_erasers =
14899 {
14900 {
14901 .eraseblocks = { {256 * 1024, 64} },
14902 .block_erase = spi_block_erase_d8,
14903 }, {
14904 .eraseblocks = { { 16384 * 1024, 1} },
14905 .block_erase = spi_block_erase_60,
14906 }, {
14907 .eraseblocks = { { 16384 * 1024, 1} },
14908 .block_erase = spi_block_erase_c7,
14909 }
14910 },
14911 .printlock = spi_prettyprint_status_register_bp2_srwd,
14912 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
14913 .write = spi_chip_write_256, /* Multi I/O supported */
14914 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
14915 .voltage = {2700, 3600},
14916 },
14917
14918 {
14919 .vendor = "Spansion",
14920 .name = "S25FL127S-64kB", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
14921 .bustype = BUS_SPI,
14922 .manufacture_id = SPANSION_ID,
14923 .model_id = SPANSION_S25FL128,
14924 .total_size = 16384,
14925 .page_size = 256,
14926 /* supports 4B addressing */
14927 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
14928 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
14929 .tested = TEST_OK_PREW,
14930 /* FIXME: we should distinguish the configuration on probing time like we do for AT45DB chips */
14931 .probe = probe_spi_rdid,
14932 .probe_timing = TIMING_ZERO,
14933 .block_erasers =
14934 {
14935 {
14936 /* This chip supports erasing of 32 so-called "parameter sectors" with
14937 * opcode 0x20 which may be configured to be on top or bottom of the address
14938 * space. Trying to access an address outside these 4kB blocks does have no
14939 * effect on the memory contents, e.g.
14940 .eraseblocks = {
14941 {4 * 1024, 32},
14942 {64 * 1024, 254} // inaccessible
14943 },
14944 .block_erase = spi_block_erase_20,
14945 }, { */
14946 .eraseblocks = { { 64 * 1024, 256} },
14947 .block_erase = spi_block_erase_d8,
14948 }, {
14949 .eraseblocks = { { 16384 * 1024, 1} },
14950 .block_erase = spi_block_erase_60,
14951 }, {
14952 .eraseblocks = { { 16384 * 1024, 1} },
14953 .block_erase = spi_block_erase_c7,
14954 }
14955 },
14956 .printlock = spi_prettyprint_status_register_bp2_srwd,
14957 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
14958 .write = spi_chip_write_256, /* Multi I/O supported */
14959 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
14960 .voltage = {2700, 3600},
14961 },
14962
14963 {
14964 .vendor = "Spansion",
14965 .name = "S25FL128P......0", /* uniform 64 kB sectors */
14966 .bustype = BUS_SPI,
14967 .manufacture_id = SPANSION_ID,
14968 .model_id = SPANSION_S25FL128,
14969 .total_size = 16384,
14970 .page_size = 256,
14971 .feature_bits = FEATURE_WRSR_WREN,
14972 .tested = TEST_OK_PREW,
14973 .probe = probe_spi_rdid,
14974 .probe_timing = TIMING_ZERO,
14975 .block_erasers =
14976 {
14977 {
14978 .eraseblocks = { {64 * 1024, 256} },
14979 .block_erase = spi_block_erase_20,
14980 }, {
14981 .eraseblocks = { {64 * 1024, 256} },
14982 .block_erase = spi_block_erase_d8,
14983 }, {
14984 .eraseblocks = { { 16384 * 1024, 1} },
14985 .block_erase = spi_block_erase_60,
14986 }, {
14987 .eraseblocks = { { 16384 * 1024, 1} },
14988 .block_erase = spi_block_erase_c7,
14989 }
14990 },
14991 .printlock = spi_prettyprint_status_register_bp3_srwd,
14992 .unlock = spi_disable_blockprotect_bp3_srwd,
14993 .write = spi_chip_write_256,
14994 .read = spi_chip_read, /* Fast read (0x0B) supported */
14995 .voltage = {2700, 3600},
14996 },
14997
14998 {
14999 .vendor = "Spansion",
15000 .name = "S25FL128P......1", /* uniform 256kB sectors */
15001 .bustype = BUS_SPI,
15002 .manufacture_id = SPANSION_ID,
15003 .model_id = SPANSION_S25FL128,
15004 .total_size = 16384,
15005 .page_size = 256,
15006 .feature_bits = FEATURE_WRSR_WREN,
15007 .tested = TEST_UNTESTED,
15008 .probe = probe_spi_rdid,
15009 .probe_timing = TIMING_ZERO,
15010 .block_erasers =
15011 {
15012 {
15013 .eraseblocks = { {256 * 1024, 64} },
15014 .block_erase = spi_block_erase_d8,
15015 }, {
15016 .eraseblocks = { { 16384 * 1024, 1} },
15017 .block_erase = spi_block_erase_c7,
15018 }
15019 },
15020 .printlock = spi_prettyprint_status_register_bp2_srwd,
15021 .unlock = spi_disable_blockprotect_bp2_srwd,
15022 .write = spi_chip_write_256,
15023 .read = spi_chip_read, /* Fast read (0x0B) supported */
15024 .voltage = {2700, 3600},
15025 },
15026
15027 {
15028 .vendor = "Spansion",
15029 .name = "S25FL128S......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
15030 .bustype = BUS_SPI,
15031 .manufacture_id = SPANSION_ID,
15032 .model_id = SPANSION_S25FL128,
15033 .total_size = 16384,
15034 .page_size = 256,
15035 /* supports 4B addressing */
15036 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
15037 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15038 .tested = TEST_OK_PREW,
15039 .probe = probe_spi_rdid,
15040 .probe_timing = TIMING_ZERO,
15041 .block_erasers =
15042 {
15043 {
15044 /* This chip supports erasing of the 32 so-called "parameter sectors" with
15045 * opcode 0x20. Trying to access an address outside these 4kB blocks does
15046 * have no effect on the memory contents, but sets a flag in the SR.
15047 .eraseblocks = {
15048 {4 * 1024, 32},
15049 {64 * 1024, 254} // inaccessible
15050 },
15051 .block_erase = spi_block_erase_20,
15052 }, { */
15053 .eraseblocks = { { 64 * 1024, 256} },
15054 .block_erase = spi_block_erase_d8,
15055 }, {
15056 .eraseblocks = { { 16384 * 1024, 1} },
15057 .block_erase = spi_block_erase_60,
15058 }, {
15059 .eraseblocks = { { 16384 * 1024, 1} },
15060 .block_erase = spi_block_erase_c7,
15061 }
15062 },
15063 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
15064 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
15065 .write = spi_chip_write_256, /* Multi I/O supported */
15066 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15067 .voltage = {2700, 3600},
15068 },
15069
15070 {
15071 .vendor = "Spansion",
15072 .name = "S25FL128S......1", /* uniform 256 kB sectors */
15073 .bustype = BUS_SPI,
15074 .manufacture_id = SPANSION_ID,
15075 .model_id = SPANSION_S25FL128,
15076 .total_size = 16384,
15077 .page_size = 512,
15078 /* supports 4B addressing */
15079 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
15080 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15081 .tested = TEST_UNTESTED,
15082 .probe = probe_spi_rdid,
15083 .probe_timing = TIMING_ZERO,
15084 .block_erasers =
15085 {
15086 {
15087 .eraseblocks = { {256 * 1024, 64} },
15088 .block_erase = spi_block_erase_d8,
15089 }, {
15090 .eraseblocks = { { 16384 * 1024, 1} },
15091 .block_erase = spi_block_erase_60,
15092 }, {
15093 .eraseblocks = { { 16384 * 1024, 1} },
15094 .block_erase = spi_block_erase_c7,
15095 }
15096 },
15097 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
15098 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
15099 .write = spi_chip_write_256, /* Multi I/O supported */
15100 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15101 .voltage = {2700, 3600},
15102 },
15103
15104 {
15105 .vendor = "Spansion",
15106 .name = "S25FL129P......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
15107 .bustype = BUS_SPI,
15108 .manufacture_id = SPANSION_ID,
15109 .model_id = SPANSION_S25FL128,
15110 .total_size = 16384,
15111 .page_size = 256,
15112 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
15113 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15114 .tested = TEST_OK_PREW,
15115 .probe = probe_spi_rdid,
15116 .probe_timing = TIMING_ZERO,
15117 .block_erasers =
15118 {
15119 {
15120 /* FIXME: This chip supports erasing of the 32 so-called "parameter sectors" with
15121 * opcode 0x20. Trying to access an address outside these 4kB blocks does have no
15122 * effect on the memory contents, but sets a flag in the SR.
15123 .eraseblocks = {
15124 {4 * 1024, 32},
15125 {64 * 1024, 254} // inaccessible
15126 },
15127 .block_erase = spi_block_erase_20,
15128 }, { */
15129 /* FIXME: Additionally it also supports erase opcode 40h for the respective 2*4 kB pairs
15130 .eraseblocks = {
15131 {8 * 1024, 16},
15132 {64 * 1024, 254} // inaccessible
15133 },
15134 .block_erase = spi_block_erase_40,
15135 }, { */
15136 .eraseblocks = { { 64 * 1024, 256} },
15137 .block_erase = spi_block_erase_d8,
15138 }, {
15139 .eraseblocks = { { 16384 * 1024, 1} },
15140 .block_erase = spi_block_erase_60,
15141 }, {
15142 .eraseblocks = { { 16384 * 1024, 1} },
15143 .block_erase = spi_block_erase_c7,
15144 }
15145 },
15146 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
15147 .unlock = spi_disable_blockprotect_bp2_srwd,
15148 .write = spi_chip_write_256, /* Multi I/O supported */
15149 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15150 .voltage = {2700, 3600},
15151 },
15152
15153 {
15154 .vendor = "Spansion",
15155 .name = "S25FL129P......1", /* uniform 256 kB sectors */
15156 .bustype = BUS_SPI,
15157 .manufacture_id = SPANSION_ID,
15158 .model_id = SPANSION_S25FL128,
15159 .total_size = 16384,
15160 .page_size = 256,
15161 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
15162 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15163 .tested = TEST_UNTESTED,
15164 .probe = probe_spi_rdid,
15165 .probe_timing = TIMING_ZERO,
15166 .block_erasers =
15167 {
15168 {
15169 .eraseblocks = { {256 * 1024, 64} },
15170 .block_erase = spi_block_erase_d8,
15171 }, {
15172 .eraseblocks = { { 16384 * 1024, 1} },
15173 .block_erase = spi_block_erase_60,
15174 }, {
15175 .eraseblocks = { { 16384 * 1024, 1} },
15176 .block_erase = spi_block_erase_c7,
15177 }
15178 },
15179 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
15180 .unlock = spi_disable_blockprotect_bp2_srwd,
15181 .write = spi_chip_write_256, /* Multi I/O supported */
15182 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15183 .voltage = {2700, 3600},
15184 },
15185
15186 {
15187 .vendor = "Spansion",
15188 .name = "S25FL132K",
15189 .bustype = BUS_SPI,
15190 .manufacture_id = SPANSION_ID,
15191 .model_id = SPANSION_S25FL132K,
15192 .total_size = 4096,
15193 .page_size = 256,
15194 /* OTP: 768B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
15195 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15196 .tested = TEST_UNTESTED,
15197 .probe = probe_spi_rdid,
15198 .probe_timing = TIMING_ZERO,
15199 .block_erasers =
15200 {
15201 {
15202 .eraseblocks = { {4 * 1024, 1024} },
15203 .block_erase = spi_block_erase_20,
15204 }, {
15205 .eraseblocks = { {64 * 1024, 64} },
15206 .block_erase = spi_block_erase_d8,
15207 }, {
15208 .eraseblocks = { { 4096 * 1024, 1} },
15209 .block_erase = spi_block_erase_60,
15210 }, {
15211 .eraseblocks = { { 4096 * 1024, 1} },
15212 .block_erase = spi_block_erase_c7,
15213 }
15214 },
15215 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
15216 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
15217 .write = spi_chip_write_256,
15218 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15219 .voltage = {2700, 3600},
15220 },
15221
15222 {
15223 .vendor = "Spansion",
15224 .name = "S25FL164K",
15225 .bustype = BUS_SPI,
15226 .manufacture_id = SPANSION_ID,
15227 .model_id = SPANSION_S25FL164K,
15228 .total_size = 8192,
15229 .page_size = 256,
15230 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
15231 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15232 .tested = TEST_OK_PREW,
15233 .probe = probe_spi_rdid,
15234 .probe_timing = TIMING_ZERO,
15235 .block_erasers =
15236 {
15237 {
15238 .eraseblocks = { {4 * 1024, 2048} },
15239 .block_erase = spi_block_erase_20,
15240 }, {
15241 .eraseblocks = { {64 * 1024, 128} },
15242 .block_erase = spi_block_erase_d8,
15243 }, {
15244 .eraseblocks = { { 8192 * 1024, 1} },
15245 .block_erase = spi_block_erase_60,
15246 }, {
15247 .eraseblocks = { { 8192 * 1024, 1} },
15248 .block_erase = spi_block_erase_c7,
15249 }
15250 },
15251 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
15252 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
15253 .write = spi_chip_write_256,
15254 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15255 .voltage = {2700, 3600},
15256 },
15257
15258 {
15259 .vendor = "Spansion",
15260 .name = "S25FL204K",
15261 .bustype = BUS_SPI,
15262 .manufacture_id = SPANSION_ID,
15263 .model_id = SPANSION_S25FL204,
15264 .total_size = 512,
15265 .page_size = 256,
15266 .feature_bits = FEATURE_WRSR_WREN,
15267 .tested = TEST_OK_PR,
15268 .probe = probe_spi_rdid,
15269 .probe_timing = TIMING_ZERO,
15270 .block_erasers =
15271 {
15272 {
15273 .eraseblocks = { {4 * 1024, 128} },
15274 .block_erase = spi_block_erase_20,
15275 }, {
15276 .eraseblocks = { {64 * 1024, 8} },
15277 .block_erase = spi_block_erase_d8,
15278 }, {
15279 .eraseblocks = { { 512 * 1024, 1} },
15280 .block_erase = spi_block_erase_60,
15281 }, {
15282 .eraseblocks = { { 512 * 1024, 1} },
15283 .block_erase = spi_block_erase_c7,
15284 }
15285 },
15286 .printlock = spi_prettyprint_status_register_bp3_srwd,
15287 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
15288 .write = spi_chip_write_256,
15289 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
15290 .voltage = {2700, 3600},
15291 },
15292
15293 {
15294 .vendor = "Spansion",
15295 .name = "S25FL208K",
15296 .bustype = BUS_SPI,
15297 .manufacture_id = SPANSION_ID,
15298 .model_id = SPANSION_S25FL208,
15299 .total_size = 1024,
15300 .page_size = 256,
15301 .feature_bits = FEATURE_WRSR_WREN,
15302 .tested = TEST_OK_PREW,
15303 .probe = probe_spi_rdid,
15304 .probe_timing = TIMING_ZERO,
15305 .block_erasers =
15306 {
15307 {
15308 .eraseblocks = { {4 * 1024, 256} },
15309 .block_erase = spi_block_erase_20,
15310 }, {
15311 .eraseblocks = { {64 * 1024, 16} },
15312 .block_erase = spi_block_erase_d8,
15313 }, {
15314 .eraseblocks = { { 1024 * 1024, 1} },
15315 .block_erase = spi_block_erase_60,
15316 }, {
15317 .eraseblocks = { { 1024 * 1024, 1} },
15318 .block_erase = spi_block_erase_c7,
15319 }
15320 },
15321 .printlock = spi_prettyprint_status_register_bp3_srwd,
15322 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
15323 .write = spi_chip_write_256,
15324 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
15325 .voltage = {2700, 3600},
15326 },
15327
15328 {
15329 .vendor = "Spansion",
15330 .name = "S25FL256S......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
15331 .bustype = BUS_SPI,
15332 .manufacture_id = SPANSION_ID,
15333 .model_id = SPANSION_S25FL256,
15334 .total_size = 32768,
15335 .page_size = 256,
15336 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
15337 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_EAR7,
15338 .tested = TEST_OK_PREW,
15339 .probe = probe_spi_rdid,
15340 .probe_timing = TIMING_ZERO,
15341 .block_erasers =
15342 {
15343 {
15344 /* This chip supports erasing of the 32 so-called "parameter sectors" with
15345 * opcode 0x20. Trying to access an address outside these 4kB blocks does
15346 * have no effect on the memory contents, but sets a flag in the SR.
15347 .eraseblocks = {
15348 {4 * 1024, 32},
15349 {64 * 1024, 254} // inaccessible
15350 },
15351 .block_erase = spi_block_erase_20,
15352 }, { */
15353 .eraseblocks = { { 64 * 1024, 512} },
15354 .block_erase = spi_block_erase_dc,
15355 }, {
15356 .eraseblocks = { { 64 * 1024, 512} },
15357 .block_erase = spi_block_erase_d8,
15358 }, {
15359 .eraseblocks = { { 32768 * 1024, 1} },
15360 .block_erase = spi_block_erase_60,
15361 }, {
15362 .eraseblocks = { { 32768 * 1024, 1} },
15363 .block_erase = spi_block_erase_c7,
15364 }
15365 },
15366 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
15367 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
15368 .write = spi_chip_write_256, /* Multi I/O supported */
15369 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15370 .voltage = {2700, 3600},
15371 .wrea_override = 0x17,
15372 },
15373
15374 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000015375 .vendor = "SyncMOS/MoselVitelic",
15376 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015377 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015378 .manufacture_id = SYNCMOS_MVC_ID,
15379 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015380 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015381 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000015382 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015383 .tested = TEST_UNTESTED,
15384 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015385 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000015386 .block_erasers =
15387 {
15388 {
15389 .eraseblocks = { {512, 256} },
15390 .block_erase = erase_sector_jedec,
15391 }, {
15392 .eraseblocks = { {128 * 1024, 1} },
15393 .block_erase = erase_chip_block_jedec,
15394 },
15395 },
Sean Nelson35727f72010-01-28 23:55:12 +000015396 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015397 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015398 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000015399 },
15400
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015401 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000015402 .vendor = "SyncMOS/MoselVitelic",
15403 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015404 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015405 .manufacture_id = SYNCMOS_MVC_ID,
15406 .model_id = SM_MVC_29C51001T,
15407 .total_size = 128,
15408 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000015409 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015410 .tested = TEST_UNTESTED,
15411 .probe = probe_jedec,
15412 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
15413 .block_erasers =
15414 {
15415 {
15416 .eraseblocks = { {512, 256} },
15417 .block_erase = erase_sector_jedec,
15418 }, {
15419 .eraseblocks = { {128 * 1024, 1} },
15420 .block_erase = erase_chip_block_jedec,
15421 },
15422 },
15423 .write = write_jedec_1,
15424 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015425 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000015426 },
15427
15428 {
15429 .vendor = "SyncMOS/MoselVitelic",
15430 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015431 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015432 .manufacture_id = SYNCMOS_MVC_ID,
15433 .model_id = SM_MVC_29C51002B,
15434 .total_size = 256,
15435 .page_size = 512,
15436 .feature_bits = FEATURE_EITHER_RESET,
15437 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015438 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015439 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000015440 .block_erasers =
15441 {
15442 {
15443 .eraseblocks = { {512, 512} },
15444 .block_erase = erase_sector_jedec,
15445 }, {
15446 .eraseblocks = { {256 * 1024, 1} },
15447 .block_erase = erase_chip_block_jedec,
15448 },
15449 },
Sean Nelson35727f72010-01-28 23:55:12 +000015450 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015451 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000015452 },
15453
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015454 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000015455 .vendor = "SyncMOS/MoselVitelic",
15456 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015457 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015458 .manufacture_id = SYNCMOS_MVC_ID,
15459 .model_id = SM_MVC_29C51002T,
15460 .total_size = 256,
15461 .page_size = 512,
15462 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000015463 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015464 .probe = probe_jedec,
15465 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
15466 .block_erasers =
15467 {
15468 {
15469 .eraseblocks = { {512, 512} },
15470 .block_erase = erase_sector_jedec,
15471 }, {
15472 .eraseblocks = { {256 * 1024, 1} },
15473 .block_erase = erase_chip_block_jedec,
15474 },
15475 },
15476 .write = write_jedec_1,
15477 .read = read_memmapped,
15478 },
15479
15480 {
15481 .vendor = "SyncMOS/MoselVitelic",
15482 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015483 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015484 .manufacture_id = SYNCMOS_MVC_ID,
15485 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015486 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015487 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000015488 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015489 .tested = TEST_UNTESTED,
15490 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015491 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +000015492 .block_erasers =
15493 {
15494 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000015495 .eraseblocks = { {1024, 512} },
15496 .block_erase = erase_sector_jedec,
15497 }, {
15498 .eraseblocks = { {512 * 1024, 1} },
15499 .block_erase = erase_chip_block_jedec,
15500 },
15501 },
15502 .write = write_jedec_1,
15503 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015504 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000015505 },
15506
15507 {
15508 .vendor = "SyncMOS/MoselVitelic",
15509 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015510 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015511 .manufacture_id = SYNCMOS_MVC_ID,
15512 .model_id = SM_MVC_29C51004T,
15513 .total_size = 512,
15514 .page_size = 1024,
15515 .feature_bits = FEATURE_EITHER_RESET,
15516 .tested = TEST_UNTESTED,
15517 .probe = probe_jedec,
15518 .probe_timing = TIMING_ZERO,
15519 .block_erasers =
15520 {
15521 {
15522 .eraseblocks = { {1024, 512} },
15523 .block_erase = erase_sector_jedec,
15524 }, {
15525 .eraseblocks = { {512 * 1024, 1} },
15526 .block_erase = erase_chip_block_jedec,
15527 },
15528 },
15529 .write = write_jedec_1,
15530 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015531 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000015532 },
15533
15534 {
15535 .vendor = "SyncMOS/MoselVitelic",
15536 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015537 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015538 .manufacture_id = SYNCMOS_MVC_ID,
15539 .model_id = SM_MVC_29C31004B,
15540 .total_size = 512,
15541 .page_size = 1024,
15542 .feature_bits = FEATURE_EITHER_RESET,
15543 .tested = TEST_UNTESTED,
15544 .probe = probe_jedec,
15545 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
15546 .block_erasers =
15547 {
15548 {
15549 .eraseblocks = { {1024, 512} },
15550 .block_erase = erase_sector_jedec,
15551 }, {
15552 .eraseblocks = { {512 * 1024, 1} },
15553 .block_erase = erase_chip_block_jedec,
15554 },
15555 },
15556 .write = write_jedec_1,
15557 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015558 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +000015559 },
15560
15561 {
15562 .vendor = "SyncMOS/MoselVitelic",
15563 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015564 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000015565 .manufacture_id = SYNCMOS_MVC_ID,
15566 .model_id = SM_MVC_29C31004T,
15567 .total_size = 512,
15568 .page_size = 1024,
15569 .feature_bits = FEATURE_EITHER_RESET,
15570 .tested = TEST_UNTESTED,
15571 .probe = probe_jedec,
15572 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
15573 .block_erasers =
15574 {
15575 {
15576 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +000015577 .block_erase = erase_sector_jedec,
15578 }, {
15579 .eraseblocks = { {512 * 1024, 1} },
15580 .block_erase = erase_chip_block_jedec,
15581 },
15582 },
Sean Nelson35727f72010-01-28 23:55:12 +000015583 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015584 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015585 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015586 },
15587
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015588 {
Uwe Hermanna106d152009-05-27 23:17:40 +000015589 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015590 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015591 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015592 .manufacture_id = TI_OLD_ID,
15593 .model_id = TI_TMS29F002RB,
15594 .total_size = 256,
15595 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000015596 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015597 .tested = TEST_UNTESTED,
15598 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015599 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000015600 .block_erasers =
15601 {
15602 {
15603 .eraseblocks = {
15604 {16 * 1024, 1},
15605 {8 * 1024, 2},
15606 {32 * 1024, 1},
15607 {64 * 1024, 3},
15608 },
15609 .block_erase = erase_sector_jedec,
15610 }, {
15611 .eraseblocks = { {256 * 1024, 1} },
15612 .block_erase = erase_chip_block_jedec,
15613 },
15614 },
Sean Nelson35727f72010-01-28 23:55:12 +000015615 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015616 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015617 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015618 },
15619
15620 {
Uwe Hermanna106d152009-05-27 23:17:40 +000015621 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015622 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015623 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015624 .manufacture_id = TI_OLD_ID,
15625 .model_id = TI_TMS29F002RT,
15626 .total_size = 256,
15627 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000015628 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015629 .tested = TEST_UNTESTED,
15630 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015631 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000015632 .block_erasers =
15633 {
15634 {
15635 .eraseblocks = {
15636 {64 * 1024, 3},
15637 {32 * 1024, 1},
15638 {8 * 1024, 2},
15639 {16 * 1024, 1},
15640 },
15641 .block_erase = erase_sector_jedec,
15642 }, {
15643 .eraseblocks = { {256 * 1024, 1} },
15644 .block_erase = erase_chip_block_jedec,
15645 },
15646 },
Sean Nelson35727f72010-01-28 23:55:12 +000015647 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015648 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015649 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000015650 },
15651
15652 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015653 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100015654 .name = "W25P16",
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015655 .bustype = BUS_SPI,
15656 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015657 .model_id = WINBOND_NEX_W25P16,
15658 .total_size = 2048,
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015659 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015660 .feature_bits = FEATURE_WRSR_WREN,
15661 .tested = TEST_UNTESTED,
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015662 .probe = probe_spi_rdid,
15663 .probe_timing = TIMING_ZERO,
15664 .block_erasers =
15665 {
15666 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100015667 .eraseblocks = { {64 * 1024, 32} },
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015668 .block_erase = spi_block_erase_d8,
15669 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100015670 .eraseblocks = { {2048 * 1024, 1} },
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015671 .block_erase = spi_block_erase_c7,
15672 }
15673 },
15674 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15675 .unlock = spi_disable_blockprotect,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015676 .write = spi_chip_write_256,
15677 .read = spi_chip_read, /* Fast read (0x0B) supported */
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000015678 .voltage = {2700, 3600},
15679 },
15680
15681 {
15682 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100015683 .name = "W25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015684 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015685 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015686 .model_id = WINBOND_NEX_W25P32,
15687 .total_size = 4096,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015688 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015689 .feature_bits = FEATURE_WRSR_WREN,
15690 .tested = TEST_UNTESTED,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015691 .probe = probe_spi_rdid,
15692 .probe_timing = TIMING_ZERO,
15693 .block_erasers =
15694 {
15695 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100015696 .eraseblocks = { {64 * 1024, 64} },
15697 .block_erase = spi_block_erase_d8,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015698 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100015699 .eraseblocks = { {4096 * 1024, 1} },
15700 .block_erase = spi_block_erase_c7,
15701 }
15702 },
15703 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15704 .unlock = spi_disable_blockprotect,
15705 .write = spi_chip_write_256,
15706 .read = spi_chip_read, /* Fast read (0x0B) supported */
15707 .voltage = {2700, 3600},
15708 },
15709
15710 {
15711 .vendor = "Winbond",
15712 .name = "W25P80",
15713 .bustype = BUS_SPI,
15714 .manufacture_id = WINBOND_NEX_ID,
15715 .model_id = WINBOND_NEX_W25P80,
15716 .total_size = 1024,
15717 .page_size = 256,
15718 .feature_bits = FEATURE_WRSR_WREN,
15719 .tested = TEST_UNTESTED,
15720 .probe = probe_spi_rdid,
15721 .probe_timing = TIMING_ZERO,
15722 .block_erasers =
15723 {
15724 {
Rudolf Marekce1c7982010-04-20 19:34:31 +000015725 .eraseblocks = { {64 * 1024, 16} },
15726 .block_erase = spi_block_erase_d8,
15727 }, {
15728 .eraseblocks = { {1024 * 1024, 1} },
Rudolf Marekce1c7982010-04-20 19:34:31 +000015729 .block_erase = spi_block_erase_c7,
15730 }
15731 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015732 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015733 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015734 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100015735 .read = spi_chip_read, /* Fast read (0x0B) supported */
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015736 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000015737 },
15738
15739 {
15740 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015741 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015742 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015743 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015744 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015745 .total_size = 16384,
15746 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015747 /* supports SFDP */
15748 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015749 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015750 .tested = TEST_OK_PREW,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015751 .probe = probe_spi_rdid,
15752 .probe_timing = TIMING_ZERO,
15753 .block_erasers =
15754 {
15755 {
15756 .eraseblocks = { {4 * 1024, 4096} },
15757 .block_erase = spi_block_erase_20,
15758 }, {
15759 .eraseblocks = { {32 * 1024, 512} },
15760 .block_erase = spi_block_erase_52,
15761 }, {
15762 .eraseblocks = { {64 * 1024, 256} },
15763 .block_erase = spi_block_erase_d8,
15764 }, {
15765 .eraseblocks = { {16 * 1024 * 1024, 1} },
15766 .block_erase = spi_block_erase_60,
15767 }, {
15768 .eraseblocks = { {16 * 1024 * 1024, 1} },
15769 .block_erase = spi_block_erase_c7,
15770 }
15771 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015772 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000015773 .unlock = spi_disable_blockprotect,
15774 .write = spi_chip_write_256,
15775 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015776 .voltage = {2700, 3600},
15777 },
15778
15779 {
15780 .vendor = "Winbond",
Patrick Rudolph34323492018-10-04 14:59:40 +020015781 .name = "W25Q128.V..M",
15782 .bustype = BUS_SPI,
15783 .manufacture_id = WINBOND_NEX_ID,
15784 .model_id = WINBOND_NEX_W25Q128_V_M,
15785 .total_size = 16384,
15786 .page_size = 256,
15787 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15788 .tested = TEST_OK_PREW,
15789 .probe = probe_spi_rdid,
15790 .probe_timing = TIMING_ZERO,
15791 .block_erasers =
15792 {
15793 {
15794 .eraseblocks = { {4 * 1024, 4096} },
15795 .block_erase = spi_block_erase_20,
15796 }, {
15797 .eraseblocks = { {32 * 1024, 512} },
15798 .block_erase = spi_block_erase_52,
15799 }, {
15800 .eraseblocks = { {64 * 1024, 256} },
15801 .block_erase = spi_block_erase_d8,
15802 }, {
15803 .eraseblocks = { {16 * 1024 * 1024, 1} },
15804 .block_erase = spi_block_erase_60,
15805 }, {
15806 .eraseblocks = { {16 * 1024 * 1024, 1} },
15807 .block_erase = spi_block_erase_c7,
15808 }
15809 },
Alan Greena1fc01d2019-09-23 17:12:44 +100015810 .printlock = spi_prettyprint_status_register_plain,
Patrick Rudolph34323492018-10-04 14:59:40 +020015811 .unlock = spi_disable_blockprotect,
15812 .write = spi_chip_write_256,
15813 .read = spi_chip_read,
15814 .voltage = {2700, 3600},
15815 },
15816
15817 {
15818 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100015819 .name = "W25Q128.W",
15820 .bustype = BUS_SPI,
15821 .manufacture_id = WINBOND_NEX_ID,
15822 .model_id = WINBOND_NEX_W25Q128_W,
15823 .total_size = 16384,
15824 .page_size = 256,
15825 /* supports SFDP */
15826 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15827 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15828 .tested = TEST_OK_PREW,
15829 .probe = probe_spi_rdid,
15830 .probe_timing = TIMING_ZERO,
15831 .block_erasers =
15832 {
15833 {
15834 .eraseblocks = { {4 * 1024, 4096} },
15835 .block_erase = spi_block_erase_20,
15836 }, {
15837 .eraseblocks = { {32 * 1024, 512} },
15838 .block_erase = spi_block_erase_52,
15839 }, {
15840 .eraseblocks = { {64 * 1024, 256} },
15841 .block_erase = spi_block_erase_d8,
15842 }, {
15843 .eraseblocks = { {16 * 1024 * 1024, 1} },
15844 .block_erase = spi_block_erase_60,
15845 }, {
15846 .eraseblocks = { {16 * 1024 * 1024, 1} },
15847 .block_erase = spi_block_erase_c7,
15848 }
15849 },
15850 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15851 .unlock = spi_disable_blockprotect,
15852 .write = spi_chip_write_256,
15853 .read = spi_chip_read,
15854 .voltage = {1650, 1950},
15855 },
15856
15857 {
15858 .vendor = "Winbond",
15859 .name = "W25Q16.V",
15860 .bustype = BUS_SPI,
15861 .manufacture_id = WINBOND_NEX_ID,
15862 .model_id = WINBOND_NEX_W25Q16_V,
15863 .total_size = 2048,
15864 .page_size = 256,
15865 /* supports SFDP */
15866 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15867 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15868 .tested = TEST_OK_PREW,
15869 .probe = probe_spi_rdid,
15870 .probe_timing = TIMING_ZERO,
15871 .block_erasers =
15872 {
15873 {
15874 .eraseblocks = { {4 * 1024, 512} },
15875 .block_erase = spi_block_erase_20,
15876 }, {
15877 .eraseblocks = { {32 * 1024, 64} },
15878 .block_erase = spi_block_erase_52,
15879 }, {
15880 .eraseblocks = { {64 * 1024, 32} },
15881 .block_erase = spi_block_erase_d8,
15882 }, {
15883 .eraseblocks = { {2 * 1024 * 1024, 1} },
15884 .block_erase = spi_block_erase_60,
15885 }, {
15886 .eraseblocks = { {2 * 1024 * 1024, 1} },
15887 .block_erase = spi_block_erase_c7,
15888 }
15889 },
15890 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15891 .unlock = spi_disable_blockprotect,
15892 .write = spi_chip_write_256,
15893 .read = spi_chip_read,
15894 .voltage = {2700, 3600},
15895 },
15896
15897 {
15898 .vendor = "Winbond",
15899 .name = "W25Q16.W",
15900 .bustype = BUS_SPI,
15901 .manufacture_id = WINBOND_NEX_ID,
15902 .model_id = WINBOND_NEX_W25Q16_W,
15903 .total_size = 2048,
15904 .page_size = 256,
15905 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15906 /* QPI enable 0x38, disable 0xFF */
15907 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15908 .tested = TEST_UNTESTED,
15909 .probe = probe_spi_rdid,
15910 .probe_timing = TIMING_ZERO,
15911 .block_erasers =
15912 {
15913 {
15914 .eraseblocks = { {4 * 1024, 512} },
15915 .block_erase = spi_block_erase_20,
15916 }, {
15917 .eraseblocks = { {32 * 1024, 64} },
15918 .block_erase = spi_block_erase_52,
15919 }, {
15920 .eraseblocks = { {64 * 1024, 32} },
15921 .block_erase = spi_block_erase_d8,
15922 }, {
15923 .eraseblocks = { {2 * 1024 * 1024, 1} },
15924 .block_erase = spi_block_erase_60,
15925 }, {
15926 .eraseblocks = { {2 * 1024 * 1024, 1} },
15927 .block_erase = spi_block_erase_c7,
15928 }
15929 },
15930 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15931 .unlock = spi_disable_blockprotect,
15932 .write = spi_chip_write_256,
15933 .read = spi_chip_read,
15934 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15935 },
15936
15937 {
15938 .vendor = "Winbond",
15939 .name = "W25Q20.W",
15940 .bustype = BUS_SPI,
15941 .manufacture_id = WINBOND_NEX_ID,
15942 .model_id = WINBOND_NEX_W25Q20_W,
15943 .total_size = 256,
15944 .page_size = 256,
15945 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15946 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15947 .tested = TEST_UNTESTED,
15948 .probe = probe_spi_rdid,
15949 .probe_timing = TIMING_ZERO,
15950 .block_erasers =
15951 {
15952 {
15953 .eraseblocks = { {4 * 1024, 64} },
15954 .block_erase = spi_block_erase_20,
15955 }, {
15956 .eraseblocks = { {32 * 1024, 8} },
15957 .block_erase = spi_block_erase_52,
15958 }, {
15959 .eraseblocks = { {64 * 1024, 4} },
15960 .block_erase = spi_block_erase_d8,
15961 }, {
15962 .eraseblocks = { {256 * 1024, 1} },
15963 .block_erase = spi_block_erase_60,
15964 }, {
15965 .eraseblocks = { {256 * 1024, 1} },
15966 .block_erase = spi_block_erase_c7,
15967 }
15968 },
15969 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15970 .unlock = spi_disable_blockprotect,
15971 .write = spi_chip_write_256,
15972 .read = spi_chip_read,
15973 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15974 },
15975
15976 {
15977 .vendor = "Winbond",
Boris Baykovaa6c3742016-06-11 18:29:01 +020015978 .name = "W25Q256.V",
15979 .bustype = BUS_SPI,
15980 .manufacture_id = WINBOND_NEX_ID,
15981 .model_id = WINBOND_NEX_W25Q256_V,
15982 .total_size = 32768,
15983 .page_size = 256,
15984 /* supports SFDP */
15985 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15986 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
Nico Huberaac81422017-11-10 22:54:13 +010015987 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_ENTER_WREN
15988 | FEATURE_4BA_EXT_ADDR | FEATURE_4BA_READ | FEATURE_4BA_FAST_READ,
Angel Pons3130cbd2018-09-30 19:32:30 +020015989 .tested = TEST_OK_PREW,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015990 .probe = probe_spi_rdid,
15991 .probe_timing = TIMING_ZERO,
15992 .block_erasers =
15993 {
15994 {
15995 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7a077222017-10-14 18:18:30 +020015996 .block_erase = spi_block_erase_20,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015997 }, {
15998 .eraseblocks = { {32 * 1024, 1024} },
Nico Huber7a077222017-10-14 18:18:30 +020015999 .block_erase = spi_block_erase_52,
Boris Baykovaa6c3742016-06-11 18:29:01 +020016000 }, {
16001 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7a077222017-10-14 18:18:30 +020016002 .block_erase = spi_block_erase_d8,
Boris Baykovaa6c3742016-06-11 18:29:01 +020016003 }, {
16004 .eraseblocks = { {32 * 1024 * 1024, 1} },
16005 .block_erase = spi_block_erase_60,
16006 }, {
16007 .eraseblocks = { {32 * 1024 * 1024, 1} },
16008 .block_erase = spi_block_erase_c7,
16009 }
16010 },
16011 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16012 .unlock = spi_disable_blockprotect,
16013 .write = spi_chip_write_256,
16014 .read = spi_chip_read,
16015 .voltage = {2700, 3600},
16016 },
16017
16018 {
16019 .vendor = "Winbond",
David Hendricks49876792018-10-27 20:19:42 +000016020 .name = "W25Q256JV_M",
16021 .bustype = BUS_SPI,
16022 .manufacture_id = WINBOND_NEX_ID,
16023 .model_id = WINBOND_NEX_W25Q256JV_M,
16024 .total_size = 32768,
16025 .page_size = 256,
16026 /* supports SFDP */
16027 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16028 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
16029 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA,
16030 .tested = TEST_OK_PREW,
16031 .probe = probe_spi_rdid,
16032 .probe_timing = TIMING_ZERO,
16033 .block_erasers =
16034 {
16035 {
16036 .eraseblocks = { {4 * 1024, 8192} },
16037 .block_erase = spi_block_erase_21,
16038 }, {
16039 .eraseblocks = { {4 * 1024, 8192} },
16040 .block_erase = spi_block_erase_20,
16041 }, {
16042 .eraseblocks = { {32 * 1024, 1024} },
16043 .block_erase = spi_block_erase_52,
16044 }, {
16045 .eraseblocks = { {64 * 1024, 512} },
16046 .block_erase = spi_block_erase_dc,
16047 }, {
16048 .eraseblocks = { {64 * 1024, 512} },
16049 .block_erase = spi_block_erase_d8,
16050 }, {
16051 .eraseblocks = { {32 * 1024 * 1024, 1} },
16052 .block_erase = spi_block_erase_60,
16053 }, {
16054 .eraseblocks = { {32 * 1024 * 1024, 1} },
16055 .block_erase = spi_block_erase_c7,
16056 }
16057 },
16058 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16059 .unlock = spi_disable_blockprotect,
16060 .write = spi_chip_write_256,
16061 .read = spi_chip_read,
16062 .voltage = {2700, 3600},
16063 },
16064
16065 {
16066 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016067 .name = "W25Q32.V",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016068 .bustype = BUS_SPI,
16069 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016070 .model_id = WINBOND_NEX_W25Q32_V,
16071 .total_size = 4096,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016072 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016073 /* supports SFDP */
16074 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016075 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016076 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016077 .probe = probe_spi_rdid,
16078 .probe_timing = TIMING_ZERO,
16079 .block_erasers =
16080 {
16081 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016082 .eraseblocks = { {4 * 1024, 1024} },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016083 .block_erase = spi_block_erase_20,
16084 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016085 .eraseblocks = { {32 * 1024, 128} },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016086 .block_erase = spi_block_erase_52,
16087 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016088 .eraseblocks = { {64 * 1024, 64} },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016089 .block_erase = spi_block_erase_d8,
16090 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016091 .eraseblocks = { {4 * 1024 * 1024, 1} },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016092 .block_erase = spi_block_erase_60,
16093 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016094 .eraseblocks = { {4 * 1024 * 1024, 1} },
16095 .block_erase = spi_block_erase_c7,
16096 }
16097 },
16098 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16099 .unlock = spi_disable_blockprotect,
16100 .write = spi_chip_write_256,
16101 .read = spi_chip_read,
16102 .voltage = {2700, 3600},
16103 },
16104
16105 {
16106 .vendor = "Winbond",
16107 .name = "W25Q32.W",
16108 .bustype = BUS_SPI,
16109 .manufacture_id = WINBOND_NEX_ID,
16110 .model_id = WINBOND_NEX_W25Q32_W,
16111 .total_size = 4096,
16112 .page_size = 256,
16113 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16114 /* QPI enable 0x38, disable 0xFF */
16115 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
16116 .tested = TEST_OK_PREW,
16117 .probe = probe_spi_rdid,
16118 .probe_timing = TIMING_ZERO,
16119 .block_erasers =
16120 {
16121 {
16122 .eraseblocks = { {4 * 1024, 1024} },
16123 .block_erase = spi_block_erase_20,
16124 }, {
16125 .eraseblocks = { {32 * 1024, 128} },
16126 .block_erase = spi_block_erase_52,
16127 }, {
16128 .eraseblocks = { {64 * 1024, 64} },
16129 .block_erase = spi_block_erase_d8,
16130 }, {
16131 .eraseblocks = { {4 * 1024 * 1024, 1} },
16132 .block_erase = spi_block_erase_60,
16133 }, {
16134 .eraseblocks = { {4 * 1024 * 1024, 1} },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016135 .block_erase = spi_block_erase_c7,
16136 }
16137 },
16138 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16139 .unlock = spi_disable_blockprotect,
16140 .write = spi_chip_write_256,
16141 .read = spi_chip_read,
16142 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
16143 },
16144
16145 {
16146 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016147 .name = "W25Q40.V",
16148 .bustype = BUS_SPI,
16149 .manufacture_id = WINBOND_NEX_ID,
16150 .model_id = WINBOND_NEX_W25Q40_V,
16151 .total_size = 512,
16152 .page_size = 256,
16153 /* supports SFDP */
16154 /* OTP: 756B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16155 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
16156 .tested = TEST_OK_PREW,
16157 .probe = probe_spi_rdid,
16158 .probe_timing = TIMING_ZERO,
16159 .block_erasers =
16160 {
16161 {
16162 .eraseblocks = { {4 * 1024, 128} },
16163 .block_erase = spi_block_erase_20,
16164 }, {
16165 .eraseblocks = { {32 * 1024, 16} },
16166 .block_erase = spi_block_erase_52,
16167 }, {
16168 .eraseblocks = { {64 * 1024, 8} },
16169 .block_erase = spi_block_erase_d8,
16170 }, {
16171 .eraseblocks = { {512 * 1024, 1} },
16172 .block_erase = spi_block_erase_60,
16173 }, {
16174 .eraseblocks = { {512 * 1024, 1} },
16175 .block_erase = spi_block_erase_c7,
16176 }
16177 },
16178 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16179 .unlock = spi_disable_blockprotect,
16180 .write = spi_chip_write_256, /* Multi I/O supported */
16181 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
16182 .voltage = {2700, 3600},
16183 },
16184
16185 {
16186 .vendor = "Winbond",
Nico Huber25683572018-03-30 13:50:13 +020016187 .name = "W25Q40BW",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016188 .bustype = BUS_SPI,
16189 .manufacture_id = WINBOND_NEX_ID,
Nico Huber25683572018-03-30 13:50:13 +020016190 .model_id = WINBOND_NEX_W25Q40BW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016191 .total_size = 512,
16192 .page_size = 256,
16193 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16194 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Angel Pons3164a0c2018-09-30 20:26:06 +020016195 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016196 .probe = probe_spi_rdid,
16197 .probe_timing = TIMING_ZERO,
16198 .block_erasers =
16199 {
16200 {
16201 .eraseblocks = { {4 * 1024, 128} },
16202 .block_erase = spi_block_erase_20,
16203 }, {
16204 .eraseblocks = { {32 * 1024, 16} },
16205 .block_erase = spi_block_erase_52,
16206 }, {
16207 .eraseblocks = { {64 * 1024, 8} },
16208 .block_erase = spi_block_erase_d8,
16209 }, {
16210 .eraseblocks = { {512 * 1024, 1} },
16211 .block_erase = spi_block_erase_60,
16212 }, {
16213 .eraseblocks = { {512 * 1024, 1} },
16214 .block_erase = spi_block_erase_c7,
16215 }
16216 },
16217 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16218 .unlock = spi_disable_blockprotect,
16219 .write = spi_chip_write_256,
16220 .read = spi_chip_read,
16221 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
16222 },
16223
16224 {
16225 .vendor = "Winbond",
Nico Huber25683572018-03-30 13:50:13 +020016226 .name = "W25Q40EW",
16227 .bustype = BUS_SPI,
16228 .manufacture_id = WINBOND_NEX_ID,
16229 .model_id = WINBOND_NEX_W25Q40EW,
16230 .total_size = 512,
16231 .page_size = 256,
16232 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16233 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Alan Green07b8a172019-09-23 16:47:05 +100016234 .tested = TEST_OK_PREW,
Nico Huber25683572018-03-30 13:50:13 +020016235 .probe = probe_spi_rdid,
16236 .probe_timing = TIMING_ZERO,
16237 .block_erasers =
16238 {
16239 {
16240 .eraseblocks = { {4 * 1024, 128} },
16241 .block_erase = spi_block_erase_20,
16242 }, {
16243 .eraseblocks = { {32 * 1024, 16} },
16244 .block_erase = spi_block_erase_52,
16245 }, {
16246 .eraseblocks = { {64 * 1024, 8} },
16247 .block_erase = spi_block_erase_d8,
16248 }, {
16249 .eraseblocks = { {512 * 1024, 1} },
16250 .block_erase = spi_block_erase_60,
16251 }, {
16252 .eraseblocks = { {512 * 1024, 1} },
16253 .block_erase = spi_block_erase_c7,
16254 }
16255 },
16256 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16257 .unlock = spi_disable_blockprotect,
16258 .write = spi_chip_write_256,
16259 .read = spi_chip_read,
16260 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
16261 },
16262
Stanislav Sedovf5775442018-03-07 14:16:51 -080016263 {
16264 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016265 .name = "W25Q64.V",
Stanislav Sedovf5775442018-03-07 14:16:51 -080016266 .bustype = BUS_SPI,
16267 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016268 .model_id = WINBOND_NEX_W25Q64_V,
16269 .total_size = 8192,
Stanislav Sedovf5775442018-03-07 14:16:51 -080016270 .page_size = 256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016271 /* supports SFDP */
16272 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Stanislav Sedovf5775442018-03-07 14:16:51 -080016273 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
16274 .tested = TEST_OK_PREW,
16275 .probe = probe_spi_rdid,
16276 .probe_timing = TIMING_ZERO,
16277 .block_erasers =
16278 {
16279 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016280 .eraseblocks = { {4 * 1024, 2048} },
Stanislav Sedovf5775442018-03-07 14:16:51 -080016281 .block_erase = spi_block_erase_20,
16282 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016283 .eraseblocks = { {32 * 1024, 256} },
Stanislav Sedovf5775442018-03-07 14:16:51 -080016284 .block_erase = spi_block_erase_52,
16285 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016286 .eraseblocks = { {64 * 1024, 128} },
Stanislav Sedovf5775442018-03-07 14:16:51 -080016287 .block_erase = spi_block_erase_d8,
16288 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016289 .eraseblocks = { {8 * 1024 * 1024, 1} },
Stanislav Sedovf5775442018-03-07 14:16:51 -080016290 .block_erase = spi_block_erase_60,
16291 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016292 .eraseblocks = { {8 * 1024 * 1024, 1} },
Stanislav Sedovf5775442018-03-07 14:16:51 -080016293 .block_erase = spi_block_erase_c7,
16294 }
16295 },
16296 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16297 .unlock = spi_disable_blockprotect,
16298 .write = spi_chip_write_256,
16299 .read = spi_chip_read,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016300 .voltage = {2700, 3600},
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016301 },
16302
16303 {
16304 .vendor = "Winbond",
16305 .name = "W25Q64.W",
16306 .bustype = BUS_SPI,
16307 .manufacture_id = WINBOND_NEX_ID,
16308 .model_id = WINBOND_NEX_W25Q64_W,
16309 .total_size = 8192,
16310 .page_size = 256,
16311 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16312 /* QPI enable 0x38, disable 0xFF */
16313 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner0554ca52013-07-25 22:54:25 +000016314 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000016315 .probe = probe_spi_rdid,
16316 .probe_timing = TIMING_ZERO,
16317 .block_erasers =
16318 {
16319 {
16320 .eraseblocks = { {4 * 1024, 2048} },
16321 .block_erase = spi_block_erase_20,
16322 }, {
16323 .eraseblocks = { {32 * 1024, 256} },
16324 .block_erase = spi_block_erase_52,
16325 }, {
16326 .eraseblocks = { {64 * 1024, 128} },
16327 .block_erase = spi_block_erase_d8,
16328 }, {
16329 .eraseblocks = { {8 * 1024 * 1024, 1} },
16330 .block_erase = spi_block_erase_60,
16331 }, {
16332 .eraseblocks = { {8 * 1024 * 1024, 1} },
16333 .block_erase = spi_block_erase_c7,
16334 }
16335 },
16336 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16337 .unlock = spi_disable_blockprotect,
16338 .write = spi_chip_write_256,
16339 .read = spi_chip_read,
16340 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000016341 },
16342
16343 {
16344 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016345 .name = "W25Q80.V",
Nico Huber70eed9f2017-04-24 22:19:27 +020016346 .bustype = BUS_SPI,
16347 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016348 .model_id = WINBOND_NEX_W25Q80_V,
16349 .total_size = 1024,
Nico Huber70eed9f2017-04-24 22:19:27 +020016350 .page_size = 256,
16351 /* supports SFDP */
16352 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Alan Green1f9cc7d2019-07-01 11:10:45 +100016353 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks48729d32017-12-08 14:44:07 -080016354 .tested = TEST_OK_PREW,
Nico Huber70eed9f2017-04-24 22:19:27 +020016355 .probe = probe_spi_rdid,
16356 .probe_timing = TIMING_ZERO,
16357 .block_erasers =
16358 {
16359 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016360 .eraseblocks = { {4 * 1024, 256} },
Nico Huber70eed9f2017-04-24 22:19:27 +020016361 .block_erase = spi_block_erase_20,
16362 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016363 .eraseblocks = { {32 * 1024, 32} },
Nico Huber70eed9f2017-04-24 22:19:27 +020016364 .block_erase = spi_block_erase_52,
16365 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016366 .eraseblocks = { {64 * 1024, 16} },
Nico Huber70eed9f2017-04-24 22:19:27 +020016367 .block_erase = spi_block_erase_d8,
16368 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016369 .eraseblocks = { {1024 * 1024, 1} },
Nico Huber70eed9f2017-04-24 22:19:27 +020016370 .block_erase = spi_block_erase_60,
16371 }, {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016372 .eraseblocks = { {1024 * 1024, 1} },
Nico Huber70eed9f2017-04-24 22:19:27 +020016373 .block_erase = spi_block_erase_c7,
16374 }
16375 },
16376 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16377 .unlock = spi_disable_blockprotect,
16378 .write = spi_chip_write_256,
16379 .read = spi_chip_read,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016380 .voltage = {2700, 3600},
16381 },
16382
16383 {
16384 .vendor = "Winbond",
16385 .name = "W25Q80BW",
16386 .bustype = BUS_SPI,
16387 .manufacture_id = WINBOND_NEX_ID,
16388 .model_id = WINBOND_NEX_W25Q80BW,
16389 .total_size = 1024,
16390 .page_size = 256,
16391 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16392 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
16393 .tested = TEST_OK_PREW,
16394 .probe = probe_spi_rdid,
16395 .probe_timing = TIMING_ZERO,
16396 .block_erasers =
16397 {
16398 {
16399 .eraseblocks = { {4 * 1024, 256} },
16400 .block_erase = spi_block_erase_20,
16401 }, {
16402 .eraseblocks = { {32 * 1024, 32} },
16403 .block_erase = spi_block_erase_52,
16404 }, {
16405 .eraseblocks = { {64 * 1024, 16} },
16406 .block_erase = spi_block_erase_d8,
16407 }, {
16408 .eraseblocks = { {1 * 1024 * 1024, 1} },
16409 .block_erase = spi_block_erase_60,
16410 }, {
16411 .eraseblocks = { {1 * 1024 * 1024, 1} },
16412 .block_erase = spi_block_erase_c7,
16413 }
16414 },
16415 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16416 .unlock = spi_disable_blockprotect,
16417 .write = spi_chip_write_256,
16418 .read = spi_chip_read,
16419 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
16420 },
16421
16422 {
16423 .vendor = "Winbond",
16424 .name = "W25Q80EW",
16425 .bustype = BUS_SPI,
16426 .manufacture_id = WINBOND_NEX_ID,
16427 .model_id = WINBOND_NEX_W25Q80EW,
16428 .total_size = 1024,
16429 .page_size = 256,
16430 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
16431 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
16432 .tested = TEST_OK_PREW,
16433 .probe = probe_spi_rdid,
16434 .probe_timing = TIMING_ZERO,
16435 .block_erasers =
16436 {
16437 {
16438 .eraseblocks = { {4 * 1024, 256} },
16439 .block_erase = spi_block_erase_20,
16440 }, {
16441 .eraseblocks = { {32 * 1024, 32} },
16442 .block_erase = spi_block_erase_52,
16443 }, {
16444 .eraseblocks = { {64 * 1024, 16} },
16445 .block_erase = spi_block_erase_d8,
16446 }, {
16447 .eraseblocks = { {1 * 1024 * 1024, 1} },
16448 .block_erase = spi_block_erase_60,
16449 }, {
16450 .eraseblocks = { {1 * 1024 * 1024, 1} },
16451 .block_erase = spi_block_erase_c7,
16452 }
16453 },
16454 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16455 .unlock = spi_disable_blockprotect,
16456 .write = spi_chip_write_256,
16457 .read = spi_chip_read,
16458 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
Nico Huber70eed9f2017-04-24 22:19:27 +020016459 },
16460
16461 {
16462 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016463 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016464 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016465 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016466 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016467 .total_size = 128,
16468 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000016469 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000016470 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016471 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016472 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016473 .block_erasers =
16474 {
16475 {
16476 .eraseblocks = { {4 * 1024, 32} },
16477 .block_erase = spi_block_erase_20,
16478 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016479 .eraseblocks = { {64 * 1024, 2} },
16480 .block_erase = spi_block_erase_d8,
16481 }, {
16482 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016483 .block_erase = spi_block_erase_c7,
16484 }
16485 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000016486 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000016487 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000016488 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016489 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016490 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016491 },
16492
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016493 {
16494 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016495 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016496 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000016497 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016498 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000016499 .total_size = 2048,
16500 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000016501 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000016502 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000016503 .probe = probe_spi_rdid,
16504 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016505 .block_erasers =
16506 {
16507 {
16508 .eraseblocks = { {4 * 1024, 512} },
16509 .block_erase = spi_block_erase_20,
16510 }, {
16511 .eraseblocks = { {32 * 1024, 64} },
16512 .block_erase = spi_block_erase_52,
16513 }, {
16514 .eraseblocks = { {64 * 1024, 32} },
16515 .block_erase = spi_block_erase_d8,
16516 }, {
16517 .eraseblocks = { {2 * 1024 * 1024, 1} },
16518 .block_erase = spi_block_erase_60,
16519 }, {
16520 .eraseblocks = { {2 * 1024 * 1024, 1} },
16521 .block_erase = spi_block_erase_c7,
16522 }
16523 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000016524 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000016525 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000016526 .write = spi_chip_write_256,
16527 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016528 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000016529 },
16530
16531 {
16532 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016533 .name = "W25X20",
16534 .bustype = BUS_SPI,
16535 .manufacture_id = WINBOND_NEX_ID,
16536 .model_id = WINBOND_NEX_W25X20,
16537 .total_size = 256,
16538 .page_size = 256,
16539 .feature_bits = FEATURE_WRSR_WREN,
16540 .tested = TEST_OK_PREW,
16541 .probe = probe_spi_rdid,
16542 .probe_timing = TIMING_ZERO,
16543 .block_erasers =
16544 {
16545 {
16546 .eraseblocks = { {4 * 1024, 64} },
16547 .block_erase = spi_block_erase_20,
16548 }, {
16549 .eraseblocks = { {64 * 1024, 4} },
16550 .block_erase = spi_block_erase_d8,
16551 }, {
16552 .eraseblocks = { {256 * 1024, 1} },
16553 .block_erase = spi_block_erase_c7,
16554 }
16555 },
16556 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16557 .unlock = spi_disable_blockprotect,
16558 .write = spi_chip_write_256,
16559 .read = spi_chip_read,
16560 .voltage = {2700, 3600},
16561 },
16562
16563 {
16564 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016565 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016566 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000016567 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016568 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000016569 .total_size = 4096,
16570 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000016571 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000016572 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000016573 .probe = probe_spi_rdid,
16574 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016575 .block_erasers =
16576 {
16577 {
16578 .eraseblocks = { {4 * 1024, 1024} },
16579 .block_erase = spi_block_erase_20,
16580 }, {
16581 .eraseblocks = { {32 * 1024, 128} },
16582 .block_erase = spi_block_erase_52,
16583 }, {
16584 .eraseblocks = { {64 * 1024, 64} },
16585 .block_erase = spi_block_erase_d8,
16586 }, {
16587 .eraseblocks = { {4 * 1024 * 1024, 1} },
16588 .block_erase = spi_block_erase_60,
16589 }, {
16590 .eraseblocks = { {4 * 1024 * 1024, 1} },
16591 .block_erase = spi_block_erase_c7,
16592 }
16593 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000016594 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000016595 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000016596 .write = spi_chip_write_256,
16597 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016598 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000016599 },
16600
16601 {
16602 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016603 .name = "W25X40",
16604 .bustype = BUS_SPI,
16605 .manufacture_id = WINBOND_NEX_ID,
16606 .model_id = WINBOND_NEX_W25X40,
16607 .total_size = 512,
16608 .page_size = 256,
16609 .feature_bits = FEATURE_WRSR_WREN,
16610 .tested = TEST_OK_PREW,
16611 .probe = probe_spi_rdid,
16612 .probe_timing = TIMING_ZERO,
16613 .block_erasers =
16614 {
16615 {
16616 .eraseblocks = { {4 * 1024, 128} },
16617 .block_erase = spi_block_erase_20,
16618 }, {
16619 .eraseblocks = { {64 * 1024, 8} },
16620 .block_erase = spi_block_erase_d8,
16621 }, {
16622 .eraseblocks = { {512 * 1024, 1} },
16623 .block_erase = spi_block_erase_c7,
16624 }
16625 },
16626 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16627 .unlock = spi_disable_blockprotect,
16628 .write = spi_chip_write_256,
16629 .read = spi_chip_read,
16630 .voltage = {2700, 3600},
16631 },
16632
16633 {
16634 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016635 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016636 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000016637 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016638 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000016639 .total_size = 8192,
16640 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000016641 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000016642 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000016643 .probe = probe_spi_rdid,
16644 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016645 .block_erasers =
16646 {
16647 {
16648 .eraseblocks = { {4 * 1024, 2048} },
16649 .block_erase = spi_block_erase_20,
16650 }, {
16651 .eraseblocks = { {32 * 1024, 256} },
16652 .block_erase = spi_block_erase_52,
16653 }, {
16654 .eraseblocks = { {64 * 1024, 128} },
16655 .block_erase = spi_block_erase_d8,
16656 }, {
16657 .eraseblocks = { {8 * 1024 * 1024, 1} },
16658 .block_erase = spi_block_erase_60,
16659 }, {
16660 .eraseblocks = { {8 * 1024 * 1024, 1} },
16661 .block_erase = spi_block_erase_c7,
16662 }
16663 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000016664 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000016665 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000016666 .write = spi_chip_write_256,
16667 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016668 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000016669 },
16670
16671 {
Alan Greenfa3fcd32019-06-27 15:41:50 +100016672 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016673 .name = "W25X80",
Alan Greenfa3fcd32019-06-27 15:41:50 +100016674 .bustype = BUS_SPI,
16675 .manufacture_id = WINBOND_NEX_ID,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016676 .model_id = WINBOND_NEX_W25X80,
Alan Greenfa3fcd32019-06-27 15:41:50 +100016677 .total_size = 1024,
16678 .page_size = 256,
16679 .feature_bits = FEATURE_WRSR_WREN,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016680 .tested = TEST_OK_PREW,
Alan Greenfa3fcd32019-06-27 15:41:50 +100016681 .probe = probe_spi_rdid,
16682 .probe_timing = TIMING_ZERO,
16683 .block_erasers =
David Hendricksc9ee0ed2018-02-11 17:40:53 -080016684 {
16685 {
Alan Green1f9cc7d2019-07-01 11:10:45 +100016686 .eraseblocks = { {4 * 1024, 256} },
16687 .block_erase = spi_block_erase_20,
16688 }, {
David Hendricksc9ee0ed2018-02-11 17:40:53 -080016689 .eraseblocks = { {64 * 1024, 16} },
16690 .block_erase = spi_block_erase_d8,
16691 }, {
16692 .eraseblocks = { {1024 * 1024, 1} },
16693 .block_erase = spi_block_erase_c7,
16694 }
16695 },
Alan Greenfa3fcd32019-06-27 15:41:50 +100016696 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16697 .unlock = spi_disable_blockprotect,
16698 .write = spi_chip_write_256,
Alan Green1f9cc7d2019-07-01 11:10:45 +100016699 .read = spi_chip_read,
Alan Greenfa3fcd32019-06-27 15:41:50 +100016700 .voltage = {2700, 3600},
David Hendricksc9ee0ed2018-02-11 17:40:53 -080016701 },
16702
Alan Greenf29ea362019-06-27 17:14:02 +100016703 /* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
16704 {
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000016705 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016706 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016707 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016708 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016709 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016710 .total_size = 128,
16711 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016712 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000016713 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016714 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000016715 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016716 .block_erasers =
16717 {
16718 {
16719 .eraseblocks = { {128 * 1024, 1} },
16720 .block_erase = erase_chip_block_jedec,
16721 }
16722 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016723 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016724 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000016725 },
16726
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016727 {
16728 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016729 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
16730 .bustype = BUS_PARALLEL,
16731 .manufacture_id = WINBOND_ID,
16732 .model_id = WINBOND_W29C010,
16733 .total_size = 128,
16734 .page_size = 128,
16735 .feature_bits = FEATURE_LONG_RESET,
16736 .tested = TEST_OK_PREW,
16737 .probe = probe_w29ee011,
16738 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
16739 .block_erasers =
16740 {
16741 {
16742 .eraseblocks = { {128 * 1024, 1} },
16743 .block_erase = erase_chip_block_jedec,
16744 }
16745 },
16746 .write = write_jedec,
16747 .read = read_memmapped,
16748 },
16749
16750 {
16751 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016752 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016753 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016754 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016755 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016756 .total_size = 256,
16757 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016758 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016759 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016760 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016761 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016762 .block_erasers =
16763 {
16764 {
16765 .eraseblocks = { {256 * 1024, 1} },
16766 .block_erase = erase_chip_block_jedec,
16767 }
16768 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016769 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016770 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016771 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016772 },
16773
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016774 {
16775 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016776 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016777 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016778 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016779 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016780 .total_size = 512,
16781 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000016782 .feature_bits = FEATURE_LONG_RESET,
16783 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016784 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000016785 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016786 .block_erasers =
16787 {
16788 {
16789 .eraseblocks = { {512 * 1024, 1} },
16790 .block_erase = erase_chip_block_jedec,
16791 }
16792 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016793 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016794 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016795 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016796 },
16797
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016798 {
16799 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016800 .name = "W29C512A/W29EE512",
16801 .bustype = BUS_PARALLEL,
16802 .manufacture_id = WINBOND_ID,
16803 .model_id = WINBOND_W29C512A,
16804 .total_size = 64,
16805 .page_size = 128,
16806 .feature_bits = FEATURE_LONG_RESET,
16807 .tested = TEST_OK_PREW,
16808 .probe = probe_jedec,
16809 .probe_timing = 10,
16810 .block_erasers =
16811 {
16812 {
16813 .eraseblocks = { {64 * 1024, 1} },
16814 .block_erase = erase_chip_block_jedec,
16815 }
16816 },
16817 .write = write_jedec,
16818 .read = read_memmapped,
16819 .voltage = {4500, 5500},
16820 },
16821
16822 {
16823 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016824 .name = "W29GL032CB",
16825 .bustype = BUS_PARALLEL,
16826 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16827 .model_id = WINBOND_W29GL032CB,
16828 .total_size = 4096,
16829 .page_size = 128 * 1024, /* actual page size is 16 */
16830 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16831 .tested = TEST_UNTESTED,
16832 .probe = probe_jedec_29gl,
16833 .probe_timing = TIMING_ZERO,
16834 .block_erasers =
16835 {
16836 {
16837 .eraseblocks = {
16838 {8 * 1024, 8},
16839 {64 * 1024, 63},
16840 },
16841 .block_erase = erase_sector_jedec,
16842 }, {
16843 .eraseblocks = { {4 * 1024 * 1024, 1} },
16844 .block_erase = erase_chip_block_jedec,
16845 },
16846 },
16847 .write = write_jedec_1,
16848 .read = read_memmapped,
16849 .voltage = {2700, 3600},
16850 },
16851
16852 {
16853 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016854 .name = "W29GL032CH/L",
16855 .bustype = BUS_PARALLEL,
16856 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16857 .model_id = WINBOND_W29GL032CHL,
16858 .total_size = 4096,
16859 .page_size = 128 * 1024, /* actual page size is 16 */
16860 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16861 .tested = TEST_UNTESTED,
16862 .probe = probe_jedec_29gl,
16863 .probe_timing = TIMING_ZERO,
16864 .block_erasers =
16865 {
16866 {
16867 .eraseblocks = { {64 * 1024, 64} },
16868 .block_erase = erase_sector_jedec,
16869 }, {
16870 .eraseblocks = { {4 * 1024 * 1024, 1} },
16871 .block_erase = erase_chip_block_jedec,
16872 },
16873 },
16874 .write = write_jedec_1,
16875 .read = read_memmapped,
16876 .voltage = {2700, 3600},
16877 },
16878
16879 {
16880 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016881 .name = "W29GL032CT",
16882 .bustype = BUS_PARALLEL,
16883 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16884 .model_id = WINBOND_W29GL032CT,
16885 .total_size = 4096,
16886 .page_size = 128 * 1024, /* actual page size is 16 */
16887 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16888 .tested = TEST_UNTESTED,
16889 .probe = probe_jedec_29gl,
16890 .probe_timing = TIMING_ZERO,
16891 .block_erasers =
16892 {
16893 {
16894 .eraseblocks = {
16895 {64 * 1024, 63},
16896 {8 * 1024, 8},
16897 },
16898 .block_erase = erase_sector_jedec,
16899 }, {
16900 .eraseblocks = { {4 * 1024 * 1024, 1} },
16901 .block_erase = erase_chip_block_jedec,
16902 },
16903 },
16904 .write = write_jedec_1,
16905 .read = read_memmapped,
16906 .voltage = {2700, 3600},
16907 },
16908
16909 {
16910 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016911 .name = "W29GL064CB",
16912 .bustype = BUS_PARALLEL,
16913 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16914 .model_id = WINBOND_W29GL064CB,
16915 .total_size = 8192,
16916 .page_size = 128 * 1024, /* actual page size is 16 */
16917 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16918 .tested = TEST_UNTESTED,
16919 .probe = probe_jedec_29gl,
16920 .probe_timing = TIMING_ZERO,
16921 .block_erasers =
16922 {
16923 {
16924 .eraseblocks = {
16925 {8 * 1024, 8},
16926 {64 * 1024, 127},
16927 },
16928 .block_erase = erase_sector_jedec,
16929 }, {
16930 .eraseblocks = { {8 * 1024 * 1024, 1} },
16931 .block_erase = erase_chip_block_jedec,
16932 },
16933 },
16934 .write = write_jedec_1,
16935 .read = read_memmapped,
16936 .voltage = {2700, 3600},
16937 },
16938
16939 {
16940 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100016941 .name = "W29GL064CH/L",
16942 .bustype = BUS_PARALLEL,
16943 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16944 .model_id = WINBOND_W29GL064CHL,
16945 .total_size = 8192,
16946 .page_size = 128 * 1024, /* actual page size is 16 */
16947 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16948 .tested = TEST_UNTESTED,
16949 .probe = probe_jedec_29gl,
16950 .probe_timing = TIMING_ZERO,
16951 .block_erasers =
16952 {
16953 {
16954 .eraseblocks = { {64 * 1024, 128} },
16955 .block_erase = erase_sector_jedec,
16956 }, {
16957 .eraseblocks = { {8 * 1024 * 1024, 1} },
16958 .block_erase = erase_chip_block_jedec,
16959 },
16960 },
16961 .write = write_jedec_1,
16962 .read = read_memmapped,
16963 .voltage = {2700, 3600},
16964 },
16965
16966 {
16967 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016968 .name = "W29GL064CT",
16969 .bustype = BUS_PARALLEL,
16970 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16971 .model_id = WINBOND_W29GL064CT,
16972 .total_size = 8192,
16973 .page_size = 128 * 1024, /* actual page size is 16 */
16974 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16975 .tested = TEST_UNTESTED,
16976 .probe = probe_jedec_29gl,
16977 .probe_timing = TIMING_ZERO,
16978 .block_erasers =
16979 {
16980 {
16981 .eraseblocks = {
16982 {64 * 1024, 127},
16983 {8 * 1024, 8},
16984 },
16985 .block_erase = erase_sector_jedec,
16986 }, {
16987 .eraseblocks = { {8 * 1024 * 1024, 1} },
16988 .block_erase = erase_chip_block_jedec,
16989 },
16990 },
16991 .write = write_jedec_1,
16992 .read = read_memmapped,
16993 .voltage = {2700, 3600},
16994 },
16995
16996 {
16997 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016998 .name = "W29GL128C",
16999 .bustype = BUS_PARALLEL,
17000 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
17001 .model_id = WINBOND_W29GL128CHL,
17002 .total_size = 16384,
17003 .page_size = 128 * 1024, /* actual page size is 16 */
17004 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
17005 .tested = TEST_UNTESTED,
17006 .probe = probe_jedec_29gl,
17007 .probe_timing = TIMING_ZERO,
17008 .block_erasers =
17009 {
17010 {
17011 .eraseblocks = { {128 * 1024, 128} },
17012 .block_erase = erase_sector_jedec,
17013 }, {
17014 .eraseblocks = { {16 * 1024 * 1024, 1} },
17015 .block_erase = erase_chip_block_jedec,
17016 },
17017 },
17018 .write = write_jedec_1,
17019 .read = read_memmapped,
17020 .voltage = {2700, 3600},
17021 },
17022
17023 {
17024 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000017025 .name = "W39F010",
17026 .bustype = BUS_PARALLEL,
17027 .manufacture_id = WINBOND_ID,
17028 .model_id = WINBOND_W39F010,
17029 .total_size = 128,
17030 .page_size = 4 * 1024,
17031 .feature_bits = FEATURE_EITHER_RESET,
17032 .tested = TEST_OK_PREW,
17033 .probe = probe_jedec,
17034 .probe_timing = 10,
17035 .block_erasers =
17036 {
17037 {
17038 .eraseblocks = { {4 * 1024, 32} },
17039 .block_erase = erase_block_jedec,
17040 }, {
17041 .eraseblocks = { {128 * 1024, 1} },
17042 .block_erase = erase_chip_block_jedec,
17043 }
17044 },
17045 .printlock = printlock_w39f010,
17046 .write = write_jedec_1,
17047 .read = read_memmapped,
17048 .voltage = {4500, 5500},
17049 },
17050
17051 {
17052 .vendor = "Winbond",
17053 .name = "W39L010",
17054 .bustype = BUS_PARALLEL,
17055 .manufacture_id = WINBOND_ID,
17056 .model_id = WINBOND_W39L010,
17057 .total_size = 128,
17058 .page_size = 4 * 1024,
17059 .feature_bits = FEATURE_EITHER_RESET,
17060 .tested = TEST_UNTESTED,
17061 .probe = probe_jedec,
17062 .probe_timing = 10,
17063 .block_erasers =
17064 {
17065 {
17066 .eraseblocks = { {4 * 1024, 32} },
17067 .block_erase = erase_block_jedec,
17068 }, {
17069 .eraseblocks = { {128 * 1024, 1} },
17070 .block_erase = erase_chip_block_jedec,
17071 }
17072 },
17073 .printlock = printlock_w39l010,
17074 .write = write_jedec_1,
17075 .read = read_memmapped,
17076 .voltage = {3000, 3600},
17077 },
17078
17079 {
17080 .vendor = "Winbond",
17081 .name = "W39L020",
17082 .bustype = BUS_PARALLEL,
17083 .manufacture_id = WINBOND_ID,
17084 .model_id = WINBOND_W39L020,
17085 .total_size = 256,
17086 .page_size = 4 * 1024,
17087 .feature_bits = FEATURE_EITHER_RESET,
17088 .tested = TEST_UNTESTED,
17089 .probe = probe_jedec,
17090 .probe_timing = 10,
17091 .block_erasers =
17092 {
17093 {
17094 .eraseblocks = { {4 * 1024, 64} },
17095 .block_erase = erase_block_jedec,
17096 }, {
17097 .eraseblocks = { {64 * 1024, 4} },
17098 .block_erase = erase_sector_jedec,
17099 }, {
17100 .eraseblocks = { {256 * 1024, 1} },
17101 .block_erase = erase_chip_block_jedec,
17102 }
17103 },
17104 .printlock = printlock_w39l020,
17105 .write = write_jedec_1,
17106 .read = read_memmapped,
17107 .voltage = {3000, 3600},
17108 },
17109
17110 {
17111 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000017112 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017113 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000017114 .manufacture_id = WINBOND_ID,
17115 .model_id = WINBOND_W39L040,
17116 .total_size = 512,
17117 .page_size = 64 * 1024,
17118 .feature_bits = FEATURE_EITHER_RESET,
17119 .tested = TEST_OK_PR,
17120 .probe = probe_jedec,
17121 .probe_timing = 10,
17122 .block_erasers =
17123 {
17124 {
17125 .eraseblocks = { {4 * 1024, 128} },
17126 .block_erase = erase_block_jedec,
17127 }, {
17128 .eraseblocks = { {64 * 1024, 8} },
17129 .block_erase = erase_sector_jedec,
17130 }, {
17131 .eraseblocks = { {512 * 1024, 1} },
17132 .block_erase = erase_chip_block_jedec,
17133 }
17134 },
17135 .printlock = printlock_w39l040,
17136 .write = write_jedec_1,
17137 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000017138 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000017139 },
17140
17141 {
17142 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017143 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017144 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017145 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017146 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017147 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000017148 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000017149 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000017150 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017151 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000017152 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017153 .block_erasers =
17154 {
17155 {
17156 .eraseblocks = { {64 * 1024, 8} },
17157 .block_erase = erase_sector_jedec,
17158 }, {
17159 .eraseblocks = { {512 * 1024, 1} },
17160 .block_erase = erase_chip_block_jedec,
17161 }
17162 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017163 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000017164 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017165 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017166 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017167 },
17168
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017169 {
17170 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017171 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017172 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017173 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017174 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017175 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000017176 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000017177 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000017178 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017179 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000017180 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017181 .block_erasers =
17182 {
17183 {
17184 .eraseblocks = { {64 * 1024, 8} },
17185 .block_erase = erase_sector_jedec,
17186 }, {
17187 .eraseblocks = { {512 * 1024, 1} },
17188 .block_erase = erase_chip_block_jedec,
17189 }
17190 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017191 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000017192 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017193 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017194 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017195 },
17196
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017197 {
17198 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017199 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017200 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017201 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017202 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017203 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000017204 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000017205 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000017206 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000017207 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017208 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017209 .block_erasers =
17210 {
17211 {
17212 .eraseblocks = { {64 * 1024, 8} },
17213 .block_erase = erase_sector_jedec,
17214 }, {
17215 .eraseblocks = { {512 * 1024, 1} },
17216 .block_erase = erase_chip_block_jedec,
17217 }
17218 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000017219 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000017220 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017221 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017222 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017223 },
17224
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017225 {
17226 .vendor = "Winbond",
17227 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017228 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017229 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017230 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017231 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000017232 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000017233 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000017234 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017235 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000017236 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017237 .block_erasers =
17238 {
17239 {
17240 .eraseblocks = { {4 * 1024, 128} },
17241 .block_erase = erase_block_jedec,
17242 }, {
17243 .eraseblocks = { {64 * 1024, 8} },
17244 .block_erase = erase_sector_jedec,
17245 }, {
17246 .eraseblocks = { {512 * 1024, 1} },
17247 .block_erase = erase_chip_block_jedec,
17248 }
17249 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017250 .printlock = printlock_w39v040fa,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000017251 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000017252 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017253 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017254 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017255 },
17256
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017257 {
17258 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017259 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017260 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017261 .manufacture_id = WINBOND_ID,
17262 .model_id = WINBOND_W39V040B,
17263 .total_size = 512,
17264 .page_size = 64 * 1024,
17265 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner0be072c2016-03-13 15:16:30 +000017266 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017267 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000017268 .probe_timing = 10,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017269 .block_erasers =
17270 {
17271 {
17272 .eraseblocks = { {64 * 1024, 8} },
17273 .block_erase = erase_sector_jedec,
17274 }, {
17275 .eraseblocks = { {512 * 1024, 1} },
17276 .block_erase = erase_chip_block_jedec,
17277 }
17278 },
17279 .printlock = printlock_w39v040fb,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000017280 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017281 .write = write_jedec_1,
17282 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000017283 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017284 },
17285
17286 {
17287 .vendor = "Winbond",
17288 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017289 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017290 .manufacture_id = WINBOND_ID,
17291 .model_id = WINBOND_W39V040C,
17292 .total_size = 512,
17293 .page_size = 64 * 1024,
17294 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000017295 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017296 .probe = probe_jedec,
17297 .probe_timing = 10,
17298 .block_erasers =
17299 {
17300 {
17301 .eraseblocks = { {64 * 1024, 8} },
17302 .block_erase = erase_sector_jedec,
17303 }, {
17304 .eraseblocks = { {512 * 1024, 1} },
17305 .block_erase = erase_chip_block_jedec,
17306 }
17307 },
17308 .printlock = printlock_w39v040fc,
17309 .write = write_jedec_1,
17310 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000017311 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017312 },
17313
17314 {
17315 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017316 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017317 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017318 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017319 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017320 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000017321 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000017322 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000017323 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017324 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000017325 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017326 .block_erasers =
17327 {
17328 {
17329 .eraseblocks = { {64 * 1024, 16} },
17330 .block_erase = erase_sector_jedec,
17331 }, {
17332 .eraseblocks = { {1024 * 1024, 1} },
17333 .block_erase = erase_chip_block_jedec,
17334 }
17335 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000017336 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000017337 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017338 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017339 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017340 },
17341
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017342 {
17343 .vendor = "Winbond",
Alan Green1f9cc7d2019-07-01 11:10:45 +100017344 .name = "W39V080FA",
17345 .bustype = BUS_FWH,
17346 .manufacture_id = WINBOND_ID,
17347 .model_id = WINBOND_W39V080FA,
17348 .total_size = 1024,
17349 .page_size = 64 * 1024,
17350 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
17351 .tested = TEST_OK_PREW,
17352 .probe = probe_jedec,
17353 .probe_timing = 10,
17354 .block_erasers =
17355 {
17356 {
17357 .eraseblocks = { {64 * 1024, 16} },
17358 .block_erase = erase_sector_jedec,
17359 }, {
17360 .eraseblocks = { {1024 * 1024, 1} },
17361 .block_erase = erase_chip_block_jedec,
17362 }
17363 },
17364 .printlock = printlock_w39v080fa,
17365 .unlock = unlock_regspace2_uniform_64k,
17366 .write = write_jedec_1,
17367 .read = read_memmapped,
17368 .voltage = {3000, 3600}, /* Also has 12V fast program */
17369 },
17370
17371 {
17372 .vendor = "Winbond",
17373 .name = "W39V080FA (dual mode)",
17374 .bustype = BUS_FWH,
17375 .manufacture_id = WINBOND_ID,
17376 .model_id = WINBOND_W39V080FA_DM,
17377 .total_size = 512,
17378 .page_size = 64 * 1024,
17379 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
17380 .tested = TEST_UNTESTED,
17381 .probe = probe_jedec,
17382 .probe_timing = 10,
17383 .block_erasers =
17384 {
17385 {
17386 .eraseblocks = { {64 * 1024, 8} },
17387 .block_erase = erase_sector_jedec,
17388 }, {
17389 .eraseblocks = { {512 * 1024, 1} },
17390 .block_erase = erase_chip_block_jedec,
17391 }
17392 },
17393 .printlock = printlock_w39v080fa_dual,
17394 .write = write_jedec_1,
17395 .read = read_memmapped,
17396 .voltage = {3000, 3600}, /* Also has 12V fast program */
17397 },
17398
17399 {
17400 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000017401 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017402 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017403 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017404 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017405 .total_size = 256,
17406 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000017407 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000017408 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017409 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000017410 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017411 .block_erasers =
17412 {
17413 {
17414 .eraseblocks = {
17415 {128 * 1024, 1},
17416 {96 * 1024, 1},
17417 {8 * 1024, 2},
17418 {16 * 1024, 1},
17419 },
17420 .block_erase = erase_sector_jedec,
17421 }, {
17422 .eraseblocks = { {256 * 1024, 1} },
17423 .block_erase = erase_chip_block_jedec,
17424 }
17425 },
Sean Nelson35727f72010-01-28 23:55:12 +000017426 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017427 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017428 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000017429 },
17430
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017431 {
17432 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000017433 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017434 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000017435 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017436 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000017437 .total_size = 256,
17438 .page_size = 128,
17439 .feature_bits = FEATURE_EITHER_RESET,
17440 .tested = TEST_OK_PROBE,
17441 .probe = probe_jedec,
17442 .probe_timing = 10,
17443 .block_erasers =
17444 {
17445 {
17446 .eraseblocks = { {256 * 1024, 1} },
17447 .block_erase = erase_chip_block_jedec,
17448 }
17449 },
17450 .write = write_jedec_1,
17451 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017452 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000017453 },
17454
17455 {
17456 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017457 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017458 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017459 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017460 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017461 .total_size = 256,
17462 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000017463 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000017464 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017465 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000017466 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017467 .block_erasers =
17468 {
17469 {
17470 .eraseblocks = {
17471 {64 * 1024, 3},
17472 {32 * 1024, 1},
17473 {8 * 1024, 2},
17474 {16 * 1024, 1},
17475 },
17476 .block_erase = erase_sector_jedec,
17477 }, {
17478 .eraseblocks = { {256 * 1024, 1} },
17479 .block_erase = erase_chip_block_jedec,
17480 }
17481 },
Sean Nelson35727f72010-01-28 23:55:12 +000017482 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017483 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017484 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017485 },
17486
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017487 {
17488 .vendor = "Winbond",
17489 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017490 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017491 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000017492 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017493 .total_size = 256,
17494 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000017495 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000017496 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017497 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000017498 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000017499 .block_erasers =
17500 {
17501 {
17502 .eraseblocks = {
17503 {64 * 1024, 3},
17504 {32 * 1024, 1},
17505 {8 * 1024, 2},
17506 {16 * 1024, 1},
17507 },
17508 .block_erase = erase_sector_jedec,
17509 }, {
17510 .eraseblocks = { {256 * 1024, 1} },
17511 .block_erase = erase_chip_block_jedec,
17512 }
17513 },
Sean Nelson35727f72010-01-28 23:55:12 +000017514 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017515 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000017516 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000017517 },
17518
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017519 {
Alan Greenfa3fcd32019-06-27 15:41:50 +100017520 .vendor = "Zetta Device",
17521 .name = "ZD25D20",
17522 .bustype = BUS_SPI,
17523 .manufacture_id = ZETTADEVICE_ID,
17524 .model_id = ZETTADEVICE_ZD25D20,
17525 .total_size = 256,
17526 .page_size = 256,
17527 .feature_bits = FEATURE_WRSR_WREN,
17528 .tested = TEST_UNTESTED,
17529 .probe = probe_spi_rdid,
17530 .probe_timing = TIMING_ZERO,
17531 .block_erasers =
David Hendricksa72d5a92018-02-11 17:58:44 -080017532 {
17533 {
17534 .eraseblocks = { {4 * 1024, 64} },
17535 .block_erase = spi_block_erase_20,
17536 }, {
17537 .eraseblocks = { {32 * 1024, 8} },
17538 .block_erase = spi_block_erase_52,
17539 }, {
17540 .eraseblocks = { {64 * 1024, 4} },
17541 .block_erase = spi_block_erase_d8,
17542 }, {
17543 .eraseblocks = { {256 * 1024, 1} },
17544 .block_erase = spi_block_erase_60,
17545 }, {
17546 .eraseblocks = { {256 * 1024, 1} },
17547 .block_erase = spi_block_erase_c7,
17548 }
17549 },
Alan Greenfa3fcd32019-06-27 15:41:50 +100017550 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
17551 .unlock = spi_disable_blockprotect,
17552 .write = spi_chip_write_256,
17553 .read = spi_chip_read,
17554 .voltage = {2700, 3600},
David Hendricksa72d5a92018-02-11 17:58:44 -080017555 },
17556
17557 {
Alan Greenfa3fcd32019-06-27 15:41:50 +100017558 .vendor = "Zetta Device",
17559 .name = "ZD25D40",
17560 .bustype = BUS_SPI,
17561 .manufacture_id = ZETTADEVICE_ID,
17562 .model_id = ZETTADEVICE_ZD25D40,
17563 .total_size = 512,
17564 .page_size = 256,
17565 .feature_bits = FEATURE_WRSR_WREN,
17566 .tested = TEST_UNTESTED,
17567 .probe = probe_spi_rdid,
17568 .probe_timing = TIMING_ZERO,
17569 .block_erasers =
nybashcbb46e22018-02-11 17:53:49 -080017570 {
17571 {
17572 .eraseblocks = { {4 * 1024, 128} },
17573 .block_erase = spi_block_erase_20,
17574 }, {
17575 .eraseblocks = { {32 * 1024, 16} },
17576 .block_erase = spi_block_erase_52,
17577 }, {
17578 .eraseblocks = { {64 * 1024, 8} },
17579 .block_erase = spi_block_erase_d8,
17580 }, {
17581 .eraseblocks = { {512 * 1024, 1} },
17582 .block_erase = spi_block_erase_60,
17583 }, {
17584 .eraseblocks = { {512 * 1024, 1} },
17585 .block_erase = spi_block_erase_c7,
17586 }
17587 },
Alan Greenfa3fcd32019-06-27 15:41:50 +100017588 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
17589 .unlock = spi_disable_blockprotect,
17590 .write = spi_chip_write_256,
17591 .read = spi_chip_read,
17592 .voltage = {2700, 3600},
nybashcbb46e22018-02-11 17:53:49 -080017593 },
17594
Stefan Taunerac1b4c82012-02-17 14:51:04 +000017595 {
Alan Greendd592202019-08-23 10:11:37 +100017596 .vendor = "Unknown",
17597 .name = "SFDP-capable chip",
17598 .bustype = BUS_SPI,
17599 .manufacture_id = GENERIC_MANUF_ID,
17600 .model_id = SFDP_DEVICE_ID,
17601 .total_size = 0, /* set by probing function */
17602 .page_size = 0, /* set by probing function */
17603 .feature_bits = 0, /* set by probing function */
17604 /* We present our own "report this" text hence we do not */
17605 /* want the default "This flash part has status UNTESTED..." */
17606 /* text to be printed. */
17607 .tested = TEST_OK_PREW,
17608 .probe = probe_spi_sfdp,
17609 .block_erasers = {}, /* set by probing function */
17610 .unlock = spi_disable_blockprotect, /* is this safe? */
17611 .write = NULL, /* set by probing function */
17612 .read = spi_chip_read,
17613 /* FIXME: some vendor extensions define this */
17614 .voltage = {0},
17615 },
17616
17617 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000017618 .vendor = "Programmer",
17619 .name = "Opaque flash chip",
17620 .bustype = BUS_PROG,
17621 .manufacture_id = PROGMANUF_ID,
17622 .model_id = PROGDEV_ID,
17623 .total_size = 0,
17624 .page_size = 256,
17625 /* probe is assumed to work, rest will be filled in by probe */
17626 .tested = TEST_OK_PROBE,
17627 .probe = probe_opaque,
17628 /* eraseblock sizes will be set by the probing function */
17629 .block_erasers =
17630 {
17631 {
17632 .block_erase = erase_opaque,
17633 }
17634 },
17635 .write = write_opaque,
17636 .read = read_opaque,
17637 },
17638
17639 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000017640 .vendor = "AMIC",
17641 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017642 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000017643 .manufacture_id = AMIC_ID,
17644 .model_id = GENERIC_DEVICE_ID,
17645 .total_size = 0,
17646 .page_size = 256,
17647 .tested = TEST_BAD_PREW,
17648 .probe = probe_spi_rdid4,
17649 .probe_timing = TIMING_ZERO,
17650 .write = NULL,
17651 .read = NULL,
17652 },
17653
17654 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017655 .vendor = "Atmel",
17656 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017657 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017658 .manufacture_id = ATMEL_ID,
17659 .model_id = GENERIC_DEVICE_ID,
17660 .total_size = 0,
17661 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017662 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017663 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017664 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017665 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017666 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017667 },
17668
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017669 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000017670 .vendor = "Eon",
17671 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017672 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017673 .manufacture_id = EON_ID_NOPREFIX,
17674 .model_id = GENERIC_DEVICE_ID,
17675 .total_size = 0,
17676 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017677 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017678 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017679 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017680 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017681 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017682 },
17683
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017684 {
17685 .vendor = "Macronix",
17686 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017687 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000017688 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017689 .model_id = GENERIC_DEVICE_ID,
17690 .total_size = 0,
17691 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017692 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017693 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017694 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017695 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017696 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017697 },
17698
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017699 {
17700 .vendor = "PMC",
17701 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017702 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017703 .manufacture_id = PMC_ID,
17704 .model_id = GENERIC_DEVICE_ID,
17705 .total_size = 0,
17706 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017707 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017708 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017709 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017710 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017711 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017712 },
17713
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017714 {
17715 .vendor = "SST",
17716 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017717 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017718 .manufacture_id = SST_ID,
17719 .model_id = GENERIC_DEVICE_ID,
17720 .total_size = 0,
17721 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017722 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017723 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017724 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017725 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017726 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017727 },
17728
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017729 {
17730 .vendor = "ST",
17731 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017732 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017733 .manufacture_id = ST_ID,
17734 .model_id = GENERIC_DEVICE_ID,
17735 .total_size = 0,
17736 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000017737 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017738 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000017739 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000017740 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000017741 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000017742 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000017743
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017744 {
Sean Nelson118e1d62009-11-24 02:08:11 +000017745 .vendor = "Sanyo",
17746 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017747 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000017748 .manufacture_id = SANYO_ID,
17749 .model_id = GENERIC_DEVICE_ID,
17750 .total_size = 0,
17751 .page_size = 256,
17752 .tested = TEST_BAD_PREW,
17753 .probe = probe_spi_rdid,
17754 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000017755 .write = NULL,
17756 .read = NULL,
17757 },
17758
17759 {
Stefan Taunereb582572012-09-21 12:52:50 +000017760 .vendor = "Winbond",
17761 .name = "unknown Winbond (ex Nexcom) SPI chip",
17762 .bustype = BUS_SPI,
17763 .manufacture_id = WINBOND_NEX_ID,
17764 .model_id = GENERIC_DEVICE_ID,
17765 .total_size = 0,
17766 .page_size = 256,
17767 .tested = TEST_BAD_PREW,
17768 .probe = probe_spi_rdid,
17769 .probe_timing = TIMING_ZERO,
17770 .write = NULL,
17771 .read = NULL,
17772 },
17773
17774 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017775 .vendor = "Generic",
17776 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017777 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017778 .manufacture_id = GENERIC_MANUF_ID,
17779 .model_id = GENERIC_DEVICE_ID,
17780 .total_size = 0,
17781 .page_size = 256,
17782 .tested = TEST_BAD_PREW,
17783 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017784 .write = NULL,
17785 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000017786
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017787 {
17788 .vendor = "Generic",
17789 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017790 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017791 .manufacture_id = GENERIC_MANUF_ID,
17792 .model_id = GENERIC_DEVICE_ID,
17793 .total_size = 0,
17794 .page_size = 256,
17795 .tested = TEST_BAD_PREW,
17796 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017797 .write = NULL,
17798 },
17799
Stefan Tauner96658be2014-05-26 22:05:31 +000017800 {0}
Stephan Guilloux72cf5652009-04-21 01:46:07 +000017801};
Stefan Tauner96658be2014-05-26 22:05:31 +000017802
17803const unsigned int flashchips_size = ARRAY_SIZE(flashchips);