blob: 2001d8c7bdd0fb3e0eea7c9745e6da609e50582b [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 *
Stefan Tauner0554ca52013-07-25 22:54:25 +000028 * Please keep the list sorted by vendor name and chip family, so that the output of 'flashrom -L' is roughly
29 * alphabetically sorted. Within families keep them in order of density.
Uwe Hermannfc425e82008-03-16 02:06:25 +000030 */
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +000031const struct flashchip flashchips[] = {
Uwe Hermannfc425e82008-03-16 02:06:25 +000032
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000033 /*
34 * .vendor = Vendor name
35 * .name = Chip name
36 * .bustype = Supported flash bus types (Parallel, LPC...)
37 * .manufacture_id = Manufacturer chip ID
38 * .model_id = Model chip ID
39 * .total_size = Total size in (binary) kbytes
40 * .page_size = Page or eraseblock(?) size in bytes
41 * .tested = Test status
42 * .probe = Probe function
43 * .probe_timing = Probe function delay
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +000044 * .block_erasers[] = Array of erase layouts and erase functions
45 * {
46 * .eraseblocks[] = Array of { blocksize, blockcount }
47 * .block_erase = Block erase function
48 * }
Sean Nelson6e0b9122010-02-19 00:52:10 +000049 * .printlock = Chip lock status function
50 * .unlock = Chip unlock function
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000051 * .write = Chip write function
52 * .read = Chip read function
Steven Zakuleccbe370e2011-06-03 07:26:31 +000053 * .voltage = Voltage range in millivolt
FENG yu ningff692fb2008-12-08 18:15:10 +000054 */
55
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000056 {
57 .vendor = "AMD",
Stefan Taunerd1ca1e82016-01-31 23:17:35 +000058 .name = "Am29F010",
59 .bustype = BUS_PARALLEL,
60 .manufacture_id = AMD_ID,
61 .model_id = AMD_AM29F010,
62 .total_size = 128,
63 .page_size = 16 * 1024,
64 .feature_bits = FEATURE_SHORT_RESET,
65 .tested = TEST_UNTESTED,
66 .probe = probe_jedec,
67 .probe_timing = TIMING_ZERO,
68 .block_erasers =
69 {
70 {
71 .eraseblocks = { {16 * 1024, 8} },
72 .block_erase = erase_sector_jedec,
73 }, {
74 .eraseblocks = { {128 * 1024, 1} },
75 .block_erase = erase_chip_block_jedec,
76 },
77 },
78 .write = write_jedec_1,
79 .read = read_memmapped,
80 .voltage = {4500, 5500},
81 },
82
83 {
84 .vendor = "AMD",
Uwe Hermanna8b37272009-06-19 15:54:39 +000085 .name = "Am29F010A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000086 .bustype = BUS_PARALLEL,
Uwe Hermanna8b37272009-06-19 15:54:39 +000087 .manufacture_id = AMD_ID,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +000088 .model_id = AMD_AM29F010,
Uwe Hermanna8b37272009-06-19 15:54:39 +000089 .total_size = 128,
90 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000091 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +000092 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000093 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000094 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000095 .block_erasers =
96 {
97 {
98 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000099 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000100 }, {
101 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000102 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000103 },
104 },
Sean Nelson35727f72010-01-28 23:55:12 +0000105 .write = write_jedec_1,
Uwe Hermanna8b37272009-06-19 15:54:39 +0000106 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000107 .voltage = {4500, 5500},
Uwe Hermanna8b37272009-06-19 15:54:39 +0000108 },
109
110 {
111 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000112 .name = "Am29F002(N)BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000113 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000114 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000115 .model_id = AMD_AM29F002BB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000116 .total_size = 256,
117 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000118 .feature_bits = FEATURE_SHORT_RESET | FEATURE_ADDR_2AA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000119 .tested = TEST_UNTESTED,
120 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000121 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000122 .block_erasers =
123 {
124 {
125 .eraseblocks = {
126 {16 * 1024, 1},
127 {8 * 1024, 2},
128 {32 * 1024, 1},
129 {64 * 1024, 3},
130 },
131 .block_erase = erase_sector_jedec,
132 }, {
133 .eraseblocks = { {256 * 1024, 1} },
134 .block_erase = erase_chip_block_jedec,
135 },
136 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000137 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000138 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000139 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +0000140 },
141
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000142 {
143 .vendor = "AMD",
144 .name = "Am29F002(N)BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000145 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000146 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000147 .model_id = AMD_AM29F002BT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000148 .total_size = 256,
149 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000150 .feature_bits = FEATURE_EITHER_RESET | FEATURE_ADDR_2AA,
151 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000152 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000153 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000154 .block_erasers =
155 {
156 {
157 .eraseblocks = {
158 {64 * 1024, 3},
159 {32 * 1024, 1},
160 {8 * 1024, 2},
161 {16 * 1024, 1},
162 },
163 .block_erase = erase_sector_jedec,
164 }, {
165 .eraseblocks = { {256 * 1024, 1} },
166 .block_erase = erase_chip_block_jedec,
167 },
168 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000169 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000170 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000171 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +0000172 },
173
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000174 {
175 .vendor = "AMD",
176 .name = "Am29F016D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000177 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000178 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000179 .model_id = AMD_AM29F016D,
Sean Nelson72a9a022009-12-22 22:15:33 +0000180 .total_size = 2 * 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000181 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000182 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000183 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000184 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000185 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000186 .block_erasers =
187 {
188 {
189 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson35727f72010-01-28 23:55:12 +0000190 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000191 }, {
192 .eraseblocks = { {2048 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000193 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000194 },
195 },
Sean Nelson35727f72010-01-28 23:55:12 +0000196 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000197 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000198 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000199 },
200
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000201 {
202 .vendor = "AMD",
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000203 .name = "Am29F040",
204 .bustype = BUS_PARALLEL,
205 .manufacture_id = AMD_ID,
206 .model_id = AMD_AM29F040,
207 .total_size = 512,
208 .page_size = 64 * 1024,
209 .feature_bits = FEATURE_EITHER_RESET,
210 .tested = TEST_UNTESTED,
211 .probe = probe_jedec,
212 .probe_timing = TIMING_ZERO,
213 .block_erasers =
214 {
215 {
216 .eraseblocks = { {64 * 1024, 8} },
217 .block_erase = erase_sector_jedec,
218 }, {
219 .eraseblocks = { {512 * 1024, 1} },
220 .block_erase = erase_chip_block_jedec,
221 },
222 },
223 .write = write_jedec_1,
224 .read = read_memmapped,
225 .voltage = {4500, 5500},
226 },
227
228 {
229 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000230 .name = "Am29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000231 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000232 .manufacture_id = AMD_ID,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000233 .model_id = AMD_AM29F040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000234 .total_size = 512,
235 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000236 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
237 .tested = TEST_UNTESTED,
238 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000239 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000240 .block_erasers =
241 {
242 {
243 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000244 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000245 }, {
246 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000247 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000248 },
249 },
Sean Nelson35727f72010-01-28 23:55:12 +0000250 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000251 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000252 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000253 },
254
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000255 {
256 .vendor = "AMD",
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000257 .name = "Am29F080",
258 .bustype = BUS_PARALLEL,
259 .manufacture_id = AMD_ID,
260 .model_id = AMD_AM29F080,
261 .total_size = 1024,
262 .page_size = 64 * 1024,
263 .feature_bits = FEATURE_EITHER_RESET,
264 .tested = TEST_UNTESTED,
265 .probe = probe_jedec,
266 .probe_timing = TIMING_ZERO,
267 .block_erasers =
268 {
269 {
270 .eraseblocks = { {64 * 1024, 16} },
271 .block_erase = erase_sector_jedec,
272 }, {
273 .eraseblocks = { {1024 * 1024, 1} },
274 .block_erase = erase_chip_block_jedec,
275 },
276 },
277 .write = write_jedec_1,
278 .read = read_memmapped,
279 .voltage = {4500, 5500},
280 },
281
282 {
283 .vendor = "AMD",
Peter Stuge8440cc02009-01-25 23:55:12 +0000284 .name = "Am29F080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000285 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000286 .manufacture_id = AMD_ID,
Stefan Taunerd1ca1e82016-01-31 23:17:35 +0000287 .model_id = AMD_AM29F080,
Peter Stuge8440cc02009-01-25 23:55:12 +0000288 .total_size = 1024,
289 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000290 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000291 .tested = TEST_UNTESTED,
292 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000293 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000294 .block_erasers =
295 {
296 {
297 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000298 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000299 }, {
300 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000301 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000302 },
303 },
Sean Nelson35727f72010-01-28 23:55:12 +0000304 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000305 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000306 .voltage = {4500, 5500},
Peter Stuge8440cc02009-01-25 23:55:12 +0000307 },
308
309 {
310 .vendor = "AMD",
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000311 .name = "Am29LV001BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000312 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000313 .manufacture_id = AMD_ID,
314 .model_id = AMD_AM29LV001BB,
315 .total_size = 128,
316 .page_size = 64 * 1024, /* unused */
317 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
318 .tested = TEST_OK_PREW,
319 .probe = probe_jedec,
320 .probe_timing = TIMING_ZERO,
321 .block_erasers =
322 {
323 {
324 .eraseblocks = {
325 {8 * 1024, 1},
326 {4 * 1024, 2},
327 {16 * 1024, 7},
328 },
329 .block_erase = erase_sector_jedec,
330 }, {
331 .eraseblocks = { {128 * 1024, 1} },
332 .block_erase = erase_chip_block_jedec,
333 },
334 },
335 .write = write_jedec_1,
336 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000337 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000338 },
339
340 {
341 .vendor = "AMD",
342 .name = "Am29LV001BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000343 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000344 .manufacture_id = AMD_ID,
345 .model_id = AMD_AM29LV001BT,
346 .total_size = 128,
347 .page_size = 64 * 1024, /* unused */
348 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
349 .tested = TEST_UNTESTED,
350 .probe = probe_jedec,
351 .probe_timing = TIMING_ZERO,
352 .block_erasers =
353 {
354 {
355 .eraseblocks = {
356 {16 * 1024, 7},
357 {4 * 1024, 2},
358 {8 * 1024, 1},
359 },
360 .block_erase = erase_sector_jedec,
361 }, {
362 .eraseblocks = { {128 * 1024, 1} },
363 .block_erase = erase_chip_block_jedec,
364 },
365 },
366 .write = write_jedec_1,
367 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000368 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000369 },
370
371 {
372 .vendor = "AMD",
373 .name = "Am29LV002BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000374 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000375 .manufacture_id = AMD_ID,
376 .model_id = AMD_AM29LV002BB,
377 .total_size = 256,
378 .page_size = 64 * 1024, /* unused */
379 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
380 .tested = TEST_UNTESTED,
381 .probe = probe_jedec,
382 .probe_timing = TIMING_ZERO,
383 .block_erasers =
384 {
385 {
386 .eraseblocks = {
387 {16 * 1024, 1},
388 {8 * 1024, 2},
389 {32 * 1024, 1},
390 {64 * 1024, 3},
391 },
392 .block_erase = erase_sector_jedec,
393 }, {
394 .eraseblocks = { {256 * 1024, 1} },
395 .block_erase = erase_chip_block_jedec,
396 },
397 },
398 .write = write_jedec_1,
399 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000400 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000401 },
402
403 {
404 .vendor = "AMD",
405 .name = "Am29LV002BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000406 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000407 .manufacture_id = AMD_ID,
408 .model_id = AMD_AM29LV002BT,
409 .total_size = 256,
410 .page_size = 64 * 1024, /* unused */
411 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
412 .tested = TEST_UNTESTED,
413 .probe = probe_jedec,
414 .probe_timing = TIMING_ZERO,
415 .block_erasers =
416 {
417 {
418 .eraseblocks = {
419 {64 * 1024, 3},
420 {32 * 1024, 1},
421 {8 * 1024, 2},
422 {16 * 1024, 1},
423 },
424 .block_erase = erase_sector_jedec,
425 }, {
426 .eraseblocks = { {256 * 1024, 1} },
427 .block_erase = erase_chip_block_jedec,
428 },
429 },
430 .write = write_jedec_1,
431 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000432 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000433 },
434
435 {
436 .vendor = "AMD",
437 .name = "Am29LV004BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000438 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000439 .manufacture_id = AMD_ID,
440 .model_id = AMD_AM29LV004BB,
441 .total_size = 512,
442 .page_size = 64 * 1024, /* unused */
443 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
444 .tested = TEST_UNTESTED,
445 .probe = probe_jedec,
446 .probe_timing = TIMING_ZERO,
447 .block_erasers =
448 {
449 {
450 .eraseblocks = {
451 {16 * 1024, 1},
452 {8 * 1024, 2},
453 {32 * 1024, 1},
454 {64 * 1024, 7},
455 },
456 .block_erase = erase_sector_jedec,
457 }, {
458 .eraseblocks = { {512 * 1024, 1} },
459 .block_erase = erase_chip_block_jedec,
460 },
461 },
462 .write = write_jedec_1,
463 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000464 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000465 },
466
467 {
468 .vendor = "AMD",
469 .name = "Am29LV004BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000470 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000471 .manufacture_id = AMD_ID,
472 .model_id = AMD_AM29LV004BT,
473 .total_size = 512,
474 .page_size = 64 * 1024, /* unused */
475 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
476 .tested = TEST_UNTESTED,
477 .probe = probe_jedec,
478 .probe_timing = TIMING_ZERO,
479 .block_erasers =
480 {
481 {
482 .eraseblocks = {
483 {64 * 1024, 7},
484 {32 * 1024, 1},
485 {8 * 1024, 2},
486 {16 * 1024, 1},
487 },
488 .block_erase = erase_sector_jedec,
489 }, {
490 .eraseblocks = { {512 * 1024, 1} },
491 .block_erase = erase_chip_block_jedec,
492 },
493 },
494 .write = write_jedec_1,
495 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000496 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000497 },
498
499 {
500 .vendor = "AMD",
501 .name = "Am29LV008BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000502 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000503 .manufacture_id = AMD_ID,
504 .model_id = AMD_AM29LV008BB,
505 .total_size = 1024,
506 .page_size = 64 * 1024, /* unused */
507 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann09ebd522011-08-25 22:54:23 +0000508 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000509 .probe = probe_jedec,
510 .probe_timing = TIMING_ZERO,
511 .block_erasers =
512 {
513 {
514 .eraseblocks = {
515 {16 * 1024, 1},
516 {8 * 1024, 2},
517 {32 * 1024, 1},
518 {64 * 1024, 15},
519 },
520 .block_erase = erase_sector_jedec,
521 }, {
522 .eraseblocks = { {1024 * 1024, 1} },
523 .block_erase = erase_chip_block_jedec,
524 },
525 },
526 .write = write_jedec_1,
527 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000528 .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000529 },
530
531 {
532 .vendor = "AMD",
533 .name = "Am29LV008BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000534 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000535 .manufacture_id = AMD_ID,
536 .model_id = AMD_AM29LV008BT,
537 .total_size = 1024,
538 .page_size = 64 * 1024, /* unused */
539 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
540 .tested = TEST_UNTESTED,
541 .probe = probe_jedec,
542 .probe_timing = TIMING_ZERO,
543 .block_erasers =
544 {
545 {
546 .eraseblocks = {
547 {64 * 1024, 15},
548 {32 * 1024, 1},
549 {8 * 1024, 2},
550 {16 * 1024, 1},
551 },
552 .block_erase = erase_sector_jedec,
553 }, {
554 .eraseblocks = { {1024 * 1024, 1} },
555 .block_erase = erase_chip_block_jedec,
556 },
557 },
558 .write = write_jedec_1,
559 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000560 .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000561 },
562
563 {
564 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000565 .name = "Am29LV040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000566 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000567 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000568 .model_id = AMD_AM29LV040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000569 .total_size = 512,
570 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000571 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000572 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +0000573 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000574 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000575 .block_erasers =
576 {
577 {
578 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000579 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000580 }, {
581 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000582 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000583 },
584 },
Sean Nelson35727f72010-01-28 23:55:12 +0000585 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000586 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000587 .voltage = {3000, 3600}, /* 3.0-3.6V for type -60R, others 2.7-3.6V*/
FENG yu ningff692fb2008-12-08 18:15:10 +0000588 },
589
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000590 {
Peter Stuge8440cc02009-01-25 23:55:12 +0000591 .vendor = "AMD",
592 .name = "Am29LV081B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000593 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000594 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000595 .model_id = AMD_AM29LV080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000596 .total_size = 1024,
597 .page_size = 64 * 1024,
David Borg204f4652010-12-04 03:26:40 +0000598 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET, /* datasheet specifies address as don't care */
Peter Stuge8440cc02009-01-25 23:55:12 +0000599 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000600 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000601 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000602 .block_erasers =
603 {
604 {
605 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000606 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000607 }, {
608 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000609 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000610 },
611 },
Sean Nelson35727f72010-01-28 23:55:12 +0000612 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000613 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000614 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Peter Stuge8440cc02009-01-25 23:55:12 +0000615 },
616
617 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000618 .vendor = "AMIC",
619 .name = "A25L05PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000620 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000621 .manufacture_id = AMIC_ID,
622 .model_id = AMIC_A25L05PT,
623 .total_size = 64,
624 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000625 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000626 .tested = TEST_UNTESTED,
627 .probe = probe_spi_rdid4,
628 .probe_timing = TIMING_ZERO,
629 .block_erasers =
630 {
631 {
632 .eraseblocks = {
633 {32 * 1024, 1},
634 {16 * 1024, 1},
635 {8 * 1024, 1},
636 {4 * 1024, 2},
637 },
638 .block_erase = spi_block_erase_d8,
639 }, {
640 .eraseblocks = { {64 * 1024, 1} },
641 .block_erase = spi_block_erase_c7,
642 }
643 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000644 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000645 .unlock = spi_disable_blockprotect,
646 .write = spi_chip_write_256,
647 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000648 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000649 },
650
651 {
652 .vendor = "AMIC",
653 .name = "A25L05PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000654 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000655 .manufacture_id = AMIC_ID,
656 .model_id = AMIC_A25L05PU,
657 .total_size = 64,
658 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000659 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000660 .tested = TEST_UNTESTED,
661 .probe = probe_spi_rdid4,
662 .probe_timing = TIMING_ZERO,
663 .block_erasers =
664 {
665 {
666 .eraseblocks = {
667 {4 * 1024, 2},
668 {8 * 1024, 1},
669 {16 * 1024, 1},
670 {32 * 1024, 1},
671 },
672 .block_erase = spi_block_erase_d8,
673 }, {
674 .eraseblocks = { {64 * 1024, 1} },
675 .block_erase = spi_block_erase_c7,
676 }
677 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000678 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000679 .unlock = spi_disable_blockprotect,
680 .write = spi_chip_write_256,
681 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000682 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000683 },
684
685 {
686 .vendor = "AMIC",
687 .name = "A25L10PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000688 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000689 .manufacture_id = AMIC_ID,
690 .model_id = AMIC_A25L10PT,
691 .total_size = 128,
692 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000693 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000694 .tested = TEST_UNTESTED,
695 .probe = probe_spi_rdid4,
696 .probe_timing = TIMING_ZERO,
697 .block_erasers =
698 {
699 {
700 .eraseblocks = {
701 {64 * 1024, 1},
702 {32 * 1024, 1},
703 {16 * 1024, 1},
704 {8 * 1024, 1},
705 {4 * 1024, 2},
706 },
707 .block_erase = spi_block_erase_d8,
708 }, {
709 .eraseblocks = { {128 * 1024, 1} },
710 .block_erase = spi_block_erase_c7,
711 }
712 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000713 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000714 .unlock = spi_disable_blockprotect,
715 .write = spi_chip_write_256,
716 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000717 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000718 },
719
720 {
721 .vendor = "AMIC",
722 .name = "A25L10PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000723 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000724 .manufacture_id = AMIC_ID,
725 .model_id = AMIC_A25L10PU,
726 .total_size = 128,
727 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000728 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000729 .tested = TEST_UNTESTED,
730 .probe = probe_spi_rdid4,
731 .probe_timing = TIMING_ZERO,
732 .block_erasers =
733 {
734 {
735 .eraseblocks = {
736 {4 * 1024, 2},
737 {8 * 1024, 1},
738 {16 * 1024, 1},
739 {32 * 1024, 1},
740 {64 * 1024, 1},
741 },
742 .block_erase = spi_block_erase_d8,
743 }, {
744 .eraseblocks = { {128 * 1024, 1} },
745 .block_erase = spi_block_erase_c7,
746 }
747 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000748 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000749 .unlock = spi_disable_blockprotect,
750 .write = spi_chip_write_256,
751 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000752 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000753 },
754
755 {
756 .vendor = "AMIC",
757 .name = "A25L20PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000758 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000759 .manufacture_id = AMIC_ID,
760 .model_id = AMIC_A25L20PT,
761 .total_size = 256,
762 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000763 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000764 .tested = TEST_UNTESTED,
765 .probe = probe_spi_rdid4,
766 .probe_timing = TIMING_ZERO,
767 .block_erasers =
768 {
769 {
770 .eraseblocks = {
771 {64 * 1024, 3},
772 {32 * 1024, 1},
773 {16 * 1024, 1},
774 {8 * 1024, 1},
775 {4 * 1024, 2},
776 },
777 .block_erase = spi_block_erase_d8,
778 }, {
779 .eraseblocks = { {256 * 1024, 1} },
780 .block_erase = spi_block_erase_c7,
781 }
782 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000783 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000784 .unlock = spi_disable_blockprotect,
785 .write = spi_chip_write_256,
786 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000787 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000788 },
789
790 {
791 .vendor = "AMIC",
792 .name = "A25L20PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000793 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000794 .manufacture_id = AMIC_ID,
795 .model_id = AMIC_A25L20PU,
796 .total_size = 256,
797 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000798 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000799 .tested = TEST_UNTESTED,
800 .probe = probe_spi_rdid4,
801 .probe_timing = TIMING_ZERO,
802 .block_erasers =
803 {
804 {
805 .eraseblocks = {
806 {4 * 1024, 2},
807 {8 * 1024, 1},
808 {16 * 1024, 1},
809 {32 * 1024, 1},
810 {64 * 1024, 3},
811 },
812 .block_erase = spi_block_erase_d8,
813 }, {
814 .eraseblocks = { {256 * 1024, 1} },
815 .block_erase = spi_block_erase_c7,
816 }
817 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000818 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000819 .unlock = spi_disable_blockprotect,
820 .write = spi_chip_write_256,
821 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000822 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000823 },
824
825 /* The A25L40P{T,U} chips are distinguished by their
826 * erase block layouts, but without any distinction in RDID.
827 * This inexplicable quirk was verified by Rudolf Marek
828 * and discussed on the flashrom mailing list on 2010-07-12.
829 */
830 {
831 .vendor = "AMIC",
832 .name = "A25L40PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000833 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000834 .manufacture_id = AMIC_ID,
835 .model_id = AMIC_A25L40PT,
836 .total_size = 512,
837 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000838 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000839 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000840 .probe = probe_spi_rdid4,
841 .probe_timing = TIMING_ZERO,
842 .block_erasers =
843 {
844 {
845 .eraseblocks = {
846 {64 * 1024, 7},
847 {32 * 1024, 1},
848 {16 * 1024, 1},
849 {8 * 1024, 1},
850 {4 * 1024, 2},
851 },
852 .block_erase = spi_block_erase_d8,
853 }, {
854 .eraseblocks = { {512 * 1024, 1} },
855 .block_erase = spi_block_erase_c7,
856 }
857 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000858 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000859 .unlock = spi_disable_blockprotect,
860 .write = spi_chip_write_256,
861 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000862 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000863 },
864
865 {
866 .vendor = "AMIC",
867 .name = "A25L40PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000868 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000869 .manufacture_id = AMIC_ID,
870 .model_id = AMIC_A25L40PU,
871 .total_size = 512,
872 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000873 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000874 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000875 .probe = probe_spi_rdid4,
876 .probe_timing = TIMING_ZERO,
877 .block_erasers =
878 {
879 {
880 .eraseblocks = {
881 {4 * 1024, 2},
882 {8 * 1024, 1},
883 {16 * 1024, 1},
884 {32 * 1024, 1},
885 {64 * 1024, 7},
886 },
887 .block_erase = spi_block_erase_d8,
888 }, {
889 .eraseblocks = { {512 * 1024, 1} },
890 .block_erase = spi_block_erase_c7,
891 }
892 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000893 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000894 .unlock = spi_disable_blockprotect,
895 .write = spi_chip_write_256,
896 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000897 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000898 },
899
900 {
901 .vendor = "AMIC",
902 .name = "A25L80P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000903 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000904 .manufacture_id = AMIC_ID,
905 .model_id = AMIC_A25L80P,
906 .total_size = 1024,
907 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000908 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000909 .tested = TEST_OK_PRE,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000910 .probe = probe_spi_rdid4,
911 .probe_timing = TIMING_ZERO,
912 .block_erasers =
913 {
914 {
915 .eraseblocks = {
916 {4 * 1024, 2},
917 {8 * 1024, 1},
918 {16 * 1024, 1},
919 {32 * 1024, 1},
920 {64 * 1024, 15},
921 },
922 .block_erase = spi_block_erase_d8,
923 }, {
924 .eraseblocks = { {1024 * 1024, 1} },
925 .block_erase = spi_block_erase_c7,
926 }
927 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000928 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000929 .unlock = spi_disable_blockprotect,
930 .write = spi_chip_write_256,
931 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000932 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000933 },
934
935 {
936 .vendor = "AMIC",
937 .name = "A25L16PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000938 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000939 .manufacture_id = AMIC_ID,
940 .model_id = AMIC_A25L16PT,
941 .total_size = 2048,
942 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000943 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000944 .tested = TEST_UNTESTED,
945 .probe = probe_spi_rdid4,
946 .probe_timing = TIMING_ZERO,
947 .block_erasers =
948 {
949 {
950 .eraseblocks = {
951 {64 * 1024, 31},
952 {32 * 1024, 1},
953 {16 * 1024, 1},
954 {8 * 1024, 1},
955 {4 * 1024, 2},
956 },
957 .block_erase = spi_block_erase_d8,
958 }, {
959 .eraseblocks = { {2048 * 1024, 1} },
960 .block_erase = spi_block_erase_60,
961 }, {
962 .eraseblocks = { {2048 * 1024, 1} },
963 .block_erase = spi_block_erase_c7,
964 }
965 },
Stefan Tauner12f3d512014-05-27 21:27:27 +0000966 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000967 .unlock = spi_disable_blockprotect,
968 .write = spi_chip_write_256,
969 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000970 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000971 },
972
973 {
974 .vendor = "AMIC",
975 .name = "A25L16PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000976 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000977 .manufacture_id = AMIC_ID,
978 .model_id = AMIC_A25L16PU,
979 .total_size = 2048,
980 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000981 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000982 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000983 .probe = probe_spi_rdid4,
984 .probe_timing = TIMING_ZERO,
985 .block_erasers =
986 {
987 {
988 .eraseblocks = {
989 {4 * 1024, 2},
990 {8 * 1024, 1},
991 {16 * 1024, 1},
992 {32 * 1024, 1},
993 {64 * 1024, 31},
994 },
995 .block_erase = spi_block_erase_d8,
996 }, {
997 .eraseblocks = { {2048 * 1024, 1} },
998 .block_erase = spi_block_erase_60,
999 }, {
1000 .eraseblocks = { {2048 * 1024, 1} },
1001 .block_erase = spi_block_erase_c7,
1002 }
1003 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001004 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001005 .unlock = spi_disable_blockprotect,
1006 .write = spi_chip_write_256,
1007 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001008 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001009 },
1010
1011 {
1012 .vendor = "AMIC",
Dan Lenski11617122010-07-29 15:00:40 +00001013 .name = "A25L512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001014 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001015 .manufacture_id = AMIC_ID_NOPREFIX,
1016 .model_id = AMIC_A25L512,
1017 .total_size = 64,
1018 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001019 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001020 .tested = TEST_UNTESTED,
1021 .probe = probe_spi_rdid,
1022 .probe_timing = TIMING_ZERO,
1023 .block_erasers =
1024 {
1025 {
1026 .eraseblocks = { { 4 * 1024, 16 } },
1027 .block_erase = spi_block_erase_20,
1028 }, {
1029 .eraseblocks = { { 64 * 1024, 1 } },
1030 .block_erase = spi_block_erase_d8,
1031 }, {
1032 .eraseblocks = { { 64 * 1024, 1 } },
1033 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001034 }
Dan Lenski11617122010-07-29 15:00:40 +00001035 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001036 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001037 .unlock = spi_disable_blockprotect,
1038 .write = spi_chip_write_256,
1039 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001040 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001041 },
1042
1043 {
1044 .vendor = "AMIC",
1045 .name = "A25L010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001046 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001047 .manufacture_id = AMIC_ID_NOPREFIX,
1048 .model_id = AMIC_A25L010,
1049 .total_size = 128,
1050 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001051 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001052 .tested = TEST_UNTESTED,
1053 .probe = probe_spi_rdid,
1054 .probe_timing = TIMING_ZERO,
1055 .block_erasers =
1056 {
1057 {
1058 .eraseblocks = { { 4 * 1024, 32 } },
1059 .block_erase = spi_block_erase_20,
1060 }, {
1061 .eraseblocks = { { 64 * 1024, 2 } },
1062 .block_erase = spi_block_erase_d8,
1063 }, {
1064 .eraseblocks = { { 128 * 1024, 1 } },
1065 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001066 }
Dan Lenski11617122010-07-29 15:00:40 +00001067 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001068 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001069 .unlock = spi_disable_blockprotect,
1070 .write = spi_chip_write_256,
1071 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001072 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001073 },
1074
1075 {
1076 .vendor = "AMIC",
1077 .name = "A25L020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001078 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001079 .manufacture_id = AMIC_ID_NOPREFIX,
1080 .model_id = AMIC_A25L020,
1081 .total_size = 256,
1082 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001083 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001084 .tested = TEST_UNTESTED,
1085 .probe = probe_spi_rdid,
1086 .probe_timing = TIMING_ZERO,
1087 .block_erasers =
1088 {
1089 {
1090 .eraseblocks = { { 4 * 1024, 64 } },
1091 .block_erase = spi_block_erase_20,
1092 }, {
1093 .eraseblocks = { { 64 * 1024, 4 } },
1094 .block_erase = spi_block_erase_d8,
1095 }, {
1096 .eraseblocks = { { 256 * 1024, 1 } },
1097 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001098 }
Dan Lenski11617122010-07-29 15:00:40 +00001099 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001100 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001101 .unlock = spi_disable_blockprotect,
1102 .write = spi_chip_write_256,
1103 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001104 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001105 },
1106
1107 {
1108 .vendor = "AMIC",
1109 .name = "A25L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001110 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001111 .manufacture_id = AMIC_ID_NOPREFIX,
1112 .model_id = AMIC_A25L040,
1113 .total_size = 512,
1114 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001115 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001116 .tested = TEST_UNTESTED,
1117 .probe = probe_spi_rdid,
1118 .probe_timing = TIMING_ZERO,
1119 .block_erasers =
1120 {
1121 {
1122 .eraseblocks = { { 4 * 1024, 128 } },
1123 .block_erase = spi_block_erase_20,
1124 }, {
1125 .eraseblocks = { { 64 * 1024, 8 } },
1126 .block_erase = spi_block_erase_d8,
1127 }, {
1128 .eraseblocks = { { 512 * 1024, 1 } },
1129 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001130 }
Dan Lenski11617122010-07-29 15:00:40 +00001131 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001132 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001133 .unlock = spi_disable_blockprotect,
1134 .write = spi_chip_write_256,
1135 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001136 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001137 },
1138
1139 {
1140 .vendor = "AMIC",
1141 .name = "A25L080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001142 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001143 .manufacture_id = AMIC_ID_NOPREFIX,
1144 .model_id = AMIC_A25L080,
1145 .total_size = 1024,
1146 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001147 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001148 .tested = TEST_UNTESTED,
1149 .probe = probe_spi_rdid,
1150 .probe_timing = TIMING_ZERO,
1151 .block_erasers =
1152 {
1153 {
1154 .eraseblocks = { { 4 * 1024, 256 } },
1155 .block_erase = spi_block_erase_20,
1156 }, {
1157 .eraseblocks = { { 64 * 1024, 16 } },
1158 .block_erase = spi_block_erase_d8,
1159 }, {
1160 .eraseblocks = { { 1024 * 1024, 1 } },
1161 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001162 }
Dan Lenski11617122010-07-29 15:00:40 +00001163 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001164 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001165 .unlock = spi_disable_blockprotect,
1166 .write = spi_chip_write_256,
1167 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001168 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001169 },
1170
1171 {
1172 .vendor = "AMIC",
1173 .name = "A25L016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001174 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001175 .manufacture_id = AMIC_ID_NOPREFIX,
1176 .model_id = AMIC_A25L016,
1177 .total_size = 2048,
1178 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001179 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001180 .tested = TEST_UNTESTED,
1181 .probe = probe_spi_rdid,
1182 .probe_timing = TIMING_ZERO,
1183 .block_erasers =
1184 {
1185 {
1186 .eraseblocks = { { 4 * 1024, 512 } },
1187 .block_erase = spi_block_erase_20,
1188 }, {
1189 .eraseblocks = { { 64 * 1024, 32 } },
1190 .block_erase = spi_block_erase_d8,
1191 }, {
1192 .eraseblocks = { { 2048 * 1024, 1 } },
1193 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001194 }
Dan Lenski11617122010-07-29 15:00:40 +00001195 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001196 .printlock = spi_prettyprint_status_register_bp2_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001197 .unlock = spi_disable_blockprotect,
1198 .write = spi_chip_write_256,
1199 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001200 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001201 },
1202
1203 {
1204 .vendor = "AMIC",
1205 .name = "A25L032",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001206 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001207 .manufacture_id = AMIC_ID_NOPREFIX,
1208 .model_id = AMIC_A25L032,
1209 .total_size = 4096,
1210 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001211 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1212 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001213 .tested = TEST_OK_PREW,
Dan Lenski11617122010-07-29 15:00:40 +00001214 .probe = probe_spi_rdid,
1215 .probe_timing = TIMING_ZERO,
1216 .block_erasers =
1217 {
1218 {
1219 .eraseblocks = { { 4 * 1024, 1024 } },
1220 .block_erase = spi_block_erase_20,
1221 }, {
1222 .eraseblocks = { { 64 * 1024, 64 } },
1223 .block_erase = spi_block_erase_52,
1224 }, {
1225 .eraseblocks = { { 64 * 1024, 64 } },
1226 .block_erase = spi_block_erase_d8,
1227 }, {
1228 .eraseblocks = { { 4096 * 1024, 1 } },
1229 .block_erase = spi_block_erase_60,
1230 }, {
1231 .eraseblocks = { { 4096 * 1024, 1 } },
1232 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001233 }
Dan Lenski11617122010-07-29 15:00:40 +00001234 },
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001235 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
1236 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
Dan Lenski11617122010-07-29 15:00:40 +00001237 .write = spi_chip_write_256,
1238 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001239 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001240 },
1241
1242 {
1243 .vendor = "AMIC",
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001244 .name = "A25LQ16",
1245 .bustype = BUS_SPI,
1246 .manufacture_id = AMIC_ID_NOPREFIX,
1247 .model_id = AMIC_A25LQ16,
1248 .total_size = 2048,
1249 .page_size = 256,
1250 /* supports SFDP */
1251 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1252 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1253 .tested = TEST_UNTESTED,
1254 .probe = probe_spi_rdid,
1255 .probe_timing = TIMING_ZERO,
1256 .block_erasers = {
1257 {
1258 .eraseblocks = { { 4 * 1024, 512 } },
1259 .block_erase = spi_block_erase_20,
1260 }, {
1261 .eraseblocks = { { 64 * 1024, 32 } },
1262 .block_erase = spi_block_erase_52,
1263 }, {
1264 .eraseblocks = { { 64 * 1024, 32 } },
1265 .block_erase = spi_block_erase_d8,
1266 }, {
1267 .eraseblocks = { { 2048 * 1024, 1 } },
1268 .block_erase = spi_block_erase_60,
1269 }, {
1270 .eraseblocks = { { 2048 * 1024, 1 } },
1271 .block_erase = spi_block_erase_c7,
1272 }
1273 },
1274 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
1275 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
1276 .write = spi_chip_write_256,
1277 .read = spi_chip_read,
1278 .voltage = {2700, 3600},
1279 },
1280
1281 {
1282 .vendor = "AMIC",
1283 .name = "A25LQ032/A25LQ32A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001284 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001285 .manufacture_id = AMIC_ID_NOPREFIX,
1286 .model_id = AMIC_A25LQ032,
1287 .total_size = 4096,
1288 .page_size = 256,
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001289 /* A25LQ32A supports SFDP */
Daniel Lenski65922a32012-02-15 23:40:23 +00001290 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1291 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Dan Lenski11617122010-07-29 15:00:40 +00001292 .tested = TEST_UNTESTED,
1293 .probe = probe_spi_rdid,
1294 .probe_timing = TIMING_ZERO,
1295 .block_erasers =
1296 {
1297 {
1298 .eraseblocks = { { 4 * 1024, 1024 } },
1299 .block_erase = spi_block_erase_20,
1300 }, {
1301 .eraseblocks = { { 64 * 1024, 64 } },
1302 .block_erase = spi_block_erase_52,
1303 }, {
1304 .eraseblocks = { { 64 * 1024, 64 } },
1305 .block_erase = spi_block_erase_d8,
1306 }, {
1307 .eraseblocks = { { 4096 * 1024, 1 } },
1308 .block_erase = spi_block_erase_60,
1309 }, {
1310 .eraseblocks = { { 4096 * 1024, 1 } },
1311 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001312 }
Dan Lenski11617122010-07-29 15:00:40 +00001313 },
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001314 .printlock = spi_prettyprint_status_register_amic_a25l032, /* bit5: T/B, bit6: prot size */
1315 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: 2nd status reg (read with 0x35) */
1316 .write = spi_chip_write_256,
1317 .read = spi_chip_read,
1318 .voltage = {2700, 3600},
1319 },
1320
1321 {
1322 .vendor = "AMIC",
1323 .name = "A25LQ64",
1324 .bustype = BUS_SPI,
1325 .manufacture_id = AMIC_ID_NOPREFIX,
Stefan Tauner23e10b82016-01-23 16:16:49 +00001326 .model_id = AMIC_A25LQ64,
Nikolay Nikolaevd07fde62013-06-28 21:29:21 +00001327 .total_size = 8192,
1328 .page_size = 256,
1329 /* supports SFDP */
1330 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
1331 /* QPI enable 0x35, disable 0xF5 */
1332 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
1333 .tested = TEST_UNTESTED,
1334 .probe = probe_spi_rdid,
1335 .probe_timing = TIMING_ZERO,
1336 .block_erasers =
1337 {
1338 {
1339 .eraseblocks = { { 4 * 1024, 2048 } },
1340 .block_erase = spi_block_erase_20,
1341 }, {
1342 .eraseblocks = { { 32 * 1024, 256 } },
1343 .block_erase = spi_block_erase_52,
1344 }, {
1345 .eraseblocks = { { 64 * 1024, 128 } },
1346 .block_erase = spi_block_erase_d8,
1347 }, {
1348 .eraseblocks = { { 8192 * 1024, 1 } },
1349 .block_erase = spi_block_erase_60,
1350 }, {
1351 .eraseblocks = { { 8192 * 1024, 1 } },
1352 .block_erase = spi_block_erase_c7,
1353 }
1354 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00001355 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enhance (sic!) */
Stefan Tauner5c316f92015-02-08 21:57:52 +00001356 .unlock = spi_disable_blockprotect_bp3_srwd,
Dan Lenski11617122010-07-29 15:00:40 +00001357 .write = spi_chip_write_256,
1358 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001359 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001360 },
1361
1362 {
1363 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001364 .name = "A29002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001365 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001366 .manufacture_id = AMIC_ID_NOPREFIX,
1367 .model_id = AMIC_A29002B,
1368 .total_size = 256,
1369 .page_size = 64 * 1024,
1370 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1371 .tested = TEST_UNTESTED,
1372 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001373 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001374 .block_erasers =
1375 {
1376 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00001377 .eraseblocks = {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001378 {16 * 1024, 1},
1379 {8 * 1024, 2},
1380 {32 * 1024, 1},
1381 {64 * 1024, 3},
1382 },
1383 .block_erase = erase_sector_jedec,
1384 }, {
1385 .eraseblocks = { {256 * 1024, 1} },
1386 .block_erase = erase_chip_block_jedec,
1387 },
1388 },
1389 .write = write_jedec_1,
1390 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001391 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001392 },
1393
1394 {
1395 .vendor = "AMIC",
1396 .name = "A29002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001397 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001398 .manufacture_id = AMIC_ID_NOPREFIX,
1399 .model_id = AMIC_A29002T,
1400 .total_size = 256,
1401 .page_size = 64 * 1024,
1402 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00001403 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001404 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001405 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001406 .block_erasers =
1407 {
1408 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00001409 .eraseblocks = {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001410 {64 * 1024, 3},
1411 {32 * 1024, 1},
1412 {8 * 1024, 2},
1413 {16 * 1024, 1},
1414 },
1415 .block_erase = erase_sector_jedec,
1416 }, {
1417 .eraseblocks = { {256 * 1024, 1} },
1418 .block_erase = erase_chip_block_jedec,
1419 },
1420 },
1421 .write = write_jedec_1,
1422 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001423 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001424 },
1425
1426 {
1427 .vendor = "AMIC",
1428 .name = "A29040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001429 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001430 .manufacture_id = AMIC_ID_NOPREFIX,
1431 .model_id = AMIC_A29040B,
1432 .total_size = 512,
1433 .page_size = 64 * 1024,
1434 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Corey Osgoodcbd56652013-09-10 10:42:48 +00001435 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001436 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001437 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001438 .block_erasers =
1439 {
1440 {
1441 .eraseblocks = { {64 * 1024, 8} },
1442 .block_erase = erase_sector_jedec,
1443 }, {
1444 .eraseblocks = { {512 * 1024, 1} },
1445 .block_erase = erase_chip_block_jedec,
1446 },
1447 },
1448 .write = write_jedec_1,
1449 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001450 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001451 },
1452
1453 {
1454 .vendor = "AMIC",
1455 .name = "A49LF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001456 .bustype = BUS_LPC,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001457 .manufacture_id = AMIC_ID_NOPREFIX,
1458 .model_id = AMIC_A49LF040A,
1459 .total_size = 512,
1460 .page_size = 64 * 1024,
1461 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00001462 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001463 .probe = probe_jedec,
1464 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
1465 .block_erasers =
1466 {
1467 {
1468 .eraseblocks = { {64 * 1024, 8} },
1469 .block_erase = erase_block_jedec,
1470 }, {
1471 .eraseblocks = { {512 * 1024, 1} },
1472 .block_erase = erase_chip_block_jedec,
1473 }
1474 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00001475 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001476 .write = write_jedec_1,
1477 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001478 .voltage = {3000, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001479 },
1480
1481 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001482 .vendor = "Atmel",
1483 .name = "AT25DF021",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001484 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001485 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001486 .model_id = ATMEL_AT25DF021,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001487 .total_size = 256,
1488 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001489 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1490 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001491 .tested = TEST_UNTESTED,
1492 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001493 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001494 .block_erasers =
1495 {
1496 {
1497 .eraseblocks = { {4 * 1024, 64} },
1498 .block_erase = spi_block_erase_20,
1499 }, {
1500 .eraseblocks = { {32 * 1024, 8} },
1501 .block_erase = spi_block_erase_52,
1502 }, {
1503 .eraseblocks = { {64 * 1024, 4} },
1504 .block_erase = spi_block_erase_d8,
1505 }, {
1506 .eraseblocks = { {256 * 1024, 1} },
1507 .block_erase = spi_block_erase_60,
1508 }, {
1509 .eraseblocks = { {256 * 1024, 1} },
1510 .block_erase = spi_block_erase_c7,
1511 }
1512 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001513 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001514 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001515 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001516 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001517 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001518 },
1519
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001520 {
1521 .vendor = "Atmel",
Steffen Mauch0b59b0d2018-06-02 23:46:03 +02001522 .name = "AT25DF021A",
1523 .bustype = BUS_SPI,
1524 .manufacture_id = ATMEL_ID,
1525 .model_id = ATMEL_AT25DF021A,
1526 .total_size = 256,
1527 .page_size = 256,
1528 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1529 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1530 .tested = TEST_OK_PREW,
1531 .probe = probe_spi_rdid,
1532 .probe_timing = TIMING_ZERO,
1533 .block_erasers =
1534 {
1535 {
1536 .eraseblocks = { {4 * 1024, 64} },
1537 .block_erase = spi_block_erase_20,
1538 }, {
1539 .eraseblocks = { {32 * 1024, 8} },
1540 .block_erase = spi_block_erase_52,
1541 }, {
1542 .eraseblocks = { {64 * 1024, 4} },
1543 .block_erase = spi_block_erase_d8,
1544 }, {
1545 .eraseblocks = { {256 * 1024, 1} },
1546 .block_erase = spi_block_erase_60,
1547 }, {
1548 .eraseblocks = { {256 * 1024, 1} },
1549 .block_erase = spi_block_erase_c7,
1550 }
1551 },
1552 .printlock = spi_prettyprint_status_register_at25df,
1553 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
1554 .write = spi_chip_write_256,
1555 .read = spi_chip_read,
1556 .voltage = {1650, 3600},
1557 },
1558
1559 {
1560 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001561 .name = "AT25DF041A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001562 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001563 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001564 .model_id = ATMEL_AT25DF041A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001565 .total_size = 512,
1566 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001567 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00001568 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001569 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001570 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001571 .block_erasers =
1572 {
1573 {
1574 .eraseblocks = { {4 * 1024, 128} },
1575 .block_erase = spi_block_erase_20,
1576 }, {
1577 .eraseblocks = { {32 * 1024, 16} },
1578 .block_erase = spi_block_erase_52,
1579 }, {
1580 .eraseblocks = { {64 * 1024, 8} },
1581 .block_erase = spi_block_erase_d8,
1582 }, {
1583 .eraseblocks = { {512 * 1024, 1} },
1584 .block_erase = spi_block_erase_60,
1585 }, {
1586 .eraseblocks = { {512 * 1024, 1} },
1587 .block_erase = spi_block_erase_c7,
1588 }
1589 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001590 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001591 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001592 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001593 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001594 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001595 },
1596
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001597 {
1598 .vendor = "Atmel",
1599 .name = "AT25DF081",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001600 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001601 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001602 .model_id = ATMEL_AT25DF081,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001603 .total_size = 1024,
1604 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001605 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001606 .tested = TEST_UNTESTED,
1607 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001608 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001609 .block_erasers =
1610 {
1611 {
1612 .eraseblocks = { {4 * 1024, 256} },
1613 .block_erase = spi_block_erase_20,
1614 }, {
1615 .eraseblocks = { {32 * 1024, 32} },
1616 .block_erase = spi_block_erase_52,
1617 }, {
1618 .eraseblocks = { {64 * 1024, 16} },
1619 .block_erase = spi_block_erase_d8,
1620 }, {
1621 .eraseblocks = { {1024 * 1024, 1} },
1622 .block_erase = spi_block_erase_60,
1623 }, {
1624 .eraseblocks = { {1024 * 1024, 1} },
1625 .block_erase = spi_block_erase_c7,
1626 }
1627 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001628 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001629 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001630 .write = spi_chip_write_256,
1631 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001632 .voltage = {1600, 2000}, /* Datasheet says range is 1.65-1.95 V */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001633 },
1634
1635 {
1636 .vendor = "Atmel",
1637 .name = "AT25DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001638 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001639 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001640 .model_id = ATMEL_AT25DF081A,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001641 .total_size = 1024,
1642 .page_size = 256,
1643 .feature_bits = FEATURE_WRSR_WREN,
1644 .tested = TEST_UNTESTED,
1645 .probe = probe_spi_rdid,
1646 .probe_timing = TIMING_ZERO,
1647 .block_erasers =
1648 {
1649 {
1650 .eraseblocks = { {4 * 1024, 256} },
1651 .block_erase = spi_block_erase_20,
1652 }, {
1653 .eraseblocks = { {32 * 1024, 32} },
1654 .block_erase = spi_block_erase_52,
1655 }, {
1656 .eraseblocks = { {64 * 1024, 16} },
1657 .block_erase = spi_block_erase_d8,
1658 }, {
1659 .eraseblocks = { {1024 * 1024, 1} },
1660 .block_erase = spi_block_erase_60,
1661 }, {
1662 .eraseblocks = { {1024 * 1024, 1} },
1663 .block_erase = spi_block_erase_c7,
1664 }
1665 },
1666 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001667 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001668 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001669 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001670 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001671 },
1672
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001673 {
1674 .vendor = "Atmel",
1675 .name = "AT25DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001676 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001677 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001678 .model_id = ATMEL_AT25DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001679 .total_size = 2048,
1680 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001681 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner2abab942012-04-27 20:41:23 +00001682 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001683 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001684 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001685 .block_erasers =
1686 {
1687 {
1688 .eraseblocks = { {4 * 1024, 512} },
1689 .block_erase = spi_block_erase_20,
1690 }, {
1691 .eraseblocks = { {32 * 1024, 64} },
1692 .block_erase = spi_block_erase_52,
1693 }, {
1694 .eraseblocks = { {64 * 1024, 32} },
1695 .block_erase = spi_block_erase_d8,
1696 }, {
1697 .eraseblocks = { {2 * 1024 * 1024, 1} },
1698 .block_erase = spi_block_erase_60,
1699 }, {
1700 .eraseblocks = { {2 * 1024 * 1024, 1} },
1701 .block_erase = spi_block_erase_c7,
1702 }
1703 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001704 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001705 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001706 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001707 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001708 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001709 },
1710
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001711 {
1712 .vendor = "Atmel",
1713 .name = "AT25DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001714 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001715 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001716 .model_id = ATMEL_AT25DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001717 .total_size = 4096,
1718 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001719 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd06d9412011-06-12 19:47:55 +00001720 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001721 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001722 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001723 .block_erasers =
1724 {
1725 {
1726 .eraseblocks = { {4 * 1024, 1024} },
1727 .block_erase = spi_block_erase_20,
1728 }, {
1729 .eraseblocks = { {32 * 1024, 128} },
1730 .block_erase = spi_block_erase_52,
1731 }, {
1732 .eraseblocks = { {64 * 1024, 64} },
1733 .block_erase = spi_block_erase_d8,
1734 }, {
1735 .eraseblocks = { {4 * 1024 * 1024, 1} },
1736 .block_erase = spi_block_erase_60,
1737 }, {
1738 .eraseblocks = { {4 * 1024 * 1024, 1} },
1739 .block_erase = spi_block_erase_c7,
1740 }
1741 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001742 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001743 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001744 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001745 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001746 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001747 },
1748
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001749 {
1750 .vendor = "Atmel",
1751 .name = "AT25DF321A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001752 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001753 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001754 .model_id = ATMEL_AT25DF321A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001755 .total_size = 4096,
1756 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001757 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1758 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001759 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001760 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001761 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001762 .block_erasers =
1763 {
1764 {
1765 .eraseblocks = { {4 * 1024, 1024} },
1766 .block_erase = spi_block_erase_20,
1767 }, {
1768 .eraseblocks = { {32 * 1024, 128} },
1769 .block_erase = spi_block_erase_52,
1770 }, {
1771 .eraseblocks = { {64 * 1024, 64} },
1772 .block_erase = spi_block_erase_d8,
1773 }, {
1774 .eraseblocks = { {4 * 1024 * 1024, 1} },
1775 .block_erase = spi_block_erase_60,
1776 }, {
1777 .eraseblocks = { {4 * 1024 * 1024, 1} },
1778 .block_erase = spi_block_erase_c7,
1779 }
1780 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001781 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001782 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001783 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001784 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001785 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001786 },
1787
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001788 {
1789 .vendor = "Atmel",
Paul Menzelac427b22012-02-16 21:07:07 +00001790 .name = "AT25DF641(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001791 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001792 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001793 .model_id = ATMEL_AT25DF641,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001794 .total_size = 8192,
1795 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001796 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00001797 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001798 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001799 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001800 .block_erasers =
1801 {
1802 {
1803 .eraseblocks = { {4 * 1024, 2048} },
1804 .block_erase = spi_block_erase_20,
1805 }, {
1806 .eraseblocks = { {32 * 1024, 256} },
1807 .block_erase = spi_block_erase_52,
1808 }, {
1809 .eraseblocks = { {64 * 1024, 128} },
1810 .block_erase = spi_block_erase_d8,
1811 }, {
1812 .eraseblocks = { {8 * 1024 * 1024, 1} },
1813 .block_erase = spi_block_erase_60,
1814 }, {
1815 .eraseblocks = { {8 * 1024 * 1024, 1} },
1816 .block_erase = spi_block_erase_c7,
1817 }
1818 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001819 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001820 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001821 .write = spi_chip_write_256,
1822 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001823 .voltage = {2700, 3600},
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001824 },
1825
1826 {
1827 .vendor = "Atmel",
Stefan Taunerc9d8b272014-06-01 13:22:35 +00001828 .name = "AT25DL081",
1829 .bustype = BUS_SPI,
1830 .manufacture_id = ATMEL_ID,
1831 .model_id = ATMEL_AT25DF081,
1832 .total_size = 1024,
1833 .page_size = 256,
1834 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1835 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1836 .tested = TEST_UNTESTED,
1837 .probe = probe_spi_rdid,
1838 .probe_timing = TIMING_ZERO,
1839 .block_erasers =
1840 {
1841 {
1842 .eraseblocks = { {4 * 1024, 256} },
1843 .block_erase = spi_block_erase_20,
1844 }, {
1845 .eraseblocks = { {32 * 1024, 32} },
1846 .block_erase = spi_block_erase_52,
1847 }, {
1848 .eraseblocks = { {64 * 1024, 16} },
1849 .block_erase = spi_block_erase_d8,
1850 }, {
1851 .eraseblocks = { {1 * 1024 * 1024, 1} },
1852 .block_erase = spi_block_erase_60,
1853 }, {
1854 .eraseblocks = { {1 * 1024 * 1024, 1} },
1855 .block_erase = spi_block_erase_c7,
1856 }
1857 },
1858 .printlock = spi_prettyprint_status_register_at25df_sec,
1859 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
1860 .write = spi_chip_write_256, /* Dual I/O (0xA2) supported */
1861 .read = spi_chip_read, /* Fast read (0x0B), dual I/O (0x3B) supported */
1862 .voltage = {1650, 1950},
1863 },
1864
1865 {
1866 .vendor = "Atmel",
1867 .name = "AT25DL161",
1868 .bustype = BUS_SPI,
1869 .manufacture_id = ATMEL_ID,
1870 .model_id = ATMEL_AT25DL161,
1871 .total_size = 2048,
1872 .page_size = 256,
1873 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1874 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
1875 .tested = TEST_UNTESTED,
1876 .probe = probe_spi_rdid,
1877 .probe_timing = TIMING_ZERO,
1878 .block_erasers =
1879 {
1880 {
1881 .eraseblocks = { {4 * 1024, 512} },
1882 .block_erase = spi_block_erase_20,
1883 }, {
1884 .eraseblocks = { {32 * 1024, 64} },
1885 .block_erase = spi_block_erase_52,
1886 }, {
1887 .eraseblocks = { {64 * 1024, 32} },
1888 .block_erase = spi_block_erase_d8,
1889 }, {
1890 .eraseblocks = { {2 * 1024 * 1024, 1} },
1891 .block_erase = spi_block_erase_60,
1892 }, {
1893 .eraseblocks = { {2 * 1024 * 1024, 1} },
1894 .block_erase = spi_block_erase_c7,
1895 }
1896 },
1897 .printlock = spi_prettyprint_status_register_at25df_sec,
1898 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
1899 .write = spi_chip_write_256, /* Dual I/O (0xA2) supported */
1900 .read = spi_chip_read, /* Fast read (0x0B), dual I/O (0x3B) supported */
1901 .voltage = {1650, 1950},
1902 },
1903
1904 {
1905 .vendor = "Atmel",
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001906 .name = "AT25DQ161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001907 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001908 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001909 .model_id = ATMEL_AT25DQ161,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001910 .total_size = 2048,
1911 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001912 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1913 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001914 .tested = TEST_UNTESTED,
1915 .probe = probe_spi_rdid,
1916 .probe_timing = TIMING_ZERO,
1917 .block_erasers =
1918 {
1919 {
1920 .eraseblocks = { {4 * 1024, 512} },
1921 .block_erase = spi_block_erase_20,
1922 }, {
1923 .eraseblocks = { {32 * 1024, 64} },
1924 .block_erase = spi_block_erase_52,
1925 }, {
1926 .eraseblocks = { {64 * 1024, 32} },
1927 .block_erase = spi_block_erase_d8,
1928 }, {
1929 .eraseblocks = { {2 * 1024 * 1024, 1} },
1930 .block_erase = spi_block_erase_60,
1931 }, {
1932 .eraseblocks = { {2 * 1024 * 1024, 1} },
1933 .block_erase = spi_block_erase_c7,
1934 }
1935 },
1936 .printlock = spi_prettyprint_status_register_at25df_sec,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001937 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001938 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001939 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001940 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001941 },
1942
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001943 {
1944 .vendor = "Atmel",
Stefan Tauner57794ac2012-12-29 15:04:20 +00001945 .name = "AT25F512",
1946 .bustype = BUS_SPI,
1947 .manufacture_id = ATMEL_ID,
1948 .model_id = ATMEL_AT25F512,
1949 .total_size = 64,
1950 .page_size = 256,
1951 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00001952 .tested = TEST_OK_PREW,
Stefan Tauner57794ac2012-12-29 15:04:20 +00001953 .probe = probe_spi_at25f,
1954 .probe_timing = TIMING_ZERO,
1955 .block_erasers =
1956 {
1957 {
1958 .eraseblocks = { {32 * 1024, 2} },
1959 .block_erase = spi_block_erase_52,
1960 }, {
1961 .eraseblocks = { {64 * 1024, 1} },
1962 .block_erase = spi_block_erase_62,
1963 }
1964 },
1965 .printlock = spi_prettyprint_status_register_at25f,
1966 .unlock = spi_disable_blockprotect_at25f,
1967 .write = spi_chip_write_256,
1968 .read = spi_chip_read,
1969 .voltage = {2700, 3600},
1970 },
1971
1972 {
1973 .vendor = "Atmel",
1974 .name = "AT25F512A",
1975 .bustype = BUS_SPI,
1976 .manufacture_id = ATMEL_ID,
1977 .model_id = ATMEL_AT25F512A,
1978 .total_size = 64,
1979 .page_size = 128,
1980 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00001981 .tested = TEST_OK_PREW,
Stefan Tauner57794ac2012-12-29 15:04:20 +00001982 .probe = probe_spi_at25f,
1983 .probe_timing = TIMING_ZERO,
1984 .block_erasers =
1985 {
1986 {
1987 .eraseblocks = { {32 * 1024, 2} },
1988 .block_erase = spi_block_erase_52,
1989 }, {
1990 .eraseblocks = { {64 * 1024, 1} },
1991 .block_erase = spi_block_erase_62,
1992 }
1993 },
1994 .printlock = spi_prettyprint_status_register_at25f512a,
1995 /* FIXME: It is not correct to use this one, because the BP1 bit is N/A. */
1996 .unlock = spi_disable_blockprotect_at25f512a,
1997 .write = spi_chip_write_256,
1998 .read = spi_chip_read,
1999 .voltage = {2700, 3600},
2000 },
2001
2002 {
2003 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002004 .name = "AT25F512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002005 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002006 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002007 .model_id = ATMEL_AT25F512B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002008 .total_size = 64,
2009 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00002010 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2011 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002012 .tested = TEST_UNTESTED,
2013 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002014 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002015 .block_erasers =
2016 {
2017 {
2018 .eraseblocks = { {4 * 1024, 16} },
2019 .block_erase = spi_block_erase_20,
2020 }, {
2021 .eraseblocks = { {32 * 1024, 2} },
2022 .block_erase = spi_block_erase_52,
2023 }, {
2024 .eraseblocks = { {32 * 1024, 2} },
2025 .block_erase = spi_block_erase_d8,
2026 }, {
2027 .eraseblocks = { {64 * 1024, 1} },
2028 .block_erase = spi_block_erase_60,
2029 }, {
2030 .eraseblocks = { {64 * 1024, 1} },
2031 .block_erase = spi_block_erase_c7,
Stefan Tauner3c0fcd02012-09-21 12:46:56 +00002032 }, {
2033 .eraseblocks = { {64 * 1024, 1} },
2034 .block_erase = spi_block_erase_62,
Sean Nelson89187292009-12-23 12:02:55 +00002035 }
2036 },
Stefan Tauner7bf4ed92012-08-26 21:04:27 +00002037 .printlock = spi_prettyprint_status_register_at25f512b,
2038 .unlock = spi_disable_blockprotect_at25f512b,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002039 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002040 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002041 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002042 },
2043
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002044 {
2045 .vendor = "Atmel",
Stefan Tauner57794ac2012-12-29 15:04:20 +00002046 /* The A suffix indicates 33MHz instead of 20MHz clock rate.
2047 * All other properties seem to be the same.*/
2048 .name = "AT25F1024(A)",
2049 .bustype = BUS_SPI,
2050 .manufacture_id = ATMEL_ID,
2051 .model_id = ATMEL_AT25F1024,
2052 .total_size = 128,
2053 .page_size = 256,
2054 .feature_bits = FEATURE_WRSR_WREN,
2055 .tested = TEST_OK_PREW,
2056 .probe = probe_spi_at25f,
2057 .probe_timing = TIMING_ZERO,
2058 .block_erasers =
2059 {
2060 {
2061 .eraseblocks = { {32 * 1024, 4} },
2062 .block_erase = spi_block_erase_52,
2063 }, {
2064 .eraseblocks = { {128 * 1024, 1} },
2065 .block_erase = spi_block_erase_62,
2066 }
2067 },
2068 .printlock = spi_prettyprint_status_register_at25f,
2069 .unlock = spi_disable_blockprotect_at25f,
2070 .write = spi_chip_write_256,
2071 .read = spi_chip_read,
2072 .voltage = {2700, 3600},
2073 },
2074
2075 {
2076 .vendor = "Atmel",
2077 .name = "AT25F2048",
2078 .bustype = BUS_SPI,
2079 .manufacture_id = ATMEL_ID,
2080 .model_id = ATMEL_AT25F2048,
2081 .total_size = 256,
2082 .page_size = 256,
2083 .feature_bits = FEATURE_WRSR_WREN,
2084 .tested = TEST_UNTESTED,
2085 .probe = probe_spi_at25f,
2086 .probe_timing = TIMING_ZERO,
2087 .block_erasers =
2088 {
2089 {
2090 .eraseblocks = { {64 * 1024, 4} },
2091 .block_erase = spi_block_erase_52,
2092 }, {
2093 .eraseblocks = { {256 * 1024, 1} },
2094 .block_erase = spi_block_erase_62,
2095 }
2096 },
2097 .printlock = spi_prettyprint_status_register_at25f,
2098 .unlock = spi_disable_blockprotect_at25f,
2099 .write = spi_chip_write_256,
2100 .read = spi_chip_read,
2101 .voltage = {2700, 3600},
2102 },
2103
2104 {
2105 .vendor = "Atmel",
2106 .name = "AT25F4096",
2107 .bustype = BUS_SPI,
2108 .manufacture_id = ATMEL_ID,
2109 .model_id = ATMEL_AT25F4096,
2110 .total_size = 512,
2111 .page_size = 256,
2112 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner6697f712014-08-06 15:09:15 +00002113 .tested = TEST_OK_PREW,
Stefan Tauner57794ac2012-12-29 15:04:20 +00002114 .probe = probe_spi_at25f,
2115 .probe_timing = TIMING_ZERO,
2116 .block_erasers =
2117 {
2118 {
2119 .eraseblocks = { {64 * 1024, 8} },
2120 .block_erase = spi_block_erase_52,
2121 }, {
2122 .eraseblocks = { {512 * 1024, 1} },
2123 .block_erase = spi_block_erase_62,
2124 }
2125 },
2126 .printlock = spi_prettyprint_status_register_at25f4096,
Stefan Tauner278ba6e2013-06-28 21:28:27 +00002127 /* "Bits 5-6 are 0s when device is not in an internal write cycle." Better leave them alone: */
2128 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner57794ac2012-12-29 15:04:20 +00002129 .write = spi_chip_write_256,
2130 .read = spi_chip_read,
2131 .voltage = {2700, 3600},
2132 },
2133
2134 {
2135 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002136 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002137 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002138 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002139 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002140 .total_size = 128,
2141 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002142 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00002143 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002144 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002145 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002146 .block_erasers =
2147 {
2148 {
2149 .eraseblocks = { {4 * 1024, 32} },
2150 .block_erase = spi_block_erase_20,
2151 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002152 .eraseblocks = { {4 * 1024, 32} },
2153 .block_erase = spi_block_erase_d7,
2154 }, {
Sean Nelson89187292009-12-23 12:02:55 +00002155 .eraseblocks = { {32 * 1024, 4} },
2156 .block_erase = spi_block_erase_52,
2157 }, {
2158 .eraseblocks = { {32 * 1024, 4} },
2159 .block_erase = spi_block_erase_d8,
2160 }, {
2161 .eraseblocks = { {128 * 1024, 1} },
2162 .block_erase = spi_block_erase_60,
2163 }, {
2164 .eraseblocks = { {128 * 1024, 1} },
2165 .block_erase = spi_block_erase_c7,
2166 }
2167 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002168 .printlock = spi_prettyprint_status_register_at25fs010,
2169 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002170 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002171 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002172 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002173 },
2174
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002175 {
2176 .vendor = "Atmel",
2177 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002178 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002179 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002180 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002181 .total_size = 512,
2182 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002183 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002184 .tested = TEST_UNTESTED,
2185 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002186 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002187 .block_erasers =
2188 {
2189 {
2190 .eraseblocks = { {4 * 1024, 128} },
2191 .block_erase = spi_block_erase_20,
2192 }, {
2193 .eraseblocks = { {64 * 1024, 8} },
2194 .block_erase = spi_block_erase_52,
2195 }, {
2196 .eraseblocks = { {64 * 1024, 8} },
2197 .block_erase = spi_block_erase_d8,
2198 }, {
2199 .eraseblocks = { {512 * 1024, 1} },
2200 .block_erase = spi_block_erase_60,
2201 }, {
2202 .eraseblocks = { {512 * 1024, 1} },
2203 .block_erase = spi_block_erase_c7,
2204 }
2205 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00002206 .printlock = spi_prettyprint_status_register_at25fs040,
2207 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002208 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002209 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002210 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002211 },
2212
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002213 {
2214 .vendor = "Atmel",
jvma3ab6c62018-03-08 15:43:20 +01002215 .name = "AT25SF041",
2216 .bustype = BUS_SPI,
2217 .manufacture_id = ATMEL_ID,
2218 .model_id = ATMEL_AT25SF041,
2219 .total_size = 512,
2220 .page_size = 256,
2221 .feature_bits = FEATURE_WRSR_WREN,
2222 .tested = TEST_OK_PREW,
2223 .probe = probe_spi_rdid,
2224 .probe_timing = TIMING_ZERO,
2225 .block_erasers =
2226 {
2227 {
2228 .eraseblocks = { {4 * 1024, 128} },
2229 .block_erase = spi_block_erase_20,
2230 }, {
2231 .eraseblocks = { {32 * 1024, 16} },
2232 .block_erase = spi_block_erase_52,
2233 }, {
2234 .eraseblocks = { {64 * 1024, 8} },
2235 .block_erase = spi_block_erase_d8,
2236 }, {
2237 .eraseblocks = { {512 * 1024, 1} },
2238 .block_erase = spi_block_erase_60,
2239 }, {
2240 .eraseblocks = { {512 * 1024, 1} },
2241 .block_erase = spi_block_erase_c7,
2242 }
2243 },
2244 .printlock = spi_prettyprint_status_register_plain,
2245 .unlock = spi_disable_blockprotect,
2246 .write = spi_chip_write_256,
2247 .read = spi_chip_read,
2248 .voltage = {2500, 3600},
2249 },
2250
2251 {
2252 .vendor = "Atmel",
Evan Jensen291c1012018-05-17 14:30:19 -07002253 .name = "AT25SF081",
2254 .bustype = BUS_SPI,
2255 .manufacture_id = ATMEL_ID,
2256 .model_id = ATMEL_AT25SF081,
2257 .total_size = 1024,
2258 .page_size = 256,
2259 .feature_bits = FEATURE_WRSR_WREN,
2260 .tested = TEST_OK_PREW,
2261 .probe = probe_spi_rdid,
2262 .probe_timing = TIMING_ZERO,
2263 .block_erasers =
2264 {
2265 {
2266 .eraseblocks = { {4 * 1024, 256} },
2267 .block_erase = spi_block_erase_20,
2268 }, {
2269 .eraseblocks = { {32 * 1024, 32} },
2270 .block_erase = spi_block_erase_52,
2271 }, {
2272 .eraseblocks = { {64 * 1024, 16} },
2273 .block_erase = spi_block_erase_d8,
2274 }, {
2275 .eraseblocks = { {1024 * 1024, 1} },
2276 .block_erase = spi_block_erase_60,
2277 }, {
2278 .eraseblocks = { {1024 * 1024, 1} },
2279 .block_erase = spi_block_erase_c7,
2280 }
2281 },
2282 .printlock = spi_prettyprint_status_register_plain,
2283 .unlock = spi_disable_blockprotect,
2284 .write = spi_chip_write_256,
2285 .read = spi_chip_read,
2286 .voltage = {2300, 3600},
2287 },
2288
2289 {
2290 .vendor = "Atmel",
Stanislav Sedovf5775442018-03-07 14:16:51 -08002291 .name = "AT25SF161",
2292 .bustype = BUS_SPI,
2293 .manufacture_id = ATMEL_ID,
2294 .model_id = ATMEL_AT25SF161,
2295 .total_size = 2048,
2296 .page_size = 256,
2297 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
2298 .tested = TEST_OK_PREW,
2299 .probe = probe_spi_rdid,
2300 .probe_timing = TIMING_ZERO,
2301 .block_erasers =
2302 {
2303 {
2304 .eraseblocks = { {4 * 1024, 512} },
2305 .block_erase = spi_block_erase_20,
2306 }, {
2307 .eraseblocks = { {32 * 1024, 64} },
2308 .block_erase = spi_block_erase_52,
2309 }, {
2310 .eraseblocks = { {64 * 1024, 32} },
2311 .block_erase = spi_block_erase_d8,
2312 }, {
2313 .eraseblocks = { {2048 * 1024, 1} },
2314 .block_erase = spi_block_erase_60,
2315 }, {
2316 .eraseblocks = { {2048 * 1024, 1} },
2317 .block_erase = spi_block_erase_c7,
2318 }
2319 },
2320 .printlock = spi_prettyprint_status_register_plain,
2321 .unlock = spi_disable_blockprotect,
2322 .write = spi_chip_write_256,
2323 .read = spi_chip_read,
2324 .voltage = {2500, 3600},
2325 },
2326
2327 {
2328 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002329 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002330 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002331 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002332 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002333 .total_size = 512,
2334 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002335 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner94b39b42012-10-27 00:06:02 +00002336 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002337 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002338 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002339 .block_erasers =
2340 {
2341 {
Stefan Tauner94b39b42012-10-27 00:06:02 +00002342 .eraseblocks = { {256, 2048} },
2343 .block_erase = spi_block_erase_81,
2344 }, {
2345 .eraseblocks = { {2 * 1024, 256} },
2346 .block_erase = spi_block_erase_50,
2347 }, {
Sean Nelson89187292009-12-23 12:02:55 +00002348 .eraseblocks = { {4 * 1024, 128} },
2349 .block_erase = spi_block_erase_20,
2350 }
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002351 },
Stefan Taunercecb2c52013-06-20 22:55:41 +00002352 .printlock = spi_prettyprint_status_register_plain,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002353 /* Supports also an incompatible page write (of exactly 256 B) and an auto-erasing write. */
Stefan Tauner94b39b42012-10-27 00:06:02 +00002354 .write = spi_chip_write_1,
2355 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002356 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00002357 },
2358
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002359 {
2360 .vendor = "Atmel",
2361 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002362 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002363 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002364 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002365 .total_size = 1024,
2366 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00002367 .feature_bits = FEATURE_WRSR_WREN,
2368 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002369 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002370 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002371 .block_erasers =
2372 {
2373 {
2374 .eraseblocks = { {4 * 1024, 256} },
2375 .block_erase = spi_block_erase_20,
2376 }, {
2377 .eraseblocks = { {32 * 1024, 32} },
2378 .block_erase = spi_block_erase_52,
2379 }, {
2380 .eraseblocks = { {64 * 1024, 16} },
2381 .block_erase = spi_block_erase_d8,
2382 }, {
2383 .eraseblocks = { {1024 * 1024, 1} },
2384 .block_erase = spi_block_erase_60,
2385 }, {
2386 .eraseblocks = { {1024 * 1024, 1} },
2387 .block_erase = spi_block_erase_c7,
2388 }
2389 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002390 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002391 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002392 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002393 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002394 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002395 },
2396
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002397 {
2398 .vendor = "Atmel",
2399 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002400 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002401 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002402 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002403 .total_size = 2048,
2404 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002405 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00002406 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002407 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002408 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002409 .block_erasers =
2410 {
2411 {
2412 .eraseblocks = { {4 * 1024, 512} },
2413 .block_erase = spi_block_erase_20,
2414 }, {
2415 .eraseblocks = { {32 * 1024, 64} },
2416 .block_erase = spi_block_erase_52,
2417 }, {
2418 .eraseblocks = { {64 * 1024, 32} },
2419 .block_erase = spi_block_erase_d8,
2420 }, {
2421 .eraseblocks = { {2 * 1024 * 1024, 1} },
2422 .block_erase = spi_block_erase_60,
2423 }, {
2424 .eraseblocks = { {2 * 1024 * 1024, 1} },
2425 .block_erase = spi_block_erase_c7,
2426 }
2427 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00002428 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002429 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002430 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002431 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002432 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002433 },
2434
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002435 {
2436 .vendor = "Atmel",
2437 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002438 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002439 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002440 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002441 .total_size = 2048,
2442 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002443 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002444 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002445 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002446 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002447 .block_erasers =
2448 {
2449 {
2450 .eraseblocks = { {4 * 1024, 512} },
2451 .block_erase = spi_block_erase_20,
2452 }, {
2453 .eraseblocks = { {32 * 1024, 64} },
2454 .block_erase = spi_block_erase_52,
2455 }, {
2456 .eraseblocks = { {64 * 1024, 32} },
2457 .block_erase = spi_block_erase_d8,
2458 }, {
2459 .eraseblocks = { {2 * 1024 * 1024, 1} },
2460 .block_erase = spi_block_erase_60,
2461 }, {
2462 .eraseblocks = { {2 * 1024 * 1024, 1} },
2463 .block_erase = spi_block_erase_c7,
2464 }
2465 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002466 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002467 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002468 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002469 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002470 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002471 },
2472
2473 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002474 /*{
2475 .vendor = "Atmel",
2476 .name = "AT26DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002477 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002478 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002479 .model_id = ATMEL_AT26DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002480 .total_size = 4096,
2481 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002482 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002483 .tested = TEST_UNTESTED,
2484 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002485 .probe_timing = TIMING_ZERO,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002486 .printlock = spi_prettyprint_status_register_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002487 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002488 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002489 .read = spi_chip_read,
2490 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00002491
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002492 {
2493 .vendor = "Atmel",
2494 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002495 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002496 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002497 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002498 .total_size = 512,
2499 .page_size = 256,
Stefan Tauner6455dff2014-05-26 00:36:24 +00002500 .tested = {.probe = NT, .read = NT, .erase = NT, .write = BAD },
Steven Zakulec3603a282012-05-02 20:07:57 +00002501 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002502 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002503 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002504 .block_erasers =
2505 {
2506 {
2507 .eraseblocks = { {4 * 1024, 128} },
2508 .block_erase = spi_block_erase_20,
2509 }, {
2510 .eraseblocks = { {32 * 1024, 16} },
2511 .block_erase = spi_block_erase_52,
2512 }, {
2513 .eraseblocks = { {64 * 1024, 8} },
2514 .block_erase = spi_block_erase_d8,
2515 }, {
2516 .eraseblocks = { {512 * 1024, 1} },
2517 .block_erase = spi_block_erase_60,
2518 }, {
2519 .eraseblocks = { {512 * 1024, 1} },
2520 .block_erase = spi_block_erase_c7,
2521 }
2522 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002523 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002524 .write = NULL /* Incompatible Page write */,
2525 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002526 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002527 },
2528
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002529 {
2530 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002531 .name = "AT29C512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002532 .bustype = BUS_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002533 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002534 .model_id = ATMEL_AT29C512,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002535 .total_size = 64,
2536 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002537 .feature_bits = FEATURE_LONG_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00002538 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00002539 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002540 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002541 .block_erasers =
2542 {
2543 {
2544 .eraseblocks = { {64 * 1024, 1} },
2545 .block_erase = erase_chip_block_jedec,
2546 }
2547 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002548 .write = write_jedec,
2549 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002550 .voltage = {4500, 5500},
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002551 },
2552
2553 {
2554 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002555 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002556 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002557 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002558 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002559 .total_size = 128,
2560 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002561 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002562 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002563 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002564 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002565 .block_erasers =
2566 {
2567 {
2568 .eraseblocks = { {128 * 1024, 1} },
2569 .block_erase = erase_chip_block_jedec,
2570 }
2571 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002572 .write = write_jedec, /* FIXME */
2573 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002574 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002575 },
2576
2577 {
2578 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002579 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002580 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002581 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002582 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002583 .total_size = 256,
2584 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002585 .feature_bits = FEATURE_LONG_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00002586 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002587 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002588 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002589 .block_erasers =
2590 {
2591 {
2592 .eraseblocks = { {256 * 1024, 1} },
2593 .block_erase = erase_chip_block_jedec,
2594 }
2595 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002596 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002597 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002598 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002599 },
2600
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002601 {
2602 .vendor = "Atmel",
2603 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002604 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002605 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002606 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002607 .total_size = 512,
2608 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002609 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002610 .tested = TEST_UNTESTED,
2611 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002612 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002613 .block_erasers =
2614 {
2615 {
2616 .eraseblocks = { {512 * 1024, 1} },
2617 .block_erase = erase_chip_block_jedec,
2618 }
2619 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002620 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002621 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002622 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002623 },
2624
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002625 {
2626 .vendor = "Atmel",
2627 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002628 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002629 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002630 .model_id = ATMEL_AT45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002631 .total_size = 16896 /* No power of two sizes */,
2632 .page_size = 1056 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002633 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +00002634 /* OTP: 128B total, 64B pre-programmed; read 0x77 (4 dummy bytes); write 0x9A (via buffer) */
2635 .feature_bits = FEATURE_OTP,
2636 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002637 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002638 .probe_timing = TIMING_ZERO,
Stefan Tauner1dd5d3a2013-08-27 18:02:19 +00002639 .block_erasers =
2640 {
2641 {
2642 .eraseblocks = {
2643 {8 * 1056, 1}, /* sector 0a: opcode 50h */
2644 {248 * 1056, 1}, /* sector 0b: opcode 7Ch */
2645 {256 * 1056, 63}, /* sectors 1 - 63: opcode 7Ch */
2646 },
2647 .block_erase = spi_erase_at45cs_sector,
2648 }
2649 },
2650 .printlock = spi_prettyprint_status_register_plain,
2651 .gran = write_gran_1056bytes,
2652 .write = spi_write_at45db,
2653 .read = spi_read_at45db,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002654 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002655 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002656
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002657 {
2658 .vendor = "Atmel",
2659 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002660 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002661 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002662 .model_id = ATMEL_AT45DB011D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002663 .total_size = 128 /* or 132, determined from status register */,
2664 .page_size = 256 /* or 264, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002665 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002666 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2667 .feature_bits = FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +00002668 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002669 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002670 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002671 .block_erasers =
2672 {
2673 {
2674 .eraseblocks = { {256, 512} },
2675 .block_erase = spi_erase_at45db_page,
2676 }, {
2677 .eraseblocks = { {8 * 256, 512/8} },
2678 .block_erase = spi_erase_at45db_block,
2679 }, {
2680 .eraseblocks = {
2681 {8 * 256, 1},
2682 {120 * 256, 1},
2683 {128 * 256, 3},
2684 },
2685 .block_erase = spi_erase_at45db_sector
2686 }, {
2687 .eraseblocks = { {128 * 1024, 1} },
2688 .block_erase = spi_erase_at45db_chip,
2689 }
2690 },
2691 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2692 .printlock = spi_prettyprint_status_register_at45db,
2693 /* granularity will be set by the probing function. */
2694 .write = spi_write_at45db,
2695 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002696 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002697 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002698
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002699 {
2700 .vendor = "Atmel",
2701 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002702 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002703 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002704 .model_id = ATMEL_AT45DB021D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002705 .total_size = 256 /* or 264, determined from status register */,
2706 .page_size = 256 /* or 264, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002707 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002708 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2709 .feature_bits = FEATURE_OTP,
Stefan Tauner6697f712014-08-06 15:09:15 +00002710 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002711 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002712 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002713 .block_erasers =
2714 {
2715 {
2716 .eraseblocks = { {256, 1024} },
2717 .block_erase = spi_erase_at45db_page,
2718 }, {
2719 .eraseblocks = { {8 * 256, 1024/8} },
2720 .block_erase = spi_erase_at45db_block,
2721 }, {
2722 .eraseblocks = {
2723 {8 * 256, 1},
2724 {120 * 256, 1},
2725 {128 * 256, 7},
2726 },
2727 .block_erase = spi_erase_at45db_sector
2728 }, {
2729 .eraseblocks = { {256 * 1024, 1} },
2730 .block_erase = spi_erase_at45db_chip,
2731 }
2732 },
2733 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2734 .printlock = spi_prettyprint_status_register_at45db,
2735 /* granularity will be set by the probing function. */
2736 .write = spi_write_at45db,
2737 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002738 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002739 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002740
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002741 {
2742 .vendor = "Atmel",
2743 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002744 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002745 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002746 .model_id = ATMEL_AT45DB041D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002747 .total_size = 512 /* or 528, determined from status register */,
2748 .page_size = 256 /* or 264, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002749 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002750 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2751 .feature_bits = FEATURE_OTP,
2752 .tested = TEST_OK_PREW,
2753 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002754 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002755 .block_erasers =
2756 {
2757 {
2758 .eraseblocks = { {256, 2048} },
2759 .block_erase = spi_erase_at45db_page,
2760 }, {
2761 .eraseblocks = { {8 * 256, 2048/8} },
2762 .block_erase = spi_erase_at45db_block,
2763 }, {
2764 .eraseblocks = {
2765 {8 * 256, 1},
2766 {248 * 256, 1},
2767 {256 * 256, 7},
2768 },
2769 .block_erase = spi_erase_at45db_sector
2770 }, {
2771 .eraseblocks = { {512 * 1024, 1} },
2772 .block_erase = spi_erase_at45db_chip,
2773 }
2774 },
2775 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2776 .printlock = spi_prettyprint_status_register_at45db,
2777 /* granularity will be set by the probing function. */
2778 .write = spi_write_at45db,
2779 .read = spi_read_at45db, /* Fast read (0x0B) supported */
2780 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002781 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002782
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002783 {
2784 .vendor = "Atmel",
2785 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002786 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002787 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002788 .model_id = ATMEL_AT45DB081D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002789 .total_size = 1024 /* or 1056, determined from status register */,
2790 .page_size = 256 /* or 264, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002791 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002792 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2793 .feature_bits = FEATURE_OTP,
2794 .tested = TEST_UNTESTED,
2795 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002796 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002797 .block_erasers =
2798 {
2799 {
2800 .eraseblocks = { {256, 4096} },
2801 .block_erase = spi_erase_at45db_page,
2802 }, {
2803 .eraseblocks = { {8 * 256, 4096/8} },
2804 .block_erase = spi_erase_at45db_block,
2805 }, {
2806 .eraseblocks = {
2807 {8 * 256, 1},
2808 {248 * 256, 1},
2809 {256 * 256, 15},
2810 },
2811 .block_erase = spi_erase_at45db_sector
2812 }, {
2813 .eraseblocks = { {1024 * 1024, 1} },
2814 .block_erase = spi_erase_at45db_chip,
2815 }
2816 },
2817 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2818 .printlock = spi_prettyprint_status_register_at45db,
2819 /* granularity will be set by the probing function. */
2820 .write = spi_write_at45db,
2821 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002822 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002823 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002824
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002825 {
2826 .vendor = "Atmel",
2827 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002828 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002829 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002830 .model_id = ATMEL_AT45DB161D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002831 .total_size = 2048 /* or 2112, determined from status register */,
2832 .page_size = 512 /* or 528, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002833 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002834 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2835 .feature_bits = FEATURE_OTP,
2836 .tested = TEST_OK_PREW,
2837 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002838 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002839 .block_erasers =
2840 {
2841 {
2842 .eraseblocks = { {512, 4096} },
2843 .block_erase = spi_erase_at45db_page,
2844 }, {
2845 .eraseblocks = { {8 * 512, 4096/8} },
2846 .block_erase = spi_erase_at45db_block,
2847 }, {
2848 .eraseblocks = {
2849 {8 * 512, 1},
2850 {248 * 512, 1},
2851 {256 * 512, 15},
2852 },
2853 .block_erase = spi_erase_at45db_sector
2854 }, {
2855 .eraseblocks = { {2048 * 1024, 1} },
2856 .block_erase = spi_erase_at45db_chip,
2857 }
2858 },
2859 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2860 .printlock = spi_prettyprint_status_register_at45db,
2861 /* granularity will be set by the probing function. */
2862 .write = spi_write_at45db,
2863 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00002864 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002865 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002866
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002867 {
2868 .vendor = "Atmel",
2869 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002870 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002871 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002872 .model_id = ATMEL_AT45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002873 .total_size = 4224 /* No power of two sizes */,
2874 .page_size = 528 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002875 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002876 /* OTP: 128B total, 64B pre-programmed; read 0x77 (4 dummy bytes); write 0x9A (via buffer) */
2877 .feature_bits = FEATURE_OTP,
2878 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002879 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002880 .probe_timing = TIMING_ZERO,
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002881 .block_erasers =
2882 {
2883 {
2884 .eraseblocks = { {528, 8192} },
2885 .block_erase = spi_erase_at45db_page,
2886 }, {
2887 .eraseblocks = { {8 * 528, 8192/8} },
2888 .block_erase = spi_erase_at45db_block,
2889 }, /* Although the datasheets describes sectors (which can be write protected)
2890 * there seems to be no erase functions for them.
Stefan Tauner23e10b82016-01-23 16:16:49 +00002891 {
Stefan Taunerfdc4f7e2013-08-27 18:02:12 +00002892 .eraseblocks = {
2893 {8 * 528, 1},
2894 {120 * 528, 1},
2895 {128 * 528, 63},
2896 },
2897 .block_erase = spi_erase_at45db_sector
2898 }, */ {
2899 .eraseblocks = { {4224 * 1024, 1} },
2900 .block_erase = spi_erase_at45db_chip,
2901 }
2902 },
2903 .printlock = spi_prettyprint_status_register_at45db, /* Bit 0 is undefined, no lockdown */
2904 .gran = write_gran_528bytes,
2905 .write = spi_write_at45db,
2906 .read = spi_read_at45db_e8, /* 3 address and 4 dummy bytes */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002907 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002908 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002909
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002910 {
2911 .vendor = "Atmel",
2912 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002913 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002914 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002915 .model_id = ATMEL_AT45DB321D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002916 .total_size = 4096 /* or 4224, determined from status register */,
2917 .page_size = 512 /* or 528, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002918 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002919 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Daniel Lenski65922a32012-02-15 23:40:23 +00002920 .feature_bits = FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00002921 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002922 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002923 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00002924 .block_erasers =
2925 {
2926 {
2927 .eraseblocks = { {512, 8192} },
2928 .block_erase = spi_erase_at45db_page,
2929 }, {
2930 .eraseblocks = { {8 * 512, 8192/8} },
2931 .block_erase = spi_erase_at45db_block,
2932 }, {
2933 .eraseblocks = {
2934 {8 * 512, 1},
2935 {120 * 512, 1},
2936 {128 * 512, 63},
2937 },
2938 .block_erase = spi_erase_at45db_sector
2939 }, {
2940 .eraseblocks = { {4096 * 1024, 1} },
2941 .block_erase = spi_erase_at45db_chip,
2942 }
2943 },
2944 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2945 .printlock = spi_prettyprint_status_register_at45db,
2946 /* granularity will be set by the probing function. */
2947 .write = spi_write_at45db,
2948 .read = spi_read_at45db, /* Fast read (0x0B) supported */
2949 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
2950 },
2951
2952 {
2953 .vendor = "Atmel",
2954 .name = "AT45DB321E",
2955 .bustype = BUS_SPI,
2956 .manufacture_id = ATMEL_ID,
2957 .model_id = ATMEL_AT45DB321C,
2958 .total_size = 4096 /* or 4224, determined from status register */,
2959 .page_size = 512 /* or 528, determined from status register */,
2960 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
2961 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
2962 .feature_bits = FEATURE_OTP,
2963 .tested = TEST_UNTESTED,
2964 .probe = probe_spi_at45db,
2965 .probe_timing = TIMING_ZERO,
2966 .block_erasers =
2967 {
2968 {
2969 .eraseblocks = { {512, 8192} },
2970 .block_erase = spi_erase_at45db_page,
2971 }, {
2972 .eraseblocks = { {8 * 512, 8192/8} },
2973 .block_erase = spi_erase_at45db_block,
2974 }, {
2975 .eraseblocks = {
2976 {8 * 512, 1},
2977 {120 * 512, 1},
2978 {128 * 512, 63},
2979 },
2980 .block_erase = spi_erase_at45db_sector
2981 }, {
2982 .eraseblocks = { {4096 * 1024, 1} },
2983 .block_erase = spi_erase_at45db_chip,
2984 }
2985 },
2986 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
2987 .printlock = spi_prettyprint_status_register_at45db, /* has a 2nd status register */
2988 /* granularity will be set by the probing function. */
2989 .write = spi_write_at45db,
2990 .read = spi_read_at45db, /* Fast read (0x0B) supported */
2991 .voltage = {2500, 3600}, /* 2.3-3.6V & 2.5-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002992 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002993
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002994 {
2995 .vendor = "Atmel",
2996 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002997 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002998 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002999 .model_id = ATMEL_AT45DB642D,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003000 .total_size = 8192 /* or 8448, determined from status register */,
3001 .page_size = 1024 /* or 1056, determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00003002 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003003 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
3004 .feature_bits = FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +00003005 .tested = TEST_OK_PREW,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003006 .probe = probe_spi_at45db,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00003007 .probe_timing = TIMING_ZERO,
Aidan Thorntondb4e87d2013-08-27 18:01:53 +00003008 .block_erasers =
3009 {
3010 {
3011 .eraseblocks = { {1024, 8192} },
3012 .block_erase = spi_erase_at45db_page,
3013 }, {
3014 .eraseblocks = { {8 * 1024, 8192/8} },
3015 .block_erase = spi_erase_at45db_block,
3016 }, {
3017 .eraseblocks = {
3018 {8 * 1024, 1},
3019 {248 * 1024, 1},
3020 {256 * 1024, 31},
3021 },
3022 .block_erase = spi_erase_at45db_sector
3023 }, {
3024 .eraseblocks = { {8192 * 1024, 1} },
3025 .block_erase = spi_erase_at45db_chip,
3026 }
3027 },
3028 .unlock = spi_disable_blockprotect_at45db, /* Impossible if locked down or #WP is low */
3029 .printlock = spi_prettyprint_status_register_at45db,
3030 /* granularity will be set by the probing function. */
3031 .write = spi_write_at45db,
3032 .read = spi_read_at45db, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003033 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00003034 },
FENG yu ningff692fb2008-12-08 18:15:10 +00003035
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003036 {
3037 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003038 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003039 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003040 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003041 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003042 .total_size = 64,
3043 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00003044 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00003045 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003046 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003047 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003048 .block_erasers =
3049 {
3050 {
3051 .eraseblocks = { {64 * 1024, 1} },
3052 .block_erase = erase_chip_block_jedec,
3053 }
3054 },
Sean Nelson35727f72010-01-28 23:55:12 +00003055 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003056 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003057 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00003058 },
3059
3060 {
3061 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003062 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003063 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003064 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003065 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003066 .total_size = 256,
3067 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003068 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003069 .tested = TEST_UNTESTED,
3070 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003071 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003072 .block_erasers =
3073 {
3074 {
3075 .eraseblocks = {
3076 {16 * 1024, 1},
3077 {8 * 1024, 2},
3078 {96 * 1024, 1},
3079 {128 * 1024, 1},
3080 },
3081 .block_erase = erase_sector_jedec,
3082 }, {
3083 .eraseblocks = { {256 * 1024, 1} },
3084 .block_erase = erase_chip_block_jedec,
3085 }
3086 },
Sean Nelson35727f72010-01-28 23:55:12 +00003087 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003088 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003089 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003090 },
3091
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003092 {
3093 .vendor = "Atmel",
3094 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003095 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003096 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003097 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003098 .total_size = 256,
3099 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003100 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003101 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003102 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003103 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00003104 .block_erasers =
3105 {
3106 {
3107 .eraseblocks = {
3108 {128 * 1024, 1},
3109 {96 * 1024, 1},
3110 {8 * 1024, 2},
3111 {16 * 1024, 1},
3112 },
3113 .block_erase = erase_sector_jedec,
3114 }, {
3115 .eraseblocks = { {256 * 1024, 1} },
3116 .block_erase = erase_chip_block_jedec,
3117 }
3118 },
Sean Nelson35727f72010-01-28 23:55:12 +00003119 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003120 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003121 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003122 },
3123
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00003124 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00003125 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003126 .name = "AT49(H)F010",
3127 .bustype = BUS_PARALLEL,
3128 .manufacture_id = ATMEL_ID,
3129 .model_id = ATMEL_AT49F010,
3130 .total_size = 128,
3131 .page_size = 0, /* unused */
3132 .feature_bits = FEATURE_EITHER_RESET,
3133 .tested = TEST_OK_PREW,
3134 .probe = probe_jedec,
3135 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3136 .block_erasers =
3137 {
3138 {
3139 .eraseblocks = { {128 * 1024, 1} },
3140 .block_erase = erase_chip_block_jedec,
3141 }
3142 },
3143 .printlock = printlock_at49f,
Elyes HAOUAS124ef382018-03-27 12:15:09 +02003144 .write = write_jedec_1,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003145 .read = read_memmapped,
3146 .voltage = {4500, 5500},
3147 },
3148
3149 {
3150 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00003151 .name = "AT49F020",
3152 .bustype = BUS_PARALLEL,
3153 .manufacture_id = ATMEL_ID,
3154 .model_id = ATMEL_AT49F020,
3155 .total_size = 256,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003156 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00003157 .feature_bits = FEATURE_EITHER_RESET,
3158 .tested = TEST_OK_PRE,
3159 .probe = probe_jedec,
3160 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3161 .block_erasers =
3162 {
3163 {
3164 .eraseblocks = { {256 * 1024, 1} },
3165 .block_erase = erase_chip_block_jedec,
3166 }
3167 /* Chip features an optional permanent write protection
3168 * of the first 8 kB. The erase function is the same as
3169 * above, but 00000H to 01FFFH will not be erased.
3170 * FIXME: add another eraser when partial erasers are
3171 * supported.
3172 */
3173 },
3174 .printlock = printlock_at49f,
3175 .write = write_jedec_1,
3176 .read = read_memmapped,
3177 .voltage = {4500, 5500},
3178 },
3179
3180 {
3181 .vendor = "Atmel",
3182 .name = "AT49F040",
3183 .bustype = BUS_PARALLEL,
3184 .manufacture_id = ATMEL_ID,
3185 .model_id = ATMEL_AT49F040,
3186 .total_size = 512,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003187 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00003188 .feature_bits = FEATURE_EITHER_RESET,
3189 .tested = TEST_UNTESTED,
3190 .probe = probe_jedec,
3191 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3192 .block_erasers =
3193 {
3194 {
3195 .eraseblocks = { {512 * 1024, 1} },
3196 .block_erase = erase_chip_block_jedec,
3197 }
3198 /* Chip features an optional permanent write protection
3199 * of the first 16 kB. The erase function is the same as
3200 * above, but 00000H to 03FFFH will not be erased.
3201 * FIXME: add another eraser when partial erasers are
3202 * supported.
3203 */
3204 },
3205 .printlock = printlock_at49f,
3206 .write = write_jedec_1,
3207 .read = read_memmapped,
3208 .voltage = {4500, 5500},
3209 },
3210
3211 {
3212 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00003213 .name = "AT49F080",
3214 .bustype = BUS_PARALLEL,
3215 .manufacture_id = ATMEL_ID,
3216 .model_id = ATMEL_AT49F080,
3217 .total_size = 1024,
3218 .page_size = 0, /* unused */
3219 .feature_bits = FEATURE_EITHER_RESET,
3220 .tested = TEST_UNTESTED,
3221 .probe = probe_jedec,
3222 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3223 .block_erasers =
3224 {
3225 {
3226 .eraseblocks = { {1024 * 1024, 1} },
3227 .block_erase = erase_chip_block_jedec,
3228 }
3229 /* Chip features an optional permanent write protection
3230 * of the first 16 kB. The erase function is the same as
3231 * above, but 00000H to 03FFFH will not be erased.
3232 * FIXME: add another eraser when partial erasers are
3233 * supported.
3234 */
3235 },
3236 .printlock = printlock_at49f,
3237 .write = write_jedec_1,
3238 .read = read_memmapped,
3239 .voltage = {4500, 5500},
3240 },
3241
3242 {
3243 /* 'top' version of AT49F080. equal in all aspects but the boot block address */
3244 .vendor = "Atmel",
3245 .name = "AT49F080T",
3246 .bustype = BUS_PARALLEL,
3247 .manufacture_id = ATMEL_ID,
3248 .model_id = ATMEL_AT49F080T,
3249 .total_size = 1024,
3250 .page_size = 0, /* unused */
3251 .feature_bits = FEATURE_EITHER_RESET,
3252 .tested = TEST_UNTESTED,
3253 .probe = probe_jedec,
3254 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3255 .block_erasers =
3256 {
3257 {
3258 .eraseblocks = { {1024 * 1024, 1} },
3259 .block_erase = erase_chip_block_jedec,
3260 }
3261 /* Chip features an optional permanent write protection
3262 * of the first 16 kB. The erase function is the same as
3263 * above, but FC000H to FFFFFH will not be erased.
3264 * FIXME: add another eraser when partial erasers are
3265 * supported.
3266 */
3267 },
3268 .printlock = printlock_at49f,
3269 .write = write_jedec_1,
3270 .read = read_memmapped,
3271 .voltage = {4500, 5500},
3272 },
3273
3274 {
3275 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00003276 .name = "AT49LH002",
3277 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3278 .manufacture_id = ATMEL_ID,
3279 .model_id = ATMEL_AT49LH002,
3280 .total_size = 256,
3281 .page_size = 0, /* unused */
Stefan Tauner7de93932014-08-03 13:05:45 +00003282 .feature_bits = FEATURE_REGISTERMAP,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003283 .tested = TEST_UNTESTED,
Stefan Tauner7de93932014-08-03 13:05:45 +00003284 .probe = probe_82802ab,
3285 .probe_timing = TIMING_ZERO,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003286 .block_erasers =
3287 {
3288 {
3289 .eraseblocks = {
3290 {64 * 1024, 3},
3291 {32 * 1024, 1},
3292 {8 * 1024, 2},
3293 {16 * 1024, 1},
3294 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003295 .block_erase = NULL, /* TODO: Implement. */
Uwe Hermannc74e9772011-09-08 19:55:18 +00003296 }, {
3297 .eraseblocks = {
3298 {64 * 1024, 4},
3299 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003300 .block_erase = erase_block_82802ab,
3301 },
3302 },
3303 .printlock = printlock_regspace2_block_eraser_0,
3304 .unlock = unlock_regspace2_block_eraser_0,
3305 .write = write_82802ab,
3306 .read = read_memmapped,
3307 .voltage = {3000, 3600},
3308 },
3309
3310 {
3311 .vendor = "Atmel",
3312 .name = "AT49LH00B4",
3313 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3314 .manufacture_id = ATMEL_ID,
3315 .model_id = ATMEL_AT49LH00B4,
3316 .total_size = 512,
3317 .page_size = 0, /* unused */
3318 .feature_bits = FEATURE_REGISTERMAP,
3319 .tested = TEST_UNTESTED,
3320 .probe = probe_82802ab,
3321 .probe_timing = TIMING_ZERO,
3322 .block_erasers =
3323 {
3324 {
3325 .eraseblocks = {
3326 {8 * 1024, 2},
3327 {16 * 1024, 1},
3328 {32 * 1024, 1},
3329 {64 * 1024, 7},
3330 },
3331 .block_erase = NULL, /* TODO: Implement. */
3332 }, {
3333 .eraseblocks = {
3334 {64 * 1024, 8},
3335 },
3336 .block_erase = erase_block_82802ab,
3337 },
3338 },
3339 .printlock = printlock_regspace2_block_eraser_0,
3340 .unlock = unlock_regspace2_block_eraser_0,
3341 .write = write_82802ab,
3342 .read = read_memmapped,
3343 .voltage = {3000, 3600},
3344 },
3345
3346 {
3347 .vendor = "Atmel",
3348 .name = "AT49LH004",
3349 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
3350 .manufacture_id = ATMEL_ID,
3351 .model_id = ATMEL_AT49LH004,
3352 .total_size = 512,
3353 .page_size = 0, /* unused */
3354 .feature_bits = FEATURE_REGISTERMAP,
3355 .tested = TEST_UNTESTED,
3356 .probe = probe_82802ab,
3357 .probe_timing = TIMING_ZERO,
3358 .block_erasers =
3359 {
3360 {
3361 .eraseblocks = {
3362 {64 * 1024, 7},
3363 {32 * 1024, 1},
3364 {8 * 1024, 2},
3365 {16 * 1024, 1},
3366 },
3367 .block_erase = erase_block_82802ab,
3368 }, {
3369 .eraseblocks = {
3370 {64 * 1024, 8},
3371 },
Uwe Hermannc74e9772011-09-08 19:55:18 +00003372 .block_erase = NULL, /* TODO: Implement. */
3373 },
3374 },
Stefan Tauner7de93932014-08-03 13:05:45 +00003375 .printlock = printlock_regspace2_block_eraser_0,
3376 .unlock = unlock_regspace2_block_eraser_0,
Uwe Hermannc74e9772011-09-08 19:55:18 +00003377 .write = write_82802ab,
3378 .read = read_memmapped,
3379 .voltage = {3000, 3600},
3380 },
3381
3382 {
Andrew Morganca081462011-09-13 22:05:44 +00003383 .vendor = "Catalyst",
3384 .name = "CAT28F512",
3385 .bustype = BUS_PARALLEL,
3386 .manufacture_id = CATALYST_ID,
3387 .model_id = CATALYST_CAT28F512,
3388 .total_size = 64,
3389 .page_size = 0, /* unused */
3390 .feature_bits = 0,
Stefan Tauner6697f712014-08-06 15:09:15 +00003391 .tested = {.probe = OK, .read = OK, .erase = BAD, .write = BAD },
Andrew Morganca081462011-09-13 22:05:44 +00003392 .probe = probe_jedec, /* FIXME! */
3393 .probe_timing = TIMING_ZERO,
3394 .block_erasers =
3395 {
3396 {
3397 .eraseblocks = { {64 * 1024, 1} },
3398 .block_erase = NULL, /* TODO */
3399 },
3400 },
3401 .write = NULL, /* TODO */
3402 .read = read_memmapped,
3403 .voltage = {4500, 5500},
3404 },
3405
3406 {
Joshua Roysf1324e02010-09-16 00:51:51 +00003407 .vendor = "Bright",
3408 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003409 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00003410 .manufacture_id = BRIGHT_ID,
3411 .model_id = BRIGHT_BM29F040,
3412 .total_size = 512,
3413 .page_size = 64 * 1024,
3414 .feature_bits = FEATURE_EITHER_RESET,
3415 .tested = TEST_OK_PR,
3416 .probe = probe_jedec,
3417 .probe_timing = TIMING_ZERO,
3418 .block_erasers =
3419 {
3420 {
3421 .eraseblocks = { {64 * 1024, 8} },
3422 .block_erase = erase_sector_jedec,
3423 }, {
3424 .eraseblocks = { {512 * 1024, 1} },
3425 .block_erase = erase_chip_block_jedec,
3426 },
3427 },
3428 .write = write_jedec_1,
3429 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003430 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00003431 },
3432
3433 {
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +03003434 .vendor = "ENE",
3435 .name = "KB9012 (EDI)",
3436 .bustype = BUS_SPI,
3437 .spi_cmd_set = SPI_EDI,
3438 .total_size = 128,
3439 .page_size = 128,
3440 .feature_bits = FEATURE_ERASED_ZERO,
3441 .tested = TEST_OK_PREW,
3442 .probe = edi_probe_kb9012,
3443 .probe_timing = TIMING_ZERO,
3444 .block_erasers =
3445 {
3446 {
3447 .eraseblocks = { {128, 1024} },
3448 .block_erase = edi_chip_block_erase,
3449 },
3450 },
3451 .gran = write_gran_128bytes,
3452 .write = edi_chip_write,
3453 .read = edi_chip_read,
3454 .voltage = {2700, 3600},
3455 },
3456
3457 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00003458 .vendor = "ESMT",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003459 .name = "F49B002UA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003460 .bustype = BUS_PARALLEL,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003461 .manufacture_id = ESMT_ID,
3462 .model_id = ESMT_F49B002UA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003463 .total_size = 256,
3464 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00003465 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003466 .tested = TEST_UNTESTED,
3467 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003468 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00003469 .block_erasers =
3470 {
3471 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00003472 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00003473 {128 * 1024, 1},
3474 {96 * 1024, 1},
3475 {8 * 1024, 2},
3476 {16 * 1024, 1},
3477 },
3478 .block_erase = erase_sector_jedec,
3479 }, {
3480 .eraseblocks = { {256 * 1024, 1} },
3481 .block_erase = erase_chip_block_jedec,
3482 }
3483 },
Sean Nelson35727f72010-01-28 23:55:12 +00003484 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003485 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003486 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003487 },
3488
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003489 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00003490 .vendor = "ESMT",
Michael Karcher80a59ea2010-06-19 22:06:35 +00003491 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003492 .bustype = BUS_SPI,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003493 .manufacture_id = ESMT_ID,
3494 .model_id = ESMT_F25L008A,
Michael Karcher80a59ea2010-06-19 22:06:35 +00003495 .total_size = 1024,
3496 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003497 .feature_bits = FEATURE_WRSR_EITHER,
Stefan Taunereb582572012-09-21 12:52:50 +00003498 .tested = TEST_OK_PREW,
Michael Karcher80a59ea2010-06-19 22:06:35 +00003499 .probe = probe_spi_rdid,
3500 .probe_timing = TIMING_ZERO,
3501 .block_erasers =
3502 {
3503 {
3504 .eraseblocks = { {4 * 1024, 256} },
3505 .block_erase = spi_block_erase_20,
3506 }, {
3507 .eraseblocks = { {64 * 1024, 16} },
3508 .block_erase = spi_block_erase_d8,
3509 }, {
3510 .eraseblocks = { {1024 * 1024, 1} },
3511 .block_erase = spi_block_erase_60,
3512 }, {
3513 .eraseblocks = { {1024 * 1024, 1} },
3514 .block_erase = spi_block_erase_c7,
3515 }
3516 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003517 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003518 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00003519 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00003520 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003521 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00003522 },
3523
3524 {
Stefan Tauner85f09f72014-05-27 21:27:14 +00003525 .vendor = "ESMT",
3526 .name = "F25L32PA",
3527 .bustype = BUS_SPI,
3528 .manufacture_id = ESMT_ID,
3529 .model_id = ESMT_F25L32PA,
3530 .total_size = 4096,
3531 .page_size = 256,
3532 .feature_bits = FEATURE_WRSR_EITHER | FEATURE_OTP,
3533 .tested = TEST_UNTESTED,
3534 .probe = probe_spi_rdid,
3535 .probe_timing = TIMING_ZERO,
3536 .block_erasers =
3537 {
3538 {
3539 .eraseblocks = { {4 * 1024, 1024} },
3540 .block_erase = spi_block_erase_20,
3541 }, {
3542 .eraseblocks = { {64 * 1024, 64} },
3543 .block_erase = spi_block_erase_d8,
3544 }, {
3545 .eraseblocks = { {4 * 1024 * 1024, 1} },
3546 .block_erase = spi_block_erase_60,
3547 }, {
3548 .eraseblocks = { {4 * 1024 * 1024, 1} },
3549 .block_erase = spi_block_erase_c7,
3550 }
3551 },
3552 .printlock = spi_prettyprint_status_register_bp2_bpl,
3553 .unlock = spi_disable_blockprotect,
3554 .write = spi_chip_write_256,
3555 .read = spi_chip_read,
3556 .voltage = {2700, 3600},
3557 },
3558
3559 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003560 .vendor = "Eon",
3561 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003562 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003563 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003564 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003565 .total_size = 64,
3566 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003567 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003568 .tested = TEST_UNTESTED,
3569 .probe = probe_spi_rdid,
3570 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003571 .block_erasers =
3572 {
3573 {
3574 .eraseblocks = {
3575 {4 * 1024, 2},
3576 {8 * 1024, 1},
3577 {16 * 1024, 1},
3578 {32 * 1024, 1},
3579 },
3580 .block_erase = spi_block_erase_d8,
3581 }, {
3582 .eraseblocks = { {64 * 1024, 1} },
3583 .block_erase = spi_block_erase_c7,
3584 }
3585 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003586 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003587 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003588 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003589 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003590 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003591 },
3592
3593 {
3594 .vendor = "Eon",
3595 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003596 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003597 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003598 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00003599 .total_size = 64,
3600 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003601 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003602 .tested = TEST_UNTESTED,
3603 .probe = probe_spi_rdid,
3604 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003605 .block_erasers =
3606 {
3607 {
3608 .eraseblocks = {
3609 {32 * 1024, 1},
3610 {16 * 1024, 1},
3611 {8 * 1024, 1},
3612 {4 * 1024, 2},
3613 },
3614 .block_erase = spi_block_erase_d8,
3615 }, {
3616 .eraseblocks = { {64 * 1024, 1} },
3617 .block_erase = spi_block_erase_c7,
3618 }
3619 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003620 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003621 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003622 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003623 .read = spi_chip_read, /* Fast read (0x0B) supported */
3624 .voltage = {2700, 3600},
3625 },
3626
3627 {
3628 .vendor = "Eon",
3629 .name = "EN25P05",
3630 .bustype = BUS_SPI,
3631 .manufacture_id = EON_ID_NOPREFIX,
3632 .model_id = EON_EN25B05,
3633 .total_size = 64,
3634 .page_size = 256,
3635 .feature_bits = FEATURE_WRSR_WREN,
3636 .tested = TEST_UNTESTED,
3637 .probe = probe_spi_rdid,
3638 .probe_timing = TIMING_ZERO,
3639 .block_erasers =
3640 {
3641 {
3642 .eraseblocks = {
3643 {32 * 1024, 2} },
3644 .block_erase = spi_block_erase_d8,
3645 }, {
3646 .eraseblocks = { {64 * 1024, 1} },
3647 .block_erase = spi_block_erase_c7,
3648 }
3649 },
3650 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3651 .unlock = spi_disable_blockprotect,
3652 .write = spi_chip_write_256,
3653 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003654 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003655 },
3656
3657 {
3658 .vendor = "Eon",
3659 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003660 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003661 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003662 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003663 .total_size = 128,
3664 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003665 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003666 .tested = TEST_UNTESTED,
3667 .probe = probe_spi_rdid,
3668 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003669 .block_erasers =
3670 {
3671 {
3672 .eraseblocks = {
3673 {4 * 1024, 2},
3674 {8 * 1024, 1},
3675 {16 * 1024, 1},
3676 {32 * 1024, 3},
3677 },
3678 .block_erase = spi_block_erase_d8,
3679 }, {
3680 .eraseblocks = { {128 * 1024, 1} },
3681 .block_erase = spi_block_erase_c7,
3682 }
3683 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003684 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003685 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003686 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003687 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003688 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003689 },
3690
3691 {
3692 .vendor = "Eon",
3693 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003694 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003695 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003696 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00003697 .total_size = 128,
3698 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003699 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00003700 .tested = TEST_OK_PREW,
Sean Nelson54596372010-01-09 05:30:14 +00003701 .probe = probe_spi_rdid,
3702 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003703 .block_erasers =
3704 {
3705 {
3706 .eraseblocks = {
3707 {32 * 1024, 3},
3708 {16 * 1024, 1},
3709 {8 * 1024, 1},
3710 {4 * 1024, 2},
3711 },
3712 .block_erase = spi_block_erase_d8,
3713 }, {
3714 .eraseblocks = { {128 * 1024, 1} },
3715 .block_erase = spi_block_erase_c7,
3716 }
3717 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003718 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003719 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003720 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003721 .read = spi_chip_read, /* Fast read (0x0B) supported */
3722 .voltage = {2700, 3600},
3723 },
3724
3725 {
3726 .vendor = "Eon",
3727 .name = "EN25P10",
3728 .bustype = BUS_SPI,
3729 .manufacture_id = EON_ID_NOPREFIX,
3730 .model_id = EON_EN25B10,
3731 .total_size = 128,
3732 .page_size = 256,
3733 .feature_bits = FEATURE_WRSR_WREN,
3734 .tested = TEST_UNTESTED,
3735 .probe = probe_spi_rdid,
3736 .probe_timing = TIMING_ZERO,
3737 .block_erasers =
3738 {
3739 {
3740 .eraseblocks = { {32 * 1024, 4} },
3741 .block_erase = spi_block_erase_d8,
3742 }, {
3743 .eraseblocks = { {128 * 1024, 1} },
3744 .block_erase = spi_block_erase_c7,
3745 }
3746 },
3747 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3748 .unlock = spi_disable_blockprotect,
3749 .write = spi_chip_write_256,
3750 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003751 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003752 },
3753
3754 {
3755 .vendor = "Eon",
3756 .name = "EN25B20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003757 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003758 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003759 .model_id = EON_EN25B20,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003760 .total_size = 256,
3761 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003762 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003763 .tested = TEST_UNTESTED,
3764 .probe = probe_spi_rdid,
3765 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003766 .block_erasers =
3767 {
3768 {
3769 .eraseblocks = {
3770 {4 * 1024, 2},
3771 {8 * 1024, 1},
3772 {16 * 1024, 1},
3773 {32 * 1024, 1},
3774 {64 * 1024, 3}
3775 },
3776 .block_erase = spi_block_erase_d8,
3777 }, {
3778 .eraseblocks = { {256 * 1024, 1} },
3779 .block_erase = spi_block_erase_c7,
3780 }
3781 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003782 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003783 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003784 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003785 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003786 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003787 },
3788
3789 {
3790 .vendor = "Eon",
3791 .name = "EN25B20T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003792 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003793 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003794 .model_id = EON_EN25B20,
Sean Nelson54596372010-01-09 05:30:14 +00003795 .total_size = 256,
3796 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003797 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003798 .tested = TEST_UNTESTED,
3799 .probe = probe_spi_rdid,
3800 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003801 .block_erasers =
3802 {
3803 {
3804 .eraseblocks = {
3805 {64 * 1024, 3},
3806 {32 * 1024, 1},
3807 {16 * 1024, 1},
3808 {8 * 1024, 1},
3809 {4 * 1024, 2},
3810 },
3811 .block_erase = spi_block_erase_d8,
3812 }, {
3813 .eraseblocks = { {256 * 1024, 1} },
3814 .block_erase = spi_block_erase_c7,
3815 }
3816 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003817 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003818 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003819 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003820 .read = spi_chip_read, /* Fast read (0x0B) supported */
3821 .voltage = {2700, 3600},
3822 },
3823
3824 {
3825 .vendor = "Eon",
3826 .name = "EN25P20",
3827 .bustype = BUS_SPI,
3828 .manufacture_id = EON_ID_NOPREFIX,
3829 .model_id = EON_EN25B20,
3830 .total_size = 256,
3831 .page_size = 256,
3832 .feature_bits = FEATURE_WRSR_WREN,
3833 .tested = TEST_UNTESTED,
3834 .probe = probe_spi_rdid,
3835 .probe_timing = TIMING_ZERO,
3836 .block_erasers =
3837 {
3838 {
3839 .eraseblocks = { {64 * 1024, 4} },
3840 .block_erase = spi_block_erase_d8,
3841 }, {
3842 .eraseblocks = { {256 * 1024, 1} },
3843 .block_erase = spi_block_erase_c7,
3844 }
3845 },
3846 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3847 .unlock = spi_disable_blockprotect,
3848 .write = spi_chip_write_256,
3849 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003850 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003851 },
3852
3853 {
3854 .vendor = "Eon",
3855 .name = "EN25B40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003856 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003857 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003858 .model_id = EON_EN25B40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003859 .total_size = 512,
3860 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003861 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003862 .tested = TEST_UNTESTED,
3863 .probe = probe_spi_rdid,
3864 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003865 .block_erasers =
3866 {
3867 {
3868 .eraseblocks = {
3869 {4 * 1024, 2},
3870 {8 * 1024, 1},
3871 {16 * 1024, 1},
3872 {32 * 1024, 1},
3873 {64 * 1024, 7}
3874 },
3875 .block_erase = spi_block_erase_d8,
3876 }, {
3877 .eraseblocks = { {512 * 1024, 1} },
3878 .block_erase = spi_block_erase_c7,
3879 }
3880 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003881 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003882 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003883 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003884 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003885 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003886 },
3887
3888 {
3889 .vendor = "Eon",
3890 .name = "EN25B40T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003891 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003892 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003893 .model_id = EON_EN25B40,
Sean Nelson54596372010-01-09 05:30:14 +00003894 .total_size = 512,
3895 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003896 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003897 .tested = TEST_UNTESTED,
3898 .probe = probe_spi_rdid,
3899 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003900 .block_erasers =
3901 {
3902 {
3903 .eraseblocks = {
3904 {64 * 1024, 7},
3905 {32 * 1024, 1},
3906 {16 * 1024, 1},
3907 {8 * 1024, 1},
3908 {4 * 1024, 2},
3909 },
3910 .block_erase = spi_block_erase_d8,
3911 }, {
3912 .eraseblocks = { {512 * 1024, 1} },
3913 .block_erase = spi_block_erase_c7,
3914 }
3915 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003916 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003917 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003918 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003919 .read = spi_chip_read, /* Fast read (0x0B) supported */
3920 .voltage = {2700, 3600},
3921 },
3922
3923 {
3924 .vendor = "Eon",
3925 .name = "EN25P40",
3926 .bustype = BUS_SPI,
3927 .manufacture_id = EON_ID_NOPREFIX,
3928 .model_id = EON_EN25B40,
3929 .total_size = 512,
3930 .page_size = 256,
3931 .feature_bits = FEATURE_WRSR_WREN,
3932 .tested = TEST_UNTESTED,
3933 .probe = probe_spi_rdid,
3934 .probe_timing = TIMING_ZERO,
3935 .block_erasers =
3936 {
3937 {
3938 .eraseblocks = { {64 * 1024, 8} },
3939 .block_erase = spi_block_erase_d8,
3940 }, {
3941 .eraseblocks = { {512 * 1024, 1} },
3942 .block_erase = spi_block_erase_c7,
3943 }
3944 },
3945 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
3946 .unlock = spi_disable_blockprotect,
3947 .write = spi_chip_write_256,
3948 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003949 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003950 },
3951
3952 {
3953 .vendor = "Eon",
3954 .name = "EN25B80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003955 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003956 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003957 .model_id = EON_EN25B80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003958 .total_size = 1024,
3959 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003960 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003961 .tested = TEST_UNTESTED,
3962 .probe = probe_spi_rdid,
3963 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003964 .block_erasers =
3965 {
3966 {
3967 .eraseblocks = {
3968 {4 * 1024, 2},
3969 {8 * 1024, 1},
3970 {16 * 1024, 1},
3971 {32 * 1024, 1},
3972 {64 * 1024, 15}
3973 },
3974 .block_erase = spi_block_erase_d8,
3975 }, {
3976 .eraseblocks = { {1024 * 1024, 1} },
3977 .block_erase = spi_block_erase_c7,
3978 }
3979 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003980 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003981 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003982 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00003983 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003984 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003985 },
3986
3987 {
3988 .vendor = "Eon",
3989 .name = "EN25B80T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003990 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003991 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003992 .model_id = EON_EN25B80,
Sean Nelson54596372010-01-09 05:30:14 +00003993 .total_size = 1024,
3994 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003995 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003996 .tested = TEST_UNTESTED,
3997 .probe = probe_spi_rdid,
3998 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003999 .block_erasers =
4000 {
4001 {
4002 .eraseblocks = {
4003 {64 * 1024, 15},
4004 {32 * 1024, 1},
4005 {16 * 1024, 1},
4006 {8 * 1024, 1},
4007 {4 * 1024, 2},
4008 },
4009 .block_erase = spi_block_erase_d8,
4010 }, {
4011 .eraseblocks = { {1024 * 1024, 1} },
4012 .block_erase = spi_block_erase_c7,
4013 }
4014 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004015 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004016 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004017 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004018 .read = spi_chip_read, /* Fast read (0x0B) supported */
4019 .voltage = {2700, 3600},
4020 },
4021
4022 {
4023 .vendor = "Eon",
4024 .name = "EN25P80",
4025 .bustype = BUS_SPI,
4026 .manufacture_id = EON_ID_NOPREFIX,
4027 .model_id = EON_EN25B80,
4028 .total_size = 1024,
4029 .page_size = 256,
4030 .feature_bits = FEATURE_WRSR_WREN,
4031 .tested = TEST_UNTESTED,
4032 .probe = probe_spi_rdid,
4033 .probe_timing = TIMING_ZERO,
4034 .block_erasers =
4035 {
4036 {
4037 .eraseblocks = { {64 * 1024, 16} },
4038 .block_erase = spi_block_erase_d8,
4039 }, {
4040 .eraseblocks = { {1024 * 1024, 1} },
4041 .block_erase = spi_block_erase_c7,
4042 }
4043 },
4044 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4045 .unlock = spi_disable_blockprotect,
4046 .write = spi_chip_write_256,
4047 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004048 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004049 },
4050
4051 {
4052 .vendor = "Eon",
4053 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004054 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004055 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004056 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004057 .total_size = 2048,
4058 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00004059 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004060 .tested = TEST_UNTESTED,
4061 .probe = probe_spi_rdid,
4062 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004063 .block_erasers =
4064 {
4065 {
4066 .eraseblocks = {
4067 {4 * 1024, 2},
4068 {8 * 1024, 1},
4069 {16 * 1024, 1},
4070 {32 * 1024, 1},
4071 {64 * 1024, 31},
4072 },
4073 .block_erase = spi_block_erase_d8,
4074 }, {
4075 .eraseblocks = { {2 * 1024 * 1024, 1} },
4076 .block_erase = spi_block_erase_c7,
4077 }
4078 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004079 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004080 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00004081 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004082 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004083 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00004084 },
4085
4086 {
4087 .vendor = "Eon",
4088 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004089 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00004090 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004091 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00004092 .total_size = 2048,
4093 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00004094 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00004095 .tested = TEST_UNTESTED,
4096 .probe = probe_spi_rdid,
4097 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004098 .block_erasers =
4099 {
4100 {
4101 .eraseblocks = {
4102 {64 * 1024, 31},
4103 {32 * 1024, 1},
4104 {16 * 1024, 1},
4105 {8 * 1024, 1},
4106 {4 * 1024, 2},
4107 },
4108 .block_erase = spi_block_erase_d8,
4109 }, {
4110 .eraseblocks = { {2 * 1024 * 1024, 1} },
4111 .block_erase = spi_block_erase_c7,
4112 }
4113 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004114 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004115 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004116 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004117 .read = spi_chip_read, /* Fast read (0x0B) supported */
4118 .voltage = {2700, 3600},
4119 },
4120
4121 {
4122 .vendor = "Eon",
4123 .name = "EN25P16",
4124 .bustype = BUS_SPI,
4125 .manufacture_id = EON_ID_NOPREFIX,
4126 .model_id = EON_EN25B16,
4127 .total_size = 2048,
4128 .page_size = 256,
4129 .feature_bits = FEATURE_WRSR_WREN,
4130 .tested = TEST_UNTESTED,
4131 .probe = probe_spi_rdid,
4132 .probe_timing = TIMING_ZERO,
4133 .block_erasers =
4134 {
4135 {
4136 .eraseblocks = { {64 * 1024, 32} },
4137 .block_erase = spi_block_erase_d8,
4138 }, {
4139 .eraseblocks = { {2 * 1024 * 1024, 1} },
4140 .block_erase = spi_block_erase_c7,
4141 }
4142 },
4143 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4144 .unlock = spi_disable_blockprotect,
4145 .write = spi_chip_write_256,
4146 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004147 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004148 },
4149
4150 {
4151 .vendor = "Eon",
4152 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004153 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004154 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004155 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004156 .total_size = 4096,
4157 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004158 /* OTP: 512B total; enter 0x3A */
4159 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004160 .tested = TEST_UNTESTED,
4161 .probe = probe_spi_rdid,
4162 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004163 .block_erasers =
4164 {
4165 {
4166 .eraseblocks = {
4167 {4 * 1024, 2},
4168 {8 * 1024, 1},
4169 {16 * 1024, 1},
4170 {32 * 1024, 1},
4171 {64 * 1024, 63},
4172 },
4173 .block_erase = spi_block_erase_d8,
4174 }, {
4175 .eraseblocks = { {4 * 1024 * 1024, 1} },
4176 .block_erase = spi_block_erase_c7,
4177 }
4178 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004179 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004180 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00004181 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004182 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004183 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00004184 },
4185
4186 {
4187 .vendor = "Eon",
4188 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004189 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00004190 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004191 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00004192 .total_size = 4096,
4193 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004194 /* OTP: 512B total; enter 0x3A */
4195 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Sean Nelson54596372010-01-09 05:30:14 +00004196 .tested = TEST_UNTESTED,
4197 .probe = probe_spi_rdid,
4198 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004199 .block_erasers =
4200 {
4201 {
4202 .eraseblocks = {
4203 {64 * 1024, 63},
4204 {32 * 1024, 1},
4205 {16 * 1024, 1},
4206 {8 * 1024, 1},
4207 {4 * 1024, 2},
4208 },
4209 .block_erase = spi_block_erase_d8,
4210 }, {
4211 .eraseblocks = { {4 * 1024 * 1024, 1} },
4212 .block_erase = spi_block_erase_c7,
4213 }
4214 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004215 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004216 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004217 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004218 .read = spi_chip_read, /* Fast read (0x0B) supported */
4219 .voltage = {2700, 3600},
4220 },
4221
4222 {
4223 .vendor = "Eon",
4224 .name = "EN25P32", /* Uniform version of EN25B32 */
4225 .bustype = BUS_SPI,
4226 .manufacture_id = EON_ID_NOPREFIX,
4227 .model_id = EON_EN25B32,
4228 .total_size = 4096,
4229 .page_size = 256,
4230 /* OTP: 512B total; enter 0x3A */
4231 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4232 .tested = TEST_UNTESTED,
4233 .probe = probe_spi_rdid,
4234 .probe_timing = TIMING_ZERO,
4235 .block_erasers =
4236 {
4237 {
4238 .eraseblocks = { {64 * 1024, 64} },
4239 .block_erase = spi_block_erase_d8,
4240 }, {
4241 .eraseblocks = { {4 * 1024 * 1024, 1} },
4242 .block_erase = spi_block_erase_c7,
4243 }
4244 },
4245 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4246 .unlock = spi_disable_blockprotect,
4247 .write = spi_chip_write_256,
4248 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004249 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004250 },
4251
4252 {
4253 .vendor = "Eon",
4254 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004255 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004256 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004257 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004258 .total_size = 8192,
4259 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004260 /* OTP: 512B total; enter 0x3A */
4261 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004262 .tested = TEST_UNTESTED,
4263 .probe = probe_spi_rdid,
4264 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004265 .block_erasers =
4266 {
4267 {
4268 .eraseblocks = {
4269 {4 * 1024, 2},
4270 {8 * 1024, 1},
4271 {16 * 1024, 1},
4272 {32 * 1024, 1},
4273 {64 * 1024, 127},
4274 },
4275 .block_erase = spi_block_erase_d8,
4276 }, {
4277 .eraseblocks = { {8 * 1024 * 1024, 1} },
4278 .block_erase = spi_block_erase_c7,
4279 }
4280 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004281 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004282 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00004283 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004284 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004285 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00004286 },
4287
4288 {
4289 .vendor = "Eon",
4290 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004291 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00004292 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004293 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00004294 .total_size = 8192,
4295 .page_size = 256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004296 /* OTP: 512B total; enter 0x3A */
4297 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Sean Nelson54596372010-01-09 05:30:14 +00004298 .tested = TEST_UNTESTED,
4299 .probe = probe_spi_rdid,
4300 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004301 .block_erasers =
4302 {
4303 {
4304 .eraseblocks = {
4305 {64 * 1024, 127},
4306 {32 * 1024, 1},
4307 {16 * 1024, 1},
4308 {8 * 1024, 1},
4309 {4 * 1024, 2},
4310 },
4311 .block_erase = spi_block_erase_d8,
4312 }, {
4313 .eraseblocks = { {8 * 1024 * 1024, 1} },
4314 .block_erase = spi_block_erase_c7,
4315 }
4316 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004317 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004318 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004319 .write = spi_chip_write_256,
Stefan Taunerb175af52015-01-24 15:06:27 +00004320 .read = spi_chip_read, /* Fast read (0x0B) supported */
4321 .voltage = {2700, 3600},
4322 },
4323
4324 {
4325 .vendor = "Eon",
4326 .name = "EN25P64",
4327 .bustype = BUS_SPI,
4328 .manufacture_id = EON_ID_NOPREFIX,
4329 .model_id = EON_EN25B64,
4330 .total_size = 8192,
4331 .page_size = 256,
4332 /* OTP: 512B total; enter 0x3A */
4333 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4334 .tested = TEST_UNTESTED,
4335 .probe = probe_spi_rdid,
4336 .probe_timing = TIMING_ZERO,
4337 .block_erasers =
4338 {
4339 {
4340 .eraseblocks = { {64 * 1024, 128} },
4341 .block_erase = spi_block_erase_d8,
4342 }, {
4343 .eraseblocks = { {8 * 1024 * 1024, 1} },
4344 .block_erase = spi_block_erase_c7,
4345 }
4346 },
4347 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
4348 .unlock = spi_disable_blockprotect,
4349 .write = spi_chip_write_256,
4350 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004351 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004352 },
4353
4354 {
4355 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004356 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004357 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004358 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004359 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004360 .total_size = 64,
4361 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004362 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +00004363 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004364 .probe = probe_spi_rdid,
4365 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004366 .block_erasers =
4367 {
4368 {
4369 .eraseblocks = { {4 * 1024, 16} },
4370 .block_erase = spi_block_erase_20,
4371 }, {
4372 .eraseblocks = { {32 * 1024, 2} },
4373 .block_erase = spi_block_erase_d8,
4374 }, {
4375 .eraseblocks = { {32 * 1024, 2} },
4376 .block_erase = spi_block_erase_52,
4377 }, {
4378 .eraseblocks = { {64 * 1024, 1} },
4379 .block_erase = spi_block_erase_60,
4380 }, {
4381 .eraseblocks = { {64 * 1024, 1} },
4382 .block_erase = spi_block_erase_c7,
4383 }
4384 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004385 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004386 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004387 .write = spi_chip_write_256,
4388 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004389 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004390 },
4391
4392 {
4393 .vendor = "Eon",
4394 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004395 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004396 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004397 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004398 .total_size = 128,
4399 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004400 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004401 .tested = TEST_UNTESTED,
4402 .probe = probe_spi_rdid,
4403 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004404 .block_erasers =
4405 {
4406 {
4407 .eraseblocks = { {4 * 1024, 32} },
4408 .block_erase = spi_block_erase_20,
4409 }, {
4410 .eraseblocks = { {32 * 1024, 4} },
4411 .block_erase = spi_block_erase_d8,
4412 }, {
4413 .eraseblocks = { {32 * 1024, 4} },
4414 .block_erase = spi_block_erase_52,
4415 }, {
4416 .eraseblocks = { {128 * 1024, 1} },
4417 .block_erase = spi_block_erase_60,
4418 }, {
4419 .eraseblocks = { {128 * 1024, 1} },
4420 .block_erase = spi_block_erase_c7,
4421 }
4422 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004423 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004424 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004425 .write = spi_chip_write_256,
4426 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004427 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004428 },
4429
4430 {
4431 .vendor = "Eon",
4432 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004433 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004434 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004435 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004436 .total_size = 256,
4437 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004438 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004439 .tested = TEST_UNTESTED,
4440 .probe = probe_spi_rdid,
4441 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004442 .block_erasers =
4443 {
4444 {
4445 .eraseblocks = { {4 * 1024, 64} },
4446 .block_erase = spi_block_erase_20,
4447 }, {
4448 .eraseblocks = { {64 * 1024, 4} },
4449 .block_erase = spi_block_erase_d8,
4450 }, {
4451 .eraseblocks = { {64 * 1024, 4} },
4452 .block_erase = spi_block_erase_52,
4453 }, {
4454 .eraseblocks = { {256 * 1024, 1} },
4455 .block_erase = spi_block_erase_60,
4456 }, {
4457 .eraseblocks = { {256 * 1024, 1} },
4458 .block_erase = spi_block_erase_c7,
4459 }
4460 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004461 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004462 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004463 .write = spi_chip_write_256,
4464 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004465 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004466 },
4467
4468 {
4469 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004470 .name = "EN25F40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004471 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004472 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004473 .model_id = EON_EN25F40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004474 .total_size = 512,
4475 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004476 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00004477 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004478 .probe = probe_spi_rdid,
4479 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004480 .block_erasers =
4481 {
4482 {
Sean Nelson54596372010-01-09 05:30:14 +00004483 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00004484 .block_erase = spi_block_erase_20,
4485 }, {
Sean Nelson54596372010-01-09 05:30:14 +00004486 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00004487 .block_erase = spi_block_erase_d8,
4488 }, {
Sean Nelson54596372010-01-09 05:30:14 +00004489 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00004490 .block_erase = spi_block_erase_60,
4491 }, {
Sean Nelson54596372010-01-09 05:30:14 +00004492 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00004493 .block_erase = spi_block_erase_c7,
4494 },
4495 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004496 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004497 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004498 .write = spi_chip_write_256,
4499 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004500 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004501 },
4502
4503 {
4504 .vendor = "Eon",
4505 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004506 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004507 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004508 .model_id = EON_EN25F80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004509 .total_size = 1024,
4510 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004511 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00004512 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004513 .probe = probe_spi_rdid,
4514 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004515 .block_erasers =
4516 {
4517 {
4518 .eraseblocks = { {4 * 1024, 256} },
4519 .block_erase = spi_block_erase_20,
4520 }, {
4521 .eraseblocks = { {64 * 1024, 16} },
4522 .block_erase = spi_block_erase_d8,
4523 }, {
4524 .eraseblocks = { {1024 * 1024, 1} },
4525 .block_erase = spi_block_erase_60,
4526 }, {
4527 .eraseblocks = { {1024 * 1024, 1} },
4528 .block_erase = spi_block_erase_c7,
4529 }
4530 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004531 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004532 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004533 .write = spi_chip_write_256,
4534 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004535 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004536 },
4537
4538 {
4539 .vendor = "Eon",
4540 .name = "EN25F16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004541 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004542 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004543 .model_id = EON_EN25F16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004544 .total_size = 2048,
4545 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004546 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzel018d4822011-10-21 12:33:07 +00004547 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004548 .probe = probe_spi_rdid,
4549 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004550 .block_erasers =
4551 {
4552 {
4553 .eraseblocks = { {4 * 1024, 512} },
4554 .block_erase = spi_block_erase_20,
4555 }, {
4556 .eraseblocks = { {64 * 1024, 32} },
4557 .block_erase = spi_block_erase_d8,
4558 }, {
4559 .eraseblocks = { {2 * 1024 * 1024, 1} },
4560 .block_erase = spi_block_erase_60,
4561 }, {
4562 .eraseblocks = { {2 * 1024 * 1024, 1} },
4563 .block_erase = spi_block_erase_c7,
4564 }
4565 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004566 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004567 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004568 .write = spi_chip_write_256,
4569 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004570 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00004571 },
4572
4573 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004574 .vendor = "Eon",
4575 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004576 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004577 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004578 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004579 .total_size = 4096,
4580 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00004581 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00004582 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004583 .probe = probe_spi_rdid,
4584 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004585 .block_erasers =
4586 {
4587 {
4588 .eraseblocks = { {4 * 1024, 1024} },
4589 .block_erase = spi_block_erase_20,
4590 }, {
4591 .eraseblocks = { {64 * 1024, 64} },
4592 .block_erase = spi_block_erase_d8,
4593 }, {
4594 .eraseblocks = { {4 * 1024 * 1024, 1} },
4595 .block_erase = spi_block_erase_60,
4596 }, {
4597 .eraseblocks = { {4 * 1024 * 1024, 1} },
4598 .block_erase = spi_block_erase_c7,
4599 }
4600 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004601 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004602 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004603 .write = spi_chip_write_256,
4604 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004605 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00004606 },
4607
4608 {
Russ Dill3cd5a122010-03-05 08:44:11 +00004609 .vendor = "Eon",
Stefan Taunerd932fd02012-09-06 17:37:16 +00004610 .name = "EN25F64",
4611 .bustype = BUS_SPI,
4612 .manufacture_id = EON_ID_NOPREFIX,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00004613 .model_id = EON_EN25F64,
Stefan Taunerd932fd02012-09-06 17:37:16 +00004614 .total_size = 8192,
4615 .page_size = 256,
4616 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00004617 .tested = TEST_OK_PREW,
Stefan Taunerd932fd02012-09-06 17:37:16 +00004618 .probe = probe_spi_rdid,
4619 .probe_timing = TIMING_ZERO,
4620 .block_erasers =
4621 {
4622 {
4623 .eraseblocks = { {4 * 1024, 2048} },
4624 .block_erase = spi_block_erase_20,
4625 }, {
4626 .eraseblocks = { {64 * 1024, 128} },
4627 .block_erase = spi_block_erase_d8,
4628 }, {
4629 .eraseblocks = { {8 * 1024 * 1024, 1} },
4630 .block_erase = spi_block_erase_60,
4631 }, {
4632 .eraseblocks = { {8 * 1024 * 1024, 1} },
4633 .block_erase = spi_block_erase_c7,
4634 }
4635 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004636 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stefan Taunerd932fd02012-09-06 17:37:16 +00004637 .unlock = spi_disable_blockprotect,
4638 .write = spi_chip_write_256,
4639 .read = spi_chip_read,
4640 .voltage = {2700, 3600},
4641 },
4642
4643 {
4644 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00004645 .name = "EN25Q40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004646 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004647 .manufacture_id = EON_ID_NOPREFIX,
4648 .model_id = EON_EN25Q40,
4649 .total_size = 512,
4650 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004651 /* OTP: 256B total; enter 0x3A */
4652 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00004653 .tested = TEST_UNTESTED,
4654 .probe = probe_spi_rdid,
4655 .probe_timing = TIMING_ZERO,
4656 .block_erasers =
4657 {
4658 {
4659 .eraseblocks = { {4 * 1024, 128} },
4660 .block_erase = spi_block_erase_20,
4661 }, {
4662 .eraseblocks = { {64 * 1024, 8} },
4663 .block_erase = spi_block_erase_d8,
4664 }, {
4665 .eraseblocks = { {512 * 1024, 1} },
4666 .block_erase = spi_block_erase_60,
4667 }, {
4668 .eraseblocks = { {512 * 1024, 1} },
4669 .block_erase = spi_block_erase_c7,
4670 }
4671 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004672 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004673 .unlock = spi_disable_blockprotect,
4674 .write = spi_chip_write_256,
4675 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004676 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004677 },
4678
4679 {
4680 .vendor = "Eon",
4681 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004682 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004683 .manufacture_id = EON_ID_NOPREFIX,
4684 .model_id = EON_EN25Q80,
4685 .total_size = 1024,
4686 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004687 /* OTP: 256B total; enter 0x3A */
4688 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00004689 .tested = TEST_UNTESTED,
4690 .probe = probe_spi_rdid,
4691 .probe_timing = TIMING_ZERO,
4692 .block_erasers =
4693 {
4694 {
4695 .eraseblocks = { {4 * 1024, 256} },
4696 .block_erase = spi_block_erase_20,
4697 }, {
4698 .eraseblocks = { {64 * 1024, 16} },
4699 .block_erase = spi_block_erase_d8,
4700 }, {
4701 .eraseblocks = { {1024 * 1024, 1} },
4702 .block_erase = spi_block_erase_60,
4703 }, {
4704 .eraseblocks = { {1024 * 1024, 1} },
4705 .block_erase = spi_block_erase_c7,
4706 }
4707 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004708 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004709 .unlock = spi_disable_blockprotect,
4710 .write = spi_chip_write_256,
4711 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004712 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004713 },
4714
4715 {
4716 /* Note: EN25D16 is an evil twin which shares the model ID
4717 but has different write protection capabilities */
4718 .vendor = "Eon",
4719 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004720 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004721 .manufacture_id = EON_ID_NOPREFIX,
4722 .model_id = EON_EN25Q16,
4723 .total_size = 2048,
4724 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004725 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
4726 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00004727 .tested = TEST_UNTESTED,
4728 .probe = probe_spi_rdid,
4729 .probe_timing = TIMING_ZERO,
4730 .block_erasers =
4731 {
4732 {
4733 .eraseblocks = { {4 * 1024, 512} },
4734 .block_erase = spi_block_erase_20,
4735 }, {
4736 .eraseblocks = { {64 * 1024, 32} },
4737 .block_erase = spi_block_erase_d8,
4738 }, {
4739 /* not supported by Q16 version */
4740 .eraseblocks = { {64 * 1024, 32} },
4741 .block_erase = spi_block_erase_52,
4742 }, {
4743 .eraseblocks = { {2 * 1024 * 1024, 1} },
4744 .block_erase = spi_block_erase_60,
4745 }, {
4746 .eraseblocks = { {2 * 1024 * 1024, 1} },
4747 .block_erase = spi_block_erase_c7,
4748 }
4749 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004750 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004751 .unlock = spi_disable_blockprotect,
4752 .write = spi_chip_write_256,
4753 .read = spi_chip_read,
4754 .voltage = {2700, 3600},
4755 },
4756
4757 {
4758 .vendor = "Eon",
4759 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004760 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004761 .manufacture_id = EON_ID_NOPREFIX,
4762 .model_id = EON_EN25Q32,
4763 .total_size = 4096,
4764 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004765 /* OTP: 512B total; enter 0x3A */
4766 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004767 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004768 .probe = probe_spi_rdid,
4769 .probe_timing = TIMING_ZERO,
4770 .block_erasers =
4771 {
4772 {
4773 .eraseblocks = { {4 * 1024, 1024} },
4774 .block_erase = spi_block_erase_20,
4775 }, {
4776 .eraseblocks = { {64 * 1024, 64} },
4777 .block_erase = spi_block_erase_d8,
4778 }, {
4779 .eraseblocks = { {4 * 1024 * 1024, 1} },
4780 .block_erase = spi_block_erase_60,
4781 }, {
4782 .eraseblocks = { {4 * 1024 * 1024, 1} },
4783 .block_erase = spi_block_erase_c7,
4784 }
4785 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004786 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004787 .unlock = spi_disable_blockprotect,
4788 .write = spi_chip_write_256,
4789 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004790 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004791 },
4792
4793 {
4794 .vendor = "Eon",
4795 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004796 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004797 .manufacture_id = EON_ID_NOPREFIX,
4798 .model_id = EON_EN25Q64,
4799 .total_size = 8192,
4800 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004801 /* OTP: 512B total; enter 0x3A */
4802 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004803 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004804 .probe = probe_spi_rdid,
4805 .probe_timing = TIMING_ZERO,
4806 .block_erasers =
4807 {
4808 {
4809 .eraseblocks = { {4 * 1024, 2048} },
4810 .block_erase = spi_block_erase_20,
4811 }, {
4812 .eraseblocks = { {64 * 1024, 128} },
4813 .block_erase = spi_block_erase_d8,
4814 }, {
4815 .eraseblocks = { {8 * 1024 * 1024, 1} },
4816 .block_erase = spi_block_erase_60,
4817 }, {
4818 .eraseblocks = { {8 * 1024 * 1024, 1} },
4819 .block_erase = spi_block_erase_c7,
4820 }
4821 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004822 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004823 .unlock = spi_disable_blockprotect,
4824 .write = spi_chip_write_256,
4825 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004826 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00004827 },
4828
4829 {
4830 .vendor = "Eon",
4831 .name = "EN25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004832 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004833 .manufacture_id = EON_ID_NOPREFIX,
4834 .model_id = EON_EN25Q128,
4835 .total_size = 16384,
4836 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004837 /* OTP: 512B total; enter 0x3A */
4838 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0be072c2016-03-13 15:16:30 +00004839 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004840 .probe = probe_spi_rdid,
4841 .probe_timing = TIMING_ZERO,
4842 .block_erasers =
4843 {
4844 {
4845 .eraseblocks = { {4 * 1024, 4096} },
4846 .block_erase = spi_block_erase_20,
4847 }, {
4848 .eraseblocks = { {64 * 1024, 256} },
4849 .block_erase = spi_block_erase_d8,
4850 }, {
4851 .eraseblocks = { {16 * 1024 * 1024, 1} },
4852 .block_erase = spi_block_erase_60,
4853 }, {
4854 .eraseblocks = { {16 * 1024 * 1024, 1} },
4855 .block_erase = spi_block_erase_c7,
4856 }
4857 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004858 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00004859 .unlock = spi_disable_blockprotect,
4860 .write = spi_chip_write_256,
4861 .read = spi_chip_read,
4862 },
4863
4864 {
4865 .vendor = "Eon",
4866 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004867 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00004868 .manufacture_id = EON_ID_NOPREFIX,
4869 .model_id = EON_EN25QH16,
4870 .total_size = 2048,
4871 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00004872 /* supports SFDP */
4873 /* OTP: 512B total; enter 0x3A */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004874 /* QPI enable 0x38, disable 0xFF */
4875 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner5c316f92015-02-08 21:57:52 +00004876 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00004877 .probe = probe_spi_rdid,
4878 .probe_timing = TIMING_ZERO,
4879 .block_erasers =
4880 {
4881 {
4882 .eraseblocks = { {4 * 1024, 512} },
4883 .block_erase = spi_block_erase_20,
4884 }, {
4885 .eraseblocks = { {64 * 1024, 32} },
4886 .block_erase = spi_block_erase_d8,
4887 }, {
4888 .eraseblocks = { {1024 * 2048, 1} },
4889 .block_erase = spi_block_erase_60,
4890 }, {
4891 .eraseblocks = { {1024 * 2048, 1} },
4892 .block_erase = spi_block_erase_c7,
4893 }
4894 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00004895 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004896 .unlock = spi_disable_blockprotect_bp3_srwd,
David Hendricks6d715302011-07-24 22:21:57 +00004897 .write = spi_chip_write_256,
4898 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00004899 .voltage = {2700, 3600},
4900 },
4901
4902 {
4903 .vendor = "Eon",
4904 .name = "EN25QH32",
4905 .bustype = BUS_SPI,
4906 .manufacture_id = EON_ID_NOPREFIX,
4907 .model_id = EON_EN25QH32,
4908 .total_size = 4096,
4909 .page_size = 256,
4910 /* supports SFDP */
4911 /* OTP: 512B total; enter 0x3A */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004912 /* QPI enable 0x38, disable 0xFF */
4913 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner23e10b82016-01-23 16:16:49 +00004914 .tested = TEST_OK_PREW,
Stefan Tauner2cef9162012-05-14 01:51:46 +00004915 .probe = probe_spi_rdid,
4916 .probe_timing = TIMING_ZERO,
4917 .block_erasers =
4918 {
4919 {
4920 .eraseblocks = { {4 * 1024, 1024} },
4921 .block_erase = spi_block_erase_20,
4922 }, {
4923 .eraseblocks = { {64 * 1024, 64} },
4924 .block_erase = spi_block_erase_d8,
4925 }, {
4926 .eraseblocks = { {1024 * 4096, 1} },
4927 .block_erase = spi_block_erase_60,
4928 }, {
4929 .eraseblocks = { {1024 * 4096, 1} },
4930 .block_erase = spi_block_erase_c7,
4931 }
4932 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00004933 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004934 .unlock = spi_disable_blockprotect_bp3_srwd,
4935 .write = spi_chip_write_256,
4936 .read = spi_chip_read,
4937 .voltage = {2700, 3600},
4938 },
4939
4940 {
4941 .vendor = "Eon",
4942 .name = "EN25QH64",
4943 .bustype = BUS_SPI,
4944 .manufacture_id = EON_ID_NOPREFIX,
4945 .model_id = EON_EN25QH64,
4946 .total_size = 8192,
4947 .page_size = 256,
4948 /* supports SFDP */
4949 /* OTP: 512B total; enter 0x3A */
4950 /* QPI enable 0x38, disable 0xFF */
4951 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner23e10b82016-01-23 16:16:49 +00004952 .tested = TEST_OK_PREW,
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004953 .probe = probe_spi_rdid,
4954 .probe_timing = TIMING_ZERO,
4955 .block_erasers = {
4956 {
4957 .eraseblocks = { {4 * 1024, 2048} },
4958 .block_erase = spi_block_erase_20,
4959 }, {
4960 .eraseblocks = { {64 * 1024, 128} },
4961 .block_erase = spi_block_erase_d8,
4962 }, {
4963 .eraseblocks = { { 8192 * 1024, 1} },
4964 .block_erase = spi_block_erase_60,
4965 }, {
4966 .eraseblocks = { { 8192 * 1024, 1} },
4967 .block_erase = spi_block_erase_c7,
4968 }
4969 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00004970 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00004971 .unlock = spi_disable_blockprotect_bp3_srwd,
4972 .write = spi_chip_write_256,
4973 .read = spi_chip_read,
4974 .voltage = {2700, 3600},
4975 },
4976
4977 {
4978 .vendor = "Eon",
4979 .name = "EN25QH128",
4980 .bustype = BUS_SPI,
4981 .manufacture_id = EON_ID_NOPREFIX,
4982 .model_id = EON_EN25QH128,
4983 .total_size = 16384,
4984 .page_size = 256,
4985 /* supports SFDP */
4986 /* OTP: 512B total; enter 0x3A */
4987 /* QPI enable 0x38, disable 0xFF */
4988 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
4989 .tested = TEST_UNTESTED,
4990 .probe = probe_spi_rdid,
4991 .probe_timing = TIMING_ZERO,
4992 .block_erasers = {
4993 {
4994 .eraseblocks = { {4 * 1024, 4096} },
4995 .block_erase = spi_block_erase_20,
4996 }, {
4997 .eraseblocks = { {64 * 1024, 256} },
4998 .block_erase = spi_block_erase_d8,
4999 }, {
5000 .eraseblocks = { { 16384 * 1024, 1} },
5001 .block_erase = spi_block_erase_60,
5002 }, {
5003 .eraseblocks = { { 16384 * 1024, 1} },
5004 .block_erase = spi_block_erase_c7,
5005 }
5006 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005007 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Nikolay Nikolaevc08542b2013-06-28 21:29:14 +00005008 .unlock = spi_disable_blockprotect_bp3_srwd,
5009 .write = spi_chip_write_256,
5010 .read = spi_chip_read,
5011 .voltage = {2700, 3600},
5012 },
5013
5014 {
5015 .vendor = "Eon",
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005016 .name = "EN25S10",
5017 .bustype = BUS_SPI,
5018 .manufacture_id = EON_ID_NOPREFIX,
5019 .model_id = EON_EN25S10,
5020 .total_size = 128,
5021 .page_size = 256,
5022 /* OTP: 256B total; enter 0x3A */
5023 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5024 .tested = TEST_UNTESTED,
5025 .probe = probe_spi_rdid,
5026 .probe_timing = TIMING_ZERO,
5027 .block_erasers = {
5028 {
5029 .eraseblocks = { {4 * 1024, 32} },
5030 .block_erase = spi_block_erase_20,
5031 }, {
5032 .eraseblocks = { {32 * 1024, 4} },
5033 .block_erase = spi_block_erase_52,
5034 }, {
5035 .eraseblocks = { {128 * 1024, 1} },
5036 .block_erase = spi_block_erase_60,
5037 }, {
5038 .eraseblocks = { {128 * 1024, 1} },
5039 .block_erase = spi_block_erase_c7,
5040 }
5041 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005042 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005043 .unlock = spi_disable_blockprotect,
5044 .write = spi_chip_write_256,
5045 .read = spi_chip_read,
5046 .voltage = {1650, 1950},
5047 },
5048
5049 {
5050 .vendor = "Eon",
5051 .name = "EN25S20",
5052 .bustype = BUS_SPI,
5053 .manufacture_id = EON_ID_NOPREFIX,
5054 .model_id = EON_EN25S20,
5055 .total_size = 256,
5056 .page_size = 256,
5057 /* OTP: 256B total; enter 0x3A */
5058 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5059 .tested = TEST_UNTESTED,
5060 .probe = probe_spi_rdid,
5061 .probe_timing = TIMING_ZERO,
5062 .block_erasers = {
5063 {
5064 .eraseblocks = { {4 * 1024, 64} },
5065 .block_erase = spi_block_erase_20,
5066 }, {
5067 .eraseblocks = { {64 * 1024, 4} },
5068 .block_erase = spi_block_erase_d8,
5069 }, {
5070 .eraseblocks = { {256 * 1024, 1} },
5071 .block_erase = spi_block_erase_60,
5072 }, {
5073 .eraseblocks = { {256 * 1024, 1} },
5074 .block_erase = spi_block_erase_c7,
5075 }
5076 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005077 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005078 .unlock = spi_disable_blockprotect,
5079 .write = spi_chip_write_256,
5080 .read = spi_chip_read,
5081 .voltage = {1650, 1950},
5082 },
5083
5084 {
5085 .vendor = "Eon",
5086 .name = "EN25S40",
5087 .bustype = BUS_SPI,
5088 .manufacture_id = EON_ID_NOPREFIX,
5089 .model_id = EON_EN25S40,
5090 .total_size = 512,
5091 .page_size = 256,
5092 /* OTP: 256B total; enter 0x3A */
5093 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5094 .tested = TEST_UNTESTED,
5095 .probe = probe_spi_rdid,
5096 .probe_timing = TIMING_ZERO,
5097 .block_erasers = {
5098 {
5099 .eraseblocks = { {4 * 1024, 128} },
5100 .block_erase = spi_block_erase_20,
5101 }, {
5102 .eraseblocks = { {64 * 1024, 8} },
5103 .block_erase = spi_block_erase_d8,
5104 }, {
5105 .eraseblocks = { {512 * 1024, 1} },
5106 .block_erase = spi_block_erase_60,
5107 }, {
5108 .eraseblocks = { {512 * 1024, 1} },
5109 .block_erase = spi_block_erase_c7,
5110 }
5111 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005112 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005113 .unlock = spi_disable_blockprotect,
5114 .write = spi_chip_write_256,
5115 .read = spi_chip_read,
5116 .voltage = {1650, 1950},
5117 },
5118
5119 {
5120 .vendor = "Eon",
5121 .name = "EN25S80",
5122 .bustype = BUS_SPI,
5123 .manufacture_id = EON_ID_NOPREFIX,
5124 .model_id = EON_EN25S80,
5125 .total_size = 1024,
5126 .page_size = 256,
5127 /* OTP: 256B total; enter 0x3A */
5128 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5129 .tested = TEST_UNTESTED,
5130 .probe = probe_spi_rdid,
5131 .probe_timing = TIMING_ZERO,
5132 .block_erasers = {
5133 {
5134 .eraseblocks = { {4 * 1024, 256} },
5135 .block_erase = spi_block_erase_20,
5136 }, {
5137 .eraseblocks = { {64 * 1024, 16} },
5138 .block_erase = spi_block_erase_d8,
5139 }, {
5140 .eraseblocks = { {1024 * 1024, 1} },
5141 .block_erase = spi_block_erase_60,
5142 }, {
5143 .eraseblocks = { {1024 * 1024, 1} },
5144 .block_erase = spi_block_erase_c7,
5145 }
5146 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005147 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaevd0e3ea12013-06-28 21:29:08 +00005148 .unlock = spi_disable_blockprotect,
5149 .write = spi_chip_write_256,
5150 .read = spi_chip_read,
5151 .voltage = {1650, 1950},
5152 },
5153
5154 {
5155 .vendor = "Eon",
5156 .name = "EN25S16",
5157 .bustype = BUS_SPI,
5158 .manufacture_id = EON_ID_NOPREFIX,
5159 .model_id = EON_EN25S16,
5160 .total_size = 2048,
5161 .page_size = 256,
5162 /* OTP: 512B total; enter 0x3A */
5163 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5164 .tested = TEST_UNTESTED,
5165 .probe = probe_spi_rdid,
5166 .probe_timing = TIMING_ZERO,
5167 .block_erasers = {
5168 {
5169 .eraseblocks = { {4 * 1024, 512} },
5170 .block_erase = spi_block_erase_20,
5171 }, {
5172 .eraseblocks = { {64 * 1024, 32} },
5173 .block_erase = spi_block_erase_52,
5174 }, {
5175 .eraseblocks = { {32 * 1024, 64} },
5176 .block_erase = spi_block_erase_d8,
5177 }, {
5178 .eraseblocks = { {2048 * 1024, 1} },
5179 .block_erase = spi_block_erase_60,
5180 }, {
5181 .eraseblocks = { {2048 * 1024, 1} },
5182 .block_erase = spi_block_erase_c7,
5183 }
5184 },
5185 .printlock = spi_prettyprint_status_register_en25s_wp,
5186 .unlock = spi_disable_blockprotect_bp3_srwd,
5187 .write = spi_chip_write_256,
5188 .read = spi_chip_read,
5189 .voltage = {1650, 1950},
5190 },
5191
5192 {
5193 .vendor = "Eon",
5194 .name = "EN25S32",
5195 .bustype = BUS_SPI,
5196 .manufacture_id = EON_ID_NOPREFIX,
5197 .model_id = EON_EN25S32,
5198 .total_size = 4096,
5199 .page_size = 256,
5200 /* OTP: 512B total; enter 0x3A */
5201 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5202 .tested = TEST_UNTESTED,
5203 .probe = probe_spi_rdid,
5204 .probe_timing = TIMING_ZERO,
5205 .block_erasers = {
5206 {
5207 .eraseblocks = { {4 * 1024, 1024} },
5208 .block_erase = spi_block_erase_20,
5209 }, {
5210 .eraseblocks = { {32 * 1024, 128} },
5211 .block_erase = spi_block_erase_52,
5212 }, {
5213 .eraseblocks = { {64 * 1024, 64} },
5214 .block_erase = spi_block_erase_d8,
5215 }, {
5216 .eraseblocks = { {4096 * 1024, 1} },
5217 .block_erase = spi_block_erase_60,
5218 }, {
5219 .eraseblocks = { {4096 * 1024, 1} },
5220 .block_erase = spi_block_erase_c7,
5221 }
5222 },
5223 .printlock = spi_prettyprint_status_register_en25s_wp,
5224 .unlock = spi_disable_blockprotect_bp3_srwd,
5225 .write = spi_chip_write_256,
5226 .read = spi_chip_read,
5227 .voltage = {1650, 1950},
5228 },
5229
5230 {
5231 .vendor = "Eon",
5232 .name = "EN25S64",
5233 .bustype = BUS_SPI,
5234 .manufacture_id = EON_ID_NOPREFIX,
5235 .model_id = EON_EN25S64,
5236 .total_size = 8192,
5237 .page_size = 256,
5238 /* OTP: 512B total; enter 0x3A */
5239 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5240 .tested = TEST_UNTESTED,
5241 .probe = probe_spi_rdid,
5242 .probe_timing = TIMING_ZERO,
5243 .block_erasers = {
5244 {
5245 .eraseblocks = { {4 * 1024, 2048} },
5246 .block_erase = spi_block_erase_20,
5247 }, {
5248 .eraseblocks = { {64 * 1024, 128} },
5249 .block_erase = spi_block_erase_d8,
5250 }, {
5251 .eraseblocks = { {8192 * 1024, 1} },
5252 .block_erase = spi_block_erase_60,
5253 }, {
5254 .eraseblocks = { {8192 * 1024, 1} },
5255 .block_erase = spi_block_erase_c7,
5256 }
5257 },
5258 .printlock = spi_prettyprint_status_register_en25s_wp,
5259 .unlock = spi_disable_blockprotect_bp3_srwd,
5260 .write = spi_chip_write_256,
5261 .read = spi_chip_read,
5262 .voltage = {1650, 1950},
5263 },
5264
5265 {
5266 .vendor = "Eon",
Russ Dill3cd5a122010-03-05 08:44:11 +00005267 .name = "EN29F010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005268 .bustype = BUS_PARALLEL,
Russ Dill3cd5a122010-03-05 08:44:11 +00005269 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005270 .model_id = EON_EN29F010,
Russ Dill3cd5a122010-03-05 08:44:11 +00005271 .total_size = 128,
5272 .page_size = 128,
5273 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00005274 .tested = TEST_OK_PRE,
Russ Dill3cd5a122010-03-05 08:44:11 +00005275 .probe = probe_jedec,
5276 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5277 .block_erasers =
5278 {
5279 {
5280 .eraseblocks = { {16 * 1024, 8} },
5281 .block_erase = erase_sector_jedec,
5282 },
5283 {
5284 .eraseblocks = { {128 * 1024, 1} },
5285 .block_erase = erase_chip_block_jedec,
5286 },
5287 },
5288 .write = write_jedec_1,
5289 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005290 .voltage = {4500, 5500},
Russ Dill3cd5a122010-03-05 08:44:11 +00005291 },
5292
5293 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00005294 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005295 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005296 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005297 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005298 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005299 .total_size = 256,
5300 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005301 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00005302 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005303 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005304 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005305 .block_erasers =
5306 {
5307 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005308 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005309 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00005310 {8 * 1024, 2},
5311 {32 * 1024, 1},
5312 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00005313 },
5314 .block_erase = erase_sector_jedec,
5315 }, {
5316 .eraseblocks = { {256 * 1024, 1} },
5317 .block_erase = erase_chip_block_jedec,
5318 },
5319 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005320 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005321 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005322 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005323 },
5324
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005325 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00005326 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005327 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005328 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005329 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005330 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005331 .total_size = 256,
5332 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00005333 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005334 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005335 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005336 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005337 .block_erasers =
5338 {
5339 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005340 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005341 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00005342 {32 * 1024, 1},
5343 {8 * 1024, 2},
5344 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00005345 },
5346 .block_erase = erase_sector_jedec,
5347 }, {
5348 .eraseblocks = { {256 * 1024, 1} },
5349 .block_erase = erase_chip_block_jedec,
5350 },
5351 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005352 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005353 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005354 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005355 },
5356
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005357 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005358 .vendor = "Eon",
Denis 'GNUtoo' Cariklib5f9d5c2014-12-07 21:57:53 +00005359 .name = "EN29LV040(A)",
5360 .bustype = BUS_PARALLEL,
5361 .manufacture_id = EON_ID,
5362 .model_id = EON_EN29LV040,
5363 .total_size = 512,
5364 .page_size = 4 * 1024,
5365 .tested = TEST_OK_PREW,
5366 .probe = probe_jedec,
5367 .probe_timing = TIMING_ZERO,
5368 .block_erasers =
5369 {
5370 {
5371 .eraseblocks = { {64 * 1024, 8} },
5372 .block_erase = erase_sector_jedec,
5373 },
5374 {
5375 .eraseblocks = { {512 * 1024, 1} },
5376 .block_erase = erase_chip_block_jedec,
5377 },
5378 },
5379 .write = write_jedec_1,
5380 .read = read_memmapped,
5381 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R and 55R, others 2.7-3.6V */
5382 },
5383
5384 {
5385 .vendor = "Eon",
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005386 .name = "EN29LV640B",
5387 .bustype = BUS_PARALLEL,
5388 .manufacture_id = EON_ID,
5389 .model_id = EON_EN29LV640B,
5390 .total_size = 8192,
5391 .page_size = 8192,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005392 .feature_bits = FEATURE_ADDR_SHIFTED,
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005393 .tested = TEST_OK_PREW,
5394 .probe = probe_en29lv640b,
5395 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5396 .block_erasers =
5397 {
5398 {
5399 .eraseblocks = {
5400 {8 * 1024, 8},
5401 {64 * 1024, 127},
5402 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005403 .block_erase = erase_block_jedec,
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005404 }, {
5405 .eraseblocks = { {8 * 1024 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005406 .block_erase = erase_chip_block_jedec,
Rudolf Marek47eff6b2012-04-14 22:51:40 +00005407 },
5408 },
5409 .write = write_en29lv640b,
5410 .read = read_memmapped,
5411 .voltage = {2700, 3600},
5412 },
5413
5414 {
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00005415 .vendor = "Eon",
5416 .name = "EN29GL064(A)B",
5417 .bustype = BUS_PARALLEL,
5418 .manufacture_id = EON_ID,
5419 .model_id = EON_EN29GL064B,
5420 .total_size = 8192,
5421 .page_size = 128 * 1024, /* actual page size is 16 */
5422 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5423 .tested = TEST_UNTESTED,
5424 .probe = probe_jedec_29gl,
5425 .probe_timing = TIMING_ZERO,
5426 .block_erasers =
5427 {
5428 {
5429 .eraseblocks = {
5430 {8 * 1024, 8},
5431 {64 * 1024, 127},
5432 },
5433 .block_erase = erase_sector_jedec,
5434 }, {
5435 .eraseblocks = { {8 * 1024 * 1024, 1} },
5436 .block_erase = erase_chip_block_jedec,
5437 },
5438 },
5439 .write = write_jedec_1,
5440 .read = read_memmapped,
5441 .voltage = {2700, 3600},
5442 },
5443
5444 {
5445 .vendor = "Eon",
5446 .name = "EN29GL064(A)T",
5447 .bustype = BUS_PARALLEL,
5448 .manufacture_id = EON_ID,
5449 .model_id = EON_EN29GL064T,
5450 .total_size = 8192,
5451 .page_size = 128 * 1024, /* actual page size is 16 */
5452 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5453 .tested = TEST_UNTESTED,
5454 .probe = probe_jedec_29gl,
5455 .probe_timing = TIMING_ZERO,
5456 .block_erasers =
5457 {
5458 {
5459 .eraseblocks = {
5460 {64 * 1024, 127},
5461 {8 * 1024, 8},
5462 },
5463 .block_erase = erase_sector_jedec,
5464 }, {
5465 .eraseblocks = { {8 * 1024 * 1024, 1} },
5466 .block_erase = erase_chip_block_jedec,
5467 },
5468 },
5469 .write = write_jedec_1,
5470 .read = read_memmapped,
5471 .voltage = {2700, 3600},
5472 },
5473
5474 {
5475 .vendor = "Eon",
5476 .name = "EN29GL064H/L",
5477 .bustype = BUS_PARALLEL,
5478 .manufacture_id = EON_ID,
5479 .model_id = EON_EN29GL064HL,
5480 .total_size = 8192,
5481 .page_size = 128 * 1024, /* actual page size is 16 */
5482 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5483 .tested = TEST_UNTESTED,
5484 .probe = probe_jedec_29gl,
5485 .probe_timing = TIMING_ZERO,
5486 .block_erasers =
5487 {
5488 {
5489 .eraseblocks = { {64 * 1024, 128} },
5490 .block_erase = erase_sector_jedec,
5491 }, {
5492 .eraseblocks = { {8 * 1024 * 1024, 1} },
5493 .block_erase = erase_chip_block_jedec,
5494 },
5495 },
5496 .write = write_jedec_1,
5497 .read = read_memmapped,
5498 .voltage = {2700, 3600},
5499 },
5500
5501 {
5502 .vendor = "Eon",
5503 .name = "EN29GL128",
5504 .bustype = BUS_PARALLEL,
5505 .manufacture_id = EON_ID,
5506 .model_id = EON_EN29GL128HL,
5507 .total_size = 16384,
5508 .page_size = 128 * 1024, /* actual page size is 16 */
5509 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5510 .tested = TEST_UNTESTED,
5511 .probe = probe_jedec_29gl,
5512 .probe_timing = TIMING_ZERO,
5513 .block_erasers =
5514 {
5515 {
5516 .eraseblocks = { {128 * 1024, 128} },
5517 .block_erase = erase_sector_jedec,
5518 }, {
5519 .eraseblocks = { {16 * 1024 * 1024, 1} },
5520 .block_erase = erase_chip_block_jedec,
5521 },
5522 },
5523 .write = write_jedec_1,
5524 .read = read_memmapped,
5525 .voltage = {2700, 3600},
5526 },
5527
5528 {
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005529 .vendor = "ESI",
5530 .name = "ES25P40",
5531 .bustype = BUS_SPI,
5532 .manufacture_id = EXCEL_ID_NOPREFIX,
5533 .model_id = EXCEL_ES25P40,
5534 .total_size = 512,
5535 .page_size = 256,
Elyes HAOUASe2c90c42018-08-18 09:04:41 +02005536 /* 256-byte parameter page separate from memory array:
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005537 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
5538 .feature_bits = FEATURE_WRSR_WREN,
5539 .tested = TEST_UNTESTED,
5540 .probe = probe_spi_rdid,
5541 .probe_timing = TIMING_ZERO,
5542 .block_erasers =
5543 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00005544 {
5545 .eraseblocks = { {64 * 1024, 8} },
5546 .block_erase = spi_block_erase_d8,
5547 }, {
5548 .eraseblocks = { {512 * 1024, 1} },
5549 .block_erase = spi_block_erase_c7,
5550 }
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005551 },
5552 .printlock = spi_prettyprint_status_register_bp2_srwd,
5553 .unlock = spi_disable_blockprotect_bp2_srwd,
5554 .write = spi_chip_write_256,
5555 .read = spi_chip_read, /* Fast Read (0x0B) supported */
5556 .voltage = {2700, 3600},
5557 },
5558
5559 {
5560 .vendor = "ESI",
5561 .name = "ES25P80",
5562 .bustype = BUS_SPI,
5563 .manufacture_id = EXCEL_ID_NOPREFIX,
5564 .model_id = EXCEL_ES25P80,
5565 .total_size = 1024,
5566 .page_size = 256,
Elyes HAOUASe2c90c42018-08-18 09:04:41 +02005567 /* 256-byte parameter page separate from memory array:
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005568 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
5569 .feature_bits = FEATURE_WRSR_WREN,
5570 .tested = TEST_UNTESTED,
5571 .probe = probe_spi_rdid,
5572 .probe_timing = TIMING_ZERO,
5573 .block_erasers =
5574 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00005575 {
5576 .eraseblocks = { {64 * 1024, 16} },
5577 .block_erase = spi_block_erase_d8,
5578 }, {
5579 .eraseblocks = { {1024 * 1024, 1} },
5580 .block_erase = spi_block_erase_c7,
5581 }
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005582 },
5583 .printlock = spi_prettyprint_status_register_bp2_srwd,
5584 .unlock = spi_disable_blockprotect_bp2_srwd,
5585 .write = spi_chip_write_256,
5586 .read = spi_chip_read, /* Fast Read (0x0B) supported */
5587 .voltage = {2700, 3600},
5588 },
5589
5590 {
5591 .vendor = "ESI",
5592 .name = "ES25P16",
5593 .bustype = BUS_SPI,
5594 .manufacture_id = EXCEL_ID_NOPREFIX,
5595 .model_id = EXCEL_ES25P16,
5596 .total_size = 2 * 1024,
5597 .page_size = 256,
Elyes HAOUASe2c90c42018-08-18 09:04:41 +02005598 /* 256-byte parameter page separate from memory array:
Hatim Kanchwalab3d7fba2016-02-01 00:27:25 +00005599 * supports read (0x53), fast read (0x5B), erase (0xD5) and program (0x52) instructions. */
5600 .feature_bits = FEATURE_WRSR_WREN,
5601 .tested = TEST_UNTESTED,
5602 .probe = probe_spi_rdid,
5603 .probe_timing = TIMING_ZERO,
5604 .block_erasers =
5605 {
5606 {
5607 .eraseblocks = { {64 * 1024, 32} },
5608 .block_erase = spi_block_erase_d8,
5609 }, {
5610 .eraseblocks = { {2 * 1024 * 1024, 1} },
5611 .block_erase = spi_block_erase_c7,
5612 }
5613 },
5614 .printlock = spi_prettyprint_status_register_bp2_srwd,
5615 .unlock = spi_disable_blockprotect_bp2_srwd,
5616 .write = spi_chip_write_256,
5617 .read = spi_chip_read, /* Fast Read (0x0B) supported */
5618 .voltage = {2700, 3600},
5619 },
5620
5621 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005622 .vendor = "Fujitsu",
5623 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005624 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005625 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005626 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005627 .total_size = 512,
5628 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005629 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005630 .tested = TEST_UNTESTED,
5631 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005632 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005633 .block_erasers =
5634 {
5635 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005636 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005637 {16 * 1024, 1},
5638 {8 * 1024, 2},
5639 {32 * 1024, 1},
5640 {64 * 1024, 7},
5641 },
Sean Nelson35727f72010-01-28 23:55:12 +00005642 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005643 }, {
5644 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005645 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005646 },
5647 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005648 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005649 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005650 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005651 },
5652
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005653 {
5654 .vendor = "Fujitsu",
5655 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005656 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005657 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005658 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005659 .total_size = 512,
5660 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005661 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005662 .tested = TEST_UNTESTED,
5663 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005664 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00005665 .block_erasers =
5666 {
5667 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005668 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005669 {64 * 1024, 7},
5670 {32 * 1024, 1},
5671 {8 * 1024, 2},
5672 {16 * 1024, 1},
5673 },
Sean Nelson35727f72010-01-28 23:55:12 +00005674 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005675 }, {
5676 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005677 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005678 },
5679 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005680 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005681 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005682 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005683 },
5684
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005685 {
Sean Nelson35727f72010-01-28 23:55:12 +00005686 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005687 .vendor = "Fujitsu",
5688 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005689 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005690 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005691 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005692 .total_size = 512,
5693 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005694 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00005695 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005696 .probe = probe_jedec,
5697 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson6b11ad22009-12-23 17:05:59 +00005698 .block_erasers =
5699 {
5700 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005701 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005702 {16 * 1024, 1},
5703 {8 * 1024, 2},
5704 {32 * 1024, 1},
5705 {64 * 1024, 7},
5706 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005707 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005708 }, {
5709 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005710 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005711 },
5712 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005713 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005714 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005715 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00005716 },
5717
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005718 {
5719 .vendor = "Fujitsu",
5720 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005721 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005722 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005723 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005724 .total_size = 512,
5725 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005726 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005727 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005728 .probe = probe_jedec,
5729 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson6b11ad22009-12-23 17:05:59 +00005730 .block_erasers =
5731 {
5732 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00005733 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00005734 {64 * 1024, 7},
5735 {32 * 1024, 1},
5736 {8 * 1024, 2},
5737 {16 * 1024, 1},
5738 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005739 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005740 }, {
5741 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005742 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005743 },
5744 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005745 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005746 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005747 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00005748 },
5749
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005750 {
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005751 .vendor = "Fujitsu",
5752 .name = "MBM29LV160BE",
5753 .bustype = BUS_PARALLEL,
5754 .manufacture_id = FUJITSU_ID,
5755 .model_id = FUJITSU_MBM29LV160BE,
5756 .total_size = 2 * 1024,
5757 .page_size = 0,
5758 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_SHORT_RESET,
5759 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005760 .probe = probe_jedec,
5761 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005762 .block_erasers =
5763 {
5764 {
5765 .eraseblocks = {
5766 {16 * 1024, 1},
5767 {8 * 1024, 2},
5768 {32 * 1024, 1},
5769 {64 * 1024, 31},
5770 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005771 .block_erase = erase_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005772 }, {
5773 .eraseblocks = { {2048 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005774 .block_erase = erase_chip_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005775 },
5776 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005777 .write = write_jedec_1, /* Supports a fast mode too */
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005778 .read = read_memmapped,
5779 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70, others 2.7-3.6V */
5780 },
5781
5782 {
5783 .vendor = "Fujitsu",
5784 .name = "MBM29LV160TE",
5785 .bustype = BUS_PARALLEL,
5786 .manufacture_id = FUJITSU_ID,
5787 .model_id = FUJITSU_MBM29LV160TE,
5788 .total_size = 2 * 1024,
5789 .page_size = 0,
5790 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_SHORT_RESET,
5791 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005792 .probe = probe_jedec,
5793 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005794 .block_erasers =
5795 {
5796 {
5797 .eraseblocks = {
5798 {64 * 1024, 31},
5799 {32 * 1024, 1},
5800 {8 * 1024, 2},
5801 {16 * 1024, 1},
5802 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005803 .block_erase = erase_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005804 }, {
5805 .eraseblocks = { {2048 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005806 .block_erase = erase_chip_block_jedec,
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005807 },
5808 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +00005809 .write = write_jedec_1, /* Supports a fast mode too */
Stefan Tauner6db8bad2013-08-25 13:31:43 +00005810 .read = read_memmapped,
5811 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70, others 2.7-3.6V */
5812 },
5813
5814 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00005815 .vendor = "GigaDevice",
Roman Titov95edc892015-04-03 21:29:04 +00005816 .name = "GD25LQ40",
5817 .bustype = BUS_SPI,
5818 .manufacture_id = GIGADEVICE_ID,
5819 .model_id = GIGADEVICE_GD25LQ40,
5820 .total_size = 512,
5821 .page_size = 256,
5822 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5823 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5824 .tested = TEST_UNTESTED,
5825 .probe = probe_spi_rdid,
5826 .probe_timing = TIMING_ZERO,
5827 .block_erasers =
5828 {
5829 {
5830 .eraseblocks = { {4 * 1024, 128} },
5831 .block_erase = spi_block_erase_20,
5832 }, {
5833 .eraseblocks = { {32 * 1024, 16} },
5834 .block_erase = spi_block_erase_52,
5835 }, {
5836 .eraseblocks = { {64 * 1024, 8} },
5837 .block_erase = spi_block_erase_d8,
5838 }, {
5839 .eraseblocks = { {512 * 1024, 1} },
5840 .block_erase = spi_block_erase_60,
5841 }, {
5842 .eraseblocks = { {512 * 1024, 1} },
5843 .block_erase = spi_block_erase_c7,
5844 }
5845 },
5846 .printlock = spi_prettyprint_status_register_bp4_srwd,
5847 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5848 .write = spi_chip_write_256,
5849 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5850 .voltage = {1695, 1950},
5851 },
5852
5853 {
5854 .vendor = "GigaDevice",
5855 .name = "GD25LQ80",
5856 .bustype = BUS_SPI,
5857 .manufacture_id = GIGADEVICE_ID,
5858 .model_id = GIGADEVICE_GD25LQ80,
5859 .total_size = 1024,
5860 .page_size = 256,
5861 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5862 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5863 .tested = TEST_UNTESTED,
5864 .probe = probe_spi_rdid,
5865 .probe_timing = TIMING_ZERO,
5866 .block_erasers =
5867 {
5868 {
5869 .eraseblocks = { {4 * 1024, 256} },
5870 .block_erase = spi_block_erase_20,
5871 }, {
5872 .eraseblocks = { {32 * 1024, 32} },
5873 .block_erase = spi_block_erase_52,
5874 }, {
5875 .eraseblocks = { {64 * 1024, 16} },
5876 .block_erase = spi_block_erase_d8,
5877 }, {
5878 .eraseblocks = { {1 * 1024 * 1024, 1} },
5879 .block_erase = spi_block_erase_60,
5880 }, {
5881 .eraseblocks = { {1 * 1024 * 1024, 1} },
5882 .block_erase = spi_block_erase_c7,
5883 }
5884 },
5885 .printlock = spi_prettyprint_status_register_bp4_srwd,
5886 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5887 .write = spi_chip_write_256,
5888 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5889 .voltage = {1695, 1950},
5890 },
5891
5892 {
5893 .vendor = "GigaDevice",
5894 .name = "GD25LQ16",
5895 .bustype = BUS_SPI,
5896 .manufacture_id = GIGADEVICE_ID,
5897 .model_id = GIGADEVICE_GD25LQ16,
5898 .total_size = 2048,
5899 .page_size = 256,
5900 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5901 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5902 .tested = TEST_UNTESTED,
5903 .probe = probe_spi_rdid,
5904 .probe_timing = TIMING_ZERO,
5905 .block_erasers =
5906 {
5907 {
5908 .eraseblocks = { {4 * 1024, 512} },
5909 .block_erase = spi_block_erase_20,
5910 }, {
5911 .eraseblocks = { {32 * 1024, 64} },
5912 .block_erase = spi_block_erase_52,
5913 }, {
5914 .eraseblocks = { {64 * 1024, 32} },
5915 .block_erase = spi_block_erase_d8,
5916 }, {
5917 .eraseblocks = { {2 * 1024 * 1024, 1} },
5918 .block_erase = spi_block_erase_60,
5919 }, {
5920 .eraseblocks = { {2 * 1024 * 1024, 1} },
5921 .block_erase = spi_block_erase_c7,
5922 }
5923 },
5924 .printlock = spi_prettyprint_status_register_bp4_srwd,
5925 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5926 .write = spi_chip_write_256,
5927 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5928 .voltage = {1695, 1950},
5929 },
5930
5931 {
5932 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00005933 .name = "GD25LQ32",
5934 .bustype = BUS_SPI,
5935 .manufacture_id = GIGADEVICE_ID,
5936 .model_id = GIGADEVICE_GD25LQ32,
5937 .total_size = 4096,
5938 .page_size = 256,
5939 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5940 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5941 .tested = TEST_OK_PREW,
5942 .probe = probe_spi_rdid,
5943 .probe_timing = TIMING_ZERO,
5944 .block_erasers =
5945 {
5946 {
5947 .eraseblocks = { {4 * 1024, 1024} },
5948 .block_erase = spi_block_erase_20,
5949 }, {
5950 .eraseblocks = { {32 * 1024, 128} },
5951 .block_erase = spi_block_erase_52,
5952 }, {
5953 .eraseblocks = { {64 * 1024, 64} },
5954 .block_erase = spi_block_erase_d8,
5955 }, {
5956 .eraseblocks = { {4 * 1024 * 1024, 1} },
5957 .block_erase = spi_block_erase_60,
5958 }, {
5959 .eraseblocks = { {4 * 1024 * 1024, 1} },
5960 .block_erase = spi_block_erase_c7,
5961 }
5962 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00005963 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00005964 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
5965 .write = spi_chip_write_256,
Roman Titov95edc892015-04-03 21:29:04 +00005966 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5967 .voltage = {1695, 1950},
5968 },
5969
5970 {
5971 .vendor = "GigaDevice",
5972 .name = "GD25LQ64(B)",
5973 .bustype = BUS_SPI,
5974 .manufacture_id = GIGADEVICE_ID,
5975 .model_id = GIGADEVICE_GD25LQ64,
5976 .total_size = 8192,
5977 .page_size = 256,
5978 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
5979 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00005980 .tested = TEST_OK_PREW,
Roman Titov95edc892015-04-03 21:29:04 +00005981 .probe = probe_spi_rdid,
5982 .probe_timing = TIMING_ZERO,
5983 .block_erasers =
5984 {
5985 {
5986 .eraseblocks = { {4 * 1024, 2048} },
5987 .block_erase = spi_block_erase_20,
5988 }, {
5989 .eraseblocks = { {32 * 1024, 256} },
5990 .block_erase = spi_block_erase_52,
5991 }, {
5992 .eraseblocks = { {64 * 1024, 128} },
5993 .block_erase = spi_block_erase_d8,
5994 }, {
5995 .eraseblocks = { {8 * 1024 * 1024, 1} },
5996 .block_erase = spi_block_erase_60,
5997 }, {
5998 .eraseblocks = { {8 * 1024 * 1024, 1} },
5999 .block_erase = spi_block_erase_c7,
6000 }
6001 },
6002 .printlock = spi_prettyprint_status_register_bp4_srwd,
6003 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6004 .write = spi_chip_write_256,
6005 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6006 .voltage = {1695, 1950},
6007 },
6008
6009 {
6010 .vendor = "GigaDevice",
6011 .name = "GD25LQ128",
6012 .bustype = BUS_SPI,
6013 .manufacture_id = GIGADEVICE_ID,
6014 .model_id = GIGADEVICE_GD25LQ128,
6015 .total_size = 16384,
6016 .page_size = 256,
6017 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
6018 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6019 .tested = TEST_UNTESTED,
6020 .probe = probe_spi_rdid,
6021 .probe_timing = TIMING_ZERO,
6022 .block_erasers =
6023 {
6024 {
6025 .eraseblocks = { {4 * 1024, 4096} },
6026 .block_erase = spi_block_erase_20,
6027 }, {
6028 .eraseblocks = { {32 * 1024, 512} },
6029 .block_erase = spi_block_erase_52,
6030 }, {
6031 .eraseblocks = { {64 * 1024, 256} },
6032 .block_erase = spi_block_erase_d8,
6033 }, {
6034 .eraseblocks = { {16 * 1024 * 1024, 1} },
6035 .block_erase = spi_block_erase_60,
6036 }, {
6037 .eraseblocks = { {16 * 1024 * 1024, 1} },
6038 .block_erase = spi_block_erase_c7,
6039 }
6040 },
6041 .printlock = spi_prettyprint_status_register_bp4_srwd,
6042 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6043 .write = spi_chip_write_256,
6044 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6045 .voltage = {1695, 1950},
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006046 },
6047
6048 {
6049 .vendor = "GigaDevice",
6050 .name = "GD25Q512",
6051 .bustype = BUS_SPI,
6052 .manufacture_id = GIGADEVICE_ID,
6053 .model_id = GIGADEVICE_GD25Q512,
6054 .total_size = 64,
6055 .page_size = 256,
6056 .feature_bits = FEATURE_WRSR_WREN,
Nico Huberc6fe5d82018-08-18 12:45:58 +02006057 .tested = TEST_OK_PREW,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006058 .probe = probe_spi_rdid,
6059 .probe_timing = TIMING_ZERO,
6060 .block_erasers = {
6061 {
6062 .eraseblocks = { {4 * 1024, 16} },
6063 .block_erase = spi_block_erase_20,
6064 }, {
6065 .eraseblocks = { {32 * 1024, 2} },
6066 .block_erase = spi_block_erase_52,
6067 }, {
6068 .eraseblocks = { {64 * 1024, 1} },
6069 .block_erase = spi_block_erase_60,
6070 }, {
6071 .eraseblocks = { {64 * 1024, 1} },
6072 .block_erase = spi_block_erase_c7,
6073 }
6074 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006075 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006076 .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 = {2700, 3600},
6080 },
6081
6082 {
6083 .vendor = "GigaDevice",
6084 .name = "GD25Q10",
6085 .bustype = BUS_SPI,
6086 .manufacture_id = GIGADEVICE_ID,
6087 .model_id = GIGADEVICE_GD25Q10,
6088 .total_size = 128,
6089 .page_size = 256,
6090 .feature_bits = FEATURE_WRSR_WREN,
6091 .tested = TEST_UNTESTED,
6092 .probe = probe_spi_rdid,
6093 .probe_timing = TIMING_ZERO,
6094 .block_erasers = {
6095 {
6096 .eraseblocks = { {4 * 1024, 32} },
6097 .block_erase = spi_block_erase_20,
6098 }, {
6099 .eraseblocks = { {32 * 1024, 4} },
6100 .block_erase = spi_block_erase_52,
6101 }, {
6102 .eraseblocks = { {64 * 1024, 2} },
6103 .block_erase = spi_block_erase_d8,
6104 }, {
6105 .eraseblocks = { {128 * 1024, 1} },
6106 .block_erase = spi_block_erase_60,
6107 }, {
6108 .eraseblocks = { {128 * 1024, 1} },
6109 .block_erase = spi_block_erase_c7,
6110 }
6111 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006112 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006113 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6114 .write = spi_chip_write_256,
6115 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6116 .voltage = {2700, 3600},
6117 },
6118
6119 {
6120 .vendor = "GigaDevice",
6121 .name = "GD25Q20(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006122 .bustype = BUS_SPI,
6123 .manufacture_id = GIGADEVICE_ID,
6124 .model_id = GIGADEVICE_GD25Q20,
6125 .total_size = 256,
6126 .page_size = 256,
6127 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +00006128 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006129 .probe = probe_spi_rdid,
6130 .probe_timing = TIMING_ZERO,
6131 .block_erasers =
6132 {
6133 {
6134 .eraseblocks = { {4 * 1024, 64} },
6135 .block_erase = spi_block_erase_20,
6136 }, {
6137 .eraseblocks = { {32 * 1024, 8} },
6138 .block_erase = spi_block_erase_52,
6139 }, {
6140 .eraseblocks = { {64 * 1024, 4} },
6141 .block_erase = spi_block_erase_d8,
6142 }, {
6143 .eraseblocks = { {256 * 1024, 1} },
6144 .block_erase = spi_block_erase_60,
6145 }, {
6146 .eraseblocks = { {256 * 1024, 1} },
6147 .block_erase = spi_block_erase_c7,
6148 }
6149 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006150 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006151 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006152 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006153 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Taunereb582572012-09-21 12:52:50 +00006154 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006155 },
6156
6157 {
6158 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006159 .name = "GD25Q40(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006160 .bustype = BUS_SPI,
6161 .manufacture_id = GIGADEVICE_ID,
6162 .model_id = GIGADEVICE_GD25Q40,
6163 .total_size = 512,
6164 .page_size = 256,
6165 .feature_bits = FEATURE_WRSR_WREN,
6166 .tested = TEST_UNTESTED,
6167 .probe = probe_spi_rdid,
6168 .probe_timing = TIMING_ZERO,
6169 .block_erasers =
6170 {
6171 {
6172 .eraseblocks = { {4 * 1024, 128} },
6173 .block_erase = spi_block_erase_20,
6174 }, {
6175 .eraseblocks = { {32 * 1024, 16} },
6176 .block_erase = spi_block_erase_52,
6177 }, {
6178 .eraseblocks = { {64 * 1024, 8} },
6179 .block_erase = spi_block_erase_d8,
6180 }, {
6181 .eraseblocks = { {512 * 1024, 1} },
6182 .block_erase = spi_block_erase_60,
6183 }, {
6184 .eraseblocks = { {512 * 1024, 1} },
6185 .block_erase = spi_block_erase_c7,
6186 }
6187 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006188 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006189 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006190 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006191 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Taunereb582572012-09-21 12:52:50 +00006192 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006193 },
6194
6195 {
6196 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00006197 .name = "GD25Q80(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006198 .bustype = BUS_SPI,
6199 .manufacture_id = GIGADEVICE_ID,
6200 .model_id = GIGADEVICE_GD25Q80,
6201 .total_size = 1024,
6202 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006203 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006204 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6205 .tested = TEST_OK_PREW,
6206 .probe = probe_spi_rdid,
6207 .probe_timing = TIMING_ZERO,
6208 .block_erasers =
6209 {
6210 {
6211 .eraseblocks = { {4 * 1024, 256} },
6212 .block_erase = spi_block_erase_20,
6213 }, {
6214 .eraseblocks = { {32 * 1024, 32} },
6215 .block_erase = spi_block_erase_52,
6216 }, {
6217 .eraseblocks = { {64 * 1024, 16} },
6218 .block_erase = spi_block_erase_d8,
6219 }, {
6220 .eraseblocks = { {1024 * 1024, 1} },
6221 .block_erase = spi_block_erase_60,
6222 }, {
6223 .eraseblocks = { {1024 * 1024, 1} },
6224 .block_erase = spi_block_erase_c7,
6225 }
6226 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006227 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006228 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006229 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006230 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006231 .voltage = {2700, 3600},
6232 },
6233
6234 {
6235 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006236 .name = "GD25Q16(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006237 .bustype = BUS_SPI,
6238 .manufacture_id = GIGADEVICE_ID,
6239 .model_id = GIGADEVICE_GD25Q16,
6240 .total_size = 2048,
6241 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006242 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006243 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner6697f712014-08-06 15:09:15 +00006244 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006245 .probe = probe_spi_rdid,
6246 .probe_timing = TIMING_ZERO,
6247 .block_erasers =
6248 {
6249 {
6250 .eraseblocks = { {4 * 1024, 512} },
6251 .block_erase = spi_block_erase_20,
6252 }, {
6253 .eraseblocks = { {32 * 1024, 64} },
6254 .block_erase = spi_block_erase_52,
6255 }, {
6256 .eraseblocks = { {64 * 1024, 32} },
6257 .block_erase = spi_block_erase_d8,
6258 }, {
6259 .eraseblocks = { {2 * 1024 * 1024, 1} },
6260 .block_erase = spi_block_erase_60,
6261 }, {
6262 .eraseblocks = { {2 * 1024 * 1024, 1} },
6263 .block_erase = spi_block_erase_c7,
6264 }
6265 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006266 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006267 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006268 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006269 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006270 .voltage = {2700, 3600},
6271 },
6272
6273 {
6274 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00006275 .name = "GD25Q32(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006276 .bustype = BUS_SPI,
6277 .manufacture_id = GIGADEVICE_ID,
6278 .model_id = GIGADEVICE_GD25Q32,
6279 .total_size = 4096,
6280 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006281 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006282 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00006283 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006284 .probe = probe_spi_rdid,
6285 .probe_timing = TIMING_ZERO,
6286 .block_erasers =
6287 {
6288 {
6289 .eraseblocks = { {4 * 1024, 1024} },
6290 .block_erase = spi_block_erase_20,
6291 }, {
6292 .eraseblocks = { {32 * 1024, 128} },
6293 .block_erase = spi_block_erase_52,
6294 }, {
6295 .eraseblocks = { {64 * 1024, 64} },
6296 .block_erase = spi_block_erase_d8,
6297 }, {
6298 .eraseblocks = { {4 * 1024 * 1024, 1} },
6299 .block_erase = spi_block_erase_60,
6300 }, {
6301 .eraseblocks = { {4 * 1024 * 1024, 1} },
6302 .block_erase = spi_block_erase_c7,
6303 }
6304 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006305 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006306 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006307 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006308 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006309 .voltage = {2700, 3600},
6310 },
6311
6312 {
6313 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00006314 .name = "GD25Q64(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006315 .bustype = BUS_SPI,
6316 .manufacture_id = GIGADEVICE_ID,
6317 .model_id = GIGADEVICE_GD25Q64,
6318 .total_size = 8192,
6319 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006320 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006321 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00006322 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006323 .probe = probe_spi_rdid,
6324 .probe_timing = TIMING_ZERO,
6325 .block_erasers =
6326 {
6327 {
6328 .eraseblocks = { {4 * 1024, 2048} },
6329 .block_erase = spi_block_erase_20,
6330 }, {
6331 .eraseblocks = { {32 * 1024, 256} },
6332 .block_erase = spi_block_erase_52,
6333 }, {
6334 .eraseblocks = { {64 * 1024, 128} },
6335 .block_erase = spi_block_erase_d8,
6336 }, {
6337 .eraseblocks = { {8 * 1024 * 1024, 1} },
6338 .block_erase = spi_block_erase_60,
6339 }, {
6340 .eraseblocks = { {8 * 1024 * 1024, 1} },
6341 .block_erase = spi_block_erase_c7,
6342 }
6343 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006344 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006345 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006346 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006347 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Tauner352e50b2013-02-22 15:58:45 +00006348 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006349 },
6350
6351 {
6352 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00006353 .name = "GD25Q128B",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006354 .bustype = BUS_SPI,
6355 .manufacture_id = GIGADEVICE_ID,
6356 .model_id = GIGADEVICE_GD25Q128,
6357 .total_size = 16384,
6358 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006359 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006360 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6361 .tested = TEST_UNTESTED,
6362 .probe = probe_spi_rdid,
6363 .probe_timing = TIMING_ZERO,
6364 .block_erasers =
6365 {
6366 {
6367 .eraseblocks = { {4 * 1024, 4096} },
6368 .block_erase = spi_block_erase_20,
6369 }, {
6370 .eraseblocks = { {32 * 1024, 512} },
6371 .block_erase = spi_block_erase_52,
6372 }, {
6373 .eraseblocks = { {64 * 1024, 256} },
6374 .block_erase = spi_block_erase_d8,
6375 }, {
6376 .eraseblocks = { {16 * 1024 * 1024, 1} },
6377 .block_erase = spi_block_erase_60,
6378 }, {
6379 .eraseblocks = { {16 * 1024 * 1024, 1} },
6380 .block_erase = spi_block_erase_c7,
6381 }
6382 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00006383 .printlock = spi_prettyprint_status_register_bp4_srwd,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006384 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6385 .write = spi_chip_write_256,
6386 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6387 .voltage = {2700, 3600},
6388 },
6389
6390 {
6391 .vendor = "GigaDevice",
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006392 .name = "GD25Q128C",
6393 .bustype = BUS_SPI,
6394 .manufacture_id = GIGADEVICE_ID,
6395 .model_id = GIGADEVICE_GD25Q128,
6396 .total_size = 16384,
6397 .page_size = 256,
6398 /* OTP: 1536B total; read 0x48; write 0x42, erase 0x44 */
6399 /* QPI: enable 0x38, disable 0xFF */
6400 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6401 .tested = TEST_UNTESTED,
6402 .probe = probe_spi_rdid,
6403 .probe_timing = TIMING_ZERO,
6404 .block_erasers =
6405 {
6406 {
6407 .eraseblocks = { {4 * 1024, 4096} },
6408 .block_erase = spi_block_erase_20,
6409 }, {
6410 .eraseblocks = { {32 * 1024, 512} },
6411 .block_erase = spi_block_erase_52,
6412 }, {
6413 .eraseblocks = { {64 * 1024, 256} },
6414 .block_erase = spi_block_erase_d8,
6415 }, {
6416 .eraseblocks = { {16 * 1024 * 1024, 1} },
6417 .block_erase = spi_block_erase_60,
6418 }, {
6419 .eraseblocks = { {16 * 1024 * 1024, 1} },
6420 .block_erase = spi_block_erase_c7,
6421 }
6422 },
6423 /* TODO: 2nd status reg (read 0x35, write 0x31) and 3rd status reg (read 0x15, write 0x11) */
6424 .printlock = spi_prettyprint_status_register_bp4_srwd,
6425 .unlock = spi_disable_blockprotect_bp4_srwd,
6426 .write = spi_chip_write_256,
6427 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6428 .voltage = {2700, 3600},
6429 },
6430
6431 {
6432 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00006433 .name = "GD25T80",
6434 .bustype = BUS_SPI,
6435 .manufacture_id = GIGADEVICE_ID,
6436 .model_id = GIGADEVICE_GD25T80,
6437 .total_size = 1024,
6438 .page_size = 256,
6439 /* OTP: 256B total; enter 0x3A */
6440 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6441 .tested = TEST_UNTESTED,
6442 .probe = probe_spi_rdid,
6443 .probe_timing = TIMING_ZERO,
6444 .block_erasers = {
6445 {
6446 .eraseblocks = { {4 * 1024, 256} },
6447 .block_erase = spi_block_erase_20,
6448 }, {
6449 .eraseblocks = { {64 * 1024, 16} },
6450 .block_erase = spi_block_erase_52,
6451 }, {
6452 .eraseblocks = { {64 * 1024, 16} },
6453 .block_erase = spi_block_erase_d8,
6454 }, {
6455 .eraseblocks = { {1024 * 1024, 1} },
6456 .block_erase = spi_block_erase_60,
6457 }, {
6458 .eraseblocks = { {1024 * 1024, 1} },
6459 .block_erase = spi_block_erase_c7,
6460 }
6461 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006462 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006463 .unlock = spi_disable_blockprotect,
6464 .write = spi_chip_write_256,
6465 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00006466 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00006467 },
6468
6469 {
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006470 .vendor = "GigaDevice",
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006471 .name = "GD25VQ21B",
6472 .bustype = BUS_SPI,
6473 .manufacture_id = GIGADEVICE_ID,
6474 .model_id = GIGADEVICE_GD25VQ21B,
6475 .total_size = 256,
6476 .page_size = 256,
6477 /* OTP: 1536B total; read 0x48, write 0x42, erase 0x44 */
6478 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6479 .tested = TEST_UNTESTED,
6480 .probe = probe_spi_rdid,
6481 .probe_timing = TIMING_ZERO,
6482 .block_erasers =
6483 {
6484 {
6485 .eraseblocks = { { 4 * 1024, 64} },
6486 .block_erase = spi_block_erase_20,
6487 }, {
6488 .eraseblocks = { { 32 * 1024, 8} },
6489 .block_erase = spi_block_erase_52,
6490 }, {
6491 .eraseblocks = { { 64 * 1024, 4} },
6492 .block_erase = spi_block_erase_d8,
6493 }, {
6494 .eraseblocks = { {256 * 1024, 1} },
6495 .block_erase = spi_block_erase_60,
6496 }, {
6497 .eraseblocks = { {256 * 1024, 1} },
6498 .block_erase = spi_block_erase_c7,
6499 }
6500 },
6501 .printlock = spi_prettyprint_status_register_bp4_srwd,
6502 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6503 .write = spi_chip_write_256,
6504 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6505 .voltage = {2300, 3600},
6506 },
6507
6508 {
6509 .vendor = "GigaDevice",
6510 .name = "GD25VQ40C",
6511 .bustype = BUS_SPI,
6512 .manufacture_id = GIGADEVICE_ID,
6513 .model_id = GIGADEVICE_GD25VQ41B,
6514 .total_size = 512,
6515 .page_size = 256,
6516 /* Supports SFDP */
6517 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6518 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6519 .tested = TEST_UNTESTED,
6520 .probe = probe_spi_rdid,
6521 .probe_timing = TIMING_ZERO,
6522 .block_erasers =
6523 {
6524 {
6525 .eraseblocks = { { 4 * 1024, 128} },
6526 .block_erase = spi_block_erase_20,
6527 }, {
6528 .eraseblocks = { { 32 * 1024, 16} },
6529 .block_erase = spi_block_erase_52,
6530 }, {
6531 .eraseblocks = { { 64 * 1024, 8} },
6532 .block_erase = spi_block_erase_d8,
6533 }, {
6534 .eraseblocks = { {512 * 1024, 1} },
6535 .block_erase = spi_block_erase_60,
6536 }, {
6537 .eraseblocks = { {512 * 1024, 1} },
6538 .block_erase = spi_block_erase_c7,
6539 }
6540 },
6541 .printlock = spi_prettyprint_status_register_bp4_srwd,
6542 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6543 .write = spi_chip_write_256,
6544 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6545 .voltage = {2300, 3600},
6546 },
6547
6548 {
6549 .vendor = "GigaDevice",
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006550 .name = "GD25VQ41B",
6551 .bustype = BUS_SPI,
6552 .manufacture_id = GIGADEVICE_ID,
6553 .model_id = GIGADEVICE_GD25VQ41B,
6554 .total_size = 512,
6555 .page_size = 256,
6556 /* OTP: 1536B total; read 0x48, write 0x42, erase 0x44 */
6557 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner0be072c2016-03-13 15:16:30 +00006558 .tested = TEST_OK_PREW,
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006559 .probe = probe_spi_rdid,
6560 .probe_timing = TIMING_ZERO,
Stefan Tauner0be072c2016-03-13 15:16:30 +00006561 .block_erasers =
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006562 {
Stefan Tauner0be072c2016-03-13 15:16:30 +00006563 {
6564 .eraseblocks = { { 4 * 1024, 128} },
6565 .block_erase = spi_block_erase_20,
6566 }, {
6567 .eraseblocks = { { 32 * 1024, 16} },
6568 .block_erase = spi_block_erase_52,
6569 }, {
6570 .eraseblocks = { { 64 * 1024, 8} },
6571 .block_erase = spi_block_erase_d8,
6572 }, {
6573 .eraseblocks = { {512 * 1024, 1} },
6574 .block_erase = spi_block_erase_60,
6575 }, {
6576 .eraseblocks = { {512 * 1024, 1} },
6577 .block_erase = spi_block_erase_c7,
6578 }
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006579 },
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006580 .printlock = spi_prettyprint_status_register_bp4_srwd,
Hatim Kanchwalad0595352016-03-06 14:33:49 +00006581 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6582 .write = spi_chip_write_256,
6583 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6584 .voltage = {2300, 3600},
6585 },
6586
6587 {
6588 .vendor = "GigaDevice",
6589 .name = "GD25VQ80C",
6590 .bustype = BUS_SPI,
6591 .manufacture_id = GIGADEVICE_ID,
6592 .model_id = GIGADEVICE_GD25VQ80C,
6593 .total_size = 1024,
6594 .page_size = 256,
6595 /* Supports SFDP */
6596 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6597 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6598 .tested = TEST_UNTESTED,
6599 .probe = probe_spi_rdid,
6600 .probe_timing = TIMING_ZERO,
6601 .block_erasers =
6602 {
6603 {
6604 .eraseblocks = { { 4 * 1024, 256} },
6605 .block_erase = spi_block_erase_20,
6606 }, {
6607 .eraseblocks = { { 32 * 1024, 32} },
6608 .block_erase = spi_block_erase_52,
6609 }, {
6610 .eraseblocks = { { 64 * 1024, 16} },
6611 .block_erase = spi_block_erase_d8,
6612 }, {
6613 .eraseblocks = { {1024 * 1024, 1} },
6614 .block_erase = spi_block_erase_60,
6615 }, {
6616 .eraseblocks = { {1024 * 1024, 1} },
6617 .block_erase = spi_block_erase_c7,
6618 }
6619 },
6620 .printlock = spi_prettyprint_status_register_bp4_srwd,
6621 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
6622 .write = spi_chip_write_256,
6623 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6624 .voltage = {2300, 3600},
6625 },
6626
6627 {
6628 .vendor = "GigaDevice",
6629 .name = "GD25VQ16C",
6630 .bustype = BUS_SPI,
6631 .manufacture_id = GIGADEVICE_ID,
6632 .model_id = GIGADEVICE_GD25VQ16C,
6633 .total_size = 2 * 1024,
6634 .page_size = 256,
6635 /* Supports SFDP */
6636 /* OTP: 1024B total; read 0x48, write 0x42, erase 0x44 */
6637 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
6638 .tested = TEST_UNTESTED,
6639 .probe = probe_spi_rdid,
6640 .probe_timing = TIMING_ZERO,
6641 .block_erasers =
6642 {
6643 {
6644 .eraseblocks = { { 4 * 1024, 512} },
6645 .block_erase = spi_block_erase_20,
6646 }, {
6647 .eraseblocks = { { 32 * 1024, 64} },
6648 .block_erase = spi_block_erase_52,
6649 }, {
6650 .eraseblocks = { { 64 * 1024, 32} },
6651 .block_erase = spi_block_erase_d8,
6652 }, {
6653 .eraseblocks = { {2 * 1024 * 1024, 1} },
6654 .block_erase = spi_block_erase_60,
6655 }, {
6656 .eraseblocks = { {2 * 1024 * 1024, 1} },
6657 .block_erase = spi_block_erase_c7,
6658 }
6659 },
6660 .printlock = spi_prettyprint_status_register_bp4_srwd,
6661 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Hatim Kanchwalae0c7abf2016-02-21 00:21:11 +00006662 .write = spi_chip_write_256,
6663 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6664 .voltage = {2300, 3600},
6665 },
6666
6667 {
David Borgc96a8bd2010-06-21 16:12:22 +00006668 .vendor = "Hyundai",
6669 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006670 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00006671 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006672 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00006673 .total_size = 256,
6674 .page_size = 256 * 1024,
6675 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006676 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00006677 .probe = probe_jedec,
6678 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6679 .block_erasers =
6680 {
6681 {
6682 .eraseblocks = {
6683 {64 * 1024, 3},
6684 {32 * 1024, 1},
6685 {8 * 1024, 2},
6686 {16 * 1024, 1},
6687 },
6688 .block_erase = erase_sector_jedec,
6689 }, {
6690 .eraseblocks = { {256 * 1024, 1} },
6691 .block_erase = erase_chip_block_jedec,
6692 },
6693 },
6694 .write = write_jedec_1,
6695 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006696 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00006697 },
6698
6699 {
6700 .vendor = "Hyundai",
6701 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006702 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00006703 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006704 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00006705 .total_size = 256,
6706 .page_size = 256 * 1024,
6707 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
6708 .tested = TEST_UNTESTED,
6709 .probe = probe_jedec,
6710 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
6711 .block_erasers =
6712 {
6713 {
6714 .eraseblocks = {
6715 {16 * 1024, 1},
6716 {8 * 1024, 2},
6717 {32 * 1024, 1},
6718 {64 * 1024, 3},
6719 },
6720 .block_erase = erase_sector_jedec,
6721 }, {
6722 .eraseblocks = { {256 * 1024, 1} },
6723 .block_erase = erase_chip_block_jedec,
6724 },
6725 },
6726 .write = write_jedec_1,
6727 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006728 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00006729 },
6730
6731 {
Joshua Roysf1324e02010-09-16 00:51:51 +00006732 .vendor = "Hyundai",
6733 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006734 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00006735 .manufacture_id = HYUNDAI_ID,
6736 .model_id = HYUNDAI_HY29F040A,
6737 .total_size = 512,
6738 .page_size = 64 * 1024,
6739 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
6740 .tested = TEST_UNTESTED,
6741 .probe = probe_jedec,
6742 .probe_timing = TIMING_ZERO,
6743 .block_erasers =
6744 {
6745 {
6746 .eraseblocks = { {64 * 1024, 8} },
6747 .block_erase = erase_sector_jedec,
6748 }, {
6749 .eraseblocks = { {512 * 1024, 1} },
6750 .block_erase = erase_chip_block_jedec,
6751 },
6752 },
6753 .write = write_jedec_1,
6754 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006755 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00006756 },
6757
6758 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006759 .vendor = "Intel",
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006760 .name = "25F160S33B8",
6761 .bustype = BUS_SPI,
6762 .manufacture_id = INTEL_ID,
6763 .model_id = INTEL_25F160S33B8,
6764 .total_size = 2048,
6765 .page_size = 256,
6766 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6767 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6768 .tested = TEST_UNTESTED,
6769 .probe = probe_spi_rdid,
6770 .probe_timing = TIMING_ZERO,
6771 .block_erasers =
6772 {
6773 {
6774 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6775 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6776 * have no effect on the memory contents, but sets a flag in the SR.
6777 .eraseblocks = {
6778 {8 * 1024, 8},
6779 {64 * 1024, 31} // inaccessible
6780 },
6781 .block_erase = spi_block_erase_40,
6782 }, { */
6783 .eraseblocks = { {64 * 1024, 32} },
6784 .block_erase = spi_block_erase_d8,
6785 }, {
6786 .eraseblocks = { {2 * 1024 * 1024, 1} },
6787 .block_erase = spi_block_erase_c7,
6788 }
6789 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006790 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6791 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006792 .write = spi_chip_write_256,
6793 .read = spi_chip_read, /* also fast read 0x0B */
6794 .voltage = {2700, 3600},
6795 },
6796
6797 {
6798 .vendor = "Intel",
6799 .name = "25F160S33T8",
6800 .bustype = BUS_SPI,
6801 .manufacture_id = INTEL_ID,
6802 .model_id = INTEL_25F160S33T8,
6803 .total_size = 2048,
6804 .page_size = 256,
6805 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6806 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6807 .tested = TEST_UNTESTED,
6808 .probe = probe_spi_rdid,
6809 .probe_timing = TIMING_ZERO,
6810 .block_erasers =
6811 {
6812 {
6813 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6814 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6815 * have no effect on the memory contents, but sets a flag in the SR.
6816 .eraseblocks = {
6817 {64 * 1024, 31}, // inaccessible
6818 {8 * 1024, 8}
6819 },
6820 .block_erase = spi_block_erase_40,
6821 }, { */
6822 .eraseblocks = { {64 * 1024, 32} },
6823 .block_erase = spi_block_erase_d8,
6824 }, {
6825 .eraseblocks = { {2 * 1024 * 1024, 1} },
6826 .block_erase = spi_block_erase_c7,
6827 }
6828 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006829 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6830 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006831 .write = spi_chip_write_256,
6832 .read = spi_chip_read, /* also fast read 0x0B */
6833 .voltage = {2700, 3600},
6834 },
6835
6836 {
6837 .vendor = "Intel",
6838 .name = "25F320S33B8",
6839 .bustype = BUS_SPI,
6840 .manufacture_id = INTEL_ID,
6841 .model_id = INTEL_25F320S33B8,
6842 .total_size = 4096,
6843 .page_size = 256,
6844 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6845 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6846 .tested = TEST_UNTESTED,
6847 .probe = probe_spi_rdid,
6848 .probe_timing = TIMING_ZERO,
6849 .block_erasers =
6850 {
6851 {
6852 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6853 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6854 * have no effect on the memory contents, but sets a flag in the SR.
6855 .eraseblocks = {
6856 {8 * 1024, 8},
6857 {64 * 1024, 63} // inaccessible
6858 },
6859 .block_erase = spi_block_erase_40,
6860 }, { */
6861 .eraseblocks = { {64 * 1024, 64} },
6862 .block_erase = spi_block_erase_d8,
6863 }, {
6864 .eraseblocks = { {4 * 1024 * 1024, 1} },
6865 .block_erase = spi_block_erase_c7,
6866 }
6867 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006868 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6869 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006870 .write = spi_chip_write_256,
6871 .read = spi_chip_read, /* also fast read 0x0B */
6872 .voltage = {2700, 3600},
6873 },
6874
6875 {
6876 .vendor = "Intel",
6877 .name = "25F320S33T8",
6878 .bustype = BUS_SPI,
6879 .manufacture_id = INTEL_ID,
6880 .model_id = INTEL_25F320S33T8,
6881 .total_size = 4096,
6882 .page_size = 256,
6883 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6884 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6885 .tested = TEST_UNTESTED,
6886 .probe = probe_spi_rdid,
6887 .probe_timing = TIMING_ZERO,
6888 .block_erasers =
6889 {
6890 {
6891 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6892 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6893 * have no effect on the memory contents, but sets a flag in the SR.
6894 .eraseblocks = {
6895 {64 * 1024, 63}, // inaccessible
6896 {8 * 1024, 8}
6897 },
6898 .block_erase = spi_block_erase_40,
6899 }, { */
6900 .eraseblocks = { {64 * 1024, 64} },
6901 .block_erase = spi_block_erase_d8,
6902 }, {
6903 .eraseblocks = { {4 * 1024 * 1024, 1} },
6904 .block_erase = spi_block_erase_c7,
6905 }
6906 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006907 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6908 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006909 .write = spi_chip_write_256,
6910 .read = spi_chip_read, /* also fast read 0x0B */
6911 .voltage = {2700, 3600},
6912 },
6913
6914 {
6915 .vendor = "Intel",
6916 .name = "25F640S33B8",
6917 .bustype = BUS_SPI,
6918 .manufacture_id = INTEL_ID,
6919 .model_id = INTEL_25F640S33B8,
6920 .total_size = 8192,
6921 .page_size = 256,
6922 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6923 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6924 .tested = TEST_UNTESTED,
6925 .probe = probe_spi_rdid,
6926 .probe_timing = TIMING_ZERO,
6927 .block_erasers =
6928 {
6929 {
6930 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6931 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6932 * have no effect on the memory contents, but sets a flag in the SR.
6933 .eraseblocks = {
6934 {8 * 1024, 8},
6935 {64 * 1024, 127} // inaccessible
6936 },
6937 .block_erase = spi_block_erase_40,
6938 }, { */
6939 .eraseblocks = { {64 * 1024, 128} },
6940 .block_erase = spi_block_erase_d8,
6941 }, {
6942 .eraseblocks = { {8 * 1024 * 1024, 1} },
6943 .block_erase = spi_block_erase_c7,
6944 }
6945 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006946 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6947 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006948 .write = spi_chip_write_256,
6949 .read = spi_chip_read, /* also fast read 0x0B */
6950 .voltage = {2700, 3600},
6951 },
6952
6953 {
6954 .vendor = "Intel",
6955 .name = "25F640S33T8",
6956 .bustype = BUS_SPI,
6957 .manufacture_id = INTEL_ID,
6958 .model_id = INTEL_25F640S33T8,
6959 .total_size = 8192,
6960 .page_size = 256,
6961 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
6962 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6963 .tested = TEST_UNTESTED,
6964 .probe = probe_spi_rdid,
6965 .probe_timing = TIMING_ZERO,
6966 .block_erasers =
6967 {
6968 {
6969 /* This chip supports erasing of the 8 so-called "parameter blocks" with
6970 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
6971 * have no effect on the memory contents, but sets a flag in the SR.
6972 .eraseblocks = {
6973 {64 * 1024, 127}, // inaccessible
6974 {8 * 1024, 8}
6975 },
6976 .block_erase = spi_block_erase_40,
6977 }, { */
6978 .eraseblocks = { {64 * 1024, 128} },
6979 .block_erase = spi_block_erase_d8,
6980 }, {
6981 .eraseblocks = { {8 * 1024 * 1024, 1} },
6982 .block_erase = spi_block_erase_c7,
6983 }
6984 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +00006985 .printlock = spi_prettyprint_status_register_bp2_ep_srwd,
6986 .unlock = spi_disable_blockprotect_bp2_ep_srwd,
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00006987 .write = spi_chip_write_256,
6988 .read = spi_chip_read, /* also fast read 0x0B */
6989 .voltage = {2700, 3600},
6990 },
6991
6992 {
6993 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00006994 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006995 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00006996 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00006997 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00006998 .total_size = 128,
6999 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00007000 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007001 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007002 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00007003 .block_erasers =
7004 {
7005 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00007006 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00007007 {8 * 1024, 1},
7008 {4 * 1024, 2},
7009 {112 * 1024, 1},
7010 },
Sean Nelson28accc22010-03-19 18:47:06 +00007011 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00007012 },
7013 },
Sean Nelsondee4a832010-03-22 04:39:31 +00007014 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007015 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007016 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007017 },
7018
7019 {
7020 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007021 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007022 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007023 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007024 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007025 .total_size = 128,
7026 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Stefan Tauner23e10b82016-01-23 16:16:49 +00007027 .tested = TEST_OK_PREW,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007028 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007029 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00007030 .block_erasers =
7031 {
7032 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007033 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00007034 {112 * 1024, 1},
7035 {4 * 1024, 2},
7036 {8 * 1024, 1},
7037 },
Sean Nelson28accc22010-03-19 18:47:06 +00007038 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00007039 },
7040 },
Sean Nelsondee4a832010-03-22 04:39:31 +00007041 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007042 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007043 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00007044 },
7045
7046 {
7047 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007048 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007049 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00007050 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007051 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00007052 .total_size = 256,
7053 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007054 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00007055 .probe = probe_82802ab,
7056 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7057 .block_erasers =
7058 {
7059 {
7060 .eraseblocks = {
7061 {128 * 1024, 1},
7062 {96 * 1024, 1},
7063 {8 * 1024, 2},
7064 {16 * 1024, 1},
7065 },
7066 .block_erase = erase_block_82802ab,
7067 },
7068 },
7069 .write = write_82802ab,
7070 .read = read_memmapped,
7071 },
7072
7073 {
7074 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007075 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007076 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00007077 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007078 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00007079 .total_size = 512,
7080 .page_size = 256,
7081 .tested = TEST_UNTESTED,
7082 .probe = probe_82802ab,
7083 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00007084 .block_erasers =
7085 {
7086 {
7087 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00007088 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00007089 },
7090 },
Sean Nelsondee4a832010-03-22 04:39:31 +00007091 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00007092 .write = write_82802ab,
7093 .read = read_memmapped,
7094 },
7095
7096 {
7097 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007098 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007099 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00007100 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007101 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00007102 .total_size = 512,
7103 .page_size = 128 * 1024, /* maximal block size */
7104 .tested = TEST_UNTESTED,
7105 .probe = probe_82802ab,
7106 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7107 .block_erasers =
7108 {
7109 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00007110 .eraseblocks = {
Michael Karcherad0010a2010-04-03 10:27:08 +00007111 {16 * 1024, 1},
7112 {8 * 1024, 2},
7113 {96 * 1024, 1},
7114 {128 * 1024, 3},
7115 },
7116 .block_erase = erase_block_82802ab,
7117 },
7118 },
7119 .write = write_82802ab,
7120 .read = read_memmapped,
7121 },
7122
7123 {
7124 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007125 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007126 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00007127 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007128 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00007129 .total_size = 512,
7130 .page_size = 128 * 1024, /* maximal block size */
7131 .tested = TEST_UNTESTED,
7132 .probe = probe_82802ab,
7133 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7134 .block_erasers =
7135 {
7136 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00007137 .eraseblocks = {
Michael Karcherad0010a2010-04-03 10:27:08 +00007138 {128 * 1024, 3},
7139 {96 * 1024, 1},
7140 {8 * 1024, 2},
7141 {16 * 1024, 1},
7142 },
7143 .block_erase = erase_block_82802ab,
7144 },
7145 },
7146 .write = write_82802ab,
7147 .read = read_memmapped,
7148 },
7149
7150 {
7151 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007152 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007153 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00007154 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007155 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00007156 .total_size = 512,
7157 .page_size = 128 * 1024, /* maximal block size */
7158 .feature_bits = FEATURE_ADDR_SHIFTED,
7159 .tested = TEST_UNTESTED,
7160 .probe = probe_82802ab,
7161 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7162 .block_erasers =
7163 {
7164 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00007165 .eraseblocks = {
Michael Karcherad0010a2010-04-03 10:27:08 +00007166 {16 * 1024, 1},
7167 {8 * 1024, 2},
7168 {96 * 1024, 1},
7169 {128 * 1024, 3},
7170 },
7171 .block_erase = erase_block_82802ab,
7172 },
7173 },
7174 .write = write_82802ab,
7175 .read = read_memmapped,
7176 },
7177
7178 {
7179 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007180 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007181 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00007182 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007183 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00007184 .total_size = 512,
7185 .page_size = 128 * 1024, /* maximal block size */
7186 .feature_bits = FEATURE_ADDR_SHIFTED,
7187 .tested = TEST_UNTESTED,
7188 .probe = probe_82802ab,
7189 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7190 .block_erasers =
7191 {
7192 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00007193 .eraseblocks = {
Michael Karcherad0010a2010-04-03 10:27:08 +00007194 {128 * 1024, 3},
7195 {96 * 1024, 1},
7196 {8 * 1024, 2},
7197 {16 * 1024, 1},
7198 },
7199 .block_erase = erase_block_82802ab,
7200 },
7201 },
7202 .write = write_82802ab,
7203 .read = read_memmapped,
7204 },
7205
7206 {
7207 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007208 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007209 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007210 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007211 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007212 .total_size = 512,
7213 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007214 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00007215 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007216 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007217 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00007218 .block_erasers =
7219 {
7220 {
7221 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00007222 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00007223 },
7224 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00007225 .unlock = unlock_regspace2_uniform_64k,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007226 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007227 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007228 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007229 },
7230
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007231 {
7232 .vendor = "Intel",
7233 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007234 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007235 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00007236 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007237 .total_size = 1024,
7238 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007239 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00007240 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007241 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007242 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00007243 .block_erasers =
7244 {
7245 {
7246 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00007247 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00007248 },
7249 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00007250 .unlock = unlock_regspace2_uniform_64k,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007251 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007252 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007253 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007254 },
7255
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007256 {
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00007257 .vendor = "ISSI",
David Hendricks3083ed92017-05-02 13:25:56 -07007258 .name = "IS25LP128",
7259 .bustype = BUS_SPI,
7260 .manufacture_id = ISSI_ID_SPI,
7261 .model_id = ISSI_IS25LP128,
7262 .total_size = 16384,
7263 .page_size = 256,
7264 /* OTP: 1024B total; read 0x48; write 0x42 */
7265 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7266 .tested = TEST_OK_PREW,
7267 .probe = probe_spi_rdid,
7268 .probe_timing = TIMING_ZERO,
7269 .block_erasers =
7270 {
7271 {
7272 .eraseblocks = { {4 * 1024, 4096} },
7273 .block_erase = spi_block_erase_20,
7274 }, {
7275 .eraseblocks = { {4 * 1024, 4096} },
7276 .block_erase = spi_block_erase_d7,
7277 }, {
7278 .eraseblocks = { {32 * 1024, 512} },
7279 .block_erase = spi_block_erase_52,
7280 }, {
7281 .eraseblocks = { {64 * 1024, 256} },
7282 .block_erase = spi_block_erase_d8,
7283 }, {
7284 .eraseblocks = { {16 * 1024 * 1024, 1} },
7285 .block_erase = spi_block_erase_60,
7286 }, {
7287 .eraseblocks = { {16 * 1024 * 1024, 1} },
7288 .block_erase = spi_block_erase_c7,
7289 }
7290 },
7291 .unlock = spi_disable_blockprotect,
7292 .write = spi_chip_write_256,
7293 .read = spi_chip_read,
7294 .voltage = {2300, 3600},
7295 },
7296
7297 {
7298 .vendor = "ISSI",
7299 .name = "IS25WP128",
7300 .bustype = BUS_SPI,
7301 .manufacture_id = ISSI_ID_SPI,
7302 .model_id = ISSI_IS25WP128,
7303 .total_size = 16384,
7304 .page_size = 256,
7305 /* OTP: 1024B total; read 0x48; write 0x42 */
7306 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7307 .tested = TEST_OK_PREW,
7308 .probe = probe_spi_rdid,
7309 .probe_timing = TIMING_ZERO,
7310 .block_erasers =
7311 {
7312 {
7313 .eraseblocks = { {4 * 1024, 4096} },
7314 .block_erase = spi_block_erase_20,
7315 }, {
7316 .eraseblocks = { {4 * 1024, 4096} },
7317 .block_erase = spi_block_erase_d7,
7318 }, {
7319 .eraseblocks = { {32 * 1024, 512} },
7320 .block_erase = spi_block_erase_52,
7321 }, {
7322 .eraseblocks = { {64 * 1024, 256} },
7323 .block_erase = spi_block_erase_d8,
7324 }, {
7325 .eraseblocks = { {16 * 1024 * 1024, 1} },
7326 .block_erase = spi_block_erase_60,
7327 }, {
7328 .eraseblocks = { {16 * 1024 * 1024, 1} },
7329 .block_erase = spi_block_erase_c7,
7330 }
7331 },
7332 .unlock = spi_disable_blockprotect,
7333 .write = spi_chip_write_256,
7334 .read = spi_chip_read,
7335 .voltage = {1650, 1950},
7336 },
7337
7338 {
7339 .vendor = "ISSI",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00007340 .name = "IS29GL064B",
7341 .bustype = BUS_PARALLEL,
7342 .manufacture_id = ISSI_ID,
7343 .model_id = ISSI_PMC_IS29GL064B,
7344 .total_size = 8192,
7345 .page_size = 128 * 1024, /* actual page size is 16 */
7346 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7347 .tested = TEST_UNTESTED,
7348 .probe = probe_jedec_29gl,
7349 .probe_timing = TIMING_ZERO,
7350 .block_erasers =
7351 {
7352 {
7353 .eraseblocks = {
7354 {8 * 1024, 8},
7355 {64 * 1024, 127},
7356 },
7357 .block_erase = erase_sector_jedec,
7358 }, {
7359 .eraseblocks = { {8 * 1024 * 1024, 1} },
7360 .block_erase = erase_chip_block_jedec,
7361 },
7362 },
7363 .write = write_jedec_1,
7364 .read = read_memmapped,
7365 .voltage = {2700, 3600},
7366 },
7367
7368 {
7369 .vendor = "ISSI",
7370 .name = "IS29GL064T",
7371 .bustype = BUS_PARALLEL,
7372 .manufacture_id = ISSI_ID,
7373 .model_id = ISSI_PMC_IS29GL064T,
7374 .total_size = 8192,
7375 .page_size = 128 * 1024, /* actual page size is 16 */
7376 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7377 .tested = TEST_UNTESTED,
7378 .probe = probe_jedec_29gl,
7379 .probe_timing = TIMING_ZERO,
7380 .block_erasers =
7381 {
7382 {
7383 .eraseblocks = {
7384 {64 * 1024, 127},
7385 {8 * 1024, 8},
7386 },
7387 .block_erase = erase_sector_jedec,
7388 }, {
7389 .eraseblocks = { {8 * 1024 * 1024, 1} },
7390 .block_erase = erase_chip_block_jedec,
7391 },
7392 },
7393 .write = write_jedec_1,
7394 .read = read_memmapped,
7395 .voltage = {2700, 3600},
7396 },
7397
7398 {
7399 .vendor = "ISSI",
7400 .name = "IS29GL064H/L",
7401 .bustype = BUS_PARALLEL,
7402 .manufacture_id = ISSI_ID,
7403 .model_id = ISSI_PMC_IS29GL064HL,
7404 .total_size = 8192,
7405 .page_size = 128 * 1024, /* actual page size is 16 */
7406 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7407 .tested = TEST_UNTESTED,
7408 .probe = probe_jedec_29gl,
7409 .probe_timing = TIMING_ZERO,
7410 .block_erasers =
7411 {
7412 {
7413 .eraseblocks = { {64 * 1024, 128} },
7414 .block_erase = erase_sector_jedec,
7415 }, {
7416 .eraseblocks = { {8 * 1024 * 1024, 1} },
7417 .block_erase = erase_chip_block_jedec,
7418 },
7419 },
7420 .write = write_jedec_1,
7421 .read = read_memmapped,
7422 .voltage = {2700, 3600},
7423 },
7424
7425 {
7426 .vendor = "ISSI",
7427 .name = "IS29GL128H/L",
7428 .bustype = BUS_PARALLEL,
7429 .manufacture_id = ISSI_ID,
7430 .model_id = ISSI_PMC_IS29GL128HL,
7431 .total_size = 16384,
7432 .page_size = 128 * 1024, /* actual page size is 16 */
7433 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
7434 .tested = TEST_UNTESTED,
7435 .probe = probe_jedec_29gl,
7436 .probe_timing = TIMING_ZERO,
7437 .block_erasers =
7438 {
7439 {
7440 .eraseblocks = { {128 * 1024, 128} },
7441 .block_erase = erase_sector_jedec,
7442 }, {
7443 .eraseblocks = { {16 * 1024 * 1024, 1} },
7444 .block_erase = erase_chip_block_jedec,
7445 },
7446 },
7447 .write = write_jedec_1,
7448 .read = read_memmapped,
7449 .voltage = {2700, 3600},
7450 },
7451
7452 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007453 .vendor = "Macronix",
Michael Coppola583ea322014-08-20 18:56:35 +00007454 .name = "MX23L1654",
7455 .bustype = BUS_SPI,
7456 .manufacture_id = MACRONIX_ID,
7457 .model_id = MACRONIX_MX23L1654,
7458 .total_size = 2048,
7459 .page_size = 256,
7460 .tested = {.probe = NT, .read = NT, .erase = NA, .write = NA},
7461 .probe = probe_spi_rdid,
7462 .probe_timing = TIMING_ZERO,
7463 .write = NULL, /* MX23L1654 is a mask ROM, so it is read-only */
7464 .read = spi_chip_read, /* Fast read (0x0B) supported */
7465 .voltage = {3000, 3600},
7466 },
7467
7468 {
7469 .vendor = "Macronix",
Michael Coppola4e7f36e2014-05-03 23:01:18 +00007470 .name = "MX23L3254",
7471 .bustype = BUS_SPI,
7472 .manufacture_id = MACRONIX_ID,
7473 .model_id = MACRONIX_MX23L3254,
7474 .total_size = 4096,
7475 .page_size = 256,
Stefan Tauner6455dff2014-05-26 00:36:24 +00007476 .tested = {.probe = OK, .read = OK, .erase = NA, .write = NA},
Michael Coppola4e7f36e2014-05-03 23:01:18 +00007477 .probe = probe_spi_rdid,
7478 .probe_timing = TIMING_ZERO,
7479 .write = NULL, /* MX23L3254 is a mask ROM, so it is read-only */
7480 .read = spi_chip_read, /* Fast read (0x0B) supported */
7481 .voltage = {3000, 3600},
7482 },
7483
7484 {
7485 .vendor = "Macronix",
Michael Coppola583ea322014-08-20 18:56:35 +00007486 .name = "MX23L6454",
7487 .bustype = BUS_SPI,
7488 .manufacture_id = MACRONIX_ID,
7489 .model_id = MACRONIX_MX23L6454,
7490 .total_size = 8192,
7491 .page_size = 256,
Stefan Tauner23e10b82016-01-23 16:16:49 +00007492 .tested = {.probe = OK, .read = OK, .erase = NA, .write = NA},
Michael Coppola583ea322014-08-20 18:56:35 +00007493 .probe = probe_spi_rdid,
7494 .probe_timing = TIMING_ZERO,
7495 .write = NULL, /* MX23L6454 is a mask ROM, so it is read-only */
7496 .read = spi_chip_read, /* Fast read (0x0B) supported */
7497 .voltage = {3000, 3600},
7498 },
7499
7500 {
7501 .vendor = "Macronix",
7502 .name = "MX23L12854",
7503 .bustype = BUS_SPI,
7504 .manufacture_id = MACRONIX_ID,
7505 .model_id = MACRONIX_MX23L12854,
7506 .total_size = 16384,
7507 .page_size = 256,
7508 .tested = {.probe = NT, .read = NT, .erase = NA, .write = NA},
7509 .probe = probe_spi_rdid,
7510 .probe_timing = TIMING_ZERO,
7511 .write = NULL, /* MX23L12854 is a mask ROM, so it is read-only */
7512 .read = spi_chip_read, /* Fast read (0x0B) supported */
7513 .voltage = {3000, 3600},
7514 },
7515
7516 {
7517 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00007518 .name = "MX25L512(E)/MX25V512(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007519 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007520 .manufacture_id = MACRONIX_ID,
7521 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007522 .total_size = 64,
7523 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007524 /* MX25L512E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00007525 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00007526 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007527 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007528 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007529 .block_erasers =
7530 {
7531 {
7532 .eraseblocks = { {4 * 1024, 16} },
7533 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007534 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007535 .eraseblocks = { {64 * 1024, 1} },
7536 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007537 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007538 .eraseblocks = { {64 * 1024, 1} },
7539 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007540 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007541 .eraseblocks = { {64 * 1024, 1} },
7542 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007543 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007544 .eraseblocks = { {64 * 1024, 1} },
7545 .block_erase = spi_block_erase_c7,
7546 },
7547 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007548 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007549 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007550 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007551 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L512E supports dual I/O */
7552 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V512(C) */
FENG yu ningff692fb2008-12-08 18:15:10 +00007553 },
7554
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007555 {
7556 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00007557 .name = "MX25L1005(C)/MX25L1006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007558 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007559 .manufacture_id = MACRONIX_ID,
7560 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007561 .total_size = 128,
7562 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007563 /* MX25L1006E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00007564 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00007565 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007566 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007567 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007568 .block_erasers =
7569 {
7570 {
7571 .eraseblocks = { {4 * 1024, 32} },
7572 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007573 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007574 .eraseblocks = { {64 * 1024, 2} },
7575 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007576 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007577 .eraseblocks = { {128 * 1024, 1} },
7578 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007579 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00007580 .eraseblocks = { {128 * 1024, 1} },
7581 .block_erase = spi_block_erase_c7,
7582 },
7583 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007584 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007585 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007586 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007587 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L1006E supports dual I/O */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007588 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007589 },
7590
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007591 {
7592 .vendor = "Macronix",
Stefan Tauner5c316f92015-02-08 21:57:52 +00007593 .name = "MX25L2005(C)/MX25L2006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007594 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007595 .manufacture_id = MACRONIX_ID,
7596 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007597 .total_size = 256,
7598 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00007599 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00007600 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007602 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007603 .block_erasers =
7604 {
7605 {
7606 .eraseblocks = { {4 * 1024, 64} },
7607 .block_erase = spi_block_erase_20,
7608 }, {
7609 .eraseblocks = { {64 * 1024, 4} },
7610 .block_erase = spi_block_erase_52,
7611 }, {
7612 .eraseblocks = { {64 * 1024, 4} },
7613 .block_erase = spi_block_erase_d8,
7614 }, {
7615 .eraseblocks = { {256 * 1024, 1} },
7616 .block_erase = spi_block_erase_60,
7617 }, {
7618 .eraseblocks = { {256 * 1024, 1} },
7619 .block_erase = spi_block_erase_c7,
7620 },
7621 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007622 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007623 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007624 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007625 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007626 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007627 },
7628
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007629 {
7630 .vendor = "Macronix",
Stefan Tauner5c316f92015-02-08 21:57:52 +00007631 .name = "MX25L4005(A/C)/MX25L4006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007632 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007633 .manufacture_id = MACRONIX_ID,
7634 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007635 .total_size = 512,
7636 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00007637 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00007638 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007639 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007640 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007641 .block_erasers =
7642 {
7643 {
7644 .eraseblocks = { {4 * 1024, 128} },
7645 .block_erase = spi_block_erase_20,
7646 }, {
7647 .eraseblocks = { {64 * 1024, 8} },
7648 .block_erase = spi_block_erase_52,
7649 }, {
7650 .eraseblocks = { {64 * 1024, 8} },
7651 .block_erase = spi_block_erase_d8,
7652 }, {
7653 .eraseblocks = { {512 * 1024, 1} },
7654 .block_erase = spi_block_erase_60,
7655 }, {
7656 .eraseblocks = { {512 * 1024, 1} },
7657 .block_erase = spi_block_erase_c7,
7658 },
7659 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007660 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007661 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007662 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007663 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007664 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007665 },
7666
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007667 {
7668 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007669 .name = "MX25L8005/MX25L8006E/MX25L8008E/MX25V8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007670 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007671 .manufacture_id = MACRONIX_ID,
7672 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007673 .total_size = 1024,
7674 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007675 /* MX25L8006E, MX25L8008E support SFDP */
7676 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L8006E, MX25L8008E only) */
David Hendricks67db2eb2010-09-03 03:35:48 +00007677 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00007678 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007679 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007680 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007681 .block_erasers =
7682 {
7683 {
7684 .eraseblocks = { {4 * 1024, 256} },
7685 .block_erase = spi_block_erase_20,
7686 }, {
7687 .eraseblocks = { {64 * 1024, 16} },
7688 .block_erase = spi_block_erase_52,
7689 }, {
7690 .eraseblocks = { {64 * 1024, 16} },
7691 .block_erase = spi_block_erase_d8,
7692 }, {
7693 .eraseblocks = { {1024 * 1024, 1} },
7694 .block_erase = spi_block_erase_60,
7695 }, {
7696 .eraseblocks = { {1024 * 1024, 1} },
7697 .block_erase = spi_block_erase_c7,
7698 },
7699 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007700 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007701 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007702 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00007703 .read = spi_chip_read, /* Fast read (0x0B) supported */
7704 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V8005 */
FENG yu ningff692fb2008-12-08 18:15:10 +00007705 },
7706
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007707 {
7708 .vendor = "Macronix",
7709 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007710 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007711 .manufacture_id = MACRONIX_ID,
7712 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007713 .total_size = 2048,
7714 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00007715 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00007716 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007717 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007718 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007719 .block_erasers =
7720 {
7721 {
Stefan Tauner226037d2013-03-16 01:22:12 +00007722 .eraseblocks = { {64 * 1024, 32} },
7723 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007724 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00007725 .eraseblocks = { {64 * 1024, 32} },
7726 .block_erase = spi_block_erase_d8,
7727 }, {
7728 .eraseblocks = { {2 * 1024 * 1024, 1} },
7729 .block_erase = spi_block_erase_60,
7730 }, {
7731 .eraseblocks = { {2 * 1024 * 1024, 1} },
7732 .block_erase = spi_block_erase_c7,
7733 },
7734 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007735 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit6: error flag */
Stefan Tauner226037d2013-03-16 01:22:12 +00007736 .unlock = spi_disable_blockprotect,
7737 .write = spi_chip_write_256,
7738 .read = spi_chip_read, /* Fast read (0x0B) supported */
7739 .voltage = {2700, 3600},
7740 },
7741
7742 {
7743 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007744 .name = "MX25L1605A/MX25L1606E/MX25L1608E",
Stefan Tauner226037d2013-03-16 01:22:12 +00007745 .bustype = BUS_SPI,
7746 .manufacture_id = MACRONIX_ID,
7747 .model_id = MACRONIX_MX25L1605,
7748 .total_size = 2048,
7749 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007750 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L1606E and MX25L1608E only) */
Stefan Tauner226037d2013-03-16 01:22:12 +00007751 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7752 .tested = TEST_OK_PREW,
7753 .probe = probe_spi_rdid,
7754 .probe_timing = TIMING_ZERO,
7755 .block_erasers =
7756 {
7757 {
7758 .eraseblocks = { {4 * 1024, 512} },
7759 .block_erase = spi_block_erase_20,
7760 }, {
7761 .eraseblocks = { {64 * 1024, 32} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00007762 .block_erase = spi_block_erase_52,
7763 }, {
7764 .eraseblocks = { {64 * 1024, 32} },
7765 .block_erase = spi_block_erase_d8,
7766 }, {
7767 .eraseblocks = { {2 * 1024 * 1024, 1} },
7768 .block_erase = spi_block_erase_60,
7769 }, {
7770 .eraseblocks = { {2 * 1024 * 1024, 1} },
7771 .block_erase = spi_block_erase_c7,
7772 },
7773 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007774 .printlock = spi_prettyprint_status_register_bp3_srwd, /* MX25L1605A bp2 only */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007775 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007776 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007777 .read = spi_chip_read, /* Fast read (0x0B) supported (MX25L1608E supports dual-I/O read) */
Stefan Tauner226037d2013-03-16 01:22:12 +00007778 .voltage = {2700, 3600},
7779 },
7780
7781 {
7782 .vendor = "Macronix",
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00007783 .name = "MX25L1605D/MX25L1608D/MX25L1673E",
Stefan Tauner226037d2013-03-16 01:22:12 +00007784 .bustype = BUS_SPI,
7785 .manufacture_id = MACRONIX_ID,
7786 .model_id = MACRONIX_MX25L1605,
7787 .total_size = 2048,
7788 .page_size = 256,
7789 .feature_bits = FEATURE_WRSR_WREN,
7790 .tested = TEST_OK_PREW,
7791 .probe = probe_spi_rdid,
7792 .probe_timing = TIMING_ZERO,
7793 .block_erasers =
7794 {
7795 {
7796 .eraseblocks = { {4 * 1024, 512} },
7797 .block_erase = spi_block_erase_20,
7798 }, {
7799 .eraseblocks = { {64 * 1024, 32} },
7800 .block_erase = spi_block_erase_d8,
7801 }, {
7802 .eraseblocks = { {2 * 1024 * 1024, 1} },
7803 .block_erase = spi_block_erase_60,
7804 }, {
7805 .eraseblocks = { {2 * 1024 * 1024, 1} },
7806 .block_erase = spi_block_erase_c7,
7807 },
7808 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007809 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: Continuously Program (CP) mode, for 73E is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007810 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00007811 .write = spi_chip_write_256,
7812 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007813 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007814 },
7815
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007816 {
7817 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00007818 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007819 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007820 .manufacture_id = MACRONIX_ID,
7821 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00007822 .total_size = 2048,
7823 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00007824 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
7825 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00007826 .tested = TEST_UNTESTED,
7827 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007828 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00007829 .block_erasers =
7830 {
7831 {
7832 .eraseblocks = { {4 * 1024, 512} },
7833 .block_erase = spi_block_erase_20,
7834 }, {
7835 .eraseblocks = { {64 * 1024, 32} },
7836 .block_erase = spi_block_erase_d8,
7837 }, {
7838 .eraseblocks = { {2 * 1024 * 1024, 1} },
7839 .block_erase = spi_block_erase_60,
7840 }, {
7841 .eraseblocks = { {2 * 1024 * 1024, 1} },
7842 .block_erase = spi_block_erase_c7,
7843 }
7844 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007845 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007846 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007847 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00007848 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007849 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00007850 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00007851
Stephan Guillouxf5c70902009-04-19 23:04:00 +00007852 {
7853 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00007854 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007855 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007856 .manufacture_id = MACRONIX_ID,
7857 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00007858 .total_size = 2048,
7859 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00007860 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
7861 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux3611b802010-09-13 19:59:28 +00007862 .tested = TEST_UNTESTED,
7863 .probe = probe_spi_rdid,
7864 .probe_timing = TIMING_ZERO,
7865 .block_erasers =
7866 {
7867 {
7868 .eraseblocks = { {4 * 1024, 512} },
7869 .block_erase = spi_block_erase_20,
7870 }, {
7871 .eraseblocks = { {64 * 1024, 32} },
7872 .block_erase = spi_block_erase_d8,
7873 }, {
7874 .eraseblocks = { {2 * 1024 * 1024, 1} },
7875 .block_erase = spi_block_erase_60,
7876 }, {
7877 .eraseblocks = { {2 * 1024 * 1024, 1} },
7878 .block_erase = spi_block_erase_c7,
7879 }
7880 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007881 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007882 .unlock = spi_disable_blockprotect_bp3_srwd,
Stephan Guilloux3611b802010-09-13 19:59:28 +00007883 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00007884 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00007885 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00007886 },
7887
7888 {
7889 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00007890 .name = "MX25L3205(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007891 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007892 .manufacture_id = MACRONIX_ID,
7893 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007894 .total_size = 4096,
7895 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00007896 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00007897 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007898 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007899 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00007900 .block_erasers =
7901 {
7902 {
Stefan Tauner226037d2013-03-16 01:22:12 +00007903 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00007904 .block_erase = spi_block_erase_20,
7905 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00007906 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00007907 .block_erase = spi_block_erase_d8,
7908 }, {
7909 .eraseblocks = { {4 * 1024 * 1024, 1} },
7910 .block_erase = spi_block_erase_60,
7911 }, {
7912 .eraseblocks = { {4 * 1024 * 1024, 1} },
7913 .block_erase = spi_block_erase_c7,
7914 },
7915 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007916 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit6: error flag */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007917 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007918 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00007919 .read = spi_chip_read, /* Fast read (0x0B) supported */
7920 .voltage = {2700, 3600},
7921 },
7922
7923 {
7924 .vendor = "Macronix",
7925 .name = "MX25L3205D/MX25L3208D",
7926 .bustype = BUS_SPI,
7927 .manufacture_id = MACRONIX_ID,
7928 .model_id = MACRONIX_MX25L3205,
7929 .total_size = 4096,
7930 .page_size = 256,
7931 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
7932 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7933 .tested = TEST_OK_PREW,
7934 .probe = probe_spi_rdid,
7935 .probe_timing = TIMING_ZERO,
7936 .block_erasers =
7937 {
7938 {
7939 .eraseblocks = { {4 * 1024, 1024} },
7940 .block_erase = spi_block_erase_20,
7941 }, {
7942 .eraseblocks = { {64 * 1024, 64} },
7943 .block_erase = spi_block_erase_d8,
7944 }, {
7945 .eraseblocks = { {4 * 1024 * 1024, 1} },
7946 .block_erase = spi_block_erase_60,
7947 }, {
7948 .eraseblocks = { {4 * 1024 * 1024, 1} },
7949 .block_erase = spi_block_erase_c7,
7950 },
7951 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007952 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: continuously program mode */
Stefan Tauner5c316f92015-02-08 21:57:52 +00007953 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00007954 .write = spi_chip_write_256,
7955 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
7956 .voltage = {2700, 3600},
7957 },
7958
7959 {
7960 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00007961 .name = "MX25L3206E/MX25L3208E",
Stefan Tauner226037d2013-03-16 01:22:12 +00007962 .bustype = BUS_SPI,
7963 .manufacture_id = MACRONIX_ID,
7964 .model_id = MACRONIX_MX25L3205,
7965 .total_size = 4096,
7966 .page_size = 256,
7967 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
7968 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
7969 .tested = TEST_OK_PREW,
7970 .probe = probe_spi_rdid,
7971 .probe_timing = TIMING_ZERO,
7972 .block_erasers =
7973 {
7974 {
7975 .eraseblocks = { {4 * 1024, 1024} },
7976 .block_erase = spi_block_erase_20,
7977 }, {
7978 .eraseblocks = { {64 * 1024, 64} },
7979 .block_erase = spi_block_erase_d8,
7980 }, {
7981 .eraseblocks = { {64 * 1024, 64} },
7982 .block_erase = spi_block_erase_52,
7983 }, {
7984 .eraseblocks = { {4 * 1024 * 1024, 1} },
7985 .block_erase = spi_block_erase_60,
7986 }, {
7987 .eraseblocks = { {4 * 1024 * 1024, 1} },
7988 .block_erase = spi_block_erase_c7,
7989 },
7990 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00007991 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner5c316f92015-02-08 21:57:52 +00007992 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00007993 .write = spi_chip_write_256,
7994 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007995 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007996 },
7997
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007998 {
7999 .vendor = "Macronix",
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008000 .name = "MX25L3273E",
8001 .bustype = BUS_SPI,
8002 .manufacture_id = MACRONIX_ID,
8003 .model_id = MACRONIX_MX25L3205,
8004 .total_size = 4096,
8005 .page_size = 256,
8006 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
8007 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +00008008 .tested = TEST_OK_PREW,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008009 .probe = probe_spi_rdid,
8010 .probe_timing = TIMING_ZERO,
8011 .block_erasers =
8012 {
8013 {
8014 .eraseblocks = { {4 * 1024, 1024} },
8015 .block_erase = spi_block_erase_20,
8016 }, {
8017 .eraseblocks = { {32 * 1024, 128} },
8018 .block_erase = spi_block_erase_52,
8019 }, {
8020 .eraseblocks = { {64 * 1024, 64} },
8021 .block_erase = spi_block_erase_d8,
8022 }, {
8023 .eraseblocks = { {4 * 1024 * 1024, 1} },
8024 .block_erase = spi_block_erase_60,
8025 }, {
8026 .eraseblocks = { {4 * 1024 * 1024, 1} },
8027 .block_erase = spi_block_erase_c7,
8028 },
8029 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008030 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008031 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00008032 .write = spi_chip_write_256,
8033 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
8034 .voltage = {2700, 3600},
8035 },
8036
8037 {
8038 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008039 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008040 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008041 .manufacture_id = MACRONIX_ID,
8042 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008043 .total_size = 4096,
8044 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00008045 /* OTP: 256B total; enter 0xB1, exit 0xC1 */
8046 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008047 .tested = TEST_UNTESTED,
8048 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008049 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008050 .block_erasers =
8051 {
8052 {
8053 .eraseblocks = { {4 * 1024, 1024} },
8054 .block_erase = spi_block_erase_20,
8055 }, {
8056 .eraseblocks = { {64 * 1024, 64} },
8057 .block_erase = spi_block_erase_d8,
8058 }, {
8059 .eraseblocks = { {4 * 1024 * 1024, 1} },
8060 .block_erase = spi_block_erase_60,
8061 }, {
8062 .eraseblocks = { {4 * 1024 * 1024, 1} },
8063 .block_erase = spi_block_erase_c7,
8064 }
8065 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008066 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008067 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008068 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008069 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008070 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00008071 },
8072
8073 {
8074 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008075 .name = "MX25L6405",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008076 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008077 .manufacture_id = MACRONIX_ID,
8078 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008079 .total_size = 8192,
8080 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008081 /* Has an additional 512B EEPROM sector */
8082 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00008083 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008084 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008085 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008086 .block_erasers =
8087 {
8088 {
8089 .eraseblocks = { {64 * 1024, 128} },
8090 .block_erase = spi_block_erase_20,
8091 }, {
8092 .eraseblocks = { {64 * 1024, 128} },
8093 .block_erase = spi_block_erase_d8,
8094 }, {
8095 .eraseblocks = { {8 * 1024 * 1024, 1} },
8096 .block_erase = spi_block_erase_60,
8097 }, {
8098 .eraseblocks = { {8 * 1024 * 1024, 1} },
8099 .block_erase = spi_block_erase_c7,
8100 }
8101 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008102 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: error flag */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008103 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008104 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008105 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008106 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008107 },
8108
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008109 {
8110 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008111 .name = "MX25L6405D",
Stefan Tauner226037d2013-03-16 01:22:12 +00008112 .bustype = BUS_SPI,
8113 .manufacture_id = MACRONIX_ID,
8114 .model_id = MACRONIX_MX25L6405,
8115 .total_size = 8192,
8116 .page_size = 256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008117 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
Stefan Tauner226037d2013-03-16 01:22:12 +00008118 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8119 .tested = TEST_OK_PREW,
8120 .probe = probe_spi_rdid,
8121 .probe_timing = TIMING_ZERO,
8122 .block_erasers =
8123 {
8124 {
8125 .eraseblocks = { {4 * 1024, 2048} },
8126 .block_erase = spi_block_erase_20,
8127 }, {
8128 .eraseblocks = { {64 * 1024, 128} },
8129 .block_erase = spi_block_erase_d8,
8130 }, {
8131 .eraseblocks = { {8 * 1024 * 1024, 1} },
8132 .block_erase = spi_block_erase_60,
8133 }, {
8134 .eraseblocks = { {8 * 1024 * 1024, 1} },
8135 .block_erase = spi_block_erase_c7,
8136 }
8137 },
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008138 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6: continuously program mode */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008139 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008140 .write = spi_chip_write_256,
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008141 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0xBB) supported */
Stefan Tauner226037d2013-03-16 01:22:12 +00008142 .voltage = {2700, 3600},
8143 },
8144
8145 {
8146 .vendor = "Macronix",
Stefan Tauner74dc73f2015-03-01 22:04:38 +00008147 .name = "MX25L6406E/MX25L6408E",
8148 .bustype = BUS_SPI,
8149 .manufacture_id = MACRONIX_ID,
8150 .model_id = MACRONIX_MX25L6405,
8151 .total_size = 8192,
8152 .page_size = 256,
8153 /* MX25L6406E supports SFDP */
8154 /* OTP: 06E 64B total; enter 0xB1, exit 0xC1 */
8155 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8156 .tested = TEST_OK_PREW,
8157 .probe = probe_spi_rdid,
8158 .probe_timing = TIMING_ZERO,
8159 .block_erasers =
8160 {
8161 {
8162 .eraseblocks = { {4 * 1024, 2048} },
8163 .block_erase = spi_block_erase_20,
8164 }, {
8165 .eraseblocks = { {64 * 1024, 128} },
8166 .block_erase = spi_block_erase_52,
8167 }, {
8168 .eraseblocks = { {64 * 1024, 128} },
8169 .block_erase = spi_block_erase_d8,
8170 }, {
8171 .eraseblocks = { {8 * 1024 * 1024, 1} },
8172 .block_erase = spi_block_erase_60,
8173 }, {
8174 .eraseblocks = { {8 * 1024 * 1024, 1} },
8175 .block_erase = spi_block_erase_c7,
8176 }
8177 },
8178 .printlock = spi_prettyprint_status_register_bp3_srwd,
8179 .unlock = spi_disable_blockprotect_bp3_srwd,
8180 .write = spi_chip_write_256,
8181 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read supported */
8182 .voltage = {2700, 3600},
8183 },
8184
8185 {
8186 .vendor = "Macronix",
Nico Huberb0072782017-12-06 21:02:57 +01008187 .name = "MX25L6436E/MX25L6445E/MX25L6465E/MX25L6473E/MX25L6473F",
Stefan Tauner226037d2013-03-16 01:22:12 +00008188 .bustype = BUS_SPI,
8189 .manufacture_id = MACRONIX_ID,
8190 .model_id = MACRONIX_MX25L6405,
8191 .total_size = 8192,
8192 .page_size = 256,
8193 /* supports SFDP */
8194 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8195 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8196 .tested = TEST_OK_PREW,
8197 .probe = probe_spi_rdid,
8198 .probe_timing = TIMING_ZERO,
8199 .block_erasers =
8200 {
8201 {
8202 .eraseblocks = { {4 * 1024, 2048} },
8203 .block_erase = spi_block_erase_20,
8204 }, {
8205 .eraseblocks = { {32 * 1024, 256} },
8206 .block_erase = spi_block_erase_52,
8207 }, {
8208 .eraseblocks = { {64 * 1024, 128} },
8209 .block_erase = spi_block_erase_d8,
8210 }, {
8211 .eraseblocks = { {8 * 1024 * 1024, 1} },
8212 .block_erase = spi_block_erase_60,
8213 }, {
8214 .eraseblocks = { {8 * 1024 * 1024, 1} },
8215 .block_erase = spi_block_erase_c7,
8216 }
8217 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008218 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008219 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner226037d2013-03-16 01:22:12 +00008220 .write = spi_chip_write_256,
8221 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8222 .voltage = {2700, 3600},
8223 },
8224
8225 {
8226 .vendor = "Macronix",
Stefan Tauner5c316f92015-02-08 21:57:52 +00008227 .name = "MX25L12805D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008228 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008229 .manufacture_id = MACRONIX_ID,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008230 .model_id = MACRONIX_MX25L12805D,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00008231 .total_size = 16384,
8232 .page_size = 256,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008233 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
Stefan Tauner226037d2013-03-16 01:22:12 +00008234 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0554ca52013-07-25 22:54:25 +00008235 .tested = TEST_OK_PREW,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00008236 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008237 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008238 .block_erasers =
8239 {
8240 {
8241 .eraseblocks = { {4 * 1024, 4096} },
8242 .block_erase = spi_block_erase_20,
8243 }, {
8244 .eraseblocks = { {64 * 1024, 256} },
8245 .block_erase = spi_block_erase_d8,
8246 }, {
8247 .eraseblocks = { {16 * 1024 * 1024, 1} },
8248 .block_erase = spi_block_erase_60,
8249 }, {
8250 .eraseblocks = { {16 * 1024 * 1024, 1} },
8251 .block_erase = spi_block_erase_c7,
8252 }
8253 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00008254 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008255 .unlock = spi_disable_blockprotect_bp3_srwd,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008256 .write = spi_chip_write_256,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008257 .read = spi_chip_read, /* Fast read (0x0B) supported */
8258 .voltage = {2700, 3600},
8259 },
8260
8261 {
8262 .vendor = "Macronix",
8263 .name = "MX25L12835F/MX25L12845E/MX25L12865E",
8264 .bustype = BUS_SPI,
8265 .manufacture_id = MACRONIX_ID,
8266 .model_id = MACRONIX_MX25L12805D,
8267 .total_size = 16384,
8268 .page_size = 256,
8269 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8270 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8271 .tested = TEST_OK_PREW,
8272 .probe = probe_spi_rdid,
8273 .probe_timing = TIMING_ZERO,
8274 .block_erasers =
8275 {
8276 {
8277 .eraseblocks = { {4 * 1024, 4096} },
8278 .block_erase = spi_block_erase_20,
8279 }, {
8280 .eraseblocks = { {32 * 1024, 512} },
8281 .block_erase = spi_block_erase_52,
8282 }, {
8283 .eraseblocks = { {64 * 1024, 256} },
8284 .block_erase = spi_block_erase_d8,
8285 }, {
8286 .eraseblocks = { {16 * 1024 * 1024, 1} },
8287 .block_erase = spi_block_erase_60,
8288 }, {
8289 .eraseblocks = { {16 * 1024 * 1024, 1} },
8290 .block_erase = spi_block_erase_c7,
8291 }
8292 },
8293 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
8294 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8295 .unlock = spi_disable_blockprotect_bp3_srwd,
8296 .write = spi_chip_write_256,
8297 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008298 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00008299 },
8300
8301 {
8302 .vendor = "Macronix",
Nico Huberaac81422017-11-10 22:54:13 +01008303 .name = "MX25L25635F",
Timothy Pearson5bdb87e2016-08-27 14:02:50 -05008304 .bustype = BUS_SPI,
8305 .manufacture_id = MACRONIX_ID,
8306 .model_id = MACRONIX_MX25L25635F,
8307 .total_size = 32768,
8308 .page_size = 256,
8309 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
Nico Huberaac81422017-11-10 22:54:13 +01008310 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA,
8311 .tested = TEST_UNTESTED,
Timothy Pearson5bdb87e2016-08-27 14:02:50 -05008312 .probe = probe_spi_rdid,
8313 .probe_timing = TIMING_ZERO,
8314 .block_erasers =
8315 {
8316 {
8317 .eraseblocks = { {4 * 1024, 8192} },
Nico Huberaac81422017-11-10 22:54:13 +01008318 .block_erase = spi_block_erase_21,
8319 }, {
8320 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7a077222017-10-14 18:18:30 +02008321 .block_erase = spi_block_erase_20,
Timothy Pearson5bdb87e2016-08-27 14:02:50 -05008322 }, {
8323 .eraseblocks = { {32 * 1024, 1024} },
Nico Huberaac81422017-11-10 22:54:13 +01008324 .block_erase = spi_block_erase_5c,
8325 }, {
8326 .eraseblocks = { {32 * 1024, 1024} },
Nico Huber7a077222017-10-14 18:18:30 +02008327 .block_erase = spi_block_erase_52,
Timothy Pearson5bdb87e2016-08-27 14:02:50 -05008328 }, {
8329 .eraseblocks = { {64 * 1024, 512} },
Nico Huberaac81422017-11-10 22:54:13 +01008330 .block_erase = spi_block_erase_dc,
8331 }, {
8332 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7a077222017-10-14 18:18:30 +02008333 .block_erase = spi_block_erase_d8,
Timothy Pearson5bdb87e2016-08-27 14:02:50 -05008334 }, {
8335 .eraseblocks = { {32 * 1024 * 1024, 1} },
8336 .block_erase = spi_block_erase_60,
8337 }, {
8338 .eraseblocks = { {32 * 1024 * 1024, 1} },
8339 .block_erase = spi_block_erase_c7,
8340 }
8341 },
8342 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
8343 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8344 .unlock = spi_disable_blockprotect_bp3_srwd,
8345 .write = spi_chip_write_256,
8346 .read = spi_chip_read, /* Fast read (0x0B) supported */
8347 .voltage = {2700, 3600},
8348 },
8349
8350 {
8351 .vendor = "Macronix",
Timothy Pearsone29591d2016-08-27 15:43:00 -05008352 .name = "MX66L51235F",
8353 .bustype = BUS_SPI,
8354 .manufacture_id = MACRONIX_ID,
8355 .model_id = MACRONIX_MX66L51235F,
8356 .total_size = 65536,
8357 .page_size = 256,
8358 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
Nico Huberaac81422017-11-10 22:54:13 +01008359 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA,
8360 .tested = TEST_UNTESTED,
Timothy Pearsone29591d2016-08-27 15:43:00 -05008361 .probe = probe_spi_rdid,
8362 .probe_timing = TIMING_ZERO,
8363 .block_erasers =
8364 {
8365 {
8366 .eraseblocks = { {4 * 1024, 16384} },
Nico Huberaac81422017-11-10 22:54:13 +01008367 .block_erase = spi_block_erase_21,
8368 }, {
8369 .eraseblocks = { {4 * 1024, 16384} },
Nico Huber7a077222017-10-14 18:18:30 +02008370 .block_erase = spi_block_erase_20,
Timothy Pearsone29591d2016-08-27 15:43:00 -05008371 }, {
8372 .eraseblocks = { {32 * 1024, 2048} },
Nico Huberaac81422017-11-10 22:54:13 +01008373 .block_erase = spi_block_erase_5c,
8374 }, {
8375 .eraseblocks = { {32 * 1024, 2048} },
Nico Huber7a077222017-10-14 18:18:30 +02008376 .block_erase = spi_block_erase_52,
Timothy Pearsone29591d2016-08-27 15:43:00 -05008377 }, {
8378 .eraseblocks = { {64 * 1024, 1024} },
Nico Huberaac81422017-11-10 22:54:13 +01008379 .block_erase = spi_block_erase_dc,
8380 }, {
8381 .eraseblocks = { {64 * 1024, 1024} },
Nico Huber7a077222017-10-14 18:18:30 +02008382 .block_erase = spi_block_erase_d8,
Timothy Pearsone29591d2016-08-27 15:43:00 -05008383 }, {
8384 .eraseblocks = { {64 * 1024 * 1024, 1} },
8385 .block_erase = spi_block_erase_60,
8386 }, {
8387 .eraseblocks = { {64 * 1024 * 1024, 1} },
8388 .block_erase = spi_block_erase_c7,
8389 }
8390 },
8391 /* TODO: security register and SBLK/SBULK; MX25L12835F: configuration register */
8392 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8393 .unlock = spi_disable_blockprotect_bp3_srwd,
8394 .write = spi_chip_write_256,
8395 .read = spi_chip_read, /* Fast read (0x0B) supported */
8396 .voltage = {2700, 3600},
8397 },
8398
8399 {
8400 .vendor = "Macronix",
Vincent Palatinf800f552013-03-15 02:03:16 +00008401 .name = "MX25U1635E",
8402 .bustype = BUS_SPI,
8403 .manufacture_id = MACRONIX_ID,
8404 .model_id = MACRONIX_MX25U1635E,
8405 .total_size = 2048,
8406 .page_size = 256,
8407 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8408 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8409 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner5c316f92015-02-08 21:57:52 +00008410 .tested = TEST_OK_PR,
Vincent Palatinf800f552013-03-15 02:03:16 +00008411 .probe = probe_spi_rdid,
8412 .probe_timing = TIMING_ZERO,
8413 .block_erasers =
8414 {
8415 {
8416 .eraseblocks = { {4 * 1024, 512} },
8417 .block_erase = spi_block_erase_20,
8418 }, {
8419 .eraseblocks = { {32 * 1024, 64} },
8420 .block_erase = spi_block_erase_52,
8421 }, {
8422 .eraseblocks = { {64 * 1024, 32} },
8423 .block_erase = spi_block_erase_d8,
8424 }, {
8425 .eraseblocks = { {2 * 1024 * 1024, 1} },
8426 .block_erase = spi_block_erase_60,
8427 }, {
8428 .eraseblocks = { {2 * 1024 * 1024, 1} },
8429 .block_erase = spi_block_erase_c7,
8430 }
8431 },
8432 /* TODO: security register */
Stefan Tauner12f3d512014-05-27 21:27:27 +00008433 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008434 .unlock = spi_disable_blockprotect_bp3_srwd,
Vincent Palatinf800f552013-03-15 02:03:16 +00008435 .write = spi_chip_write_256,
8436 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8437 .voltage = {1650, 2000},
8438 },
8439
8440 {
8441 .vendor = "Macronix",
8442 .name = "MX25U3235E/F",
8443 .bustype = BUS_SPI,
8444 .manufacture_id = MACRONIX_ID,
8445 .model_id = MACRONIX_MX25U3235E,
8446 .total_size = 4096,
8447 .page_size = 256,
8448 /* F model supports SFDP */
8449 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8450 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8451 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
8452 .tested = TEST_OK_PREW,
8453 .probe = probe_spi_rdid,
8454 .probe_timing = TIMING_ZERO,
8455 .block_erasers =
8456 {
8457 {
8458 .eraseblocks = { {4 * 1024, 1024} },
8459 .block_erase = spi_block_erase_20,
8460 }, {
8461 .eraseblocks = { {32 * 1024, 128} },
8462 .block_erase = spi_block_erase_52,
8463 }, {
8464 .eraseblocks = { {64 * 1024, 64} },
8465 .block_erase = spi_block_erase_d8,
8466 }, {
8467 .eraseblocks = { {4 * 1024 * 1024, 1} },
8468 .block_erase = spi_block_erase_60,
8469 }, {
8470 .eraseblocks = { {4 * 1024 * 1024, 1} },
8471 .block_erase = spi_block_erase_c7,
8472 }
8473 },
8474 /* TODO: security register */
Stefan Tauner12f3d512014-05-27 21:27:27 +00008475 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008476 .unlock = spi_disable_blockprotect_bp3_srwd,
Vincent Palatinf800f552013-03-15 02:03:16 +00008477 .write = spi_chip_write_256,
8478 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8479 .voltage = {1650, 2000},
8480 },
8481
8482 {
8483 .vendor = "Macronix",
8484 .name = "MX25U6435E/F",
8485 .bustype = BUS_SPI,
8486 .manufacture_id = MACRONIX_ID,
8487 .model_id = MACRONIX_MX25U6435E,
8488 .total_size = 8192,
8489 .page_size = 256,
8490 /* F model supports SFDP */
8491 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8492 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
8493 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner23e10b82016-01-23 16:16:49 +00008494 .tested = TEST_OK_PREW,
Vincent Palatinf800f552013-03-15 02:03:16 +00008495 .probe = probe_spi_rdid,
8496 .probe_timing = TIMING_ZERO,
8497 .block_erasers =
8498 {
8499 {
8500 .eraseblocks = { {4 * 1024, 2048} },
8501 .block_erase = spi_block_erase_20,
8502 }, {
8503 .eraseblocks = { {32 * 1024, 256} },
8504 .block_erase = spi_block_erase_52,
8505 }, {
8506 .eraseblocks = { {64 * 1024, 128} },
8507 .block_erase = spi_block_erase_d8,
8508 }, {
8509 .eraseblocks = { {8 * 1024 * 1024, 1} },
8510 .block_erase = spi_block_erase_60,
8511 }, {
8512 .eraseblocks = { {8 * 1024 * 1024, 1} },
8513 .block_erase = spi_block_erase_c7,
8514 }
8515 },
8516 /* TODO: security register */
Stefan Tauner12f3d512014-05-27 21:27:27 +00008517 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
Stefan Tauner5c316f92015-02-08 21:57:52 +00008518 .unlock = spi_disable_blockprotect_bp3_srwd,
Vincent Palatinf800f552013-03-15 02:03:16 +00008519 .write = spi_chip_write_256,
8520 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8521 .voltage = {1650, 2000},
8522 },
8523
8524 {
8525 .vendor = "Macronix",
Martin Roth440057a2014-07-13 00:05:07 +00008526 .name = "MX25U12835F",
8527 .bustype = BUS_SPI,
8528 .manufacture_id = MACRONIX_ID,
8529 .model_id = MACRONIX_MX25U12835E,
8530 .total_size = 16384,
8531 .page_size = 256,
8532 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
8533 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
8534 .tested = TEST_UNTESTED,
8535 .probe = probe_spi_rdid,
8536 .probe_timing = TIMING_ZERO,
8537 .block_erasers =
8538 {
8539 {
8540 .eraseblocks = { {4 * 1024, 4096} },
8541 .block_erase = spi_block_erase_20,
8542 }, {
8543 .eraseblocks = { {32 * 1024, 512} },
8544 .block_erase = spi_block_erase_52,
8545 }, {
8546 .eraseblocks = { {64 * 1024, 256} },
8547 .block_erase = spi_block_erase_d8,
8548 }, {
8549 .eraseblocks = { {16 * 1024 * 1024, 1} },
8550 .block_erase = spi_block_erase_60,
8551 }, {
8552 .eraseblocks = { {16 * 1024 * 1024, 1} },
8553 .block_erase = spi_block_erase_c7,
8554 }
8555 },
8556 /* TODO: security register */
8557 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8558 .unlock = spi_disable_blockprotect_bp3_srwd,
8559 .write = spi_chip_write_256, /* Multi I/O supported */
8560 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8561 .voltage = {1650, 2000},
8562 },
8563
8564 {
Stefan Taunera4617f72015-01-10 15:59:54 +00008565 .vendor = "Macronix",
Daniel Thompsoncadd4202018-06-04 13:52:22 +01008566 .name = "MX25U51245G",
8567 .bustype = BUS_SPI,
8568 .manufacture_id = MACRONIX_ID,
8569 .model_id = MACRONIX_MX25U51245G,
8570 .total_size = 65536,
8571 .page_size = 256,
8572 /* OTP: 512B factory programmed and 512B customer programmed; enter 0xB1, exit 0xC1 */
8573 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI | FEATURE_4BA,
8574 .tested = TEST_OK_PREW,
8575 .probe = probe_spi_rdid,
8576 .probe_timing = TIMING_ZERO,
8577 .block_erasers =
8578 {
8579 {
8580 .eraseblocks = { {4 * 1024, 16384} },
8581 .block_erase = spi_block_erase_21,
8582 }, {
8583 .eraseblocks = { {4 * 1024, 16384} },
8584 .block_erase = spi_block_erase_20,
8585 }, {
8586 .eraseblocks = { {32 * 1024, 2048} },
8587 .block_erase = spi_block_erase_5c,
8588 }, {
8589 .eraseblocks = { {32 * 1024, 2048} },
8590 .block_erase = spi_block_erase_52,
8591 }, {
8592 .eraseblocks = { {64 * 1024, 1024} },
8593 .block_erase = spi_block_erase_dc,
8594 }, {
8595 .eraseblocks = { {64 * 1024, 1024} },
8596 .block_erase = spi_block_erase_d8,
8597 }, {
8598 .eraseblocks = { {64 * 1024 * 1024, 1} },
8599 .block_erase = spi_block_erase_60,
8600 }, {
8601 .eraseblocks = { {64 * 1024 * 1024, 1} },
8602 .block_erase = spi_block_erase_c7,
8603 }
8604 },
8605 /* TODO: security register */
8606 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8607 .unlock = spi_disable_blockprotect_bp3_srwd,
8608 .write = spi_chip_write_256, /* Multi I/O supported */
8609 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8610 .voltage = {1650, 2000},
8611 },
8612
8613 {
8614 .vendor = "Macronix",
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008615 .name = "MX25L6495F",
8616 .bustype = BUS_SPI,
8617 .manufacture_id = MACRONIX_ID,
8618 .model_id = MACRONIX_MX25L6495F,
8619 .total_size = 8192,
8620 .page_size = 256,
8621 /* OTP: 1024B total; enter 0xB1, exit 0xC1 */
8622 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8623 .tested = TEST_OK_PREW,
8624 .probe = probe_spi_rdid,
8625 .probe_timing = TIMING_ZERO,
8626 .block_erasers =
8627 {
8628 {
8629 .eraseblocks = { {4 * 1024, 2048} },
8630 .block_erase = spi_block_erase_20,
8631 }, {
8632 .eraseblocks = { {64 * 1024, 128} },
8633 .block_erase = spi_block_erase_d8,
8634 }, {
8635 .eraseblocks = { {32 * 1024, 256} },
8636 .block_erase = spi_block_erase_52,
8637 }, {
8638 .eraseblocks = { {8 * 1024 * 1024, 1} },
8639 .block_erase = spi_block_erase_60,
8640 }, {
8641 .eraseblocks = { {8 * 1024 * 1024, 1} },
8642 .block_erase = spi_block_erase_c7,
8643 }
8644 },
8645 .unlock = spi_disable_blockprotect,
8646 .write = spi_chip_write_256,
8647 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8648 .voltage = {2700, 3600},
8649 },
8650
8651 {
Martin Roth440057a2014-07-13 00:05:07 +00008652 .vendor = "Macronix",
Nathan Rennie-Waldock5a7f9422018-08-10 15:35:23 +01008653 .name = "MX25R6435F",
8654 .bustype = BUS_SPI,
8655 .manufacture_id = MACRONIX_ID,
8656 .model_id = MACRONIX_MX25R6435F,
8657 .total_size = 8192,
8658 .page_size = 256,
8659 /* OTP: 1024B total; enter 0xB1, exit 0xC1 */
8660 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8661 .tested = TEST_OK_PREW,
8662 .probe = probe_spi_rdid,
8663 .probe_timing = TIMING_ZERO,
8664 .block_erasers =
8665 {
8666 {
8667 .eraseblocks = { {4 * 1024, 2048} },
8668 .block_erase = spi_block_erase_20,
8669 }, {
8670 .eraseblocks = { {64 * 1024, 128} },
8671 .block_erase = spi_block_erase_d8,
8672 }, {
8673 .eraseblocks = { {32 * 1024, 256} },
8674 .block_erase = spi_block_erase_52,
8675 }, {
8676 .eraseblocks = { {8 * 1024 * 1024, 1} },
8677 .block_erase = spi_block_erase_60,
8678 }, {
8679 .eraseblocks = { {8 * 1024 * 1024, 1} },
8680 .block_erase = spi_block_erase_c7,
8681 }
8682 },
8683 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
8684 .unlock = spi_disable_blockprotect_bp3_srwd,
8685 .write = spi_chip_write_256,
8686 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8687 .voltage = {1650, 3600},
8688 },
8689
8690 {
8691 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00008692 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008693 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008694 .manufacture_id = MACRONIX_ID,
8695 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008696 .total_size = 128,
8697 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008698 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8699 .tested = TEST_UNTESTED,
8700 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008701 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008702 .block_erasers =
8703 {
8704 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00008705 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00008706 {8 * 1024, 1},
8707 {4 * 1024, 2},
8708 {8 * 1024, 2},
8709 {32 * 1024, 1},
8710 {64 * 1024, 1},
8711 },
Sean Nelson35727f72010-01-28 23:55:12 +00008712 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008713 }, {
8714 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008715 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008716 }
8717 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008718 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008719 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008720 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00008721 },
8722
8723 {
8724 .vendor = "Macronix",
8725 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008726 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008727 .manufacture_id = MACRONIX_ID,
8728 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008729 .total_size = 128,
8730 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008731 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00008732 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00008733 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008734 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008735 .block_erasers =
8736 {
8737 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00008738 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00008739 {64 * 1024, 1},
8740 {32 * 1024, 1},
8741 {8 * 1024, 2},
8742 {4 * 1024, 2},
8743 {8 * 1024, 1},
8744 },
Sean Nelson35727f72010-01-28 23:55:12 +00008745 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008746 }, {
8747 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008748 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008749 }
8750 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008751 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008752 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008753 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00008754 },
8755
8756 {
8757 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008758 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008759 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008760 .manufacture_id = MACRONIX_ID,
8761 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008762 .total_size = 256,
8763 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008764 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008765 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008766 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008767 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008768 .block_erasers =
8769 {
8770 {
8771 .eraseblocks = {
8772 {16 * 1024, 1},
8773 {8 * 1024, 2},
8774 {32 * 1024, 1},
8775 {64 * 1024, 3},
8776 },
Sean Nelson35727f72010-01-28 23:55:12 +00008777 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008778 }, {
8779 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008780 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008781 },
8782 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008783 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008784 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008785 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008786 },
8787
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008788 {
8789 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008790 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008791 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008792 .manufacture_id = MACRONIX_ID,
8793 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008794 .total_size = 256,
8795 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008796 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008797 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00008798 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008799 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008800 .block_erasers =
8801 {
8802 {
8803 .eraseblocks = {
8804 {64 * 1024, 3},
8805 {32 * 1024, 1},
8806 {8 * 1024, 2},
8807 {16 * 1024, 1},
8808 },
Sean Nelson35727f72010-01-28 23:55:12 +00008809 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008810 }, {
8811 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008812 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008813 },
8814 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008815 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008816 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008817 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008818 },
8819
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008820 {
8821 .vendor = "Macronix",
Daniele Forsi6a18a932014-07-13 14:53:45 +00008822 .name = "MX29F022(N)B",
8823 .bustype = BUS_PARALLEL,
8824 .manufacture_id = MACRONIX_ID,
8825 .model_id = MACRONIX_MX29F022B,
8826 .total_size = 256,
8827 .page_size = 0, /* unused */
8828 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8829 .tested = TEST_UNTESTED,
8830 .probe = probe_jedec,
8831 .probe_timing = TIMING_ZERO,
8832 .block_erasers =
8833 {
8834 {
8835 .eraseblocks = {
8836 {16 * 1024, 1},
8837 {8 * 1024, 2},
8838 {32 * 1024, 1},
8839 {64 * 1024, 3},
8840 },
8841 .block_erase = erase_sector_jedec,
8842 }, {
8843 .eraseblocks = { {256 * 1024, 1} },
8844 .block_erase = erase_chip_block_jedec,
8845 }
8846 },
8847 .write = write_jedec_1,
8848 .read = read_memmapped,
8849 .voltage = {4500, 5500},
8850 },
8851
8852 {
8853 .vendor = "Macronix",
8854 .name = "MX29F022(N)T",
8855 .bustype = BUS_PARALLEL,
8856 .manufacture_id = MACRONIX_ID,
8857 .model_id = MACRONIX_MX29F022T,
8858 .total_size = 256,
8859 .page_size = 0, /* unused */
8860 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8861 .tested = TEST_OK_PREW,
8862 .probe = probe_jedec,
8863 .probe_timing = TIMING_ZERO,
8864 .block_erasers =
8865 {
8866 {
8867 .eraseblocks = {
8868 {64 * 1024, 3},
8869 {32 * 1024, 1},
8870 {8 * 1024, 2},
8871 {16 * 1024, 1},
8872 },
8873 .block_erase = erase_sector_jedec,
8874 }, {
8875 .eraseblocks = { {256 * 1024, 1} },
8876 .block_erase = erase_chip_block_jedec,
8877 }
8878 },
8879 .write = write_jedec_1,
8880 .read = read_memmapped,
8881 .voltage = {4500, 5500},
8882 },
8883
8884 {
8885 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00008886 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008887 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00008888 .manufacture_id = MACRONIX_ID,
8889 .model_id = MACRONIX_MX29F040,
8890 .total_size = 512,
8891 .page_size = 64 * 1024,
8892 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8893 .tested = TEST_UNTESTED,
8894 .probe = probe_jedec,
8895 .probe_timing = TIMING_ZERO,
8896 .block_erasers =
8897 {
8898 {
8899 .eraseblocks = { {64 * 1024, 8} },
8900 .block_erase = erase_sector_jedec,
8901 }, {
8902 .eraseblocks = { {512 * 1024, 1} },
8903 .block_erase = erase_chip_block_jedec,
8904 },
8905 },
8906 .write = write_jedec_1,
8907 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00008908 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00008909 },
8910
8911 {
8912 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00008913 .name = "MX29GL320EB",
8914 .bustype = BUS_PARALLEL,
8915 .manufacture_id = MACRONIX_ID,
8916 .model_id = MACRONIX_MX29GL320EB,
8917 .total_size = 4096,
8918 .page_size = 128 * 1024, /* actual page size is 16 */
8919 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8920 .tested = TEST_UNTESTED,
8921 .probe = probe_jedec_29gl,
8922 .probe_timing = TIMING_ZERO,
8923 .block_erasers =
8924 {
8925 {
8926 .eraseblocks = {
8927 {8 * 1024, 8},
8928 {64 * 1024, 63},
8929 },
8930 .block_erase = erase_sector_jedec,
8931 }, {
8932 .eraseblocks = { {4 * 1024 * 1024, 1} },
8933 .block_erase = erase_chip_block_jedec,
8934 },
8935 },
8936 .write = write_jedec_1,
8937 .read = read_memmapped,
8938 .voltage = {2700, 3600},
8939 },
8940
8941 {
8942 .vendor = "Macronix",
8943 .name = "MX29GL320ET",
8944 .bustype = BUS_PARALLEL,
8945 .manufacture_id = MACRONIX_ID,
8946 .model_id = MACRONIX_MX29GL320ET,
8947 .total_size = 4096,
8948 .page_size = 128 * 1024, /* actual page size is 16 */
8949 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8950 .tested = TEST_UNTESTED,
8951 .probe = probe_jedec_29gl,
8952 .probe_timing = TIMING_ZERO,
8953 .block_erasers =
8954 {
8955 {
8956 .eraseblocks = {
8957 {64 * 1024, 63},
8958 {8 * 1024, 8},
8959 },
8960 .block_erase = erase_sector_jedec,
8961 }, {
8962 .eraseblocks = { {4 * 1024 * 1024, 1} },
8963 .block_erase = erase_chip_block_jedec,
8964 },
8965 },
8966 .write = write_jedec_1,
8967 .read = read_memmapped,
8968 .voltage = {2700, 3600},
8969 },
8970
8971 {
8972 .vendor = "Macronix",
8973 .name = "MX29GL320EH/L",
8974 .bustype = BUS_PARALLEL,
8975 .manufacture_id = MACRONIX_ID,
8976 .model_id = MACRONIX_MX29GL320EHL,
8977 .total_size = 4096,
8978 .page_size = 128 * 1024, /* actual page size is 16 */
8979 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8980 .tested = TEST_UNTESTED,
8981 .probe = probe_jedec_29gl,
8982 .probe_timing = TIMING_ZERO,
8983 .block_erasers =
8984 {
8985 {
8986 .eraseblocks = { {64 * 1024, 64} },
8987 .block_erase = erase_sector_jedec,
8988 }, {
8989 .eraseblocks = { {4 * 1024 * 1024, 1} },
8990 .block_erase = erase_chip_block_jedec,
8991 },
8992 },
8993 .write = write_jedec_1,
8994 .read = read_memmapped,
8995 .voltage = {2700, 3600},
8996 },
8997
8998 {
8999 .vendor = "Macronix",
9000 .name = "MX29GL640EB",
9001 .bustype = BUS_PARALLEL,
9002 .manufacture_id = MACRONIX_ID,
9003 .model_id = MACRONIX_MX29GL640EB,
9004 .total_size = 8192,
9005 .page_size = 128 * 1024, /* actual page size is 16 */
9006 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9007 .tested = TEST_UNTESTED,
9008 .probe = probe_jedec_29gl,
9009 .probe_timing = TIMING_ZERO,
9010 .block_erasers =
9011 {
9012 {
9013 .eraseblocks = {
9014 {8 * 1024, 8},
9015 {64 * 1024, 127},
9016 },
9017 .block_erase = erase_sector_jedec,
9018 }, {
9019 .eraseblocks = { {8 * 1024 * 1024, 1} },
9020 .block_erase = erase_chip_block_jedec,
9021 },
9022 },
9023 .write = write_jedec_1,
9024 .read = read_memmapped,
9025 .voltage = {2700, 3600},
9026 },
9027
9028 {
9029 .vendor = "Macronix",
9030 .name = "MX29GL640ET",
9031 .bustype = BUS_PARALLEL,
9032 .manufacture_id = MACRONIX_ID,
9033 .model_id = MACRONIX_MX29GL640ET,
9034 .total_size = 8192,
9035 .page_size = 128 * 1024, /* actual page size is 16 */
9036 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9037 .tested = TEST_UNTESTED,
9038 .probe = probe_jedec_29gl,
9039 .probe_timing = TIMING_ZERO,
9040 .block_erasers =
9041 {
9042 {
9043 .eraseblocks = {
9044 {64 * 1024, 127},
9045 {8 * 1024, 8},
9046 },
9047 .block_erase = erase_sector_jedec,
9048 }, {
9049 .eraseblocks = { {8 * 1024 * 1024, 1} },
9050 .block_erase = erase_chip_block_jedec,
9051 },
9052 },
9053 .write = write_jedec_1,
9054 .read = read_memmapped,
9055 .voltage = {2700, 3600},
9056 },
9057
9058 {
9059 .vendor = "Macronix",
9060 .name = "MX29GL640EH/L",
9061 .bustype = BUS_PARALLEL,
9062 .manufacture_id = MACRONIX_ID,
9063 .model_id = MACRONIX_MX29GL640EHL,
9064 .total_size = 8192,
9065 .page_size = 128 * 1024, /* actual page size is 16 */
9066 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9067 .tested = TEST_UNTESTED,
9068 .probe = probe_jedec_29gl,
9069 .probe_timing = TIMING_ZERO,
9070 .block_erasers =
9071 {
9072 {
9073 .eraseblocks = { {64 * 1024, 128} },
9074 .block_erase = erase_sector_jedec,
9075 }, {
9076 .eraseblocks = { {8 * 1024 * 1024, 1} },
9077 .block_erase = erase_chip_block_jedec,
9078 },
9079 },
9080 .write = write_jedec_1,
9081 .read = read_memmapped,
9082 .voltage = {2700, 3600},
9083 },
9084
9085 {
9086 .vendor = "Macronix",
9087 .name = "MX29GL128F",
9088 .bustype = BUS_PARALLEL,
9089 .manufacture_id = MACRONIX_ID,
9090 .model_id = MACRONIX_MX29GL128F,
9091 .total_size = 16384,
9092 .page_size = 128 * 1024, /* actual page size is 16 */
9093 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9094 .tested = TEST_UNTESTED,
9095 .probe = probe_jedec_29gl,
9096 .probe_timing = TIMING_ZERO,
9097 .block_erasers =
9098 {
9099 {
9100 .eraseblocks = { {128 * 1024, 128} },
9101 .block_erase = erase_sector_jedec,
9102 }, {
9103 .eraseblocks = { {16 * 1024 * 1024, 1} },
9104 .block_erase = erase_chip_block_jedec,
9105 },
9106 },
9107 .write = write_jedec_1,
9108 .read = read_memmapped,
9109 .voltage = {2700, 3600},
9110 },
9111
9112 {
9113 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00009114 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009115 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009116 .manufacture_id = MACRONIX_ID,
9117 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009118 .total_size = 512,
9119 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009120 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9121 .tested = TEST_UNTESTED,
9122 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009123 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00009124 .block_erasers =
9125 {
9126 {
Stefan Tauner6697f712014-08-06 15:09:15 +00009127 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +00009128 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009129 }, {
9130 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009131 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009132 },
9133 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009134 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009135 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009136 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00009137 },
9138
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009139 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009140 .vendor = "Micron/Numonyx/ST",
9141 .name = "M25P05-A",
9142 .bustype = BUS_SPI,
9143 .manufacture_id = ST_ID,
9144 .model_id = ST_M25P05A,
9145 .total_size = 64,
9146 .page_size = 256,
9147 .feature_bits = FEATURE_WRSR_WREN,
9148 .tested = TEST_OK_PREW,
9149 .probe = probe_spi_rdid,
9150 .probe_timing = TIMING_ZERO,
9151 .block_erasers =
9152 {
9153 {
9154 .eraseblocks = { {32 * 1024, 2} },
9155 .block_erase = spi_block_erase_d8,
9156 }, {
9157 .eraseblocks = { {64 * 1024, 1} },
9158 .block_erase = spi_block_erase_c7,
9159 }
9160 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009161 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009162 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009163 .write = spi_chip_write_256,
9164 .read = spi_chip_read,
9165 .voltage = {2700, 3600},
9166 },
9167
9168 /* The ST M25P05 is a bit of a problem. It has the same ID as the
9169 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
9170 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
9171 * only is successful if RDID does not work.
9172 */
9173 {
9174 .vendor = "Micron/Numonyx/ST",
9175 .name = "M25P05",
9176 .bustype = BUS_SPI,
9177 .manufacture_id = 0, /* Not used. */
9178 .model_id = ST_M25P05_RES,
9179 .total_size = 64,
9180 .page_size = 256,
9181 .feature_bits = FEATURE_WRSR_WREN,
9182 .tested = TEST_UNTESTED,
9183 .probe = probe_spi_res1,
9184 .probe_timing = TIMING_ZERO,
9185 .block_erasers =
9186 {
9187 {
9188 .eraseblocks = { {32 * 1024, 2} },
9189 .block_erase = spi_block_erase_d8,
9190 }, {
9191 .eraseblocks = { {64 * 1024, 1} },
9192 .block_erase = spi_block_erase_c7,
9193 }
9194 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009195 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009196 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009197 .write = spi_chip_write_1, /* 128 */
9198 .read = spi_chip_read,
9199 .voltage = {2700, 3600},
9200 },
9201
9202 {
9203 .vendor = "Micron/Numonyx/ST",
9204 .name = "M25P10-A",
9205 .bustype = BUS_SPI,
9206 .manufacture_id = ST_ID,
9207 .model_id = ST_M25P10A,
9208 .total_size = 128,
9209 .page_size = 256,
9210 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +00009211 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009212 .probe = probe_spi_rdid,
9213 .probe_timing = TIMING_ZERO,
9214 .block_erasers =
9215 {
9216 {
9217 .eraseblocks = { {32 * 1024, 4} },
9218 .block_erase = spi_block_erase_d8,
9219 }, {
9220 .eraseblocks = { {128 * 1024, 1} },
9221 .block_erase = spi_block_erase_c7,
9222 }
9223 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009224 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009225 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009226 .write = spi_chip_write_256,
9227 .read = spi_chip_read,
9228 .voltage = {2700, 3600},
9229 },
9230
9231 /* The ST M25P10 has the same problem as the M25P05. */
9232 {
9233 .vendor = "Micron/Numonyx/ST",
9234 .name = "M25P10",
9235 .bustype = BUS_SPI,
9236 .manufacture_id = 0, /* Not used. */
9237 .model_id = ST_M25P10_RES,
9238 .total_size = 128,
9239 .page_size = 256,
9240 .feature_bits = FEATURE_WRSR_WREN,
9241 .tested = TEST_UNTESTED,
9242 .probe = probe_spi_res1,
9243 .probe_timing = TIMING_ZERO,
9244 .block_erasers =
9245 {
9246 {
9247 .eraseblocks = { {32 * 1024, 4} },
9248 .block_erase = spi_block_erase_d8,
9249 }, {
9250 .eraseblocks = { {128 * 1024, 1} },
9251 .block_erase = spi_block_erase_c7,
9252 }
9253 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009254 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009255 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009256 .write = spi_chip_write_1, /* 128 */
9257 .read = spi_chip_read,
9258 .voltage = {2700, 3600},
9259 },
9260
9261 {
9262 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9263 .name = "M25P20",
9264 .bustype = BUS_SPI,
9265 .manufacture_id = ST_ID,
9266 .model_id = ST_M25P20,
9267 .total_size = 256,
9268 .page_size = 256,
9269 .feature_bits = FEATURE_WRSR_WREN,
9270 .tested = TEST_UNTESTED,
9271 .probe = probe_spi_rdid,
9272 .probe_timing = TIMING_ZERO,
9273 .block_erasers =
9274 {
9275 {
9276 .eraseblocks = { {64 * 1024, 4} },
9277 .block_erase = spi_block_erase_d8,
9278 }, {
9279 .eraseblocks = { {256 * 1024, 1} },
9280 .block_erase = spi_block_erase_c7,
9281 }
9282 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009283 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009284 .unlock = spi_disable_blockprotect,
9285 .write = spi_chip_write_256,
9286 .read = spi_chip_read, /* Fast read (0x0B) supported */
9287 .voltage = {2700, 3600},
9288 },
9289
9290 {
9291 .vendor = "Micron/Numonyx/ST",
9292 .name = "M25P20-old",
9293 .bustype = BUS_SPI,
9294 .manufacture_id = 0, /* Not used. */
9295 .model_id = ST_M25P20_RES,
9296 .total_size = 256,
9297 .page_size = 256,
9298 .feature_bits = FEATURE_WRSR_WREN,
9299 .tested = TEST_OK_PREW,
9300 .probe = probe_spi_res1,
9301 .probe_timing = TIMING_ZERO,
9302 .block_erasers =
9303 {
9304 {
9305 .eraseblocks = { {64 * 1024, 4} },
9306 .block_erase = spi_block_erase_d8,
9307 }, {
9308 .eraseblocks = { {256 * 1024, 1} },
9309 .block_erase = spi_block_erase_c7,
9310 }
9311 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009312 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009313 .unlock = spi_disable_blockprotect,
9314 .write = spi_chip_write_256,
9315 .read = spi_chip_read, /* Fast read (0x0B) supported */
9316 .voltage = {2700, 3600},
9317 },
9318
9319 {
9320 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9321 .name = "M25P40",
9322 .bustype = BUS_SPI,
9323 .manufacture_id = ST_ID,
9324 .model_id = ST_M25P40,
9325 .total_size = 512,
9326 .page_size = 256,
9327 .feature_bits = FEATURE_WRSR_WREN,
9328 .tested = TEST_OK_PREW,
9329 .probe = probe_spi_rdid,
9330 .probe_timing = TIMING_ZERO,
9331 .block_erasers =
9332 {
9333 {
9334 .eraseblocks = { {64 * 1024, 8} },
9335 .block_erase = spi_block_erase_d8,
9336 }, {
9337 .eraseblocks = { {512 * 1024, 1} },
9338 .block_erase = spi_block_erase_c7,
9339 }
9340 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009341 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009342 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009343 .write = spi_chip_write_256,
9344 .read = spi_chip_read,
9345 .voltage = {2700, 3600},
9346 },
9347
9348 {
9349 .vendor = "Micron/Numonyx/ST",
9350 .name = "M25P40-old",
9351 .bustype = BUS_SPI,
9352 .manufacture_id = 0, /* Not used. */
9353 .model_id = ST_M25P40_RES,
9354 .total_size = 512,
9355 .page_size = 256,
9356 .feature_bits = FEATURE_WRSR_WREN,
9357 .tested = TEST_UNTESTED,
9358 .probe = probe_spi_res1,
9359 .probe_timing = TIMING_ZERO,
9360 .block_erasers =
9361 {
9362 {
9363 .eraseblocks = { {64 * 1024, 8} },
9364 .block_erase = spi_block_erase_d8,
9365 }, {
9366 .eraseblocks = { {512 * 1024, 1} },
9367 .block_erase = spi_block_erase_c7,
9368 }
9369 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009370 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009371 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009372 .write = spi_chip_write_256,
9373 .read = spi_chip_read,
9374 },
9375
9376 {
9377 .vendor = "Micron/Numonyx/ST",
9378 .name = "M25P80",
9379 .bustype = BUS_SPI,
9380 .manufacture_id = ST_ID,
9381 .model_id = ST_M25P80,
9382 .total_size = 1024,
9383 .page_size = 256,
9384 .feature_bits = FEATURE_WRSR_WREN,
9385 .tested = TEST_OK_PREW,
9386 .probe = probe_spi_rdid,
9387 .probe_timing = TIMING_ZERO,
9388 .block_erasers =
9389 {
9390 {
9391 .eraseblocks = { {64 * 1024, 16} },
9392 .block_erase = spi_block_erase_d8,
9393 }, {
9394 .eraseblocks = { {1024 * 1024, 1} },
9395 .block_erase = spi_block_erase_c7,
9396 }
9397 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009398 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009399 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009400 .write = spi_chip_write_256,
9401 .read = spi_chip_read,
9402 .voltage = {2700, 3600},
9403 },
9404
9405 {
9406 .vendor = "Micron/Numonyx/ST",
9407 .name = "M25P16",
9408 .bustype = BUS_SPI,
9409 .manufacture_id = ST_ID,
9410 .model_id = ST_M25P16,
9411 .total_size = 2048,
9412 .page_size = 256,
9413 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009414 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009415 .probe = probe_spi_rdid,
9416 .probe_timing = TIMING_ZERO,
9417 .block_erasers =
9418 {
9419 {
9420 .eraseblocks = { {64 * 1024, 32} },
9421 .block_erase = spi_block_erase_d8,
9422 }, {
9423 .eraseblocks = { {2 * 1024 * 1024, 1} },
9424 .block_erase = spi_block_erase_c7,
9425 }
9426 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009427 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009428 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009429 .write = spi_chip_write_256,
9430 .read = spi_chip_read,
9431 .voltage = {2700, 3600},
9432 },
9433
9434 {
9435 .vendor = "Micron/Numonyx/ST",
9436 .name = "M25P32",
9437 .bustype = BUS_SPI,
9438 .manufacture_id = ST_ID,
9439 .model_id = ST_M25P32,
9440 .total_size = 4096,
9441 .page_size = 256,
9442 .feature_bits = FEATURE_WRSR_WREN,
9443 .tested = TEST_OK_PREW,
9444 .probe = probe_spi_rdid,
9445 .probe_timing = TIMING_ZERO,
9446 .block_erasers =
9447 {
9448 {
9449 .eraseblocks = { {64 * 1024, 64} },
9450 .block_erase = spi_block_erase_d8,
9451 }, {
9452 .eraseblocks = { {4 * 1024 * 1024, 1} },
9453 .block_erase = spi_block_erase_c7,
9454 }
9455 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009456 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009457 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009458 .write = spi_chip_write_256,
9459 .read = spi_chip_read,
9460 .voltage = {2700, 3600},
9461 },
9462
9463 {
9464 .vendor = "Micron/Numonyx/ST",
9465 .name = "M25P64",
9466 .bustype = BUS_SPI,
9467 .manufacture_id = ST_ID,
9468 .model_id = ST_M25P64,
9469 .total_size = 8192,
9470 .page_size = 256,
9471 .feature_bits = FEATURE_WRSR_WREN,
9472 .tested = TEST_OK_PREW,
9473 .probe = probe_spi_rdid,
9474 .probe_timing = TIMING_ZERO,
9475 .block_erasers =
9476 {
9477 {
9478 .eraseblocks = { {64 * 1024, 128} },
9479 .block_erase = spi_block_erase_d8,
9480 }, {
9481 .eraseblocks = { {8 * 1024 * 1024, 1} },
9482 .block_erase = spi_block_erase_c7,
9483 }
9484 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009485 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009486 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009487 .write = spi_chip_write_256,
9488 .read = spi_chip_read,
9489 .voltage = {2700, 3600},
9490 },
9491
9492 {
9493 .vendor = "Micron/Numonyx/ST",
9494 .name = "M25P128",
9495 .bustype = BUS_SPI,
9496 .manufacture_id = ST_ID,
9497 .model_id = ST_M25P128,
9498 .total_size = 16384,
9499 .page_size = 256,
9500 .feature_bits = FEATURE_WRSR_WREN,
9501 .tested = TEST_OK_PREW,
9502 .probe = probe_spi_rdid,
9503 .probe_timing = TIMING_ZERO,
9504 .block_erasers =
9505 {
9506 {
9507 .eraseblocks = { {256 * 1024, 64} },
9508 .block_erase = spi_block_erase_d8,
9509 }, {
9510 .eraseblocks = { {16 * 1024 * 1024, 1} },
9511 .block_erase = spi_block_erase_c7,
9512 }
9513 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009514 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009515 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009516 .write = spi_chip_write_256,
9517 .read = spi_chip_read,
9518 .voltage = {2700, 3600},
9519 },
9520
9521 {
9522 .vendor = "Micron/Numonyx/ST",
9523 .name = "M25PE10",
9524 .bustype = BUS_SPI,
9525 .manufacture_id = ST_ID,
9526 .model_id = ST_M25PE10,
9527 .total_size = 128,
9528 .page_size = 256,
9529 .feature_bits = FEATURE_WRSR_WREN,
9530 .tested = TEST_UNTESTED,
9531 .probe = probe_spi_rdid,
9532 .probe_timing = TIMING_ZERO,
9533 .block_erasers =
9534 {
9535 {
9536 .eraseblocks = { {4 * 1024, 32} },
9537 .block_erase = spi_block_erase_20,
9538 }, {
9539 .eraseblocks = { {64 * 1024, 2} },
9540 .block_erase = spi_block_erase_d8,
9541 }, {
9542 .eraseblocks = { {128 * 1024, 1} },
9543 .block_erase = spi_block_erase_c7,
9544 }
9545 },
9546 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9547 .unlock = spi_disable_blockprotect,
9548 .write = spi_chip_write_256,
9549 .read = spi_chip_read,
9550 .voltage = {2700, 3600},
9551 },
9552
9553 {
9554 .vendor = "Micron/Numonyx/ST",
9555 .name = "M25PE20",
9556 .bustype = BUS_SPI,
9557 .manufacture_id = ST_ID,
9558 .model_id = ST_M25PE20,
9559 .total_size = 256,
9560 .page_size = 256,
9561 .feature_bits = FEATURE_WRSR_WREN,
9562 .tested = TEST_UNTESTED,
9563 .probe = probe_spi_rdid,
9564 .probe_timing = TIMING_ZERO,
9565 .block_erasers =
9566 {
9567 {
9568 .eraseblocks = { {4 * 1024, 64} },
9569 .block_erase = spi_block_erase_20,
9570 }, {
9571 .eraseblocks = { {64 * 1024, 4} },
9572 .block_erase = spi_block_erase_d8,
9573 }, {
9574 .eraseblocks = { {256 * 1024, 1} },
9575 .block_erase = spi_block_erase_c7,
9576 }
9577 },
9578 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9579 .unlock = spi_disable_blockprotect,
9580 .write = spi_chip_write_256,
9581 .read = spi_chip_read,
9582 .voltage = {2700, 3600},
9583 },
9584
9585 {
9586 .vendor = "Micron/Numonyx/ST",
9587 .name = "M25PE40",
9588 .bustype = BUS_SPI,
9589 .manufacture_id = ST_ID,
9590 .model_id = ST_M25PE40,
9591 .total_size = 512,
9592 .page_size = 256,
9593 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +00009594 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009595 .probe = probe_spi_rdid,
9596 .probe_timing = TIMING_ZERO,
9597 .block_erasers =
9598 {
9599 {
9600 .eraseblocks = { {4 * 1024, 128} },
9601 .block_erase = spi_block_erase_20,
9602 }, {
9603 .eraseblocks = { {64 * 1024, 8} },
9604 .block_erase = spi_block_erase_d8,
9605 }, {
9606 .eraseblocks = { {512 * 1024, 1} },
9607 .block_erase = spi_block_erase_c7,
9608 }
9609 },
9610 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9611 .unlock = spi_disable_blockprotect,
9612 .write = spi_chip_write_256,
9613 .read = spi_chip_read,
9614 .voltage = {2700, 3600},
9615 },
9616
9617 {
9618 .vendor = "Micron/Numonyx/ST",
9619 .name = "M25PE80",
9620 .bustype = BUS_SPI,
9621 .manufacture_id = ST_ID,
9622 .model_id = ST_M25PE80,
9623 .total_size = 1024,
9624 .page_size = 256,
9625 .feature_bits = FEATURE_WRSR_WREN,
9626 .tested = TEST_OK_PREW,
9627 .probe = probe_spi_rdid,
9628 .probe_timing = TIMING_ZERO,
9629 .block_erasers =
9630 {
9631 {
9632 .eraseblocks = { {4 * 1024, 256} },
9633 .block_erase = spi_block_erase_20,
9634 }, {
9635 .eraseblocks = { {64 * 1024, 16} },
9636 .block_erase = spi_block_erase_d8,
9637 }, {
9638 .eraseblocks = { {1024 * 1024, 1} },
9639 .block_erase = spi_block_erase_c7,
9640 }
9641 },
9642 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9643 .unlock = spi_disable_blockprotect,
9644 .write = spi_chip_write_256,
9645 .read = spi_chip_read,
9646 .voltage = {2700, 3600},
9647 },
9648
9649 {
9650 .vendor = "Micron/Numonyx/ST",
9651 .name = "M25PE16",
9652 .bustype = BUS_SPI,
9653 .manufacture_id = ST_ID,
9654 .model_id = ST_M25PE16,
9655 .total_size = 2048,
9656 .page_size = 256,
9657 .feature_bits = FEATURE_WRSR_WREN,
9658 .tested = TEST_UNTESTED,
9659 .probe = probe_spi_rdid,
9660 .probe_timing = TIMING_ZERO,
9661 .block_erasers =
9662 {
9663 {
9664 .eraseblocks = { {4 * 1024, 512} },
9665 .block_erase = spi_block_erase_20,
9666 }, {
9667 .eraseblocks = { {64 * 1024, 32} },
9668 .block_erase = spi_block_erase_d8,
9669 }, {
9670 .eraseblocks = { {2 * 1024 * 1024, 1} },
9671 .block_erase = spi_block_erase_c7,
9672 }
9673 },
9674 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9675 .unlock = spi_disable_blockprotect,
9676 .write = spi_chip_write_256,
9677 .read = spi_chip_read,
9678 .voltage = {2700, 3600},
9679 },
9680
9681 {
9682 .vendor = "Micron/Numonyx/ST",
9683 .name = "M25PX80",
9684 .bustype = BUS_SPI,
9685 .manufacture_id = ST_ID,
9686 .model_id = ST_M25PX80,
9687 .total_size = 1024,
9688 .page_size = 256,
9689 /* OTP: 64B total; read 0x4B, write 0x42 */
9690 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9691 .tested = TEST_OK_PREW,
9692 .probe = probe_spi_rdid,
9693 .probe_timing = TIMING_ZERO,
9694 .block_erasers = {
9695 {
9696 .eraseblocks = { { 4 * 1024, 256 } },
9697 .block_erase = spi_block_erase_20,
9698 }, {
9699 .eraseblocks = { {64 * 1024, 16} },
9700 .block_erase = spi_block_erase_d8,
9701 }, {
9702 .eraseblocks = { {1024 * 1024, 1} },
9703 .block_erase = spi_block_erase_c7,
9704 }
9705 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009706 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009707 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9708 .write = spi_chip_write_256,
9709 .read = spi_chip_read,
9710 .voltage = {2700, 3600},
9711 },
9712
9713 {
9714 .vendor = "Micron/Numonyx/ST",
9715 .name = "M25PX16",
9716 .bustype = BUS_SPI,
9717 .manufacture_id = ST_ID,
9718 .model_id = ST_M25PX16,
9719 .total_size = 2048,
9720 .page_size = 256,
9721 /* OTP: 64B total; read 0x4B; write 0x42 */
9722 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9723 .tested = TEST_OK_PREW,
9724 .probe = probe_spi_rdid,
9725 .probe_timing = TIMING_ZERO,
9726 .block_erasers =
9727 {
9728 {
9729 .eraseblocks = { { 4 * 1024, 512 } },
9730 .block_erase = spi_block_erase_20,
9731 }, {
9732 .eraseblocks = { {64 * 1024, 32} },
9733 .block_erase = spi_block_erase_d8,
9734 }, {
9735 .eraseblocks = { {2 * 1024 * 1024, 1} },
9736 .block_erase = spi_block_erase_c7,
9737 }
9738 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009739 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009740 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9741 .write = spi_chip_write_256,
9742 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009743 .voltage = {2300, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009744 },
9745
9746 {
9747 .vendor = "Micron/Numonyx/ST",
9748 .name = "M25PX32",
9749 .bustype = BUS_SPI,
9750 .manufacture_id = ST_ID,
9751 .model_id = ST_M25PX32,
9752 .total_size = 4096,
9753 .page_size = 256,
9754 /* OTP: 64B total; read 0x4B; write 0x42 */
9755 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9756 .tested = TEST_OK_PRE,
9757 .probe = probe_spi_rdid,
9758 .probe_timing = TIMING_ZERO,
9759 .block_erasers =
9760 {
9761 {
9762 .eraseblocks = { { 4 * 1024, 1024 } },
9763 .block_erase = spi_block_erase_20,
9764 }, {
9765 .eraseblocks = { {64 * 1024, 64} },
9766 .block_erase = spi_block_erase_d8,
9767 }, {
9768 .eraseblocks = { {4 * 1024 * 1024, 1} },
9769 .block_erase = spi_block_erase_c7,
9770 }
9771 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009772 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009773 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9774 .write = spi_chip_write_256,
9775 .read = spi_chip_read,
9776 .voltage = {2700, 3600},
9777 },
9778
9779 {
9780 .vendor = "Micron/Numonyx/ST",
9781 .name = "M25PX64",
9782 .bustype = BUS_SPI,
9783 .manufacture_id = ST_ID,
9784 .model_id = ST_M25PX64,
9785 .total_size = 8192,
9786 .page_size = 256,
9787 /* OTP: 64B total; read 0x4B; write 0x42 */
9788 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009789 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009790 .probe = probe_spi_rdid,
9791 .probe_timing = TIMING_ZERO,
9792 .block_erasers =
9793 {
9794 {
9795 .eraseblocks = { { 4 * 1024, 2048 } },
9796 .block_erase = spi_block_erase_20,
9797 }, {
9798 .eraseblocks = { {64 * 1024, 128} },
9799 .block_erase = spi_block_erase_d8,
9800 }, {
9801 .eraseblocks = { {8 * 1024 * 1024, 1} },
9802 .block_erase = spi_block_erase_c7,
9803 }
9804 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009805 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009806 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9807 .write = spi_chip_write_256,
9808 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009809 .voltage = {2700, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009810 },
9811
9812 {
9813 .vendor = "Micron/Numonyx/ST",
9814 .name = "M45PE10",
9815 .bustype = BUS_SPI,
9816 .manufacture_id = ST_ID,
9817 .model_id = ST_M45PE10,
9818 .total_size = 128,
9819 .page_size = 256,
9820 .tested = TEST_UNTESTED,
9821 .probe = probe_spi_rdid,
9822 .probe_timing = TIMING_ZERO,
9823 .block_erasers = {
9824 {
9825 .eraseblocks = { {256, 512} },
9826 .block_erase = spi_block_erase_db,
9827 }, {
9828 .eraseblocks = { {64 * 1024, 2} },
9829 .block_erase = spi_block_erase_d8,
9830 }
9831 },
9832 .printlock = spi_prettyprint_status_register_default_welwip,
9833 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9834 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9835 .read = spi_chip_read, /* Fast read (0x0B) supported */
9836 .voltage = {2700, 3600},
9837 },
9838
9839 {
9840 .vendor = "Micron/Numonyx/ST",
9841 .name = "M45PE20",
9842 .bustype = BUS_SPI,
9843 .manufacture_id = ST_ID,
9844 .model_id = ST_M45PE20,
9845 .total_size = 256,
9846 .page_size = 256,
9847 .tested = TEST_UNTESTED,
9848 .probe = probe_spi_rdid,
9849 .probe_timing = TIMING_ZERO,
9850 .block_erasers = {
9851 {
9852 .eraseblocks = { {256, 1024} },
9853 .block_erase = spi_block_erase_db,
9854 }, {
9855 .eraseblocks = { {64 * 1024, 4} },
9856 .block_erase = spi_block_erase_d8,
9857 }
9858 },
9859 .printlock = spi_prettyprint_status_register_default_welwip,
9860 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9861 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9862 .read = spi_chip_read, /* Fast read (0x0B) supported */
9863 .voltage = {2700, 3600},
9864 },
9865
9866 {
9867 .vendor = "Micron/Numonyx/ST",
9868 .name = "M45PE40",
9869 .bustype = BUS_SPI,
9870 .manufacture_id = ST_ID,
9871 .model_id = ST_M45PE40,
9872 .total_size = 512,
9873 .page_size = 256,
9874 .tested = TEST_UNTESTED,
9875 .probe = probe_spi_rdid,
9876 .probe_timing = TIMING_ZERO,
9877 .block_erasers = {
9878 {
9879 .eraseblocks = { {256, 2048} },
9880 .block_erase = spi_block_erase_db,
9881 }, {
9882 .eraseblocks = { {64 * 1024, 8} },
9883 .block_erase = spi_block_erase_d8,
9884 }
9885 },
9886 .printlock = spi_prettyprint_status_register_default_welwip,
9887 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Stefan Tauner23e10b82016-01-23 16:16:49 +00009888 .write = spi_chip_write_256, /* Page write supported (similar to PP but allows 0->1 changes) */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009889 .read = spi_chip_read, /* Fast read (0x0B) supported */
9890 .voltage = {2700, 3600},
9891 },
9892
9893 {
9894 .vendor = "Micron/Numonyx/ST",
9895 .name = "M45PE80",
9896 .bustype = BUS_SPI,
9897 .manufacture_id = ST_ID,
9898 .model_id = ST_M45PE80,
9899 .total_size = 1024,
9900 .page_size = 256,
9901 .tested = TEST_UNTESTED,
9902 .probe = probe_spi_rdid,
9903 .probe_timing = TIMING_ZERO,
9904 .block_erasers = {
9905 {
9906 .eraseblocks = { {256, 4096} },
9907 .block_erase = spi_block_erase_db,
9908 }, {
9909 .eraseblocks = { {64 * 1024, 16} },
9910 .block_erase = spi_block_erase_d8,
9911 }
9912 },
9913 .printlock = spi_prettyprint_status_register_default_welwip,
9914 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9915 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9916 .read = spi_chip_read, /* Fast read (0x0B) supported */
9917 .voltage = {2700, 3600},
9918 },
9919
9920 {
9921 .vendor = "Micron/Numonyx/ST",
9922 .name = "M45PE16",
9923 .bustype = BUS_SPI,
9924 .manufacture_id = ST_ID,
9925 .model_id = ST_M45PE16,
9926 .total_size = 2048,
9927 .page_size = 256,
9928 .tested = TEST_UNTESTED,
9929 .probe = probe_spi_rdid,
9930 .probe_timing = TIMING_ZERO,
9931 .block_erasers = {
9932 {
9933 .eraseblocks = { {256, 8192} },
9934 .block_erase = spi_block_erase_db,
9935 }, {
9936 .eraseblocks = { {64 * 1024, 32} },
9937 .block_erase = spi_block_erase_d8,
9938 }
9939 },
9940 .printlock = spi_prettyprint_status_register_default_welwip,
9941 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9942 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9943 .read = spi_chip_read, /* Fast read (0x0B) supported */
9944 .voltage = {2700, 3600},
9945 },
9946
9947 {
9948 .vendor = "Micron/Numonyx/ST",
9949 .name = "N25Q016",
9950 .bustype = BUS_SPI,
9951 .manufacture_id = ST_ID,
9952 .model_id = ST_N25Q016__1E,
9953 .total_size = 2048,
9954 .page_size = 256,
9955 /* supports SFDP */
9956 /* OTP: 64B total; read 0x4B, write 0x42 */
9957 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9958 .tested = TEST_UNTESTED,
9959 .probe = probe_spi_rdid,
9960 .probe_timing = TIMING_ZERO,
9961 .block_erasers =
9962 {
9963 {
9964 .eraseblocks = { {4 * 1024, 512} },
9965 .block_erase = spi_block_erase_20,
9966 }, {
9967 .eraseblocks = { {32 * 1024, 64} },
9968 .block_erase = spi_block_erase_52,
9969 }, {
9970 .eraseblocks = { {64 * 1024, 32} },
9971 .block_erase = spi_block_erase_d8,
9972 }, {
9973 .eraseblocks = { {2 * 1024 * 1024, 1} },
9974 .block_erase = spi_block_erase_c7,
9975 }
9976 },
9977 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
9978 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
9979 .write = spi_chip_write_256, /* Multi I/O supported */
9980 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9981 .voltage = {1700, 2000},
9982 },
9983
9984 {
9985 .vendor = "Micron/Numonyx/ST",
9986 .name = "N25Q032..1E",
9987 .bustype = BUS_SPI,
9988 .manufacture_id = ST_ID,
9989 .model_id = ST_N25Q032__1E,
9990 .total_size = 4096,
9991 .page_size = 256,
9992 /* supports SFDP */
9993 /* OTP: 64B total; read 0x4B, write 0x42 */
9994 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9995 .tested = TEST_UNTESTED,
9996 .probe = probe_spi_rdid,
9997 .probe_timing = TIMING_ZERO,
9998 .block_erasers =
9999 {
10000 {
10001 .eraseblocks = { {4 * 1024, 1024} },
10002 .block_erase = spi_block_erase_20,
10003 }, {
10004 .eraseblocks = { {64 * 1024, 64} },
10005 .block_erase = spi_block_erase_d8,
10006 }, {
10007 .eraseblocks = { {4 * 1024 * 1024, 1} },
10008 .block_erase = spi_block_erase_c7,
10009 }
10010 },
10011 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10012 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10013 .write = spi_chip_write_256, /* Multi I/O supported */
10014 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10015 .voltage = {1700, 2000},
10016 },
10017
10018 {
10019 .vendor = "Micron/Numonyx/ST",
10020 .name = "N25Q032..3E",
10021 .bustype = BUS_SPI,
10022 .manufacture_id = ST_ID,
10023 .model_id = ST_N25Q032__3E,
10024 .total_size = 4096,
10025 .page_size = 256,
10026 /* supports SFDP */
10027 /* OTP: 64B total; read 0x4B, write 0x42 */
10028 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10029 .tested = TEST_OK_PREW,
10030 .probe = probe_spi_rdid,
10031 .probe_timing = TIMING_ZERO,
10032 .block_erasers =
10033 {
10034 {
10035 .eraseblocks = { {4 * 1024, 1024} },
10036 .block_erase = spi_block_erase_20,
10037 }, {
10038 .eraseblocks = { {64 * 1024, 64} },
10039 .block_erase = spi_block_erase_d8,
10040 }, {
10041 .eraseblocks = { {4 * 1024 * 1024, 1} },
10042 .block_erase = spi_block_erase_c7,
10043 }
10044 },
10045 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10046 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10047 .write = spi_chip_write_256, /* Multi I/O supported */
10048 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10049 .voltage = {2700, 3600},
10050 },
10051
10052 {
10053 .vendor = "Micron/Numonyx/ST",
10054 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
10055 .bustype = BUS_SPI,
10056 .manufacture_id = ST_ID,
10057 .model_id = ST_N25Q064__1E,
10058 .total_size = 8192,
10059 .page_size = 256,
10060 /* supports SFDP */
10061 /* OTP: 64B total; read 0x4B, write 0x42 */
10062 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010063 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010064 .probe = probe_spi_rdid,
10065 .probe_timing = TIMING_ZERO,
10066 .block_erasers =
10067 {
10068 {
10069 .eraseblocks = { {4 * 1024, 2048 } },
10070 .block_erase = spi_block_erase_20,
10071 }, {
10072 .eraseblocks = { {64 * 1024, 128} },
10073 .block_erase = spi_block_erase_d8,
10074 }, {
10075 .eraseblocks = { {8 * 1024 * 1024, 1} },
10076 .block_erase = spi_block_erase_c7,
10077 }
10078 },
10079 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10080 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10081 .write = spi_chip_write_256, /* Multi I/O supported */
10082 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10083 .voltage = {1700, 2000},
10084 },
10085
10086 {
10087 .vendor = "Micron/Numonyx/ST",
10088 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10089 .bustype = BUS_SPI,
10090 .manufacture_id = ST_ID,
10091 .model_id = ST_N25Q064__3E,
10092 .total_size = 8192,
10093 .page_size = 256,
10094 /* supports SFDP */
10095 /* OTP: 64B total; read 0x4B, write 0x42 */
10096 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10097 .tested = TEST_OK_PREW,
10098 .probe = probe_spi_rdid,
10099 .probe_timing = TIMING_ZERO,
10100 .block_erasers =
10101 {
10102 {
10103 .eraseblocks = { {4 * 1024, 2048 } },
10104 .block_erase = spi_block_erase_20,
10105 }, {
10106 .eraseblocks = { {64 * 1024, 128} },
10107 .block_erase = spi_block_erase_d8,
10108 }, {
10109 .eraseblocks = { {8 * 1024 * 1024, 1} },
10110 .block_erase = spi_block_erase_c7,
10111 }
10112 },
10113 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10114 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10115 .write = spi_chip_write_256, /* Multi I/O supported */
10116 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10117 .voltage = {2700, 3600},
10118 },
10119
10120 {
10121 .vendor = "Micron/Numonyx/ST",
10122 .name = "N25Q128..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
10123 .bustype = BUS_SPI,
10124 .manufacture_id = ST_ID,
10125 .model_id = ST_N25Q128__1E,
10126 .total_size = 16384,
10127 .page_size = 256,
10128 /* supports SFDP */
10129 /* OTP: 64B total; read 0x4B, write 0x42 */
10130 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000010131 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010132 .probe = probe_spi_rdid,
10133 .probe_timing = TIMING_ZERO,
10134 .block_erasers = {
10135 {
10136 .eraseblocks = { {4 * 1024, 4096 } },
10137 .block_erase = spi_block_erase_20,
10138 }, {
10139 .eraseblocks = { {64 * 1024, 256} },
10140 .block_erase = spi_block_erase_d8,
10141 }, {
10142 .eraseblocks = { {16384 * 1024, 1} },
10143 .block_erase = spi_block_erase_c7,
10144 }
10145 },
10146 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10147 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10148 .write = spi_chip_write_256, /* Multi I/O supported */
10149 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10150 .voltage = {1700, 2000},
10151 },
10152
10153 {
10154 .vendor = "Micron/Numonyx/ST",
10155 .name = "N25Q128..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10156 .bustype = BUS_SPI,
10157 .manufacture_id = ST_ID,
10158 .model_id = ST_N25Q128__3E,
10159 .total_size = 16384,
10160 .page_size = 256,
10161 /* supports SFDP */
10162 /* OTP: 64B total; read 0x4B, write 0x42 */
10163 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10164 .tested = TEST_OK_PREW,
10165 .probe = probe_spi_rdid,
10166 .probe_timing = TIMING_ZERO,
10167 .block_erasers = {
10168 {
10169 .eraseblocks = { {4 * 1024, 4096 } },
10170 .block_erase = spi_block_erase_20,
10171 }, {
10172 .eraseblocks = { {64 * 1024, 256} },
10173 .block_erase = spi_block_erase_d8,
10174 }, {
10175 .eraseblocks = { {16384 * 1024, 1} },
10176 .block_erase = spi_block_erase_c7,
10177 }
10178 },
10179 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10180 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10181 .write = spi_chip_write_256, /* Multi I/O supported */
10182 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10183 .voltage = {2700, 3600},
10184 },
10185
10186 {
Ed Swierk199ab392017-07-03 13:33:44 -070010187 .vendor = "Micron",
10188 .name = "N25Q256..3E/MT25QL256", /* ..3E/L = 3V, uniform 64KB/4KB blocks/sectors */
10189 .bustype = BUS_SPI,
10190 .manufacture_id = ST_ID,
10191 .model_id = ST_N25Q256__3E,
10192 .total_size = 32768,
10193 .page_size = 256,
10194 /* supports SFDP */
10195 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010196 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10197 .tested = TEST_UNTESTED,
Ed Swierk199ab392017-07-03 13:33:44 -070010198 .probe = probe_spi_rdid,
10199 .probe_timing = TIMING_ZERO,
10200 .block_erasers = {
10201 {
10202 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010203 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010204 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010205 .eraseblocks = { {4 * 1024, 8192} },
10206 .block_erase = spi_block_erase_20,
10207 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010208 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010209 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010210 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010211 .eraseblocks = { {64 * 1024, 512} },
10212 .block_erase = spi_block_erase_d8,
10213 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010214 .eraseblocks = { {32768 * 1024, 1} },
10215 .block_erase = spi_block_erase_c7,
10216 }
10217 },
10218 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10219 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10220 .write = spi_chip_write_256, /* Multi I/O supported */
10221 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10222 .voltage = {2700, 3600},
10223 },
10224
10225 {
10226 .vendor = "Micron",
10227 .name = "N25Q512..3E/MT25QL512", /* ..3E/L = 3V, uniform 64KB/4KB blocks/sectors */
10228 .bustype = BUS_SPI,
10229 .manufacture_id = ST_ID,
10230 .model_id = ST_N25Q512__3E,
10231 .total_size = 65536,
10232 .page_size = 256,
10233 /* supports SFDP */
10234 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010235 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10236 .tested = TEST_UNTESTED,
Ed Swierk199ab392017-07-03 13:33:44 -070010237 .probe = probe_spi_rdid,
10238 .probe_timing = TIMING_ZERO,
10239 .block_erasers = {
10240 {
10241 .eraseblocks = { {4 * 1024, 16384} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010242 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010243 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010244 .eraseblocks = { {4 * 1024, 16384} },
10245 .block_erase = spi_block_erase_20,
10246 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010247 .eraseblocks = { {64 * 1024, 1024} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010248 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010249 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010250 .eraseblocks = { {64 * 1024, 1024} },
10251 .block_erase = spi_block_erase_d8,
10252 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010253 .eraseblocks = { {65536 * 1024, 1} },
10254 .block_erase = spi_block_erase_c7,
10255 }
10256 },
10257 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10258 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10259 .write = spi_chip_write_256, /* Multi I/O supported */
10260 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10261 .voltage = {2700, 3600},
10262 },
10263
10264 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010265 .vendor = "MoselVitelic",
10266 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010267 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010268 .manufacture_id = SYNCMOS_MVC_ID,
10269 .model_id = MVC_V29C51000B,
10270 .total_size = 64,
10271 .page_size = 512,
10272 .feature_bits = FEATURE_EITHER_RESET,
10273 .tested = TEST_UNTESTED,
10274 .probe = probe_jedec,
10275 .probe_timing = TIMING_ZERO,
10276 .block_erasers =
10277 {
10278 {
10279 .eraseblocks = { {512, 128} },
10280 .block_erase = erase_sector_jedec,
10281 }, {
10282 .eraseblocks = { {64 * 1024, 1} },
10283 .block_erase = erase_chip_block_jedec,
10284 },
10285 },
10286 .write = write_jedec_1,
10287 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010288 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010289 },
10290
10291 {
10292 .vendor = "MoselVitelic",
10293 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010294 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010295 .manufacture_id = SYNCMOS_MVC_ID,
10296 .model_id = MVC_V29C51000T,
10297 .total_size = 64,
10298 .page_size = 512,
10299 .feature_bits = FEATURE_EITHER_RESET,
10300 .tested = TEST_UNTESTED,
10301 .probe = probe_jedec,
10302 .probe_timing = TIMING_ZERO,
10303 .block_erasers =
10304 {
10305 {
10306 .eraseblocks = { {512, 128} },
10307 .block_erase = erase_sector_jedec,
10308 }, {
10309 .eraseblocks = { {64 * 1024, 1} },
10310 .block_erase = erase_chip_block_jedec,
10311 },
10312 },
10313 .write = write_jedec_1,
10314 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010315 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010316 },
10317
10318 {
10319 .vendor = "MoselVitelic",
10320 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010321 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010322 .manufacture_id = SYNCMOS_MVC_ID,
10323 .model_id = MVC_V29C51400B,
10324 .total_size = 512,
10325 .page_size = 1024,
10326 .feature_bits = FEATURE_EITHER_RESET,
10327 .tested = TEST_UNTESTED,
10328 .probe = probe_jedec,
10329 .probe_timing = TIMING_ZERO,
10330 .block_erasers =
10331 {
10332 {
10333 .eraseblocks = { {1024, 512} },
10334 .block_erase = erase_sector_jedec,
10335 }, {
10336 .eraseblocks = { {512 * 1024, 1} },
10337 .block_erase = erase_chip_block_jedec,
10338 },
10339 },
10340 .write = write_jedec_1,
10341 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010342 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010343 },
10344
10345 {
10346 .vendor = "MoselVitelic",
10347 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010348 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010349 .manufacture_id = SYNCMOS_MVC_ID,
10350 .model_id = MVC_V29C51400T,
10351 .total_size = 512,
10352 .page_size = 1024,
10353 .feature_bits = FEATURE_EITHER_RESET,
10354 .tested = TEST_UNTESTED,
10355 .probe = probe_jedec,
10356 .probe_timing = TIMING_ZERO,
10357 .block_erasers =
10358 {
10359 {
10360 .eraseblocks = { {1024, 512} },
10361 .block_erase = erase_sector_jedec,
10362 }, {
10363 .eraseblocks = { {512 * 1024, 1} },
10364 .block_erase = erase_chip_block_jedec,
10365 },
10366 },
10367 .write = write_jedec_1,
10368 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010369 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010370 },
10371
10372 {
10373 .vendor = "MoselVitelic",
10374 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010375 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010376 .manufacture_id = SYNCMOS_MVC_ID,
10377 .model_id = MVC_V29LC51000,
10378 .total_size = 64,
10379 .page_size = 512,
10380 .feature_bits = FEATURE_EITHER_RESET,
10381 .tested = TEST_UNTESTED,
10382 .probe = probe_jedec,
10383 .probe_timing = TIMING_ZERO,
10384 .block_erasers =
10385 {
10386 {
10387 .eraseblocks = { {512, 128} },
10388 .block_erase = erase_sector_jedec,
10389 }, {
10390 .eraseblocks = { {64 * 1024, 1} },
10391 .block_erase = erase_chip_block_jedec,
10392 },
10393 },
10394 .write = write_jedec_1,
10395 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010396 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010397 },
10398
10399 {
10400 .vendor = "MoselVitelic",
10401 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010402 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010403 .manufacture_id = SYNCMOS_MVC_ID,
10404 .model_id = MVC_V29LC51001,
10405 .total_size = 128,
10406 .page_size = 512,
10407 .feature_bits = FEATURE_EITHER_RESET,
10408 .tested = TEST_UNTESTED,
10409 .probe = probe_jedec,
10410 .probe_timing = TIMING_ZERO,
10411 .block_erasers =
10412 {
10413 {
10414 .eraseblocks = { {512, 256} },
10415 .block_erase = erase_sector_jedec,
10416 }, {
10417 .eraseblocks = { {128 * 1024, 1} },
10418 .block_erase = erase_chip_block_jedec,
10419 },
10420 },
10421 .write = write_jedec_1,
10422 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010423 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010424 },
10425
10426 {
10427 .vendor = "MoselVitelic",
10428 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010429 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010430 .manufacture_id = SYNCMOS_MVC_ID,
10431 .model_id = MVC_V29LC51002,
10432 .total_size = 256,
10433 .page_size = 512,
10434 .feature_bits = FEATURE_EITHER_RESET,
10435 .tested = TEST_UNTESTED,
10436 .probe = probe_jedec,
10437 .probe_timing = TIMING_ZERO,
10438 .block_erasers =
10439 {
10440 {
10441 .eraseblocks = { {512, 512} },
10442 .block_erase = erase_sector_jedec,
10443 }, {
10444 .eraseblocks = { {256 * 1024, 1} },
10445 .block_erase = erase_chip_block_jedec,
10446 },
10447 },
10448 .write = write_jedec_1,
10449 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010450 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010451 },
10452
10453 {
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010454 .vendor = "Nantronics",
10455 .name = "N25S10",
10456 .bustype = BUS_SPI,
10457 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10458 .model_id = NANTRONICS_N25S10,
10459 .total_size = 128,
10460 .page_size = 256,
10461 .feature_bits = FEATURE_WRSR_WREN,
10462 .tested = TEST_UNTESTED,
10463 .probe = probe_spi_rdid,
10464 .probe_timing = TIMING_ZERO,
10465 .block_erasers =
10466 {
10467 {
10468 .eraseblocks = { {4 * 1024, 32} },
10469 .block_erase = spi_block_erase_20,
10470 }, {
10471 .eraseblocks = { {4 * 1024, 32} },
10472 .block_erase = spi_block_erase_d7,
10473 }, {
10474 .eraseblocks = { {32 * 1024, 4} },
10475 .block_erase = spi_block_erase_52,
10476 }, {
10477 .eraseblocks = { {64 * 1024, 2} },
10478 .block_erase = spi_block_erase_d8,
10479 }, {
10480 .eraseblocks = { {128 * 1024, 1} },
10481 .block_erase = spi_block_erase_60,
10482 }, {
10483 .eraseblocks = { {128 * 1024, 1} },
10484 .block_erase = spi_block_erase_c7,
10485 }
10486 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010487 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010488 .unlock = spi_disable_blockprotect_bp3_srwd,
10489 .write = spi_chip_write_256,
10490 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10491 .voltage = {2700, 3600},
10492 },
10493
10494 {
10495 .vendor = "Nantronics",
10496 .name = "N25S20",
10497 .bustype = BUS_SPI,
10498 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10499 .model_id = NANTRONICS_N25S20,
10500 .total_size = 256,
10501 .page_size = 256,
10502 .feature_bits = FEATURE_WRSR_WREN,
10503 .tested = TEST_UNTESTED,
10504 .probe = probe_spi_rdid,
10505 .probe_timing = TIMING_ZERO,
10506 .block_erasers =
10507 {
10508 {
10509 .eraseblocks = { {4 * 1024, 64} },
10510 .block_erase = spi_block_erase_20,
10511 }, {
10512 .eraseblocks = { {4 * 1024, 64} },
10513 .block_erase = spi_block_erase_d7,
10514 }, {
10515 .eraseblocks = { {32 * 1024, 8} },
10516 .block_erase = spi_block_erase_52,
10517 }, {
10518 .eraseblocks = { {64 * 1024, 4} },
10519 .block_erase = spi_block_erase_d8,
10520 }, {
10521 .eraseblocks = { {256 * 1024, 1} },
10522 .block_erase = spi_block_erase_60,
10523 }, {
10524 .eraseblocks = { {256 * 1024, 1} },
10525 .block_erase = spi_block_erase_c7,
10526 }
10527 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010528 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010529 .unlock = spi_disable_blockprotect_bp3_srwd,
10530 .write = spi_chip_write_256,
10531 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10532 .voltage = {2700, 3600},
10533 },
10534
10535 {
10536 .vendor = "Nantronics",
10537 .name = "N25S40",
10538 .bustype = BUS_SPI,
10539 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10540 .model_id = NANTRONICS_N25S40,
10541 .total_size = 512,
10542 .page_size = 256,
10543 .feature_bits = FEATURE_WRSR_WREN,
10544 .tested = TEST_UNTESTED,
10545 .probe = probe_spi_rdid,
10546 .probe_timing = TIMING_ZERO,
10547 .block_erasers =
10548 {
10549 {
10550 .eraseblocks = { {4 * 1024, 128} },
10551 .block_erase = spi_block_erase_20,
10552 }, {
10553 .eraseblocks = { {4 * 1024, 128} },
10554 .block_erase = spi_block_erase_d7,
10555 }, {
10556 .eraseblocks = { {32 * 1024, 16} },
10557 .block_erase = spi_block_erase_52,
10558 }, {
10559 .eraseblocks = { {64 * 1024, 8} },
10560 .block_erase = spi_block_erase_d8,
10561 }, {
10562 .eraseblocks = { {512 * 1024, 1} },
10563 .block_erase = spi_block_erase_60,
10564 }, {
10565 .eraseblocks = { {512 * 1024, 1} },
10566 .block_erase = spi_block_erase_c7,
10567 }
10568 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010569 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010570 .unlock = spi_disable_blockprotect_bp3_srwd,
10571 .write = spi_chip_write_256,
10572 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10573 .voltage = {2700, 3600},
10574 },
10575
10576 {
10577 .vendor = "Nantronics",
10578 .name = "N25S80",
10579 .bustype = BUS_SPI,
10580 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10581 .model_id = NANTRONICS_N25S80,
10582 .total_size = 1024,
10583 .page_size = 256,
10584 .feature_bits = FEATURE_WRSR_WREN,
10585 .tested = TEST_UNTESTED,
10586 .probe = probe_spi_rdid,
10587 .probe_timing = TIMING_ZERO,
10588 .block_erasers =
10589 {
10590 {
10591 .eraseblocks = { {4 * 1024, 256} },
10592 .block_erase = spi_block_erase_20,
10593 }, {
10594 .eraseblocks = { {32 * 1024, 32} },
10595 .block_erase = spi_block_erase_52,
10596 }, {
10597 .eraseblocks = { {64 * 1024, 16} },
10598 .block_erase = spi_block_erase_d8,
10599 }, {
10600 .eraseblocks = { {1024 * 1024, 1} },
10601 .block_erase = spi_block_erase_60,
10602 }, {
10603 .eraseblocks = { {1024 * 1024, 1} },
10604 .block_erase = spi_block_erase_c7,
10605 }
10606 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010607 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010608 .unlock = spi_disable_blockprotect_bp3_srwd,
10609 .write = spi_chip_write_256,
10610 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10611 .voltage = {2700, 3600},
10612 },
10613
10614 {
10615 .vendor = "Nantronics",
10616 .name = "N25S16",
10617 .bustype = BUS_SPI,
10618 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10619 .model_id = NANTRONICS_N25S16,
10620 .total_size = 2048,
10621 .page_size = 256,
10622 .feature_bits = FEATURE_WRSR_WREN,
10623 .tested = TEST_UNTESTED,
10624 .probe = probe_spi_rdid,
10625 .probe_timing = TIMING_ZERO,
10626 .block_erasers =
10627 {
10628 {
10629 .eraseblocks = { {4 * 1024, 512} },
10630 .block_erase = spi_block_erase_20,
10631 }, {
10632 .eraseblocks = { {64 * 1024, 32} },
10633 .block_erase = spi_block_erase_d8,
10634 }, {
10635 .eraseblocks = { {2048 * 1024, 1} },
10636 .block_erase = spi_block_erase_60,
10637 }, {
10638 .eraseblocks = { {2048 * 1024, 1} },
10639 .block_erase = spi_block_erase_c7,
10640 }
10641 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010642 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010643 .unlock = spi_disable_blockprotect_bp3_srwd,
10644 .write = spi_chip_write_256,
10645 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10646 .voltage = {2700, 3600},
10647 },
10648
10649 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010650 .vendor = "PMC",
Stefan Taunerf4451612013-04-19 01:59:15 +000010651 .name = "Pm25LD256C",
10652 .bustype = BUS_SPI,
10653 .manufacture_id = PMC_ID,
10654 .model_id = PMC_PM25LD256C,
10655 .total_size = 32,
10656 .page_size = 256,
10657 .feature_bits = FEATURE_WRSR_WREN,
10658 .tested = TEST_UNTESTED,
10659 .probe = probe_spi_rdid,
10660 .probe_timing = TIMING_ZERO,
10661 .block_erasers =
10662 {
10663 {
10664 .eraseblocks = { {4 * 1024, 8} },
10665 .block_erase = spi_block_erase_20,
10666 }, {
10667 .eraseblocks = { {4 * 1024, 8} },
10668 .block_erase = spi_block_erase_d7,
10669 }, {
10670 .eraseblocks = { {32 * 1024, 1} },
10671 .block_erase = spi_block_erase_d8,
10672 }, {
10673 .eraseblocks = { {32 * 1024, 1} },
10674 .block_erase = spi_block_erase_60,
10675 }, {
10676 .eraseblocks = { {32 * 1024, 1} },
10677 .block_erase = spi_block_erase_c7,
10678 }
10679 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010680 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010681 .unlock = spi_disable_blockprotect,
10682 .write = spi_chip_write_256,
10683 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10684 .voltage = {2700, 3600},
10685 },
10686 {
10687 .vendor = "PMC",
10688 .name = "Pm25LD512(C)",
10689 .bustype = BUS_SPI,
10690 .manufacture_id = PMC_ID,
10691 .model_id = PMC_PM25LD512,
10692 .total_size = 64,
10693 .page_size = 256,
10694 .feature_bits = FEATURE_WRSR_WREN,
10695 .tested = TEST_OK_PREW,
10696 .probe = probe_spi_rdid,
10697 .probe_timing = TIMING_ZERO,
10698 .block_erasers =
10699 {
10700 {
10701 .eraseblocks = { {4 * 1024, 16} },
10702 .block_erase = spi_block_erase_20,
10703 }, {
10704 .eraseblocks = { {4 * 1024, 16} },
10705 .block_erase = spi_block_erase_d7,
10706 }, {
10707 .eraseblocks = { {32 * 1024, 2} },
10708 .block_erase = spi_block_erase_d8,
10709 }, {
10710 .eraseblocks = { {64 * 1024, 1} },
10711 .block_erase = spi_block_erase_60,
10712 }, {
10713 .eraseblocks = { {64 * 1024, 1} },
10714 .block_erase = spi_block_erase_c7,
10715 }
10716 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010717 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010718 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10719 .write = spi_chip_write_256,
10720 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10721 .voltage = {2300, 3600},
10722 },
10723
10724 {
10725 .vendor = "PMC",
10726 .name = "Pm25LD010(C)",
10727 .bustype = BUS_SPI,
10728 .manufacture_id = PMC_ID,
10729 .model_id = PMC_PM25LD010,
10730 .total_size = 128,
10731 .page_size = 256,
10732 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010733 .tested = TEST_OK_PREW,
Stefan Taunerf4451612013-04-19 01:59:15 +000010734 .probe = probe_spi_rdid,
10735 .probe_timing = TIMING_ZERO,
10736 .block_erasers =
10737 {
10738 {
10739 .eraseblocks = { {4 * 1024, 32} },
10740 .block_erase = spi_block_erase_20,
10741 }, {
10742 .eraseblocks = { {4 * 1024, 32} },
10743 .block_erase = spi_block_erase_d7,
10744 }, {
10745 .eraseblocks = { {32 * 1024, 4} },
10746 .block_erase = spi_block_erase_d8,
10747 }, {
10748 .eraseblocks = { {128 * 1024, 1} },
10749 .block_erase = spi_block_erase_60,
10750 }, {
10751 .eraseblocks = { {128 * 1024, 1} },
10752 .block_erase = spi_block_erase_c7,
10753 }
10754 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010755 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010756 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10757 .write = spi_chip_write_256,
10758 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10759 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
10760 },
10761
10762 {
10763 .vendor = "PMC",
10764 .name = "Pm25LD020(C)",
10765 .bustype = BUS_SPI,
10766 .manufacture_id = PMC_ID,
10767 .model_id = PMC_PM25LD020,
10768 .total_size = 256,
10769 .page_size = 256,
10770 .feature_bits = FEATURE_WRSR_WREN,
10771 .tested = TEST_UNTESTED,
10772 .probe = probe_spi_rdid,
10773 .probe_timing = TIMING_ZERO,
10774 .block_erasers =
10775 {
10776 {
10777 .eraseblocks = { {4 * 1024, 64} },
10778 .block_erase = spi_block_erase_20,
10779 }, {
10780 .eraseblocks = { {4 * 1024, 64} },
10781 .block_erase = spi_block_erase_d7,
10782 }, {
10783 .eraseblocks = { {64 * 1024, 4} },
10784 .block_erase = spi_block_erase_d8,
10785 }, {
10786 .eraseblocks = { {256 * 1024, 1} },
10787 .block_erase = spi_block_erase_60,
10788 }, {
10789 .eraseblocks = { {256 * 1024, 1} },
10790 .block_erase = spi_block_erase_c7,
10791 }
10792 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010793 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010794 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10795 .write = spi_chip_write_256,
10796 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10797 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
10798 },
10799
10800 {
10801 .vendor = "PMC",
10802 .name = "Pm25LD040(C)",
10803 .bustype = BUS_SPI,
10804 .manufacture_id = PMC_ID,
10805 .model_id = PMC_PM25LV040,
10806 .total_size = 512,
10807 .page_size = 256,
10808 .feature_bits = FEATURE_WRSR_WREN,
10809 .tested = TEST_UNTESTED,
10810 .probe = probe_spi_rdid,
10811 .probe_timing = TIMING_ZERO,
10812 .block_erasers =
10813 {
10814 {
10815 .eraseblocks = { {4 * 1024, 128} },
10816 .block_erase = spi_block_erase_20,
10817 }, {
10818 .eraseblocks = { {4 * 1024, 128} },
10819 .block_erase = spi_block_erase_d7,
10820 }, {
10821 .eraseblocks = { {64 * 1024, 8} },
10822 .block_erase = spi_block_erase_d8,
10823 }, {
10824 .eraseblocks = { {512 * 1024, 1} },
10825 .block_erase = spi_block_erase_60,
10826 }, {
10827 .eraseblocks = { {512 * 1024, 1} },
10828 .block_erase = spi_block_erase_c7,
10829 }
10830 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010831 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010832 .unlock = spi_disable_blockprotect,
10833 .write = spi_chip_write_256,
10834 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10835 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
10836 },
10837
Steven Honeyman81a8fb72015-06-02 22:32:24 +000010838 {
10839 .vendor = "PMC",
10840 .name = "Pm25LQ020",
10841 .bustype = BUS_SPI,
10842 .manufacture_id = PMC_ID,
10843 .model_id = PMC_PM25LQ020,
10844 .total_size = 256,
10845 .page_size = 256,
10846 /* OTP: 256B total; read 0x4B, write 0xB1 */
10847 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10848 .tested = TEST_UNTESTED,
10849 .probe = probe_spi_rdid,
10850 .probe_timing = TIMING_ZERO,
10851 .block_erasers =
10852 {
10853 {
10854 .eraseblocks = { {4 * 1024, 64} },
10855 .block_erase = spi_block_erase_20,
10856 }, {
10857 .eraseblocks = { {4 * 1024, 64} },
10858 .block_erase = spi_block_erase_d7,
10859 }, {
10860 .eraseblocks = { {64 * 1024, 4} },
10861 .block_erase = spi_block_erase_d8,
10862 }, {
10863 .eraseblocks = { {256 * 1024, 1} },
10864 .block_erase = spi_block_erase_60,
10865 }, {
10866 .eraseblocks = { {256 * 1024, 1} },
10867 .block_erase = spi_block_erase_c7,
10868 }
10869 },
10870 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10871 .unlock = spi_disable_blockprotect_bp3_srwd,
10872 .write = spi_chip_write_256,
10873 .read = spi_chip_read,
10874 .voltage = {2300, 3600},
10875 },
10876
10877 {
10878 .vendor = "PMC",
10879 .name = "Pm25LQ040",
10880 .bustype = BUS_SPI,
10881 .manufacture_id = PMC_ID,
10882 .model_id = PMC_PM25LQ040,
10883 .total_size = 512,
10884 .page_size = 256,
10885 /* OTP: 256B total; read 0x4B, write 0xB1 */
10886 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10887 .tested = TEST_UNTESTED,
10888 .probe = probe_spi_rdid,
10889 .probe_timing = TIMING_ZERO,
10890 .block_erasers =
10891 {
10892 {
10893 .eraseblocks = { {4 * 1024, 128} },
10894 .block_erase = spi_block_erase_20,
10895 }, {
10896 .eraseblocks = { {4 * 1024, 128} },
10897 .block_erase = spi_block_erase_d7,
10898 }, {
10899 .eraseblocks = { {64 * 1024, 8} },
10900 .block_erase = spi_block_erase_d8,
10901 }, {
10902 .eraseblocks = { {512 * 1024, 1} },
10903 .block_erase = spi_block_erase_60,
10904 }, {
10905 .eraseblocks = { {512 * 1024, 1} },
10906 .block_erase = spi_block_erase_c7,
10907 }
10908 },
10909 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10910 .unlock = spi_disable_blockprotect_bp3_srwd,
10911 .write = spi_chip_write_256,
10912 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10913 .voltage = {2300, 3600},
10914 },
10915
10916 {
10917 .vendor = "PMC",
10918 .name = "Pm25LQ080",
10919 .bustype = BUS_SPI,
10920 .manufacture_id = PMC_ID,
10921 .model_id = PMC_PM25LQ080,
10922 .total_size = 1024,
10923 .page_size = 256,
10924 /* OTP: 64B total; read 0x4B, write 0xB1 */
10925 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10926 .tested = TEST_UNTESTED,
10927 .probe = probe_spi_rdid,
10928 .probe_timing = TIMING_ZERO,
10929 .block_erasers =
10930 {
10931 {
10932 .eraseblocks = { {4 * 1024, 256} },
10933 .block_erase = spi_block_erase_20,
10934 }, {
10935 .eraseblocks = { {4 * 1024, 256} },
10936 .block_erase = spi_block_erase_d7,
10937 }, {
10938 .eraseblocks = { {64 * 1024, 16} },
10939 .block_erase = spi_block_erase_d8,
10940 }, {
10941 .eraseblocks = { {1024 * 1024, 1} },
10942 .block_erase = spi_block_erase_60,
10943 }, {
10944 .eraseblocks = { {1024 * 1024, 1} },
10945 .block_erase = spi_block_erase_c7,
10946 }
10947 },
10948 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10949 .unlock = spi_disable_blockprotect_bp3_srwd,
10950 .write = spi_chip_write_256,
10951 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10952 .voltage = {2300, 3600},
10953 },
10954
10955 {
10956 .vendor = "PMC",
10957 .name = "Pm25LQ016",
10958 .bustype = BUS_SPI,
10959 .manufacture_id = PMC_ID,
10960 .model_id = PMC_PM25LQ016,
10961 .total_size = 2048,
10962 .page_size = 256,
10963 /* OTP: 256B total; read 0x4B, write 0xB1 */
10964 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10965 .tested = TEST_UNTESTED,
10966 .probe = probe_spi_rdid,
10967 .probe_timing = TIMING_ZERO,
10968 .block_erasers =
10969 {
10970 {
10971 .eraseblocks = { {4 * 1024, 512} },
10972 .block_erase = spi_block_erase_20,
10973 }, {
10974 .eraseblocks = { {4 * 1024, 512} },
10975 .block_erase = spi_block_erase_d7,
10976 }, {
10977 .eraseblocks = { {64 * 1024, 32} },
10978 .block_erase = spi_block_erase_d8,
10979 }, {
10980 .eraseblocks = { {2048 * 1024, 1} },
10981 .block_erase = spi_block_erase_60,
10982 }, {
10983 .eraseblocks = { {2048 * 1024, 1} },
10984 .block_erase = spi_block_erase_c7,
10985 }
10986 },
10987 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10988 .unlock = spi_disable_blockprotect_bp3_srwd,
10989 .write = spi_chip_write_256,
10990 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10991 .voltage = {2300, 3600},
10992 },
10993
10994 {
10995 .vendor = "PMC",
10996 .name = "Pm25LQ032C",
10997 .bustype = BUS_SPI,
10998 .manufacture_id = PMC_ID,
10999 .model_id = PMC_PM25LQ032C,
11000 .total_size = 4096,
11001 .page_size = 256,
11002 /* OTP: 64B total; read 0x4B, write 0xB1 */
11003 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011004 .tested = TEST_OK_PREW,
Steven Honeyman81a8fb72015-06-02 22:32:24 +000011005 .probe = probe_spi_rdid,
11006 .probe_timing = TIMING_ZERO,
11007 .block_erasers =
11008 {
11009 {
11010 .eraseblocks = { {4 * 1024, 1024} },
11011 .block_erase = spi_block_erase_20,
11012 }, {
11013 .eraseblocks = { {4 * 1024, 1024} },
11014 .block_erase = spi_block_erase_d7,
11015 }, {
11016 .eraseblocks = { {64 * 1024, 64} },
11017 .block_erase = spi_block_erase_d8,
11018 }, {
11019 .eraseblocks = { {4096 * 1024, 1} },
11020 .block_erase = spi_block_erase_60,
11021 }, {
11022 .eraseblocks = { {4096 * 1024, 1} },
11023 .block_erase = spi_block_erase_c7,
11024 }
11025 },
11026 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
11027 .unlock = spi_disable_blockprotect_bp3_srwd,
11028 .write = spi_chip_write_256,
11029 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
11030 .voltage = {2700, 3600},
11031 },
11032
11033 {
Stefan Taunerf4451612013-04-19 01:59:15 +000011034 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011035 .name = "Pm25LV512(A)",
11036 .bustype = BUS_SPI,
Stefan Taunerbecda742014-05-30 19:34:00 +000011037 .manufacture_id = PMC_ID_NOPREFIX,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011038 .model_id = PMC_PM25LV512,
11039 .total_size = 64,
11040 .page_size = 256,
11041 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +000011042 .tested = TEST_OK_PREW,
Stefan Taunerbecda742014-05-30 19:34:00 +000011043 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011044 .probe_timing = TIMING_ZERO,
11045 .block_erasers =
11046 {
11047 {
11048 .eraseblocks = { {4 * 1024, 16} },
11049 .block_erase = spi_block_erase_d7,
11050 }, {
11051 .eraseblocks = { {32 * 1024, 2} },
11052 .block_erase = spi_block_erase_d8,
11053 }, {
11054 .eraseblocks = { {64 * 1024, 1} },
11055 .block_erase = spi_block_erase_c7,
11056 }
11057 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011058 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011059 .unlock = spi_disable_blockprotect,
11060 .write = spi_chip_write_256,
11061 .read = spi_chip_read, /* Fast read (0x0B) supported */
11062 .voltage = {2700, 3600},
11063 },
11064
11065 {
11066 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011067 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011068 .bustype = BUS_SPI,
Stefan Taunerbecda742014-05-30 19:34:00 +000011069 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011070 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011071 .total_size = 128,
11072 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011073 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerbecda742014-05-30 19:34:00 +000011074 .tested = TEST_OK_PREW,
11075 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011076 .probe_timing = TIMING_ZERO,
11077 .block_erasers =
11078 {
11079 {
11080 .eraseblocks = { {4 * 1024, 32} },
11081 .block_erase = spi_block_erase_d7,
11082 }, {
11083 .eraseblocks = { {32 * 1024, 4} },
11084 .block_erase = spi_block_erase_d8,
11085 }, {
11086 .eraseblocks = { {128 * 1024, 1} },
11087 .block_erase = spi_block_erase_c7,
11088 }
11089 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011090 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011091 .unlock = spi_disable_blockprotect,
11092 .write = spi_chip_write_256,
11093 .read = spi_chip_read, /* Fast read (0x0B) supported */
11094 .voltage = {2700, 3600},
11095 },
11096
11097 {
11098 .vendor = "PMC",
11099 .name = "Pm25LV010A",
11100 .bustype = BUS_SPI,
11101 .manufacture_id = PMC_ID,
11102 .model_id = PMC_PM25LV010,
11103 .total_size = 128,
11104 .page_size = 256,
11105 .feature_bits = FEATURE_WRSR_WREN,
11106 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011107 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011108 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011109 .block_erasers =
11110 {
11111 {
11112 .eraseblocks = { {4 * 1024, 32} },
11113 .block_erase = spi_block_erase_d7,
11114 }, {
11115 .eraseblocks = { {32 * 1024, 4} },
11116 .block_erase = spi_block_erase_d8,
11117 }, {
11118 .eraseblocks = { {128 * 1024, 1} },
11119 .block_erase = spi_block_erase_c7,
11120 }
11121 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011122 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011123 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011124 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011125 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011126 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011127 },
11128
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011129 {
11130 .vendor = "PMC",
11131 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011132 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011133 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011134 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011135 .total_size = 256,
11136 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011137 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011138 .tested = TEST_UNTESTED,
11139 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011140 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011141 .block_erasers =
11142 {
11143 {
11144 .eraseblocks = { {4 * 1024, 64} },
11145 .block_erase = spi_block_erase_d7,
11146 }, {
11147 .eraseblocks = { {64 * 1024, 4} },
11148 .block_erase = spi_block_erase_d8,
11149 }, {
11150 .eraseblocks = { {256 * 1024, 1} },
11151 .block_erase = spi_block_erase_c7,
11152 }
11153 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011154 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011155 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011156 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011157 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011158 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011159 },
11160
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011161 {
11162 .vendor = "PMC",
11163 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011164 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011165 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011166 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011167 .total_size = 512,
11168 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011169 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +000011170 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011171 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011172 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011173 .block_erasers =
11174 {
11175 {
11176 .eraseblocks = { {4 * 1024, 128} },
11177 .block_erase = spi_block_erase_d7,
11178 }, {
11179 .eraseblocks = { {64 * 1024, 8} },
11180 .block_erase = spi_block_erase_d8,
11181 }, {
11182 .eraseblocks = { {512 * 1024, 1} },
11183 .block_erase = spi_block_erase_c7,
11184 }
11185 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011186 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011187 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011188 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011189 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011190 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011191 },
11192
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011193 {
11194 .vendor = "PMC",
11195 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011196 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011197 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011198 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011199 .total_size = 1024,
11200 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011201 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011202 .tested = TEST_UNTESTED,
11203 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011204 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011205 .block_erasers =
11206 {
11207 {
11208 .eraseblocks = { {4 * 1024, 256} },
11209 .block_erase = spi_block_erase_d7,
11210 }, {
11211 .eraseblocks = { {4 * 1024, 256} },
11212 .block_erase = spi_block_erase_20,
11213 }, {
11214 .eraseblocks = { {64 * 1024, 16} },
11215 .block_erase = spi_block_erase_d8,
11216 }, {
11217 .eraseblocks = { {1024 * 1024, 1} },
11218 .block_erase = spi_block_erase_60,
11219 }, {
11220 .eraseblocks = { {1024 * 1024, 1} },
11221 .block_erase = spi_block_erase_c7,
11222 }
11223 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011224 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011225 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011226 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011227 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011228 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011229 },
11230
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011231 {
11232 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011233 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011234 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011235 .manufacture_id = PMC_ID,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011236 .model_id = PMC_PM25LV016B,
11237 .total_size = 2048,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011238 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011239 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011240 .tested = TEST_UNTESTED,
11241 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011242 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011243 .block_erasers =
11244 {
11245 {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011246 .eraseblocks = { {4 * 1024, 512} },
Sean Nelson5643c072010-01-19 03:23:07 +000011247 .block_erase = spi_block_erase_d7,
11248 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011249 .eraseblocks = { {4 * 1024, 512} },
11250 .block_erase = spi_block_erase_20,
11251 }, {
11252 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson5643c072010-01-19 03:23:07 +000011253 .block_erase = spi_block_erase_d8,
11254 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011255 .eraseblocks = { {2 * 1024 * 1024, 1} },
11256 .block_erase = spi_block_erase_60,
11257 }, {
11258 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +000011259 .block_erase = spi_block_erase_c7,
11260 }
11261 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011262 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011263 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011264 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011265 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011266 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011267 },
11268
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011269 {
11270 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +000011271 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011272 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011273 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011274 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011275 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +000011276 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011277 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011278 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000011279 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011280 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +000011281 .block_erasers =
11282 {
11283 {
11284 .eraseblocks = {
11285 {128 * 1024, 1},
11286 {96 * 1024, 1},
11287 {8 * 1024, 2},
11288 {16 * 1024, 1},
11289 },
Sean Nelson35727f72010-01-28 23:55:12 +000011290 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011291 }, {
11292 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000011293 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011294 },
11295 },
Sean Nelson35727f72010-01-28 23:55:12 +000011296 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011297 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011298 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011299 },
11300
11301 {
11302 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +000011303 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011304 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011305 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011306 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011307 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +000011308 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011309 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011310 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000011311 .probe = probe_jedec,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000011312 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +000011313 .block_erasers =
11314 {
11315 {
11316 .eraseblocks = {
11317 {16 * 1024, 1},
11318 {8 * 1024, 2},
11319 {96 * 1024, 1},
11320 {128 * 1024, 1},
11321 },
Sean Nelson35727f72010-01-28 23:55:12 +000011322 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011323 }, {
11324 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000011325 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011326 },
11327 },
Sean Nelson35727f72010-01-28 23:55:12 +000011328 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011329 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011330 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011331 },
11332
11333 {
11334 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011335 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011336 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011337 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011338 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011339 .total_size = 128,
11340 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000011341 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011342 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011343 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011344 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +000011345 .block_erasers =
11346 {
11347 {
11348 .eraseblocks = { {4 * 1024, 32} },
11349 .block_erase = erase_sector_jedec,
11350 }, {
11351 .eraseblocks = { {64 * 1024, 2} },
11352 .block_erase = erase_block_jedec,
11353 }, {
11354 .eraseblocks = { {128 * 1024, 1} },
11355 .block_erase = erase_chip_block_jedec,
11356 }
11357 },
Sean Nelson35727f72010-01-28 23:55:12 +000011358 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011359 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011360 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011361 },
11362
11363 {
11364 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011365 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011366 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011367 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011368 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011369 .total_size = 256,
11370 .page_size = 4096,
11371 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11372 .tested = TEST_UNTESTED,
11373 .probe = probe_jedec,
11374 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11375 .block_erasers =
11376 {
11377 {
11378 .eraseblocks = { {4 * 1024, 64} },
11379 .block_erase = erase_sector_jedec,
11380 }, {
11381 .eraseblocks = { {64 * 1024, 4} },
11382 .block_erase = erase_block_jedec,
11383 }, {
11384 .eraseblocks = { {256 * 1024, 1} },
11385 .block_erase = erase_chip_block_jedec,
11386 }
11387 },
11388 .write = write_jedec_1,
11389 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011390 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011391 },
11392
11393 {
11394 .vendor = "PMC",
11395 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011396 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011397 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011398 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011399 .total_size = 512,
11400 .page_size = 4096,
11401 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011402 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011403 .probe = probe_jedec,
11404 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11405 .block_erasers =
11406 {
11407 {
11408 .eraseblocks = { {4 * 1024, 128} },
11409 .block_erase = erase_sector_jedec,
11410 }, {
11411 .eraseblocks = { {64 * 1024, 8} },
11412 .block_erase = erase_block_jedec,
11413 }, {
11414 .eraseblocks = { {512 * 1024, 1} },
11415 .block_erase = erase_chip_block_jedec,
11416 }
11417 },
11418 .write = write_jedec_1,
11419 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011420 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011421 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +000011422
11423 {
11424 .vendor = "PMC",
11425 .name = "Pm39LV512",
11426 .bustype = BUS_PARALLEL,
11427 .manufacture_id = PMC_ID_NOPREFIX,
11428 .model_id = PMC_PM39LV512,
11429 .total_size = 64,
11430 .page_size = 4096,
11431 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11432 .tested = TEST_OK_PREW,
11433 .probe = probe_jedec,
11434 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11435 .block_erasers =
11436 {
11437 {
11438 .eraseblocks = { {4 * 1024, 16} },
11439 .block_erase = erase_sector_jedec,
11440 }, {
11441 .eraseblocks = { {64 * 1024, 1} },
11442 .block_erase = erase_block_jedec,
11443 }, {
11444 .eraseblocks = { {64 * 1024, 1} },
11445 .block_erase = erase_chip_block_jedec,
11446 }
11447 },
11448 .write = write_jedec_1,
11449 .read = read_memmapped,
11450 .voltage = {2700, 3600},
11451 },
11452
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011453 {
11454 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011455 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011456 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011457 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011458 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011459 .total_size = 256,
11460 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011461 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011462 .tested = TEST_OK_PR,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011463 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011464 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +000011465 .block_erasers =
11466 {
11467 {
11468 .eraseblocks = { {4 * 1024, 64} },
11469 .block_erase = erase_sector_jedec,
11470 }, {
11471 .eraseblocks = { {16 * 1024, 16} },
11472 .block_erase = erase_block_jedec,
11473 }, {
11474 .eraseblocks = { {256 * 1024, 1} },
11475 .block_erase = erase_chip_block_jedec,
11476 }
11477 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011478 .unlock = unlock_regspace2_uniform_32k,
Sean Nelson36172342010-02-27 18:01:15 +000011479 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011480 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011481 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011482 },
11483
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011484 {
11485 .vendor = "PMC",
11486 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011487 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011488 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011489 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011490 .total_size = 512,
11491 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011492 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011493 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011494 .probe = probe_jedec,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011495 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011496 .block_erasers =
11497 {
11498 {
11499 .eraseblocks = { {4 * 1024, 128} },
11500 .block_erase = erase_sector_jedec,
11501 }, {
11502 .eraseblocks = { {64 * 1024, 8} },
11503 .block_erase = erase_block_jedec,
11504 }, {
11505 .eraseblocks = { {512 * 1024, 1} },
11506 .block_erase = erase_chip_block_jedec,
11507 }
11508 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011509 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson36172342010-02-27 18:01:15 +000011510 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011511 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011512 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011513 },
11514
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011515 {
Sean Nelsond70b09c2009-11-24 02:11:08 +000011516 .vendor = "Sanyo",
Stefan Taunera60d4082014-06-04 16:17:03 +000011517 .name = "LE25FW106",
11518 .bustype = BUS_SPI,
11519 .manufacture_id = SANYO_ID,
11520 .model_id = SANYO_LE25FW106,
11521 .total_size = 128,
11522 .page_size = 256,
11523 .feature_bits = FEATURE_WRSR_WREN,
11524 .tested = TEST_OK_PREW,
11525 .probe = probe_spi_res2,
11526 .probe_timing = TIMING_ZERO,
11527 .block_erasers = {
11528 {
11529 .eraseblocks = { {2 * 1024, 64} },
11530 .block_erase = spi_block_erase_d7,
11531 }, {
11532 .eraseblocks = { {32 * 1024, 4} },
11533 .block_erase = spi_block_erase_d8,
11534 }, {
11535 .eraseblocks = { {128 * 1024, 1} },
11536 .block_erase = spi_block_erase_c7,
11537 }
11538 },
11539 .printlock = spi_prettyprint_status_register_bp1_srwd, /* FIXME: Add ERSER error flag. */
11540 .unlock = spi_disable_blockprotect_bp1_srwd,
11541 .write = spi_chip_write_256,
11542 .read = spi_chip_read,
11543 .voltage = {2700, 3600},
11544 },
11545
11546 {
11547 .vendor = "Sanyo",
Stefan Tauner33491b82014-05-18 21:36:04 +000011548 .name = "LE25FW406A",
11549 .bustype = BUS_SPI,
11550 .manufacture_id = SANYO_ID,
11551 .model_id = SANYO_LE25FW406A,
11552 .total_size = 512,
11553 .page_size = 256,
11554 .feature_bits = FEATURE_WRSR_WREN,
11555 .tested = TEST_OK_PREW,
11556 .probe = probe_spi_res2,
11557 .probe_timing = TIMING_ZERO,
11558 .block_erasers = {
11559 {
11560 .eraseblocks = { {4 * 1024, 128} },
11561 .block_erase = spi_block_erase_d7,
11562 }, {
11563 .eraseblocks = { {64 * 1024, 8} },
11564 .block_erase = spi_block_erase_d8,
11565 }, {
11566 .eraseblocks = { {512 * 1024, 1} },
11567 .block_erase = spi_block_erase_c7,
11568 }
11569 },
11570 .printlock = spi_prettyprint_status_register_plain,
11571 .unlock = spi_disable_blockprotect,
11572 .write = spi_chip_write_256,
11573 .read = spi_chip_read,
11574 .voltage = {2700, 3600},
11575 },
11576
11577 {
11578 .vendor = "Sanyo",
Jurij Mundaa1e53742014-05-14 13:19:50 +000011579 .name = "LE25FU406B",
11580 .bustype = BUS_SPI,
11581 .manufacture_id = SANYO_ID,
11582 .model_id = SANYO_LE25FU406B,
11583 .total_size = 512,
11584 .page_size = 256,
11585 .feature_bits = FEATURE_WRSR_WREN,
11586 .tested = TEST_OK_PREW,
11587 .probe = probe_spi_res2,
11588 .probe_timing = TIMING_ZERO,
11589 .block_erasers = {
11590 {
11591 .eraseblocks = { {4 * 1024, 128} },
11592 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011593 }, {
Jurij Mundaa1e53742014-05-14 13:19:50 +000011594 .eraseblocks = { {64 * 1024, 8} },
11595 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011596 }, {
Jurij Mundaa1e53742014-05-14 13:19:50 +000011597 .eraseblocks = { {512 * 1024, 1} },
11598 .block_erase = spi_block_erase_c7,
11599 }
11600 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011601 .printlock = spi_prettyprint_status_register_bp2_srwd,
Jurij Mundaa1e53742014-05-14 13:19:50 +000011602 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11603 .write = spi_chip_write_256,
11604 .read = spi_chip_read,
11605 .voltage = {2300, 3600},
11606 },
11607
11608 {
11609 .vendor = "Sanyo",
Stefan Tauner2f055df2015-12-25 22:13:15 +000011610 .name = "LE25FU406C/LE25U40CMC",
11611 .bustype = BUS_SPI,
11612 .manufacture_id = SANYO_ID,
11613 .model_id = SANYO_LE25FU406C,
11614 .total_size = 512,
11615 .page_size = 256,
11616 .feature_bits = FEATURE_WRSR_WREN,
11617 .tested = TEST_OK_PR,
11618 .probe = probe_spi_rdid,
11619 .probe_timing = TIMING_ZERO,
11620 .block_erasers = {
11621 {
11622 .eraseblocks = { {4 * 1024, 128} },
11623 .block_erase = spi_block_erase_20,
11624 }, {
11625 .eraseblocks = { {4 * 1024, 128} },
11626 .block_erase = spi_block_erase_d7,
11627 }, {
11628 .eraseblocks = { {64 * 1024, 8} },
11629 .block_erase = spi_block_erase_d8,
11630 }, {
11631 .eraseblocks = { {512 * 1024, 1} },
11632 .block_erase = spi_block_erase_60,
11633 }, {
11634 .eraseblocks = { {512 * 1024, 1} },
11635 .block_erase = spi_block_erase_c7,
11636 }
11637 },
11638 .printlock = spi_prettyprint_status_register_bp2_srwd,
11639 .unlock = spi_disable_blockprotect_bp2_srwd,
11640 .write = spi_chip_write_256,
11641 .read = spi_chip_read, /* Fast read (0x0B), dual read (0x3B) and dual I/O (0xBB) supported */
11642 .voltage = {2300, 3600},
11643 },
11644
11645 {
11646 .vendor = "Sanyo",
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011647 .name = "LE25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011648 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +000011649 .manufacture_id = SANYO_ID,
11650 .model_id = SANYO_LE25FW203A,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011651 .total_size = 256,
Sean Nelsond70b09c2009-11-24 02:11:08 +000011652 .page_size = 256,
11653 .tested = TEST_UNTESTED,
11654 .probe = probe_spi_rdid,
11655 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011656 .block_erasers =
11657 {
11658 {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011659 .eraseblocks = { {256, 1024} },
11660 .block_erase = spi_block_erase_db,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011661 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011662 .eraseblocks = { {64 * 1024, 4} },
Sean Nelson5643c072010-01-19 03:23:07 +000011663 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011664 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011665 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +000011666 .block_erase = spi_block_erase_c7,
11667 }
11668 },
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011669 .printlock = spi_prettyprint_status_register_default_welwip,
11670 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Sean Nelsond70b09c2009-11-24 02:11:08 +000011671 .write = spi_chip_write_256,
11672 .read = spi_chip_read,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011673 .voltage = {2700, 3600},
11674 },
11675
11676 {
11677 .vendor = "Sanyo",
11678 .name = "LE25FW403A",
11679 .bustype = BUS_SPI,
11680 .manufacture_id = SANYO_ID,
11681 .model_id = SANYO_LE25FW403A,
11682 .total_size = 512,
11683 .page_size = 256,
11684 .tested = TEST_UNTESTED,
11685 .probe = probe_spi_rdid,
11686 .probe_timing = TIMING_ZERO,
11687 .block_erasers = {
11688 {
11689 .eraseblocks = { {256, 2 * 1024} },
11690 .block_erase = spi_block_erase_db,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011691 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011692 .eraseblocks = { {64 * 1024, 8} },
11693 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011694 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011695 .eraseblocks = { {512 * 1024, 1} },
11696 .block_erase = spi_block_erase_c7,
11697 }
11698 },
11699 .printlock = spi_prettyprint_status_register_default_welwip,
11700 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
11701 .write = spi_chip_write_256,
11702 .read = spi_chip_read,
11703 .voltage = {2700, 3600},
11704 },
11705
11706 {
11707 .vendor = "Sanyo",
11708 .name = "LE25FW418A",
11709 .bustype = BUS_SPI,
11710 .manufacture_id = SANYO_ID,
11711 .model_id = SANYO_LE25FW418A,
11712 .total_size = 512,
11713 .page_size = 256,
11714 .feature_bits = FEATURE_WRSR_WREN,
11715 .tested = TEST_UNTESTED,
11716 .probe = probe_spi_res2,
11717 .probe_timing = TIMING_ZERO,
11718 .block_erasers = {
11719 {
11720 .eraseblocks = { {4 * 1024, 128} },
11721 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011722 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011723 .eraseblocks = { {64 * 1024, 8} },
11724 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011725 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011726 .eraseblocks = { {512 * 1024, 1} },
11727 .block_erase = spi_block_erase_c7,
11728 }
11729 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011730 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011731 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11732 .write = spi_chip_write_256,
11733 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
11734 .voltage = {2700, 3600},
11735 },
11736
11737 {
11738 .vendor = "Sanyo",
11739 .name = "LE25FW806",
11740 .bustype = BUS_SPI,
11741 .manufacture_id = SANYO_ID,
11742 .model_id = SANYO_LE25FW806,
11743 .total_size = 1024,
11744 .page_size = 256,
11745 .feature_bits = FEATURE_WRSR_WREN,
11746 .tested = TEST_UNTESTED,
11747 .probe = probe_spi_res2,
11748 .probe_timing = TIMING_ZERO,
11749 .block_erasers = {
11750 {
11751 .eraseblocks = { {4 * 1024, 256} },
11752 .block_erase = spi_block_erase_20,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011753 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011754 .eraseblocks = { {4 * 1024, 256} },
11755 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011756 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011757 .eraseblocks = { {64 * 1024, 16} },
11758 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011759 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011760 .eraseblocks = { {1024 * 1024, 1} },
11761 .block_erase = spi_block_erase_c7,
11762 }
11763 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011764 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011765 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11766 .write = spi_chip_write_256,
11767 .read = spi_chip_read,
11768 .voltage = {2700, 3600},
11769 },
11770
11771 {
11772 .vendor = "Sanyo",
11773 .name = "LE25FW808",
11774 .bustype = BUS_SPI,
11775 .manufacture_id = SANYO_ID,
11776 .model_id = SANYO_LE25FW808,
11777 .total_size = 1024,
11778 .page_size = 256,
11779 .feature_bits = FEATURE_WRSR_WREN,
11780 .tested = TEST_UNTESTED,
11781 .probe = probe_spi_res2,
11782 .probe_timing = TIMING_ZERO,
11783 .block_erasers = {
11784 {
11785 .eraseblocks = { {8 * 1024, 128} },
11786 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011787 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011788 .eraseblocks = { {64 * 1024, 16} },
11789 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011790 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011791 .eraseblocks = { {1024 * 1024, 1} },
11792 .block_erase = spi_block_erase_c7,
11793 }
11794 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011795 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011796 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11797 .write = spi_chip_write_256,
11798 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
11799 .voltage = {2700, 3600},
Sean Nelsond70b09c2009-11-24 02:11:08 +000011800 },
11801
11802 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011803 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +000011804 .name = "LH28F008BJT-BTLZ1",
11805 .bustype = BUS_PARALLEL,
11806 .manufacture_id = SHARP_ID,
Stefan Tauner352e50b2013-02-22 15:58:45 +000011807 .model_id = SHARP_LH28F008BJ__PB,
Mattias Mattssonfca3b012011-08-25 22:44:11 +000011808 .total_size = 1024,
11809 .page_size = 64 * 1024,
11810 .tested = TEST_OK_PREW,
11811 .probe = probe_82802ab,
11812 .probe_timing = TIMING_ZERO,
11813 .block_erasers =
11814 {
11815 {
11816 .eraseblocks = {
11817 {8 * 1024, 8},
11818 {64 * 1024, 15}
11819 },
11820 .block_erase = erase_block_82802ab,
11821 }, {
11822 .eraseblocks = { {1024 * 1024, 1} },
11823 .block_erase = erase_sector_49lfxxxc,
11824 }
11825 },
11826 .unlock = unlock_lh28f008bjt,
11827 .write = write_82802ab,
11828 .read = read_memmapped,
11829 .voltage = {2700, 3600},
11830 },
11831
11832 {
11833 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011834 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011835 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011836 .manufacture_id = SHARP_ID,
11837 .model_id = SHARP_LHF00L04,
11838 .total_size = 1024,
11839 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000011840 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011841 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000011842 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011843 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011844 .block_erasers =
11845 {
11846 {
11847 .eraseblocks = {
11848 {64 * 1024, 15},
11849 {8 * 1024, 8}
11850 },
Sean Nelson28accc22010-03-19 18:47:06 +000011851 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011852 }, {
11853 .eraseblocks = {
11854 {1024 * 1024, 1}
11855 },
Sean Nelson51c83fb2010-01-20 20:55:53 +000011856 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011857 },
11858 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011859 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000011860 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011861 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011862 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011863 },
11864
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011865 {
11866 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +000011867 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011868 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011869 .manufacture_id = SPANSION_ID,
11870 .model_id = SPANSION_S25FL004A,
11871 .total_size = 512,
11872 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011873 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +000011874 .tested = TEST_UNTESTED,
11875 .probe = probe_spi_rdid,
11876 .probe_timing = TIMING_ZERO,
11877 .block_erasers =
11878 {
11879 {
11880 .eraseblocks = { {64 * 1024, 8} },
11881 .block_erase = spi_block_erase_d8,
11882 }, {
11883 .eraseblocks = { {512 * 1024, 1} },
11884 .block_erase = spi_block_erase_c7,
11885 }
11886 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011887 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000011888 .unlock = spi_disable_blockprotect,
11889 .write = spi_chip_write_256,
11890 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011891 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000011892 },
11893
11894 {
11895 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +000011896 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011897 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +000011898 .manufacture_id = SPANSION_ID,
11899 .model_id = SPANSION_S25FL008A,
11900 .total_size = 1024,
11901 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011902 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000011903 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +000011904 .probe = probe_spi_rdid,
11905 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +000011906 .block_erasers =
11907 {
11908 {
11909 .eraseblocks = { {64 * 1024, 16} },
11910 .block_erase = spi_block_erase_d8,
11911 }, {
11912 .eraseblocks = { {1024 * 1024, 1} },
11913 .block_erase = spi_block_erase_c7,
11914 }
11915 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011916 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011917 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +000011918 .write = spi_chip_write_256,
11919 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011920 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +000011921 },
11922
11923 {
11924 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011925 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011926 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011927 .manufacture_id = SPANSION_ID,
11928 .model_id = SPANSION_S25FL016A,
11929 .total_size = 2048,
11930 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011931 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011932 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011933 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011934 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011935 .block_erasers =
11936 {
11937 {
11938 .eraseblocks = { {64 * 1024, 32} },
11939 .block_erase = spi_block_erase_d8,
11940 }, {
11941 .eraseblocks = { {2 * 1024 * 1024, 1} },
11942 .block_erase = spi_block_erase_c7,
11943 }
11944 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011945 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011946 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011947 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011948 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011949 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011950 },
11951
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011952 {
Rudy Hostf4e57772010-11-29 00:37:49 +000011953 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +000011954 .name = "S25FL032A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011955 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011956 .manufacture_id = SPANSION_ID,
11957 .model_id = SPANSION_S25FL032A,
11958 .total_size = 4096,
11959 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011960 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000011961 .tested = TEST_OK_PREW,
Rudy Hostf4e57772010-11-29 00:37:49 +000011962 .probe = probe_spi_rdid,
11963 .probe_timing = TIMING_ZERO,
11964 .block_erasers =
11965 {
11966 {
11967 .eraseblocks = { {64 * 1024, 64} },
11968 .block_erase = spi_block_erase_d8,
11969 }, {
11970 .eraseblocks = { {4 * 1024 * 1024, 1} },
11971 .block_erase = spi_block_erase_c7,
11972 }
11973 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011974 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000011975 .unlock = spi_disable_blockprotect,
11976 .write = spi_chip_write_256,
11977 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011978 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000011979 },
11980
11981 {
11982 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +000011983 .name = "S25FL064A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011984 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011985 .manufacture_id = SPANSION_ID,
11986 .model_id = SPANSION_S25FL064A,
11987 .total_size = 8192,
11988 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011989 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +000011990 .tested = TEST_OK_PREW,
11991 .probe = probe_spi_rdid,
11992 .probe_timing = TIMING_ZERO,
11993 .block_erasers =
11994 {
11995 {
11996 .eraseblocks = { {64 * 1024, 128} },
11997 .block_erase = spi_block_erase_d8,
11998 }, {
11999 .eraseblocks = { {8 * 1024 * 1024, 1} },
12000 .block_erase = spi_block_erase_c7,
12001 }
12002 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012003 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000012004 .unlock = spi_disable_blockprotect,
12005 .write = spi_chip_write_256,
12006 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000012007 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000012008 },
12009
12010 {
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012011 .vendor = "Spansion",
12012 .name = "S25FL204K",
12013 .bustype = BUS_SPI,
12014 .manufacture_id = SPANSION_ID,
12015 .model_id = SPANSION_S25FL204,
12016 .total_size = 512,
12017 .page_size = 256,
12018 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000012019 .tested = TEST_OK_PR,
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012020 .probe = probe_spi_rdid,
12021 .probe_timing = TIMING_ZERO,
12022 .block_erasers = {
12023 {
12024 .eraseblocks = { {4 * 1024, 128} },
12025 .block_erase = spi_block_erase_20,
12026 }, {
12027 .eraseblocks = { {64 * 1024, 8} },
12028 .block_erase = spi_block_erase_d8,
12029 }, {
12030 .eraseblocks = { { 512 * 1024, 1} },
12031 .block_erase = spi_block_erase_60,
12032 }, {
12033 .eraseblocks = { { 512 * 1024, 1} },
12034 .block_erase = spi_block_erase_c7,
12035 }
12036 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012037 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000012038 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012039 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000012040 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012041 .voltage = {2700, 3600},
12042 },
12043
12044 {
12045 .vendor = "Spansion",
12046 .name = "S25FL208K",
12047 .bustype = BUS_SPI,
12048 .manufacture_id = SPANSION_ID,
12049 .model_id = SPANSION_S25FL208,
12050 .total_size = 1024,
12051 .page_size = 256,
12052 .feature_bits = FEATURE_WRSR_WREN,
12053 .tested = TEST_UNTESTED,
12054 .probe = probe_spi_rdid,
12055 .probe_timing = TIMING_ZERO,
12056 .block_erasers = {
12057 {
12058 .eraseblocks = { {4 * 1024, 256} },
12059 .block_erase = spi_block_erase_20,
12060 }, {
12061 .eraseblocks = { {64 * 1024, 16} },
12062 .block_erase = spi_block_erase_d8,
12063 }, {
12064 .eraseblocks = { { 1024 * 1024, 1} },
12065 .block_erase = spi_block_erase_60,
12066 }, {
12067 .eraseblocks = { { 1024 * 1024, 1} },
12068 .block_erase = spi_block_erase_c7,
12069 }
12070 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012071 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000012072 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012073 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000012074 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012075 .voltage = {2700, 3600},
12076 },
12077
12078 {
12079 .vendor = "Spansion",
Stefan Tauner6697f712014-08-06 15:09:15 +000012080 .name = "S25FL116K/S25FL216K", /* FIXME: separate them */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012081 .bustype = BUS_SPI,
12082 .manufacture_id = SPANSION_ID,
12083 .model_id = SPANSION_S25FL216,
12084 .total_size = 2048,
12085 .page_size = 256,
12086 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (S25FL116K only) */
12087 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12088 .tested = TEST_UNTESTED,
12089 .probe = probe_spi_rdid,
12090 .probe_timing = TIMING_ZERO,
12091 .block_erasers = {
12092 {
12093 .eraseblocks = { {4 * 1024, 512} },
12094 .block_erase = spi_block_erase_20,
12095 }, {
12096 .eraseblocks = { {64 * 1024, 32} },
12097 .block_erase = spi_block_erase_d8,
12098 }, {
12099 .eraseblocks = { { 2048 * 1024, 1} },
12100 .block_erase = spi_block_erase_60,
12101 }, {
12102 .eraseblocks = { { 2048 * 1024, 1} },
12103 .block_erase = spi_block_erase_c7,
12104 }
12105 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012106 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000012107 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012108 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000012109 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012110 .voltage = {2700, 3600},
12111 },
12112
12113 {
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012114 .vendor = "Spansion",
Nikolay Martynov598968a2014-05-04 21:44:13 +000012115 .name = "S25FL132K",
12116 .bustype = BUS_SPI,
12117 .manufacture_id = SPANSION_ID,
12118 .model_id = SPANSION_S25FL132K,
12119 .total_size = 4096,
12120 .page_size = 256,
12121 /* OTP: 768B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
12122 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12123 .tested = TEST_UNTESTED,
12124 .probe = probe_spi_rdid,
12125 .probe_timing = TIMING_ZERO,
12126 .block_erasers = {
12127 {
12128 .eraseblocks = { {4 * 1024, 1024} },
12129 .block_erase = spi_block_erase_20,
12130 }, {
12131 .eraseblocks = { {64 * 1024, 64} },
12132 .block_erase = spi_block_erase_d8,
12133 }, {
12134 .eraseblocks = { { 4096 * 1024, 1} },
12135 .block_erase = spi_block_erase_60,
12136 }, {
12137 .eraseblocks = { { 4096 * 1024, 1} },
12138 .block_erase = spi_block_erase_c7,
12139 }
12140 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012141 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
Nikolay Martynov598968a2014-05-04 21:44:13 +000012142 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12143 .write = spi_chip_write_256,
12144 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12145 .voltage = {2700, 3600},
12146 },
12147
12148 {
12149 .vendor = "Spansion",
12150 .name = "S25FL164K",
12151 .bustype = BUS_SPI,
12152 .manufacture_id = SPANSION_ID,
12153 .model_id = SPANSION_S25FL164K,
12154 .total_size = 8192,
12155 .page_size = 256,
12156 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
12157 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12158 .tested = TEST_OK_PREW,
12159 .probe = probe_spi_rdid,
12160 .probe_timing = TIMING_ZERO,
12161 .block_erasers = {
12162 {
12163 .eraseblocks = { {4 * 1024, 2048} },
12164 .block_erase = spi_block_erase_20,
12165 }, {
12166 .eraseblocks = { {64 * 1024, 128} },
12167 .block_erase = spi_block_erase_d8,
12168 }, {
12169 .eraseblocks = { { 8192 * 1024, 1} },
12170 .block_erase = spi_block_erase_60,
12171 }, {
12172 .eraseblocks = { { 8192 * 1024, 1} },
12173 .block_erase = spi_block_erase_c7,
12174 }
12175 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012176 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
Nikolay Martynov598968a2014-05-04 21:44:13 +000012177 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12178 .write = spi_chip_write_256,
12179 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12180 .voltage = {2700, 3600},
12181 },
12182
12183 {
12184 .vendor = "Spansion",
Jernej Å krabece814a9b2014-12-12 00:32:03 +000012185 .name = "S25FL127S-64kB", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
12186 .bustype = BUS_SPI,
12187 .manufacture_id = SPANSION_ID,
12188 .model_id = SPANSION_S25FL128,
12189 .total_size = 16384,
12190 .page_size = 256,
12191 /* supports 4B addressing */
12192 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12193 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12194 .tested = TEST_OK_PREW,
12195 /* FIXME: we should distinguish the configuration on probing time like we do for AT45DB chips */
12196 .probe = probe_spi_rdid,
12197 .probe_timing = TIMING_ZERO,
12198 .block_erasers = {
12199 {
12200 /* This chip supports erasing of 32 so-called "parameter sectors" with
12201 * opcode 0x20 which may be configured to be on top or bottom of the address
12202 * space. Trying to access an address outside these 4kB blocks does have no
12203 * effect on the memory contents, e.g.
12204 .eraseblocks = {
12205 {4 * 1024, 32},
12206 {64 * 1024, 254} // inaccessible
12207 },
12208 .block_erase = spi_block_erase_20,
12209 }, { */
12210 .eraseblocks = { { 64 * 1024, 256} },
12211 .block_erase = spi_block_erase_d8,
12212 }, {
12213 .eraseblocks = { { 16384 * 1024, 1} },
12214 .block_erase = spi_block_erase_60,
12215 }, {
12216 .eraseblocks = { { 16384 * 1024, 1} },
12217 .block_erase = spi_block_erase_c7,
12218 }
12219 },
12220 .printlock = spi_prettyprint_status_register_bp2_srwd,
12221 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12222 .write = spi_chip_write_256, /* Multi I/O supported */
12223 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12224 .voltage = {2700, 3600},
12225 },
12226
12227 {
12228 .vendor = "Spansion",
12229 .name = "S25FL127S-256kB", /* uniform 256kB sectors */
12230 .bustype = BUS_SPI,
12231 .manufacture_id = SPANSION_ID,
12232 .model_id = SPANSION_S25FL128,
12233 .total_size = 16384,
12234 .page_size = 512,
12235 /* supports 4B addressing */
12236 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12237 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12238 .tested = TEST_UNTESTED,
12239 .probe = probe_spi_rdid,
12240 .probe_timing = TIMING_ZERO,
12241 .block_erasers = {
12242 {
12243 .eraseblocks = { {256 * 1024, 64} },
12244 .block_erase = spi_block_erase_d8,
12245 }, {
12246 .eraseblocks = { { 16384 * 1024, 1} },
12247 .block_erase = spi_block_erase_60,
12248 }, {
12249 .eraseblocks = { { 16384 * 1024, 1} },
12250 .block_erase = spi_block_erase_c7,
12251 }
12252 },
12253 .printlock = spi_prettyprint_status_register_bp2_srwd,
12254 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12255 .write = spi_chip_write_256, /* Multi I/O supported */
12256 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12257 .voltage = {2700, 3600},
12258 },
12259
12260 {
12261 .vendor = "Spansion",
Stefan Tauner88b19252014-08-06 14:36:27 +000012262 .name = "S25FL128P......0", /* uniform 64 kB sectors */
12263 .bustype = BUS_SPI,
12264 .manufacture_id = SPANSION_ID,
12265 .model_id = SPANSION_S25FL128,
12266 .total_size = 16384,
12267 .page_size = 256,
12268 .feature_bits = FEATURE_WRSR_WREN,
12269 .tested = TEST_UNTESTED,
12270 .probe = probe_spi_rdid,
12271 .probe_timing = TIMING_ZERO,
12272 .block_erasers = {
12273 {
12274 .eraseblocks = { {64 * 1024, 256} },
12275 .block_erase = spi_block_erase_20,
12276 }, {
12277 .eraseblocks = { {64 * 1024, 256} },
12278 .block_erase = spi_block_erase_d8,
12279 }, {
12280 .eraseblocks = { { 16384 * 1024, 1} },
12281 .block_erase = spi_block_erase_60,
12282 }, {
12283 .eraseblocks = { { 16384 * 1024, 1} },
12284 .block_erase = spi_block_erase_c7,
12285 }
12286 },
12287 .printlock = spi_prettyprint_status_register_bp3_srwd,
12288 .unlock = spi_disable_blockprotect_bp3_srwd,
12289 .write = spi_chip_write_256,
12290 .read = spi_chip_read, /* Fast read (0x0B) supported */
12291 .voltage = {2700, 3600},
12292 },
12293
12294 {
12295 .vendor = "Spansion",
12296 .name = "S25FL128P......1", /* uniform 256kB sectors */
12297 .bustype = BUS_SPI,
12298 .manufacture_id = SPANSION_ID,
12299 .model_id = SPANSION_S25FL128,
12300 .total_size = 16384,
12301 .page_size = 256,
12302 .feature_bits = FEATURE_WRSR_WREN,
12303 .tested = TEST_UNTESTED,
12304 .probe = probe_spi_rdid,
12305 .probe_timing = TIMING_ZERO,
12306 .block_erasers = {
12307 {
12308 .eraseblocks = { {256 * 1024, 64} },
12309 .block_erase = spi_block_erase_d8,
12310 }, {
12311 .eraseblocks = { { 16384 * 1024, 1} },
12312 .block_erase = spi_block_erase_c7,
12313 }
12314 },
12315 .printlock = spi_prettyprint_status_register_bp2_srwd,
12316 .unlock = spi_disable_blockprotect_bp2_srwd,
12317 .write = spi_chip_write_256,
12318 .read = spi_chip_read, /* Fast read (0x0B) supported */
12319 .voltage = {2700, 3600},
12320 },
12321
12322 {
12323 .vendor = "Spansion",
12324 .name = "S25FL128S......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012325 .bustype = BUS_SPI,
12326 .manufacture_id = SPANSION_ID,
12327 .model_id = SPANSION_S25FL128,
12328 .total_size = 16384,
12329 .page_size = 256,
12330 /* supports 4B addressing */
12331 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12332 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000012333 .tested = TEST_OK_PREW,
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012334 .probe = probe_spi_rdid,
12335 .probe_timing = TIMING_ZERO,
12336 .block_erasers = {
12337 {
Stefan Tauner88b19252014-08-06 14:36:27 +000012338 /* This chip supports erasing of the 32 so-called "parameter sectors" with
12339 * opcode 0x20. Trying to access an address outside these 4kB blocks does
12340 * have no effect on the memory contents, but sets a flag in the SR.
12341 .eraseblocks = {
12342 {4 * 1024, 32},
12343 {64 * 1024, 254} // inaccessible
12344 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012345 .block_erase = spi_block_erase_20,
Stefan Tauner88b19252014-08-06 14:36:27 +000012346 }, { */
12347 .eraseblocks = { { 64 * 1024, 256} },
12348 .block_erase = spi_block_erase_d8,
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012349 }, {
Stefan Tauner88b19252014-08-06 14:36:27 +000012350 .eraseblocks = { { 16384 * 1024, 1} },
12351 .block_erase = spi_block_erase_60,
12352 }, {
12353 .eraseblocks = { { 16384 * 1024, 1} },
12354 .block_erase = spi_block_erase_c7,
12355 }
12356 },
12357 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
12358 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
12359 .write = spi_chip_write_256, /* Multi I/O supported */
12360 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12361 .voltage = {2700, 3600},
12362 },
12363
12364 {
12365 .vendor = "Spansion",
12366 .name = "S25FL128S......1", /* uniform 256 kB sectors */
12367 .bustype = BUS_SPI,
12368 .manufacture_id = SPANSION_ID,
12369 .model_id = SPANSION_S25FL128,
12370 .total_size = 16384,
12371 .page_size = 512,
12372 /* supports 4B addressing */
12373 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12374 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12375 .tested = TEST_UNTESTED,
12376 .probe = probe_spi_rdid,
12377 .probe_timing = TIMING_ZERO,
12378 .block_erasers = {
12379 {
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012380 .eraseblocks = { {256 * 1024, 64} },
12381 .block_erase = spi_block_erase_d8,
12382 }, {
12383 .eraseblocks = { { 16384 * 1024, 1} },
12384 .block_erase = spi_block_erase_60,
12385 }, {
12386 .eraseblocks = { { 16384 * 1024, 1} },
12387 .block_erase = spi_block_erase_c7,
12388 }
12389 },
12390 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
12391 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
12392 .write = spi_chip_write_256, /* Multi I/O supported */
12393 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12394 .voltage = {2700, 3600},
12395 },
12396
12397 {
Stefan Tauner88b19252014-08-06 14:36:27 +000012398 .vendor = "Spansion",
12399 .name = "S25FL129P......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
12400 .bustype = BUS_SPI,
12401 .manufacture_id = SPANSION_ID,
12402 .model_id = SPANSION_S25FL128,
12403 .total_size = 16384,
12404 .page_size = 256,
12405 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
12406 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12407 .tested = TEST_OK_PREW,
12408 .probe = probe_spi_rdid,
12409 .probe_timing = TIMING_ZERO,
12410 .block_erasers = {
12411 {
12412 /* FIXME: This chip supports erasing of the 32 so-called "parameter sectors" with
12413 * opcode 0x20. Trying to access an address outside these 4kB blocks does have no
12414 * effect on the memory contents, but sets a flag in the SR.
12415 .eraseblocks = {
12416 {4 * 1024, 32},
12417 {64 * 1024, 254} // inaccessible
12418 },
12419 .block_erase = spi_block_erase_20,
12420 }, { */
12421 /* FIXME: Additionally it also supports erase opcode 40h for the respective 2*4 kB pairs
12422 .eraseblocks = {
12423 {8 * 1024, 16},
12424 {64 * 1024, 254} // inaccessible
12425 },
12426 .block_erase = spi_block_erase_40,
12427 }, { */
12428 .eraseblocks = { { 64 * 1024, 256} },
12429 .block_erase = spi_block_erase_d8,
12430 }, {
12431 .eraseblocks = { { 16384 * 1024, 1} },
12432 .block_erase = spi_block_erase_60,
12433 }, {
12434 .eraseblocks = { { 16384 * 1024, 1} },
12435 .block_erase = spi_block_erase_c7,
12436 }
12437 },
12438 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
12439 .unlock = spi_disable_blockprotect_bp2_srwd,
12440 .write = spi_chip_write_256, /* Multi I/O supported */
12441 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12442 .voltage = {2700, 3600},
12443 },
12444
12445 {
12446 .vendor = "Spansion",
12447 .name = "S25FL129P......1", /* uniform 256 kB sectors */
12448 .bustype = BUS_SPI,
12449 .manufacture_id = SPANSION_ID,
12450 .model_id = SPANSION_S25FL128,
12451 .total_size = 16384,
Stefan Tauner23e10b82016-01-23 16:16:49 +000012452 .page_size = 256,
Stefan Tauner88b19252014-08-06 14:36:27 +000012453 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
12454 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12455 .tested = TEST_UNTESTED,
12456 .probe = probe_spi_rdid,
12457 .probe_timing = TIMING_ZERO,
12458 .block_erasers = {
12459 {
12460 .eraseblocks = { {256 * 1024, 64} },
12461 .block_erase = spi_block_erase_d8,
12462 }, {
12463 .eraseblocks = { { 16384 * 1024, 1} },
12464 .block_erase = spi_block_erase_60,
12465 }, {
12466 .eraseblocks = { { 16384 * 1024, 1} },
12467 .block_erase = spi_block_erase_c7,
12468 }
12469 },
12470 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
12471 .unlock = spi_disable_blockprotect_bp2_srwd,
12472 .write = spi_chip_write_256, /* Multi I/O supported */
12473 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12474 .voltage = {2700, 3600},
12475 },
12476
12477 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012478 .vendor = "SST",
Idwer Volleringf3607d12014-05-07 15:25:04 +000012479 .name = "SST25LF020A",
12480 .bustype = BUS_SPI,
12481 .manufacture_id = SST_ID,
12482 .model_id = SST_SST25VF020_REMS,
12483 .total_size = 256,
12484 .page_size = 256,
12485 .feature_bits = FEATURE_WRSR_EWSR,
12486 .tested = TEST_OK_PREW,
12487 .probe = probe_spi_rems,
12488 .probe_timing = TIMING_ZERO,
12489 .block_erasers =
12490 {
12491 {
12492 .eraseblocks = { {4 * 1024, 64} },
12493 .block_erase = spi_block_erase_20,
12494 }, {
12495 .eraseblocks = { {32 * 1024, 8} },
12496 .block_erase = spi_block_erase_52,
12497 }, {
12498 .eraseblocks = { {256 * 1024, 1} },
12499 .block_erase = spi_block_erase_60,
12500 },
12501 },
12502 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12503 .unlock = spi_disable_blockprotect,
12504 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12505 .read = spi_chip_read, /* Fast read (0x0B) supported */
12506 .voltage = {2700, 3600},
12507 },
12508
12509 {
12510 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +000012511 .name = "SST25LF040A",
12512 .bustype = BUS_SPI,
12513 .manufacture_id = SST_ID,
12514 .model_id = SST_SST25VF040_REMS,
12515 .total_size = 512,
12516 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012517 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +000012518 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +000012519 .probe = probe_spi_res2,
12520 .probe_timing = TIMING_ZERO,
12521 .block_erasers =
12522 {
12523 {
12524 .eraseblocks = { {4 * 1024, 128} },
12525 .block_erase = spi_block_erase_20,
12526 }, {
12527 .eraseblocks = { {32 * 1024, 16} },
12528 .block_erase = spi_block_erase_52,
12529 }, {
12530 .eraseblocks = { {512 * 1024, 1} },
12531 .block_erase = spi_block_erase_60,
12532 },
12533 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012534 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012535 .unlock = spi_disable_blockprotect,
12536 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12537 .read = spi_chip_read,
12538 .voltage = {3000, 3600},
12539 },
12540
12541 {
12542 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +000012543 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +000012544 .bustype = BUS_SPI,
12545 .manufacture_id = SST_ID,
12546 .model_id = SST_SST25VF080_REMS,
12547 .total_size = 1024,
12548 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012549 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +000012550 .tested = TEST_UNTESTED,
12551 .probe = probe_spi_res2,
12552 .probe_timing = TIMING_ZERO,
12553 .block_erasers =
12554 {
12555 {
12556 .eraseblocks = { {4 * 1024, 256} },
12557 .block_erase = spi_block_erase_20,
12558 }, {
12559 .eraseblocks = { {32 * 1024, 32} },
12560 .block_erase = spi_block_erase_52,
12561 }, {
12562 .eraseblocks = { {1024 * 1024, 1} },
12563 .block_erase = spi_block_erase_60,
12564 },
12565 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012566 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012567 .unlock = spi_disable_blockprotect,
12568 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12569 .read = spi_chip_read,
12570 .voltage = {3000, 3600},
12571 },
12572
12573 {
12574 .vendor = "SST",
Stefan Tauner6697f712014-08-06 15:09:15 +000012575 .name = "SST25VF512(A)",
Cory Henderson370f5822013-10-19 23:09:16 +000012576 .bustype = BUS_SPI,
12577 .manufacture_id = SST_ID,
Stefan Tauner6697f712014-08-06 15:09:15 +000012578 .model_id = SST_SST25VF512_REMS,
Cory Henderson370f5822013-10-19 23:09:16 +000012579 .total_size = 64,
12580 .page_size = 256,
12581 .feature_bits = FEATURE_WRSR_EWSR,
12582 .tested = TEST_OK_PREW,
12583 .probe = probe_spi_rems,
12584 .probe_timing = TIMING_ZERO,
12585 .block_erasers =
12586 {
12587 {
12588 .eraseblocks = { {4 * 1024, 16} },
12589 .block_erase = spi_block_erase_20,
12590 }, {
12591 .eraseblocks = { {32 * 1024, 2} },
12592 .block_erase = spi_block_erase_52,
12593 }, {
12594 .eraseblocks = { {32 * 1024, 2} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012595 .block_erase = spi_block_erase_d8, /* Supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012596 }, {
12597 .eraseblocks = { {64 * 1024, 1} },
12598 .block_erase = spi_block_erase_60,
12599 }, {
12600 .eraseblocks = { {64 * 1024, 1} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012601 .block_erase = spi_block_erase_c7, /* Supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012602 },
12603 },
12604 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12605 .unlock = spi_disable_blockprotect,
12606 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stefan Tauner6697f712014-08-06 15:09:15 +000012607 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012608 .voltage = {2700, 3600},
12609 },
12610
12611 {
12612 .vendor = "SST",
Stefan Tauner6697f712014-08-06 15:09:15 +000012613 .name = "SST25VF010(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012614 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +000012615 .manufacture_id = SST_ID,
12616 .model_id = SST_SST25VF010_REMS,
12617 .total_size = 128,
12618 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012619 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +000012620 .tested = TEST_OK_PREW,
12621 .probe = probe_spi_rems,
12622 .probe_timing = TIMING_ZERO,
12623 .block_erasers =
12624 {
12625 {
12626 .eraseblocks = { {4 * 1024, 32} },
12627 .block_erase = spi_block_erase_20,
12628 }, {
12629 .eraseblocks = { {32 * 1024, 4} },
12630 .block_erase = spi_block_erase_52,
12631 }, {
Cory Henderson370f5822013-10-19 23:09:16 +000012632 .eraseblocks = { {32 * 1024, 4} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012633 .block_erase = spi_block_erase_d8, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012634 }, {
Mark Marshall90021f22010-12-03 14:48:11 +000012635 .eraseblocks = { {128 * 1024, 1} },
12636 .block_erase = spi_block_erase_60,
Cory Henderson370f5822013-10-19 23:09:16 +000012637 }, {
12638 .eraseblocks = { {128 * 1024, 1} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012639 .block_erase = spi_block_erase_c7, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012640 },
12641 },
12642 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12643 .unlock = spi_disable_blockprotect,
12644 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stefan Tauner6697f712014-08-06 15:09:15 +000012645 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012646 .voltage = {2700, 3600},
12647 },
12648
12649 {
12650 .vendor = "SST",
12651 .name = "SST25VF020",
12652 .bustype = BUS_SPI,
12653 .manufacture_id = SST_ID,
12654 .model_id = SST_SST25VF020_REMS,
12655 .total_size = 256,
12656 .page_size = 256,
12657 .feature_bits = FEATURE_WRSR_EWSR,
12658 .tested = TEST_UNTESTED,
12659 .probe = probe_spi_rems,
12660 .probe_timing = TIMING_ZERO,
12661 .block_erasers =
12662 {
12663 {
12664 .eraseblocks = { {4 * 1024, 64} },
12665 .block_erase = spi_block_erase_20,
12666 }, {
12667 .eraseblocks = { {32 * 1024, 8} },
12668 .block_erase = spi_block_erase_52,
12669 }, {
12670 .eraseblocks = { {256 * 1024, 1} },
12671 .block_erase = spi_block_erase_60,
12672 },
12673 },
12674 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12675 .unlock = spi_disable_blockprotect,
12676 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12677 .read = spi_chip_read, /* only */
12678 .voltage = {2700, 3600},
12679 },
12680
12681 {
12682 .vendor = "SST",
12683 .name = "SST25VF020B",
12684 .bustype = BUS_SPI,
12685 .manufacture_id = SST_ID,
12686 .model_id = SST_SST25VF020B,
12687 .total_size = 256,
12688 .page_size = 256,
12689 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000012690 .tested = TEST_OK_PREW,
Cory Henderson370f5822013-10-19 23:09:16 +000012691 .probe = probe_spi_rdid,
12692 .probe_timing = TIMING_ZERO,
12693 .block_erasers =
12694 {
12695 {
12696 .eraseblocks = { {4 * 1024, 64} },
12697 .block_erase = spi_block_erase_20,
12698 }, {
12699 .eraseblocks = { {32 * 1024, 8} },
12700 .block_erase = spi_block_erase_52,
12701 }, {
12702 .eraseblocks = { {64 * 1024, 4} },
12703 .block_erase = spi_block_erase_d8,
12704 }, {
12705 .eraseblocks = { {256 * 1024, 1} },
12706 .block_erase = spi_block_erase_60,
12707 }, {
12708 .eraseblocks = { {256 * 1024, 1} },
12709 .block_erase = spi_block_erase_c7,
12710 },
12711 },
12712 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 and 2nd SR */
12713 .unlock = spi_disable_blockprotect, /* FIXME: 2nd SR */
12714 .write = spi_aai_write, /* AAI supported (0xAD) */
12715 .read = spi_chip_read, /* Fast read (0x0B) supported */
12716 .voltage = {2700, 3600},
12717 },
12718
12719 {
12720 .vendor = "SST",
12721 .name = "SST25VF040",
12722 .bustype = BUS_SPI,
12723 .manufacture_id = SST_ID,
12724 .model_id = SST_SST25VF040_REMS,
12725 .total_size = 512,
12726 .page_size = 256,
12727 .feature_bits = FEATURE_WRSR_EWSR,
12728 .tested = TEST_OK_PR,
12729 .probe = probe_spi_rems,
12730 .probe_timing = TIMING_ZERO,
12731 .block_erasers =
12732 {
12733 {
12734 .eraseblocks = { {4 * 1024, 128} },
12735 .block_erase = spi_block_erase_20,
12736 }, {
12737 .eraseblocks = { {32 * 1024, 16} },
12738 .block_erase = spi_block_erase_52,
12739 }, {
12740 .eraseblocks = { {512 * 1024, 1} },
12741 .block_erase = spi_block_erase_60,
Mark Marshall90021f22010-12-03 14:48:11 +000012742 },
12743 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012744 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +000012745 .unlock = spi_disable_blockprotect,
Cory Henderson370f5822013-10-19 23:09:16 +000012746 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12747 .read = spi_chip_read,
12748 .voltage = {2700, 3600},
12749 },
12750
12751 {
12752 .vendor = "SST",
12753 .name = "SST25VF040B",
12754 .bustype = BUS_SPI,
12755 .manufacture_id = SST_ID,
12756 .model_id = SST_SST25VF040B,
12757 .total_size = 512,
12758 .page_size = 256,
12759 .feature_bits = FEATURE_WRSR_EWSR,
12760 .tested = TEST_OK_PREW,
12761 .probe = probe_spi_rdid,
12762 .probe_timing = TIMING_ZERO,
12763 .block_erasers =
12764 {
12765 {
12766 .eraseblocks = { {4 * 1024, 128} },
12767 .block_erase = spi_block_erase_20,
12768 }, {
12769 .eraseblocks = { {32 * 1024, 16} },
12770 .block_erase = spi_block_erase_52,
12771 }, {
12772 .eraseblocks = { {64 * 1024, 8} },
12773 .block_erase = spi_block_erase_d8,
12774 }, {
12775 .eraseblocks = { {512 * 1024, 1} },
12776 .block_erase = spi_block_erase_60,
12777 }, {
12778 .eraseblocks = { {512 * 1024, 1} },
12779 .block_erase = spi_block_erase_c7,
12780 },
12781 },
12782 .printlock = spi_prettyprint_status_register_sst25vf040b,
12783 .unlock = spi_disable_blockprotect,
12784 .write = spi_aai_write, /* AAI supported (0xAD) */
12785 .read = spi_chip_read, /* Fast read (0x0B) supported */
12786 .voltage = {2700, 3600},
12787 },
12788
12789 {
12790 .vendor = "SST",
12791 .name = "SST25VF040B.REMS",
12792 .bustype = BUS_SPI,
12793 .manufacture_id = SST_ID,
12794 .model_id = SST_SST25VF040B_REMS,
12795 .total_size = 512,
12796 .page_size = 256,
12797 .feature_bits = FEATURE_WRSR_EWSR,
12798 .tested = TEST_OK_PREW,
12799 .probe = probe_spi_rems,
12800 .probe_timing = TIMING_ZERO,
12801 .block_erasers =
12802 {
12803 {
12804 .eraseblocks = { {4 * 1024, 128} },
12805 .block_erase = spi_block_erase_20,
12806 }, {
12807 .eraseblocks = { {32 * 1024, 16} },
12808 .block_erase = spi_block_erase_52,
12809 }, {
12810 .eraseblocks = { {64 * 1024, 8} },
12811 .block_erase = spi_block_erase_d8,
12812 }, {
12813 .eraseblocks = { {512 * 1024, 1} },
12814 .block_erase = spi_block_erase_60,
12815 }, {
12816 .eraseblocks = { {512 * 1024, 1} },
12817 .block_erase = spi_block_erase_c7,
12818 },
12819 },
12820 .printlock = spi_prettyprint_status_register_sst25vf040b,
12821 .unlock = spi_disable_blockprotect,
12822 .write = spi_aai_write,
12823 .read = spi_chip_read,
12824 .voltage = {2700, 3600},
12825 },
12826
12827 {
12828 .vendor = "SST",
Ben Gardnerbcf61092015-11-22 02:23:31 +000012829 .name = "SST25WF020A",
12830 .bustype = BUS_SPI,
12831 .manufacture_id = SANYO_ID, /* See flashchips.h */
12832 .model_id = SST_SST25WF020A,
12833 .total_size = 256,
12834 .page_size = 256,
12835 .feature_bits = FEATURE_WRSR_WREN,
12836 .tested = TEST_UNTESTED,
12837 .probe = probe_spi_rdid,
12838 .probe_timing = TIMING_ZERO,
12839 .block_erasers =
12840 {
12841 {
12842 .eraseblocks = { {4 * 1024, 64} },
12843 .block_erase = spi_block_erase_20,
12844 }, {
12845 .eraseblocks = { {64 * 1024, 4} },
12846 .block_erase = spi_block_erase_d8,
12847 }, {
12848 .eraseblocks = { {256 * 1024, 1} },
12849 .block_erase = spi_block_erase_60,
12850 }, {
12851 .eraseblocks = { {256 * 1024, 1} },
12852 .block_erase = spi_block_erase_c7,
12853 },
12854 },
12855 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12856 .unlock = spi_disable_blockprotect_bp2_srwd,
12857 .write = spi_chip_write_256,
12858 .read = spi_chip_read, /* Fast read (0x0B) supported */
12859 .voltage = {1650, 1950},
12860 },
12861
12862 {
12863 .vendor = "SST",
12864 .name = "SST25WF040B",
12865 .bustype = BUS_SPI,
12866 .manufacture_id = SANYO_ID, /* See flashchips.h */
12867 .model_id = SST_SST25WF040B,
12868 .total_size = 512,
12869 .page_size = 256,
12870 .feature_bits = FEATURE_WRSR_WREN,
12871 .tested = TEST_UNTESTED,
12872 .probe = probe_spi_rdid,
12873 .probe_timing = TIMING_ZERO,
12874 .block_erasers =
12875 {
12876 {
12877 .eraseblocks = { {4 * 1024, 128} },
12878 .block_erase = spi_block_erase_20,
12879 }, {
12880 .eraseblocks = { {64 * 1024, 8} },
12881 .block_erase = spi_block_erase_d8,
12882 }, {
12883 .eraseblocks = { {512 * 1024, 1} },
12884 .block_erase = spi_block_erase_60,
12885 }, {
12886 .eraseblocks = { {512 * 1024, 1} },
12887 .block_erase = spi_block_erase_c7,
12888 },
12889 },
12890 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12891 .unlock = spi_disable_blockprotect_bp2_srwd,
12892 .write = spi_chip_write_256,
12893 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12894 .voltage = {1650, 1950},
12895 },
12896
12897 {
12898 .vendor = "SST",
12899 .name = "SST25WF080B",
12900 .bustype = BUS_SPI,
12901 .manufacture_id = SANYO_ID, /* See flashchips.h */
12902 .model_id = SST_SST25WF080B,
12903 .total_size = 1024,
12904 .page_size = 256,
12905 .feature_bits = FEATURE_WRSR_WREN,
12906 .tested = TEST_OK_PREW,
12907 .probe = probe_spi_rdid,
12908 .probe_timing = TIMING_ZERO,
12909 .block_erasers =
12910 {
12911 {
12912 .eraseblocks = { {4 * 1024, 256} },
12913 .block_erase = spi_block_erase_20,
12914 }, {
12915 .eraseblocks = { {64 * 1024, 16} },
12916 .block_erase = spi_block_erase_d8,
12917 }, {
12918 .eraseblocks = { {1024 * 1024, 1} },
12919 .block_erase = spi_block_erase_60,
12920 }, {
12921 .eraseblocks = { {1024 * 1024, 1} },
12922 .block_erase = spi_block_erase_c7,
12923 },
12924 },
12925 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12926 .unlock = spi_disable_blockprotect_bp2_srwd,
12927 .write = spi_chip_write_256,
12928 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12929 .voltage = {1650, 1950},
12930 },
12931
12932 {
12933 .vendor = "SST",
Cory Henderson370f5822013-10-19 23:09:16 +000012934 .name = "SST25VF080B",
12935 .bustype = BUS_SPI,
12936 .manufacture_id = SST_ID,
12937 .model_id = SST_SST25VF080B,
12938 .total_size = 1024,
12939 .page_size = 256,
12940 .feature_bits = FEATURE_WRSR_EWSR,
12941 .tested = TEST_OK_PREW,
12942 .probe = probe_spi_rdid,
12943 .probe_timing = TIMING_ZERO,
12944 .block_erasers =
12945 {
12946 {
12947 .eraseblocks = { {4 * 1024, 256} },
12948 .block_erase = spi_block_erase_20,
12949 }, {
12950 .eraseblocks = { {32 * 1024, 32} },
12951 .block_erase = spi_block_erase_52,
12952 }, {
12953 .eraseblocks = { {64 * 1024, 16} },
12954 .block_erase = spi_block_erase_d8,
12955 }, {
12956 .eraseblocks = { {1024 * 1024, 1} },
12957 .block_erase = spi_block_erase_60,
12958 }, {
12959 .eraseblocks = { {1024 * 1024, 1} },
12960 .block_erase = spi_block_erase_c7,
12961 },
12962 },
12963 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
12964 .unlock = spi_disable_blockprotect,
12965 .write = spi_aai_write,
Mark Marshall90021f22010-12-03 14:48:11 +000012966 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000012967 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +000012968 },
12969
12970 {
12971 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012972 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012973 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012974 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012975 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012976 .total_size = 2048,
12977 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012978 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +000012979 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012980 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000012981 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012982 .block_erasers =
12983 {
12984 {
12985 .eraseblocks = { {4 * 1024, 512} },
12986 .block_erase = spi_block_erase_20,
12987 }, {
12988 .eraseblocks = { {32 * 1024, 64} },
12989 .block_erase = spi_block_erase_52,
12990 }, {
12991 .eraseblocks = { {64 * 1024, 32} },
12992 .block_erase = spi_block_erase_d8,
12993 }, {
12994 .eraseblocks = { {2 * 1024 * 1024, 1} },
12995 .block_erase = spi_block_erase_60,
12996 }, {
12997 .eraseblocks = { {2 * 1024 * 1024, 1} },
12998 .block_erase = spi_block_erase_c7,
12999 },
13000 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000013001 .printlock = spi_prettyprint_status_register_sst25vf016,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000013002 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +000013003 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013004 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013005 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013006 },
13007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013008 {
13009 .vendor = "SST",
13010 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013011 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013012 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013013 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013014 .total_size = 4096,
13015 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000013016 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +000013017 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013018 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000013019 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000013020 .block_erasers =
13021 {
13022 {
13023 .eraseblocks = { {4 * 1024, 1024} },
13024 .block_erase = spi_block_erase_20,
13025 }, {
13026 .eraseblocks = { {32 * 1024, 128} },
13027 .block_erase = spi_block_erase_52,
13028 }, {
13029 .eraseblocks = { {64 * 1024, 64} },
13030 .block_erase = spi_block_erase_d8,
13031 }, {
13032 .eraseblocks = { {4 * 1024 * 1024, 1} },
13033 .block_erase = spi_block_erase_60,
13034 }, {
13035 .eraseblocks = { {4 * 1024 * 1024, 1} },
13036 .block_erase = spi_block_erase_c7,
13037 },
13038 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000013039 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000013040 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +000013041 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000013042 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013043 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000013044 },
13045
13046 {
13047 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013048 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013049 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013050 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013051 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013052 .total_size = 8192,
13053 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000013054 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +000013055 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013056 .probe = probe_spi_rdid,
13057 .probe_timing = TIMING_ZERO,
13058 .block_erasers =
13059 {
13060 {
13061 .eraseblocks = { {4 * 1024, 2048} },
13062 .block_erase = spi_block_erase_20,
13063 }, {
13064 .eraseblocks = { {32 * 1024, 256} },
13065 .block_erase = spi_block_erase_52,
13066 }, {
13067 .eraseblocks = { {64 * 1024, 128} },
13068 .block_erase = spi_block_erase_d8,
13069 }, {
13070 .eraseblocks = { {8 * 1024 * 1024, 1} },
13071 .block_erase = spi_block_erase_60,
13072 }, {
13073 .eraseblocks = { {8 * 1024 * 1024, 1} },
13074 .block_erase = spi_block_erase_c7,
13075 },
13076 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000013077 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013078 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +000013079 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013080 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013081 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +000013082 },
13083
13084 {
13085 .vendor = "SST",
Wei Hu25584de2018-04-30 14:02:08 -070013086 .name = "SST26VF016B(A)",
13087 .bustype = BUS_SPI,
13088 .manufacture_id = SST_ID,
13089 .model_id = SST_SST26VF016B,
13090 .total_size = 2048,
13091 .page_size = 256,
13092 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13093 .tested = TEST_OK_PREW,
13094 .probe = probe_spi_rdid,
13095 .probe_timing = TIMING_ZERO,
13096 .block_erasers =
13097 {
13098 {
13099 .eraseblocks = { {4 * 1024, 512} },
13100 .block_erase = spi_block_erase_20,
13101 }, {
13102 .eraseblocks = {
13103 {8 * 1024, 4},
13104 {32 * 1024, 1},
13105 {64 * 1024, 30},
13106 {32 * 1024, 1},
13107 {8 * 1024, 4},
13108 },
13109 .block_erase = spi_block_erase_d8,
13110 }, {
13111 .eraseblocks = { {2 * 1024 * 1024, 1} },
13112 .block_erase = spi_block_erase_c7,
13113 },
13114 },
13115 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13116 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13117 .write = spi_chip_write_256, /* Multi I/O supported */
13118 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13119 .voltage = {2700, 3600},
13120 },
13121 {
13122 .vendor = "SST",
13123 .name = "SST26VF032B(A)",
13124 .bustype = BUS_SPI,
13125 .manufacture_id = SST_ID,
13126 .model_id = SST_SST26VF032B,
13127 .total_size = 4096,
13128 .page_size = 256,
13129 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13130 .tested = TEST_UNTESTED,
13131 .probe = probe_spi_rdid,
13132 .probe_timing = TIMING_ZERO,
13133 .block_erasers =
13134 {
13135 {
13136 .eraseblocks = { {4 * 1024, 1024} },
13137 .block_erase = spi_block_erase_20,
13138 }, {
13139 .eraseblocks = {
13140 {8 * 1024, 4},
13141 {32 * 1024, 1},
13142 {64 * 1024, 62},
13143 {32 * 1024, 1},
13144 {8 * 1024, 4},
13145 },
13146 .block_erase = spi_block_erase_d8,
13147 }, {
13148 .eraseblocks = { {4 * 1024 * 1024, 1} },
13149 .block_erase = spi_block_erase_c7,
13150 },
13151 },
13152 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13153 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13154 .write = spi_chip_write_256, /* Multi I/O supported */
13155 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13156 .voltage = {2700, 3600},
13157 },
13158
13159
13160 {
13161 .vendor = "SST",
13162 .name = "SST26VF064B(A)",
13163 .bustype = BUS_SPI,
13164 .manufacture_id = SST_ID,
13165 .model_id = SST_SST26VF064B,
13166 .total_size = 8192,
13167 .page_size = 256,
13168 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13169 .tested = TEST_OK_PREW,
13170 .probe = probe_spi_rdid,
13171 .probe_timing = TIMING_ZERO,
13172 .block_erasers =
13173 {
13174 {
13175 .eraseblocks = { {4 * 1024, 2048} },
13176 .block_erase = spi_block_erase_20,
13177 }, {
13178 .eraseblocks = {
13179 {8 * 1024, 4},
13180 {32 * 1024, 1},
13181 {64 * 1024, 126},
13182 {32 * 1024, 1},
13183 {8 * 1024, 4},
13184 },
13185 .block_erase = spi_block_erase_d8,
13186 }, {
13187 .eraseblocks = { {8 * 1024 * 1024, 1} },
13188 .block_erase = spi_block_erase_c7,
13189 },
13190 },
13191 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13192 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13193 .write = spi_chip_write_256, /* Multi I/O supported */
13194 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13195 .voltage = {2700, 3600},
13196 },
13197
13198 {
13199 .vendor = "SST",
Stefan Tauner9e349e42012-10-01 22:45:08 +000013200 .name = "SST25WF512",
13201 .bustype = BUS_SPI,
13202 .manufacture_id = SST_ID,
13203 .model_id = SST_SST25WF512,
13204 .total_size = 64,
13205 .page_size = 256,
13206 .feature_bits = FEATURE_WRSR_EITHER,
13207 .tested = TEST_UNTESTED,
13208 .probe = probe_spi_rdid,
13209 .probe_timing = TIMING_ZERO,
13210 .block_erasers =
13211 {
13212 {
13213 .eraseblocks = { {4 * 1024, 16} },
13214 .block_erase = spi_block_erase_20,
13215 }, {
13216 .eraseblocks = { {32 * 1024, 2} },
13217 .block_erase = spi_block_erase_52,
13218 }, {
13219 .eraseblocks = { {1024 * 64, 1} },
13220 .block_erase = spi_block_erase_60,
13221 }, {
13222 .eraseblocks = { {1024 * 64, 1} },
13223 .block_erase = spi_block_erase_c7,
13224 },
13225 },
Jason Harper43ddef02014-05-04 00:55:24 +000013226 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13227 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013228 .write = spi_aai_write,
13229 .read = spi_chip_read, /* Fast read (0x0B) supported */
13230 .voltage = {1650, 1950},
13231 },
13232
13233 {
13234 .vendor = "SST",
13235 .name = "SST25WF010",
13236 .bustype = BUS_SPI,
13237 .manufacture_id = SST_ID,
13238 .model_id = SST_SST25WF010,
13239 .total_size = 128,
13240 .page_size = 256,
13241 .feature_bits = FEATURE_WRSR_EITHER,
13242 .tested = TEST_UNTESTED,
13243 .probe = probe_spi_rdid,
13244 .probe_timing = TIMING_ZERO,
13245 .block_erasers =
13246 {
13247 {
13248 .eraseblocks = { {4 * 1024, 32} },
13249 .block_erase = spi_block_erase_20,
13250 }, {
13251 .eraseblocks = { {32 * 1024, 4} },
13252 .block_erase = spi_block_erase_52,
13253 }, {
13254 .eraseblocks = { {1024 * 128, 1} },
13255 .block_erase = spi_block_erase_60,
13256 }, {
13257 .eraseblocks = { {1024 * 128, 1} },
13258 .block_erase = spi_block_erase_c7,
13259 },
13260 },
Jason Harper43ddef02014-05-04 00:55:24 +000013261 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13262 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013263 .write = spi_aai_write,
13264 .read = spi_chip_read, /* Fast read (0x0B) supported */
13265 .voltage = {1650, 1950},
13266 },
13267
13268 {
13269 .vendor = "SST",
13270 .name = "SST25WF020",
13271 .bustype = BUS_SPI,
13272 .manufacture_id = SST_ID,
13273 .model_id = SST_SST25WF020,
13274 .total_size = 256,
13275 .page_size = 256,
13276 .feature_bits = FEATURE_WRSR_EITHER,
13277 .tested = TEST_UNTESTED,
13278 .probe = probe_spi_rdid,
13279 .probe_timing = TIMING_ZERO,
13280 .block_erasers =
13281 {
13282 {
13283 .eraseblocks = { {4 * 1024, 64} },
13284 .block_erase = spi_block_erase_20,
13285 }, {
13286 .eraseblocks = { {32 * 1024, 8} },
13287 .block_erase = spi_block_erase_52,
13288 }, {
13289 .eraseblocks = { {64 * 1024, 4} },
13290 .block_erase = spi_block_erase_d8,
13291 }, {
13292 .eraseblocks = { {1024 * 256, 1} },
13293 .block_erase = spi_block_erase_60,
13294 }, {
13295 .eraseblocks = { {1024 * 256, 1} },
13296 .block_erase = spi_block_erase_c7,
13297 },
13298 },
Jason Harper43ddef02014-05-04 00:55:24 +000013299 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13300 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013301 .write = spi_aai_write,
13302 .read = spi_chip_read, /* Fast read (0x0B) supported */
13303 .voltage = {1650, 1950},
13304 },
13305
13306 {
13307 .vendor = "SST",
13308 .name = "SST25WF040",
13309 .bustype = BUS_SPI,
13310 .manufacture_id = SST_ID,
13311 .model_id = SST_SST25WF040,
13312 .total_size = 512,
13313 .page_size = 256,
13314 .feature_bits = FEATURE_WRSR_EITHER,
13315 .tested = TEST_UNTESTED,
13316 .probe = probe_spi_rdid,
13317 .probe_timing = TIMING_ZERO,
13318 .block_erasers =
13319 {
13320 {
13321 .eraseblocks = { {4 * 1024, 128} },
13322 .block_erase = spi_block_erase_20,
13323 }, {
13324 .eraseblocks = { {32 * 1024, 16} },
13325 .block_erase = spi_block_erase_52,
13326 }, {
13327 .eraseblocks = { {64 * 1024, 8} },
13328 .block_erase = spi_block_erase_d8,
13329 }, {
13330 .eraseblocks = { {1024 * 512, 1} },
13331 .block_erase = spi_block_erase_60,
13332 }, {
13333 .eraseblocks = { {1024 * 512, 1} },
13334 .block_erase = spi_block_erase_c7,
13335 },
13336 },
Jason Harper43ddef02014-05-04 00:55:24 +000013337 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13338 .unlock = spi_disable_blockprotect_bp2_srwd,
13339 .write = spi_aai_write,
13340 .read = spi_chip_read, /* Fast read (0x0B) supported */
13341 .voltage = {1650, 1950},
13342 },
13343
13344 {
13345 .vendor = "SST",
13346 .name = "SST25WF080",
13347 .bustype = BUS_SPI,
13348 .manufacture_id = SST_ID,
13349 .model_id = SST_SST25WF080,
13350 .total_size = 1024,
13351 .page_size = 256,
13352 .feature_bits = FEATURE_WRSR_EITHER,
13353 .tested = TEST_OK_PREW,
13354 .probe = probe_spi_rdid,
13355 .probe_timing = TIMING_ZERO,
13356 .block_erasers =
13357 {
13358 {
13359 .eraseblocks = { {4 * 1024, 256} },
13360 .block_erase = spi_block_erase_20,
13361 }, {
13362 .eraseblocks = { {32 * 1024, 32} },
13363 .block_erase = spi_block_erase_52,
13364 }, {
13365 .eraseblocks = { {64 * 1024, 16} },
13366 .block_erase = spi_block_erase_d8,
13367 }, {
13368 .eraseblocks = { {1024 * 1024, 1} },
13369 .block_erase = spi_block_erase_60,
13370 }, {
13371 .eraseblocks = { {1024 * 1024, 1} },
13372 .block_erase = spi_block_erase_c7,
13373 },
13374 },
13375 .printlock = spi_prettyprint_status_register_sst25, /* *does* have a BP3 but it is useless */
13376 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013377 .write = spi_aai_write,
13378 .read = spi_chip_read, /* Fast read (0x0B) supported */
13379 .voltage = {1650, 1950},
13380 },
13381
13382 {
13383 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013384 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013385 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013386 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013387 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013388 .total_size = 512,
13389 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000013390 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013391 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013392 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013393 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013394 .block_erasers =
13395 {
13396 {
13397 .eraseblocks = { {128, 4096} },
13398 .block_erase = erase_sector_28sf040,
13399 }, {
13400 .eraseblocks = { {512 * 1024, 1} },
13401 .block_erase = erase_chip_28sf040,
13402 }
13403 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013404 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013405 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013406 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013407 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013408 },
13409
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013410 {
13411 .vendor = "SST",
13412 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013413 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013414 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013415 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013416 .total_size = 128,
13417 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013418 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013419 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013420 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013421 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013422 .block_erasers =
13423 {
13424 {
13425 .eraseblocks = { {128 * 1024, 1} },
13426 .block_erase = erase_chip_block_jedec,
13427 }
13428 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013429 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013430 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013431 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013432 },
13433
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013434 {
13435 .vendor = "SST",
13436 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013437 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013438 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013439 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013440 .total_size = 128,
13441 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013442 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013443 .tested = TEST_UNTESTED,
13444 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013445 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013446 .block_erasers =
13447 {
13448 {
13449 .eraseblocks = { {128 * 1024, 1} },
13450 .block_erase = erase_chip_block_jedec,
13451 }
13452 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013453 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013454 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013455 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013456 },
13457
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013458 {
13459 .vendor = "SST",
13460 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013461 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013462 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013463 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013464 .total_size = 256,
13465 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013466 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013467 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013468 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013469 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013470 .block_erasers =
13471 {
13472 {
13473 .eraseblocks = { {256 * 1024, 1} },
13474 .block_erase = erase_chip_block_jedec,
13475 }
13476 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013477 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013478 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013479 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013480 },
13481
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013482 {
13483 .vendor = "SST",
13484 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013485 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013486 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013487 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013488 .total_size = 256,
13489 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013490 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013491 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013492 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013493 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013494 .block_erasers =
13495 {
13496 {
13497 .eraseblocks = { {256 * 1024, 1} },
13498 .block_erase = erase_chip_block_jedec,
13499 }
13500 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013501 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013502 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013503 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013504 },
13505
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013506 {
13507 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +000013508 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013509 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013510 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013511 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013512 .total_size = 64,
13513 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013514 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +000013515 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013516 .probe = probe_jedec,
13517 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +000013518 .block_erasers =
13519 {
13520 {
13521 .eraseblocks = { {4 * 1024, 16} },
13522 .block_erase = erase_sector_jedec,
13523 }, {
13524 .eraseblocks = { {64 * 1024, 1} },
13525 .block_erase = erase_chip_block_jedec,
13526 }
13527 },
Sean Nelson35727f72010-01-28 23:55:12 +000013528 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013529 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013530 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +000013531 },
13532
13533 {
13534 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013535 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013536 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013537 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013538 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013539 .total_size = 128,
13540 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013541 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000013542 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013543 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013544 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013545 .block_erasers =
13546 {
13547 {
13548 .eraseblocks = { {4 * 1024, 32} },
13549 .block_erase = erase_sector_jedec,
13550 }, {
13551 .eraseblocks = { {128 * 1024, 1} },
13552 .block_erase = erase_chip_block_jedec,
13553 }
13554 },
Sean Nelson35727f72010-01-28 23:55:12 +000013555 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013556 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013557 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013558 },
13559
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013560 {
13561 .vendor = "SST",
13562 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013563 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013564 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013565 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013566 .total_size = 256,
13567 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013568 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +000013569 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013570 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013571 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013572 .block_erasers =
13573 {
13574 {
13575 .eraseblocks = { {4 * 1024, 64} },
13576 .block_erase = erase_sector_jedec,
13577 }, {
13578 .eraseblocks = { {256 * 1024, 1} },
13579 .block_erase = erase_chip_block_jedec,
13580 }
13581 },
Sean Nelson35727f72010-01-28 23:55:12 +000013582 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013583 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013584 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013585 },
13586
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013587 {
13588 .vendor = "SST",
13589 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013590 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013591 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013592 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013593 .total_size = 512,
13594 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013595 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +000013596 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013597 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013598 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013599 .block_erasers =
13600 {
13601 {
13602 .eraseblocks = { {4 * 1024, 128} },
13603 .block_erase = erase_sector_jedec,
13604 }, {
13605 .eraseblocks = { {512 * 1024, 1} },
13606 .block_erase = erase_chip_block_jedec,
13607 }
13608 },
Sean Nelson35727f72010-01-28 23:55:12 +000013609 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013610 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013611 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013612 },
13613
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013614 {
13615 .vendor = "SST",
13616 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013617 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013618 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013619 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013620 .total_size = 64,
13621 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013622 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +000013623 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013624 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013625 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013626 .block_erasers =
13627 {
13628 {
13629 .eraseblocks = { {4 * 1024, 16} },
13630 .block_erase = erase_sector_jedec,
13631 }, {
13632 .eraseblocks = { {64 * 1024, 1} },
13633 .block_erase = erase_chip_block_jedec,
13634 }
13635 },
Sean Nelson35727f72010-01-28 23:55:12 +000013636 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013637 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013638 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013639 },
13640
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013641 {
13642 .vendor = "SST",
13643 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013644 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013645 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013646 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013647 .total_size = 128,
13648 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013649 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +000013650 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013651 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013652 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013653 .block_erasers =
13654 {
13655 {
13656 .eraseblocks = { {4 * 1024, 32} },
13657 .block_erase = erase_sector_jedec,
13658 }, {
13659 .eraseblocks = { {128 * 1024, 1} },
13660 .block_erase = erase_chip_block_jedec,
13661 }
13662 },
Sean Nelson35727f72010-01-28 23:55:12 +000013663 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013664 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013665 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013666 },
13667
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013668 {
13669 .vendor = "SST",
13670 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013671 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013672 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013673 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013674 .total_size = 256,
13675 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013676 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner5c316f92015-02-08 21:57:52 +000013677 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013678 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013679 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013680 .block_erasers =
13681 {
13682 {
13683 .eraseblocks = { {4 * 1024, 64} },
13684 .block_erase = erase_sector_jedec,
13685 }, {
13686 .eraseblocks = { {256 * 1024, 1} },
13687 .block_erase = erase_chip_block_jedec,
13688 }
13689 },
Sean Nelson35727f72010-01-28 23:55:12 +000013690 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013691 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013692 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013693 },
13694
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013695 {
13696 .vendor = "SST",
13697 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013698 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013699 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013700 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013701 .total_size = 512,
13702 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013703 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013704 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013705 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013706 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013707 .block_erasers =
13708 {
13709 {
13710 .eraseblocks = { {4 * 1024, 128} },
13711 .block_erase = erase_sector_jedec,
13712 }, {
13713 .eraseblocks = { {512 * 1024, 1} },
13714 .block_erase = erase_chip_block_jedec,
13715 }
13716 },
Sean Nelson35727f72010-01-28 23:55:12 +000013717 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013718 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013719 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +000013720 },
FENG yu ningff692fb2008-12-08 18:15:10 +000013721
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013722 {
13723 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +000013724 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013725 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013726 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013727 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +000013728 .total_size = 1024,
13729 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013730 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +000013731 .tested = TEST_UNTESTED,
13732 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013733 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013734 .block_erasers =
13735 {
13736 {
13737 .eraseblocks = { {4 * 1024, 256} },
13738 .block_erase = erase_sector_jedec,
13739 }, {
13740 .eraseblocks = { {64 * 1024, 16} },
13741 .block_erase = erase_block_jedec,
13742 }, {
13743 .eraseblocks = { {1024 * 1024, 1} },
13744 .block_erase = erase_chip_block_jedec,
13745 }
13746 },
Sean Nelson35727f72010-01-28 23:55:12 +000013747 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013748 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013749 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +000013750 },
13751
13752 {
13753 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013754 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013755 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013756 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013757 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013758 .total_size = 256,
13759 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013760 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013761 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013762 .probe = probe_jedec,
13763 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013764 .block_erasers =
13765 {
13766 {
13767 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013768 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013769 }, {
13770 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013771 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013772 }, {
13773 .eraseblocks = { {256 * 1024, 1} },
13774 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13775 }
13776 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013777 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013778 .unlock = unlock_sst_fwhub,
13779 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013780 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013781 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013782 },
13783
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013784 {
13785 .vendor = "SST",
13786 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013787 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013788 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013789 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013790 .total_size = 384,
13791 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013792 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000013793 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013794 .probe = probe_jedec,
13795 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013796 .block_erasers =
13797 {
13798 {
13799 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013800 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013801 }, {
13802 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013803 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013804 }, {
13805 .eraseblocks = { {384 * 1024, 1} },
13806 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13807 }
13808 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013809 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013810 .unlock = unlock_sst_fwhub,
13811 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013812 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013813 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013814 },
13815
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013816 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013817 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
13818 * and is only honored for 64k block erase, but not 4k sector erase.
13819 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013820 .vendor = "SST",
13821 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013822 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013823 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013824 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013825 .total_size = 512,
13826 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013827 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013828 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013829 .probe = probe_jedec,
13830 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013831 .block_erasers =
13832 {
13833 {
13834 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013835 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013836 }, {
13837 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013838 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013839 }, {
13840 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +000013841 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013842 },
13843 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013844 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013845 .unlock = unlock_sst_fwhub,
13846 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013847 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013848 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013849 },
13850
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013851 {
13852 .vendor = "SST",
13853 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013854 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013855 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013856 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013857 .total_size = 512,
13858 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013859 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013860 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013861 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013862 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013863 .block_erasers =
13864 {
13865 {
13866 .eraseblocks = { {4 * 1024, 128} },
13867 .block_erase = erase_sector_49lfxxxc,
13868 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013869 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013870 {64 * 1024, 7},
13871 {32 * 1024, 1},
13872 {8 * 1024, 2},
13873 {16 * 1024, 1},
13874 },
Sean Nelson69e58112010-03-23 17:10:28 +000013875 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013876 }
13877 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013878 .printlock = printlock_regspace2_block_eraser_1,
13879 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013880 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013881 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013882 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013883 },
13884
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013885 {
13886 .vendor = "SST",
13887 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013888 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013889 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013890 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013891 .total_size = 1024,
13892 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013893 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000013894 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013895 .probe = probe_jedec,
13896 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013897 .block_erasers =
13898 {
13899 {
13900 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013901 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013902 }, {
13903 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013904 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013905 }, {
13906 .eraseblocks = { {1024 * 1024, 1} },
13907 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13908 }
13909 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013910 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013911 .unlock = unlock_sst_fwhub,
13912 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013913 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013914 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013915 },
13916
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013917 {
13918 .vendor = "SST",
13919 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013920 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013921 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013922 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013923 .total_size = 1024,
13924 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013925 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013926 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013927 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013928 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013929 .block_erasers =
13930 {
13931 {
13932 .eraseblocks = { {4 * 1024, 256} },
13933 .block_erase = erase_sector_49lfxxxc,
13934 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013935 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013936 {64 * 1024, 15},
13937 {32 * 1024, 1},
13938 {8 * 1024, 2},
13939 {16 * 1024, 1},
13940 },
Sean Nelson69e58112010-03-23 17:10:28 +000013941 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013942 }
13943 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013944 .printlock = printlock_regspace2_block_eraser_1,
13945 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013946 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013947 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013948 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013949 },
13950
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013951 {
13952 .vendor = "SST",
13953 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013954 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013955 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013956 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013957 .total_size = 2048,
13958 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013959 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013960 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013961 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013962 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013963 .block_erasers =
13964 {
13965 {
13966 .eraseblocks = { {4 * 1024, 512} },
13967 .block_erase = erase_sector_49lfxxxc,
13968 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013969 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013970 {64 * 1024, 31},
13971 {32 * 1024, 1},
13972 {8 * 1024, 2},
13973 {16 * 1024, 1},
13974 },
Sean Nelson69e58112010-03-23 17:10:28 +000013975 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013976 }
13977 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013978 .printlock = printlock_regspace2_block_eraser_1,
13979 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013980 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013981 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013982 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013983 },
13984
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013985 {
13986 .vendor = "SST",
13987 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013988 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013989 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013990 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013991 .total_size = 256,
13992 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013993 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +000013994 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013995 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013996 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013997 .block_erasers =
13998 {
13999 {
14000 .eraseblocks = { {4 * 1024, 64} },
14001 .block_erase = erase_sector_jedec,
14002 }, {
14003 .eraseblocks = { {16 * 1024, 16} },
14004 .block_erase = erase_block_jedec,
14005 }, {
14006 .eraseblocks = { {256 * 1024, 1} },
14007 .block_erase = NULL,
14008 }
14009 },
Sean Nelson35727f72010-01-28 23:55:12 +000014010 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014011 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014012 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +000014013 },
14014
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014015 {
14016 .vendor = "SST",
14017 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014018 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014019 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000014020 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014021 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +000014022 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014023 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000014024 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014025 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000014026 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000014027 .block_erasers =
14028 {
14029 {
14030 .eraseblocks = { {4 * 1024, 64} },
14031 .block_erase = erase_sector_jedec,
14032 }, {
14033 .eraseblocks = { {16 * 1024, 16} },
14034 .block_erase = erase_block_jedec,
14035 }, {
14036 .eraseblocks = { {256 * 1024, 1} },
14037 .block_erase = NULL,
14038 }
14039 },
Sean Nelson35727f72010-01-28 23:55:12 +000014040 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014041 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014042 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014043 },
14044
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014045 {
14046 .vendor = "SST",
14047 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014048 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014049 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000014050 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014051 .total_size = 512,
14052 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000014053 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000014054 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014055 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000014056 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000014057 .block_erasers =
14058 {
14059 {
14060 .eraseblocks = { {4 * 1024, 128} },
14061 .block_erase = erase_sector_jedec,
14062 }, {
14063 .eraseblocks = { {64 * 1024, 8} },
14064 .block_erase = erase_block_jedec,
14065 }, {
14066 .eraseblocks = { {512 * 1024, 1} },
14067 .block_erase = NULL,
14068 }
14069 },
Sean Nelson35727f72010-01-28 23:55:12 +000014070 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014071 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014072 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014073 },
14074
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014075 {
14076 .vendor = "SST",
14077 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014078 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014079 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000014080 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014081 .total_size = 512,
14082 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +000014083 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000014084 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +000014085 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014086 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000014087 .block_erasers =
14088 {
14089 {
14090 .eraseblocks = { {4 * 1024, 128} },
14091 .block_erase = erase_sector_jedec,
14092 }, {
14093 .eraseblocks = { {64 * 1024, 8} },
14094 .block_erase = erase_block_jedec,
14095 }, {
14096 .eraseblocks = { {512 * 1024, 1} },
14097 .block_erase = NULL,
14098 }
14099 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014100 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000014101 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014102 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014103 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014104 },
14105
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014106 {
14107 .vendor = "SST",
14108 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014109 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014110 .manufacture_id = SST_ID,
Elyes HAOUAS124ef382018-03-27 12:15:09 +020014111 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014112 .total_size = 1024,
14113 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000014114 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +000014115 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014116 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000014117 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +000014118 .block_erasers =
14119 {
14120 {
14121 .eraseblocks = { {4 * 1024, 256} },
14122 .block_erase = erase_sector_jedec,
14123 }, {
14124 .eraseblocks = { {64 * 1024, 16} },
14125 .block_erase = erase_block_jedec,
14126 }, {
14127 .eraseblocks = { {1024 * 1024, 1} },
14128 .block_erase = NULL,
14129 }
14130 },
Sean Nelson35727f72010-01-28 23:55:12 +000014131 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014132 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014133 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014134 },
14135
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014136 {
14137 .vendor = "SST",
14138 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014139 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014140 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000014141 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014142 .total_size = 2048,
14143 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014144 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014145 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014146 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014147 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000014148 .block_erasers =
14149 {
14150 {
14151 .eraseblocks = { {4 * 1024, 512} },
14152 .block_erase = erase_sector_49lfxxxc,
14153 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000014154 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000014155 {64 * 1024, 31},
14156 {32 * 1024, 1},
14157 {8 * 1024, 2},
14158 {16 * 1024, 1},
14159 },
Sean Nelson69e58112010-03-23 17:10:28 +000014160 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000014161 }
14162 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014163 .printlock = printlock_regspace2_block_eraser_1,
14164 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000014165 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014166 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014167 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014168 },
14169
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014170 {
14171 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014172 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014173 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014174 .manufacture_id = ST_ID,
14175 .model_id = ST_M29F002B,
14176 .total_size = 256,
14177 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014178 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014179 .tested = TEST_UNTESTED,
14180 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014181 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014182 .block_erasers =
14183 {
14184 {
14185 .eraseblocks = {
14186 {16 * 1024, 1},
14187 {8 * 1024, 2},
14188 {32 * 1024, 1},
14189 {64 * 1024, 3},
14190 },
14191 .block_erase = erase_sector_jedec,
14192 }, {
14193 .eraseblocks = { {256 * 1024, 1} },
14194 .block_erase = erase_chip_block_jedec,
14195 }
14196 },
Sean Nelson35727f72010-01-28 23:55:12 +000014197 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014198 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000014199 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000014200 },
14201
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014202 {
14203 .vendor = "ST",
14204 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014205 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014206 .manufacture_id = ST_ID,
14207 .model_id = ST_M29F002T,
14208 .total_size = 256,
14209 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014210 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +000014211 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014212 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014213 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014214 .block_erasers =
14215 {
14216 {
14217 .eraseblocks = {
14218 {64 * 1024, 3},
14219 {32 * 1024, 1},
14220 {8 * 1024, 2},
14221 {16 * 1024, 1},
14222 },
14223 .block_erase = erase_sector_jedec,
14224 }, {
14225 .eraseblocks = { {256 * 1024, 1} },
14226 .block_erase = erase_chip_block_jedec,
14227 }
14228 },
Sean Nelson35727f72010-01-28 23:55:12 +000014229 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014230 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000014231 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000014232 },
14233
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014234 {
14235 .vendor = "ST",
14236 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014237 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014238 .manufacture_id = ST_ID,
14239 .model_id = ST_M29F040B,
14240 .total_size = 512,
14241 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014242 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
14243 .tested = TEST_UNTESTED,
14244 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +000014245 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +000014246 .block_erasers =
14247 {
14248 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014249 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000014250 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014251 }, {
14252 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000014253 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014254 }
14255 },
Sean Nelson35727f72010-01-28 23:55:12 +000014256 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014257 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014258 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014259 },
14260
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014261 {
Sean Nelson35727f72010-01-28 23:55:12 +000014262 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014263 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014264 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014265 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014266 .manufacture_id = ST_ID,
14267 .model_id = ST_M29F400BB,
14268 .total_size = 512,
14269 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014270 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000014271 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014272 .probe = probe_jedec,
14273 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014274 .block_erasers =
14275 {
14276 {
14277 .eraseblocks = {
14278 {16 * 1024, 1},
14279 {8 * 1024, 2},
14280 {32 * 1024, 1},
14281 {64 * 1024, 7},
14282 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014283 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014284 }, {
14285 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014286 .block_erase = erase_chip_block_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014287 }
14288 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014289 .write = write_jedec_1,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014290 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014291 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014292 },
14293 {
14294 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
14295 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014296 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014297 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014298 .manufacture_id = ST_ID,
14299 .model_id = ST_M29F400BT,
14300 .total_size = 512,
14301 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014302 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014303 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014304 .probe = probe_jedec,
14305 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson56358aa2010-01-19 16:08:51 +000014306 .block_erasers =
14307 {
14308 {
14309 .eraseblocks = {
14310 {64 * 1024, 7},
14311 {32 * 1024, 1},
14312 {8 * 1024, 2},
14313 {16 * 1024, 1},
14314 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014315 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014316 }, {
14317 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014318 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014319 }
14320 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014321 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014322 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014323 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014324 },
14325
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014326 {
14327 .vendor = "ST",
14328 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014329 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014330 .manufacture_id = ST_ID,
14331 .model_id = ST_M29W010B,
14332 .total_size = 128,
14333 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014334 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014335 .tested = TEST_UNTESTED,
14336 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014337 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014338 .block_erasers =
14339 {
14340 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014341 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014342 .block_erase = erase_sector_jedec,
14343 }, {
14344 .eraseblocks = { {128 * 1024, 1} },
14345 .block_erase = erase_chip_block_jedec,
14346 }
14347 },
Sean Nelson35727f72010-01-28 23:55:12 +000014348 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014349 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014350 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014351 },
14352
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014353 {
14354 .vendor = "ST",
14355 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014356 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014357 .manufacture_id = ST_ID,
14358 .model_id = ST_M29W040B,
14359 .total_size = 512,
14360 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014361 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014362 .tested = TEST_UNTESTED,
14363 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014364 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014365 .block_erasers =
14366 {
14367 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014368 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014369 .block_erase = erase_sector_jedec,
14370 }, {
14371 .eraseblocks = { {512 * 1024, 1} },
14372 .block_erase = erase_chip_block_jedec,
14373 }
14374 },
Sean Nelson35727f72010-01-28 23:55:12 +000014375 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014376 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014377 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014378 },
14379
Stefan Taunereb582572012-09-21 12:52:50 +000014380 {
14381 .vendor = "ST",
14382 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014383 .bustype = BUS_PARALLEL,
Stefan Taunereb582572012-09-21 12:52:50 +000014384 .manufacture_id = ST_ID,
14385 .model_id = ST_M29W512B,
14386 .total_size = 64,
14387 .page_size = 64 * 1024,
14388 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauner0554ca52013-07-25 22:54:25 +000014389 .tested = TEST_OK_PREW,
Stefan Taunereb582572012-09-21 12:52:50 +000014390 .probe = probe_jedec,
14391 .probe_timing = TIMING_ZERO,
14392 .block_erasers =
14393 {
14394 {
14395 .eraseblocks = { {64 * 1024, 1} },
14396 .block_erase = erase_chip_block_jedec,
14397 }
14398 },
14399 .write = write_jedec_1,
14400 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014401 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +000014402 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +000014403
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014404 {
14405 .vendor = "ST",
14406 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014407 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014408 .manufacture_id = ST_ID,
14409 .model_id = ST_M50FLW040A,
14410 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014411 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014412 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014413 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014414 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014415 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014416 .block_erasers =
14417 {
14418 {
Sean Nelson329bde72010-01-19 16:39:19 +000014419 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014420 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014421 {64 * 1024, 5}, /* block */
14422 {4 * 1024, 16}, /* sector */
14423 {4 * 1024, 16}, /* sector */
14424 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014425 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014426 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014427 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014428 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014429 }
14430 },
Sean Nelson28accc22010-03-19 18:47:06 +000014431 .write = write_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014432 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014433 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014434 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014435 },
14436
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014437 {
14438 .vendor = "ST",
14439 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014440 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014441 .manufacture_id = ST_ID,
14442 .model_id = ST_M50FLW040B,
14443 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014444 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014445 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014446 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014447 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014448 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014449 .block_erasers =
14450 {
14451 {
Sean Nelson329bde72010-01-19 16:39:19 +000014452 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014453 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014454 {4 * 1024, 16}, /* sector */
14455 {64 * 1024, 5}, /* block */
14456 {4 * 1024, 16}, /* sector */
14457 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014458 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014459 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014460 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014461 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014462 }
14463 },
Sean Nelson28accc22010-03-19 18:47:06 +000014464 .write = write_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014465 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014466 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014467 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014468 },
14469
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014470 {
14471 .vendor = "ST",
14472 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014473 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014474 .manufacture_id = ST_ID,
14475 .model_id = ST_M50FLW080A,
14476 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014477 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014478 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014479 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014480 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014481 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014482 .block_erasers =
14483 {
14484 {
Sean Nelson329bde72010-01-19 16:39:19 +000014485 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014486 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014487 {64 * 1024, 13}, /* block */
14488 {4 * 1024, 16}, /* sector */
14489 {4 * 1024, 16}, /* sector */
14490 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014491 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014492 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014493 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014494 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014495 }
14496 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014497 .printlock = printlock_regspace2_block_eraser_0,
14498 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014499 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014500 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014501 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014502 },
14503
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014504 {
14505 .vendor = "ST",
14506 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014507 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014508 .manufacture_id = ST_ID,
14509 .model_id = ST_M50FLW080B,
14510 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014511 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014512 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014513 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014514 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014515 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014516 .block_erasers =
14517 {
14518 {
Sean Nelson329bde72010-01-19 16:39:19 +000014519 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014520 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014521 {4 * 1024, 16}, /* sector */
14522 {64 * 1024, 13}, /* block */
14523 {4 * 1024, 16}, /* sector */
14524 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014525 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014526 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014527 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014528 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014529 }
14530 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014531 .printlock = printlock_regspace2_block_eraser_0,
14532 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014533 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014534 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014535 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014536 },
14537
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014538 {
14539 .vendor = "ST",
14540 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014541 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014542 .manufacture_id = ST_ID,
14543 .model_id = ST_M50FW002,
14544 .total_size = 256,
Stefan Tauner4404f732013-09-12 08:28:56 +000014545 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014546 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014547 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014548 .probe = probe_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014549 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014550 .block_erasers =
14551 {
14552 {
14553 .eraseblocks = {
14554 {64 * 1024, 3},
14555 {32 * 1024, 1},
14556 {8 * 1024, 2},
14557 {16 * 1024, 1},
14558 },
Sean Nelson28accc22010-03-19 18:47:06 +000014559 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014560 }, {
Stefan Tauner5c316f92015-02-08 21:57:52 +000014561 .eraseblocks = { {256 * 1024, 1} },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014562 .block_erase = NULL, /* Only in A/A mux mode */
Sean Nelson56358aa2010-01-19 16:08:51 +000014563 }
14564 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014565 .printlock = printlock_regspace2_block_eraser_0,
14566 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014567 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014568 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014569 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014570 },
14571
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014572 {
14573 .vendor = "ST",
14574 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014575 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014576 .manufacture_id = ST_ID,
14577 .model_id = ST_M50FW016,
14578 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014579 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014580 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014581 .tested = TEST_UNTESTED,
14582 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014583 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014584 .block_erasers =
14585 {
14586 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014587 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson28accc22010-03-19 18:47:06 +000014588 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014589 }
14590 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014591 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014592 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014593 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014594 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014595 },
14596
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014597 {
14598 .vendor = "ST",
14599 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014600 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014601 .manufacture_id = ST_ID,
14602 .model_id = ST_M50FW040,
14603 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014604 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014605 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +000014606 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014607 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014608 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014609 .block_erasers =
14610 {
14611 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014612 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014613 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014614 }
14615 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014616 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014617 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014618 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014619 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014620 },
14621
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014622 {
14623 .vendor = "ST",
14624 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014625 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014626 .manufacture_id = ST_ID,
14627 .model_id = ST_M50FW080,
14628 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014629 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014630 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014631 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014632 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014633 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014634 .block_erasers =
14635 {
14636 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014637 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014638 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014639 }
14640 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014641 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014642 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014643 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014644 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014645 },
14646
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014647 {
14648 .vendor = "ST",
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014649 .name = "M50LPW080",
14650 .bustype = BUS_LPC, /* A/A Mux */
14651 .manufacture_id = ST_ID,
14652 .model_id = ST_M50LPW080,
14653 .total_size = 1024,
14654 .page_size = 0,
14655 .feature_bits = FEATURE_REGISTERMAP,
14656 .tested = TEST_UNTESTED,
14657 .probe = probe_82802ab,
14658 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14659 .block_erasers =
14660 {
14661 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014662 .eraseblocks = { {64 * 1024, 16} },
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014663 .block_erase = erase_block_82802ab,
14664 }
14665 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014666 .unlock = unlock_regspace2_uniform_64k,
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014667 .write = write_82802ab,
14668 .read = read_memmapped,
14669 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
14670 },
14671
14672 {
14673 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014674 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014675 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014676 .manufacture_id = ST_ID,
14677 .model_id = ST_M50LPW116,
14678 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014679 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014680 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014681 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014682 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +000014683 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014684 .block_erasers =
14685 {
14686 {
14687 .eraseblocks = {
14688 {4 * 1024, 16},
14689 {64 * 1024, 30},
14690 {32 * 1024, 1},
14691 {8 * 1024, 2},
14692 {16 * 1024, 1},
14693 },
Sean Nelson28accc22010-03-19 18:47:06 +000014694 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014695 }
14696 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014697 .printlock = printlock_regspace2_block_eraser_0,
14698 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014699 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014700 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014701 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014702 },
14703
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014704 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014705 .vendor = "SyncMOS/MoselVitelic",
14706 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014707 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014708 .manufacture_id = SYNCMOS_MVC_ID,
14709 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014710 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014711 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000014712 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014713 .tested = TEST_UNTESTED,
14714 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014715 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014716 .block_erasers =
14717 {
14718 {
14719 .eraseblocks = { {512, 256} },
14720 .block_erase = erase_sector_jedec,
14721 }, {
14722 .eraseblocks = { {128 * 1024, 1} },
14723 .block_erase = erase_chip_block_jedec,
14724 },
14725 },
Sean Nelson35727f72010-01-28 23:55:12 +000014726 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014727 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014728 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014729 },
14730
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014731 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014732 .vendor = "SyncMOS/MoselVitelic",
14733 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014734 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014735 .manufacture_id = SYNCMOS_MVC_ID,
14736 .model_id = SM_MVC_29C51001T,
14737 .total_size = 128,
14738 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000014739 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014740 .tested = TEST_UNTESTED,
14741 .probe = probe_jedec,
14742 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14743 .block_erasers =
14744 {
14745 {
14746 .eraseblocks = { {512, 256} },
14747 .block_erase = erase_sector_jedec,
14748 }, {
14749 .eraseblocks = { {128 * 1024, 1} },
14750 .block_erase = erase_chip_block_jedec,
14751 },
14752 },
14753 .write = write_jedec_1,
14754 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014755 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014756 },
14757
14758 {
14759 .vendor = "SyncMOS/MoselVitelic",
14760 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014761 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014762 .manufacture_id = SYNCMOS_MVC_ID,
14763 .model_id = SM_MVC_29C51002B,
14764 .total_size = 256,
14765 .page_size = 512,
14766 .feature_bits = FEATURE_EITHER_RESET,
14767 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014768 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014769 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014770 .block_erasers =
14771 {
14772 {
14773 .eraseblocks = { {512, 512} },
14774 .block_erase = erase_sector_jedec,
14775 }, {
14776 .eraseblocks = { {256 * 1024, 1} },
14777 .block_erase = erase_chip_block_jedec,
14778 },
14779 },
Sean Nelson35727f72010-01-28 23:55:12 +000014780 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014781 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000014782 },
14783
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014784 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014785 .vendor = "SyncMOS/MoselVitelic",
14786 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014787 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014788 .manufacture_id = SYNCMOS_MVC_ID,
14789 .model_id = SM_MVC_29C51002T,
14790 .total_size = 256,
14791 .page_size = 512,
14792 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000014793 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014794 .probe = probe_jedec,
14795 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14796 .block_erasers =
14797 {
14798 {
14799 .eraseblocks = { {512, 512} },
14800 .block_erase = erase_sector_jedec,
14801 }, {
14802 .eraseblocks = { {256 * 1024, 1} },
14803 .block_erase = erase_chip_block_jedec,
14804 },
14805 },
14806 .write = write_jedec_1,
14807 .read = read_memmapped,
14808 },
14809
14810 {
14811 .vendor = "SyncMOS/MoselVitelic",
14812 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014813 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014814 .manufacture_id = SYNCMOS_MVC_ID,
14815 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014816 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014817 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014818 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014819 .tested = TEST_UNTESTED,
14820 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014821 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +000014822 .block_erasers =
14823 {
14824 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014825 .eraseblocks = { {1024, 512} },
14826 .block_erase = erase_sector_jedec,
14827 }, {
14828 .eraseblocks = { {512 * 1024, 1} },
14829 .block_erase = erase_chip_block_jedec,
14830 },
14831 },
14832 .write = write_jedec_1,
14833 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014834 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014835 },
14836
14837 {
14838 .vendor = "SyncMOS/MoselVitelic",
14839 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014840 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014841 .manufacture_id = SYNCMOS_MVC_ID,
14842 .model_id = SM_MVC_29C51004T,
14843 .total_size = 512,
14844 .page_size = 1024,
14845 .feature_bits = FEATURE_EITHER_RESET,
14846 .tested = TEST_UNTESTED,
14847 .probe = probe_jedec,
14848 .probe_timing = TIMING_ZERO,
14849 .block_erasers =
14850 {
14851 {
14852 .eraseblocks = { {1024, 512} },
14853 .block_erase = erase_sector_jedec,
14854 }, {
14855 .eraseblocks = { {512 * 1024, 1} },
14856 .block_erase = erase_chip_block_jedec,
14857 },
14858 },
14859 .write = write_jedec_1,
14860 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014861 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014862 },
14863
14864 {
14865 .vendor = "SyncMOS/MoselVitelic",
14866 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014867 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014868 .manufacture_id = SYNCMOS_MVC_ID,
14869 .model_id = SM_MVC_29C31004B,
14870 .total_size = 512,
14871 .page_size = 1024,
14872 .feature_bits = FEATURE_EITHER_RESET,
14873 .tested = TEST_UNTESTED,
14874 .probe = probe_jedec,
14875 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14876 .block_erasers =
14877 {
14878 {
14879 .eraseblocks = { {1024, 512} },
14880 .block_erase = erase_sector_jedec,
14881 }, {
14882 .eraseblocks = { {512 * 1024, 1} },
14883 .block_erase = erase_chip_block_jedec,
14884 },
14885 },
14886 .write = write_jedec_1,
14887 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014888 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014889 },
14890
14891 {
14892 .vendor = "SyncMOS/MoselVitelic",
14893 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014894 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014895 .manufacture_id = SYNCMOS_MVC_ID,
14896 .model_id = SM_MVC_29C31004T,
14897 .total_size = 512,
14898 .page_size = 1024,
14899 .feature_bits = FEATURE_EITHER_RESET,
14900 .tested = TEST_UNTESTED,
14901 .probe = probe_jedec,
14902 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14903 .block_erasers =
14904 {
14905 {
14906 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014907 .block_erase = erase_sector_jedec,
14908 }, {
14909 .eraseblocks = { {512 * 1024, 1} },
14910 .block_erase = erase_chip_block_jedec,
14911 },
14912 },
Sean Nelson35727f72010-01-28 23:55:12 +000014913 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014914 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014915 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014916 },
14917
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014918 {
Uwe Hermanna106d152009-05-27 23:17:40 +000014919 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014920 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014921 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014922 .manufacture_id = TI_OLD_ID,
14923 .model_id = TI_TMS29F002RB,
14924 .total_size = 256,
14925 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000014926 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014927 .tested = TEST_UNTESTED,
14928 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014929 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014930 .block_erasers =
14931 {
14932 {
14933 .eraseblocks = {
14934 {16 * 1024, 1},
14935 {8 * 1024, 2},
14936 {32 * 1024, 1},
14937 {64 * 1024, 3},
14938 },
14939 .block_erase = erase_sector_jedec,
14940 }, {
14941 .eraseblocks = { {256 * 1024, 1} },
14942 .block_erase = erase_chip_block_jedec,
14943 },
14944 },
Sean Nelson35727f72010-01-28 23:55:12 +000014945 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014946 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014947 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014948 },
14949
14950 {
Uwe Hermanna106d152009-05-27 23:17:40 +000014951 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014952 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014953 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014954 .manufacture_id = TI_OLD_ID,
14955 .model_id = TI_TMS29F002RT,
14956 .total_size = 256,
14957 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000014958 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014959 .tested = TEST_UNTESTED,
14960 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014961 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014962 .block_erasers =
14963 {
14964 {
14965 .eraseblocks = {
14966 {64 * 1024, 3},
14967 {32 * 1024, 1},
14968 {8 * 1024, 2},
14969 {16 * 1024, 1},
14970 },
14971 .block_erase = erase_sector_jedec,
14972 }, {
14973 .eraseblocks = { {256 * 1024, 1} },
14974 .block_erase = erase_chip_block_jedec,
14975 },
14976 },
Sean Nelson35727f72010-01-28 23:55:12 +000014977 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014978 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014979 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014980 },
14981
14982 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014983 .vendor = "Winbond",
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000014984 .name = "W25Q40.V",
14985 .bustype = BUS_SPI,
14986 .manufacture_id = WINBOND_NEX_ID,
14987 .model_id = WINBOND_NEX_W25Q40_V,
14988 .total_size = 512,
14989 .page_size = 256,
14990 /* supports SFDP */
14991 /* OTP: 756B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
14992 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +000014993 .tested = TEST_OK_PREW,
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000014994 .probe = probe_spi_rdid,
14995 .probe_timing = TIMING_ZERO,
14996 .block_erasers =
14997 {
14998 {
14999 .eraseblocks = { {4 * 1024, 128} },
15000 .block_erase = spi_block_erase_20,
15001 }, {
15002 .eraseblocks = { {32 * 1024, 16} },
15003 .block_erase = spi_block_erase_52,
15004 }, {
15005 .eraseblocks = { {64 * 1024, 8} },
15006 .block_erase = spi_block_erase_d8,
15007 }, {
15008 .eraseblocks = { {512 * 1024, 1} },
15009 .block_erase = spi_block_erase_60,
15010 }, {
15011 .eraseblocks = { {512 * 1024, 1} },
15012 .block_erase = spi_block_erase_c7,
15013 }
15014 },
15015 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15016 .unlock = spi_disable_blockprotect,
15017 .write = spi_chip_write_256, /* Multi I/O supported */
15018 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
15019 .voltage = {2700, 3600},
15020 },
15021
15022 {
15023 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015024 .name = "W25Q80.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015025 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015026 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015027 .model_id = WINBOND_NEX_W25Q80_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015028 .total_size = 1024,
15029 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015030 /* supports SFDP */
15031 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015032 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000015033 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015034 .probe = probe_spi_rdid,
15035 .probe_timing = TIMING_ZERO,
15036 .block_erasers =
15037 {
15038 {
15039 .eraseblocks = { {4 * 1024, 256} },
15040 .block_erase = spi_block_erase_20,
15041 }, {
15042 .eraseblocks = { {32 * 1024, 32} },
15043 .block_erase = spi_block_erase_52,
15044 }, {
15045 .eraseblocks = { {64 * 1024, 16} },
15046 .block_erase = spi_block_erase_d8,
15047 }, {
15048 .eraseblocks = { {1024 * 1024, 1} },
15049 .block_erase = spi_block_erase_60,
15050 }, {
15051 .eraseblocks = { {1024 * 1024, 1} },
15052 .block_erase = spi_block_erase_c7,
15053 }
15054 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015055 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015056 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015057 .write = spi_chip_write_256,
15058 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015059 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000015060 },
15061
15062 {
15063 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015064 .name = "W25Q16.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015065 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015066 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015067 .model_id = WINBOND_NEX_W25Q16_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015068 .total_size = 2048,
15069 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015070 /* supports SFDP */
15071 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015072 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +000015073 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015074 .probe = probe_spi_rdid,
15075 .probe_timing = TIMING_ZERO,
15076 .block_erasers =
15077 {
15078 {
15079 .eraseblocks = { {4 * 1024, 512} },
15080 .block_erase = spi_block_erase_20,
15081 }, {
15082 .eraseblocks = { {32 * 1024, 64} },
15083 .block_erase = spi_block_erase_52,
15084 }, {
15085 .eraseblocks = { {64 * 1024, 32} },
15086 .block_erase = spi_block_erase_d8,
15087 }, {
15088 .eraseblocks = { {2 * 1024 * 1024, 1} },
15089 .block_erase = spi_block_erase_60,
15090 }, {
15091 .eraseblocks = { {2 * 1024 * 1024, 1} },
15092 .block_erase = spi_block_erase_c7,
15093 }
15094 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015095 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015096 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015097 .write = spi_chip_write_256,
15098 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015099 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000015100 },
15101
15102 {
15103 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015104 .name = "W25Q32.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015105 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015106 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015107 .model_id = WINBOND_NEX_W25Q32_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015108 .total_size = 4096,
15109 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015110 /* supports SFDP */
15111 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015112 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000015113 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015114 .probe = probe_spi_rdid,
15115 .probe_timing = TIMING_ZERO,
15116 .block_erasers =
15117 {
15118 {
15119 .eraseblocks = { {4 * 1024, 1024} },
15120 .block_erase = spi_block_erase_20,
15121 }, {
15122 .eraseblocks = { {32 * 1024, 128} },
15123 .block_erase = spi_block_erase_52,
15124 }, {
15125 .eraseblocks = { {64 * 1024, 64} },
15126 .block_erase = spi_block_erase_d8,
15127 }, {
15128 .eraseblocks = { {4 * 1024 * 1024, 1} },
15129 .block_erase = spi_block_erase_60,
15130 }, {
15131 .eraseblocks = { {4 * 1024 * 1024, 1} },
15132 .block_erase = spi_block_erase_c7,
15133 }
15134 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015135 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015136 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015137 .write = spi_chip_write_256,
15138 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015139 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000015140 },
15141
15142 {
15143 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015144 .name = "W25Q64.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015145 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +000015146 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015147 .model_id = WINBOND_NEX_W25Q64_V,
David Hendricksc4acec92010-06-24 11:39:57 +000015148 .total_size = 8192,
15149 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015150 /* supports SFDP */
15151 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015152 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000015153 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +000015154 .probe = probe_spi_rdid,
15155 .probe_timing = TIMING_ZERO,
15156 .block_erasers =
15157 {
15158 {
15159 .eraseblocks = { {4 * 1024, 2048} },
15160 .block_erase = spi_block_erase_20,
15161 }, {
15162 .eraseblocks = { {32 * 1024, 256} },
15163 .block_erase = spi_block_erase_52,
15164 }, {
15165 .eraseblocks = { {64 * 1024, 128} },
15166 .block_erase = spi_block_erase_d8,
15167 }, {
15168 .eraseblocks = { {8 * 1024 * 1024, 1} },
15169 .block_erase = spi_block_erase_60,
15170 }, {
15171 .eraseblocks = { {8 * 1024 * 1024, 1} },
15172 .block_erase = spi_block_erase_c7,
15173 }
15174 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015175 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015176 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +000015177 .write = spi_chip_write_256,
15178 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015179 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000015180 },
15181
15182 {
15183 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015184 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015185 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015186 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015187 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015188 .total_size = 16384,
15189 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015190 /* supports SFDP */
15191 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015192 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015193 .tested = TEST_OK_PREW,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015194 .probe = probe_spi_rdid,
15195 .probe_timing = TIMING_ZERO,
15196 .block_erasers =
15197 {
15198 {
15199 .eraseblocks = { {4 * 1024, 4096} },
15200 .block_erase = spi_block_erase_20,
15201 }, {
15202 .eraseblocks = { {32 * 1024, 512} },
15203 .block_erase = spi_block_erase_52,
15204 }, {
15205 .eraseblocks = { {64 * 1024, 256} },
15206 .block_erase = spi_block_erase_d8,
15207 }, {
15208 .eraseblocks = { {16 * 1024 * 1024, 1} },
15209 .block_erase = spi_block_erase_60,
15210 }, {
15211 .eraseblocks = { {16 * 1024 * 1024, 1} },
15212 .block_erase = spi_block_erase_c7,
15213 }
15214 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015215 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000015216 .unlock = spi_disable_blockprotect,
15217 .write = spi_chip_write_256,
15218 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015219 .voltage = {2700, 3600},
15220 },
15221
15222 {
15223 .vendor = "Winbond",
Boris Baykovaa6c3742016-06-11 18:29:01 +020015224 .name = "W25Q256.V",
15225 .bustype = BUS_SPI,
15226 .manufacture_id = WINBOND_NEX_ID,
15227 .model_id = WINBOND_NEX_W25Q256_V,
15228 .total_size = 32768,
15229 .page_size = 256,
15230 /* supports SFDP */
15231 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15232 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
Nico Huberaac81422017-11-10 22:54:13 +010015233 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_ENTER_WREN
15234 | FEATURE_4BA_EXT_ADDR | FEATURE_4BA_READ | FEATURE_4BA_FAST_READ,
15235 .tested = TEST_UNTESTED,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015236 .probe = probe_spi_rdid,
15237 .probe_timing = TIMING_ZERO,
15238 .block_erasers =
15239 {
15240 {
15241 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7a077222017-10-14 18:18:30 +020015242 .block_erase = spi_block_erase_20,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015243 }, {
15244 .eraseblocks = { {32 * 1024, 1024} },
Nico Huber7a077222017-10-14 18:18:30 +020015245 .block_erase = spi_block_erase_52,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015246 }, {
15247 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7a077222017-10-14 18:18:30 +020015248 .block_erase = spi_block_erase_d8,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015249 }, {
15250 .eraseblocks = { {32 * 1024 * 1024, 1} },
15251 .block_erase = spi_block_erase_60,
15252 }, {
15253 .eraseblocks = { {32 * 1024 * 1024, 1} },
15254 .block_erase = spi_block_erase_c7,
15255 }
15256 },
15257 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15258 .unlock = spi_disable_blockprotect,
15259 .write = spi_chip_write_256,
15260 .read = spi_chip_read,
15261 .voltage = {2700, 3600},
15262 },
15263
15264 {
15265 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015266 .name = "W25Q20.W",
15267 .bustype = BUS_SPI,
15268 .manufacture_id = WINBOND_NEX_ID,
15269 .model_id = WINBOND_NEX_W25Q20_W,
15270 .total_size = 256,
15271 .page_size = 256,
15272 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15273 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15274 .tested = TEST_UNTESTED,
15275 .probe = probe_spi_rdid,
15276 .probe_timing = TIMING_ZERO,
15277 .block_erasers =
15278 {
15279 {
15280 .eraseblocks = { {4 * 1024, 64} },
15281 .block_erase = spi_block_erase_20,
15282 }, {
15283 .eraseblocks = { {32 * 1024, 8} },
15284 .block_erase = spi_block_erase_52,
15285 }, {
15286 .eraseblocks = { {64 * 1024, 4} },
15287 .block_erase = spi_block_erase_d8,
15288 }, {
15289 .eraseblocks = { {256 * 1024, 1} },
15290 .block_erase = spi_block_erase_60,
15291 }, {
15292 .eraseblocks = { {256 * 1024, 1} },
15293 .block_erase = spi_block_erase_c7,
15294 }
15295 },
15296 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15297 .unlock = spi_disable_blockprotect,
15298 .write = spi_chip_write_256,
15299 .read = spi_chip_read,
15300 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15301 },
15302
15303 {
15304 .vendor = "Winbond",
Nico Huber25683572018-03-30 13:50:13 +020015305 .name = "W25Q40BW",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015306 .bustype = BUS_SPI,
15307 .manufacture_id = WINBOND_NEX_ID,
Nico Huber25683572018-03-30 13:50:13 +020015308 .model_id = WINBOND_NEX_W25Q40BW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015309 .total_size = 512,
15310 .page_size = 256,
15311 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15312 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15313 .tested = TEST_UNTESTED,
15314 .probe = probe_spi_rdid,
15315 .probe_timing = TIMING_ZERO,
15316 .block_erasers =
15317 {
15318 {
15319 .eraseblocks = { {4 * 1024, 128} },
15320 .block_erase = spi_block_erase_20,
15321 }, {
15322 .eraseblocks = { {32 * 1024, 16} },
15323 .block_erase = spi_block_erase_52,
15324 }, {
15325 .eraseblocks = { {64 * 1024, 8} },
15326 .block_erase = spi_block_erase_d8,
15327 }, {
15328 .eraseblocks = { {512 * 1024, 1} },
15329 .block_erase = spi_block_erase_60,
15330 }, {
15331 .eraseblocks = { {512 * 1024, 1} },
15332 .block_erase = spi_block_erase_c7,
15333 }
15334 },
15335 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15336 .unlock = spi_disable_blockprotect,
15337 .write = spi_chip_write_256,
15338 .read = spi_chip_read,
15339 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15340 },
15341
15342 {
15343 .vendor = "Winbond",
David Hendricksc699f5c2018-03-11 17:29:49 -070015344 .name = "W25Q80BW",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015345 .bustype = BUS_SPI,
15346 .manufacture_id = WINBOND_NEX_ID,
David Hendricksc699f5c2018-03-11 17:29:49 -070015347 .model_id = WINBOND_NEX_W25Q80BW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015348 .total_size = 1024,
15349 .page_size = 256,
15350 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15351 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000015352 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015353 .probe = probe_spi_rdid,
15354 .probe_timing = TIMING_ZERO,
15355 .block_erasers =
15356 {
15357 {
15358 .eraseblocks = { {4 * 1024, 256} },
15359 .block_erase = spi_block_erase_20,
15360 }, {
15361 .eraseblocks = { {32 * 1024, 32} },
15362 .block_erase = spi_block_erase_52,
15363 }, {
15364 .eraseblocks = { {64 * 1024, 16} },
15365 .block_erase = spi_block_erase_d8,
15366 }, {
15367 .eraseblocks = { {1 * 1024 * 1024, 1} },
15368 .block_erase = spi_block_erase_60,
15369 }, {
15370 .eraseblocks = { {1 * 1024 * 1024, 1} },
15371 .block_erase = spi_block_erase_c7,
15372 }
15373 },
15374 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15375 .unlock = spi_disable_blockprotect,
15376 .write = spi_chip_write_256,
15377 .read = spi_chip_read,
15378 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15379 },
Nico Huber25683572018-03-30 13:50:13 +020015380
15381 {
15382 .vendor = "Winbond",
15383 .name = "W25Q40EW",
15384 .bustype = BUS_SPI,
15385 .manufacture_id = WINBOND_NEX_ID,
15386 .model_id = WINBOND_NEX_W25Q40EW,
15387 .total_size = 512,
15388 .page_size = 256,
15389 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15390 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15391 .tested = TEST_UNTESTED,
15392 .probe = probe_spi_rdid,
15393 .probe_timing = TIMING_ZERO,
15394 .block_erasers =
15395 {
15396 {
15397 .eraseblocks = { {4 * 1024, 128} },
15398 .block_erase = spi_block_erase_20,
15399 }, {
15400 .eraseblocks = { {32 * 1024, 16} },
15401 .block_erase = spi_block_erase_52,
15402 }, {
15403 .eraseblocks = { {64 * 1024, 8} },
15404 .block_erase = spi_block_erase_d8,
15405 }, {
15406 .eraseblocks = { {512 * 1024, 1} },
15407 .block_erase = spi_block_erase_60,
15408 }, {
15409 .eraseblocks = { {512 * 1024, 1} },
15410 .block_erase = spi_block_erase_c7,
15411 }
15412 },
15413 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15414 .unlock = spi_disable_blockprotect,
15415 .write = spi_chip_write_256,
15416 .read = spi_chip_read,
15417 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
15418 },
15419
Stanislav Sedovf5775442018-03-07 14:16:51 -080015420 {
15421 .vendor = "Winbond",
15422 .name = "W25Q80EW",
15423 .bustype = BUS_SPI,
15424 .manufacture_id = WINBOND_NEX_ID,
15425 .model_id = WINBOND_NEX_W25Q80EW,
15426 .total_size = 1024,
15427 .page_size = 256,
15428 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15429 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15430 .tested = TEST_OK_PREW,
15431 .probe = probe_spi_rdid,
15432 .probe_timing = TIMING_ZERO,
15433 .block_erasers =
15434 {
15435 {
15436 .eraseblocks = { {4 * 1024, 256} },
15437 .block_erase = spi_block_erase_20,
15438 }, {
15439 .eraseblocks = { {32 * 1024, 32} },
15440 .block_erase = spi_block_erase_52,
15441 }, {
15442 .eraseblocks = { {64 * 1024, 16} },
15443 .block_erase = spi_block_erase_d8,
15444 }, {
15445 .eraseblocks = { {1 * 1024 * 1024, 1} },
15446 .block_erase = spi_block_erase_60,
15447 }, {
15448 .eraseblocks = { {1 * 1024 * 1024, 1} },
15449 .block_erase = spi_block_erase_c7,
15450 }
15451 },
15452 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15453 .unlock = spi_disable_blockprotect,
15454 .write = spi_chip_write_256,
15455 .read = spi_chip_read,
15456 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
15457 },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015458
15459 {
15460 .vendor = "Winbond",
15461 .name = "W25Q16.W",
15462 .bustype = BUS_SPI,
15463 .manufacture_id = WINBOND_NEX_ID,
15464 .model_id = WINBOND_NEX_W25Q16_W,
15465 .total_size = 2048,
15466 .page_size = 256,
15467 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15468 /* QPI enable 0x38, disable 0xFF */
15469 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15470 .tested = TEST_UNTESTED,
15471 .probe = probe_spi_rdid,
15472 .probe_timing = TIMING_ZERO,
15473 .block_erasers =
15474 {
15475 {
15476 .eraseblocks = { {4 * 1024, 512} },
15477 .block_erase = spi_block_erase_20,
15478 }, {
15479 .eraseblocks = { {32 * 1024, 64} },
15480 .block_erase = spi_block_erase_52,
15481 }, {
15482 .eraseblocks = { {64 * 1024, 32} },
15483 .block_erase = spi_block_erase_d8,
15484 }, {
15485 .eraseblocks = { {2 * 1024 * 1024, 1} },
15486 .block_erase = spi_block_erase_60,
15487 }, {
15488 .eraseblocks = { {2 * 1024 * 1024, 1} },
15489 .block_erase = spi_block_erase_c7,
15490 }
15491 },
15492 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15493 .unlock = spi_disable_blockprotect,
15494 .write = spi_chip_write_256,
15495 .read = spi_chip_read,
15496 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15497 },
15498
15499 {
15500 .vendor = "Winbond",
15501 .name = "W25Q32.W",
15502 .bustype = BUS_SPI,
15503 .manufacture_id = WINBOND_NEX_ID,
15504 .model_id = WINBOND_NEX_W25Q32_W,
15505 .total_size = 4096,
15506 .page_size = 256,
15507 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15508 /* QPI enable 0x38, disable 0xFF */
15509 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15510 .tested = TEST_OK_PREW,
15511 .probe = probe_spi_rdid,
15512 .probe_timing = TIMING_ZERO,
15513 .block_erasers =
15514 {
15515 {
15516 .eraseblocks = { {4 * 1024, 1024} },
15517 .block_erase = spi_block_erase_20,
15518 }, {
15519 .eraseblocks = { {32 * 1024, 128} },
15520 .block_erase = spi_block_erase_52,
15521 }, {
15522 .eraseblocks = { {64 * 1024, 64} },
15523 .block_erase = spi_block_erase_d8,
15524 }, {
15525 .eraseblocks = { {4 * 1024 * 1024, 1} },
15526 .block_erase = spi_block_erase_60,
15527 }, {
15528 .eraseblocks = { {4 * 1024 * 1024, 1} },
15529 .block_erase = spi_block_erase_c7,
15530 }
15531 },
15532 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15533 .unlock = spi_disable_blockprotect,
15534 .write = spi_chip_write_256,
15535 .read = spi_chip_read,
15536 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15537 },
15538
15539 {
15540 .vendor = "Winbond",
15541 .name = "W25Q64.W",
15542 .bustype = BUS_SPI,
15543 .manufacture_id = WINBOND_NEX_ID,
15544 .model_id = WINBOND_NEX_W25Q64_W,
15545 .total_size = 8192,
15546 .page_size = 256,
15547 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15548 /* QPI enable 0x38, disable 0xFF */
15549 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015550 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015551 .probe = probe_spi_rdid,
15552 .probe_timing = TIMING_ZERO,
15553 .block_erasers =
15554 {
15555 {
15556 .eraseblocks = { {4 * 1024, 2048} },
15557 .block_erase = spi_block_erase_20,
15558 }, {
15559 .eraseblocks = { {32 * 1024, 256} },
15560 .block_erase = spi_block_erase_52,
15561 }, {
15562 .eraseblocks = { {64 * 1024, 128} },
15563 .block_erase = spi_block_erase_d8,
15564 }, {
15565 .eraseblocks = { {8 * 1024 * 1024, 1} },
15566 .block_erase = spi_block_erase_60,
15567 }, {
15568 .eraseblocks = { {8 * 1024 * 1024, 1} },
15569 .block_erase = spi_block_erase_c7,
15570 }
15571 },
15572 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15573 .unlock = spi_disable_blockprotect,
15574 .write = spi_chip_write_256,
15575 .read = spi_chip_read,
15576 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000015577 },
15578
15579 {
15580 .vendor = "Winbond",
Nico Huber70eed9f2017-04-24 22:19:27 +020015581 .name = "W25Q128.W",
15582 .bustype = BUS_SPI,
15583 .manufacture_id = WINBOND_NEX_ID,
15584 .model_id = WINBOND_NEX_W25Q128_W,
15585 .total_size = 16384,
15586 .page_size = 256,
15587 /* supports SFDP */
15588 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15589 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
David Hendricks48729d32017-12-08 14:44:07 -080015590 .tested = TEST_OK_PREW,
Nico Huber70eed9f2017-04-24 22:19:27 +020015591 .probe = probe_spi_rdid,
15592 .probe_timing = TIMING_ZERO,
15593 .block_erasers =
15594 {
15595 {
15596 .eraseblocks = { {4 * 1024, 4096} },
15597 .block_erase = spi_block_erase_20,
15598 }, {
15599 .eraseblocks = { {32 * 1024, 512} },
15600 .block_erase = spi_block_erase_52,
15601 }, {
15602 .eraseblocks = { {64 * 1024, 256} },
15603 .block_erase = spi_block_erase_d8,
15604 }, {
15605 .eraseblocks = { {16 * 1024 * 1024, 1} },
15606 .block_erase = spi_block_erase_60,
15607 }, {
15608 .eraseblocks = { {16 * 1024 * 1024, 1} },
15609 .block_erase = spi_block_erase_c7,
15610 }
15611 },
15612 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15613 .unlock = spi_disable_blockprotect,
15614 .write = spi_chip_write_256,
15615 .read = spi_chip_read,
15616 .voltage = {1650, 1950},
15617 },
15618
15619 {
15620 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015621 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015622 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015623 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015624 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015625 .total_size = 128,
15626 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015627 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000015628 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015629 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015630 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015631 .block_erasers =
15632 {
15633 {
15634 .eraseblocks = { {4 * 1024, 32} },
15635 .block_erase = spi_block_erase_20,
15636 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015637 .eraseblocks = { {64 * 1024, 2} },
15638 .block_erase = spi_block_erase_d8,
15639 }, {
15640 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015641 .block_erase = spi_block_erase_c7,
15642 }
15643 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015644 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015645 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015646 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015647 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015648 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015649 },
15650
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015651 {
15652 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015653 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015654 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015655 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015656 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015657 .total_size = 256,
15658 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015659 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015660 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015661 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015662 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015663 .block_erasers =
15664 {
15665 {
15666 .eraseblocks = { {4 * 1024, 64} },
15667 .block_erase = spi_block_erase_20,
15668 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015669 .eraseblocks = { {64 * 1024, 4} },
15670 .block_erase = spi_block_erase_d8,
15671 }, {
15672 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015673 .block_erase = spi_block_erase_c7,
15674 }
15675 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015676 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015677 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015678 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015679 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015680 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015681 },
15682
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015683 {
15684 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015685 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015686 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015687 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015688 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015689 .total_size = 512,
15690 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015691 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +000015692 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015693 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015694 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015695 .block_erasers =
15696 {
15697 {
15698 .eraseblocks = { {4 * 1024, 128} },
15699 .block_erase = spi_block_erase_20,
15700 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015701 .eraseblocks = { {64 * 1024, 8} },
15702 .block_erase = spi_block_erase_d8,
15703 }, {
15704 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015705 .block_erase = spi_block_erase_c7,
15706 }
15707 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015708 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015709 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015710 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015711 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015712 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015713 },
15714
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015715 {
15716 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015717 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015718 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015719 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015720 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015721 .total_size = 1024,
15722 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015723 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +000015724 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015725 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015726 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015727 .block_erasers =
15728 {
15729 {
15730 .eraseblocks = { {4 * 1024, 256} },
15731 .block_erase = spi_block_erase_20,
15732 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015733 .eraseblocks = { {64 * 1024, 16} },
15734 .block_erase = spi_block_erase_d8,
15735 }, {
15736 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015737 .block_erase = spi_block_erase_c7,
15738 }
15739 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015740 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015741 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015742 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015743 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015744 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015745 },
15746
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015747 {
15748 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015749 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015750 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000015751 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015752 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000015753 .total_size = 2048,
15754 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015755 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000015756 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000015757 .probe = probe_spi_rdid,
15758 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015759 .block_erasers =
15760 {
15761 {
15762 .eraseblocks = { {4 * 1024, 512} },
15763 .block_erase = spi_block_erase_20,
15764 }, {
15765 .eraseblocks = { {32 * 1024, 64} },
15766 .block_erase = spi_block_erase_52,
15767 }, {
15768 .eraseblocks = { {64 * 1024, 32} },
15769 .block_erase = spi_block_erase_d8,
15770 }, {
15771 .eraseblocks = { {2 * 1024 * 1024, 1} },
15772 .block_erase = spi_block_erase_60,
15773 }, {
15774 .eraseblocks = { {2 * 1024 * 1024, 1} },
15775 .block_erase = spi_block_erase_c7,
15776 }
15777 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015778 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015779 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000015780 .write = spi_chip_write_256,
15781 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015782 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000015783 },
15784
15785 {
15786 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015787 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015788 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000015789 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015790 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000015791 .total_size = 4096,
15792 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015793 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000015794 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000015795 .probe = probe_spi_rdid,
15796 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015797 .block_erasers =
15798 {
15799 {
15800 .eraseblocks = { {4 * 1024, 1024} },
15801 .block_erase = spi_block_erase_20,
15802 }, {
15803 .eraseblocks = { {32 * 1024, 128} },
15804 .block_erase = spi_block_erase_52,
15805 }, {
15806 .eraseblocks = { {64 * 1024, 64} },
15807 .block_erase = spi_block_erase_d8,
15808 }, {
15809 .eraseblocks = { {4 * 1024 * 1024, 1} },
15810 .block_erase = spi_block_erase_60,
15811 }, {
15812 .eraseblocks = { {4 * 1024 * 1024, 1} },
15813 .block_erase = spi_block_erase_c7,
15814 }
15815 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015816 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015817 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000015818 .write = spi_chip_write_256,
15819 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015820 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000015821 },
15822
15823 {
15824 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015825 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015826 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000015827 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015828 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000015829 .total_size = 8192,
15830 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015831 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000015832 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000015833 .probe = probe_spi_rdid,
15834 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015835 .block_erasers =
15836 {
15837 {
15838 .eraseblocks = { {4 * 1024, 2048} },
15839 .block_erase = spi_block_erase_20,
15840 }, {
15841 .eraseblocks = { {32 * 1024, 256} },
15842 .block_erase = spi_block_erase_52,
15843 }, {
15844 .eraseblocks = { {64 * 1024, 128} },
15845 .block_erase = spi_block_erase_d8,
15846 }, {
15847 .eraseblocks = { {8 * 1024 * 1024, 1} },
15848 .block_erase = spi_block_erase_60,
15849 }, {
15850 .eraseblocks = { {8 * 1024 * 1024, 1} },
15851 .block_erase = spi_block_erase_c7,
15852 }
15853 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015854 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015855 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000015856 .write = spi_chip_write_256,
15857 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015858 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000015859 },
15860
15861 {
David Hendricksc9ee0ed2018-02-11 17:40:53 -080015862 .vendor = "Winbond",
15863 .name = "W25P80",
15864 .bustype = BUS_SPI,
15865 .manufacture_id = WINBOND_NEX_ID,
15866 .model_id = WINBOND_NEX_W25P80,
15867 .total_size = 1024,
15868 .page_size = 256,
15869 .feature_bits = FEATURE_WRSR_WREN,
15870 .tested = TEST_UNTESTED,
15871 .probe = probe_spi_rdid,
15872 .probe_timing = TIMING_ZERO,
15873 .block_erasers =
15874 {
15875 {
15876 .eraseblocks = { {64 * 1024, 16} },
15877 .block_erase = spi_block_erase_d8,
15878 }, {
15879 .eraseblocks = { {1024 * 1024, 1} },
15880 .block_erase = spi_block_erase_c7,
15881 }
15882 },
15883 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15884 .unlock = spi_disable_blockprotect,
15885 .write = spi_chip_write_256,
15886 .read = spi_chip_read, /* Fast read (0x0B) supported */
15887 .voltage = {2700, 3600},
15888 },
15889
15890 {
15891 .vendor = "Winbond",
15892 .name = "W25P16",
15893 .bustype = BUS_SPI,
15894 .manufacture_id = WINBOND_NEX_ID,
15895 .model_id = WINBOND_NEX_W25P16,
15896 .total_size = 2048,
15897 .page_size = 256,
15898 .feature_bits = FEATURE_WRSR_WREN,
15899 .tested = TEST_UNTESTED,
15900 .probe = probe_spi_rdid,
15901 .probe_timing = TIMING_ZERO,
15902 .block_erasers =
15903 {
15904 {
15905 .eraseblocks = { {64 * 1024, 32} },
15906 .block_erase = spi_block_erase_d8,
15907 }, {
15908 .eraseblocks = { {2048 * 1024, 1} },
15909 .block_erase = spi_block_erase_c7,
15910 }
15911 },
15912 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15913 .unlock = spi_disable_blockprotect,
15914 .write = spi_chip_write_256,
15915 .read = spi_chip_read, /* Fast read (0x0B) supported */
15916 .voltage = {2700, 3600},
15917 },
15918
15919 {
15920 .vendor = "Winbond",
15921 .name = "W25P32",
15922 .bustype = BUS_SPI,
15923 .manufacture_id = WINBOND_NEX_ID,
15924 .model_id = WINBOND_NEX_W25P32,
15925 .total_size = 4096,
15926 .page_size = 256,
15927 .feature_bits = FEATURE_WRSR_WREN,
15928 .tested = TEST_UNTESTED,
15929 .probe = probe_spi_rdid,
15930 .probe_timing = TIMING_ZERO,
15931 .block_erasers =
15932 {
15933 {
15934 .eraseblocks = { {64 * 1024, 64} },
15935 .block_erase = spi_block_erase_d8,
15936 }, {
15937 .eraseblocks = { {4096 * 1024, 1} },
15938 .block_erase = spi_block_erase_c7,
15939 }
15940 },
15941 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15942 .unlock = spi_disable_blockprotect,
15943 .write = spi_chip_write_256,
15944 .read = spi_chip_read, /* Fast read (0x0B) supported */
15945 .voltage = {2700, 3600},
15946 },
15947 {
Zheng Bao1db2b752009-11-26 11:05:01 +000015948 .vendor = "Winbond",
Urja Rannikko2a1aaba2015-06-20 11:53:10 +000015949 .name = "W29C512A/W29EE512",
15950 .bustype = BUS_PARALLEL,
15951 .manufacture_id = WINBOND_ID,
15952 .model_id = WINBOND_W29C512A,
15953 .total_size = 64,
15954 .page_size = 128,
15955 .feature_bits = FEATURE_LONG_RESET,
15956 .tested = TEST_OK_PREW,
15957 .probe = probe_jedec,
15958 .probe_timing = 10,
15959 .block_erasers =
15960 {
15961 {
15962 .eraseblocks = { {64 * 1024, 1} },
15963 .block_erase = erase_chip_block_jedec,
15964 }
15965 },
15966 .write = write_jedec,
15967 .read = read_memmapped,
15968 .voltage = {4500, 5500},
15969 },
15970
15971 {
15972 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015973 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015974 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015975 .manufacture_id = WINBOND_ID,
15976 .model_id = WINBOND_W29C010,
15977 .total_size = 128,
15978 .page_size = 128,
15979 .feature_bits = FEATURE_LONG_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000015980 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015981 .probe = probe_w29ee011,
15982 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
15983 .block_erasers =
15984 {
15985 {
15986 .eraseblocks = { {128 * 1024, 1} },
15987 .block_erase = erase_chip_block_jedec,
15988 }
15989 },
15990 .write = write_jedec,
15991 .read = read_memmapped,
15992 },
15993
15994 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
15995 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000015996 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015997 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015998 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015999 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016000 .total_size = 128,
16001 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016002 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000016003 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016004 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000016005 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016006 .block_erasers =
16007 {
16008 {
16009 .eraseblocks = { {128 * 1024, 1} },
16010 .block_erase = erase_chip_block_jedec,
16011 }
16012 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016013 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016014 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000016015 },
16016
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016017 {
16018 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016019 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016020 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016021 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016022 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016023 .total_size = 256,
16024 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016025 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016026 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016027 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016028 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016029 .block_erasers =
16030 {
16031 {
16032 .eraseblocks = { {256 * 1024, 1} },
16033 .block_erase = erase_chip_block_jedec,
16034 }
16035 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016036 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016037 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016038 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016039 },
16040
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016041 {
16042 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016043 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016044 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016045 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016046 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016047 .total_size = 512,
16048 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000016049 .feature_bits = FEATURE_LONG_RESET,
16050 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016051 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000016052 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016053 .block_erasers =
16054 {
16055 {
16056 .eraseblocks = { {512 * 1024, 1} },
16057 .block_erase = erase_chip_block_jedec,
16058 }
16059 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016060 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016061 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016062 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016063 },
16064
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016065 {
16066 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000016067 .name = "W29GL032CB",
16068 .bustype = BUS_PARALLEL,
16069 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16070 .model_id = WINBOND_W29GL032CB,
16071 .total_size = 4096,
16072 .page_size = 128 * 1024, /* actual page size is 16 */
16073 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16074 .tested = TEST_UNTESTED,
16075 .probe = probe_jedec_29gl,
16076 .probe_timing = TIMING_ZERO,
16077 .block_erasers =
16078 {
16079 {
16080 .eraseblocks = {
16081 {8 * 1024, 8},
16082 {64 * 1024, 63},
16083 },
16084 .block_erase = erase_sector_jedec,
16085 }, {
16086 .eraseblocks = { {4 * 1024 * 1024, 1} },
16087 .block_erase = erase_chip_block_jedec,
16088 },
16089 },
16090 .write = write_jedec_1,
16091 .read = read_memmapped,
16092 .voltage = {2700, 3600},
16093 },
16094
16095 {
16096 .vendor = "Winbond",
16097 .name = "W29GL032CT",
16098 .bustype = BUS_PARALLEL,
16099 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16100 .model_id = WINBOND_W29GL032CT,
16101 .total_size = 4096,
16102 .page_size = 128 * 1024, /* actual page size is 16 */
16103 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16104 .tested = TEST_UNTESTED,
16105 .probe = probe_jedec_29gl,
16106 .probe_timing = TIMING_ZERO,
16107 .block_erasers =
16108 {
16109 {
16110 .eraseblocks = {
16111 {64 * 1024, 63},
16112 {8 * 1024, 8},
16113 },
16114 .block_erase = erase_sector_jedec,
16115 }, {
16116 .eraseblocks = { {4 * 1024 * 1024, 1} },
16117 .block_erase = erase_chip_block_jedec,
16118 },
16119 },
16120 .write = write_jedec_1,
16121 .read = read_memmapped,
16122 .voltage = {2700, 3600},
16123 },
16124
16125 {
16126 .vendor = "Winbond",
16127 .name = "W29GL032CH/L",
16128 .bustype = BUS_PARALLEL,
16129 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16130 .model_id = WINBOND_W29GL032CHL,
16131 .total_size = 4096,
16132 .page_size = 128 * 1024, /* actual page size is 16 */
16133 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16134 .tested = TEST_UNTESTED,
16135 .probe = probe_jedec_29gl,
16136 .probe_timing = TIMING_ZERO,
16137 .block_erasers =
16138 {
16139 {
16140 .eraseblocks = { {64 * 1024, 64} },
16141 .block_erase = erase_sector_jedec,
16142 }, {
16143 .eraseblocks = { {4 * 1024 * 1024, 1} },
16144 .block_erase = erase_chip_block_jedec,
16145 },
16146 },
16147 .write = write_jedec_1,
16148 .read = read_memmapped,
16149 .voltage = {2700, 3600},
16150 },
16151
16152 {
16153 .vendor = "Winbond",
16154 .name = "W29GL064CB",
16155 .bustype = BUS_PARALLEL,
16156 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16157 .model_id = WINBOND_W29GL064CB,
16158 .total_size = 8192,
16159 .page_size = 128 * 1024, /* actual page size is 16 */
16160 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16161 .tested = TEST_UNTESTED,
16162 .probe = probe_jedec_29gl,
16163 .probe_timing = TIMING_ZERO,
16164 .block_erasers =
16165 {
16166 {
16167 .eraseblocks = {
16168 {8 * 1024, 8},
16169 {64 * 1024, 127},
16170 },
16171 .block_erase = erase_sector_jedec,
16172 }, {
16173 .eraseblocks = { {8 * 1024 * 1024, 1} },
16174 .block_erase = erase_chip_block_jedec,
16175 },
16176 },
16177 .write = write_jedec_1,
16178 .read = read_memmapped,
16179 .voltage = {2700, 3600},
16180 },
16181
16182 {
16183 .vendor = "Winbond",
16184 .name = "W29GL064CT",
16185 .bustype = BUS_PARALLEL,
16186 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16187 .model_id = WINBOND_W29GL064CT,
16188 .total_size = 8192,
16189 .page_size = 128 * 1024, /* actual page size is 16 */
16190 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16191 .tested = TEST_UNTESTED,
16192 .probe = probe_jedec_29gl,
16193 .probe_timing = TIMING_ZERO,
16194 .block_erasers =
16195 {
16196 {
16197 .eraseblocks = {
16198 {64 * 1024, 127},
16199 {8 * 1024, 8},
16200 },
16201 .block_erase = erase_sector_jedec,
16202 }, {
16203 .eraseblocks = { {8 * 1024 * 1024, 1} },
16204 .block_erase = erase_chip_block_jedec,
16205 },
16206 },
16207 .write = write_jedec_1,
16208 .read = read_memmapped,
16209 .voltage = {2700, 3600},
16210 },
16211
16212 {
16213 .vendor = "Winbond",
16214 .name = "W29GL064CH/L",
16215 .bustype = BUS_PARALLEL,
16216 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16217 .model_id = WINBOND_W29GL064CHL,
16218 .total_size = 8192,
16219 .page_size = 128 * 1024, /* actual page size is 16 */
16220 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16221 .tested = TEST_UNTESTED,
16222 .probe = probe_jedec_29gl,
16223 .probe_timing = TIMING_ZERO,
16224 .block_erasers =
16225 {
16226 {
16227 .eraseblocks = { {64 * 1024, 128} },
16228 .block_erase = erase_sector_jedec,
16229 }, {
16230 .eraseblocks = { {8 * 1024 * 1024, 1} },
16231 .block_erase = erase_chip_block_jedec,
16232 },
16233 },
16234 .write = write_jedec_1,
16235 .read = read_memmapped,
16236 .voltage = {2700, 3600},
16237 },
16238
16239 {
16240 .vendor = "Winbond",
16241 .name = "W29GL128C",
16242 .bustype = BUS_PARALLEL,
16243 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16244 .model_id = WINBOND_W29GL128CHL,
16245 .total_size = 16384,
16246 .page_size = 128 * 1024, /* actual page size is 16 */
16247 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16248 .tested = TEST_UNTESTED,
16249 .probe = probe_jedec_29gl,
16250 .probe_timing = TIMING_ZERO,
16251 .block_erasers =
16252 {
16253 {
16254 .eraseblocks = { {128 * 1024, 128} },
16255 .block_erase = erase_sector_jedec,
16256 }, {
16257 .eraseblocks = { {16 * 1024 * 1024, 1} },
16258 .block_erase = erase_chip_block_jedec,
16259 },
16260 },
16261 .write = write_jedec_1,
16262 .read = read_memmapped,
16263 .voltage = {2700, 3600},
16264 },
16265
16266 {
16267 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000016268 .name = "W39F010",
16269 .bustype = BUS_PARALLEL,
16270 .manufacture_id = WINBOND_ID,
16271 .model_id = WINBOND_W39F010,
16272 .total_size = 128,
16273 .page_size = 4 * 1024,
16274 .feature_bits = FEATURE_EITHER_RESET,
16275 .tested = TEST_OK_PREW,
16276 .probe = probe_jedec,
16277 .probe_timing = 10,
16278 .block_erasers =
16279 {
16280 {
16281 .eraseblocks = { {4 * 1024, 32} },
16282 .block_erase = erase_block_jedec,
16283 }, {
16284 .eraseblocks = { {128 * 1024, 1} },
16285 .block_erase = erase_chip_block_jedec,
16286 }
16287 },
16288 .printlock = printlock_w39f010,
16289 .write = write_jedec_1,
16290 .read = read_memmapped,
16291 .voltage = {4500, 5500},
16292 },
16293
16294 {
16295 .vendor = "Winbond",
16296 .name = "W39L010",
16297 .bustype = BUS_PARALLEL,
16298 .manufacture_id = WINBOND_ID,
16299 .model_id = WINBOND_W39L010,
16300 .total_size = 128,
16301 .page_size = 4 * 1024,
16302 .feature_bits = FEATURE_EITHER_RESET,
16303 .tested = TEST_UNTESTED,
16304 .probe = probe_jedec,
16305 .probe_timing = 10,
16306 .block_erasers =
16307 {
16308 {
16309 .eraseblocks = { {4 * 1024, 32} },
16310 .block_erase = erase_block_jedec,
16311 }, {
16312 .eraseblocks = { {128 * 1024, 1} },
16313 .block_erase = erase_chip_block_jedec,
16314 }
16315 },
16316 .printlock = printlock_w39l010,
16317 .write = write_jedec_1,
16318 .read = read_memmapped,
16319 .voltage = {3000, 3600},
16320 },
16321
16322 {
16323 .vendor = "Winbond",
16324 .name = "W39L020",
16325 .bustype = BUS_PARALLEL,
16326 .manufacture_id = WINBOND_ID,
16327 .model_id = WINBOND_W39L020,
16328 .total_size = 256,
16329 .page_size = 4 * 1024,
16330 .feature_bits = FEATURE_EITHER_RESET,
16331 .tested = TEST_UNTESTED,
16332 .probe = probe_jedec,
16333 .probe_timing = 10,
16334 .block_erasers =
16335 {
16336 {
16337 .eraseblocks = { {4 * 1024, 64} },
16338 .block_erase = erase_block_jedec,
16339 }, {
16340 .eraseblocks = { {64 * 1024, 4} },
16341 .block_erase = erase_sector_jedec,
16342 }, {
16343 .eraseblocks = { {256 * 1024, 1} },
16344 .block_erase = erase_chip_block_jedec,
16345 }
16346 },
16347 .printlock = printlock_w39l020,
16348 .write = write_jedec_1,
16349 .read = read_memmapped,
16350 .voltage = {3000, 3600},
16351 },
16352
16353 {
16354 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000016355 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016356 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000016357 .manufacture_id = WINBOND_ID,
16358 .model_id = WINBOND_W39L040,
16359 .total_size = 512,
16360 .page_size = 64 * 1024,
16361 .feature_bits = FEATURE_EITHER_RESET,
16362 .tested = TEST_OK_PR,
16363 .probe = probe_jedec,
16364 .probe_timing = 10,
16365 .block_erasers =
16366 {
16367 {
16368 .eraseblocks = { {4 * 1024, 128} },
16369 .block_erase = erase_block_jedec,
16370 }, {
16371 .eraseblocks = { {64 * 1024, 8} },
16372 .block_erase = erase_sector_jedec,
16373 }, {
16374 .eraseblocks = { {512 * 1024, 1} },
16375 .block_erase = erase_chip_block_jedec,
16376 }
16377 },
16378 .printlock = printlock_w39l040,
16379 .write = write_jedec_1,
16380 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016381 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000016382 },
16383
16384 {
16385 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016386 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016387 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016388 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016389 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016390 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016391 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016392 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000016393 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016394 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000016395 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016396 .block_erasers =
16397 {
16398 {
16399 .eraseblocks = { {64 * 1024, 8} },
16400 .block_erase = erase_sector_jedec,
16401 }, {
16402 .eraseblocks = { {512 * 1024, 1} },
16403 .block_erase = erase_chip_block_jedec,
16404 }
16405 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016406 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000016407 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016408 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016409 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016410 },
16411
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016412 {
16413 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016414 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016415 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016416 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016417 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016418 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016419 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016420 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000016421 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016422 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000016423 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016424 .block_erasers =
16425 {
16426 {
16427 .eraseblocks = { {64 * 1024, 8} },
16428 .block_erase = erase_sector_jedec,
16429 }, {
16430 .eraseblocks = { {512 * 1024, 1} },
16431 .block_erase = erase_chip_block_jedec,
16432 }
16433 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016434 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000016435 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016436 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016437 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016438 },
16439
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016440 {
16441 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016442 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016443 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016444 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016445 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016446 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016447 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016448 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000016449 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000016450 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016451 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016452 .block_erasers =
16453 {
16454 {
16455 .eraseblocks = { {64 * 1024, 8} },
16456 .block_erase = erase_sector_jedec,
16457 }, {
16458 .eraseblocks = { {512 * 1024, 1} },
16459 .block_erase = erase_chip_block_jedec,
16460 }
16461 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000016462 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000016463 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016464 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016465 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016466 },
16467
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016468 {
16469 .vendor = "Winbond",
16470 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016471 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016472 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016473 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016474 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016475 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000016476 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000016477 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016478 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000016479 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016480 .block_erasers =
16481 {
16482 {
16483 .eraseblocks = { {4 * 1024, 128} },
16484 .block_erase = erase_block_jedec,
16485 }, {
16486 .eraseblocks = { {64 * 1024, 8} },
16487 .block_erase = erase_sector_jedec,
16488 }, {
16489 .eraseblocks = { {512 * 1024, 1} },
16490 .block_erase = erase_chip_block_jedec,
16491 }
16492 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016493 .printlock = printlock_w39v040fa,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016494 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000016495 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016496 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016497 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016498 },
16499
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016500 {
16501 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016502 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016503 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016504 .manufacture_id = WINBOND_ID,
16505 .model_id = WINBOND_W39V040B,
16506 .total_size = 512,
16507 .page_size = 64 * 1024,
16508 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner0be072c2016-03-13 15:16:30 +000016509 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016510 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000016511 .probe_timing = 10,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016512 .block_erasers =
16513 {
16514 {
16515 .eraseblocks = { {64 * 1024, 8} },
16516 .block_erase = erase_sector_jedec,
16517 }, {
16518 .eraseblocks = { {512 * 1024, 1} },
16519 .block_erase = erase_chip_block_jedec,
16520 }
16521 },
16522 .printlock = printlock_w39v040fb,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016523 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016524 .write = write_jedec_1,
16525 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016526 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016527 },
16528
16529 {
16530 .vendor = "Winbond",
16531 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016532 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016533 .manufacture_id = WINBOND_ID,
16534 .model_id = WINBOND_W39V040C,
16535 .total_size = 512,
16536 .page_size = 64 * 1024,
16537 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000016538 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016539 .probe = probe_jedec,
16540 .probe_timing = 10,
16541 .block_erasers =
16542 {
16543 {
16544 .eraseblocks = { {64 * 1024, 8} },
16545 .block_erase = erase_sector_jedec,
16546 }, {
16547 .eraseblocks = { {512 * 1024, 1} },
16548 .block_erase = erase_chip_block_jedec,
16549 }
16550 },
16551 .printlock = printlock_w39v040fc,
16552 .write = write_jedec_1,
16553 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016554 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016555 },
16556
16557 {
16558 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016559 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016560 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016561 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016562 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016563 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000016564 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016565 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000016566 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016567 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000016568 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016569 .block_erasers =
16570 {
16571 {
16572 .eraseblocks = { {64 * 1024, 16} },
16573 .block_erase = erase_sector_jedec,
16574 }, {
16575 .eraseblocks = { {1024 * 1024, 1} },
16576 .block_erase = erase_chip_block_jedec,
16577 }
16578 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016579 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000016580 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016581 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016582 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016583 },
16584
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016585 {
16586 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016587 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016588 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016589 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016590 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016591 .total_size = 256,
16592 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016593 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000016594 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016595 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000016596 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016597 .block_erasers =
16598 {
16599 {
16600 .eraseblocks = {
16601 {128 * 1024, 1},
16602 {96 * 1024, 1},
16603 {8 * 1024, 2},
16604 {16 * 1024, 1},
16605 },
16606 .block_erase = erase_sector_jedec,
16607 }, {
16608 .eraseblocks = { {256 * 1024, 1} },
16609 .block_erase = erase_chip_block_jedec,
16610 }
16611 },
Sean Nelson35727f72010-01-28 23:55:12 +000016612 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016613 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016614 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016615 },
16616
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016617 {
16618 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016619 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016620 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016621 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016622 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016623 .total_size = 256,
16624 .page_size = 128,
16625 .feature_bits = FEATURE_EITHER_RESET,
16626 .tested = TEST_OK_PROBE,
16627 .probe = probe_jedec,
16628 .probe_timing = 10,
16629 .block_erasers =
16630 {
16631 {
16632 .eraseblocks = { {256 * 1024, 1} },
16633 .block_erase = erase_chip_block_jedec,
16634 }
16635 },
16636 .write = write_jedec_1,
16637 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016638 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016639 },
16640
16641 {
16642 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016643 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016644 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016645 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016646 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016647 .total_size = 256,
16648 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016649 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016650 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016651 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016652 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016653 .block_erasers =
16654 {
16655 {
16656 .eraseblocks = {
16657 {64 * 1024, 3},
16658 {32 * 1024, 1},
16659 {8 * 1024, 2},
16660 {16 * 1024, 1},
16661 },
16662 .block_erase = erase_sector_jedec,
16663 }, {
16664 .eraseblocks = { {256 * 1024, 1} },
16665 .block_erase = erase_chip_block_jedec,
16666 }
16667 },
Sean Nelson35727f72010-01-28 23:55:12 +000016668 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016669 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016670 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016671 },
16672
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016673 {
16674 .vendor = "Winbond",
16675 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016676 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016677 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016678 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016679 .total_size = 256,
16680 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016681 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000016682 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016683 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000016684 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016685 .block_erasers =
16686 {
16687 {
16688 .eraseblocks = {
16689 {64 * 1024, 3},
16690 {32 * 1024, 1},
16691 {8 * 1024, 2},
16692 {16 * 1024, 1},
16693 },
16694 .block_erase = erase_sector_jedec,
16695 }, {
16696 .eraseblocks = { {256 * 1024, 1} },
16697 .block_erase = erase_chip_block_jedec,
16698 }
16699 },
Sean Nelson35727f72010-01-28 23:55:12 +000016700 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016701 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016702 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016703 },
16704
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016705 {
16706 .vendor = "Winbond",
16707 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016708 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016709 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016710 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016711 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000016712 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016713 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000016714 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000016715 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016716 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016717 .block_erasers =
16718 {
16719 {
Stefan Tauner6697f712014-08-06 15:09:15 +000016720 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016721 .block_erase = erase_sector_jedec,
16722 }, {
16723 .eraseblocks = { {1024 * 1024, 1} },
16724 .block_erase = erase_chip_block_jedec,
16725 }
16726 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016727 .printlock = printlock_w39v080fa,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016728 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000016729 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016730 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016731 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000016732 },
16733
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016734 {
16735 .vendor = "Winbond",
16736 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016737 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016738 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016739 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016740 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016741 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016742 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016743 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000016744 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016745 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016746 .block_erasers =
16747 {
16748 {
Stefan Tauner6697f712014-08-06 15:09:15 +000016749 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016750 .block_erase = erase_sector_jedec,
16751 }, {
16752 .eraseblocks = { {512 * 1024, 1} },
16753 .block_erase = erase_chip_block_jedec,
16754 }
16755 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016756 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +000016757 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016758 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016759 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000016760 },
nybashcbb46e22018-02-11 17:53:49 -080016761
16762 {
16763 .vendor = "Zetta Device",
David Hendricksa72d5a92018-02-11 17:58:44 -080016764 .name = "ZD25D20",
16765 .bustype = BUS_SPI,
16766 .manufacture_id = ZETTADEVICE_ID,
16767 .model_id = ZETTADEVICE_ZD25D20,
16768 .total_size = 256,
16769 .page_size = 256,
16770 .feature_bits = FEATURE_WRSR_WREN,
16771 .tested = TEST_UNTESTED,
16772 .probe = probe_spi_rdid,
16773 .probe_timing = TIMING_ZERO,
16774 .block_erasers =
16775 {
16776 {
16777 .eraseblocks = { {4 * 1024, 64} },
16778 .block_erase = spi_block_erase_20,
16779 }, {
16780 .eraseblocks = { {32 * 1024, 8} },
16781 .block_erase = spi_block_erase_52,
16782 }, {
16783 .eraseblocks = { {64 * 1024, 4} },
16784 .block_erase = spi_block_erase_d8,
16785 }, {
16786 .eraseblocks = { {256 * 1024, 1} },
16787 .block_erase = spi_block_erase_60,
16788 }, {
16789 .eraseblocks = { {256 * 1024, 1} },
16790 .block_erase = spi_block_erase_c7,
16791 }
16792 },
16793 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16794 .unlock = spi_disable_blockprotect,
16795 .write = spi_chip_write_256,
16796 .read = spi_chip_read,
16797 .voltage = {2700, 3600},
16798 },
16799
16800 {
16801 .vendor = "Zetta Device",
nybashcbb46e22018-02-11 17:53:49 -080016802 .name = "ZD25D40",
16803 .bustype = BUS_SPI,
16804 .manufacture_id = ZETTADEVICE_ID,
16805 .model_id = ZETTADEVICE_ZD25D40,
16806 .total_size = 512,
16807 .page_size = 256,
16808 .feature_bits = FEATURE_WRSR_WREN,
16809 .tested = TEST_UNTESTED,
16810 .probe = probe_spi_rdid,
16811 .probe_timing = TIMING_ZERO,
16812 .block_erasers =
16813 {
16814 {
16815 .eraseblocks = { {4 * 1024, 128} },
16816 .block_erase = spi_block_erase_20,
16817 }, {
16818 .eraseblocks = { {32 * 1024, 16} },
16819 .block_erase = spi_block_erase_52,
16820 }, {
16821 .eraseblocks = { {64 * 1024, 8} },
16822 .block_erase = spi_block_erase_d8,
16823 }, {
16824 .eraseblocks = { {512 * 1024, 1} },
16825 .block_erase = spi_block_erase_60,
16826 }, {
16827 .eraseblocks = { {512 * 1024, 1} },
16828 .block_erase = spi_block_erase_c7,
16829 }
16830 },
16831 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16832 .unlock = spi_disable_blockprotect,
16833 .write = spi_chip_write_256,
16834 .read = spi_chip_read,
16835 .voltage = {2700, 3600},
16836 },
16837
Stefan Taunerac1b4c82012-02-17 14:51:04 +000016838 {
16839 .vendor = "Unknown",
16840 .name = "SFDP-capable chip",
16841 .bustype = BUS_SPI,
16842 .manufacture_id = GENERIC_MANUF_ID,
16843 .model_id = SFDP_DEVICE_ID,
16844 /* We present our own "report this" text hence we do not
16845 * want the default "This flash part has status UNTESTED..."
16846 * text to be printed. */
16847 .tested = TEST_OK_PREW,
16848 .probe = probe_spi_sfdp,
16849 .unlock = spi_disable_blockprotect, /* is this safe? */
16850 .read = spi_chip_read,
16851 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000016852 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +000016853 /* Everything below will be set by the probing function. */
16854 .write = NULL,
16855 .total_size = 0,
16856 .page_size = 0,
16857 .feature_bits = 0,
16858 .block_erasers = {},
16859 },
FENG yu ningff692fb2008-12-08 18:15:10 +000016860
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016861 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000016862 .vendor = "Programmer",
16863 .name = "Opaque flash chip",
16864 .bustype = BUS_PROG,
16865 .manufacture_id = PROGMANUF_ID,
16866 .model_id = PROGDEV_ID,
16867 .total_size = 0,
16868 .page_size = 256,
16869 /* probe is assumed to work, rest will be filled in by probe */
16870 .tested = TEST_OK_PROBE,
16871 .probe = probe_opaque,
16872 /* eraseblock sizes will be set by the probing function */
16873 .block_erasers =
16874 {
16875 {
16876 .block_erase = erase_opaque,
16877 }
16878 },
16879 .write = write_opaque,
16880 .read = read_opaque,
16881 },
16882
16883 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000016884 .vendor = "AMIC",
16885 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016886 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000016887 .manufacture_id = AMIC_ID,
16888 .model_id = GENERIC_DEVICE_ID,
16889 .total_size = 0,
16890 .page_size = 256,
16891 .tested = TEST_BAD_PREW,
16892 .probe = probe_spi_rdid4,
16893 .probe_timing = TIMING_ZERO,
16894 .write = NULL,
16895 .read = NULL,
16896 },
16897
16898 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016899 .vendor = "Atmel",
16900 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016901 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016902 .manufacture_id = ATMEL_ID,
16903 .model_id = GENERIC_DEVICE_ID,
16904 .total_size = 0,
16905 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016906 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016907 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016908 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016909 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016910 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016911 },
16912
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016913 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000016914 .vendor = "Eon",
16915 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016916 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016917 .manufacture_id = EON_ID_NOPREFIX,
16918 .model_id = GENERIC_DEVICE_ID,
16919 .total_size = 0,
16920 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016921 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016922 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016923 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016924 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016925 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016926 },
16927
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016928 {
16929 .vendor = "Macronix",
16930 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016931 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000016932 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016933 .model_id = GENERIC_DEVICE_ID,
16934 .total_size = 0,
16935 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016936 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016937 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016938 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016939 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016940 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016941 },
16942
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016943 {
16944 .vendor = "PMC",
16945 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016946 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016947 .manufacture_id = PMC_ID,
16948 .model_id = GENERIC_DEVICE_ID,
16949 .total_size = 0,
16950 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016951 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016952 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016953 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016954 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016955 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016956 },
16957
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016958 {
16959 .vendor = "SST",
16960 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016961 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016962 .manufacture_id = SST_ID,
16963 .model_id = GENERIC_DEVICE_ID,
16964 .total_size = 0,
16965 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016966 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016967 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016968 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016969 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016970 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016971 },
16972
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016973 {
16974 .vendor = "ST",
16975 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016976 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016977 .manufacture_id = ST_ID,
16978 .model_id = GENERIC_DEVICE_ID,
16979 .total_size = 0,
16980 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016981 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016982 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016983 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016984 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016985 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016986 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000016987
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016988 {
Sean Nelson118e1d62009-11-24 02:08:11 +000016989 .vendor = "Sanyo",
16990 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016991 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000016992 .manufacture_id = SANYO_ID,
16993 .model_id = GENERIC_DEVICE_ID,
16994 .total_size = 0,
16995 .page_size = 256,
16996 .tested = TEST_BAD_PREW,
16997 .probe = probe_spi_rdid,
16998 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000016999 .write = NULL,
17000 .read = NULL,
17001 },
17002
17003 {
Stefan Taunereb582572012-09-21 12:52:50 +000017004 .vendor = "Winbond",
17005 .name = "unknown Winbond (ex Nexcom) SPI chip",
17006 .bustype = BUS_SPI,
17007 .manufacture_id = WINBOND_NEX_ID,
17008 .model_id = GENERIC_DEVICE_ID,
17009 .total_size = 0,
17010 .page_size = 256,
17011 .tested = TEST_BAD_PREW,
17012 .probe = probe_spi_rdid,
17013 .probe_timing = TIMING_ZERO,
17014 .write = NULL,
17015 .read = NULL,
17016 },
17017
17018 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017019 .vendor = "Generic",
17020 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017021 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017022 .manufacture_id = GENERIC_MANUF_ID,
17023 .model_id = GENERIC_DEVICE_ID,
17024 .total_size = 0,
17025 .page_size = 256,
17026 .tested = TEST_BAD_PREW,
17027 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017028 .write = NULL,
17029 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000017030
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017031 {
17032 .vendor = "Generic",
17033 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000017034 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017035 .manufacture_id = GENERIC_MANUF_ID,
17036 .model_id = GENERIC_DEVICE_ID,
17037 .total_size = 0,
17038 .page_size = 256,
17039 .tested = TEST_BAD_PREW,
17040 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000017041 .write = NULL,
17042 },
17043
Stefan Tauner96658be2014-05-26 22:05:31 +000017044 {0}
Stephan Guilloux72cf5652009-04-21 01:46:07 +000017045};
Stefan Tauner96658be2014-05-26 22:05:31 +000017046
17047const unsigned int flashchips_size = ARRAY_SIZE(flashchips);