blob: 17cb1b4b013eee36640329bfba095d6b9eecc53e [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,
5536 /* 256-byte paramter page separate from memory array:
5537 * 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,
5567 /* 256-byte paramter page separate from memory array:
5568 * 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,
5598 /* 256-byte paramter page separate from memory array:
5599 * 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,
6057 .tested = TEST_UNTESTED,
6058 .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",
Stefan Tauner40bc96f2015-01-10 09:33:14 +00008566 .name = "MX25L6495F",
8567 .bustype = BUS_SPI,
8568 .manufacture_id = MACRONIX_ID,
8569 .model_id = MACRONIX_MX25L6495F,
8570 .total_size = 8192,
8571 .page_size = 256,
8572 /* OTP: 1024B total; enter 0xB1, exit 0xC1 */
8573 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
8574 .tested = TEST_OK_PREW,
8575 .probe = probe_spi_rdid,
8576 .probe_timing = TIMING_ZERO,
8577 .block_erasers =
8578 {
8579 {
8580 .eraseblocks = { {4 * 1024, 2048} },
8581 .block_erase = spi_block_erase_20,
8582 }, {
8583 .eraseblocks = { {64 * 1024, 128} },
8584 .block_erase = spi_block_erase_d8,
8585 }, {
8586 .eraseblocks = { {32 * 1024, 256} },
8587 .block_erase = spi_block_erase_52,
8588 }, {
8589 .eraseblocks = { {8 * 1024 * 1024, 1} },
8590 .block_erase = spi_block_erase_60,
8591 }, {
8592 .eraseblocks = { {8 * 1024 * 1024, 1} },
8593 .block_erase = spi_block_erase_c7,
8594 }
8595 },
8596 .unlock = spi_disable_blockprotect,
8597 .write = spi_chip_write_256,
8598 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
8599 .voltage = {2700, 3600},
8600 },
8601
8602 {
Martin Roth440057a2014-07-13 00:05:07 +00008603 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00008604 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008605 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008606 .manufacture_id = MACRONIX_ID,
8607 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008608 .total_size = 128,
8609 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008610 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8611 .tested = TEST_UNTESTED,
8612 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008613 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008614 .block_erasers =
8615 {
8616 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00008617 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00008618 {8 * 1024, 1},
8619 {4 * 1024, 2},
8620 {8 * 1024, 2},
8621 {32 * 1024, 1},
8622 {64 * 1024, 1},
8623 },
Sean Nelson35727f72010-01-28 23:55:12 +00008624 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008625 }, {
8626 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008627 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008628 }
8629 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008630 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008631 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008632 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00008633 },
8634
8635 {
8636 .vendor = "Macronix",
8637 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008638 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008639 .manufacture_id = MACRONIX_ID,
8640 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008641 .total_size = 128,
8642 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008643 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00008644 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00008645 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008646 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00008647 .block_erasers =
8648 {
8649 {
Stefan Tauner0554ca52013-07-25 22:54:25 +00008650 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00008651 {64 * 1024, 1},
8652 {32 * 1024, 1},
8653 {8 * 1024, 2},
8654 {4 * 1024, 2},
8655 {8 * 1024, 1},
8656 },
Sean Nelson35727f72010-01-28 23:55:12 +00008657 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008658 }, {
8659 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008660 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00008661 }
8662 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008663 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00008664 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008665 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00008666 },
8667
8668 {
8669 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008670 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008671 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008672 .manufacture_id = MACRONIX_ID,
8673 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008674 .total_size = 256,
8675 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008676 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008677 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008678 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008679 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008680 .block_erasers =
8681 {
8682 {
8683 .eraseblocks = {
8684 {16 * 1024, 1},
8685 {8 * 1024, 2},
8686 {32 * 1024, 1},
8687 {64 * 1024, 3},
8688 },
Sean Nelson35727f72010-01-28 23:55:12 +00008689 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008690 }, {
8691 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008692 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008693 },
8694 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008695 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008696 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008697 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008698 },
8699
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008700 {
8701 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008702 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008703 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008704 .manufacture_id = MACRONIX_ID,
8705 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008706 .total_size = 256,
8707 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008708 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008709 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00008710 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00008711 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008712 .block_erasers =
8713 {
8714 {
8715 .eraseblocks = {
8716 {64 * 1024, 3},
8717 {32 * 1024, 1},
8718 {8 * 1024, 2},
8719 {16 * 1024, 1},
8720 },
Sean Nelson35727f72010-01-28 23:55:12 +00008721 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008722 }, {
8723 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00008724 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00008725 },
8726 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00008727 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008728 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008729 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008730 },
8731
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008732 {
8733 .vendor = "Macronix",
Daniele Forsi6a18a932014-07-13 14:53:45 +00008734 .name = "MX29F022(N)B",
8735 .bustype = BUS_PARALLEL,
8736 .manufacture_id = MACRONIX_ID,
8737 .model_id = MACRONIX_MX29F022B,
8738 .total_size = 256,
8739 .page_size = 0, /* unused */
8740 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8741 .tested = TEST_UNTESTED,
8742 .probe = probe_jedec,
8743 .probe_timing = TIMING_ZERO,
8744 .block_erasers =
8745 {
8746 {
8747 .eraseblocks = {
8748 {16 * 1024, 1},
8749 {8 * 1024, 2},
8750 {32 * 1024, 1},
8751 {64 * 1024, 3},
8752 },
8753 .block_erase = erase_sector_jedec,
8754 }, {
8755 .eraseblocks = { {256 * 1024, 1} },
8756 .block_erase = erase_chip_block_jedec,
8757 }
8758 },
8759 .write = write_jedec_1,
8760 .read = read_memmapped,
8761 .voltage = {4500, 5500},
8762 },
8763
8764 {
8765 .vendor = "Macronix",
8766 .name = "MX29F022(N)T",
8767 .bustype = BUS_PARALLEL,
8768 .manufacture_id = MACRONIX_ID,
8769 .model_id = MACRONIX_MX29F022T,
8770 .total_size = 256,
8771 .page_size = 0, /* unused */
8772 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8773 .tested = TEST_OK_PREW,
8774 .probe = probe_jedec,
8775 .probe_timing = TIMING_ZERO,
8776 .block_erasers =
8777 {
8778 {
8779 .eraseblocks = {
8780 {64 * 1024, 3},
8781 {32 * 1024, 1},
8782 {8 * 1024, 2},
8783 {16 * 1024, 1},
8784 },
8785 .block_erase = erase_sector_jedec,
8786 }, {
8787 .eraseblocks = { {256 * 1024, 1} },
8788 .block_erase = erase_chip_block_jedec,
8789 }
8790 },
8791 .write = write_jedec_1,
8792 .read = read_memmapped,
8793 .voltage = {4500, 5500},
8794 },
8795
8796 {
8797 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00008798 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008799 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00008800 .manufacture_id = MACRONIX_ID,
8801 .model_id = MACRONIX_MX29F040,
8802 .total_size = 512,
8803 .page_size = 64 * 1024,
8804 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8805 .tested = TEST_UNTESTED,
8806 .probe = probe_jedec,
8807 .probe_timing = TIMING_ZERO,
8808 .block_erasers =
8809 {
8810 {
8811 .eraseblocks = { {64 * 1024, 8} },
8812 .block_erase = erase_sector_jedec,
8813 }, {
8814 .eraseblocks = { {512 * 1024, 1} },
8815 .block_erase = erase_chip_block_jedec,
8816 },
8817 },
8818 .write = write_jedec_1,
8819 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00008820 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00008821 },
8822
8823 {
8824 .vendor = "Macronix",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +00008825 .name = "MX29GL320EB",
8826 .bustype = BUS_PARALLEL,
8827 .manufacture_id = MACRONIX_ID,
8828 .model_id = MACRONIX_MX29GL320EB,
8829 .total_size = 4096,
8830 .page_size = 128 * 1024, /* actual page size is 16 */
8831 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8832 .tested = TEST_UNTESTED,
8833 .probe = probe_jedec_29gl,
8834 .probe_timing = TIMING_ZERO,
8835 .block_erasers =
8836 {
8837 {
8838 .eraseblocks = {
8839 {8 * 1024, 8},
8840 {64 * 1024, 63},
8841 },
8842 .block_erase = erase_sector_jedec,
8843 }, {
8844 .eraseblocks = { {4 * 1024 * 1024, 1} },
8845 .block_erase = erase_chip_block_jedec,
8846 },
8847 },
8848 .write = write_jedec_1,
8849 .read = read_memmapped,
8850 .voltage = {2700, 3600},
8851 },
8852
8853 {
8854 .vendor = "Macronix",
8855 .name = "MX29GL320ET",
8856 .bustype = BUS_PARALLEL,
8857 .manufacture_id = MACRONIX_ID,
8858 .model_id = MACRONIX_MX29GL320ET,
8859 .total_size = 4096,
8860 .page_size = 128 * 1024, /* actual page size is 16 */
8861 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8862 .tested = TEST_UNTESTED,
8863 .probe = probe_jedec_29gl,
8864 .probe_timing = TIMING_ZERO,
8865 .block_erasers =
8866 {
8867 {
8868 .eraseblocks = {
8869 {64 * 1024, 63},
8870 {8 * 1024, 8},
8871 },
8872 .block_erase = erase_sector_jedec,
8873 }, {
8874 .eraseblocks = { {4 * 1024 * 1024, 1} },
8875 .block_erase = erase_chip_block_jedec,
8876 },
8877 },
8878 .write = write_jedec_1,
8879 .read = read_memmapped,
8880 .voltage = {2700, 3600},
8881 },
8882
8883 {
8884 .vendor = "Macronix",
8885 .name = "MX29GL320EH/L",
8886 .bustype = BUS_PARALLEL,
8887 .manufacture_id = MACRONIX_ID,
8888 .model_id = MACRONIX_MX29GL320EHL,
8889 .total_size = 4096,
8890 .page_size = 128 * 1024, /* actual page size is 16 */
8891 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8892 .tested = TEST_UNTESTED,
8893 .probe = probe_jedec_29gl,
8894 .probe_timing = TIMING_ZERO,
8895 .block_erasers =
8896 {
8897 {
8898 .eraseblocks = { {64 * 1024, 64} },
8899 .block_erase = erase_sector_jedec,
8900 }, {
8901 .eraseblocks = { {4 * 1024 * 1024, 1} },
8902 .block_erase = erase_chip_block_jedec,
8903 },
8904 },
8905 .write = write_jedec_1,
8906 .read = read_memmapped,
8907 .voltage = {2700, 3600},
8908 },
8909
8910 {
8911 .vendor = "Macronix",
8912 .name = "MX29GL640EB",
8913 .bustype = BUS_PARALLEL,
8914 .manufacture_id = MACRONIX_ID,
8915 .model_id = MACRONIX_MX29GL640EB,
8916 .total_size = 8192,
8917 .page_size = 128 * 1024, /* actual page size is 16 */
8918 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8919 .tested = TEST_UNTESTED,
8920 .probe = probe_jedec_29gl,
8921 .probe_timing = TIMING_ZERO,
8922 .block_erasers =
8923 {
8924 {
8925 .eraseblocks = {
8926 {8 * 1024, 8},
8927 {64 * 1024, 127},
8928 },
8929 .block_erase = erase_sector_jedec,
8930 }, {
8931 .eraseblocks = { {8 * 1024 * 1024, 1} },
8932 .block_erase = erase_chip_block_jedec,
8933 },
8934 },
8935 .write = write_jedec_1,
8936 .read = read_memmapped,
8937 .voltage = {2700, 3600},
8938 },
8939
8940 {
8941 .vendor = "Macronix",
8942 .name = "MX29GL640ET",
8943 .bustype = BUS_PARALLEL,
8944 .manufacture_id = MACRONIX_ID,
8945 .model_id = MACRONIX_MX29GL640ET,
8946 .total_size = 8192,
8947 .page_size = 128 * 1024, /* actual page size is 16 */
8948 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8949 .tested = TEST_UNTESTED,
8950 .probe = probe_jedec_29gl,
8951 .probe_timing = TIMING_ZERO,
8952 .block_erasers =
8953 {
8954 {
8955 .eraseblocks = {
8956 {64 * 1024, 127},
8957 {8 * 1024, 8},
8958 },
8959 .block_erase = erase_sector_jedec,
8960 }, {
8961 .eraseblocks = { {8 * 1024 * 1024, 1} },
8962 .block_erase = erase_chip_block_jedec,
8963 },
8964 },
8965 .write = write_jedec_1,
8966 .read = read_memmapped,
8967 .voltage = {2700, 3600},
8968 },
8969
8970 {
8971 .vendor = "Macronix",
8972 .name = "MX29GL640EH/L",
8973 .bustype = BUS_PARALLEL,
8974 .manufacture_id = MACRONIX_ID,
8975 .model_id = MACRONIX_MX29GL640EHL,
8976 .total_size = 8192,
8977 .page_size = 128 * 1024, /* actual page size is 16 */
8978 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
8979 .tested = TEST_UNTESTED,
8980 .probe = probe_jedec_29gl,
8981 .probe_timing = TIMING_ZERO,
8982 .block_erasers =
8983 {
8984 {
8985 .eraseblocks = { {64 * 1024, 128} },
8986 .block_erase = erase_sector_jedec,
8987 }, {
8988 .eraseblocks = { {8 * 1024 * 1024, 1} },
8989 .block_erase = erase_chip_block_jedec,
8990 },
8991 },
8992 .write = write_jedec_1,
8993 .read = read_memmapped,
8994 .voltage = {2700, 3600},
8995 },
8996
8997 {
8998 .vendor = "Macronix",
8999 .name = "MX29GL128F",
9000 .bustype = BUS_PARALLEL,
9001 .manufacture_id = MACRONIX_ID,
9002 .model_id = MACRONIX_MX29GL128F,
9003 .total_size = 16384,
9004 .page_size = 128 * 1024, /* actual page size is 16 */
9005 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9006 .tested = TEST_UNTESTED,
9007 .probe = probe_jedec_29gl,
9008 .probe_timing = TIMING_ZERO,
9009 .block_erasers =
9010 {
9011 {
9012 .eraseblocks = { {128 * 1024, 128} },
9013 .block_erase = erase_sector_jedec,
9014 }, {
9015 .eraseblocks = { {16 * 1024 * 1024, 1} },
9016 .block_erase = erase_chip_block_jedec,
9017 },
9018 },
9019 .write = write_jedec_1,
9020 .read = read_memmapped,
9021 .voltage = {2700, 3600},
9022 },
9023
9024 {
9025 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00009026 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009027 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009028 .manufacture_id = MACRONIX_ID,
9029 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009030 .total_size = 512,
9031 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009032 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
9033 .tested = TEST_UNTESTED,
9034 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009035 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00009036 .block_erasers =
9037 {
9038 {
Stefan Tauner6697f712014-08-06 15:09:15 +00009039 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +00009040 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009041 }, {
9042 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009043 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00009044 },
9045 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00009046 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009047 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009048 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00009049 },
9050
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009051 {
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009052 .vendor = "Micron/Numonyx/ST",
9053 .name = "M25P05-A",
9054 .bustype = BUS_SPI,
9055 .manufacture_id = ST_ID,
9056 .model_id = ST_M25P05A,
9057 .total_size = 64,
9058 .page_size = 256,
9059 .feature_bits = FEATURE_WRSR_WREN,
9060 .tested = TEST_OK_PREW,
9061 .probe = probe_spi_rdid,
9062 .probe_timing = TIMING_ZERO,
9063 .block_erasers =
9064 {
9065 {
9066 .eraseblocks = { {32 * 1024, 2} },
9067 .block_erase = spi_block_erase_d8,
9068 }, {
9069 .eraseblocks = { {64 * 1024, 1} },
9070 .block_erase = spi_block_erase_c7,
9071 }
9072 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009073 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009074 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009075 .write = spi_chip_write_256,
9076 .read = spi_chip_read,
9077 .voltage = {2700, 3600},
9078 },
9079
9080 /* The ST M25P05 is a bit of a problem. It has the same ID as the
9081 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
9082 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
9083 * only is successful if RDID does not work.
9084 */
9085 {
9086 .vendor = "Micron/Numonyx/ST",
9087 .name = "M25P05",
9088 .bustype = BUS_SPI,
9089 .manufacture_id = 0, /* Not used. */
9090 .model_id = ST_M25P05_RES,
9091 .total_size = 64,
9092 .page_size = 256,
9093 .feature_bits = FEATURE_WRSR_WREN,
9094 .tested = TEST_UNTESTED,
9095 .probe = probe_spi_res1,
9096 .probe_timing = TIMING_ZERO,
9097 .block_erasers =
9098 {
9099 {
9100 .eraseblocks = { {32 * 1024, 2} },
9101 .block_erase = spi_block_erase_d8,
9102 }, {
9103 .eraseblocks = { {64 * 1024, 1} },
9104 .block_erase = spi_block_erase_c7,
9105 }
9106 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009107 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009108 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009109 .write = spi_chip_write_1, /* 128 */
9110 .read = spi_chip_read,
9111 .voltage = {2700, 3600},
9112 },
9113
9114 {
9115 .vendor = "Micron/Numonyx/ST",
9116 .name = "M25P10-A",
9117 .bustype = BUS_SPI,
9118 .manufacture_id = ST_ID,
9119 .model_id = ST_M25P10A,
9120 .total_size = 128,
9121 .page_size = 256,
9122 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +00009123 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009124 .probe = probe_spi_rdid,
9125 .probe_timing = TIMING_ZERO,
9126 .block_erasers =
9127 {
9128 {
9129 .eraseblocks = { {32 * 1024, 4} },
9130 .block_erase = spi_block_erase_d8,
9131 }, {
9132 .eraseblocks = { {128 * 1024, 1} },
9133 .block_erase = spi_block_erase_c7,
9134 }
9135 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009136 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009137 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009138 .write = spi_chip_write_256,
9139 .read = spi_chip_read,
9140 .voltage = {2700, 3600},
9141 },
9142
9143 /* The ST M25P10 has the same problem as the M25P05. */
9144 {
9145 .vendor = "Micron/Numonyx/ST",
9146 .name = "M25P10",
9147 .bustype = BUS_SPI,
9148 .manufacture_id = 0, /* Not used. */
9149 .model_id = ST_M25P10_RES,
9150 .total_size = 128,
9151 .page_size = 256,
9152 .feature_bits = FEATURE_WRSR_WREN,
9153 .tested = TEST_UNTESTED,
9154 .probe = probe_spi_res1,
9155 .probe_timing = TIMING_ZERO,
9156 .block_erasers =
9157 {
9158 {
9159 .eraseblocks = { {32 * 1024, 4} },
9160 .block_erase = spi_block_erase_d8,
9161 }, {
9162 .eraseblocks = { {128 * 1024, 1} },
9163 .block_erase = spi_block_erase_c7,
9164 }
9165 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009166 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009167 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009168 .write = spi_chip_write_1, /* 128 */
9169 .read = spi_chip_read,
9170 .voltage = {2700, 3600},
9171 },
9172
9173 {
9174 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9175 .name = "M25P20",
9176 .bustype = BUS_SPI,
9177 .manufacture_id = ST_ID,
9178 .model_id = ST_M25P20,
9179 .total_size = 256,
9180 .page_size = 256,
9181 .feature_bits = FEATURE_WRSR_WREN,
9182 .tested = TEST_UNTESTED,
9183 .probe = probe_spi_rdid,
9184 .probe_timing = TIMING_ZERO,
9185 .block_erasers =
9186 {
9187 {
9188 .eraseblocks = { {64 * 1024, 4} },
9189 .block_erase = spi_block_erase_d8,
9190 }, {
9191 .eraseblocks = { {256 * 1024, 1} },
9192 .block_erase = spi_block_erase_c7,
9193 }
9194 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009195 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009196 .unlock = spi_disable_blockprotect,
9197 .write = spi_chip_write_256,
9198 .read = spi_chip_read, /* Fast read (0x0B) supported */
9199 .voltage = {2700, 3600},
9200 },
9201
9202 {
9203 .vendor = "Micron/Numonyx/ST",
9204 .name = "M25P20-old",
9205 .bustype = BUS_SPI,
9206 .manufacture_id = 0, /* Not used. */
9207 .model_id = ST_M25P20_RES,
9208 .total_size = 256,
9209 .page_size = 256,
9210 .feature_bits = FEATURE_WRSR_WREN,
9211 .tested = TEST_OK_PREW,
9212 .probe = probe_spi_res1,
9213 .probe_timing = TIMING_ZERO,
9214 .block_erasers =
9215 {
9216 {
9217 .eraseblocks = { {64 * 1024, 4} },
9218 .block_erase = spi_block_erase_d8,
9219 }, {
9220 .eraseblocks = { {256 * 1024, 1} },
9221 .block_erase = spi_block_erase_c7,
9222 }
9223 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009224 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009225 .unlock = spi_disable_blockprotect,
9226 .write = spi_chip_write_256,
9227 .read = spi_chip_read, /* Fast read (0x0B) supported */
9228 .voltage = {2700, 3600},
9229 },
9230
9231 {
9232 .vendor = "Micron/Numonyx/ST", /* Numonyx */
9233 .name = "M25P40",
9234 .bustype = BUS_SPI,
9235 .manufacture_id = ST_ID,
9236 .model_id = ST_M25P40,
9237 .total_size = 512,
9238 .page_size = 256,
9239 .feature_bits = FEATURE_WRSR_WREN,
9240 .tested = TEST_OK_PREW,
9241 .probe = probe_spi_rdid,
9242 .probe_timing = TIMING_ZERO,
9243 .block_erasers =
9244 {
9245 {
9246 .eraseblocks = { {64 * 1024, 8} },
9247 .block_erase = spi_block_erase_d8,
9248 }, {
9249 .eraseblocks = { {512 * 1024, 1} },
9250 .block_erase = spi_block_erase_c7,
9251 }
9252 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009253 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009254 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009255 .write = spi_chip_write_256,
9256 .read = spi_chip_read,
9257 .voltage = {2700, 3600},
9258 },
9259
9260 {
9261 .vendor = "Micron/Numonyx/ST",
9262 .name = "M25P40-old",
9263 .bustype = BUS_SPI,
9264 .manufacture_id = 0, /* Not used. */
9265 .model_id = ST_M25P40_RES,
9266 .total_size = 512,
9267 .page_size = 256,
9268 .feature_bits = FEATURE_WRSR_WREN,
9269 .tested = TEST_UNTESTED,
9270 .probe = probe_spi_res1,
9271 .probe_timing = TIMING_ZERO,
9272 .block_erasers =
9273 {
9274 {
9275 .eraseblocks = { {64 * 1024, 8} },
9276 .block_erase = spi_block_erase_d8,
9277 }, {
9278 .eraseblocks = { {512 * 1024, 1} },
9279 .block_erase = spi_block_erase_c7,
9280 }
9281 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009282 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009283 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009284 .write = spi_chip_write_256,
9285 .read = spi_chip_read,
9286 },
9287
9288 {
9289 .vendor = "Micron/Numonyx/ST",
9290 .name = "M25P80",
9291 .bustype = BUS_SPI,
9292 .manufacture_id = ST_ID,
9293 .model_id = ST_M25P80,
9294 .total_size = 1024,
9295 .page_size = 256,
9296 .feature_bits = FEATURE_WRSR_WREN,
9297 .tested = TEST_OK_PREW,
9298 .probe = probe_spi_rdid,
9299 .probe_timing = TIMING_ZERO,
9300 .block_erasers =
9301 {
9302 {
9303 .eraseblocks = { {64 * 1024, 16} },
9304 .block_erase = spi_block_erase_d8,
9305 }, {
9306 .eraseblocks = { {1024 * 1024, 1} },
9307 .block_erase = spi_block_erase_c7,
9308 }
9309 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009310 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009311 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009312 .write = spi_chip_write_256,
9313 .read = spi_chip_read,
9314 .voltage = {2700, 3600},
9315 },
9316
9317 {
9318 .vendor = "Micron/Numonyx/ST",
9319 .name = "M25P16",
9320 .bustype = BUS_SPI,
9321 .manufacture_id = ST_ID,
9322 .model_id = ST_M25P16,
9323 .total_size = 2048,
9324 .page_size = 256,
9325 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009326 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009327 .probe = probe_spi_rdid,
9328 .probe_timing = TIMING_ZERO,
9329 .block_erasers =
9330 {
9331 {
9332 .eraseblocks = { {64 * 1024, 32} },
9333 .block_erase = spi_block_erase_d8,
9334 }, {
9335 .eraseblocks = { {2 * 1024 * 1024, 1} },
9336 .block_erase = spi_block_erase_c7,
9337 }
9338 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009339 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009340 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009341 .write = spi_chip_write_256,
9342 .read = spi_chip_read,
9343 .voltage = {2700, 3600},
9344 },
9345
9346 {
9347 .vendor = "Micron/Numonyx/ST",
9348 .name = "M25P32",
9349 .bustype = BUS_SPI,
9350 .manufacture_id = ST_ID,
9351 .model_id = ST_M25P32,
9352 .total_size = 4096,
9353 .page_size = 256,
9354 .feature_bits = FEATURE_WRSR_WREN,
9355 .tested = TEST_OK_PREW,
9356 .probe = probe_spi_rdid,
9357 .probe_timing = TIMING_ZERO,
9358 .block_erasers =
9359 {
9360 {
9361 .eraseblocks = { {64 * 1024, 64} },
9362 .block_erase = spi_block_erase_d8,
9363 }, {
9364 .eraseblocks = { {4 * 1024 * 1024, 1} },
9365 .block_erase = spi_block_erase_c7,
9366 }
9367 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009368 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009369 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009370 .write = spi_chip_write_256,
9371 .read = spi_chip_read,
9372 .voltage = {2700, 3600},
9373 },
9374
9375 {
9376 .vendor = "Micron/Numonyx/ST",
9377 .name = "M25P64",
9378 .bustype = BUS_SPI,
9379 .manufacture_id = ST_ID,
9380 .model_id = ST_M25P64,
9381 .total_size = 8192,
9382 .page_size = 256,
9383 .feature_bits = FEATURE_WRSR_WREN,
9384 .tested = TEST_OK_PREW,
9385 .probe = probe_spi_rdid,
9386 .probe_timing = TIMING_ZERO,
9387 .block_erasers =
9388 {
9389 {
9390 .eraseblocks = { {64 * 1024, 128} },
9391 .block_erase = spi_block_erase_d8,
9392 }, {
9393 .eraseblocks = { {8 * 1024 * 1024, 1} },
9394 .block_erase = spi_block_erase_c7,
9395 }
9396 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009397 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009398 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009399 .write = spi_chip_write_256,
9400 .read = spi_chip_read,
9401 .voltage = {2700, 3600},
9402 },
9403
9404 {
9405 .vendor = "Micron/Numonyx/ST",
9406 .name = "M25P128",
9407 .bustype = BUS_SPI,
9408 .manufacture_id = ST_ID,
9409 .model_id = ST_M25P128,
9410 .total_size = 16384,
9411 .page_size = 256,
9412 .feature_bits = FEATURE_WRSR_WREN,
9413 .tested = TEST_OK_PREW,
9414 .probe = probe_spi_rdid,
9415 .probe_timing = TIMING_ZERO,
9416 .block_erasers =
9417 {
9418 {
9419 .eraseblocks = { {256 * 1024, 64} },
9420 .block_erase = spi_block_erase_d8,
9421 }, {
9422 .eraseblocks = { {16 * 1024 * 1024, 1} },
9423 .block_erase = spi_block_erase_c7,
9424 }
9425 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009426 .printlock = spi_prettyprint_status_register_bp3_srwd, /* TODO: check */
Stefan Tauner5c316f92015-02-08 21:57:52 +00009427 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009428 .write = spi_chip_write_256,
9429 .read = spi_chip_read,
9430 .voltage = {2700, 3600},
9431 },
9432
9433 {
9434 .vendor = "Micron/Numonyx/ST",
9435 .name = "M25PE10",
9436 .bustype = BUS_SPI,
9437 .manufacture_id = ST_ID,
9438 .model_id = ST_M25PE10,
9439 .total_size = 128,
9440 .page_size = 256,
9441 .feature_bits = FEATURE_WRSR_WREN,
9442 .tested = TEST_UNTESTED,
9443 .probe = probe_spi_rdid,
9444 .probe_timing = TIMING_ZERO,
9445 .block_erasers =
9446 {
9447 {
9448 .eraseblocks = { {4 * 1024, 32} },
9449 .block_erase = spi_block_erase_20,
9450 }, {
9451 .eraseblocks = { {64 * 1024, 2} },
9452 .block_erase = spi_block_erase_d8,
9453 }, {
9454 .eraseblocks = { {128 * 1024, 1} },
9455 .block_erase = spi_block_erase_c7,
9456 }
9457 },
9458 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9459 .unlock = spi_disable_blockprotect,
9460 .write = spi_chip_write_256,
9461 .read = spi_chip_read,
9462 .voltage = {2700, 3600},
9463 },
9464
9465 {
9466 .vendor = "Micron/Numonyx/ST",
9467 .name = "M25PE20",
9468 .bustype = BUS_SPI,
9469 .manufacture_id = ST_ID,
9470 .model_id = ST_M25PE20,
9471 .total_size = 256,
9472 .page_size = 256,
9473 .feature_bits = FEATURE_WRSR_WREN,
9474 .tested = TEST_UNTESTED,
9475 .probe = probe_spi_rdid,
9476 .probe_timing = TIMING_ZERO,
9477 .block_erasers =
9478 {
9479 {
9480 .eraseblocks = { {4 * 1024, 64} },
9481 .block_erase = spi_block_erase_20,
9482 }, {
9483 .eraseblocks = { {64 * 1024, 4} },
9484 .block_erase = spi_block_erase_d8,
9485 }, {
9486 .eraseblocks = { {256 * 1024, 1} },
9487 .block_erase = spi_block_erase_c7,
9488 }
9489 },
9490 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9491 .unlock = spi_disable_blockprotect,
9492 .write = spi_chip_write_256,
9493 .read = spi_chip_read,
9494 .voltage = {2700, 3600},
9495 },
9496
9497 {
9498 .vendor = "Micron/Numonyx/ST",
9499 .name = "M25PE40",
9500 .bustype = BUS_SPI,
9501 .manufacture_id = ST_ID,
9502 .model_id = ST_M25PE40,
9503 .total_size = 512,
9504 .page_size = 256,
9505 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +00009506 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009507 .probe = probe_spi_rdid,
9508 .probe_timing = TIMING_ZERO,
9509 .block_erasers =
9510 {
9511 {
9512 .eraseblocks = { {4 * 1024, 128} },
9513 .block_erase = spi_block_erase_20,
9514 }, {
9515 .eraseblocks = { {64 * 1024, 8} },
9516 .block_erase = spi_block_erase_d8,
9517 }, {
9518 .eraseblocks = { {512 * 1024, 1} },
9519 .block_erase = spi_block_erase_c7,
9520 }
9521 },
9522 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9523 .unlock = spi_disable_blockprotect,
9524 .write = spi_chip_write_256,
9525 .read = spi_chip_read,
9526 .voltage = {2700, 3600},
9527 },
9528
9529 {
9530 .vendor = "Micron/Numonyx/ST",
9531 .name = "M25PE80",
9532 .bustype = BUS_SPI,
9533 .manufacture_id = ST_ID,
9534 .model_id = ST_M25PE80,
9535 .total_size = 1024,
9536 .page_size = 256,
9537 .feature_bits = FEATURE_WRSR_WREN,
9538 .tested = TEST_OK_PREW,
9539 .probe = probe_spi_rdid,
9540 .probe_timing = TIMING_ZERO,
9541 .block_erasers =
9542 {
9543 {
9544 .eraseblocks = { {4 * 1024, 256} },
9545 .block_erase = spi_block_erase_20,
9546 }, {
9547 .eraseblocks = { {64 * 1024, 16} },
9548 .block_erase = spi_block_erase_d8,
9549 }, {
9550 .eraseblocks = { {1024 * 1024, 1} },
9551 .block_erase = spi_block_erase_c7,
9552 }
9553 },
9554 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9555 .unlock = spi_disable_blockprotect,
9556 .write = spi_chip_write_256,
9557 .read = spi_chip_read,
9558 .voltage = {2700, 3600},
9559 },
9560
9561 {
9562 .vendor = "Micron/Numonyx/ST",
9563 .name = "M25PE16",
9564 .bustype = BUS_SPI,
9565 .manufacture_id = ST_ID,
9566 .model_id = ST_M25PE16,
9567 .total_size = 2048,
9568 .page_size = 256,
9569 .feature_bits = FEATURE_WRSR_WREN,
9570 .tested = TEST_UNTESTED,
9571 .probe = probe_spi_rdid,
9572 .probe_timing = TIMING_ZERO,
9573 .block_erasers =
9574 {
9575 {
9576 .eraseblocks = { {4 * 1024, 512} },
9577 .block_erase = spi_block_erase_20,
9578 }, {
9579 .eraseblocks = { {64 * 1024, 32} },
9580 .block_erase = spi_block_erase_d8,
9581 }, {
9582 .eraseblocks = { {2 * 1024 * 1024, 1} },
9583 .block_erase = spi_block_erase_c7,
9584 }
9585 },
9586 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
9587 .unlock = spi_disable_blockprotect,
9588 .write = spi_chip_write_256,
9589 .read = spi_chip_read,
9590 .voltage = {2700, 3600},
9591 },
9592
9593 {
9594 .vendor = "Micron/Numonyx/ST",
9595 .name = "M25PX80",
9596 .bustype = BUS_SPI,
9597 .manufacture_id = ST_ID,
9598 .model_id = ST_M25PX80,
9599 .total_size = 1024,
9600 .page_size = 256,
9601 /* OTP: 64B total; read 0x4B, write 0x42 */
9602 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9603 .tested = TEST_OK_PREW,
9604 .probe = probe_spi_rdid,
9605 .probe_timing = TIMING_ZERO,
9606 .block_erasers = {
9607 {
9608 .eraseblocks = { { 4 * 1024, 256 } },
9609 .block_erase = spi_block_erase_20,
9610 }, {
9611 .eraseblocks = { {64 * 1024, 16} },
9612 .block_erase = spi_block_erase_d8,
9613 }, {
9614 .eraseblocks = { {1024 * 1024, 1} },
9615 .block_erase = spi_block_erase_c7,
9616 }
9617 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009618 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009619 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9620 .write = spi_chip_write_256,
9621 .read = spi_chip_read,
9622 .voltage = {2700, 3600},
9623 },
9624
9625 {
9626 .vendor = "Micron/Numonyx/ST",
9627 .name = "M25PX16",
9628 .bustype = BUS_SPI,
9629 .manufacture_id = ST_ID,
9630 .model_id = ST_M25PX16,
9631 .total_size = 2048,
9632 .page_size = 256,
9633 /* OTP: 64B total; read 0x4B; write 0x42 */
9634 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9635 .tested = TEST_OK_PREW,
9636 .probe = probe_spi_rdid,
9637 .probe_timing = TIMING_ZERO,
9638 .block_erasers =
9639 {
9640 {
9641 .eraseblocks = { { 4 * 1024, 512 } },
9642 .block_erase = spi_block_erase_20,
9643 }, {
9644 .eraseblocks = { {64 * 1024, 32} },
9645 .block_erase = spi_block_erase_d8,
9646 }, {
9647 .eraseblocks = { {2 * 1024 * 1024, 1} },
9648 .block_erase = spi_block_erase_c7,
9649 }
9650 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009651 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009652 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9653 .write = spi_chip_write_256,
9654 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009655 .voltage = {2300, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009656 },
9657
9658 {
9659 .vendor = "Micron/Numonyx/ST",
9660 .name = "M25PX32",
9661 .bustype = BUS_SPI,
9662 .manufacture_id = ST_ID,
9663 .model_id = ST_M25PX32,
9664 .total_size = 4096,
9665 .page_size = 256,
9666 /* OTP: 64B total; read 0x4B; write 0x42 */
9667 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9668 .tested = TEST_OK_PRE,
9669 .probe = probe_spi_rdid,
9670 .probe_timing = TIMING_ZERO,
9671 .block_erasers =
9672 {
9673 {
9674 .eraseblocks = { { 4 * 1024, 1024 } },
9675 .block_erase = spi_block_erase_20,
9676 }, {
9677 .eraseblocks = { {64 * 1024, 64} },
9678 .block_erase = spi_block_erase_d8,
9679 }, {
9680 .eraseblocks = { {4 * 1024 * 1024, 1} },
9681 .block_erase = spi_block_erase_c7,
9682 }
9683 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009684 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009685 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9686 .write = spi_chip_write_256,
9687 .read = spi_chip_read,
9688 .voltage = {2700, 3600},
9689 },
9690
9691 {
9692 .vendor = "Micron/Numonyx/ST",
9693 .name = "M25PX64",
9694 .bustype = BUS_SPI,
9695 .manufacture_id = ST_ID,
9696 .model_id = ST_M25PX64,
9697 .total_size = 8192,
9698 .page_size = 256,
9699 /* OTP: 64B total; read 0x4B; write 0x42 */
9700 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009701 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009702 .probe = probe_spi_rdid,
9703 .probe_timing = TIMING_ZERO,
9704 .block_erasers =
9705 {
9706 {
9707 .eraseblocks = { { 4 * 1024, 2048 } },
9708 .block_erase = spi_block_erase_20,
9709 }, {
9710 .eraseblocks = { {64 * 1024, 128} },
9711 .block_erase = spi_block_erase_d8,
9712 }, {
9713 .eraseblocks = { {8 * 1024 * 1024, 1} },
9714 .block_erase = spi_block_erase_c7,
9715 }
9716 },
Stefan Tauner12f3d512014-05-27 21:27:27 +00009717 .printlock = spi_prettyprint_status_register_bp2_srwd, /* bit5: T/B */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009718 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: per 64kB sector lock registers */
9719 .write = spi_chip_write_256,
9720 .read = spi_chip_read,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009721 .voltage = {2700, 3600},
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009722 },
9723
9724 {
9725 .vendor = "Micron/Numonyx/ST",
9726 .name = "M45PE10",
9727 .bustype = BUS_SPI,
9728 .manufacture_id = ST_ID,
9729 .model_id = ST_M45PE10,
9730 .total_size = 128,
9731 .page_size = 256,
9732 .tested = TEST_UNTESTED,
9733 .probe = probe_spi_rdid,
9734 .probe_timing = TIMING_ZERO,
9735 .block_erasers = {
9736 {
9737 .eraseblocks = { {256, 512} },
9738 .block_erase = spi_block_erase_db,
9739 }, {
9740 .eraseblocks = { {64 * 1024, 2} },
9741 .block_erase = spi_block_erase_d8,
9742 }
9743 },
9744 .printlock = spi_prettyprint_status_register_default_welwip,
9745 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9746 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9747 .read = spi_chip_read, /* Fast read (0x0B) supported */
9748 .voltage = {2700, 3600},
9749 },
9750
9751 {
9752 .vendor = "Micron/Numonyx/ST",
9753 .name = "M45PE20",
9754 .bustype = BUS_SPI,
9755 .manufacture_id = ST_ID,
9756 .model_id = ST_M45PE20,
9757 .total_size = 256,
9758 .page_size = 256,
9759 .tested = TEST_UNTESTED,
9760 .probe = probe_spi_rdid,
9761 .probe_timing = TIMING_ZERO,
9762 .block_erasers = {
9763 {
9764 .eraseblocks = { {256, 1024} },
9765 .block_erase = spi_block_erase_db,
9766 }, {
9767 .eraseblocks = { {64 * 1024, 4} },
9768 .block_erase = spi_block_erase_d8,
9769 }
9770 },
9771 .printlock = spi_prettyprint_status_register_default_welwip,
9772 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9773 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9774 .read = spi_chip_read, /* Fast read (0x0B) supported */
9775 .voltage = {2700, 3600},
9776 },
9777
9778 {
9779 .vendor = "Micron/Numonyx/ST",
9780 .name = "M45PE40",
9781 .bustype = BUS_SPI,
9782 .manufacture_id = ST_ID,
9783 .model_id = ST_M45PE40,
9784 .total_size = 512,
9785 .page_size = 256,
9786 .tested = TEST_UNTESTED,
9787 .probe = probe_spi_rdid,
9788 .probe_timing = TIMING_ZERO,
9789 .block_erasers = {
9790 {
9791 .eraseblocks = { {256, 2048} },
9792 .block_erase = spi_block_erase_db,
9793 }, {
9794 .eraseblocks = { {64 * 1024, 8} },
9795 .block_erase = spi_block_erase_d8,
9796 }
9797 },
9798 .printlock = spi_prettyprint_status_register_default_welwip,
9799 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Stefan Tauner23e10b82016-01-23 16:16:49 +00009800 .write = spi_chip_write_256, /* Page write supported (similar to PP but allows 0->1 changes) */
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009801 .read = spi_chip_read, /* Fast read (0x0B) supported */
9802 .voltage = {2700, 3600},
9803 },
9804
9805 {
9806 .vendor = "Micron/Numonyx/ST",
9807 .name = "M45PE80",
9808 .bustype = BUS_SPI,
9809 .manufacture_id = ST_ID,
9810 .model_id = ST_M45PE80,
9811 .total_size = 1024,
9812 .page_size = 256,
9813 .tested = TEST_UNTESTED,
9814 .probe = probe_spi_rdid,
9815 .probe_timing = TIMING_ZERO,
9816 .block_erasers = {
9817 {
9818 .eraseblocks = { {256, 4096} },
9819 .block_erase = spi_block_erase_db,
9820 }, {
9821 .eraseblocks = { {64 * 1024, 16} },
9822 .block_erase = spi_block_erase_d8,
9823 }
9824 },
9825 .printlock = spi_prettyprint_status_register_default_welwip,
9826 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9827 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9828 .read = spi_chip_read, /* Fast read (0x0B) supported */
9829 .voltage = {2700, 3600},
9830 },
9831
9832 {
9833 .vendor = "Micron/Numonyx/ST",
9834 .name = "M45PE16",
9835 .bustype = BUS_SPI,
9836 .manufacture_id = ST_ID,
9837 .model_id = ST_M45PE16,
9838 .total_size = 2048,
9839 .page_size = 256,
9840 .tested = TEST_UNTESTED,
9841 .probe = probe_spi_rdid,
9842 .probe_timing = TIMING_ZERO,
9843 .block_erasers = {
9844 {
9845 .eraseblocks = { {256, 8192} },
9846 .block_erase = spi_block_erase_db,
9847 }, {
9848 .eraseblocks = { {64 * 1024, 32} },
9849 .block_erase = spi_block_erase_d8,
9850 }
9851 },
9852 .printlock = spi_prettyprint_status_register_default_welwip,
9853 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
9854 .write = spi_chip_write_256, /* Page write (similar to PP but allows 0->1 changes) */
9855 .read = spi_chip_read, /* Fast read (0x0B) supported */
9856 .voltage = {2700, 3600},
9857 },
9858
9859 {
9860 .vendor = "Micron/Numonyx/ST",
9861 .name = "N25Q016",
9862 .bustype = BUS_SPI,
9863 .manufacture_id = ST_ID,
9864 .model_id = ST_N25Q016__1E,
9865 .total_size = 2048,
9866 .page_size = 256,
9867 /* supports SFDP */
9868 /* OTP: 64B total; read 0x4B, write 0x42 */
9869 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9870 .tested = TEST_UNTESTED,
9871 .probe = probe_spi_rdid,
9872 .probe_timing = TIMING_ZERO,
9873 .block_erasers =
9874 {
9875 {
9876 .eraseblocks = { {4 * 1024, 512} },
9877 .block_erase = spi_block_erase_20,
9878 }, {
9879 .eraseblocks = { {32 * 1024, 64} },
9880 .block_erase = spi_block_erase_52,
9881 }, {
9882 .eraseblocks = { {64 * 1024, 32} },
9883 .block_erase = spi_block_erase_d8,
9884 }, {
9885 .eraseblocks = { {2 * 1024 * 1024, 1} },
9886 .block_erase = spi_block_erase_c7,
9887 }
9888 },
9889 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
9890 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
9891 .write = spi_chip_write_256, /* Multi I/O supported */
9892 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9893 .voltage = {1700, 2000},
9894 },
9895
9896 {
9897 .vendor = "Micron/Numonyx/ST",
9898 .name = "N25Q032..1E",
9899 .bustype = BUS_SPI,
9900 .manufacture_id = ST_ID,
9901 .model_id = ST_N25Q032__1E,
9902 .total_size = 4096,
9903 .page_size = 256,
9904 /* supports SFDP */
9905 /* OTP: 64B total; read 0x4B, write 0x42 */
9906 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9907 .tested = TEST_UNTESTED,
9908 .probe = probe_spi_rdid,
9909 .probe_timing = TIMING_ZERO,
9910 .block_erasers =
9911 {
9912 {
9913 .eraseblocks = { {4 * 1024, 1024} },
9914 .block_erase = spi_block_erase_20,
9915 }, {
9916 .eraseblocks = { {64 * 1024, 64} },
9917 .block_erase = spi_block_erase_d8,
9918 }, {
9919 .eraseblocks = { {4 * 1024 * 1024, 1} },
9920 .block_erase = spi_block_erase_c7,
9921 }
9922 },
9923 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
9924 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
9925 .write = spi_chip_write_256, /* Multi I/O supported */
9926 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9927 .voltage = {1700, 2000},
9928 },
9929
9930 {
9931 .vendor = "Micron/Numonyx/ST",
9932 .name = "N25Q032..3E",
9933 .bustype = BUS_SPI,
9934 .manufacture_id = ST_ID,
9935 .model_id = ST_N25Q032__3E,
9936 .total_size = 4096,
9937 .page_size = 256,
9938 /* supports SFDP */
9939 /* OTP: 64B total; read 0x4B, write 0x42 */
9940 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
9941 .tested = TEST_OK_PREW,
9942 .probe = probe_spi_rdid,
9943 .probe_timing = TIMING_ZERO,
9944 .block_erasers =
9945 {
9946 {
9947 .eraseblocks = { {4 * 1024, 1024} },
9948 .block_erase = spi_block_erase_20,
9949 }, {
9950 .eraseblocks = { {64 * 1024, 64} },
9951 .block_erase = spi_block_erase_d8,
9952 }, {
9953 .eraseblocks = { {4 * 1024 * 1024, 1} },
9954 .block_erase = spi_block_erase_c7,
9955 }
9956 },
9957 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
9958 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
9959 .write = spi_chip_write_256, /* Multi I/O supported */
9960 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9961 .voltage = {2700, 3600},
9962 },
9963
9964 {
9965 .vendor = "Micron/Numonyx/ST",
9966 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
9967 .bustype = BUS_SPI,
9968 .manufacture_id = ST_ID,
9969 .model_id = ST_N25Q064__1E,
9970 .total_size = 8192,
9971 .page_size = 256,
9972 /* supports SFDP */
9973 /* OTP: 64B total; read 0x4B, write 0x42 */
9974 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00009975 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +00009976 .probe = probe_spi_rdid,
9977 .probe_timing = TIMING_ZERO,
9978 .block_erasers =
9979 {
9980 {
9981 .eraseblocks = { {4 * 1024, 2048 } },
9982 .block_erase = spi_block_erase_20,
9983 }, {
9984 .eraseblocks = { {64 * 1024, 128} },
9985 .block_erase = spi_block_erase_d8,
9986 }, {
9987 .eraseblocks = { {8 * 1024 * 1024, 1} },
9988 .block_erase = spi_block_erase_c7,
9989 }
9990 },
9991 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
9992 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
9993 .write = spi_chip_write_256, /* Multi I/O supported */
9994 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
9995 .voltage = {1700, 2000},
9996 },
9997
9998 {
9999 .vendor = "Micron/Numonyx/ST",
10000 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10001 .bustype = BUS_SPI,
10002 .manufacture_id = ST_ID,
10003 .model_id = ST_N25Q064__3E,
10004 .total_size = 8192,
10005 .page_size = 256,
10006 /* supports SFDP */
10007 /* OTP: 64B total; read 0x4B, write 0x42 */
10008 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10009 .tested = TEST_OK_PREW,
10010 .probe = probe_spi_rdid,
10011 .probe_timing = TIMING_ZERO,
10012 .block_erasers =
10013 {
10014 {
10015 .eraseblocks = { {4 * 1024, 2048 } },
10016 .block_erase = spi_block_erase_20,
10017 }, {
10018 .eraseblocks = { {64 * 1024, 128} },
10019 .block_erase = spi_block_erase_d8,
10020 }, {
10021 .eraseblocks = { {8 * 1024 * 1024, 1} },
10022 .block_erase = spi_block_erase_c7,
10023 }
10024 },
10025 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10026 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10027 .write = spi_chip_write_256, /* Multi I/O supported */
10028 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10029 .voltage = {2700, 3600},
10030 },
10031
10032 {
10033 .vendor = "Micron/Numonyx/ST",
10034 .name = "N25Q128..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
10035 .bustype = BUS_SPI,
10036 .manufacture_id = ST_ID,
10037 .model_id = ST_N25Q128__1E,
10038 .total_size = 16384,
10039 .page_size = 256,
10040 /* supports SFDP */
10041 /* OTP: 64B total; read 0x4B, write 0x42 */
10042 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000010043 .tested = TEST_OK_PREW,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000010044 .probe = probe_spi_rdid,
10045 .probe_timing = TIMING_ZERO,
10046 .block_erasers = {
10047 {
10048 .eraseblocks = { {4 * 1024, 4096 } },
10049 .block_erase = spi_block_erase_20,
10050 }, {
10051 .eraseblocks = { {64 * 1024, 256} },
10052 .block_erase = spi_block_erase_d8,
10053 }, {
10054 .eraseblocks = { {16384 * 1024, 1} },
10055 .block_erase = spi_block_erase_c7,
10056 }
10057 },
10058 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10059 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10060 .write = spi_chip_write_256, /* Multi I/O supported */
10061 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10062 .voltage = {1700, 2000},
10063 },
10064
10065 {
10066 .vendor = "Micron/Numonyx/ST",
10067 .name = "N25Q128..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
10068 .bustype = BUS_SPI,
10069 .manufacture_id = ST_ID,
10070 .model_id = ST_N25Q128__3E,
10071 .total_size = 16384,
10072 .page_size = 256,
10073 /* supports SFDP */
10074 /* OTP: 64B total; read 0x4B, write 0x42 */
10075 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10076 .tested = TEST_OK_PREW,
10077 .probe = probe_spi_rdid,
10078 .probe_timing = TIMING_ZERO,
10079 .block_erasers = {
10080 {
10081 .eraseblocks = { {4 * 1024, 4096 } },
10082 .block_erase = spi_block_erase_20,
10083 }, {
10084 .eraseblocks = { {64 * 1024, 256} },
10085 .block_erase = spi_block_erase_d8,
10086 }, {
10087 .eraseblocks = { {16384 * 1024, 1} },
10088 .block_erase = spi_block_erase_c7,
10089 }
10090 },
10091 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10092 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10093 .write = spi_chip_write_256, /* Multi I/O supported */
10094 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10095 .voltage = {2700, 3600},
10096 },
10097
10098 {
Ed Swierk199ab392017-07-03 13:33:44 -070010099 .vendor = "Micron",
10100 .name = "N25Q256..3E/MT25QL256", /* ..3E/L = 3V, uniform 64KB/4KB blocks/sectors */
10101 .bustype = BUS_SPI,
10102 .manufacture_id = ST_ID,
10103 .model_id = ST_N25Q256__3E,
10104 .total_size = 32768,
10105 .page_size = 256,
10106 /* supports SFDP */
10107 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010108 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10109 .tested = TEST_UNTESTED,
Ed Swierk199ab392017-07-03 13:33:44 -070010110 .probe = probe_spi_rdid,
10111 .probe_timing = TIMING_ZERO,
10112 .block_erasers = {
10113 {
10114 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010115 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010116 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010117 .eraseblocks = { {4 * 1024, 8192} },
10118 .block_erase = spi_block_erase_20,
10119 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010120 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010121 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010122 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010123 .eraseblocks = { {64 * 1024, 512} },
10124 .block_erase = spi_block_erase_d8,
10125 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010126 .eraseblocks = { {32768 * 1024, 1} },
10127 .block_erase = spi_block_erase_c7,
10128 }
10129 },
10130 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10131 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10132 .write = spi_chip_write_256, /* Multi I/O supported */
10133 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10134 .voltage = {2700, 3600},
10135 },
10136
10137 {
10138 .vendor = "Micron",
10139 .name = "N25Q512..3E/MT25QL512", /* ..3E/L = 3V, uniform 64KB/4KB blocks/sectors */
10140 .bustype = BUS_SPI,
10141 .manufacture_id = ST_ID,
10142 .model_id = ST_N25Q512__3E,
10143 .total_size = 65536,
10144 .page_size = 256,
10145 /* supports SFDP */
10146 /* OTP: 64B total; read 0x4B, write 0x42 */
Nico Huberaac81422017-11-10 22:54:13 +010010147 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_WREN,
10148 .tested = TEST_UNTESTED,
Ed Swierk199ab392017-07-03 13:33:44 -070010149 .probe = probe_spi_rdid,
10150 .probe_timing = TIMING_ZERO,
10151 .block_erasers = {
10152 {
10153 .eraseblocks = { {4 * 1024, 16384} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010154 .block_erase = spi_block_erase_21,
Ed Swierk199ab392017-07-03 13:33:44 -070010155 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010156 .eraseblocks = { {4 * 1024, 16384} },
10157 .block_erase = spi_block_erase_20,
10158 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010159 .eraseblocks = { {64 * 1024, 1024} },
Nico Huber7e3c81a2017-10-14 18:56:50 +020010160 .block_erase = spi_block_erase_dc,
Ed Swierk199ab392017-07-03 13:33:44 -070010161 }, {
Nico Huberaac81422017-11-10 22:54:13 +010010162 .eraseblocks = { {64 * 1024, 1024} },
10163 .block_erase = spi_block_erase_d8,
10164 }, {
Ed Swierk199ab392017-07-03 13:33:44 -070010165 .eraseblocks = { {65536 * 1024, 1} },
10166 .block_erase = spi_block_erase_c7,
10167 }
10168 },
10169 .printlock = spi_prettyprint_status_register_n25q, /* TODO: config, lock, flag regs */
10170 .unlock = spi_disable_blockprotect_n25q, /* TODO: per 64kB sector lock registers */
10171 .write = spi_chip_write_256, /* Multi I/O supported */
10172 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10173 .voltage = {2700, 3600},
10174 },
10175
10176 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010177 .vendor = "MoselVitelic",
10178 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010179 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010180 .manufacture_id = SYNCMOS_MVC_ID,
10181 .model_id = MVC_V29C51000B,
10182 .total_size = 64,
10183 .page_size = 512,
10184 .feature_bits = FEATURE_EITHER_RESET,
10185 .tested = TEST_UNTESTED,
10186 .probe = probe_jedec,
10187 .probe_timing = TIMING_ZERO,
10188 .block_erasers =
10189 {
10190 {
10191 .eraseblocks = { {512, 128} },
10192 .block_erase = erase_sector_jedec,
10193 }, {
10194 .eraseblocks = { {64 * 1024, 1} },
10195 .block_erase = erase_chip_block_jedec,
10196 },
10197 },
10198 .write = write_jedec_1,
10199 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010200 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010201 },
10202
10203 {
10204 .vendor = "MoselVitelic",
10205 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010206 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010207 .manufacture_id = SYNCMOS_MVC_ID,
10208 .model_id = MVC_V29C51000T,
10209 .total_size = 64,
10210 .page_size = 512,
10211 .feature_bits = FEATURE_EITHER_RESET,
10212 .tested = TEST_UNTESTED,
10213 .probe = probe_jedec,
10214 .probe_timing = TIMING_ZERO,
10215 .block_erasers =
10216 {
10217 {
10218 .eraseblocks = { {512, 128} },
10219 .block_erase = erase_sector_jedec,
10220 }, {
10221 .eraseblocks = { {64 * 1024, 1} },
10222 .block_erase = erase_chip_block_jedec,
10223 },
10224 },
10225 .write = write_jedec_1,
10226 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010227 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010228 },
10229
10230 {
10231 .vendor = "MoselVitelic",
10232 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010233 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010234 .manufacture_id = SYNCMOS_MVC_ID,
10235 .model_id = MVC_V29C51400B,
10236 .total_size = 512,
10237 .page_size = 1024,
10238 .feature_bits = FEATURE_EITHER_RESET,
10239 .tested = TEST_UNTESTED,
10240 .probe = probe_jedec,
10241 .probe_timing = TIMING_ZERO,
10242 .block_erasers =
10243 {
10244 {
10245 .eraseblocks = { {1024, 512} },
10246 .block_erase = erase_sector_jedec,
10247 }, {
10248 .eraseblocks = { {512 * 1024, 1} },
10249 .block_erase = erase_chip_block_jedec,
10250 },
10251 },
10252 .write = write_jedec_1,
10253 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010254 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010255 },
10256
10257 {
10258 .vendor = "MoselVitelic",
10259 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010260 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010261 .manufacture_id = SYNCMOS_MVC_ID,
10262 .model_id = MVC_V29C51400T,
10263 .total_size = 512,
10264 .page_size = 1024,
10265 .feature_bits = FEATURE_EITHER_RESET,
10266 .tested = TEST_UNTESTED,
10267 .probe = probe_jedec,
10268 .probe_timing = TIMING_ZERO,
10269 .block_erasers =
10270 {
10271 {
10272 .eraseblocks = { {1024, 512} },
10273 .block_erase = erase_sector_jedec,
10274 }, {
10275 .eraseblocks = { {512 * 1024, 1} },
10276 .block_erase = erase_chip_block_jedec,
10277 },
10278 },
10279 .write = write_jedec_1,
10280 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010281 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010282 },
10283
10284 {
10285 .vendor = "MoselVitelic",
10286 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010287 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010288 .manufacture_id = SYNCMOS_MVC_ID,
10289 .model_id = MVC_V29LC51000,
10290 .total_size = 64,
10291 .page_size = 512,
10292 .feature_bits = FEATURE_EITHER_RESET,
10293 .tested = TEST_UNTESTED,
10294 .probe = probe_jedec,
10295 .probe_timing = TIMING_ZERO,
10296 .block_erasers =
10297 {
10298 {
10299 .eraseblocks = { {512, 128} },
10300 .block_erase = erase_sector_jedec,
10301 }, {
10302 .eraseblocks = { {64 * 1024, 1} },
10303 .block_erase = erase_chip_block_jedec,
10304 },
10305 },
10306 .write = write_jedec_1,
10307 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010308 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010309 },
10310
10311 {
10312 .vendor = "MoselVitelic",
10313 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010314 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010315 .manufacture_id = SYNCMOS_MVC_ID,
10316 .model_id = MVC_V29LC51001,
10317 .total_size = 128,
10318 .page_size = 512,
10319 .feature_bits = FEATURE_EITHER_RESET,
10320 .tested = TEST_UNTESTED,
10321 .probe = probe_jedec,
10322 .probe_timing = TIMING_ZERO,
10323 .block_erasers =
10324 {
10325 {
10326 .eraseblocks = { {512, 256} },
10327 .block_erase = erase_sector_jedec,
10328 }, {
10329 .eraseblocks = { {128 * 1024, 1} },
10330 .block_erase = erase_chip_block_jedec,
10331 },
10332 },
10333 .write = write_jedec_1,
10334 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010335 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010336 },
10337
10338 {
10339 .vendor = "MoselVitelic",
10340 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010341 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010342 .manufacture_id = SYNCMOS_MVC_ID,
10343 .model_id = MVC_V29LC51002,
10344 .total_size = 256,
10345 .page_size = 512,
10346 .feature_bits = FEATURE_EITHER_RESET,
10347 .tested = TEST_UNTESTED,
10348 .probe = probe_jedec,
10349 .probe_timing = TIMING_ZERO,
10350 .block_erasers =
10351 {
10352 {
10353 .eraseblocks = { {512, 512} },
10354 .block_erase = erase_sector_jedec,
10355 }, {
10356 .eraseblocks = { {256 * 1024, 1} },
10357 .block_erase = erase_chip_block_jedec,
10358 },
10359 },
10360 .write = write_jedec_1,
10361 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010362 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010363 },
10364
10365 {
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010366 .vendor = "Nantronics",
10367 .name = "N25S10",
10368 .bustype = BUS_SPI,
10369 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10370 .model_id = NANTRONICS_N25S10,
10371 .total_size = 128,
10372 .page_size = 256,
10373 .feature_bits = FEATURE_WRSR_WREN,
10374 .tested = TEST_UNTESTED,
10375 .probe = probe_spi_rdid,
10376 .probe_timing = TIMING_ZERO,
10377 .block_erasers =
10378 {
10379 {
10380 .eraseblocks = { {4 * 1024, 32} },
10381 .block_erase = spi_block_erase_20,
10382 }, {
10383 .eraseblocks = { {4 * 1024, 32} },
10384 .block_erase = spi_block_erase_d7,
10385 }, {
10386 .eraseblocks = { {32 * 1024, 4} },
10387 .block_erase = spi_block_erase_52,
10388 }, {
10389 .eraseblocks = { {64 * 1024, 2} },
10390 .block_erase = spi_block_erase_d8,
10391 }, {
10392 .eraseblocks = { {128 * 1024, 1} },
10393 .block_erase = spi_block_erase_60,
10394 }, {
10395 .eraseblocks = { {128 * 1024, 1} },
10396 .block_erase = spi_block_erase_c7,
10397 }
10398 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010399 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010400 .unlock = spi_disable_blockprotect_bp3_srwd,
10401 .write = spi_chip_write_256,
10402 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10403 .voltage = {2700, 3600},
10404 },
10405
10406 {
10407 .vendor = "Nantronics",
10408 .name = "N25S20",
10409 .bustype = BUS_SPI,
10410 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10411 .model_id = NANTRONICS_N25S20,
10412 .total_size = 256,
10413 .page_size = 256,
10414 .feature_bits = FEATURE_WRSR_WREN,
10415 .tested = TEST_UNTESTED,
10416 .probe = probe_spi_rdid,
10417 .probe_timing = TIMING_ZERO,
10418 .block_erasers =
10419 {
10420 {
10421 .eraseblocks = { {4 * 1024, 64} },
10422 .block_erase = spi_block_erase_20,
10423 }, {
10424 .eraseblocks = { {4 * 1024, 64} },
10425 .block_erase = spi_block_erase_d7,
10426 }, {
10427 .eraseblocks = { {32 * 1024, 8} },
10428 .block_erase = spi_block_erase_52,
10429 }, {
10430 .eraseblocks = { {64 * 1024, 4} },
10431 .block_erase = spi_block_erase_d8,
10432 }, {
10433 .eraseblocks = { {256 * 1024, 1} },
10434 .block_erase = spi_block_erase_60,
10435 }, {
10436 .eraseblocks = { {256 * 1024, 1} },
10437 .block_erase = spi_block_erase_c7,
10438 }
10439 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010440 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010441 .unlock = spi_disable_blockprotect_bp3_srwd,
10442 .write = spi_chip_write_256,
10443 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10444 .voltage = {2700, 3600},
10445 },
10446
10447 {
10448 .vendor = "Nantronics",
10449 .name = "N25S40",
10450 .bustype = BUS_SPI,
10451 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10452 .model_id = NANTRONICS_N25S40,
10453 .total_size = 512,
10454 .page_size = 256,
10455 .feature_bits = FEATURE_WRSR_WREN,
10456 .tested = TEST_UNTESTED,
10457 .probe = probe_spi_rdid,
10458 .probe_timing = TIMING_ZERO,
10459 .block_erasers =
10460 {
10461 {
10462 .eraseblocks = { {4 * 1024, 128} },
10463 .block_erase = spi_block_erase_20,
10464 }, {
10465 .eraseblocks = { {4 * 1024, 128} },
10466 .block_erase = spi_block_erase_d7,
10467 }, {
10468 .eraseblocks = { {32 * 1024, 16} },
10469 .block_erase = spi_block_erase_52,
10470 }, {
10471 .eraseblocks = { {64 * 1024, 8} },
10472 .block_erase = spi_block_erase_d8,
10473 }, {
10474 .eraseblocks = { {512 * 1024, 1} },
10475 .block_erase = spi_block_erase_60,
10476 }, {
10477 .eraseblocks = { {512 * 1024, 1} },
10478 .block_erase = spi_block_erase_c7,
10479 }
10480 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010481 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010482 .unlock = spi_disable_blockprotect_bp3_srwd,
10483 .write = spi_chip_write_256,
10484 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10485 .voltage = {2700, 3600},
10486 },
10487
10488 {
10489 .vendor = "Nantronics",
10490 .name = "N25S80",
10491 .bustype = BUS_SPI,
10492 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10493 .model_id = NANTRONICS_N25S80,
10494 .total_size = 1024,
10495 .page_size = 256,
10496 .feature_bits = FEATURE_WRSR_WREN,
10497 .tested = TEST_UNTESTED,
10498 .probe = probe_spi_rdid,
10499 .probe_timing = TIMING_ZERO,
10500 .block_erasers =
10501 {
10502 {
10503 .eraseblocks = { {4 * 1024, 256} },
10504 .block_erase = spi_block_erase_20,
10505 }, {
10506 .eraseblocks = { {32 * 1024, 32} },
10507 .block_erase = spi_block_erase_52,
10508 }, {
10509 .eraseblocks = { {64 * 1024, 16} },
10510 .block_erase = spi_block_erase_d8,
10511 }, {
10512 .eraseblocks = { {1024 * 1024, 1} },
10513 .block_erase = spi_block_erase_60,
10514 }, {
10515 .eraseblocks = { {1024 * 1024, 1} },
10516 .block_erase = spi_block_erase_c7,
10517 }
10518 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010519 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010520 .unlock = spi_disable_blockprotect_bp3_srwd,
10521 .write = spi_chip_write_256,
10522 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10523 .voltage = {2700, 3600},
10524 },
10525
10526 {
10527 .vendor = "Nantronics",
10528 .name = "N25S16",
10529 .bustype = BUS_SPI,
10530 .manufacture_id = NANTRONICS_ID_NOPREFIX,
10531 .model_id = NANTRONICS_N25S16,
10532 .total_size = 2048,
10533 .page_size = 256,
10534 .feature_bits = FEATURE_WRSR_WREN,
10535 .tested = TEST_UNTESTED,
10536 .probe = probe_spi_rdid,
10537 .probe_timing = TIMING_ZERO,
10538 .block_erasers =
10539 {
10540 {
10541 .eraseblocks = { {4 * 1024, 512} },
10542 .block_erase = spi_block_erase_20,
10543 }, {
10544 .eraseblocks = { {64 * 1024, 32} },
10545 .block_erase = spi_block_erase_d8,
10546 }, {
10547 .eraseblocks = { {2048 * 1024, 1} },
10548 .block_erase = spi_block_erase_60,
10549 }, {
10550 .eraseblocks = { {2048 * 1024, 1} },
10551 .block_erase = spi_block_erase_c7,
10552 }
10553 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010554 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Taunerb6b00e92013-06-28 21:28:43 +000010555 .unlock = spi_disable_blockprotect_bp3_srwd,
10556 .write = spi_chip_write_256,
10557 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
10558 .voltage = {2700, 3600},
10559 },
10560
10561 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010562 .vendor = "PMC",
Stefan Taunerf4451612013-04-19 01:59:15 +000010563 .name = "Pm25LD256C",
10564 .bustype = BUS_SPI,
10565 .manufacture_id = PMC_ID,
10566 .model_id = PMC_PM25LD256C,
10567 .total_size = 32,
10568 .page_size = 256,
10569 .feature_bits = FEATURE_WRSR_WREN,
10570 .tested = TEST_UNTESTED,
10571 .probe = probe_spi_rdid,
10572 .probe_timing = TIMING_ZERO,
10573 .block_erasers =
10574 {
10575 {
10576 .eraseblocks = { {4 * 1024, 8} },
10577 .block_erase = spi_block_erase_20,
10578 }, {
10579 .eraseblocks = { {4 * 1024, 8} },
10580 .block_erase = spi_block_erase_d7,
10581 }, {
10582 .eraseblocks = { {32 * 1024, 1} },
10583 .block_erase = spi_block_erase_d8,
10584 }, {
10585 .eraseblocks = { {32 * 1024, 1} },
10586 .block_erase = spi_block_erase_60,
10587 }, {
10588 .eraseblocks = { {32 * 1024, 1} },
10589 .block_erase = spi_block_erase_c7,
10590 }
10591 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010592 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010593 .unlock = spi_disable_blockprotect,
10594 .write = spi_chip_write_256,
10595 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10596 .voltage = {2700, 3600},
10597 },
10598 {
10599 .vendor = "PMC",
10600 .name = "Pm25LD512(C)",
10601 .bustype = BUS_SPI,
10602 .manufacture_id = PMC_ID,
10603 .model_id = PMC_PM25LD512,
10604 .total_size = 64,
10605 .page_size = 256,
10606 .feature_bits = FEATURE_WRSR_WREN,
10607 .tested = TEST_OK_PREW,
10608 .probe = probe_spi_rdid,
10609 .probe_timing = TIMING_ZERO,
10610 .block_erasers =
10611 {
10612 {
10613 .eraseblocks = { {4 * 1024, 16} },
10614 .block_erase = spi_block_erase_20,
10615 }, {
10616 .eraseblocks = { {4 * 1024, 16} },
10617 .block_erase = spi_block_erase_d7,
10618 }, {
10619 .eraseblocks = { {32 * 1024, 2} },
10620 .block_erase = spi_block_erase_d8,
10621 }, {
10622 .eraseblocks = { {64 * 1024, 1} },
10623 .block_erase = spi_block_erase_60,
10624 }, {
10625 .eraseblocks = { {64 * 1024, 1} },
10626 .block_erase = spi_block_erase_c7,
10627 }
10628 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010629 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010630 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10631 .write = spi_chip_write_256,
10632 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10633 .voltage = {2300, 3600},
10634 },
10635
10636 {
10637 .vendor = "PMC",
10638 .name = "Pm25LD010(C)",
10639 .bustype = BUS_SPI,
10640 .manufacture_id = PMC_ID,
10641 .model_id = PMC_PM25LD010,
10642 .total_size = 128,
10643 .page_size = 256,
10644 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000010645 .tested = TEST_OK_PREW,
Stefan Taunerf4451612013-04-19 01:59:15 +000010646 .probe = probe_spi_rdid,
10647 .probe_timing = TIMING_ZERO,
10648 .block_erasers =
10649 {
10650 {
10651 .eraseblocks = { {4 * 1024, 32} },
10652 .block_erase = spi_block_erase_20,
10653 }, {
10654 .eraseblocks = { {4 * 1024, 32} },
10655 .block_erase = spi_block_erase_d7,
10656 }, {
10657 .eraseblocks = { {32 * 1024, 4} },
10658 .block_erase = spi_block_erase_d8,
10659 }, {
10660 .eraseblocks = { {128 * 1024, 1} },
10661 .block_erase = spi_block_erase_60,
10662 }, {
10663 .eraseblocks = { {128 * 1024, 1} },
10664 .block_erase = spi_block_erase_c7,
10665 }
10666 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010667 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010668 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10669 .write = spi_chip_write_256,
10670 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10671 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
10672 },
10673
10674 {
10675 .vendor = "PMC",
10676 .name = "Pm25LD020(C)",
10677 .bustype = BUS_SPI,
10678 .manufacture_id = PMC_ID,
10679 .model_id = PMC_PM25LD020,
10680 .total_size = 256,
10681 .page_size = 256,
10682 .feature_bits = FEATURE_WRSR_WREN,
10683 .tested = TEST_UNTESTED,
10684 .probe = probe_spi_rdid,
10685 .probe_timing = TIMING_ZERO,
10686 .block_erasers =
10687 {
10688 {
10689 .eraseblocks = { {4 * 1024, 64} },
10690 .block_erase = spi_block_erase_20,
10691 }, {
10692 .eraseblocks = { {4 * 1024, 64} },
10693 .block_erase = spi_block_erase_d7,
10694 }, {
10695 .eraseblocks = { {64 * 1024, 4} },
10696 .block_erase = spi_block_erase_d8,
10697 }, {
10698 .eraseblocks = { {256 * 1024, 1} },
10699 .block_erase = spi_block_erase_60,
10700 }, {
10701 .eraseblocks = { {256 * 1024, 1} },
10702 .block_erase = spi_block_erase_c7,
10703 }
10704 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010705 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010706 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
10707 .write = spi_chip_write_256,
10708 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10709 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
10710 },
10711
10712 {
10713 .vendor = "PMC",
10714 .name = "Pm25LD040(C)",
10715 .bustype = BUS_SPI,
10716 .manufacture_id = PMC_ID,
10717 .model_id = PMC_PM25LV040,
10718 .total_size = 512,
10719 .page_size = 256,
10720 .feature_bits = FEATURE_WRSR_WREN,
10721 .tested = TEST_UNTESTED,
10722 .probe = probe_spi_rdid,
10723 .probe_timing = TIMING_ZERO,
10724 .block_erasers =
10725 {
10726 {
10727 .eraseblocks = { {4 * 1024, 128} },
10728 .block_erase = spi_block_erase_20,
10729 }, {
10730 .eraseblocks = { {4 * 1024, 128} },
10731 .block_erase = spi_block_erase_d7,
10732 }, {
10733 .eraseblocks = { {64 * 1024, 8} },
10734 .block_erase = spi_block_erase_d8,
10735 }, {
10736 .eraseblocks = { {512 * 1024, 1} },
10737 .block_erase = spi_block_erase_60,
10738 }, {
10739 .eraseblocks = { {512 * 1024, 1} },
10740 .block_erase = spi_block_erase_c7,
10741 }
10742 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010743 .printlock = spi_prettyprint_status_register_bp2_srwd,
Stefan Taunerf4451612013-04-19 01:59:15 +000010744 .unlock = spi_disable_blockprotect,
10745 .write = spi_chip_write_256,
10746 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
10747 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
10748 },
10749
Steven Honeyman81a8fb72015-06-02 22:32:24 +000010750 {
10751 .vendor = "PMC",
10752 .name = "Pm25LQ020",
10753 .bustype = BUS_SPI,
10754 .manufacture_id = PMC_ID,
10755 .model_id = PMC_PM25LQ020,
10756 .total_size = 256,
10757 .page_size = 256,
10758 /* OTP: 256B total; read 0x4B, write 0xB1 */
10759 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10760 .tested = TEST_UNTESTED,
10761 .probe = probe_spi_rdid,
10762 .probe_timing = TIMING_ZERO,
10763 .block_erasers =
10764 {
10765 {
10766 .eraseblocks = { {4 * 1024, 64} },
10767 .block_erase = spi_block_erase_20,
10768 }, {
10769 .eraseblocks = { {4 * 1024, 64} },
10770 .block_erase = spi_block_erase_d7,
10771 }, {
10772 .eraseblocks = { {64 * 1024, 4} },
10773 .block_erase = spi_block_erase_d8,
10774 }, {
10775 .eraseblocks = { {256 * 1024, 1} },
10776 .block_erase = spi_block_erase_60,
10777 }, {
10778 .eraseblocks = { {256 * 1024, 1} },
10779 .block_erase = spi_block_erase_c7,
10780 }
10781 },
10782 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10783 .unlock = spi_disable_blockprotect_bp3_srwd,
10784 .write = spi_chip_write_256,
10785 .read = spi_chip_read,
10786 .voltage = {2300, 3600},
10787 },
10788
10789 {
10790 .vendor = "PMC",
10791 .name = "Pm25LQ040",
10792 .bustype = BUS_SPI,
10793 .manufacture_id = PMC_ID,
10794 .model_id = PMC_PM25LQ040,
10795 .total_size = 512,
10796 .page_size = 256,
10797 /* OTP: 256B total; read 0x4B, write 0xB1 */
10798 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10799 .tested = TEST_UNTESTED,
10800 .probe = probe_spi_rdid,
10801 .probe_timing = TIMING_ZERO,
10802 .block_erasers =
10803 {
10804 {
10805 .eraseblocks = { {4 * 1024, 128} },
10806 .block_erase = spi_block_erase_20,
10807 }, {
10808 .eraseblocks = { {4 * 1024, 128} },
10809 .block_erase = spi_block_erase_d7,
10810 }, {
10811 .eraseblocks = { {64 * 1024, 8} },
10812 .block_erase = spi_block_erase_d8,
10813 }, {
10814 .eraseblocks = { {512 * 1024, 1} },
10815 .block_erase = spi_block_erase_60,
10816 }, {
10817 .eraseblocks = { {512 * 1024, 1} },
10818 .block_erase = spi_block_erase_c7,
10819 }
10820 },
10821 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10822 .unlock = spi_disable_blockprotect_bp3_srwd,
10823 .write = spi_chip_write_256,
10824 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10825 .voltage = {2300, 3600},
10826 },
10827
10828 {
10829 .vendor = "PMC",
10830 .name = "Pm25LQ080",
10831 .bustype = BUS_SPI,
10832 .manufacture_id = PMC_ID,
10833 .model_id = PMC_PM25LQ080,
10834 .total_size = 1024,
10835 .page_size = 256,
10836 /* OTP: 64B total; read 0x4B, write 0xB1 */
10837 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10838 .tested = TEST_UNTESTED,
10839 .probe = probe_spi_rdid,
10840 .probe_timing = TIMING_ZERO,
10841 .block_erasers =
10842 {
10843 {
10844 .eraseblocks = { {4 * 1024, 256} },
10845 .block_erase = spi_block_erase_20,
10846 }, {
10847 .eraseblocks = { {4 * 1024, 256} },
10848 .block_erase = spi_block_erase_d7,
10849 }, {
10850 .eraseblocks = { {64 * 1024, 16} },
10851 .block_erase = spi_block_erase_d8,
10852 }, {
10853 .eraseblocks = { {1024 * 1024, 1} },
10854 .block_erase = spi_block_erase_60,
10855 }, {
10856 .eraseblocks = { {1024 * 1024, 1} },
10857 .block_erase = spi_block_erase_c7,
10858 }
10859 },
10860 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10861 .unlock = spi_disable_blockprotect_bp3_srwd,
10862 .write = spi_chip_write_256,
10863 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10864 .voltage = {2300, 3600},
10865 },
10866
10867 {
10868 .vendor = "PMC",
10869 .name = "Pm25LQ016",
10870 .bustype = BUS_SPI,
10871 .manufacture_id = PMC_ID,
10872 .model_id = PMC_PM25LQ016,
10873 .total_size = 2048,
10874 .page_size = 256,
10875 /* OTP: 256B total; read 0x4B, write 0xB1 */
10876 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10877 .tested = TEST_UNTESTED,
10878 .probe = probe_spi_rdid,
10879 .probe_timing = TIMING_ZERO,
10880 .block_erasers =
10881 {
10882 {
10883 .eraseblocks = { {4 * 1024, 512} },
10884 .block_erase = spi_block_erase_20,
10885 }, {
10886 .eraseblocks = { {4 * 1024, 512} },
10887 .block_erase = spi_block_erase_d7,
10888 }, {
10889 .eraseblocks = { {64 * 1024, 32} },
10890 .block_erase = spi_block_erase_d8,
10891 }, {
10892 .eraseblocks = { {2048 * 1024, 1} },
10893 .block_erase = spi_block_erase_60,
10894 }, {
10895 .eraseblocks = { {2048 * 1024, 1} },
10896 .block_erase = spi_block_erase_c7,
10897 }
10898 },
10899 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10900 .unlock = spi_disable_blockprotect_bp3_srwd,
10901 .write = spi_chip_write_256,
10902 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10903 .voltage = {2300, 3600},
10904 },
10905
10906 {
10907 .vendor = "PMC",
10908 .name = "Pm25LQ032C",
10909 .bustype = BUS_SPI,
10910 .manufacture_id = PMC_ID,
10911 .model_id = PMC_PM25LQ032C,
10912 .total_size = 4096,
10913 .page_size = 256,
10914 /* OTP: 64B total; read 0x4B, write 0xB1 */
10915 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000010916 .tested = TEST_OK_PREW,
Steven Honeyman81a8fb72015-06-02 22:32:24 +000010917 .probe = probe_spi_rdid,
10918 .probe_timing = TIMING_ZERO,
10919 .block_erasers =
10920 {
10921 {
10922 .eraseblocks = { {4 * 1024, 1024} },
10923 .block_erase = spi_block_erase_20,
10924 }, {
10925 .eraseblocks = { {4 * 1024, 1024} },
10926 .block_erase = spi_block_erase_d7,
10927 }, {
10928 .eraseblocks = { {64 * 1024, 64} },
10929 .block_erase = spi_block_erase_d8,
10930 }, {
10931 .eraseblocks = { {4096 * 1024, 1} },
10932 .block_erase = spi_block_erase_60,
10933 }, {
10934 .eraseblocks = { {4096 * 1024, 1} },
10935 .block_erase = spi_block_erase_c7,
10936 }
10937 },
10938 .printlock = spi_prettyprint_status_register_bp3_srwd, /* bit6 is quad enable */
10939 .unlock = spi_disable_blockprotect_bp3_srwd,
10940 .write = spi_chip_write_256,
10941 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
10942 .voltage = {2700, 3600},
10943 },
10944
10945 {
Stefan Taunerf4451612013-04-19 01:59:15 +000010946 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000010947 .name = "Pm25LV512(A)",
10948 .bustype = BUS_SPI,
Stefan Taunerbecda742014-05-30 19:34:00 +000010949 .manufacture_id = PMC_ID_NOPREFIX,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000010950 .model_id = PMC_PM25LV512,
10951 .total_size = 64,
10952 .page_size = 256,
10953 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner5c316f92015-02-08 21:57:52 +000010954 .tested = TEST_OK_PREW,
Stefan Taunerbecda742014-05-30 19:34:00 +000010955 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000010956 .probe_timing = TIMING_ZERO,
10957 .block_erasers =
10958 {
10959 {
10960 .eraseblocks = { {4 * 1024, 16} },
10961 .block_erase = spi_block_erase_d7,
10962 }, {
10963 .eraseblocks = { {32 * 1024, 2} },
10964 .block_erase = spi_block_erase_d8,
10965 }, {
10966 .eraseblocks = { {64 * 1024, 1} },
10967 .block_erase = spi_block_erase_c7,
10968 }
10969 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000010970 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000010971 .unlock = spi_disable_blockprotect,
10972 .write = spi_chip_write_256,
10973 .read = spi_chip_read, /* Fast read (0x0B) supported */
10974 .voltage = {2700, 3600},
10975 },
10976
10977 {
10978 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010979 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010980 .bustype = BUS_SPI,
Stefan Taunerbecda742014-05-30 19:34:00 +000010981 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000010982 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010983 .total_size = 128,
10984 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000010985 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerbecda742014-05-30 19:34:00 +000010986 .tested = TEST_OK_PREW,
10987 .probe = probe_spi_res2, /* The continuation code is transferred as the 3rd byte m( */
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000010988 .probe_timing = TIMING_ZERO,
10989 .block_erasers =
10990 {
10991 {
10992 .eraseblocks = { {4 * 1024, 32} },
10993 .block_erase = spi_block_erase_d7,
10994 }, {
10995 .eraseblocks = { {32 * 1024, 4} },
10996 .block_erase = spi_block_erase_d8,
10997 }, {
10998 .eraseblocks = { {128 * 1024, 1} },
10999 .block_erase = spi_block_erase_c7,
11000 }
11001 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011002 .printlock = spi_prettyprint_status_register_bp1_srwd,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011003 .unlock = spi_disable_blockprotect,
11004 .write = spi_chip_write_256,
11005 .read = spi_chip_read, /* Fast read (0x0B) supported */
11006 .voltage = {2700, 3600},
11007 },
11008
11009 {
11010 .vendor = "PMC",
11011 .name = "Pm25LV010A",
11012 .bustype = BUS_SPI,
11013 .manufacture_id = PMC_ID,
11014 .model_id = PMC_PM25LV010,
11015 .total_size = 128,
11016 .page_size = 256,
11017 .feature_bits = FEATURE_WRSR_WREN,
11018 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011019 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011020 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011021 .block_erasers =
11022 {
11023 {
11024 .eraseblocks = { {4 * 1024, 32} },
11025 .block_erase = spi_block_erase_d7,
11026 }, {
11027 .eraseblocks = { {32 * 1024, 4} },
11028 .block_erase = spi_block_erase_d8,
11029 }, {
11030 .eraseblocks = { {128 * 1024, 1} },
11031 .block_erase = spi_block_erase_c7,
11032 }
11033 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011034 .printlock = spi_prettyprint_status_register_bp1_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011035 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011036 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011037 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011038 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011039 },
11040
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011041 {
11042 .vendor = "PMC",
11043 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011044 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011045 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011046 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011047 .total_size = 256,
11048 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011049 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011050 .tested = TEST_UNTESTED,
11051 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011052 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011053 .block_erasers =
11054 {
11055 {
11056 .eraseblocks = { {4 * 1024, 64} },
11057 .block_erase = spi_block_erase_d7,
11058 }, {
11059 .eraseblocks = { {64 * 1024, 4} },
11060 .block_erase = spi_block_erase_d8,
11061 }, {
11062 .eraseblocks = { {256 * 1024, 1} },
11063 .block_erase = spi_block_erase_c7,
11064 }
11065 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011066 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011067 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011068 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011069 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011070 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011071 },
11072
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011073 {
11074 .vendor = "PMC",
11075 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011076 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011077 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011078 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011079 .total_size = 512,
11080 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011081 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +000011082 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011083 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011084 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011085 .block_erasers =
11086 {
11087 {
11088 .eraseblocks = { {4 * 1024, 128} },
11089 .block_erase = spi_block_erase_d7,
11090 }, {
11091 .eraseblocks = { {64 * 1024, 8} },
11092 .block_erase = spi_block_erase_d8,
11093 }, {
11094 .eraseblocks = { {512 * 1024, 1} },
11095 .block_erase = spi_block_erase_c7,
11096 }
11097 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011098 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011099 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011100 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011101 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011102 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011103 },
11104
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011105 {
11106 .vendor = "PMC",
11107 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011108 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011109 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011110 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011111 .total_size = 1024,
11112 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011113 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011114 .tested = TEST_UNTESTED,
11115 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011116 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011117 .block_erasers =
11118 {
11119 {
11120 .eraseblocks = { {4 * 1024, 256} },
11121 .block_erase = spi_block_erase_d7,
11122 }, {
11123 .eraseblocks = { {4 * 1024, 256} },
11124 .block_erase = spi_block_erase_20,
11125 }, {
11126 .eraseblocks = { {64 * 1024, 16} },
11127 .block_erase = spi_block_erase_d8,
11128 }, {
11129 .eraseblocks = { {1024 * 1024, 1} },
11130 .block_erase = spi_block_erase_60,
11131 }, {
11132 .eraseblocks = { {1024 * 1024, 1} },
11133 .block_erase = spi_block_erase_c7,
11134 }
11135 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011136 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011137 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011138 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011139 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011140 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011141 },
11142
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011143 {
11144 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011145 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011146 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011147 .manufacture_id = PMC_ID,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011148 .model_id = PMC_PM25LV016B,
11149 .total_size = 2048,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011150 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011151 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011152 .tested = TEST_UNTESTED,
11153 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011154 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011155 .block_erasers =
11156 {
11157 {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011158 .eraseblocks = { {4 * 1024, 512} },
Sean Nelson5643c072010-01-19 03:23:07 +000011159 .block_erase = spi_block_erase_d7,
11160 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011161 .eraseblocks = { {4 * 1024, 512} },
11162 .block_erase = spi_block_erase_20,
11163 }, {
11164 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson5643c072010-01-19 03:23:07 +000011165 .block_erase = spi_block_erase_d8,
11166 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011167 .eraseblocks = { {2 * 1024 * 1024, 1} },
11168 .block_erase = spi_block_erase_60,
11169 }, {
11170 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +000011171 .block_erase = spi_block_erase_c7,
11172 }
11173 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011174 .printlock = spi_prettyprint_status_register_bp2_srwd,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011175 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011176 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +000011177 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +000011178 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011179 },
11180
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011181 {
11182 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +000011183 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011184 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011185 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011186 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011187 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +000011188 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011189 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011190 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000011191 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011192 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +000011193 .block_erasers =
11194 {
11195 {
11196 .eraseblocks = {
11197 {128 * 1024, 1},
11198 {96 * 1024, 1},
11199 {8 * 1024, 2},
11200 {16 * 1024, 1},
11201 },
Sean Nelson35727f72010-01-28 23:55:12 +000011202 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011203 }, {
11204 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000011205 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011206 },
11207 },
Sean Nelson35727f72010-01-28 23:55:12 +000011208 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011209 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011210 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011211 },
11212
11213 {
11214 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +000011215 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011216 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011217 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011218 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011219 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +000011220 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011221 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011222 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000011223 .probe = probe_jedec,
Stefan Tauner1aa80b02013-07-25 22:58:51 +000011224 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +000011225 .block_erasers =
11226 {
11227 {
11228 .eraseblocks = {
11229 {16 * 1024, 1},
11230 {8 * 1024, 2},
11231 {96 * 1024, 1},
11232 {128 * 1024, 1},
11233 },
Sean Nelson35727f72010-01-28 23:55:12 +000011234 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011235 }, {
11236 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000011237 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000011238 },
11239 },
Sean Nelson35727f72010-01-28 23:55:12 +000011240 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011241 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011242 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +000011243 },
11244
11245 {
11246 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011247 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011248 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011249 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011250 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011251 .total_size = 128,
11252 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000011253 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011254 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011255 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011256 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +000011257 .block_erasers =
11258 {
11259 {
11260 .eraseblocks = { {4 * 1024, 32} },
11261 .block_erase = erase_sector_jedec,
11262 }, {
11263 .eraseblocks = { {64 * 1024, 2} },
11264 .block_erase = erase_block_jedec,
11265 }, {
11266 .eraseblocks = { {128 * 1024, 1} },
11267 .block_erase = erase_chip_block_jedec,
11268 }
11269 },
Sean Nelson35727f72010-01-28 23:55:12 +000011270 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011271 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011272 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +000011273 },
11274
11275 {
11276 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011277 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011278 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011279 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011280 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011281 .total_size = 256,
11282 .page_size = 4096,
11283 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11284 .tested = TEST_UNTESTED,
11285 .probe = probe_jedec,
11286 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11287 .block_erasers =
11288 {
11289 {
11290 .eraseblocks = { {4 * 1024, 64} },
11291 .block_erase = erase_sector_jedec,
11292 }, {
11293 .eraseblocks = { {64 * 1024, 4} },
11294 .block_erase = erase_block_jedec,
11295 }, {
11296 .eraseblocks = { {256 * 1024, 1} },
11297 .block_erase = erase_chip_block_jedec,
11298 }
11299 },
11300 .write = write_jedec_1,
11301 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011302 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011303 },
11304
11305 {
11306 .vendor = "PMC",
11307 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011308 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011309 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011310 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011311 .total_size = 512,
11312 .page_size = 4096,
11313 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011314 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011315 .probe = probe_jedec,
11316 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11317 .block_erasers =
11318 {
11319 {
11320 .eraseblocks = { {4 * 1024, 128} },
11321 .block_erase = erase_sector_jedec,
11322 }, {
11323 .eraseblocks = { {64 * 1024, 8} },
11324 .block_erase = erase_block_jedec,
11325 }, {
11326 .eraseblocks = { {512 * 1024, 1} },
11327 .block_erase = erase_chip_block_jedec,
11328 }
11329 },
11330 .write = write_jedec_1,
11331 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011332 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011333 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +000011334
11335 {
11336 .vendor = "PMC",
11337 .name = "Pm39LV512",
11338 .bustype = BUS_PARALLEL,
11339 .manufacture_id = PMC_ID_NOPREFIX,
11340 .model_id = PMC_PM39LV512,
11341 .total_size = 64,
11342 .page_size = 4096,
11343 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
11344 .tested = TEST_OK_PREW,
11345 .probe = probe_jedec,
11346 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
11347 .block_erasers =
11348 {
11349 {
11350 .eraseblocks = { {4 * 1024, 16} },
11351 .block_erase = erase_sector_jedec,
11352 }, {
11353 .eraseblocks = { {64 * 1024, 1} },
11354 .block_erase = erase_block_jedec,
11355 }, {
11356 .eraseblocks = { {64 * 1024, 1} },
11357 .block_erase = erase_chip_block_jedec,
11358 }
11359 },
11360 .write = write_jedec_1,
11361 .read = read_memmapped,
11362 .voltage = {2700, 3600},
11363 },
11364
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +000011365 {
11366 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011367 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011368 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011369 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011370 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011371 .total_size = 256,
11372 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011373 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011374 .tested = TEST_OK_PR,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011375 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011376 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +000011377 .block_erasers =
11378 {
11379 {
11380 .eraseblocks = { {4 * 1024, 64} },
11381 .block_erase = erase_sector_jedec,
11382 }, {
11383 .eraseblocks = { {16 * 1024, 16} },
11384 .block_erase = erase_block_jedec,
11385 }, {
11386 .eraseblocks = { {256 * 1024, 1} },
11387 .block_erase = erase_chip_block_jedec,
11388 }
11389 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011390 .unlock = unlock_regspace2_uniform_32k,
Sean Nelson36172342010-02-27 18:01:15 +000011391 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011392 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011393 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011394 },
11395
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011396 {
11397 .vendor = "PMC",
11398 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011399 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011400 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011401 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011402 .total_size = 512,
11403 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011404 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011405 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011406 .probe = probe_jedec,
Stefan Tauner74dc73f2015-03-01 22:04:38 +000011407 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011408 .block_erasers =
11409 {
11410 {
11411 .eraseblocks = { {4 * 1024, 128} },
11412 .block_erase = erase_sector_jedec,
11413 }, {
11414 .eraseblocks = { {64 * 1024, 8} },
11415 .block_erase = erase_block_jedec,
11416 }, {
11417 .eraseblocks = { {512 * 1024, 1} },
11418 .block_erase = erase_chip_block_jedec,
11419 }
11420 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011421 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson36172342010-02-27 18:01:15 +000011422 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011423 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011424 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011425 },
11426
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011427 {
Sean Nelsond70b09c2009-11-24 02:11:08 +000011428 .vendor = "Sanyo",
Stefan Taunera60d4082014-06-04 16:17:03 +000011429 .name = "LE25FW106",
11430 .bustype = BUS_SPI,
11431 .manufacture_id = SANYO_ID,
11432 .model_id = SANYO_LE25FW106,
11433 .total_size = 128,
11434 .page_size = 256,
11435 .feature_bits = FEATURE_WRSR_WREN,
11436 .tested = TEST_OK_PREW,
11437 .probe = probe_spi_res2,
11438 .probe_timing = TIMING_ZERO,
11439 .block_erasers = {
11440 {
11441 .eraseblocks = { {2 * 1024, 64} },
11442 .block_erase = spi_block_erase_d7,
11443 }, {
11444 .eraseblocks = { {32 * 1024, 4} },
11445 .block_erase = spi_block_erase_d8,
11446 }, {
11447 .eraseblocks = { {128 * 1024, 1} },
11448 .block_erase = spi_block_erase_c7,
11449 }
11450 },
11451 .printlock = spi_prettyprint_status_register_bp1_srwd, /* FIXME: Add ERSER error flag. */
11452 .unlock = spi_disable_blockprotect_bp1_srwd,
11453 .write = spi_chip_write_256,
11454 .read = spi_chip_read,
11455 .voltage = {2700, 3600},
11456 },
11457
11458 {
11459 .vendor = "Sanyo",
Stefan Tauner33491b82014-05-18 21:36:04 +000011460 .name = "LE25FW406A",
11461 .bustype = BUS_SPI,
11462 .manufacture_id = SANYO_ID,
11463 .model_id = SANYO_LE25FW406A,
11464 .total_size = 512,
11465 .page_size = 256,
11466 .feature_bits = FEATURE_WRSR_WREN,
11467 .tested = TEST_OK_PREW,
11468 .probe = probe_spi_res2,
11469 .probe_timing = TIMING_ZERO,
11470 .block_erasers = {
11471 {
11472 .eraseblocks = { {4 * 1024, 128} },
11473 .block_erase = spi_block_erase_d7,
11474 }, {
11475 .eraseblocks = { {64 * 1024, 8} },
11476 .block_erase = spi_block_erase_d8,
11477 }, {
11478 .eraseblocks = { {512 * 1024, 1} },
11479 .block_erase = spi_block_erase_c7,
11480 }
11481 },
11482 .printlock = spi_prettyprint_status_register_plain,
11483 .unlock = spi_disable_blockprotect,
11484 .write = spi_chip_write_256,
11485 .read = spi_chip_read,
11486 .voltage = {2700, 3600},
11487 },
11488
11489 {
11490 .vendor = "Sanyo",
Jurij Mundaa1e53742014-05-14 13:19:50 +000011491 .name = "LE25FU406B",
11492 .bustype = BUS_SPI,
11493 .manufacture_id = SANYO_ID,
11494 .model_id = SANYO_LE25FU406B,
11495 .total_size = 512,
11496 .page_size = 256,
11497 .feature_bits = FEATURE_WRSR_WREN,
11498 .tested = TEST_OK_PREW,
11499 .probe = probe_spi_res2,
11500 .probe_timing = TIMING_ZERO,
11501 .block_erasers = {
11502 {
11503 .eraseblocks = { {4 * 1024, 128} },
11504 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011505 }, {
Jurij Mundaa1e53742014-05-14 13:19:50 +000011506 .eraseblocks = { {64 * 1024, 8} },
11507 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011508 }, {
Jurij Mundaa1e53742014-05-14 13:19:50 +000011509 .eraseblocks = { {512 * 1024, 1} },
11510 .block_erase = spi_block_erase_c7,
11511 }
11512 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011513 .printlock = spi_prettyprint_status_register_bp2_srwd,
Jurij Mundaa1e53742014-05-14 13:19:50 +000011514 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11515 .write = spi_chip_write_256,
11516 .read = spi_chip_read,
11517 .voltage = {2300, 3600},
11518 },
11519
11520 {
11521 .vendor = "Sanyo",
Stefan Tauner2f055df2015-12-25 22:13:15 +000011522 .name = "LE25FU406C/LE25U40CMC",
11523 .bustype = BUS_SPI,
11524 .manufacture_id = SANYO_ID,
11525 .model_id = SANYO_LE25FU406C,
11526 .total_size = 512,
11527 .page_size = 256,
11528 .feature_bits = FEATURE_WRSR_WREN,
11529 .tested = TEST_OK_PR,
11530 .probe = probe_spi_rdid,
11531 .probe_timing = TIMING_ZERO,
11532 .block_erasers = {
11533 {
11534 .eraseblocks = { {4 * 1024, 128} },
11535 .block_erase = spi_block_erase_20,
11536 }, {
11537 .eraseblocks = { {4 * 1024, 128} },
11538 .block_erase = spi_block_erase_d7,
11539 }, {
11540 .eraseblocks = { {64 * 1024, 8} },
11541 .block_erase = spi_block_erase_d8,
11542 }, {
11543 .eraseblocks = { {512 * 1024, 1} },
11544 .block_erase = spi_block_erase_60,
11545 }, {
11546 .eraseblocks = { {512 * 1024, 1} },
11547 .block_erase = spi_block_erase_c7,
11548 }
11549 },
11550 .printlock = spi_prettyprint_status_register_bp2_srwd,
11551 .unlock = spi_disable_blockprotect_bp2_srwd,
11552 .write = spi_chip_write_256,
11553 .read = spi_chip_read, /* Fast read (0x0B), dual read (0x3B) and dual I/O (0xBB) supported */
11554 .voltage = {2300, 3600},
11555 },
11556
11557 {
11558 .vendor = "Sanyo",
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011559 .name = "LE25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011560 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +000011561 .manufacture_id = SANYO_ID,
11562 .model_id = SANYO_LE25FW203A,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011563 .total_size = 256,
Sean Nelsond70b09c2009-11-24 02:11:08 +000011564 .page_size = 256,
11565 .tested = TEST_UNTESTED,
11566 .probe = probe_spi_rdid,
11567 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011568 .block_erasers =
11569 {
11570 {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011571 .eraseblocks = { {256, 1024} },
11572 .block_erase = spi_block_erase_db,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011573 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011574 .eraseblocks = { {64 * 1024, 4} },
Sean Nelson5643c072010-01-19 03:23:07 +000011575 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011576 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011577 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +000011578 .block_erase = spi_block_erase_c7,
11579 }
11580 },
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011581 .printlock = spi_prettyprint_status_register_default_welwip,
11582 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Sean Nelsond70b09c2009-11-24 02:11:08 +000011583 .write = spi_chip_write_256,
11584 .read = spi_chip_read,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011585 .voltage = {2700, 3600},
11586 },
11587
11588 {
11589 .vendor = "Sanyo",
11590 .name = "LE25FW403A",
11591 .bustype = BUS_SPI,
11592 .manufacture_id = SANYO_ID,
11593 .model_id = SANYO_LE25FW403A,
11594 .total_size = 512,
11595 .page_size = 256,
11596 .tested = TEST_UNTESTED,
11597 .probe = probe_spi_rdid,
11598 .probe_timing = TIMING_ZERO,
11599 .block_erasers = {
11600 {
11601 .eraseblocks = { {256, 2 * 1024} },
11602 .block_erase = spi_block_erase_db,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011603 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011604 .eraseblocks = { {64 * 1024, 8} },
11605 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011606 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011607 .eraseblocks = { {512 * 1024, 1} },
11608 .block_erase = spi_block_erase_c7,
11609 }
11610 },
11611 .printlock = spi_prettyprint_status_register_default_welwip,
11612 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
11613 .write = spi_chip_write_256,
11614 .read = spi_chip_read,
11615 .voltage = {2700, 3600},
11616 },
11617
11618 {
11619 .vendor = "Sanyo",
11620 .name = "LE25FW418A",
11621 .bustype = BUS_SPI,
11622 .manufacture_id = SANYO_ID,
11623 .model_id = SANYO_LE25FW418A,
11624 .total_size = 512,
11625 .page_size = 256,
11626 .feature_bits = FEATURE_WRSR_WREN,
11627 .tested = TEST_UNTESTED,
11628 .probe = probe_spi_res2,
11629 .probe_timing = TIMING_ZERO,
11630 .block_erasers = {
11631 {
11632 .eraseblocks = { {4 * 1024, 128} },
11633 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011634 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011635 .eraseblocks = { {64 * 1024, 8} },
11636 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011637 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011638 .eraseblocks = { {512 * 1024, 1} },
11639 .block_erase = spi_block_erase_c7,
11640 }
11641 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011642 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011643 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11644 .write = spi_chip_write_256,
11645 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
11646 .voltage = {2700, 3600},
11647 },
11648
11649 {
11650 .vendor = "Sanyo",
11651 .name = "LE25FW806",
11652 .bustype = BUS_SPI,
11653 .manufacture_id = SANYO_ID,
11654 .model_id = SANYO_LE25FW806,
11655 .total_size = 1024,
11656 .page_size = 256,
11657 .feature_bits = FEATURE_WRSR_WREN,
11658 .tested = TEST_UNTESTED,
11659 .probe = probe_spi_res2,
11660 .probe_timing = TIMING_ZERO,
11661 .block_erasers = {
11662 {
11663 .eraseblocks = { {4 * 1024, 256} },
11664 .block_erase = spi_block_erase_20,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011665 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011666 .eraseblocks = { {4 * 1024, 256} },
11667 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011668 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011669 .eraseblocks = { {64 * 1024, 16} },
11670 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011671 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011672 .eraseblocks = { {1024 * 1024, 1} },
11673 .block_erase = spi_block_erase_c7,
11674 }
11675 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011676 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011677 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11678 .write = spi_chip_write_256,
11679 .read = spi_chip_read,
11680 .voltage = {2700, 3600},
11681 },
11682
11683 {
11684 .vendor = "Sanyo",
11685 .name = "LE25FW808",
11686 .bustype = BUS_SPI,
11687 .manufacture_id = SANYO_ID,
11688 .model_id = SANYO_LE25FW808,
11689 .total_size = 1024,
11690 .page_size = 256,
11691 .feature_bits = FEATURE_WRSR_WREN,
11692 .tested = TEST_UNTESTED,
11693 .probe = probe_spi_res2,
11694 .probe_timing = TIMING_ZERO,
11695 .block_erasers = {
11696 {
11697 .eraseblocks = { {8 * 1024, 128} },
11698 .block_erase = spi_block_erase_d7,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011699 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011700 .eraseblocks = { {64 * 1024, 16} },
11701 .block_erase = spi_block_erase_d8,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011702 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011703 .eraseblocks = { {1024 * 1024, 1} },
11704 .block_erase = spi_block_erase_c7,
11705 }
11706 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011707 .printlock = spi_prettyprint_status_register_bp2_srwd,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +000011708 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
11709 .write = spi_chip_write_256,
11710 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
11711 .voltage = {2700, 3600},
Sean Nelsond70b09c2009-11-24 02:11:08 +000011712 },
11713
11714 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011715 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +000011716 .name = "LH28F008BJT-BTLZ1",
11717 .bustype = BUS_PARALLEL,
11718 .manufacture_id = SHARP_ID,
Stefan Tauner352e50b2013-02-22 15:58:45 +000011719 .model_id = SHARP_LH28F008BJ__PB,
Mattias Mattssonfca3b012011-08-25 22:44:11 +000011720 .total_size = 1024,
11721 .page_size = 64 * 1024,
11722 .tested = TEST_OK_PREW,
11723 .probe = probe_82802ab,
11724 .probe_timing = TIMING_ZERO,
11725 .block_erasers =
11726 {
11727 {
11728 .eraseblocks = {
11729 {8 * 1024, 8},
11730 {64 * 1024, 15}
11731 },
11732 .block_erase = erase_block_82802ab,
11733 }, {
11734 .eraseblocks = { {1024 * 1024, 1} },
11735 .block_erase = erase_sector_49lfxxxc,
11736 }
11737 },
11738 .unlock = unlock_lh28f008bjt,
11739 .write = write_82802ab,
11740 .read = read_memmapped,
11741 .voltage = {2700, 3600},
11742 },
11743
11744 {
11745 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011746 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011747 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011748 .manufacture_id = SHARP_ID,
11749 .model_id = SHARP_LHF00L04,
11750 .total_size = 1024,
11751 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000011752 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011753 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000011754 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011755 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011756 .block_erasers =
11757 {
11758 {
11759 .eraseblocks = {
11760 {64 * 1024, 15},
11761 {8 * 1024, 8}
11762 },
Sean Nelson28accc22010-03-19 18:47:06 +000011763 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011764 }, {
11765 .eraseblocks = {
11766 {1024 * 1024, 1}
11767 },
Sean Nelson51c83fb2010-01-20 20:55:53 +000011768 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000011769 },
11770 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000011771 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000011772 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011773 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011774 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011775 },
11776
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011777 {
11778 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +000011779 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011780 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011781 .manufacture_id = SPANSION_ID,
11782 .model_id = SPANSION_S25FL004A,
11783 .total_size = 512,
11784 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011785 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +000011786 .tested = TEST_UNTESTED,
11787 .probe = probe_spi_rdid,
11788 .probe_timing = TIMING_ZERO,
11789 .block_erasers =
11790 {
11791 {
11792 .eraseblocks = { {64 * 1024, 8} },
11793 .block_erase = spi_block_erase_d8,
11794 }, {
11795 .eraseblocks = { {512 * 1024, 1} },
11796 .block_erase = spi_block_erase_c7,
11797 }
11798 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011799 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000011800 .unlock = spi_disable_blockprotect,
11801 .write = spi_chip_write_256,
11802 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011803 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000011804 },
11805
11806 {
11807 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +000011808 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011809 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +000011810 .manufacture_id = SPANSION_ID,
11811 .model_id = SPANSION_S25FL008A,
11812 .total_size = 1024,
11813 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011814 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000011815 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +000011816 .probe = probe_spi_rdid,
11817 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +000011818 .block_erasers =
11819 {
11820 {
11821 .eraseblocks = { {64 * 1024, 16} },
11822 .block_erase = spi_block_erase_d8,
11823 }, {
11824 .eraseblocks = { {1024 * 1024, 1} },
11825 .block_erase = spi_block_erase_c7,
11826 }
11827 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011828 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011829 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +000011830 .write = spi_chip_write_256,
11831 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011832 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +000011833 },
11834
11835 {
11836 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011837 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011838 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011839 .manufacture_id = SPANSION_ID,
11840 .model_id = SPANSION_S25FL016A,
11841 .total_size = 2048,
11842 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011843 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011844 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011845 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011846 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +000011847 .block_erasers =
11848 {
11849 {
11850 .eraseblocks = { {64 * 1024, 32} },
11851 .block_erase = spi_block_erase_d8,
11852 }, {
11853 .eraseblocks = { {2 * 1024 * 1024, 1} },
11854 .block_erase = spi_block_erase_c7,
11855 }
11856 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011857 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011858 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011859 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011860 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011861 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011862 },
11863
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011864 {
Rudy Hostf4e57772010-11-29 00:37:49 +000011865 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +000011866 .name = "S25FL032A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011867 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011868 .manufacture_id = SPANSION_ID,
11869 .model_id = SPANSION_S25FL032A,
11870 .total_size = 4096,
11871 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011872 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000011873 .tested = TEST_OK_PREW,
Rudy Hostf4e57772010-11-29 00:37:49 +000011874 .probe = probe_spi_rdid,
11875 .probe_timing = TIMING_ZERO,
11876 .block_erasers =
11877 {
11878 {
11879 .eraseblocks = { {64 * 1024, 64} },
11880 .block_erase = spi_block_erase_d8,
11881 }, {
11882 .eraseblocks = { {4 * 1024 * 1024, 1} },
11883 .block_erase = spi_block_erase_c7,
11884 }
11885 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011886 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000011887 .unlock = spi_disable_blockprotect,
11888 .write = spi_chip_write_256,
11889 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011890 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000011891 },
11892
11893 {
11894 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +000011895 .name = "S25FL064A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011896 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +000011897 .manufacture_id = SPANSION_ID,
11898 .model_id = SPANSION_S25FL064A,
11899 .total_size = 8192,
11900 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000011901 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +000011902 .tested = TEST_OK_PREW,
11903 .probe = probe_spi_rdid,
11904 .probe_timing = TIMING_ZERO,
11905 .block_erasers =
11906 {
11907 {
11908 .eraseblocks = { {64 * 1024, 128} },
11909 .block_erase = spi_block_erase_d8,
11910 }, {
11911 .eraseblocks = { {8 * 1024 * 1024, 1} },
11912 .block_erase = spi_block_erase_c7,
11913 }
11914 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011915 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +000011916 .unlock = spi_disable_blockprotect,
11917 .write = spi_chip_write_256,
11918 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011919 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +000011920 },
11921
11922 {
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011923 .vendor = "Spansion",
11924 .name = "S25FL204K",
11925 .bustype = BUS_SPI,
11926 .manufacture_id = SPANSION_ID,
11927 .model_id = SPANSION_S25FL204,
11928 .total_size = 512,
11929 .page_size = 256,
11930 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000011931 .tested = TEST_OK_PR,
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011932 .probe = probe_spi_rdid,
11933 .probe_timing = TIMING_ZERO,
11934 .block_erasers = {
11935 {
11936 .eraseblocks = { {4 * 1024, 128} },
11937 .block_erase = spi_block_erase_20,
11938 }, {
11939 .eraseblocks = { {64 * 1024, 8} },
11940 .block_erase = spi_block_erase_d8,
11941 }, {
11942 .eraseblocks = { { 512 * 1024, 1} },
11943 .block_erase = spi_block_erase_60,
11944 }, {
11945 .eraseblocks = { { 512 * 1024, 1} },
11946 .block_erase = spi_block_erase_c7,
11947 }
11948 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011949 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000011950 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011951 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000011952 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011953 .voltage = {2700, 3600},
11954 },
11955
11956 {
11957 .vendor = "Spansion",
11958 .name = "S25FL208K",
11959 .bustype = BUS_SPI,
11960 .manufacture_id = SPANSION_ID,
11961 .model_id = SPANSION_S25FL208,
11962 .total_size = 1024,
11963 .page_size = 256,
11964 .feature_bits = FEATURE_WRSR_WREN,
11965 .tested = TEST_UNTESTED,
11966 .probe = probe_spi_rdid,
11967 .probe_timing = TIMING_ZERO,
11968 .block_erasers = {
11969 {
11970 .eraseblocks = { {4 * 1024, 256} },
11971 .block_erase = spi_block_erase_20,
11972 }, {
11973 .eraseblocks = { {64 * 1024, 16} },
11974 .block_erase = spi_block_erase_d8,
11975 }, {
11976 .eraseblocks = { { 1024 * 1024, 1} },
11977 .block_erase = spi_block_erase_60,
11978 }, {
11979 .eraseblocks = { { 1024 * 1024, 1} },
11980 .block_erase = spi_block_erase_c7,
11981 }
11982 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000011983 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000011984 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011985 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000011986 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011987 .voltage = {2700, 3600},
11988 },
11989
11990 {
11991 .vendor = "Spansion",
Stefan Tauner6697f712014-08-06 15:09:15 +000011992 .name = "S25FL116K/S25FL216K", /* FIXME: separate them */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000011993 .bustype = BUS_SPI,
11994 .manufacture_id = SPANSION_ID,
11995 .model_id = SPANSION_S25FL216,
11996 .total_size = 2048,
11997 .page_size = 256,
11998 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (S25FL116K only) */
11999 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12000 .tested = TEST_UNTESTED,
12001 .probe = probe_spi_rdid,
12002 .probe_timing = TIMING_ZERO,
12003 .block_erasers = {
12004 {
12005 .eraseblocks = { {4 * 1024, 512} },
12006 .block_erase = spi_block_erase_20,
12007 }, {
12008 .eraseblocks = { {64 * 1024, 32} },
12009 .block_erase = spi_block_erase_d8,
12010 }, {
12011 .eraseblocks = { { 2048 * 1024, 1} },
12012 .block_erase = spi_block_erase_60,
12013 }, {
12014 .eraseblocks = { { 2048 * 1024, 1} },
12015 .block_erase = spi_block_erase_c7,
12016 }
12017 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012018 .printlock = spi_prettyprint_status_register_bp3_srwd,
Stefan Tauner6697f712014-08-06 15:09:15 +000012019 .unlock = spi_disable_blockprotect_bp3_srwd, /* #WP pin write-protects SRWP bit. */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012020 .write = spi_chip_write_256,
Stefan Tauner6697f712014-08-06 15:09:15 +000012021 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O (0x3B) supported */
Nikolay Nikolaev0ec2f7e2013-06-28 21:29:36 +000012022 .voltage = {2700, 3600},
12023 },
12024
12025 {
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012026 .vendor = "Spansion",
Nikolay Martynov598968a2014-05-04 21:44:13 +000012027 .name = "S25FL132K",
12028 .bustype = BUS_SPI,
12029 .manufacture_id = SPANSION_ID,
12030 .model_id = SPANSION_S25FL132K,
12031 .total_size = 4096,
12032 .page_size = 256,
12033 /* OTP: 768B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
12034 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12035 .tested = TEST_UNTESTED,
12036 .probe = probe_spi_rdid,
12037 .probe_timing = TIMING_ZERO,
12038 .block_erasers = {
12039 {
12040 .eraseblocks = { {4 * 1024, 1024} },
12041 .block_erase = spi_block_erase_20,
12042 }, {
12043 .eraseblocks = { {64 * 1024, 64} },
12044 .block_erase = spi_block_erase_d8,
12045 }, {
12046 .eraseblocks = { { 4096 * 1024, 1} },
12047 .block_erase = spi_block_erase_60,
12048 }, {
12049 .eraseblocks = { { 4096 * 1024, 1} },
12050 .block_erase = spi_block_erase_c7,
12051 }
12052 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012053 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
Nikolay Martynov598968a2014-05-04 21:44:13 +000012054 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12055 .write = spi_chip_write_256,
12056 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12057 .voltage = {2700, 3600},
12058 },
12059
12060 {
12061 .vendor = "Spansion",
12062 .name = "S25FL164K",
12063 .bustype = BUS_SPI,
12064 .manufacture_id = SPANSION_ID,
12065 .model_id = SPANSION_S25FL164K,
12066 .total_size = 8192,
12067 .page_size = 256,
12068 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
12069 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12070 .tested = TEST_OK_PREW,
12071 .probe = probe_spi_rdid,
12072 .probe_timing = TIMING_ZERO,
12073 .block_erasers = {
12074 {
12075 .eraseblocks = { {4 * 1024, 2048} },
12076 .block_erase = spi_block_erase_20,
12077 }, {
12078 .eraseblocks = { {64 * 1024, 128} },
12079 .block_erase = spi_block_erase_d8,
12080 }, {
12081 .eraseblocks = { { 8192 * 1024, 1} },
12082 .block_erase = spi_block_erase_60,
12083 }, {
12084 .eraseblocks = { { 8192 * 1024, 1} },
12085 .block_erase = spi_block_erase_c7,
12086 }
12087 },
Stefan Tauner12f3d512014-05-27 21:27:27 +000012088 .printlock = spi_prettyprint_status_register_bp2_srwd, /* TODO: improve */
Nikolay Martynov598968a2014-05-04 21:44:13 +000012089 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12090 .write = spi_chip_write_256,
12091 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12092 .voltage = {2700, 3600},
12093 },
12094
12095 {
12096 .vendor = "Spansion",
Jernej Å krabece814a9b2014-12-12 00:32:03 +000012097 .name = "S25FL127S-64kB", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
12098 .bustype = BUS_SPI,
12099 .manufacture_id = SPANSION_ID,
12100 .model_id = SPANSION_S25FL128,
12101 .total_size = 16384,
12102 .page_size = 256,
12103 /* supports 4B addressing */
12104 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12105 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12106 .tested = TEST_OK_PREW,
12107 /* FIXME: we should distinguish the configuration on probing time like we do for AT45DB chips */
12108 .probe = probe_spi_rdid,
12109 .probe_timing = TIMING_ZERO,
12110 .block_erasers = {
12111 {
12112 /* This chip supports erasing of 32 so-called "parameter sectors" with
12113 * opcode 0x20 which may be configured to be on top or bottom of the address
12114 * space. Trying to access an address outside these 4kB blocks does have no
12115 * effect on the memory contents, e.g.
12116 .eraseblocks = {
12117 {4 * 1024, 32},
12118 {64 * 1024, 254} // inaccessible
12119 },
12120 .block_erase = spi_block_erase_20,
12121 }, { */
12122 .eraseblocks = { { 64 * 1024, 256} },
12123 .block_erase = spi_block_erase_d8,
12124 }, {
12125 .eraseblocks = { { 16384 * 1024, 1} },
12126 .block_erase = spi_block_erase_60,
12127 }, {
12128 .eraseblocks = { { 16384 * 1024, 1} },
12129 .block_erase = spi_block_erase_c7,
12130 }
12131 },
12132 .printlock = spi_prettyprint_status_register_bp2_srwd,
12133 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12134 .write = spi_chip_write_256, /* Multi I/O supported */
12135 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12136 .voltage = {2700, 3600},
12137 },
12138
12139 {
12140 .vendor = "Spansion",
12141 .name = "S25FL127S-256kB", /* uniform 256kB sectors */
12142 .bustype = BUS_SPI,
12143 .manufacture_id = SPANSION_ID,
12144 .model_id = SPANSION_S25FL128,
12145 .total_size = 16384,
12146 .page_size = 512,
12147 /* supports 4B addressing */
12148 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12149 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12150 .tested = TEST_UNTESTED,
12151 .probe = probe_spi_rdid,
12152 .probe_timing = TIMING_ZERO,
12153 .block_erasers = {
12154 {
12155 .eraseblocks = { {256 * 1024, 64} },
12156 .block_erase = spi_block_erase_d8,
12157 }, {
12158 .eraseblocks = { { 16384 * 1024, 1} },
12159 .block_erase = spi_block_erase_60,
12160 }, {
12161 .eraseblocks = { { 16384 * 1024, 1} },
12162 .block_erase = spi_block_erase_c7,
12163 }
12164 },
12165 .printlock = spi_prettyprint_status_register_bp2_srwd,
12166 .unlock = spi_disable_blockprotect_bp2_srwd, /* #WP pin write-protects SRWP bit. */
12167 .write = spi_chip_write_256, /* Multi I/O supported */
12168 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12169 .voltage = {2700, 3600},
12170 },
12171
12172 {
12173 .vendor = "Spansion",
Stefan Tauner88b19252014-08-06 14:36:27 +000012174 .name = "S25FL128P......0", /* uniform 64 kB sectors */
12175 .bustype = BUS_SPI,
12176 .manufacture_id = SPANSION_ID,
12177 .model_id = SPANSION_S25FL128,
12178 .total_size = 16384,
12179 .page_size = 256,
12180 .feature_bits = FEATURE_WRSR_WREN,
12181 .tested = TEST_UNTESTED,
12182 .probe = probe_spi_rdid,
12183 .probe_timing = TIMING_ZERO,
12184 .block_erasers = {
12185 {
12186 .eraseblocks = { {64 * 1024, 256} },
12187 .block_erase = spi_block_erase_20,
12188 }, {
12189 .eraseblocks = { {64 * 1024, 256} },
12190 .block_erase = spi_block_erase_d8,
12191 }, {
12192 .eraseblocks = { { 16384 * 1024, 1} },
12193 .block_erase = spi_block_erase_60,
12194 }, {
12195 .eraseblocks = { { 16384 * 1024, 1} },
12196 .block_erase = spi_block_erase_c7,
12197 }
12198 },
12199 .printlock = spi_prettyprint_status_register_bp3_srwd,
12200 .unlock = spi_disable_blockprotect_bp3_srwd,
12201 .write = spi_chip_write_256,
12202 .read = spi_chip_read, /* Fast read (0x0B) supported */
12203 .voltage = {2700, 3600},
12204 },
12205
12206 {
12207 .vendor = "Spansion",
12208 .name = "S25FL128P......1", /* uniform 256kB sectors */
12209 .bustype = BUS_SPI,
12210 .manufacture_id = SPANSION_ID,
12211 .model_id = SPANSION_S25FL128,
12212 .total_size = 16384,
12213 .page_size = 256,
12214 .feature_bits = FEATURE_WRSR_WREN,
12215 .tested = TEST_UNTESTED,
12216 .probe = probe_spi_rdid,
12217 .probe_timing = TIMING_ZERO,
12218 .block_erasers = {
12219 {
12220 .eraseblocks = { {256 * 1024, 64} },
12221 .block_erase = spi_block_erase_d8,
12222 }, {
12223 .eraseblocks = { { 16384 * 1024, 1} },
12224 .block_erase = spi_block_erase_c7,
12225 }
12226 },
12227 .printlock = spi_prettyprint_status_register_bp2_srwd,
12228 .unlock = spi_disable_blockprotect_bp2_srwd,
12229 .write = spi_chip_write_256,
12230 .read = spi_chip_read, /* Fast read (0x0B) supported */
12231 .voltage = {2700, 3600},
12232 },
12233
12234 {
12235 .vendor = "Spansion",
12236 .name = "S25FL128S......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012237 .bustype = BUS_SPI,
12238 .manufacture_id = SPANSION_ID,
12239 .model_id = SPANSION_S25FL128,
12240 .total_size = 16384,
12241 .page_size = 256,
12242 /* supports 4B addressing */
12243 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12244 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000012245 .tested = TEST_OK_PREW,
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012246 .probe = probe_spi_rdid,
12247 .probe_timing = TIMING_ZERO,
12248 .block_erasers = {
12249 {
Stefan Tauner88b19252014-08-06 14:36:27 +000012250 /* This chip supports erasing of the 32 so-called "parameter sectors" with
12251 * opcode 0x20. Trying to access an address outside these 4kB blocks does
12252 * have no effect on the memory contents, but sets a flag in the SR.
12253 .eraseblocks = {
12254 {4 * 1024, 32},
12255 {64 * 1024, 254} // inaccessible
12256 },
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012257 .block_erase = spi_block_erase_20,
Stefan Tauner88b19252014-08-06 14:36:27 +000012258 }, { */
12259 .eraseblocks = { { 64 * 1024, 256} },
12260 .block_erase = spi_block_erase_d8,
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012261 }, {
Stefan Tauner88b19252014-08-06 14:36:27 +000012262 .eraseblocks = { { 16384 * 1024, 1} },
12263 .block_erase = spi_block_erase_60,
12264 }, {
12265 .eraseblocks = { { 16384 * 1024, 1} },
12266 .block_erase = spi_block_erase_c7,
12267 }
12268 },
12269 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
12270 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
12271 .write = spi_chip_write_256, /* Multi I/O supported */
12272 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12273 .voltage = {2700, 3600},
12274 },
12275
12276 {
12277 .vendor = "Spansion",
12278 .name = "S25FL128S......1", /* uniform 256 kB sectors */
12279 .bustype = BUS_SPI,
12280 .manufacture_id = SPANSION_ID,
12281 .model_id = SPANSION_S25FL128,
12282 .total_size = 16384,
12283 .page_size = 512,
12284 /* supports 4B addressing */
12285 /* OTP: 1024B total, 32B reserved; read 0x4B; write 0x42 */
12286 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12287 .tested = TEST_UNTESTED,
12288 .probe = probe_spi_rdid,
12289 .probe_timing = TIMING_ZERO,
12290 .block_erasers = {
12291 {
Nikolay Nikolaevc80c4a32013-06-28 21:29:44 +000012292 .eraseblocks = { {256 * 1024, 64} },
12293 .block_erase = spi_block_erase_d8,
12294 }, {
12295 .eraseblocks = { { 16384 * 1024, 1} },
12296 .block_erase = spi_block_erase_60,
12297 }, {
12298 .eraseblocks = { { 16384 * 1024, 1} },
12299 .block_erase = spi_block_erase_c7,
12300 }
12301 },
12302 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: SR2 and many others */
12303 .unlock = spi_disable_blockprotect_bp2_srwd, /* TODO: various other locks */
12304 .write = spi_chip_write_256, /* Multi I/O supported */
12305 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12306 .voltage = {2700, 3600},
12307 },
12308
12309 {
Stefan Tauner88b19252014-08-06 14:36:27 +000012310 .vendor = "Spansion",
12311 .name = "S25FL129P......0", /* hybrid: 32 (top or bottom) 4 kB sub-sectors + 64 kB sectors */
12312 .bustype = BUS_SPI,
12313 .manufacture_id = SPANSION_ID,
12314 .model_id = SPANSION_S25FL128,
12315 .total_size = 16384,
12316 .page_size = 256,
12317 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
12318 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12319 .tested = TEST_OK_PREW,
12320 .probe = probe_spi_rdid,
12321 .probe_timing = TIMING_ZERO,
12322 .block_erasers = {
12323 {
12324 /* FIXME: This chip supports erasing of the 32 so-called "parameter sectors" with
12325 * opcode 0x20. Trying to access an address outside these 4kB blocks does have no
12326 * effect on the memory contents, but sets a flag in the SR.
12327 .eraseblocks = {
12328 {4 * 1024, 32},
12329 {64 * 1024, 254} // inaccessible
12330 },
12331 .block_erase = spi_block_erase_20,
12332 }, { */
12333 /* FIXME: Additionally it also supports erase opcode 40h for the respective 2*4 kB pairs
12334 .eraseblocks = {
12335 {8 * 1024, 16},
12336 {64 * 1024, 254} // inaccessible
12337 },
12338 .block_erase = spi_block_erase_40,
12339 }, { */
12340 .eraseblocks = { { 64 * 1024, 256} },
12341 .block_erase = spi_block_erase_d8,
12342 }, {
12343 .eraseblocks = { { 16384 * 1024, 1} },
12344 .block_erase = spi_block_erase_60,
12345 }, {
12346 .eraseblocks = { { 16384 * 1024, 1} },
12347 .block_erase = spi_block_erase_c7,
12348 }
12349 },
12350 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
12351 .unlock = spi_disable_blockprotect_bp2_srwd,
12352 .write = spi_chip_write_256, /* Multi I/O supported */
12353 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12354 .voltage = {2700, 3600},
12355 },
12356
12357 {
12358 .vendor = "Spansion",
12359 .name = "S25FL129P......1", /* uniform 256 kB sectors */
12360 .bustype = BUS_SPI,
12361 .manufacture_id = SPANSION_ID,
12362 .model_id = SPANSION_S25FL128,
12363 .total_size = 16384,
Stefan Tauner23e10b82016-01-23 16:16:49 +000012364 .page_size = 256,
Stefan Tauner88b19252014-08-06 14:36:27 +000012365 /* OTP: 506B total, 16B reserved; read 0x4B; write 0x42 */
12366 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
12367 .tested = TEST_UNTESTED,
12368 .probe = probe_spi_rdid,
12369 .probe_timing = TIMING_ZERO,
12370 .block_erasers = {
12371 {
12372 .eraseblocks = { {256 * 1024, 64} },
12373 .block_erase = spi_block_erase_d8,
12374 }, {
12375 .eraseblocks = { { 16384 * 1024, 1} },
12376 .block_erase = spi_block_erase_60,
12377 }, {
12378 .eraseblocks = { { 16384 * 1024, 1} },
12379 .block_erase = spi_block_erase_c7,
12380 }
12381 },
12382 .printlock = spi_prettyprint_status_register_bp2_ep_srwd, /* TODO: Configuration register */
12383 .unlock = spi_disable_blockprotect_bp2_srwd,
12384 .write = spi_chip_write_256, /* Multi I/O supported */
12385 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
12386 .voltage = {2700, 3600},
12387 },
12388
12389 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012390 .vendor = "SST",
Idwer Volleringf3607d12014-05-07 15:25:04 +000012391 .name = "SST25LF020A",
12392 .bustype = BUS_SPI,
12393 .manufacture_id = SST_ID,
12394 .model_id = SST_SST25VF020_REMS,
12395 .total_size = 256,
12396 .page_size = 256,
12397 .feature_bits = FEATURE_WRSR_EWSR,
12398 .tested = TEST_OK_PREW,
12399 .probe = probe_spi_rems,
12400 .probe_timing = TIMING_ZERO,
12401 .block_erasers =
12402 {
12403 {
12404 .eraseblocks = { {4 * 1024, 64} },
12405 .block_erase = spi_block_erase_20,
12406 }, {
12407 .eraseblocks = { {32 * 1024, 8} },
12408 .block_erase = spi_block_erase_52,
12409 }, {
12410 .eraseblocks = { {256 * 1024, 1} },
12411 .block_erase = spi_block_erase_60,
12412 },
12413 },
12414 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12415 .unlock = spi_disable_blockprotect,
12416 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12417 .read = spi_chip_read, /* Fast read (0x0B) supported */
12418 .voltage = {2700, 3600},
12419 },
12420
12421 {
12422 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +000012423 .name = "SST25LF040A",
12424 .bustype = BUS_SPI,
12425 .manufacture_id = SST_ID,
12426 .model_id = SST_SST25VF040_REMS,
12427 .total_size = 512,
12428 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012429 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +000012430 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +000012431 .probe = probe_spi_res2,
12432 .probe_timing = TIMING_ZERO,
12433 .block_erasers =
12434 {
12435 {
12436 .eraseblocks = { {4 * 1024, 128} },
12437 .block_erase = spi_block_erase_20,
12438 }, {
12439 .eraseblocks = { {32 * 1024, 16} },
12440 .block_erase = spi_block_erase_52,
12441 }, {
12442 .eraseblocks = { {512 * 1024, 1} },
12443 .block_erase = spi_block_erase_60,
12444 },
12445 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012446 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012447 .unlock = spi_disable_blockprotect,
12448 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12449 .read = spi_chip_read,
12450 .voltage = {3000, 3600},
12451 },
12452
12453 {
12454 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +000012455 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +000012456 .bustype = BUS_SPI,
12457 .manufacture_id = SST_ID,
12458 .model_id = SST_SST25VF080_REMS,
12459 .total_size = 1024,
12460 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012461 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +000012462 .tested = TEST_UNTESTED,
12463 .probe = probe_spi_res2,
12464 .probe_timing = TIMING_ZERO,
12465 .block_erasers =
12466 {
12467 {
12468 .eraseblocks = { {4 * 1024, 256} },
12469 .block_erase = spi_block_erase_20,
12470 }, {
12471 .eraseblocks = { {32 * 1024, 32} },
12472 .block_erase = spi_block_erase_52,
12473 }, {
12474 .eraseblocks = { {1024 * 1024, 1} },
12475 .block_erase = spi_block_erase_60,
12476 },
12477 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012478 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +000012479 .unlock = spi_disable_blockprotect,
12480 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12481 .read = spi_chip_read,
12482 .voltage = {3000, 3600},
12483 },
12484
12485 {
12486 .vendor = "SST",
Stefan Tauner6697f712014-08-06 15:09:15 +000012487 .name = "SST25VF512(A)",
Cory Henderson370f5822013-10-19 23:09:16 +000012488 .bustype = BUS_SPI,
12489 .manufacture_id = SST_ID,
Stefan Tauner6697f712014-08-06 15:09:15 +000012490 .model_id = SST_SST25VF512_REMS,
Cory Henderson370f5822013-10-19 23:09:16 +000012491 .total_size = 64,
12492 .page_size = 256,
12493 .feature_bits = FEATURE_WRSR_EWSR,
12494 .tested = TEST_OK_PREW,
12495 .probe = probe_spi_rems,
12496 .probe_timing = TIMING_ZERO,
12497 .block_erasers =
12498 {
12499 {
12500 .eraseblocks = { {4 * 1024, 16} },
12501 .block_erase = spi_block_erase_20,
12502 }, {
12503 .eraseblocks = { {32 * 1024, 2} },
12504 .block_erase = spi_block_erase_52,
12505 }, {
12506 .eraseblocks = { {32 * 1024, 2} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012507 .block_erase = spi_block_erase_d8, /* Supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012508 }, {
12509 .eraseblocks = { {64 * 1024, 1} },
12510 .block_erase = spi_block_erase_60,
12511 }, {
12512 .eraseblocks = { {64 * 1024, 1} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012513 .block_erase = spi_block_erase_c7, /* Supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012514 },
12515 },
12516 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12517 .unlock = spi_disable_blockprotect,
12518 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stefan Tauner6697f712014-08-06 15:09:15 +000012519 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF512A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012520 .voltage = {2700, 3600},
12521 },
12522
12523 {
12524 .vendor = "SST",
Stefan Tauner6697f712014-08-06 15:09:15 +000012525 .name = "SST25VF010(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012526 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +000012527 .manufacture_id = SST_ID,
12528 .model_id = SST_SST25VF010_REMS,
12529 .total_size = 128,
12530 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012531 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +000012532 .tested = TEST_OK_PREW,
12533 .probe = probe_spi_rems,
12534 .probe_timing = TIMING_ZERO,
12535 .block_erasers =
12536 {
12537 {
12538 .eraseblocks = { {4 * 1024, 32} },
12539 .block_erase = spi_block_erase_20,
12540 }, {
12541 .eraseblocks = { {32 * 1024, 4} },
12542 .block_erase = spi_block_erase_52,
12543 }, {
Cory Henderson370f5822013-10-19 23:09:16 +000012544 .eraseblocks = { {32 * 1024, 4} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012545 .block_erase = spi_block_erase_d8, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012546 }, {
Mark Marshall90021f22010-12-03 14:48:11 +000012547 .eraseblocks = { {128 * 1024, 1} },
12548 .block_erase = spi_block_erase_60,
Cory Henderson370f5822013-10-19 23:09:16 +000012549 }, {
12550 .eraseblocks = { {128 * 1024, 1} },
Stefan Tauner6697f712014-08-06 15:09:15 +000012551 .block_erase = spi_block_erase_c7, /* Supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012552 },
12553 },
12554 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12555 .unlock = spi_disable_blockprotect,
12556 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stefan Tauner6697f712014-08-06 15:09:15 +000012557 .read = spi_chip_read, /* Fast read (0x0B) supported by SST25VF010A only */
Cory Henderson370f5822013-10-19 23:09:16 +000012558 .voltage = {2700, 3600},
12559 },
12560
12561 {
12562 .vendor = "SST",
12563 .name = "SST25VF020",
12564 .bustype = BUS_SPI,
12565 .manufacture_id = SST_ID,
12566 .model_id = SST_SST25VF020_REMS,
12567 .total_size = 256,
12568 .page_size = 256,
12569 .feature_bits = FEATURE_WRSR_EWSR,
12570 .tested = TEST_UNTESTED,
12571 .probe = probe_spi_rems,
12572 .probe_timing = TIMING_ZERO,
12573 .block_erasers =
12574 {
12575 {
12576 .eraseblocks = { {4 * 1024, 64} },
12577 .block_erase = spi_block_erase_20,
12578 }, {
12579 .eraseblocks = { {32 * 1024, 8} },
12580 .block_erase = spi_block_erase_52,
12581 }, {
12582 .eraseblocks = { {256 * 1024, 1} },
12583 .block_erase = spi_block_erase_60,
12584 },
12585 },
12586 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 */
12587 .unlock = spi_disable_blockprotect,
12588 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12589 .read = spi_chip_read, /* only */
12590 .voltage = {2700, 3600},
12591 },
12592
12593 {
12594 .vendor = "SST",
12595 .name = "SST25VF020B",
12596 .bustype = BUS_SPI,
12597 .manufacture_id = SST_ID,
12598 .model_id = SST_SST25VF020B,
12599 .total_size = 256,
12600 .page_size = 256,
12601 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000012602 .tested = TEST_OK_PREW,
Cory Henderson370f5822013-10-19 23:09:16 +000012603 .probe = probe_spi_rdid,
12604 .probe_timing = TIMING_ZERO,
12605 .block_erasers =
12606 {
12607 {
12608 .eraseblocks = { {4 * 1024, 64} },
12609 .block_erase = spi_block_erase_20,
12610 }, {
12611 .eraseblocks = { {32 * 1024, 8} },
12612 .block_erase = spi_block_erase_52,
12613 }, {
12614 .eraseblocks = { {64 * 1024, 4} },
12615 .block_erase = spi_block_erase_d8,
12616 }, {
12617 .eraseblocks = { {256 * 1024, 1} },
12618 .block_erase = spi_block_erase_60,
12619 }, {
12620 .eraseblocks = { {256 * 1024, 1} },
12621 .block_erase = spi_block_erase_c7,
12622 },
12623 },
12624 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: No BP2 & 3 and 2nd SR */
12625 .unlock = spi_disable_blockprotect, /* FIXME: 2nd SR */
12626 .write = spi_aai_write, /* AAI supported (0xAD) */
12627 .read = spi_chip_read, /* Fast read (0x0B) supported */
12628 .voltage = {2700, 3600},
12629 },
12630
12631 {
12632 .vendor = "SST",
12633 .name = "SST25VF040",
12634 .bustype = BUS_SPI,
12635 .manufacture_id = SST_ID,
12636 .model_id = SST_SST25VF040_REMS,
12637 .total_size = 512,
12638 .page_size = 256,
12639 .feature_bits = FEATURE_WRSR_EWSR,
12640 .tested = TEST_OK_PR,
12641 .probe = probe_spi_rems,
12642 .probe_timing = TIMING_ZERO,
12643 .block_erasers =
12644 {
12645 {
12646 .eraseblocks = { {4 * 1024, 128} },
12647 .block_erase = spi_block_erase_20,
12648 }, {
12649 .eraseblocks = { {32 * 1024, 16} },
12650 .block_erase = spi_block_erase_52,
12651 }, {
12652 .eraseblocks = { {512 * 1024, 1} },
12653 .block_erase = spi_block_erase_60,
Mark Marshall90021f22010-12-03 14:48:11 +000012654 },
12655 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012656 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +000012657 .unlock = spi_disable_blockprotect,
Cory Henderson370f5822013-10-19 23:09:16 +000012658 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
12659 .read = spi_chip_read,
12660 .voltage = {2700, 3600},
12661 },
12662
12663 {
12664 .vendor = "SST",
12665 .name = "SST25VF040B",
12666 .bustype = BUS_SPI,
12667 .manufacture_id = SST_ID,
12668 .model_id = SST_SST25VF040B,
12669 .total_size = 512,
12670 .page_size = 256,
12671 .feature_bits = FEATURE_WRSR_EWSR,
12672 .tested = TEST_OK_PREW,
12673 .probe = probe_spi_rdid,
12674 .probe_timing = TIMING_ZERO,
12675 .block_erasers =
12676 {
12677 {
12678 .eraseblocks = { {4 * 1024, 128} },
12679 .block_erase = spi_block_erase_20,
12680 }, {
12681 .eraseblocks = { {32 * 1024, 16} },
12682 .block_erase = spi_block_erase_52,
12683 }, {
12684 .eraseblocks = { {64 * 1024, 8} },
12685 .block_erase = spi_block_erase_d8,
12686 }, {
12687 .eraseblocks = { {512 * 1024, 1} },
12688 .block_erase = spi_block_erase_60,
12689 }, {
12690 .eraseblocks = { {512 * 1024, 1} },
12691 .block_erase = spi_block_erase_c7,
12692 },
12693 },
12694 .printlock = spi_prettyprint_status_register_sst25vf040b,
12695 .unlock = spi_disable_blockprotect,
12696 .write = spi_aai_write, /* AAI supported (0xAD) */
12697 .read = spi_chip_read, /* Fast read (0x0B) supported */
12698 .voltage = {2700, 3600},
12699 },
12700
12701 {
12702 .vendor = "SST",
12703 .name = "SST25VF040B.REMS",
12704 .bustype = BUS_SPI,
12705 .manufacture_id = SST_ID,
12706 .model_id = SST_SST25VF040B_REMS,
12707 .total_size = 512,
12708 .page_size = 256,
12709 .feature_bits = FEATURE_WRSR_EWSR,
12710 .tested = TEST_OK_PREW,
12711 .probe = probe_spi_rems,
12712 .probe_timing = TIMING_ZERO,
12713 .block_erasers =
12714 {
12715 {
12716 .eraseblocks = { {4 * 1024, 128} },
12717 .block_erase = spi_block_erase_20,
12718 }, {
12719 .eraseblocks = { {32 * 1024, 16} },
12720 .block_erase = spi_block_erase_52,
12721 }, {
12722 .eraseblocks = { {64 * 1024, 8} },
12723 .block_erase = spi_block_erase_d8,
12724 }, {
12725 .eraseblocks = { {512 * 1024, 1} },
12726 .block_erase = spi_block_erase_60,
12727 }, {
12728 .eraseblocks = { {512 * 1024, 1} },
12729 .block_erase = spi_block_erase_c7,
12730 },
12731 },
12732 .printlock = spi_prettyprint_status_register_sst25vf040b,
12733 .unlock = spi_disable_blockprotect,
12734 .write = spi_aai_write,
12735 .read = spi_chip_read,
12736 .voltage = {2700, 3600},
12737 },
12738
12739 {
12740 .vendor = "SST",
Ben Gardnerbcf61092015-11-22 02:23:31 +000012741 .name = "SST25WF020A",
12742 .bustype = BUS_SPI,
12743 .manufacture_id = SANYO_ID, /* See flashchips.h */
12744 .model_id = SST_SST25WF020A,
12745 .total_size = 256,
12746 .page_size = 256,
12747 .feature_bits = FEATURE_WRSR_WREN,
12748 .tested = TEST_UNTESTED,
12749 .probe = probe_spi_rdid,
12750 .probe_timing = TIMING_ZERO,
12751 .block_erasers =
12752 {
12753 {
12754 .eraseblocks = { {4 * 1024, 64} },
12755 .block_erase = spi_block_erase_20,
12756 }, {
12757 .eraseblocks = { {64 * 1024, 4} },
12758 .block_erase = spi_block_erase_d8,
12759 }, {
12760 .eraseblocks = { {256 * 1024, 1} },
12761 .block_erase = spi_block_erase_60,
12762 }, {
12763 .eraseblocks = { {256 * 1024, 1} },
12764 .block_erase = spi_block_erase_c7,
12765 },
12766 },
12767 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12768 .unlock = spi_disable_blockprotect_bp2_srwd,
12769 .write = spi_chip_write_256,
12770 .read = spi_chip_read, /* Fast read (0x0B) supported */
12771 .voltage = {1650, 1950},
12772 },
12773
12774 {
12775 .vendor = "SST",
12776 .name = "SST25WF040B",
12777 .bustype = BUS_SPI,
12778 .manufacture_id = SANYO_ID, /* See flashchips.h */
12779 .model_id = SST_SST25WF040B,
12780 .total_size = 512,
12781 .page_size = 256,
12782 .feature_bits = FEATURE_WRSR_WREN,
12783 .tested = TEST_UNTESTED,
12784 .probe = probe_spi_rdid,
12785 .probe_timing = TIMING_ZERO,
12786 .block_erasers =
12787 {
12788 {
12789 .eraseblocks = { {4 * 1024, 128} },
12790 .block_erase = spi_block_erase_20,
12791 }, {
12792 .eraseblocks = { {64 * 1024, 8} },
12793 .block_erase = spi_block_erase_d8,
12794 }, {
12795 .eraseblocks = { {512 * 1024, 1} },
12796 .block_erase = spi_block_erase_60,
12797 }, {
12798 .eraseblocks = { {512 * 1024, 1} },
12799 .block_erase = spi_block_erase_c7,
12800 },
12801 },
12802 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12803 .unlock = spi_disable_blockprotect_bp2_srwd,
12804 .write = spi_chip_write_256,
12805 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12806 .voltage = {1650, 1950},
12807 },
12808
12809 {
12810 .vendor = "SST",
12811 .name = "SST25WF080B",
12812 .bustype = BUS_SPI,
12813 .manufacture_id = SANYO_ID, /* See flashchips.h */
12814 .model_id = SST_SST25WF080B,
12815 .total_size = 1024,
12816 .page_size = 256,
12817 .feature_bits = FEATURE_WRSR_WREN,
12818 .tested = TEST_OK_PREW,
12819 .probe = probe_spi_rdid,
12820 .probe_timing = TIMING_ZERO,
12821 .block_erasers =
12822 {
12823 {
12824 .eraseblocks = { {4 * 1024, 256} },
12825 .block_erase = spi_block_erase_20,
12826 }, {
12827 .eraseblocks = { {64 * 1024, 16} },
12828 .block_erase = spi_block_erase_d8,
12829 }, {
12830 .eraseblocks = { {1024 * 1024, 1} },
12831 .block_erase = spi_block_erase_60,
12832 }, {
12833 .eraseblocks = { {1024 * 1024, 1} },
12834 .block_erase = spi_block_erase_c7,
12835 },
12836 },
12837 .printlock = spi_prettyprint_status_register_bp2_tb_bpl,
12838 .unlock = spi_disable_blockprotect_bp2_srwd,
12839 .write = spi_chip_write_256,
12840 .read = spi_chip_read, /* Fast read (0x0B), dual O (0x3B), dual I/O read (0xBB) supported */
12841 .voltage = {1650, 1950},
12842 },
12843
12844 {
12845 .vendor = "SST",
Cory Henderson370f5822013-10-19 23:09:16 +000012846 .name = "SST25VF080B",
12847 .bustype = BUS_SPI,
12848 .manufacture_id = SST_ID,
12849 .model_id = SST_SST25VF080B,
12850 .total_size = 1024,
12851 .page_size = 256,
12852 .feature_bits = FEATURE_WRSR_EWSR,
12853 .tested = TEST_OK_PREW,
12854 .probe = probe_spi_rdid,
12855 .probe_timing = TIMING_ZERO,
12856 .block_erasers =
12857 {
12858 {
12859 .eraseblocks = { {4 * 1024, 256} },
12860 .block_erase = spi_block_erase_20,
12861 }, {
12862 .eraseblocks = { {32 * 1024, 32} },
12863 .block_erase = spi_block_erase_52,
12864 }, {
12865 .eraseblocks = { {64 * 1024, 16} },
12866 .block_erase = spi_block_erase_d8,
12867 }, {
12868 .eraseblocks = { {1024 * 1024, 1} },
12869 .block_erase = spi_block_erase_60,
12870 }, {
12871 .eraseblocks = { {1024 * 1024, 1} },
12872 .block_erase = spi_block_erase_c7,
12873 },
12874 },
12875 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
12876 .unlock = spi_disable_blockprotect,
12877 .write = spi_aai_write,
Mark Marshall90021f22010-12-03 14:48:11 +000012878 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +000012879 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +000012880 },
12881
12882 {
12883 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012884 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012885 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012886 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012887 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012888 .total_size = 2048,
12889 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +000012890 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +000012891 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012892 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000012893 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012894 .block_erasers =
12895 {
12896 {
12897 .eraseblocks = { {4 * 1024, 512} },
12898 .block_erase = spi_block_erase_20,
12899 }, {
12900 .eraseblocks = { {32 * 1024, 64} },
12901 .block_erase = spi_block_erase_52,
12902 }, {
12903 .eraseblocks = { {64 * 1024, 32} },
12904 .block_erase = spi_block_erase_d8,
12905 }, {
12906 .eraseblocks = { {2 * 1024 * 1024, 1} },
12907 .block_erase = spi_block_erase_60,
12908 }, {
12909 .eraseblocks = { {2 * 1024 * 1024, 1} },
12910 .block_erase = spi_block_erase_c7,
12911 },
12912 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012913 .printlock = spi_prettyprint_status_register_sst25vf016,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000012914 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +000012915 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012916 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012917 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000012918 },
12919
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012920 {
12921 .vendor = "SST",
12922 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012923 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012924 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012925 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012926 .total_size = 4096,
12927 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012928 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +000012929 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000012930 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000012931 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012932 .block_erasers =
12933 {
12934 {
12935 .eraseblocks = { {4 * 1024, 1024} },
12936 .block_erase = spi_block_erase_20,
12937 }, {
12938 .eraseblocks = { {32 * 1024, 128} },
12939 .block_erase = spi_block_erase_52,
12940 }, {
12941 .eraseblocks = { {64 * 1024, 64} },
12942 .block_erase = spi_block_erase_d8,
12943 }, {
12944 .eraseblocks = { {4 * 1024 * 1024, 1} },
12945 .block_erase = spi_block_erase_60,
12946 }, {
12947 .eraseblocks = { {4 * 1024 * 1024, 1} },
12948 .block_erase = spi_block_erase_c7,
12949 },
12950 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012951 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000012952 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +000012953 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012954 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012955 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +000012956 },
12957
12958 {
12959 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012960 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000012961 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012962 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000012963 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012964 .total_size = 8192,
12965 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +000012966 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +000012967 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012968 .probe = probe_spi_rdid,
12969 .probe_timing = TIMING_ZERO,
12970 .block_erasers =
12971 {
12972 {
12973 .eraseblocks = { {4 * 1024, 2048} },
12974 .block_erase = spi_block_erase_20,
12975 }, {
12976 .eraseblocks = { {32 * 1024, 256} },
12977 .block_erase = spi_block_erase_52,
12978 }, {
12979 .eraseblocks = { {64 * 1024, 128} },
12980 .block_erase = spi_block_erase_d8,
12981 }, {
12982 .eraseblocks = { {8 * 1024 * 1024, 1} },
12983 .block_erase = spi_block_erase_60,
12984 }, {
12985 .eraseblocks = { {8 * 1024 * 1024, 1} },
12986 .block_erase = spi_block_erase_c7,
12987 },
12988 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000012989 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012990 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +000012991 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012992 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000012993 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +000012994 },
12995
12996 {
12997 .vendor = "SST",
Wei Hu25584de2018-04-30 14:02:08 -070012998 .name = "SST26VF016B(A)",
12999 .bustype = BUS_SPI,
13000 .manufacture_id = SST_ID,
13001 .model_id = SST_SST26VF016B,
13002 .total_size = 2048,
13003 .page_size = 256,
13004 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13005 .tested = TEST_OK_PREW,
13006 .probe = probe_spi_rdid,
13007 .probe_timing = TIMING_ZERO,
13008 .block_erasers =
13009 {
13010 {
13011 .eraseblocks = { {4 * 1024, 512} },
13012 .block_erase = spi_block_erase_20,
13013 }, {
13014 .eraseblocks = {
13015 {8 * 1024, 4},
13016 {32 * 1024, 1},
13017 {64 * 1024, 30},
13018 {32 * 1024, 1},
13019 {8 * 1024, 4},
13020 },
13021 .block_erase = spi_block_erase_d8,
13022 }, {
13023 .eraseblocks = { {2 * 1024 * 1024, 1} },
13024 .block_erase = spi_block_erase_c7,
13025 },
13026 },
13027 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13028 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13029 .write = spi_chip_write_256, /* Multi I/O supported */
13030 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13031 .voltage = {2700, 3600},
13032 },
13033 {
13034 .vendor = "SST",
13035 .name = "SST26VF032B(A)",
13036 .bustype = BUS_SPI,
13037 .manufacture_id = SST_ID,
13038 .model_id = SST_SST26VF032B,
13039 .total_size = 4096,
13040 .page_size = 256,
13041 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13042 .tested = TEST_UNTESTED,
13043 .probe = probe_spi_rdid,
13044 .probe_timing = TIMING_ZERO,
13045 .block_erasers =
13046 {
13047 {
13048 .eraseblocks = { {4 * 1024, 1024} },
13049 .block_erase = spi_block_erase_20,
13050 }, {
13051 .eraseblocks = {
13052 {8 * 1024, 4},
13053 {32 * 1024, 1},
13054 {64 * 1024, 62},
13055 {32 * 1024, 1},
13056 {8 * 1024, 4},
13057 },
13058 .block_erase = spi_block_erase_d8,
13059 }, {
13060 .eraseblocks = { {4 * 1024 * 1024, 1} },
13061 .block_erase = spi_block_erase_c7,
13062 },
13063 },
13064 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13065 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13066 .write = spi_chip_write_256, /* Multi I/O supported */
13067 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13068 .voltage = {2700, 3600},
13069 },
13070
13071
13072 {
13073 .vendor = "SST",
13074 .name = "SST26VF064B(A)",
13075 .bustype = BUS_SPI,
13076 .manufacture_id = SST_ID,
13077 .model_id = SST_SST26VF064B,
13078 .total_size = 8192,
13079 .page_size = 256,
13080 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
13081 .tested = TEST_OK_PREW,
13082 .probe = probe_spi_rdid,
13083 .probe_timing = TIMING_ZERO,
13084 .block_erasers =
13085 {
13086 {
13087 .eraseblocks = { {4 * 1024, 2048} },
13088 .block_erase = spi_block_erase_20,
13089 }, {
13090 .eraseblocks = {
13091 {8 * 1024, 4},
13092 {32 * 1024, 1},
13093 {64 * 1024, 126},
13094 {32 * 1024, 1},
13095 {8 * 1024, 4},
13096 },
13097 .block_erase = spi_block_erase_d8,
13098 }, {
13099 .eraseblocks = { {8 * 1024 * 1024, 1} },
13100 .block_erase = spi_block_erase_c7,
13101 },
13102 },
13103 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
13104 .unlock = spi_disable_blockprotect_sst26_global_unprotect,
13105 .write = spi_chip_write_256, /* Multi I/O supported */
13106 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
13107 .voltage = {2700, 3600},
13108 },
13109
13110 {
13111 .vendor = "SST",
Stefan Tauner9e349e42012-10-01 22:45:08 +000013112 .name = "SST25WF512",
13113 .bustype = BUS_SPI,
13114 .manufacture_id = SST_ID,
13115 .model_id = SST_SST25WF512,
13116 .total_size = 64,
13117 .page_size = 256,
13118 .feature_bits = FEATURE_WRSR_EITHER,
13119 .tested = TEST_UNTESTED,
13120 .probe = probe_spi_rdid,
13121 .probe_timing = TIMING_ZERO,
13122 .block_erasers =
13123 {
13124 {
13125 .eraseblocks = { {4 * 1024, 16} },
13126 .block_erase = spi_block_erase_20,
13127 }, {
13128 .eraseblocks = { {32 * 1024, 2} },
13129 .block_erase = spi_block_erase_52,
13130 }, {
13131 .eraseblocks = { {1024 * 64, 1} },
13132 .block_erase = spi_block_erase_60,
13133 }, {
13134 .eraseblocks = { {1024 * 64, 1} },
13135 .block_erase = spi_block_erase_c7,
13136 },
13137 },
Jason Harper43ddef02014-05-04 00:55:24 +000013138 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13139 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013140 .write = spi_aai_write,
13141 .read = spi_chip_read, /* Fast read (0x0B) supported */
13142 .voltage = {1650, 1950},
13143 },
13144
13145 {
13146 .vendor = "SST",
13147 .name = "SST25WF010",
13148 .bustype = BUS_SPI,
13149 .manufacture_id = SST_ID,
13150 .model_id = SST_SST25WF010,
13151 .total_size = 128,
13152 .page_size = 256,
13153 .feature_bits = FEATURE_WRSR_EITHER,
13154 .tested = TEST_UNTESTED,
13155 .probe = probe_spi_rdid,
13156 .probe_timing = TIMING_ZERO,
13157 .block_erasers =
13158 {
13159 {
13160 .eraseblocks = { {4 * 1024, 32} },
13161 .block_erase = spi_block_erase_20,
13162 }, {
13163 .eraseblocks = { {32 * 1024, 4} },
13164 .block_erase = spi_block_erase_52,
13165 }, {
13166 .eraseblocks = { {1024 * 128, 1} },
13167 .block_erase = spi_block_erase_60,
13168 }, {
13169 .eraseblocks = { {1024 * 128, 1} },
13170 .block_erase = spi_block_erase_c7,
13171 },
13172 },
Jason Harper43ddef02014-05-04 00:55:24 +000013173 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13174 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013175 .write = spi_aai_write,
13176 .read = spi_chip_read, /* Fast read (0x0B) supported */
13177 .voltage = {1650, 1950},
13178 },
13179
13180 {
13181 .vendor = "SST",
13182 .name = "SST25WF020",
13183 .bustype = BUS_SPI,
13184 .manufacture_id = SST_ID,
13185 .model_id = SST_SST25WF020,
13186 .total_size = 256,
13187 .page_size = 256,
13188 .feature_bits = FEATURE_WRSR_EITHER,
13189 .tested = TEST_UNTESTED,
13190 .probe = probe_spi_rdid,
13191 .probe_timing = TIMING_ZERO,
13192 .block_erasers =
13193 {
13194 {
13195 .eraseblocks = { {4 * 1024, 64} },
13196 .block_erase = spi_block_erase_20,
13197 }, {
13198 .eraseblocks = { {32 * 1024, 8} },
13199 .block_erase = spi_block_erase_52,
13200 }, {
13201 .eraseblocks = { {64 * 1024, 4} },
13202 .block_erase = spi_block_erase_d8,
13203 }, {
13204 .eraseblocks = { {1024 * 256, 1} },
13205 .block_erase = spi_block_erase_60,
13206 }, {
13207 .eraseblocks = { {1024 * 256, 1} },
13208 .block_erase = spi_block_erase_c7,
13209 },
13210 },
Jason Harper43ddef02014-05-04 00:55:24 +000013211 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13212 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013213 .write = spi_aai_write,
13214 .read = spi_chip_read, /* Fast read (0x0B) supported */
13215 .voltage = {1650, 1950},
13216 },
13217
13218 {
13219 .vendor = "SST",
13220 .name = "SST25WF040",
13221 .bustype = BUS_SPI,
13222 .manufacture_id = SST_ID,
13223 .model_id = SST_SST25WF040,
13224 .total_size = 512,
13225 .page_size = 256,
13226 .feature_bits = FEATURE_WRSR_EITHER,
13227 .tested = TEST_UNTESTED,
13228 .probe = probe_spi_rdid,
13229 .probe_timing = TIMING_ZERO,
13230 .block_erasers =
13231 {
13232 {
13233 .eraseblocks = { {4 * 1024, 128} },
13234 .block_erase = spi_block_erase_20,
13235 }, {
13236 .eraseblocks = { {32 * 1024, 16} },
13237 .block_erase = spi_block_erase_52,
13238 }, {
13239 .eraseblocks = { {64 * 1024, 8} },
13240 .block_erase = spi_block_erase_d8,
13241 }, {
13242 .eraseblocks = { {1024 * 512, 1} },
13243 .block_erase = spi_block_erase_60,
13244 }, {
13245 .eraseblocks = { {1024 * 512, 1} },
13246 .block_erase = spi_block_erase_c7,
13247 },
13248 },
Jason Harper43ddef02014-05-04 00:55:24 +000013249 .printlock = spi_prettyprint_status_register_sst25, /* FIXME: does not have a BP3 */
13250 .unlock = spi_disable_blockprotect_bp2_srwd,
13251 .write = spi_aai_write,
13252 .read = spi_chip_read, /* Fast read (0x0B) supported */
13253 .voltage = {1650, 1950},
13254 },
13255
13256 {
13257 .vendor = "SST",
13258 .name = "SST25WF080",
13259 .bustype = BUS_SPI,
13260 .manufacture_id = SST_ID,
13261 .model_id = SST_SST25WF080,
13262 .total_size = 1024,
13263 .page_size = 256,
13264 .feature_bits = FEATURE_WRSR_EITHER,
13265 .tested = TEST_OK_PREW,
13266 .probe = probe_spi_rdid,
13267 .probe_timing = TIMING_ZERO,
13268 .block_erasers =
13269 {
13270 {
13271 .eraseblocks = { {4 * 1024, 256} },
13272 .block_erase = spi_block_erase_20,
13273 }, {
13274 .eraseblocks = { {32 * 1024, 32} },
13275 .block_erase = spi_block_erase_52,
13276 }, {
13277 .eraseblocks = { {64 * 1024, 16} },
13278 .block_erase = spi_block_erase_d8,
13279 }, {
13280 .eraseblocks = { {1024 * 1024, 1} },
13281 .block_erase = spi_block_erase_60,
13282 }, {
13283 .eraseblocks = { {1024 * 1024, 1} },
13284 .block_erase = spi_block_erase_c7,
13285 },
13286 },
13287 .printlock = spi_prettyprint_status_register_sst25, /* *does* have a BP3 but it is useless */
13288 .unlock = spi_disable_blockprotect_bp3_srwd,
Stefan Tauner9e349e42012-10-01 22:45:08 +000013289 .write = spi_aai_write,
13290 .read = spi_chip_read, /* Fast read (0x0B) supported */
13291 .voltage = {1650, 1950},
13292 },
13293
13294 {
13295 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013296 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013297 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013298 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013299 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013300 .total_size = 512,
13301 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000013302 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013303 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013304 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013305 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013306 .block_erasers =
13307 {
13308 {
13309 .eraseblocks = { {128, 4096} },
13310 .block_erase = erase_sector_28sf040,
13311 }, {
13312 .eraseblocks = { {512 * 1024, 1} },
13313 .block_erase = erase_chip_28sf040,
13314 }
13315 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013316 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013317 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013318 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013319 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013320 },
13321
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013322 {
13323 .vendor = "SST",
13324 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013325 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013326 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013327 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013328 .total_size = 128,
13329 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013330 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013331 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013332 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013333 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013334 .block_erasers =
13335 {
13336 {
13337 .eraseblocks = { {128 * 1024, 1} },
13338 .block_erase = erase_chip_block_jedec,
13339 }
13340 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013341 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013342 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013343 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013344 },
13345
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013346 {
13347 .vendor = "SST",
13348 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013349 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013350 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013351 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013352 .total_size = 128,
13353 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013354 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013355 .tested = TEST_UNTESTED,
13356 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013357 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013358 .block_erasers =
13359 {
13360 {
13361 .eraseblocks = { {128 * 1024, 1} },
13362 .block_erase = erase_chip_block_jedec,
13363 }
13364 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013365 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013366 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013367 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013368 },
13369
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013370 {
13371 .vendor = "SST",
13372 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013373 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013374 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013375 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013376 .total_size = 256,
13377 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013378 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013379 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013380 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000013381 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013382 .block_erasers =
13383 {
13384 {
13385 .eraseblocks = { {256 * 1024, 1} },
13386 .block_erase = erase_chip_block_jedec,
13387 }
13388 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013389 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013390 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013391 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013392 },
13393
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013394 {
13395 .vendor = "SST",
13396 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013397 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013398 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013399 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013400 .total_size = 256,
13401 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000013402 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013403 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013404 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000013405 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013406 .block_erasers =
13407 {
13408 {
13409 .eraseblocks = { {256 * 1024, 1} },
13410 .block_erase = erase_chip_block_jedec,
13411 }
13412 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013413 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013414 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013415 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013416 },
13417
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013418 {
13419 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +000013420 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013421 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013422 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013423 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013424 .total_size = 64,
13425 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013426 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +000013427 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013428 .probe = probe_jedec,
13429 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +000013430 .block_erasers =
13431 {
13432 {
13433 .eraseblocks = { {4 * 1024, 16} },
13434 .block_erase = erase_sector_jedec,
13435 }, {
13436 .eraseblocks = { {64 * 1024, 1} },
13437 .block_erase = erase_chip_block_jedec,
13438 }
13439 },
Sean Nelson35727f72010-01-28 23:55:12 +000013440 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +000013441 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013442 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +000013443 },
13444
13445 {
13446 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013447 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013448 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013449 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013450 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013451 .total_size = 128,
13452 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013453 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000013454 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013455 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013456 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013457 .block_erasers =
13458 {
13459 {
13460 .eraseblocks = { {4 * 1024, 32} },
13461 .block_erase = erase_sector_jedec,
13462 }, {
13463 .eraseblocks = { {128 * 1024, 1} },
13464 .block_erase = erase_chip_block_jedec,
13465 }
13466 },
Sean Nelson35727f72010-01-28 23:55:12 +000013467 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013468 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013469 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013470 },
13471
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013472 {
13473 .vendor = "SST",
13474 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013475 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013476 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013477 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013478 .total_size = 256,
13479 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013480 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +000013481 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013482 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013483 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013484 .block_erasers =
13485 {
13486 {
13487 .eraseblocks = { {4 * 1024, 64} },
13488 .block_erase = erase_sector_jedec,
13489 }, {
13490 .eraseblocks = { {256 * 1024, 1} },
13491 .block_erase = erase_chip_block_jedec,
13492 }
13493 },
Sean Nelson35727f72010-01-28 23:55:12 +000013494 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013495 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013496 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013497 },
13498
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013499 {
13500 .vendor = "SST",
13501 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013502 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013503 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013504 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013505 .total_size = 512,
13506 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013507 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +000013508 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013509 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013510 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013511 .block_erasers =
13512 {
13513 {
13514 .eraseblocks = { {4 * 1024, 128} },
13515 .block_erase = erase_sector_jedec,
13516 }, {
13517 .eraseblocks = { {512 * 1024, 1} },
13518 .block_erase = erase_chip_block_jedec,
13519 }
13520 },
Sean Nelson35727f72010-01-28 23:55:12 +000013521 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013522 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013523 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000013524 },
13525
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013526 {
13527 .vendor = "SST",
13528 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013529 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013530 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013531 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013532 .total_size = 64,
13533 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013534 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +000013535 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013536 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013537 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013538 .block_erasers =
13539 {
13540 {
13541 .eraseblocks = { {4 * 1024, 16} },
13542 .block_erase = erase_sector_jedec,
13543 }, {
13544 .eraseblocks = { {64 * 1024, 1} },
13545 .block_erase = erase_chip_block_jedec,
13546 }
13547 },
Sean Nelson35727f72010-01-28 23:55:12 +000013548 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013549 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013550 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013551 },
13552
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013553 {
13554 .vendor = "SST",
13555 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013556 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013557 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013558 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013559 .total_size = 128,
13560 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013561 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +000013562 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013563 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013564 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013565 .block_erasers =
13566 {
13567 {
13568 .eraseblocks = { {4 * 1024, 32} },
13569 .block_erase = erase_sector_jedec,
13570 }, {
13571 .eraseblocks = { {128 * 1024, 1} },
13572 .block_erase = erase_chip_block_jedec,
13573 }
13574 },
Sean Nelson35727f72010-01-28 23:55:12 +000013575 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013576 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013577 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013578 },
13579
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013580 {
13581 .vendor = "SST",
13582 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013583 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013584 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013585 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013586 .total_size = 256,
13587 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013588 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner5c316f92015-02-08 21:57:52 +000013589 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013590 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013591 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013592 .block_erasers =
13593 {
13594 {
13595 .eraseblocks = { {4 * 1024, 64} },
13596 .block_erase = erase_sector_jedec,
13597 }, {
13598 .eraseblocks = { {256 * 1024, 1} },
13599 .block_erase = erase_chip_block_jedec,
13600 }
13601 },
Sean Nelson35727f72010-01-28 23:55:12 +000013602 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013603 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013604 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013605 },
13606
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013607 {
13608 .vendor = "SST",
13609 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013610 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013611 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013612 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013613 .total_size = 512,
13614 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013615 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013616 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013617 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013618 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013619 .block_erasers =
13620 {
13621 {
13622 .eraseblocks = { {4 * 1024, 128} },
13623 .block_erase = erase_sector_jedec,
13624 }, {
13625 .eraseblocks = { {512 * 1024, 1} },
13626 .block_erase = erase_chip_block_jedec,
13627 }
13628 },
Sean Nelson35727f72010-01-28 23:55:12 +000013629 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013630 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013631 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +000013632 },
FENG yu ningff692fb2008-12-08 18:15:10 +000013633
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013634 {
13635 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +000013636 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013637 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +000013638 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013639 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +000013640 .total_size = 1024,
13641 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013642 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +000013643 .tested = TEST_UNTESTED,
13644 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013645 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013646 .block_erasers =
13647 {
13648 {
13649 .eraseblocks = { {4 * 1024, 256} },
13650 .block_erase = erase_sector_jedec,
13651 }, {
13652 .eraseblocks = { {64 * 1024, 16} },
13653 .block_erase = erase_block_jedec,
13654 }, {
13655 .eraseblocks = { {1024 * 1024, 1} },
13656 .block_erase = erase_chip_block_jedec,
13657 }
13658 },
Sean Nelson35727f72010-01-28 23:55:12 +000013659 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013660 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013661 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +000013662 },
13663
13664 {
13665 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013666 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013667 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013668 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013669 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013670 .total_size = 256,
13671 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013672 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013673 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013674 .probe = probe_jedec,
13675 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013676 .block_erasers =
13677 {
13678 {
13679 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013680 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013681 }, {
13682 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013683 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013684 }, {
13685 .eraseblocks = { {256 * 1024, 1} },
13686 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13687 }
13688 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013689 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013690 .unlock = unlock_sst_fwhub,
13691 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013692 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013693 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013694 },
13695
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013696 {
13697 .vendor = "SST",
13698 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013699 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013700 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013701 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013702 .total_size = 384,
13703 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013704 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000013705 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013706 .probe = probe_jedec,
13707 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013708 .block_erasers =
13709 {
13710 {
13711 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013712 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013713 }, {
13714 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013715 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013716 }, {
13717 .eraseblocks = { {384 * 1024, 1} },
13718 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13719 }
13720 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013721 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013722 .unlock = unlock_sst_fwhub,
13723 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013724 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013725 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013726 },
13727
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013728 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013729 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
13730 * and is only honored for 64k block erase, but not 4k sector erase.
13731 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013732 .vendor = "SST",
13733 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013734 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013735 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013736 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013737 .total_size = 512,
13738 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013739 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000013740 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013741 .probe = probe_jedec,
13742 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013743 .block_erasers =
13744 {
13745 {
13746 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013747 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013748 }, {
13749 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013750 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013751 }, {
13752 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +000013753 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +000013754 },
13755 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013756 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013757 .unlock = unlock_sst_fwhub,
13758 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013759 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013760 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013761 },
13762
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013763 {
13764 .vendor = "SST",
13765 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013766 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013767 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013768 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013769 .total_size = 512,
13770 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013771 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013772 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013773 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013774 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013775 .block_erasers =
13776 {
13777 {
13778 .eraseblocks = { {4 * 1024, 128} },
13779 .block_erase = erase_sector_49lfxxxc,
13780 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013781 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013782 {64 * 1024, 7},
13783 {32 * 1024, 1},
13784 {8 * 1024, 2},
13785 {16 * 1024, 1},
13786 },
Sean Nelson69e58112010-03-23 17:10:28 +000013787 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013788 }
13789 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013790 .printlock = printlock_regspace2_block_eraser_1,
13791 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013792 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013793 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013794 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013795 },
13796
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013797 {
13798 .vendor = "SST",
13799 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013800 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013801 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013802 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013803 .total_size = 1024,
13804 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013805 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000013806 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013807 .probe = probe_jedec,
13808 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013809 .block_erasers =
13810 {
13811 {
13812 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013813 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013814 }, {
13815 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013816 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013817 }, {
13818 .eraseblocks = { {1024 * 1024, 1} },
13819 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
13820 }
13821 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013822 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +000013823 .unlock = unlock_sst_fwhub,
13824 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013825 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013826 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013827 },
13828
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013829 {
13830 .vendor = "SST",
13831 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013832 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013833 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013834 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013835 .total_size = 1024,
13836 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013837 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013838 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013839 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013840 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013841 .block_erasers =
13842 {
13843 {
13844 .eraseblocks = { {4 * 1024, 256} },
13845 .block_erase = erase_sector_49lfxxxc,
13846 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013847 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013848 {64 * 1024, 15},
13849 {32 * 1024, 1},
13850 {8 * 1024, 2},
13851 {16 * 1024, 1},
13852 },
Sean Nelson69e58112010-03-23 17:10:28 +000013853 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013854 }
13855 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013856 .printlock = printlock_regspace2_block_eraser_1,
13857 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013858 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013859 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013860 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013861 },
13862
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013863 {
13864 .vendor = "SST",
13865 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013866 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013867 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013868 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013869 .total_size = 2048,
13870 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013871 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013872 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013873 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000013874 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013875 .block_erasers =
13876 {
13877 {
13878 .eraseblocks = { {4 * 1024, 512} },
13879 .block_erase = erase_sector_49lfxxxc,
13880 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000013881 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000013882 {64 * 1024, 31},
13883 {32 * 1024, 1},
13884 {8 * 1024, 2},
13885 {16 * 1024, 1},
13886 },
Sean Nelson69e58112010-03-23 17:10:28 +000013887 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013888 }
13889 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000013890 .printlock = printlock_regspace2_block_eraser_1,
13891 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000013892 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013893 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013894 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013895 },
13896
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013897 {
13898 .vendor = "SST",
13899 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013900 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013901 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013902 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013903 .total_size = 256,
13904 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013905 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +000013906 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013907 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013908 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013909 .block_erasers =
13910 {
13911 {
13912 .eraseblocks = { {4 * 1024, 64} },
13913 .block_erase = erase_sector_jedec,
13914 }, {
13915 .eraseblocks = { {16 * 1024, 16} },
13916 .block_erase = erase_block_jedec,
13917 }, {
13918 .eraseblocks = { {256 * 1024, 1} },
13919 .block_erase = NULL,
13920 }
13921 },
Sean Nelson35727f72010-01-28 23:55:12 +000013922 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013923 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013924 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +000013925 },
13926
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013927 {
13928 .vendor = "SST",
13929 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013930 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013931 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013932 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013933 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +000013934 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000013935 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000013936 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013937 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013938 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013939 .block_erasers =
13940 {
13941 {
13942 .eraseblocks = { {4 * 1024, 64} },
13943 .block_erase = erase_sector_jedec,
13944 }, {
13945 .eraseblocks = { {16 * 1024, 16} },
13946 .block_erase = erase_block_jedec,
13947 }, {
13948 .eraseblocks = { {256 * 1024, 1} },
13949 .block_erase = NULL,
13950 }
13951 },
Sean Nelson35727f72010-01-28 23:55:12 +000013952 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013953 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013954 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013955 },
13956
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013957 {
13958 .vendor = "SST",
13959 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013960 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013961 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013962 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013963 .total_size = 512,
13964 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000013965 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000013966 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013967 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +000013968 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013969 .block_erasers =
13970 {
13971 {
13972 .eraseblocks = { {4 * 1024, 128} },
13973 .block_erase = erase_sector_jedec,
13974 }, {
13975 .eraseblocks = { {64 * 1024, 8} },
13976 .block_erase = erase_block_jedec,
13977 }, {
13978 .eraseblocks = { {512 * 1024, 1} },
13979 .block_erase = NULL,
13980 }
13981 },
Sean Nelson35727f72010-01-28 23:55:12 +000013982 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000013983 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000013984 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000013985 },
13986
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013987 {
13988 .vendor = "SST",
13989 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000013990 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013991 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000013992 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000013993 .total_size = 512,
13994 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +000013995 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000013996 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +000013997 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000013998 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +000013999 .block_erasers =
14000 {
14001 {
14002 .eraseblocks = { {4 * 1024, 128} },
14003 .block_erase = erase_sector_jedec,
14004 }, {
14005 .eraseblocks = { {64 * 1024, 8} },
14006 .block_erase = erase_block_jedec,
14007 }, {
14008 .eraseblocks = { {512 * 1024, 1} },
14009 .block_erase = NULL,
14010 }
14011 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014012 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000014013 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014014 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014015 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014016 },
14017
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014018 {
14019 .vendor = "SST",
14020 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014021 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014022 .manufacture_id = SST_ID,
Elyes HAOUAS124ef382018-03-27 12:15:09 +020014023 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014024 .total_size = 1024,
14025 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +000014026 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +000014027 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014028 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000014029 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +000014030 .block_erasers =
14031 {
14032 {
14033 .eraseblocks = { {4 * 1024, 256} },
14034 .block_erase = erase_sector_jedec,
14035 }, {
14036 .eraseblocks = { {64 * 1024, 16} },
14037 .block_erase = erase_block_jedec,
14038 }, {
14039 .eraseblocks = { {1024 * 1024, 1} },
14040 .block_erase = NULL,
14041 }
14042 },
Sean Nelson35727f72010-01-28 23:55:12 +000014043 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014044 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014045 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014046 },
14047
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014048 {
14049 .vendor = "SST",
14050 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014051 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014052 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000014053 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014054 .total_size = 2048,
14055 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014056 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014057 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014058 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014059 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +000014060 .block_erasers =
14061 {
14062 {
14063 .eraseblocks = { {4 * 1024, 512} },
14064 .block_erase = erase_sector_49lfxxxc,
14065 }, {
Stefan Tauner0554ca52013-07-25 22:54:25 +000014066 .eraseblocks = {
Sean Nelson51c83fb2010-01-20 20:55:53 +000014067 {64 * 1024, 31},
14068 {32 * 1024, 1},
14069 {8 * 1024, 2},
14070 {16 * 1024, 1},
14071 },
Sean Nelson69e58112010-03-23 17:10:28 +000014072 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +000014073 }
14074 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014075 .printlock = printlock_regspace2_block_eraser_1,
14076 .unlock = unlock_regspace2_block_eraser_1,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000014077 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014078 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014079 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014080 },
14081
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014082 {
14083 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014084 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014085 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014086 .manufacture_id = ST_ID,
14087 .model_id = ST_M29F002B,
14088 .total_size = 256,
14089 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014090 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014091 .tested = TEST_UNTESTED,
14092 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014093 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014094 .block_erasers =
14095 {
14096 {
14097 .eraseblocks = {
14098 {16 * 1024, 1},
14099 {8 * 1024, 2},
14100 {32 * 1024, 1},
14101 {64 * 1024, 3},
14102 },
14103 .block_erase = erase_sector_jedec,
14104 }, {
14105 .eraseblocks = { {256 * 1024, 1} },
14106 .block_erase = erase_chip_block_jedec,
14107 }
14108 },
Sean Nelson35727f72010-01-28 23:55:12 +000014109 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014110 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000014111 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000014112 },
14113
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014114 {
14115 .vendor = "ST",
14116 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014117 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014118 .manufacture_id = ST_ID,
14119 .model_id = ST_M29F002T,
14120 .total_size = 256,
14121 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014122 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +000014123 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014124 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014125 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014126 .block_erasers =
14127 {
14128 {
14129 .eraseblocks = {
14130 {64 * 1024, 3},
14131 {32 * 1024, 1},
14132 {8 * 1024, 2},
14133 {16 * 1024, 1},
14134 },
14135 .block_erase = erase_sector_jedec,
14136 }, {
14137 .eraseblocks = { {256 * 1024, 1} },
14138 .block_erase = erase_chip_block_jedec,
14139 }
14140 },
Sean Nelson35727f72010-01-28 23:55:12 +000014141 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014142 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000014143 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +000014144 },
14145
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014146 {
14147 .vendor = "ST",
14148 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014149 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014150 .manufacture_id = ST_ID,
14151 .model_id = ST_M29F040B,
14152 .total_size = 512,
14153 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014154 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
14155 .tested = TEST_UNTESTED,
14156 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +000014157 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +000014158 .block_erasers =
14159 {
14160 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014161 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000014162 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014163 }, {
14164 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000014165 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014166 }
14167 },
Sean Nelson35727f72010-01-28 23:55:12 +000014168 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014169 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014170 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014171 },
14172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014173 {
Sean Nelson35727f72010-01-28 23:55:12 +000014174 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014175 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014176 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014177 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014178 .manufacture_id = ST_ID,
14179 .model_id = ST_M29F400BB,
14180 .total_size = 512,
14181 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014182 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000014183 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014184 .probe = probe_jedec,
14185 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014186 .block_erasers =
14187 {
14188 {
14189 .eraseblocks = {
14190 {16 * 1024, 1},
14191 {8 * 1024, 2},
14192 {32 * 1024, 1},
14193 {64 * 1024, 7},
14194 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014195 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014196 }, {
14197 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014198 .block_erase = erase_chip_block_jedec,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014199 }
14200 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014201 .write = write_jedec_1,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014202 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014203 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +000014204 },
14205 {
14206 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
14207 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014208 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014209 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014210 .manufacture_id = ST_ID,
14211 .model_id = ST_M29F400BT,
14212 .total_size = 512,
14213 .page_size = 64 * 1024,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014214 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014215 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014216 .probe = probe_jedec,
14217 .probe_timing = 10, // FIXME: check datasheet. Using the 10 us from probe_m29f400bt
Sean Nelson56358aa2010-01-19 16:08:51 +000014218 .block_erasers =
14219 {
14220 {
14221 .eraseblocks = {
14222 {64 * 1024, 7},
14223 {32 * 1024, 1},
14224 {8 * 1024, 2},
14225 {16 * 1024, 1},
14226 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014227 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014228 }, {
14229 .eraseblocks = { {512 * 1024, 1} },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014230 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +000014231 }
14232 },
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000014233 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014234 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014235 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014236 },
14237
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014238 {
14239 .vendor = "ST",
14240 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014241 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014242 .manufacture_id = ST_ID,
14243 .model_id = ST_M29W010B,
14244 .total_size = 128,
14245 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014246 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014247 .tested = TEST_UNTESTED,
14248 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014249 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014250 .block_erasers =
14251 {
14252 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014253 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014254 .block_erase = erase_sector_jedec,
14255 }, {
14256 .eraseblocks = { {128 * 1024, 1} },
14257 .block_erase = erase_chip_block_jedec,
14258 }
14259 },
Sean Nelson35727f72010-01-28 23:55:12 +000014260 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014261 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014262 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014263 },
14264
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014265 {
14266 .vendor = "ST",
14267 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014268 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014269 .manufacture_id = ST_ID,
14270 .model_id = ST_M29W040B,
14271 .total_size = 512,
14272 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014273 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014274 .tested = TEST_UNTESTED,
14275 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014276 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014277 .block_erasers =
14278 {
14279 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014280 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014281 .block_erase = erase_sector_jedec,
14282 }, {
14283 .eraseblocks = { {512 * 1024, 1} },
14284 .block_erase = erase_chip_block_jedec,
14285 }
14286 },
Sean Nelson35727f72010-01-28 23:55:12 +000014287 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014288 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014289 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014290 },
14291
Stefan Taunereb582572012-09-21 12:52:50 +000014292 {
14293 .vendor = "ST",
14294 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014295 .bustype = BUS_PARALLEL,
Stefan Taunereb582572012-09-21 12:52:50 +000014296 .manufacture_id = ST_ID,
14297 .model_id = ST_M29W512B,
14298 .total_size = 64,
14299 .page_size = 64 * 1024,
14300 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauner0554ca52013-07-25 22:54:25 +000014301 .tested = TEST_OK_PREW,
Stefan Taunereb582572012-09-21 12:52:50 +000014302 .probe = probe_jedec,
14303 .probe_timing = TIMING_ZERO,
14304 .block_erasers =
14305 {
14306 {
14307 .eraseblocks = { {64 * 1024, 1} },
14308 .block_erase = erase_chip_block_jedec,
14309 }
14310 },
14311 .write = write_jedec_1,
14312 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014313 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +000014314 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +000014315
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014316 {
14317 .vendor = "ST",
14318 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014319 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014320 .manufacture_id = ST_ID,
14321 .model_id = ST_M50FLW040A,
14322 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014323 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014324 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014325 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014326 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014327 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014328 .block_erasers =
14329 {
14330 {
Sean Nelson329bde72010-01-19 16:39:19 +000014331 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014332 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014333 {64 * 1024, 5}, /* block */
14334 {4 * 1024, 16}, /* sector */
14335 {4 * 1024, 16}, /* sector */
14336 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014337 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014338 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014339 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014340 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014341 }
14342 },
Sean Nelson28accc22010-03-19 18:47:06 +000014343 .write = write_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014344 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014345 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014346 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014347 },
14348
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014349 {
14350 .vendor = "ST",
14351 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014352 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014353 .manufacture_id = ST_ID,
14354 .model_id = ST_M50FLW040B,
14355 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014356 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014357 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014358 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014359 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014360 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014361 .block_erasers =
14362 {
14363 {
Sean Nelson329bde72010-01-19 16:39:19 +000014364 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014365 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014366 {4 * 1024, 16}, /* sector */
14367 {64 * 1024, 5}, /* block */
14368 {4 * 1024, 16}, /* sector */
14369 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014370 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014371 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014372 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014373 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014374 }
14375 },
Sean Nelson28accc22010-03-19 18:47:06 +000014376 .write = write_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014377 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014378 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014379 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014380 },
14381
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014382 {
14383 .vendor = "ST",
14384 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014385 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014386 .manufacture_id = ST_ID,
14387 .model_id = ST_M50FLW080A,
14388 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014389 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014390 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014391 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014392 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014393 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014394 .block_erasers =
14395 {
14396 {
Sean Nelson329bde72010-01-19 16:39:19 +000014397 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014398 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014399 {64 * 1024, 13}, /* block */
14400 {4 * 1024, 16}, /* sector */
14401 {4 * 1024, 16}, /* sector */
14402 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014403 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014404 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014405 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014406 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014407 }
14408 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014409 .printlock = printlock_regspace2_block_eraser_0,
14410 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014411 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014412 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014413 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014414 },
14415
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014416 {
14417 .vendor = "ST",
14418 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014419 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014420 .manufacture_id = ST_ID,
14421 .model_id = ST_M50FLW080B,
14422 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014423 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014424 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014425 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014426 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000014427 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000014428 .block_erasers =
14429 {
14430 {
Sean Nelson329bde72010-01-19 16:39:19 +000014431 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000014432 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000014433 {4 * 1024, 16}, /* sector */
14434 {64 * 1024, 13}, /* block */
14435 {4 * 1024, 16}, /* sector */
14436 },
Stefan Taunerbeaffd82013-09-12 08:29:06 +000014437 .block_erase = erase_sector_stm50,
Sean Nelson329bde72010-01-19 16:39:19 +000014438 }, {
Stefan Tauner6697f712014-08-06 15:09:15 +000014439 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014440 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014441 }
14442 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014443 .printlock = printlock_regspace2_block_eraser_0,
14444 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014445 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014446 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014447 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014448 },
14449
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014450 {
14451 .vendor = "ST",
14452 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014453 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014454 .manufacture_id = ST_ID,
14455 .model_id = ST_M50FW002,
14456 .total_size = 256,
Stefan Tauner4404f732013-09-12 08:28:56 +000014457 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014458 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014459 .tested = TEST_OK_PR,
Sean Nelson35727f72010-01-28 23:55:12 +000014460 .probe = probe_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014461 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014462 .block_erasers =
14463 {
14464 {
14465 .eraseblocks = {
14466 {64 * 1024, 3},
14467 {32 * 1024, 1},
14468 {8 * 1024, 2},
14469 {16 * 1024, 1},
14470 },
Sean Nelson28accc22010-03-19 18:47:06 +000014471 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014472 }, {
Stefan Tauner5c316f92015-02-08 21:57:52 +000014473 .eraseblocks = { {256 * 1024, 1} },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014474 .block_erase = NULL, /* Only in A/A mux mode */
Sean Nelson56358aa2010-01-19 16:08:51 +000014475 }
14476 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014477 .printlock = printlock_regspace2_block_eraser_0,
14478 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014479 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014480 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014481 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014482 },
14483
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014484 {
14485 .vendor = "ST",
14486 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014487 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014488 .manufacture_id = ST_ID,
14489 .model_id = ST_M50FW016,
14490 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014491 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014492 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014493 .tested = TEST_UNTESTED,
14494 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014495 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014496 .block_erasers =
14497 {
14498 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014499 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson28accc22010-03-19 18:47:06 +000014500 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014501 }
14502 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014503 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014504 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014505 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014506 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014507 },
14508
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014509 {
14510 .vendor = "ST",
14511 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014512 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014513 .manufacture_id = ST_ID,
14514 .model_id = ST_M50FW040,
14515 .total_size = 512,
Stefan Tauner4404f732013-09-12 08:28:56 +000014516 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014517 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +000014518 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014519 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014520 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014521 .block_erasers =
14522 {
14523 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014524 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +000014525 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014526 }
14527 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014528 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014529 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014530 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014531 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014532 },
14533
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014534 {
14535 .vendor = "ST",
14536 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014537 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014538 .manufacture_id = ST_ID,
14539 .model_id = ST_M50FW080,
14540 .total_size = 1024,
Stefan Tauner4404f732013-09-12 08:28:56 +000014541 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014542 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014543 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014544 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000014545 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000014546 .block_erasers =
14547 {
14548 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014549 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +000014550 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014551 }
14552 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014553 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson28accc22010-03-19 18:47:06 +000014554 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014555 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014556 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014557 },
14558
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014559 {
14560 .vendor = "ST",
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014561 .name = "M50LPW080",
14562 .bustype = BUS_LPC, /* A/A Mux */
14563 .manufacture_id = ST_ID,
14564 .model_id = ST_M50LPW080,
14565 .total_size = 1024,
14566 .page_size = 0,
14567 .feature_bits = FEATURE_REGISTERMAP,
14568 .tested = TEST_UNTESTED,
14569 .probe = probe_82802ab,
14570 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14571 .block_erasers =
14572 {
14573 {
Stefan Tauner6697f712014-08-06 15:09:15 +000014574 .eraseblocks = { {64 * 1024, 16} },
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014575 .block_erase = erase_block_82802ab,
14576 }
14577 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014578 .unlock = unlock_regspace2_uniform_64k,
Stefan Tauner8c4602b2013-09-12 08:29:00 +000014579 .write = write_82802ab,
14580 .read = read_memmapped,
14581 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
14582 },
14583
14584 {
14585 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014586 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014587 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014588 .manufacture_id = ST_ID,
14589 .model_id = ST_M50LPW116,
14590 .total_size = 2048,
Stefan Tauner4404f732013-09-12 08:28:56 +000014591 .page_size = 0,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000014592 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014593 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000014594 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +000014595 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014596 .block_erasers =
14597 {
14598 {
14599 .eraseblocks = {
14600 {4 * 1024, 16},
14601 {64 * 1024, 30},
14602 {32 * 1024, 1},
14603 {8 * 1024, 2},
14604 {16 * 1024, 1},
14605 },
Sean Nelson28accc22010-03-19 18:47:06 +000014606 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000014607 }
14608 },
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000014609 .printlock = printlock_regspace2_block_eraser_0,
14610 .unlock = unlock_regspace2_block_eraser_0,
Sean Nelson28accc22010-03-19 18:47:06 +000014611 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014612 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014613 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000014614 },
14615
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014616 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014617 .vendor = "SyncMOS/MoselVitelic",
14618 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014619 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014620 .manufacture_id = SYNCMOS_MVC_ID,
14621 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014622 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014623 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000014624 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014625 .tested = TEST_UNTESTED,
14626 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014627 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014628 .block_erasers =
14629 {
14630 {
14631 .eraseblocks = { {512, 256} },
14632 .block_erase = erase_sector_jedec,
14633 }, {
14634 .eraseblocks = { {128 * 1024, 1} },
14635 .block_erase = erase_chip_block_jedec,
14636 },
14637 },
Sean Nelson35727f72010-01-28 23:55:12 +000014638 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014639 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014640 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000014641 },
14642
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014643 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014644 .vendor = "SyncMOS/MoselVitelic",
14645 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014646 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014647 .manufacture_id = SYNCMOS_MVC_ID,
14648 .model_id = SM_MVC_29C51001T,
14649 .total_size = 128,
14650 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000014651 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014652 .tested = TEST_UNTESTED,
14653 .probe = probe_jedec,
14654 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14655 .block_erasers =
14656 {
14657 {
14658 .eraseblocks = { {512, 256} },
14659 .block_erase = erase_sector_jedec,
14660 }, {
14661 .eraseblocks = { {128 * 1024, 1} },
14662 .block_erase = erase_chip_block_jedec,
14663 },
14664 },
14665 .write = write_jedec_1,
14666 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014667 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014668 },
14669
14670 {
14671 .vendor = "SyncMOS/MoselVitelic",
14672 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014673 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014674 .manufacture_id = SYNCMOS_MVC_ID,
14675 .model_id = SM_MVC_29C51002B,
14676 .total_size = 256,
14677 .page_size = 512,
14678 .feature_bits = FEATURE_EITHER_RESET,
14679 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014680 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014681 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014682 .block_erasers =
14683 {
14684 {
14685 .eraseblocks = { {512, 512} },
14686 .block_erase = erase_sector_jedec,
14687 }, {
14688 .eraseblocks = { {256 * 1024, 1} },
14689 .block_erase = erase_chip_block_jedec,
14690 },
14691 },
Sean Nelson35727f72010-01-28 23:55:12 +000014692 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014693 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000014694 },
14695
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014696 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014697 .vendor = "SyncMOS/MoselVitelic",
14698 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014699 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014700 .manufacture_id = SYNCMOS_MVC_ID,
14701 .model_id = SM_MVC_29C51002T,
14702 .total_size = 256,
14703 .page_size = 512,
14704 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000014705 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014706 .probe = probe_jedec,
14707 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14708 .block_erasers =
14709 {
14710 {
14711 .eraseblocks = { {512, 512} },
14712 .block_erase = erase_sector_jedec,
14713 }, {
14714 .eraseblocks = { {256 * 1024, 1} },
14715 .block_erase = erase_chip_block_jedec,
14716 },
14717 },
14718 .write = write_jedec_1,
14719 .read = read_memmapped,
14720 },
14721
14722 {
14723 .vendor = "SyncMOS/MoselVitelic",
14724 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014725 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014726 .manufacture_id = SYNCMOS_MVC_ID,
14727 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014728 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014729 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000014730 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014731 .tested = TEST_UNTESTED,
14732 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014733 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +000014734 .block_erasers =
14735 {
14736 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000014737 .eraseblocks = { {1024, 512} },
14738 .block_erase = erase_sector_jedec,
14739 }, {
14740 .eraseblocks = { {512 * 1024, 1} },
14741 .block_erase = erase_chip_block_jedec,
14742 },
14743 },
14744 .write = write_jedec_1,
14745 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014746 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014747 },
14748
14749 {
14750 .vendor = "SyncMOS/MoselVitelic",
14751 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014752 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014753 .manufacture_id = SYNCMOS_MVC_ID,
14754 .model_id = SM_MVC_29C51004T,
14755 .total_size = 512,
14756 .page_size = 1024,
14757 .feature_bits = FEATURE_EITHER_RESET,
14758 .tested = TEST_UNTESTED,
14759 .probe = probe_jedec,
14760 .probe_timing = TIMING_ZERO,
14761 .block_erasers =
14762 {
14763 {
14764 .eraseblocks = { {1024, 512} },
14765 .block_erase = erase_sector_jedec,
14766 }, {
14767 .eraseblocks = { {512 * 1024, 1} },
14768 .block_erase = erase_chip_block_jedec,
14769 },
14770 },
14771 .write = write_jedec_1,
14772 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014773 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014774 },
14775
14776 {
14777 .vendor = "SyncMOS/MoselVitelic",
14778 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014779 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014780 .manufacture_id = SYNCMOS_MVC_ID,
14781 .model_id = SM_MVC_29C31004B,
14782 .total_size = 512,
14783 .page_size = 1024,
14784 .feature_bits = FEATURE_EITHER_RESET,
14785 .tested = TEST_UNTESTED,
14786 .probe = probe_jedec,
14787 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14788 .block_erasers =
14789 {
14790 {
14791 .eraseblocks = { {1024, 512} },
14792 .block_erase = erase_sector_jedec,
14793 }, {
14794 .eraseblocks = { {512 * 1024, 1} },
14795 .block_erase = erase_chip_block_jedec,
14796 },
14797 },
14798 .write = write_jedec_1,
14799 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014800 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +000014801 },
14802
14803 {
14804 .vendor = "SyncMOS/MoselVitelic",
14805 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014806 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000014807 .manufacture_id = SYNCMOS_MVC_ID,
14808 .model_id = SM_MVC_29C31004T,
14809 .total_size = 512,
14810 .page_size = 1024,
14811 .feature_bits = FEATURE_EITHER_RESET,
14812 .tested = TEST_UNTESTED,
14813 .probe = probe_jedec,
14814 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
14815 .block_erasers =
14816 {
14817 {
14818 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +000014819 .block_erase = erase_sector_jedec,
14820 }, {
14821 .eraseblocks = { {512 * 1024, 1} },
14822 .block_erase = erase_chip_block_jedec,
14823 },
14824 },
Sean Nelson35727f72010-01-28 23:55:12 +000014825 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000014826 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014827 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000014828 },
14829
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014830 {
Uwe Hermanna106d152009-05-27 23:17:40 +000014831 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014832 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014833 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014834 .manufacture_id = TI_OLD_ID,
14835 .model_id = TI_TMS29F002RB,
14836 .total_size = 256,
14837 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000014838 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014839 .tested = TEST_UNTESTED,
14840 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014841 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014842 .block_erasers =
14843 {
14844 {
14845 .eraseblocks = {
14846 {16 * 1024, 1},
14847 {8 * 1024, 2},
14848 {32 * 1024, 1},
14849 {64 * 1024, 3},
14850 },
14851 .block_erase = erase_sector_jedec,
14852 }, {
14853 .eraseblocks = { {256 * 1024, 1} },
14854 .block_erase = erase_chip_block_jedec,
14855 },
14856 },
Sean Nelson35727f72010-01-28 23:55:12 +000014857 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014858 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014859 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014860 },
14861
14862 {
Uwe Hermanna106d152009-05-27 23:17:40 +000014863 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014864 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014865 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014866 .manufacture_id = TI_OLD_ID,
14867 .model_id = TI_TMS29F002RT,
14868 .total_size = 256,
14869 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000014870 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014871 .tested = TEST_UNTESTED,
14872 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000014873 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000014874 .block_erasers =
14875 {
14876 {
14877 .eraseblocks = {
14878 {64 * 1024, 3},
14879 {32 * 1024, 1},
14880 {8 * 1024, 2},
14881 {16 * 1024, 1},
14882 },
14883 .block_erase = erase_sector_jedec,
14884 }, {
14885 .eraseblocks = { {256 * 1024, 1} },
14886 .block_erase = erase_chip_block_jedec,
14887 },
14888 },
Sean Nelson35727f72010-01-28 23:55:12 +000014889 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014890 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014891 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000014892 },
14893
14894 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000014895 .vendor = "Winbond",
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000014896 .name = "W25Q40.V",
14897 .bustype = BUS_SPI,
14898 .manufacture_id = WINBOND_NEX_ID,
14899 .model_id = WINBOND_NEX_W25Q40_V,
14900 .total_size = 512,
14901 .page_size = 256,
14902 /* supports SFDP */
14903 /* OTP: 756B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
14904 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner5c316f92015-02-08 21:57:52 +000014905 .tested = TEST_OK_PREW,
Stefan Tauner5e27b0b2014-09-09 23:03:32 +000014906 .probe = probe_spi_rdid,
14907 .probe_timing = TIMING_ZERO,
14908 .block_erasers =
14909 {
14910 {
14911 .eraseblocks = { {4 * 1024, 128} },
14912 .block_erase = spi_block_erase_20,
14913 }, {
14914 .eraseblocks = { {32 * 1024, 16} },
14915 .block_erase = spi_block_erase_52,
14916 }, {
14917 .eraseblocks = { {64 * 1024, 8} },
14918 .block_erase = spi_block_erase_d8,
14919 }, {
14920 .eraseblocks = { {512 * 1024, 1} },
14921 .block_erase = spi_block_erase_60,
14922 }, {
14923 .eraseblocks = { {512 * 1024, 1} },
14924 .block_erase = spi_block_erase_c7,
14925 }
14926 },
14927 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
14928 .unlock = spi_disable_blockprotect,
14929 .write = spi_chip_write_256, /* Multi I/O supported */
14930 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
14931 .voltage = {2700, 3600},
14932 },
14933
14934 {
14935 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014936 .name = "W25Q80.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014937 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014938 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014939 .model_id = WINBOND_NEX_W25Q80_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014940 .total_size = 1024,
14941 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014942 /* supports SFDP */
14943 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000014944 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000014945 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014946 .probe = probe_spi_rdid,
14947 .probe_timing = TIMING_ZERO,
14948 .block_erasers =
14949 {
14950 {
14951 .eraseblocks = { {4 * 1024, 256} },
14952 .block_erase = spi_block_erase_20,
14953 }, {
14954 .eraseblocks = { {32 * 1024, 32} },
14955 .block_erase = spi_block_erase_52,
14956 }, {
14957 .eraseblocks = { {64 * 1024, 16} },
14958 .block_erase = spi_block_erase_d8,
14959 }, {
14960 .eraseblocks = { {1024 * 1024, 1} },
14961 .block_erase = spi_block_erase_60,
14962 }, {
14963 .eraseblocks = { {1024 * 1024, 1} },
14964 .block_erase = spi_block_erase_c7,
14965 }
14966 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000014967 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000014968 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014969 .write = spi_chip_write_256,
14970 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000014971 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000014972 },
14973
14974 {
14975 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014976 .name = "W25Q16.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000014977 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014978 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014979 .model_id = WINBOND_NEX_W25Q16_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014980 .total_size = 2048,
14981 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000014982 /* supports SFDP */
14983 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000014984 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +000014985 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000014986 .probe = probe_spi_rdid,
14987 .probe_timing = TIMING_ZERO,
14988 .block_erasers =
14989 {
14990 {
14991 .eraseblocks = { {4 * 1024, 512} },
14992 .block_erase = spi_block_erase_20,
14993 }, {
14994 .eraseblocks = { {32 * 1024, 64} },
14995 .block_erase = spi_block_erase_52,
14996 }, {
14997 .eraseblocks = { {64 * 1024, 32} },
14998 .block_erase = spi_block_erase_d8,
14999 }, {
15000 .eraseblocks = { {2 * 1024 * 1024, 1} },
15001 .block_erase = spi_block_erase_60,
15002 }, {
15003 .eraseblocks = { {2 * 1024 * 1024, 1} },
15004 .block_erase = spi_block_erase_c7,
15005 }
15006 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015007 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015008 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015009 .write = spi_chip_write_256,
15010 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015011 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000015012 },
15013
15014 {
15015 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015016 .name = "W25Q32.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015017 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015018 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015019 .model_id = WINBOND_NEX_W25Q32_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015020 .total_size = 4096,
15021 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015022 /* supports SFDP */
15023 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015024 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000015025 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015026 .probe = probe_spi_rdid,
15027 .probe_timing = TIMING_ZERO,
15028 .block_erasers =
15029 {
15030 {
15031 .eraseblocks = { {4 * 1024, 1024} },
15032 .block_erase = spi_block_erase_20,
15033 }, {
15034 .eraseblocks = { {32 * 1024, 128} },
15035 .block_erase = spi_block_erase_52,
15036 }, {
15037 .eraseblocks = { {64 * 1024, 64} },
15038 .block_erase = spi_block_erase_d8,
15039 }, {
15040 .eraseblocks = { {4 * 1024 * 1024, 1} },
15041 .block_erase = spi_block_erase_60,
15042 }, {
15043 .eraseblocks = { {4 * 1024 * 1024, 1} },
15044 .block_erase = spi_block_erase_c7,
15045 }
15046 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015047 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015048 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000015049 .write = spi_chip_write_256,
15050 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015051 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000015052 },
15053
15054 {
15055 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015056 .name = "W25Q64.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015057 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +000015058 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015059 .model_id = WINBOND_NEX_W25Q64_V,
David Hendricksc4acec92010-06-24 11:39:57 +000015060 .total_size = 8192,
15061 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015062 /* supports SFDP */
15063 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015064 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000015065 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +000015066 .probe = probe_spi_rdid,
15067 .probe_timing = TIMING_ZERO,
15068 .block_erasers =
15069 {
15070 {
15071 .eraseblocks = { {4 * 1024, 2048} },
15072 .block_erase = spi_block_erase_20,
15073 }, {
15074 .eraseblocks = { {32 * 1024, 256} },
15075 .block_erase = spi_block_erase_52,
15076 }, {
15077 .eraseblocks = { {64 * 1024, 128} },
15078 .block_erase = spi_block_erase_d8,
15079 }, {
15080 .eraseblocks = { {8 * 1024 * 1024, 1} },
15081 .block_erase = spi_block_erase_60,
15082 }, {
15083 .eraseblocks = { {8 * 1024 * 1024, 1} },
15084 .block_erase = spi_block_erase_c7,
15085 }
15086 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015087 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015088 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +000015089 .write = spi_chip_write_256,
15090 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015091 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000015092 },
15093
15094 {
15095 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015096 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015097 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015098 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015099 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015100 .total_size = 16384,
15101 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015102 /* supports SFDP */
15103 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000015104 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015105 .tested = TEST_OK_PREW,
Antony Rheneus0fbba982011-05-26 14:28:51 +000015106 .probe = probe_spi_rdid,
15107 .probe_timing = TIMING_ZERO,
15108 .block_erasers =
15109 {
15110 {
15111 .eraseblocks = { {4 * 1024, 4096} },
15112 .block_erase = spi_block_erase_20,
15113 }, {
15114 .eraseblocks = { {32 * 1024, 512} },
15115 .block_erase = spi_block_erase_52,
15116 }, {
15117 .eraseblocks = { {64 * 1024, 256} },
15118 .block_erase = spi_block_erase_d8,
15119 }, {
15120 .eraseblocks = { {16 * 1024 * 1024, 1} },
15121 .block_erase = spi_block_erase_60,
15122 }, {
15123 .eraseblocks = { {16 * 1024 * 1024, 1} },
15124 .block_erase = spi_block_erase_c7,
15125 }
15126 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015127 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000015128 .unlock = spi_disable_blockprotect,
15129 .write = spi_chip_write_256,
15130 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015131 .voltage = {2700, 3600},
15132 },
15133
15134 {
15135 .vendor = "Winbond",
Boris Baykovaa6c3742016-06-11 18:29:01 +020015136 .name = "W25Q256.V",
15137 .bustype = BUS_SPI,
15138 .manufacture_id = WINBOND_NEX_ID,
15139 .model_id = WINBOND_NEX_W25Q256_V,
15140 .total_size = 32768,
15141 .page_size = 256,
15142 /* supports SFDP */
15143 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15144 /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */
Nico Huberaac81422017-11-10 22:54:13 +010015145 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_ENTER_WREN
15146 | FEATURE_4BA_EXT_ADDR | FEATURE_4BA_READ | FEATURE_4BA_FAST_READ,
15147 .tested = TEST_UNTESTED,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015148 .probe = probe_spi_rdid,
15149 .probe_timing = TIMING_ZERO,
15150 .block_erasers =
15151 {
15152 {
15153 .eraseblocks = { {4 * 1024, 8192} },
Nico Huber7a077222017-10-14 18:18:30 +020015154 .block_erase = spi_block_erase_20,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015155 }, {
15156 .eraseblocks = { {32 * 1024, 1024} },
Nico Huber7a077222017-10-14 18:18:30 +020015157 .block_erase = spi_block_erase_52,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015158 }, {
15159 .eraseblocks = { {64 * 1024, 512} },
Nico Huber7a077222017-10-14 18:18:30 +020015160 .block_erase = spi_block_erase_d8,
Boris Baykovaa6c3742016-06-11 18:29:01 +020015161 }, {
15162 .eraseblocks = { {32 * 1024 * 1024, 1} },
15163 .block_erase = spi_block_erase_60,
15164 }, {
15165 .eraseblocks = { {32 * 1024 * 1024, 1} },
15166 .block_erase = spi_block_erase_c7,
15167 }
15168 },
15169 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15170 .unlock = spi_disable_blockprotect,
15171 .write = spi_chip_write_256,
15172 .read = spi_chip_read,
15173 .voltage = {2700, 3600},
15174 },
15175
15176 {
15177 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015178 .name = "W25Q20.W",
15179 .bustype = BUS_SPI,
15180 .manufacture_id = WINBOND_NEX_ID,
15181 .model_id = WINBOND_NEX_W25Q20_W,
15182 .total_size = 256,
15183 .page_size = 256,
15184 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15185 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15186 .tested = TEST_UNTESTED,
15187 .probe = probe_spi_rdid,
15188 .probe_timing = TIMING_ZERO,
15189 .block_erasers =
15190 {
15191 {
15192 .eraseblocks = { {4 * 1024, 64} },
15193 .block_erase = spi_block_erase_20,
15194 }, {
15195 .eraseblocks = { {32 * 1024, 8} },
15196 .block_erase = spi_block_erase_52,
15197 }, {
15198 .eraseblocks = { {64 * 1024, 4} },
15199 .block_erase = spi_block_erase_d8,
15200 }, {
15201 .eraseblocks = { {256 * 1024, 1} },
15202 .block_erase = spi_block_erase_60,
15203 }, {
15204 .eraseblocks = { {256 * 1024, 1} },
15205 .block_erase = spi_block_erase_c7,
15206 }
15207 },
15208 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15209 .unlock = spi_disable_blockprotect,
15210 .write = spi_chip_write_256,
15211 .read = spi_chip_read,
15212 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15213 },
15214
15215 {
15216 .vendor = "Winbond",
Nico Huber25683572018-03-30 13:50:13 +020015217 .name = "W25Q40BW",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015218 .bustype = BUS_SPI,
15219 .manufacture_id = WINBOND_NEX_ID,
Nico Huber25683572018-03-30 13:50:13 +020015220 .model_id = WINBOND_NEX_W25Q40BW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015221 .total_size = 512,
15222 .page_size = 256,
15223 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15224 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15225 .tested = TEST_UNTESTED,
15226 .probe = probe_spi_rdid,
15227 .probe_timing = TIMING_ZERO,
15228 .block_erasers =
15229 {
15230 {
15231 .eraseblocks = { {4 * 1024, 128} },
15232 .block_erase = spi_block_erase_20,
15233 }, {
15234 .eraseblocks = { {32 * 1024, 16} },
15235 .block_erase = spi_block_erase_52,
15236 }, {
15237 .eraseblocks = { {64 * 1024, 8} },
15238 .block_erase = spi_block_erase_d8,
15239 }, {
15240 .eraseblocks = { {512 * 1024, 1} },
15241 .block_erase = spi_block_erase_60,
15242 }, {
15243 .eraseblocks = { {512 * 1024, 1} },
15244 .block_erase = spi_block_erase_c7,
15245 }
15246 },
15247 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15248 .unlock = spi_disable_blockprotect,
15249 .write = spi_chip_write_256,
15250 .read = spi_chip_read,
15251 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15252 },
15253
15254 {
15255 .vendor = "Winbond",
David Hendricksc699f5c2018-03-11 17:29:49 -070015256 .name = "W25Q80BW",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015257 .bustype = BUS_SPI,
15258 .manufacture_id = WINBOND_NEX_ID,
David Hendricksc699f5c2018-03-11 17:29:49 -070015259 .model_id = WINBOND_NEX_W25Q80BW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015260 .total_size = 1024,
15261 .page_size = 256,
15262 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15263 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner23e10b82016-01-23 16:16:49 +000015264 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015265 .probe = probe_spi_rdid,
15266 .probe_timing = TIMING_ZERO,
15267 .block_erasers =
15268 {
15269 {
15270 .eraseblocks = { {4 * 1024, 256} },
15271 .block_erase = spi_block_erase_20,
15272 }, {
15273 .eraseblocks = { {32 * 1024, 32} },
15274 .block_erase = spi_block_erase_52,
15275 }, {
15276 .eraseblocks = { {64 * 1024, 16} },
15277 .block_erase = spi_block_erase_d8,
15278 }, {
15279 .eraseblocks = { {1 * 1024 * 1024, 1} },
15280 .block_erase = spi_block_erase_60,
15281 }, {
15282 .eraseblocks = { {1 * 1024 * 1024, 1} },
15283 .block_erase = spi_block_erase_c7,
15284 }
15285 },
15286 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15287 .unlock = spi_disable_blockprotect,
15288 .write = spi_chip_write_256,
15289 .read = spi_chip_read,
15290 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15291 },
Nico Huber25683572018-03-30 13:50:13 +020015292
15293 {
15294 .vendor = "Winbond",
15295 .name = "W25Q40EW",
15296 .bustype = BUS_SPI,
15297 .manufacture_id = WINBOND_NEX_ID,
15298 .model_id = WINBOND_NEX_W25Q40EW,
15299 .total_size = 512,
15300 .page_size = 256,
15301 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15302 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15303 .tested = TEST_UNTESTED,
15304 .probe = probe_spi_rdid,
15305 .probe_timing = TIMING_ZERO,
15306 .block_erasers =
15307 {
15308 {
15309 .eraseblocks = { {4 * 1024, 128} },
15310 .block_erase = spi_block_erase_20,
15311 }, {
15312 .eraseblocks = { {32 * 1024, 16} },
15313 .block_erase = spi_block_erase_52,
15314 }, {
15315 .eraseblocks = { {64 * 1024, 8} },
15316 .block_erase = spi_block_erase_d8,
15317 }, {
15318 .eraseblocks = { {512 * 1024, 1} },
15319 .block_erase = spi_block_erase_60,
15320 }, {
15321 .eraseblocks = { {512 * 1024, 1} },
15322 .block_erase = spi_block_erase_c7,
15323 }
15324 },
15325 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15326 .unlock = spi_disable_blockprotect,
15327 .write = spi_chip_write_256,
15328 .read = spi_chip_read,
15329 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
15330 },
15331
Stanislav Sedovf5775442018-03-07 14:16:51 -080015332 {
15333 .vendor = "Winbond",
15334 .name = "W25Q80EW",
15335 .bustype = BUS_SPI,
15336 .manufacture_id = WINBOND_NEX_ID,
15337 .model_id = WINBOND_NEX_W25Q80EW,
15338 .total_size = 1024,
15339 .page_size = 256,
15340 /* OTP: 3*256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15341 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
15342 .tested = TEST_OK_PREW,
15343 .probe = probe_spi_rdid,
15344 .probe_timing = TIMING_ZERO,
15345 .block_erasers =
15346 {
15347 {
15348 .eraseblocks = { {4 * 1024, 256} },
15349 .block_erase = spi_block_erase_20,
15350 }, {
15351 .eraseblocks = { {32 * 1024, 32} },
15352 .block_erase = spi_block_erase_52,
15353 }, {
15354 .eraseblocks = { {64 * 1024, 16} },
15355 .block_erase = spi_block_erase_d8,
15356 }, {
15357 .eraseblocks = { {1 * 1024 * 1024, 1} },
15358 .block_erase = spi_block_erase_60,
15359 }, {
15360 .eraseblocks = { {1 * 1024 * 1024, 1} },
15361 .block_erase = spi_block_erase_c7,
15362 }
15363 },
15364 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15365 .unlock = spi_disable_blockprotect,
15366 .write = spi_chip_write_256,
15367 .read = spi_chip_read,
15368 .voltage = {1650, 1950}, /* Fast read (0x0B) and multi I/O supported */
15369 },
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015370
15371 {
15372 .vendor = "Winbond",
15373 .name = "W25Q16.W",
15374 .bustype = BUS_SPI,
15375 .manufacture_id = WINBOND_NEX_ID,
15376 .model_id = WINBOND_NEX_W25Q16_W,
15377 .total_size = 2048,
15378 .page_size = 256,
15379 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15380 /* QPI enable 0x38, disable 0xFF */
15381 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15382 .tested = TEST_UNTESTED,
15383 .probe = probe_spi_rdid,
15384 .probe_timing = TIMING_ZERO,
15385 .block_erasers =
15386 {
15387 {
15388 .eraseblocks = { {4 * 1024, 512} },
15389 .block_erase = spi_block_erase_20,
15390 }, {
15391 .eraseblocks = { {32 * 1024, 64} },
15392 .block_erase = spi_block_erase_52,
15393 }, {
15394 .eraseblocks = { {64 * 1024, 32} },
15395 .block_erase = spi_block_erase_d8,
15396 }, {
15397 .eraseblocks = { {2 * 1024 * 1024, 1} },
15398 .block_erase = spi_block_erase_60,
15399 }, {
15400 .eraseblocks = { {2 * 1024 * 1024, 1} },
15401 .block_erase = spi_block_erase_c7,
15402 }
15403 },
15404 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15405 .unlock = spi_disable_blockprotect,
15406 .write = spi_chip_write_256,
15407 .read = spi_chip_read,
15408 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15409 },
15410
15411 {
15412 .vendor = "Winbond",
15413 .name = "W25Q32.W",
15414 .bustype = BUS_SPI,
15415 .manufacture_id = WINBOND_NEX_ID,
15416 .model_id = WINBOND_NEX_W25Q32_W,
15417 .total_size = 4096,
15418 .page_size = 256,
15419 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15420 /* QPI enable 0x38, disable 0xFF */
15421 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
15422 .tested = TEST_OK_PREW,
15423 .probe = probe_spi_rdid,
15424 .probe_timing = TIMING_ZERO,
15425 .block_erasers =
15426 {
15427 {
15428 .eraseblocks = { {4 * 1024, 1024} },
15429 .block_erase = spi_block_erase_20,
15430 }, {
15431 .eraseblocks = { {32 * 1024, 128} },
15432 .block_erase = spi_block_erase_52,
15433 }, {
15434 .eraseblocks = { {64 * 1024, 64} },
15435 .block_erase = spi_block_erase_d8,
15436 }, {
15437 .eraseblocks = { {4 * 1024 * 1024, 1} },
15438 .block_erase = spi_block_erase_60,
15439 }, {
15440 .eraseblocks = { {4 * 1024 * 1024, 1} },
15441 .block_erase = spi_block_erase_c7,
15442 }
15443 },
15444 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15445 .unlock = spi_disable_blockprotect,
15446 .write = spi_chip_write_256,
15447 .read = spi_chip_read,
15448 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
15449 },
15450
15451 {
15452 .vendor = "Winbond",
15453 .name = "W25Q64.W",
15454 .bustype = BUS_SPI,
15455 .manufacture_id = WINBOND_NEX_ID,
15456 .model_id = WINBOND_NEX_W25Q64_W,
15457 .total_size = 8192,
15458 .page_size = 256,
15459 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15460 /* QPI enable 0x38, disable 0xFF */
15461 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015462 .tested = TEST_OK_PREW,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000015463 .probe = probe_spi_rdid,
15464 .probe_timing = TIMING_ZERO,
15465 .block_erasers =
15466 {
15467 {
15468 .eraseblocks = { {4 * 1024, 2048} },
15469 .block_erase = spi_block_erase_20,
15470 }, {
15471 .eraseblocks = { {32 * 1024, 256} },
15472 .block_erase = spi_block_erase_52,
15473 }, {
15474 .eraseblocks = { {64 * 1024, 128} },
15475 .block_erase = spi_block_erase_d8,
15476 }, {
15477 .eraseblocks = { {8 * 1024 * 1024, 1} },
15478 .block_erase = spi_block_erase_60,
15479 }, {
15480 .eraseblocks = { {8 * 1024 * 1024, 1} },
15481 .block_erase = spi_block_erase_c7,
15482 }
15483 },
15484 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15485 .unlock = spi_disable_blockprotect,
15486 .write = spi_chip_write_256,
15487 .read = spi_chip_read,
15488 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000015489 },
15490
15491 {
15492 .vendor = "Winbond",
Nico Huber70eed9f2017-04-24 22:19:27 +020015493 .name = "W25Q128.W",
15494 .bustype = BUS_SPI,
15495 .manufacture_id = WINBOND_NEX_ID,
15496 .model_id = WINBOND_NEX_W25Q128_W,
15497 .total_size = 16384,
15498 .page_size = 256,
15499 /* supports SFDP */
15500 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
15501 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
David Hendricks48729d32017-12-08 14:44:07 -080015502 .tested = TEST_OK_PREW,
Nico Huber70eed9f2017-04-24 22:19:27 +020015503 .probe = probe_spi_rdid,
15504 .probe_timing = TIMING_ZERO,
15505 .block_erasers =
15506 {
15507 {
15508 .eraseblocks = { {4 * 1024, 4096} },
15509 .block_erase = spi_block_erase_20,
15510 }, {
15511 .eraseblocks = { {32 * 1024, 512} },
15512 .block_erase = spi_block_erase_52,
15513 }, {
15514 .eraseblocks = { {64 * 1024, 256} },
15515 .block_erase = spi_block_erase_d8,
15516 }, {
15517 .eraseblocks = { {16 * 1024 * 1024, 1} },
15518 .block_erase = spi_block_erase_60,
15519 }, {
15520 .eraseblocks = { {16 * 1024 * 1024, 1} },
15521 .block_erase = spi_block_erase_c7,
15522 }
15523 },
15524 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15525 .unlock = spi_disable_blockprotect,
15526 .write = spi_chip_write_256,
15527 .read = spi_chip_read,
15528 .voltage = {1650, 1950},
15529 },
15530
15531 {
15532 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015533 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015534 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015535 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015536 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015537 .total_size = 128,
15538 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015539 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000015540 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015541 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015542 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015543 .block_erasers =
15544 {
15545 {
15546 .eraseblocks = { {4 * 1024, 32} },
15547 .block_erase = spi_block_erase_20,
15548 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015549 .eraseblocks = { {64 * 1024, 2} },
15550 .block_erase = spi_block_erase_d8,
15551 }, {
15552 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015553 .block_erase = spi_block_erase_c7,
15554 }
15555 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015556 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015557 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015558 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015559 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015560 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015561 },
15562
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015563 {
15564 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015565 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015566 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015567 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015568 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015569 .total_size = 256,
15570 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015571 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015572 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015573 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015574 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015575 .block_erasers =
15576 {
15577 {
15578 .eraseblocks = { {4 * 1024, 64} },
15579 .block_erase = spi_block_erase_20,
15580 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015581 .eraseblocks = { {64 * 1024, 4} },
15582 .block_erase = spi_block_erase_d8,
15583 }, {
15584 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015585 .block_erase = spi_block_erase_c7,
15586 }
15587 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015588 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015589 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015590 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015591 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015592 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015593 },
15594
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015595 {
15596 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015597 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015598 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015599 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015600 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015601 .total_size = 512,
15602 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015603 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +000015604 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015605 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015606 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015607 .block_erasers =
15608 {
15609 {
15610 .eraseblocks = { {4 * 1024, 128} },
15611 .block_erase = spi_block_erase_20,
15612 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015613 .eraseblocks = { {64 * 1024, 8} },
15614 .block_erase = spi_block_erase_d8,
15615 }, {
15616 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015617 .block_erase = spi_block_erase_c7,
15618 }
15619 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015620 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015621 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015622 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015623 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015624 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015625 },
15626
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015627 {
15628 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015629 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015630 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015631 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015632 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015633 .total_size = 1024,
15634 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015635 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +000015636 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015637 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000015638 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015639 .block_erasers =
15640 {
15641 {
15642 .eraseblocks = { {4 * 1024, 256} },
15643 .block_erase = spi_block_erase_20,
15644 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015645 .eraseblocks = { {64 * 1024, 16} },
15646 .block_erase = spi_block_erase_d8,
15647 }, {
15648 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015649 .block_erase = spi_block_erase_c7,
15650 }
15651 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015652 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015653 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000015654 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015655 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015656 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000015657 },
15658
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015659 {
15660 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015661 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015662 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000015663 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015664 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000015665 .total_size = 2048,
15666 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015667 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000015668 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000015669 .probe = probe_spi_rdid,
15670 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015671 .block_erasers =
15672 {
15673 {
15674 .eraseblocks = { {4 * 1024, 512} },
15675 .block_erase = spi_block_erase_20,
15676 }, {
15677 .eraseblocks = { {32 * 1024, 64} },
15678 .block_erase = spi_block_erase_52,
15679 }, {
15680 .eraseblocks = { {64 * 1024, 32} },
15681 .block_erase = spi_block_erase_d8,
15682 }, {
15683 .eraseblocks = { {2 * 1024 * 1024, 1} },
15684 .block_erase = spi_block_erase_60,
15685 }, {
15686 .eraseblocks = { {2 * 1024 * 1024, 1} },
15687 .block_erase = spi_block_erase_c7,
15688 }
15689 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015690 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015691 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000015692 .write = spi_chip_write_256,
15693 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015694 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000015695 },
15696
15697 {
15698 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015699 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015700 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000015701 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015702 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000015703 .total_size = 4096,
15704 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015705 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000015706 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000015707 .probe = probe_spi_rdid,
15708 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015709 .block_erasers =
15710 {
15711 {
15712 .eraseblocks = { {4 * 1024, 1024} },
15713 .block_erase = spi_block_erase_20,
15714 }, {
15715 .eraseblocks = { {32 * 1024, 128} },
15716 .block_erase = spi_block_erase_52,
15717 }, {
15718 .eraseblocks = { {64 * 1024, 64} },
15719 .block_erase = spi_block_erase_d8,
15720 }, {
15721 .eraseblocks = { {4 * 1024 * 1024, 1} },
15722 .block_erase = spi_block_erase_60,
15723 }, {
15724 .eraseblocks = { {4 * 1024 * 1024, 1} },
15725 .block_erase = spi_block_erase_c7,
15726 }
15727 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015728 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015729 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000015730 .write = spi_chip_write_256,
15731 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015732 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000015733 },
15734
15735 {
15736 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015737 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015738 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000015739 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015740 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000015741 .total_size = 8192,
15742 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000015743 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner23e10b82016-01-23 16:16:49 +000015744 .tested = TEST_OK_PREW,
Zheng Bao1db2b752009-11-26 11:05:01 +000015745 .probe = probe_spi_rdid,
15746 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015747 .block_erasers =
15748 {
15749 {
15750 .eraseblocks = { {4 * 1024, 2048} },
15751 .block_erase = spi_block_erase_20,
15752 }, {
15753 .eraseblocks = { {32 * 1024, 256} },
15754 .block_erase = spi_block_erase_52,
15755 }, {
15756 .eraseblocks = { {64 * 1024, 128} },
15757 .block_erase = spi_block_erase_d8,
15758 }, {
15759 .eraseblocks = { {8 * 1024 * 1024, 1} },
15760 .block_erase = spi_block_erase_60,
15761 }, {
15762 .eraseblocks = { {8 * 1024 * 1024, 1} },
15763 .block_erase = spi_block_erase_c7,
15764 }
15765 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000015766 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000015767 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000015768 .write = spi_chip_write_256,
15769 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015770 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000015771 },
15772
15773 {
David Hendricksc9ee0ed2018-02-11 17:40:53 -080015774 .vendor = "Winbond",
15775 .name = "W25P80",
15776 .bustype = BUS_SPI,
15777 .manufacture_id = WINBOND_NEX_ID,
15778 .model_id = WINBOND_NEX_W25P80,
15779 .total_size = 1024,
15780 .page_size = 256,
15781 .feature_bits = FEATURE_WRSR_WREN,
15782 .tested = TEST_UNTESTED,
15783 .probe = probe_spi_rdid,
15784 .probe_timing = TIMING_ZERO,
15785 .block_erasers =
15786 {
15787 {
15788 .eraseblocks = { {64 * 1024, 16} },
15789 .block_erase = spi_block_erase_d8,
15790 }, {
15791 .eraseblocks = { {1024 * 1024, 1} },
15792 .block_erase = spi_block_erase_c7,
15793 }
15794 },
15795 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15796 .unlock = spi_disable_blockprotect,
15797 .write = spi_chip_write_256,
15798 .read = spi_chip_read, /* Fast read (0x0B) supported */
15799 .voltage = {2700, 3600},
15800 },
15801
15802 {
15803 .vendor = "Winbond",
15804 .name = "W25P16",
15805 .bustype = BUS_SPI,
15806 .manufacture_id = WINBOND_NEX_ID,
15807 .model_id = WINBOND_NEX_W25P16,
15808 .total_size = 2048,
15809 .page_size = 256,
15810 .feature_bits = FEATURE_WRSR_WREN,
15811 .tested = TEST_UNTESTED,
15812 .probe = probe_spi_rdid,
15813 .probe_timing = TIMING_ZERO,
15814 .block_erasers =
15815 {
15816 {
15817 .eraseblocks = { {64 * 1024, 32} },
15818 .block_erase = spi_block_erase_d8,
15819 }, {
15820 .eraseblocks = { {2048 * 1024, 1} },
15821 .block_erase = spi_block_erase_c7,
15822 }
15823 },
15824 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15825 .unlock = spi_disable_blockprotect,
15826 .write = spi_chip_write_256,
15827 .read = spi_chip_read, /* Fast read (0x0B) supported */
15828 .voltage = {2700, 3600},
15829 },
15830
15831 {
15832 .vendor = "Winbond",
15833 .name = "W25P32",
15834 .bustype = BUS_SPI,
15835 .manufacture_id = WINBOND_NEX_ID,
15836 .model_id = WINBOND_NEX_W25P32,
15837 .total_size = 4096,
15838 .page_size = 256,
15839 .feature_bits = FEATURE_WRSR_WREN,
15840 .tested = TEST_UNTESTED,
15841 .probe = probe_spi_rdid,
15842 .probe_timing = TIMING_ZERO,
15843 .block_erasers =
15844 {
15845 {
15846 .eraseblocks = { {64 * 1024, 64} },
15847 .block_erase = spi_block_erase_d8,
15848 }, {
15849 .eraseblocks = { {4096 * 1024, 1} },
15850 .block_erase = spi_block_erase_c7,
15851 }
15852 },
15853 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
15854 .unlock = spi_disable_blockprotect,
15855 .write = spi_chip_write_256,
15856 .read = spi_chip_read, /* Fast read (0x0B) supported */
15857 .voltage = {2700, 3600},
15858 },
15859 {
Zheng Bao1db2b752009-11-26 11:05:01 +000015860 .vendor = "Winbond",
Urja Rannikko2a1aaba2015-06-20 11:53:10 +000015861 .name = "W29C512A/W29EE512",
15862 .bustype = BUS_PARALLEL,
15863 .manufacture_id = WINBOND_ID,
15864 .model_id = WINBOND_W29C512A,
15865 .total_size = 64,
15866 .page_size = 128,
15867 .feature_bits = FEATURE_LONG_RESET,
15868 .tested = TEST_OK_PREW,
15869 .probe = probe_jedec,
15870 .probe_timing = 10,
15871 .block_erasers =
15872 {
15873 {
15874 .eraseblocks = { {64 * 1024, 1} },
15875 .block_erase = erase_chip_block_jedec,
15876 }
15877 },
15878 .write = write_jedec,
15879 .read = read_memmapped,
15880 .voltage = {4500, 5500},
15881 },
15882
15883 {
15884 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015885 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015886 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015887 .manufacture_id = WINBOND_ID,
15888 .model_id = WINBOND_W29C010,
15889 .total_size = 128,
15890 .page_size = 128,
15891 .feature_bits = FEATURE_LONG_RESET,
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000015892 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000015893 .probe = probe_w29ee011,
15894 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
15895 .block_erasers =
15896 {
15897 {
15898 .eraseblocks = { {128 * 1024, 1} },
15899 .block_erase = erase_chip_block_jedec,
15900 }
15901 },
15902 .write = write_jedec,
15903 .read = read_memmapped,
15904 },
15905
15906 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
15907 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000015908 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015909 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015910 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015911 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015912 .total_size = 128,
15913 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000015914 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000015915 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015916 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000015917 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015918 .block_erasers =
15919 {
15920 {
15921 .eraseblocks = { {128 * 1024, 1} },
15922 .block_erase = erase_chip_block_jedec,
15923 }
15924 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015925 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015926 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000015927 },
15928
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015929 {
15930 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000015931 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015932 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015933 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015934 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015935 .total_size = 256,
15936 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000015937 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015938 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015939 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000015940 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015941 .block_erasers =
15942 {
15943 {
15944 .eraseblocks = { {256 * 1024, 1} },
15945 .block_erase = erase_chip_block_jedec,
15946 }
15947 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015948 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015949 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015950 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000015951 },
15952
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015953 {
15954 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000015955 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000015956 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015957 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000015958 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015959 .total_size = 512,
15960 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000015961 .feature_bits = FEATURE_LONG_RESET,
15962 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015963 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000015964 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000015965 .block_erasers =
15966 {
15967 {
15968 .eraseblocks = { {512 * 1024, 1} },
15969 .block_erase = erase_chip_block_jedec,
15970 }
15971 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015972 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000015973 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000015974 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000015975 },
15976
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000015977 {
15978 .vendor = "Winbond",
Stefan Tauner03a9c3c2014-08-03 14:15:14 +000015979 .name = "W29GL032CB",
15980 .bustype = BUS_PARALLEL,
15981 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
15982 .model_id = WINBOND_W29GL032CB,
15983 .total_size = 4096,
15984 .page_size = 128 * 1024, /* actual page size is 16 */
15985 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
15986 .tested = TEST_UNTESTED,
15987 .probe = probe_jedec_29gl,
15988 .probe_timing = TIMING_ZERO,
15989 .block_erasers =
15990 {
15991 {
15992 .eraseblocks = {
15993 {8 * 1024, 8},
15994 {64 * 1024, 63},
15995 },
15996 .block_erase = erase_sector_jedec,
15997 }, {
15998 .eraseblocks = { {4 * 1024 * 1024, 1} },
15999 .block_erase = erase_chip_block_jedec,
16000 },
16001 },
16002 .write = write_jedec_1,
16003 .read = read_memmapped,
16004 .voltage = {2700, 3600},
16005 },
16006
16007 {
16008 .vendor = "Winbond",
16009 .name = "W29GL032CT",
16010 .bustype = BUS_PARALLEL,
16011 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16012 .model_id = WINBOND_W29GL032CT,
16013 .total_size = 4096,
16014 .page_size = 128 * 1024, /* actual page size is 16 */
16015 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16016 .tested = TEST_UNTESTED,
16017 .probe = probe_jedec_29gl,
16018 .probe_timing = TIMING_ZERO,
16019 .block_erasers =
16020 {
16021 {
16022 .eraseblocks = {
16023 {64 * 1024, 63},
16024 {8 * 1024, 8},
16025 },
16026 .block_erase = erase_sector_jedec,
16027 }, {
16028 .eraseblocks = { {4 * 1024 * 1024, 1} },
16029 .block_erase = erase_chip_block_jedec,
16030 },
16031 },
16032 .write = write_jedec_1,
16033 .read = read_memmapped,
16034 .voltage = {2700, 3600},
16035 },
16036
16037 {
16038 .vendor = "Winbond",
16039 .name = "W29GL032CH/L",
16040 .bustype = BUS_PARALLEL,
16041 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16042 .model_id = WINBOND_W29GL032CHL,
16043 .total_size = 4096,
16044 .page_size = 128 * 1024, /* actual page size is 16 */
16045 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16046 .tested = TEST_UNTESTED,
16047 .probe = probe_jedec_29gl,
16048 .probe_timing = TIMING_ZERO,
16049 .block_erasers =
16050 {
16051 {
16052 .eraseblocks = { {64 * 1024, 64} },
16053 .block_erase = erase_sector_jedec,
16054 }, {
16055 .eraseblocks = { {4 * 1024 * 1024, 1} },
16056 .block_erase = erase_chip_block_jedec,
16057 },
16058 },
16059 .write = write_jedec_1,
16060 .read = read_memmapped,
16061 .voltage = {2700, 3600},
16062 },
16063
16064 {
16065 .vendor = "Winbond",
16066 .name = "W29GL064CB",
16067 .bustype = BUS_PARALLEL,
16068 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16069 .model_id = WINBOND_W29GL064CB,
16070 .total_size = 8192,
16071 .page_size = 128 * 1024, /* actual page size is 16 */
16072 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16073 .tested = TEST_UNTESTED,
16074 .probe = probe_jedec_29gl,
16075 .probe_timing = TIMING_ZERO,
16076 .block_erasers =
16077 {
16078 {
16079 .eraseblocks = {
16080 {8 * 1024, 8},
16081 {64 * 1024, 127},
16082 },
16083 .block_erase = erase_sector_jedec,
16084 }, {
16085 .eraseblocks = { {8 * 1024 * 1024, 1} },
16086 .block_erase = erase_chip_block_jedec,
16087 },
16088 },
16089 .write = write_jedec_1,
16090 .read = read_memmapped,
16091 .voltage = {2700, 3600},
16092 },
16093
16094 {
16095 .vendor = "Winbond",
16096 .name = "W29GL064CT",
16097 .bustype = BUS_PARALLEL,
16098 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16099 .model_id = WINBOND_W29GL064CT,
16100 .total_size = 8192,
16101 .page_size = 128 * 1024, /* actual page size is 16 */
16102 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16103 .tested = TEST_UNTESTED,
16104 .probe = probe_jedec_29gl,
16105 .probe_timing = TIMING_ZERO,
16106 .block_erasers =
16107 {
16108 {
16109 .eraseblocks = {
16110 {64 * 1024, 127},
16111 {8 * 1024, 8},
16112 },
16113 .block_erase = erase_sector_jedec,
16114 }, {
16115 .eraseblocks = { {8 * 1024 * 1024, 1} },
16116 .block_erase = erase_chip_block_jedec,
16117 },
16118 },
16119 .write = write_jedec_1,
16120 .read = read_memmapped,
16121 .voltage = {2700, 3600},
16122 },
16123
16124 {
16125 .vendor = "Winbond",
16126 .name = "W29GL064CH/L",
16127 .bustype = BUS_PARALLEL,
16128 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16129 .model_id = WINBOND_W29GL064CHL,
16130 .total_size = 8192,
16131 .page_size = 128 * 1024, /* actual page size is 16 */
16132 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16133 .tested = TEST_UNTESTED,
16134 .probe = probe_jedec_29gl,
16135 .probe_timing = TIMING_ZERO,
16136 .block_erasers =
16137 {
16138 {
16139 .eraseblocks = { {64 * 1024, 128} },
16140 .block_erase = erase_sector_jedec,
16141 }, {
16142 .eraseblocks = { {8 * 1024 * 1024, 1} },
16143 .block_erase = erase_chip_block_jedec,
16144 },
16145 },
16146 .write = write_jedec_1,
16147 .read = read_memmapped,
16148 .voltage = {2700, 3600},
16149 },
16150
16151 {
16152 .vendor = "Winbond",
16153 .name = "W29GL128C",
16154 .bustype = BUS_PARALLEL,
16155 .manufacture_id = AMD_ID, /* WTF: "Industry Standard compatible Manufacturer ID code of 01h" */
16156 .model_id = WINBOND_W29GL128CHL,
16157 .total_size = 16384,
16158 .page_size = 128 * 1024, /* actual page size is 16 */
16159 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
16160 .tested = TEST_UNTESTED,
16161 .probe = probe_jedec_29gl,
16162 .probe_timing = TIMING_ZERO,
16163 .block_erasers =
16164 {
16165 {
16166 .eraseblocks = { {128 * 1024, 128} },
16167 .block_erase = erase_sector_jedec,
16168 }, {
16169 .eraseblocks = { {16 * 1024 * 1024, 1} },
16170 .block_erase = erase_chip_block_jedec,
16171 },
16172 },
16173 .write = write_jedec_1,
16174 .read = read_memmapped,
16175 .voltage = {2700, 3600},
16176 },
16177
16178 {
16179 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000016180 .name = "W39F010",
16181 .bustype = BUS_PARALLEL,
16182 .manufacture_id = WINBOND_ID,
16183 .model_id = WINBOND_W39F010,
16184 .total_size = 128,
16185 .page_size = 4 * 1024,
16186 .feature_bits = FEATURE_EITHER_RESET,
16187 .tested = TEST_OK_PREW,
16188 .probe = probe_jedec,
16189 .probe_timing = 10,
16190 .block_erasers =
16191 {
16192 {
16193 .eraseblocks = { {4 * 1024, 32} },
16194 .block_erase = erase_block_jedec,
16195 }, {
16196 .eraseblocks = { {128 * 1024, 1} },
16197 .block_erase = erase_chip_block_jedec,
16198 }
16199 },
16200 .printlock = printlock_w39f010,
16201 .write = write_jedec_1,
16202 .read = read_memmapped,
16203 .voltage = {4500, 5500},
16204 },
16205
16206 {
16207 .vendor = "Winbond",
16208 .name = "W39L010",
16209 .bustype = BUS_PARALLEL,
16210 .manufacture_id = WINBOND_ID,
16211 .model_id = WINBOND_W39L010,
16212 .total_size = 128,
16213 .page_size = 4 * 1024,
16214 .feature_bits = FEATURE_EITHER_RESET,
16215 .tested = TEST_UNTESTED,
16216 .probe = probe_jedec,
16217 .probe_timing = 10,
16218 .block_erasers =
16219 {
16220 {
16221 .eraseblocks = { {4 * 1024, 32} },
16222 .block_erase = erase_block_jedec,
16223 }, {
16224 .eraseblocks = { {128 * 1024, 1} },
16225 .block_erase = erase_chip_block_jedec,
16226 }
16227 },
16228 .printlock = printlock_w39l010,
16229 .write = write_jedec_1,
16230 .read = read_memmapped,
16231 .voltage = {3000, 3600},
16232 },
16233
16234 {
16235 .vendor = "Winbond",
16236 .name = "W39L020",
16237 .bustype = BUS_PARALLEL,
16238 .manufacture_id = WINBOND_ID,
16239 .model_id = WINBOND_W39L020,
16240 .total_size = 256,
16241 .page_size = 4 * 1024,
16242 .feature_bits = FEATURE_EITHER_RESET,
16243 .tested = TEST_UNTESTED,
16244 .probe = probe_jedec,
16245 .probe_timing = 10,
16246 .block_erasers =
16247 {
16248 {
16249 .eraseblocks = { {4 * 1024, 64} },
16250 .block_erase = erase_block_jedec,
16251 }, {
16252 .eraseblocks = { {64 * 1024, 4} },
16253 .block_erase = erase_sector_jedec,
16254 }, {
16255 .eraseblocks = { {256 * 1024, 1} },
16256 .block_erase = erase_chip_block_jedec,
16257 }
16258 },
16259 .printlock = printlock_w39l020,
16260 .write = write_jedec_1,
16261 .read = read_memmapped,
16262 .voltage = {3000, 3600},
16263 },
16264
16265 {
16266 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000016267 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016268 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000016269 .manufacture_id = WINBOND_ID,
16270 .model_id = WINBOND_W39L040,
16271 .total_size = 512,
16272 .page_size = 64 * 1024,
16273 .feature_bits = FEATURE_EITHER_RESET,
16274 .tested = TEST_OK_PR,
16275 .probe = probe_jedec,
16276 .probe_timing = 10,
16277 .block_erasers =
16278 {
16279 {
16280 .eraseblocks = { {4 * 1024, 128} },
16281 .block_erase = erase_block_jedec,
16282 }, {
16283 .eraseblocks = { {64 * 1024, 8} },
16284 .block_erase = erase_sector_jedec,
16285 }, {
16286 .eraseblocks = { {512 * 1024, 1} },
16287 .block_erase = erase_chip_block_jedec,
16288 }
16289 },
16290 .printlock = printlock_w39l040,
16291 .write = write_jedec_1,
16292 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016293 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000016294 },
16295
16296 {
16297 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016298 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016299 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016300 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016301 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016302 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016303 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016304 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000016305 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016306 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000016307 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016308 .block_erasers =
16309 {
16310 {
16311 .eraseblocks = { {64 * 1024, 8} },
16312 .block_erase = erase_sector_jedec,
16313 }, {
16314 .eraseblocks = { {512 * 1024, 1} },
16315 .block_erase = erase_chip_block_jedec,
16316 }
16317 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016318 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000016319 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016320 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016321 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016322 },
16323
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016324 {
16325 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016326 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016327 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016328 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016329 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016330 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016331 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016332 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000016333 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016334 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000016335 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016336 .block_erasers =
16337 {
16338 {
16339 .eraseblocks = { {64 * 1024, 8} },
16340 .block_erase = erase_sector_jedec,
16341 }, {
16342 .eraseblocks = { {512 * 1024, 1} },
16343 .block_erase = erase_chip_block_jedec,
16344 }
16345 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016346 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000016347 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016348 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016349 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016350 },
16351
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016352 {
16353 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016354 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016355 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016356 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016357 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016358 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016359 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016360 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000016361 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000016362 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016363 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016364 .block_erasers =
16365 {
16366 {
16367 .eraseblocks = { {64 * 1024, 8} },
16368 .block_erase = erase_sector_jedec,
16369 }, {
16370 .eraseblocks = { {512 * 1024, 1} },
16371 .block_erase = erase_chip_block_jedec,
16372 }
16373 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000016374 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000016375 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016376 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016377 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016378 },
16379
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016380 {
16381 .vendor = "Winbond",
16382 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016383 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016384 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016385 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016386 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016387 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000016388 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000016389 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016390 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000016391 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016392 .block_erasers =
16393 {
16394 {
16395 .eraseblocks = { {4 * 1024, 128} },
16396 .block_erase = erase_block_jedec,
16397 }, {
16398 .eraseblocks = { {64 * 1024, 8} },
16399 .block_erase = erase_sector_jedec,
16400 }, {
16401 .eraseblocks = { {512 * 1024, 1} },
16402 .block_erase = erase_chip_block_jedec,
16403 }
16404 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016405 .printlock = printlock_w39v040fa,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016406 .unlock = unlock_regspace2_uniform_64k,
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 = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016415 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016416 .manufacture_id = WINBOND_ID,
16417 .model_id = WINBOND_W39V040B,
16418 .total_size = 512,
16419 .page_size = 64 * 1024,
16420 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner0be072c2016-03-13 15:16:30 +000016421 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016422 .probe = probe_jedec,
Stefan Tauner0554ca52013-07-25 22:54:25 +000016423 .probe_timing = 10,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +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 },
16434 .printlock = printlock_w39v040fb,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016435 .unlock = unlock_regspace2_uniform_64k,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016436 .write = write_jedec_1,
16437 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016438 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016439 },
16440
16441 {
16442 .vendor = "Winbond",
16443 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016444 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016445 .manufacture_id = WINBOND_ID,
16446 .model_id = WINBOND_W39V040C,
16447 .total_size = 512,
16448 .page_size = 64 * 1024,
16449 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000016450 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016451 .probe = probe_jedec,
16452 .probe_timing = 10,
16453 .block_erasers =
16454 {
16455 {
16456 .eraseblocks = { {64 * 1024, 8} },
16457 .block_erase = erase_sector_jedec,
16458 }, {
16459 .eraseblocks = { {512 * 1024, 1} },
16460 .block_erase = erase_chip_block_jedec,
16461 }
16462 },
16463 .printlock = printlock_w39v040fc,
16464 .write = write_jedec_1,
16465 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016466 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016467 },
16468
16469 {
16470 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016471 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016472 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016473 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016474 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016475 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000016476 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016477 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000016478 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016479 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000016480 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016481 .block_erasers =
16482 {
16483 {
16484 .eraseblocks = { {64 * 1024, 16} },
16485 .block_erase = erase_sector_jedec,
16486 }, {
16487 .eraseblocks = { {1024 * 1024, 1} },
16488 .block_erase = erase_chip_block_jedec,
16489 }
16490 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016491 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000016492 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016493 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016494 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016495 },
16496
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016497 {
16498 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000016499 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016500 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016501 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016502 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016503 .total_size = 256,
16504 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016505 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000016506 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016507 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000016508 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016509 .block_erasers =
16510 {
16511 {
16512 .eraseblocks = {
16513 {128 * 1024, 1},
16514 {96 * 1024, 1},
16515 {8 * 1024, 2},
16516 {16 * 1024, 1},
16517 },
16518 .block_erase = erase_sector_jedec,
16519 }, {
16520 .eraseblocks = { {256 * 1024, 1} },
16521 .block_erase = erase_chip_block_jedec,
16522 }
16523 },
Sean Nelson35727f72010-01-28 23:55:12 +000016524 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016525 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016526 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000016527 },
16528
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016529 {
16530 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016531 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016532 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016533 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016534 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016535 .total_size = 256,
16536 .page_size = 128,
16537 .feature_bits = FEATURE_EITHER_RESET,
16538 .tested = TEST_OK_PROBE,
16539 .probe = probe_jedec,
16540 .probe_timing = 10,
16541 .block_erasers =
16542 {
16543 {
16544 .eraseblocks = { {256 * 1024, 1} },
16545 .block_erase = erase_chip_block_jedec,
16546 }
16547 },
16548 .write = write_jedec_1,
16549 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000016550 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000016551 },
16552
16553 {
16554 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016555 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016556 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016557 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016558 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016559 .total_size = 256,
16560 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000016561 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016562 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016563 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000016564 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016565 .block_erasers =
16566 {
16567 {
16568 .eraseblocks = {
16569 {64 * 1024, 3},
16570 {32 * 1024, 1},
16571 {8 * 1024, 2},
16572 {16 * 1024, 1},
16573 },
16574 .block_erase = erase_sector_jedec,
16575 }, {
16576 .eraseblocks = { {256 * 1024, 1} },
16577 .block_erase = erase_chip_block_jedec,
16578 }
16579 },
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",
16587 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016588 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016589 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016590 .model_id = WINBOND_W49V002FA,
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 Taunereb582572012-09-21 12:52:50 +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 {64 * 1024, 3},
16602 {32 * 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 = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000016615 },
16616
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016617 {
16618 .vendor = "Winbond",
16619 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016620 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016621 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016622 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016623 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000016624 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016625 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner23e10b82016-01-23 16:16:49 +000016626 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000016627 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016628 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016629 .block_erasers =
16630 {
16631 {
Stefan Tauner6697f712014-08-06 15:09:15 +000016632 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016633 .block_erase = erase_sector_jedec,
16634 }, {
16635 .eraseblocks = { {1024 * 1024, 1} },
16636 .block_erase = erase_chip_block_jedec,
16637 }
16638 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016639 .printlock = printlock_w39v080fa,
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +000016640 .unlock = unlock_regspace2_uniform_64k,
Sean Nelson35727f72010-01-28 23:55:12 +000016641 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016642 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016643 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000016644 },
16645
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016646 {
16647 .vendor = "Winbond",
16648 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016649 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016650 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000016651 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016652 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000016653 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000016654 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016655 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000016656 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016657 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016658 .block_erasers =
16659 {
16660 {
Stefan Tauner6697f712014-08-06 15:09:15 +000016661 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000016662 .block_erase = erase_sector_jedec,
16663 }, {
16664 .eraseblocks = { {512 * 1024, 1} },
16665 .block_erase = erase_chip_block_jedec,
16666 }
16667 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000016668 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +000016669 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016670 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000016671 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000016672 },
nybashcbb46e22018-02-11 17:53:49 -080016673
16674 {
16675 .vendor = "Zetta Device",
David Hendricksa72d5a92018-02-11 17:58:44 -080016676 .name = "ZD25D20",
16677 .bustype = BUS_SPI,
16678 .manufacture_id = ZETTADEVICE_ID,
16679 .model_id = ZETTADEVICE_ZD25D20,
16680 .total_size = 256,
16681 .page_size = 256,
16682 .feature_bits = FEATURE_WRSR_WREN,
16683 .tested = TEST_UNTESTED,
16684 .probe = probe_spi_rdid,
16685 .probe_timing = TIMING_ZERO,
16686 .block_erasers =
16687 {
16688 {
16689 .eraseblocks = { {4 * 1024, 64} },
16690 .block_erase = spi_block_erase_20,
16691 }, {
16692 .eraseblocks = { {32 * 1024, 8} },
16693 .block_erase = spi_block_erase_52,
16694 }, {
16695 .eraseblocks = { {64 * 1024, 4} },
16696 .block_erase = spi_block_erase_d8,
16697 }, {
16698 .eraseblocks = { {256 * 1024, 1} },
16699 .block_erase = spi_block_erase_60,
16700 }, {
16701 .eraseblocks = { {256 * 1024, 1} },
16702 .block_erase = spi_block_erase_c7,
16703 }
16704 },
16705 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16706 .unlock = spi_disable_blockprotect,
16707 .write = spi_chip_write_256,
16708 .read = spi_chip_read,
16709 .voltage = {2700, 3600},
16710 },
16711
16712 {
16713 .vendor = "Zetta Device",
nybashcbb46e22018-02-11 17:53:49 -080016714 .name = "ZD25D40",
16715 .bustype = BUS_SPI,
16716 .manufacture_id = ZETTADEVICE_ID,
16717 .model_id = ZETTADEVICE_ZD25D40,
16718 .total_size = 512,
16719 .page_size = 256,
16720 .feature_bits = FEATURE_WRSR_WREN,
16721 .tested = TEST_UNTESTED,
16722 .probe = probe_spi_rdid,
16723 .probe_timing = TIMING_ZERO,
16724 .block_erasers =
16725 {
16726 {
16727 .eraseblocks = { {4 * 1024, 128} },
16728 .block_erase = spi_block_erase_20,
16729 }, {
16730 .eraseblocks = { {32 * 1024, 16} },
16731 .block_erase = spi_block_erase_52,
16732 }, {
16733 .eraseblocks = { {64 * 1024, 8} },
16734 .block_erase = spi_block_erase_d8,
16735 }, {
16736 .eraseblocks = { {512 * 1024, 1} },
16737 .block_erase = spi_block_erase_60,
16738 }, {
16739 .eraseblocks = { {512 * 1024, 1} },
16740 .block_erase = spi_block_erase_c7,
16741 }
16742 },
16743 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
16744 .unlock = spi_disable_blockprotect,
16745 .write = spi_chip_write_256,
16746 .read = spi_chip_read,
16747 .voltage = {2700, 3600},
16748 },
16749
Stefan Taunerac1b4c82012-02-17 14:51:04 +000016750 {
16751 .vendor = "Unknown",
16752 .name = "SFDP-capable chip",
16753 .bustype = BUS_SPI,
16754 .manufacture_id = GENERIC_MANUF_ID,
16755 .model_id = SFDP_DEVICE_ID,
16756 /* We present our own "report this" text hence we do not
16757 * want the default "This flash part has status UNTESTED..."
16758 * text to be printed. */
16759 .tested = TEST_OK_PREW,
16760 .probe = probe_spi_sfdp,
16761 .unlock = spi_disable_blockprotect, /* is this safe? */
16762 .read = spi_chip_read,
16763 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000016764 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +000016765 /* Everything below will be set by the probing function. */
16766 .write = NULL,
16767 .total_size = 0,
16768 .page_size = 0,
16769 .feature_bits = 0,
16770 .block_erasers = {},
16771 },
FENG yu ningff692fb2008-12-08 18:15:10 +000016772
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016773 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000016774 .vendor = "Programmer",
16775 .name = "Opaque flash chip",
16776 .bustype = BUS_PROG,
16777 .manufacture_id = PROGMANUF_ID,
16778 .model_id = PROGDEV_ID,
16779 .total_size = 0,
16780 .page_size = 256,
16781 /* probe is assumed to work, rest will be filled in by probe */
16782 .tested = TEST_OK_PROBE,
16783 .probe = probe_opaque,
16784 /* eraseblock sizes will be set by the probing function */
16785 .block_erasers =
16786 {
16787 {
16788 .block_erase = erase_opaque,
16789 }
16790 },
16791 .write = write_opaque,
16792 .read = read_opaque,
16793 },
16794
16795 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000016796 .vendor = "AMIC",
16797 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016798 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000016799 .manufacture_id = AMIC_ID,
16800 .model_id = GENERIC_DEVICE_ID,
16801 .total_size = 0,
16802 .page_size = 256,
16803 .tested = TEST_BAD_PREW,
16804 .probe = probe_spi_rdid4,
16805 .probe_timing = TIMING_ZERO,
16806 .write = NULL,
16807 .read = NULL,
16808 },
16809
16810 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016811 .vendor = "Atmel",
16812 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016813 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016814 .manufacture_id = ATMEL_ID,
16815 .model_id = GENERIC_DEVICE_ID,
16816 .total_size = 0,
16817 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016818 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016819 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016820 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016821 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016822 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016823 },
16824
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016825 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000016826 .vendor = "Eon",
16827 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016828 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016829 .manufacture_id = EON_ID_NOPREFIX,
16830 .model_id = GENERIC_DEVICE_ID,
16831 .total_size = 0,
16832 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016833 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016834 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016835 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016836 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016837 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016838 },
16839
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016840 {
16841 .vendor = "Macronix",
16842 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016843 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000016844 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016845 .model_id = GENERIC_DEVICE_ID,
16846 .total_size = 0,
16847 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016848 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016849 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016850 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016851 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016852 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016853 },
16854
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016855 {
16856 .vendor = "PMC",
16857 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016858 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016859 .manufacture_id = PMC_ID,
16860 .model_id = GENERIC_DEVICE_ID,
16861 .total_size = 0,
16862 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016863 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016864 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016865 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016866 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016867 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016868 },
16869
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016870 {
16871 .vendor = "SST",
16872 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016873 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016874 .manufacture_id = SST_ID,
16875 .model_id = GENERIC_DEVICE_ID,
16876 .total_size = 0,
16877 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016878 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016879 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016880 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016881 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016882 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016883 },
16884
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016885 {
16886 .vendor = "ST",
16887 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016888 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016889 .manufacture_id = ST_ID,
16890 .model_id = GENERIC_DEVICE_ID,
16891 .total_size = 0,
16892 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000016893 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016894 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000016895 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000016896 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000016897 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000016898 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000016899
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016900 {
Sean Nelson118e1d62009-11-24 02:08:11 +000016901 .vendor = "Sanyo",
16902 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016903 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000016904 .manufacture_id = SANYO_ID,
16905 .model_id = GENERIC_DEVICE_ID,
16906 .total_size = 0,
16907 .page_size = 256,
16908 .tested = TEST_BAD_PREW,
16909 .probe = probe_spi_rdid,
16910 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000016911 .write = NULL,
16912 .read = NULL,
16913 },
16914
16915 {
Stefan Taunereb582572012-09-21 12:52:50 +000016916 .vendor = "Winbond",
16917 .name = "unknown Winbond (ex Nexcom) SPI chip",
16918 .bustype = BUS_SPI,
16919 .manufacture_id = WINBOND_NEX_ID,
16920 .model_id = GENERIC_DEVICE_ID,
16921 .total_size = 0,
16922 .page_size = 256,
16923 .tested = TEST_BAD_PREW,
16924 .probe = probe_spi_rdid,
16925 .probe_timing = TIMING_ZERO,
16926 .write = NULL,
16927 .read = NULL,
16928 },
16929
16930 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016931 .vendor = "Generic",
16932 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016933 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016934 .manufacture_id = GENERIC_MANUF_ID,
16935 .model_id = GENERIC_DEVICE_ID,
16936 .total_size = 0,
16937 .page_size = 256,
16938 .tested = TEST_BAD_PREW,
16939 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016940 .write = NULL,
16941 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000016942
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016943 {
16944 .vendor = "Generic",
16945 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000016946 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016947 .manufacture_id = GENERIC_MANUF_ID,
16948 .model_id = GENERIC_DEVICE_ID,
16949 .total_size = 0,
16950 .page_size = 256,
16951 .tested = TEST_BAD_PREW,
16952 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000016953 .write = NULL,
16954 },
16955
Stefan Tauner96658be2014-05-26 22:05:31 +000016956 {0}
Stephan Guilloux72cf5652009-04-21 01:46:07 +000016957};
Stefan Tauner96658be2014-05-26 22:05:31 +000016958
16959const unsigned int flashchips_size = ARRAY_SIZE(flashchips);