blob: 6ec3749954324730e3fa0fddb5ec5fdbebc8243a [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp
Stefan Reinauer4c390c82008-07-02 13:33:09 +00006 * Copyright (C) 2005-2008 coresystems GmbH <stepan@openbios.org>
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00007 * Copyright (C) 2006-2009 Carl-Daniel Hailfinger
Sean Nelsonc57a9202010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Uwe Hermannd1107642007-08-29 17:52:32 +00009 *
Stefan Reinauerce532972007-05-23 17:20:56 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Ollie Lho184a4042005-11-26 21:55:36 +000014 *
Stefan Reinauerce532972007-05-23 17:20:56 +000015 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Ollie Lho184a4042005-11-26 21:55:36 +000019 *
Stefan Reinauerce532972007-05-23 17:20:56 +000020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Uwe Hermannd1107642007-08-29 17:52:32 +000022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000023 */
24
25#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000026#include "flashchips.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000027#include "chipdrivers.h"
Ollie Lho184a4042005-11-26 21:55:36 +000028
Uwe Hermannfc425e82008-03-16 02:06:25 +000029/**
Uwe Hermanna9720402009-05-21 15:55:46 +000030 * List of supported flash chips.
Uwe Hermannfc425e82008-03-16 02:06:25 +000031 *
32 * Please keep the list sorted by vendor name and chip name, so that
33 * the output of 'flashrom -L' is alphabetically sorted.
34 */
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +000035const struct flashchip flashchips[] = {
Uwe Hermannfc425e82008-03-16 02:06:25 +000036
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000037 /*
38 * .vendor = Vendor name
39 * .name = Chip name
40 * .bustype = Supported flash bus types (Parallel, LPC...)
41 * .manufacture_id = Manufacturer chip ID
42 * .model_id = Model chip ID
43 * .total_size = Total size in (binary) kbytes
44 * .page_size = Page or eraseblock(?) size in bytes
45 * .tested = Test status
46 * .probe = Probe function
47 * .probe_timing = Probe function delay
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +000048 * .block_erasers[] = Array of erase layouts and erase functions
49 * {
50 * .eraseblocks[] = Array of { blocksize, blockcount }
51 * .block_erase = Block erase function
52 * }
Sean Nelson6e0b9122010-02-19 00:52:10 +000053 * .printlock = Chip lock status function
54 * .unlock = Chip unlock function
Carl-Daniel Hailfinger21eedec2009-07-23 12:42:01 +000055 * .write = Chip write function
56 * .read = Chip read function
Steven Zakuleccbe370e2011-06-03 07:26:31 +000057 * .voltage = Voltage range in millivolt
FENG yu ningff692fb2008-12-08 18:15:10 +000058 */
59
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000060 {
61 .vendor = "AMD",
Uwe Hermanna8b37272009-06-19 15:54:39 +000062 .name = "Am29F010A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000063 .bustype = BUS_PARALLEL,
Uwe Hermanna8b37272009-06-19 15:54:39 +000064 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000065 .model_id = AMD_AM29F010B, /* Same as Am29F010A */
Uwe Hermanna8b37272009-06-19 15:54:39 +000066 .total_size = 128,
67 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000068 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +000069 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +000070 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000071 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000072 .block_erasers =
73 {
74 {
75 .eraseblocks = { {16 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +000076 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000077 }, {
78 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +000079 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +000080 },
81 },
Sean Nelson35727f72010-01-28 23:55:12 +000082 .write = write_jedec_1,
Uwe Hermanna8b37272009-06-19 15:54:39 +000083 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000084 .voltage = {4500, 5500},
Uwe Hermanna8b37272009-06-19 15:54:39 +000085 },
86
87 {
88 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000089 .name = "Am29F002(N)BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000090 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000091 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000092 .model_id = AMD_AM29F002BB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000093 .total_size = 256,
94 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000095 .feature_bits = FEATURE_SHORT_RESET | FEATURE_ADDR_2AA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000096 .tested = TEST_UNTESTED,
97 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000098 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +000099 .block_erasers =
100 {
101 {
102 .eraseblocks = {
103 {16 * 1024, 1},
104 {8 * 1024, 2},
105 {32 * 1024, 1},
106 {64 * 1024, 3},
107 },
108 .block_erase = erase_sector_jedec,
109 }, {
110 .eraseblocks = { {256 * 1024, 1} },
111 .block_erase = erase_chip_block_jedec,
112 },
113 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000114 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000115 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000116 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +0000117 },
118
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000119 {
120 .vendor = "AMD",
121 .name = "Am29F002(N)BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000122 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000123 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000124 .model_id = AMD_AM29F002BT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000125 .total_size = 256,
126 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +0000127 .feature_bits = FEATURE_EITHER_RESET | FEATURE_ADDR_2AA,
128 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000129 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000130 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000131 .block_erasers =
132 {
133 {
134 .eraseblocks = {
135 {64 * 1024, 3},
136 {32 * 1024, 1},
137 {8 * 1024, 2},
138 {16 * 1024, 1},
139 },
140 .block_erase = erase_sector_jedec,
141 }, {
142 .eraseblocks = { {256 * 1024, 1} },
143 .block_erase = erase_chip_block_jedec,
144 },
145 },
Michael Karcher1c296ca2009-11-27 17:49:42 +0000146 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000147 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000148 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +0000149 },
150
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000151 {
152 .vendor = "AMD",
153 .name = "Am29F016D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000154 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000155 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000156 .model_id = AMD_AM29F016D,
Sean Nelson72a9a022009-12-22 22:15:33 +0000157 .total_size = 2 * 1024,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000158 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000159 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000160 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000161 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000162 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000163 .block_erasers =
164 {
165 {
166 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson35727f72010-01-28 23:55:12 +0000167 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000168 }, {
169 .eraseblocks = { {2048 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000170 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000171 },
172 },
Sean Nelson35727f72010-01-28 23:55:12 +0000173 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000174 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000175 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000176 },
177
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000178 {
179 .vendor = "AMD",
180 .name = "Am29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000181 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000182 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000183 .model_id = AMD_AM29F040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000184 .total_size = 512,
185 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000186 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
187 .tested = TEST_UNTESTED,
188 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000189 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000190 .block_erasers =
191 {
192 {
193 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000194 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000195 }, {
196 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000197 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000198 },
199 },
Sean Nelson35727f72010-01-28 23:55:12 +0000200 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000201 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000202 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +0000203 },
204
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000205 {
206 .vendor = "AMD",
Peter Stuge8440cc02009-01-25 23:55:12 +0000207 .name = "Am29F080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000208 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000209 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000210 .model_id = AMD_AM29F080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000211 .total_size = 1024,
212 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000213 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +0000214 .tested = TEST_UNTESTED,
215 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +0000216 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000217 .block_erasers =
218 {
219 {
220 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000221 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000222 }, {
223 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000224 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000225 },
226 },
Sean Nelson35727f72010-01-28 23:55:12 +0000227 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000228 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000229 .voltage = {4500, 5500},
Peter Stuge8440cc02009-01-25 23:55:12 +0000230 },
231
232 {
233 .vendor = "AMD",
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000234 .name = "Am29LV001BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000235 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000236 .manufacture_id = AMD_ID,
237 .model_id = AMD_AM29LV001BB,
238 .total_size = 128,
239 .page_size = 64 * 1024, /* unused */
240 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
241 .tested = TEST_OK_PREW,
242 .probe = probe_jedec,
243 .probe_timing = TIMING_ZERO,
244 .block_erasers =
245 {
246 {
247 .eraseblocks = {
248 {8 * 1024, 1},
249 {4 * 1024, 2},
250 {16 * 1024, 7},
251 },
252 .block_erase = erase_sector_jedec,
253 }, {
254 .eraseblocks = { {128 * 1024, 1} },
255 .block_erase = erase_chip_block_jedec,
256 },
257 },
258 .write = write_jedec_1,
259 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000260 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000261 },
262
263 {
264 .vendor = "AMD",
265 .name = "Am29LV001BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000266 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000267 .manufacture_id = AMD_ID,
268 .model_id = AMD_AM29LV001BT,
269 .total_size = 128,
270 .page_size = 64 * 1024, /* unused */
271 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
272 .tested = TEST_UNTESTED,
273 .probe = probe_jedec,
274 .probe_timing = TIMING_ZERO,
275 .block_erasers =
276 {
277 {
278 .eraseblocks = {
279 {16 * 1024, 7},
280 {4 * 1024, 2},
281 {8 * 1024, 1},
282 },
283 .block_erase = erase_sector_jedec,
284 }, {
285 .eraseblocks = { {128 * 1024, 1} },
286 .block_erase = erase_chip_block_jedec,
287 },
288 },
289 .write = write_jedec_1,
290 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000291 .voltage = {3000, 3600}, /* 3.0-3.6V for type -45R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000292 },
293
294 {
295 .vendor = "AMD",
296 .name = "Am29LV002BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000297 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000298 .manufacture_id = AMD_ID,
299 .model_id = AMD_AM29LV002BB,
300 .total_size = 256,
301 .page_size = 64 * 1024, /* unused */
302 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
303 .tested = TEST_UNTESTED,
304 .probe = probe_jedec,
305 .probe_timing = TIMING_ZERO,
306 .block_erasers =
307 {
308 {
309 .eraseblocks = {
310 {16 * 1024, 1},
311 {8 * 1024, 2},
312 {32 * 1024, 1},
313 {64 * 1024, 3},
314 },
315 .block_erase = erase_sector_jedec,
316 }, {
317 .eraseblocks = { {256 * 1024, 1} },
318 .block_erase = erase_chip_block_jedec,
319 },
320 },
321 .write = write_jedec_1,
322 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000323 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000324 },
325
326 {
327 .vendor = "AMD",
328 .name = "Am29LV002BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000329 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000330 .manufacture_id = AMD_ID,
331 .model_id = AMD_AM29LV002BT,
332 .total_size = 256,
333 .page_size = 64 * 1024, /* unused */
334 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
335 .tested = TEST_UNTESTED,
336 .probe = probe_jedec,
337 .probe_timing = TIMING_ZERO,
338 .block_erasers =
339 {
340 {
341 .eraseblocks = {
342 {64 * 1024, 3},
343 {32 * 1024, 1},
344 {8 * 1024, 2},
345 {16 * 1024, 1},
346 },
347 .block_erase = erase_sector_jedec,
348 }, {
349 .eraseblocks = { {256 * 1024, 1} },
350 .block_erase = erase_chip_block_jedec,
351 },
352 },
353 .write = write_jedec_1,
354 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000355 .voltage = {3000, 3600}, /* 3.0-3.6V for type -55, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000356 },
357
358 {
359 .vendor = "AMD",
360 .name = "Am29LV004BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000361 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000362 .manufacture_id = AMD_ID,
363 .model_id = AMD_AM29LV004BB,
364 .total_size = 512,
365 .page_size = 64 * 1024, /* unused */
366 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
367 .tested = TEST_UNTESTED,
368 .probe = probe_jedec,
369 .probe_timing = TIMING_ZERO,
370 .block_erasers =
371 {
372 {
373 .eraseblocks = {
374 {16 * 1024, 1},
375 {8 * 1024, 2},
376 {32 * 1024, 1},
377 {64 * 1024, 7},
378 },
379 .block_erase = erase_sector_jedec,
380 }, {
381 .eraseblocks = { {512 * 1024, 1} },
382 .block_erase = erase_chip_block_jedec,
383 },
384 },
385 .write = write_jedec_1,
386 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000387 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000388 },
389
390 {
391 .vendor = "AMD",
392 .name = "Am29LV004BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000393 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000394 .manufacture_id = AMD_ID,
395 .model_id = AMD_AM29LV004BT,
396 .total_size = 512,
397 .page_size = 64 * 1024, /* unused */
398 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
399 .tested = TEST_UNTESTED,
400 .probe = probe_jedec,
401 .probe_timing = TIMING_ZERO,
402 .block_erasers =
403 {
404 {
405 .eraseblocks = {
406 {64 * 1024, 7},
407 {32 * 1024, 1},
408 {8 * 1024, 2},
409 {16 * 1024, 1},
410 },
411 .block_erase = erase_sector_jedec,
412 }, {
413 .eraseblocks = { {512 * 1024, 1} },
414 .block_erase = erase_chip_block_jedec,
415 },
416 },
417 .write = write_jedec_1,
418 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000419 .voltage = {2700, 3600},
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000420 },
421
422 {
423 .vendor = "AMD",
424 .name = "Am29LV008BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000425 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000426 .manufacture_id = AMD_ID,
427 .model_id = AMD_AM29LV008BB,
428 .total_size = 1024,
429 .page_size = 64 * 1024, /* unused */
430 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Uwe Hermann09ebd522011-08-25 22:54:23 +0000431 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000432 .probe = probe_jedec,
433 .probe_timing = TIMING_ZERO,
434 .block_erasers =
435 {
436 {
437 .eraseblocks = {
438 {16 * 1024, 1},
439 {8 * 1024, 2},
440 {32 * 1024, 1},
441 {64 * 1024, 15},
442 },
443 .block_erase = erase_sector_jedec,
444 }, {
445 .eraseblocks = { {1024 * 1024, 1} },
446 .block_erase = erase_chip_block_jedec,
447 },
448 },
449 .write = write_jedec_1,
450 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000451 .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000452 },
453
454 {
455 .vendor = "AMD",
456 .name = "Am29LV008BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000457 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000458 .manufacture_id = AMD_ID,
459 .model_id = AMD_AM29LV008BT,
460 .total_size = 1024,
461 .page_size = 64 * 1024, /* unused */
462 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
463 .tested = TEST_UNTESTED,
464 .probe = probe_jedec,
465 .probe_timing = TIMING_ZERO,
466 .block_erasers =
467 {
468 {
469 .eraseblocks = {
470 {64 * 1024, 15},
471 {32 * 1024, 1},
472 {8 * 1024, 2},
473 {16 * 1024, 1},
474 },
475 .block_erase = erase_sector_jedec,
476 }, {
477 .eraseblocks = { {1024 * 1024, 1} },
478 .block_erase = erase_chip_block_jedec,
479 },
480 },
481 .write = write_jedec_1,
482 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000483 .voltage = {3000, 3600} /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Carl-Daniel Hailfingerc753e5b2011-02-05 12:11:17 +0000484 },
485
486 {
487 .vendor = "AMD",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000488 .name = "Am29LV040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000489 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000490 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000491 .model_id = AMD_AM29LV040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000492 .total_size = 512,
493 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +0000494 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000495 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +0000496 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000497 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000498 .block_erasers =
499 {
500 {
501 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson35727f72010-01-28 23:55:12 +0000502 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000503 }, {
504 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000505 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000506 },
507 },
Sean Nelson35727f72010-01-28 23:55:12 +0000508 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000509 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000510 .voltage = {3000, 3600}, /* 3.0-3.6V for type -60R, others 2.7-3.6V*/
FENG yu ningff692fb2008-12-08 18:15:10 +0000511 },
512
Stephan Guilloux5c5b5252009-01-08 03:40:17 +0000513 {
Peter Stuge8440cc02009-01-25 23:55:12 +0000514 .vendor = "AMD",
515 .name = "Am29LV081B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000516 .bustype = BUS_PARALLEL,
Mateusz Murawski5bae4382009-06-02 00:38:14 +0000517 .manufacture_id = AMD_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000518 .model_id = AMD_AM29LV080B,
Peter Stuge8440cc02009-01-25 23:55:12 +0000519 .total_size = 1024,
520 .page_size = 64 * 1024,
David Borg204f4652010-12-04 03:26:40 +0000521 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET, /* datasheet specifies address as don't care */
Peter Stuge8440cc02009-01-25 23:55:12 +0000522 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +0000523 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +0000524 .probe_timing = TIMING_ZERO,
Sean Nelson72a9a022009-12-22 22:15:33 +0000525 .block_erasers =
526 {
527 {
528 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson35727f72010-01-28 23:55:12 +0000529 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000530 }, {
531 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +0000532 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +0000533 },
534 },
Sean Nelson35727f72010-01-28 23:55:12 +0000535 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000536 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000537 .voltage = {3000, 3600}, /* 3.0-3.6V for type -70R, others 2.7-3.6V */
Peter Stuge8440cc02009-01-25 23:55:12 +0000538 },
539
540 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000541 .vendor = "AMIC",
542 .name = "A25L05PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000543 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000544 .manufacture_id = AMIC_ID,
545 .model_id = AMIC_A25L05PT,
546 .total_size = 64,
547 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000548 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000549 .tested = TEST_UNTESTED,
550 .probe = probe_spi_rdid4,
551 .probe_timing = TIMING_ZERO,
552 .block_erasers =
553 {
554 {
555 .eraseblocks = {
556 {32 * 1024, 1},
557 {16 * 1024, 1},
558 {8 * 1024, 1},
559 {4 * 1024, 2},
560 },
561 .block_erase = spi_block_erase_d8,
562 }, {
563 .eraseblocks = { {64 * 1024, 1} },
564 .block_erase = spi_block_erase_c7,
565 }
566 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000567 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000568 .unlock = spi_disable_blockprotect,
569 .write = spi_chip_write_256,
570 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000571 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000572 },
573
574 {
575 .vendor = "AMIC",
576 .name = "A25L05PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000577 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000578 .manufacture_id = AMIC_ID,
579 .model_id = AMIC_A25L05PU,
580 .total_size = 64,
581 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000582 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000583 .tested = TEST_UNTESTED,
584 .probe = probe_spi_rdid4,
585 .probe_timing = TIMING_ZERO,
586 .block_erasers =
587 {
588 {
589 .eraseblocks = {
590 {4 * 1024, 2},
591 {8 * 1024, 1},
592 {16 * 1024, 1},
593 {32 * 1024, 1},
594 },
595 .block_erase = spi_block_erase_d8,
596 }, {
597 .eraseblocks = { {64 * 1024, 1} },
598 .block_erase = spi_block_erase_c7,
599 }
600 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000601 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000602 .unlock = spi_disable_blockprotect,
603 .write = spi_chip_write_256,
604 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +0000605 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000606 },
607
608 {
609 .vendor = "AMIC",
610 .name = "A25L10PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000611 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000612 .manufacture_id = AMIC_ID,
613 .model_id = AMIC_A25L10PT,
614 .total_size = 128,
615 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000616 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000617 .tested = TEST_UNTESTED,
618 .probe = probe_spi_rdid4,
619 .probe_timing = TIMING_ZERO,
620 .block_erasers =
621 {
622 {
623 .eraseblocks = {
624 {64 * 1024, 1},
625 {32 * 1024, 1},
626 {16 * 1024, 1},
627 {8 * 1024, 1},
628 {4 * 1024, 2},
629 },
630 .block_erase = spi_block_erase_d8,
631 }, {
632 .eraseblocks = { {128 * 1024, 1} },
633 .block_erase = spi_block_erase_c7,
634 }
635 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000636 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000637 .unlock = spi_disable_blockprotect,
638 .write = spi_chip_write_256,
639 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000640 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000641 },
642
643 {
644 .vendor = "AMIC",
645 .name = "A25L10PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000646 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000647 .manufacture_id = AMIC_ID,
648 .model_id = AMIC_A25L10PU,
649 .total_size = 128,
650 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000651 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000652 .tested = TEST_UNTESTED,
653 .probe = probe_spi_rdid4,
654 .probe_timing = TIMING_ZERO,
655 .block_erasers =
656 {
657 {
658 .eraseblocks = {
659 {4 * 1024, 2},
660 {8 * 1024, 1},
661 {16 * 1024, 1},
662 {32 * 1024, 1},
663 {64 * 1024, 1},
664 },
665 .block_erase = spi_block_erase_d8,
666 }, {
667 .eraseblocks = { {128 * 1024, 1} },
668 .block_erase = spi_block_erase_c7,
669 }
670 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000671 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000672 .unlock = spi_disable_blockprotect,
673 .write = spi_chip_write_256,
674 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000675 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000676 },
677
678 {
679 .vendor = "AMIC",
680 .name = "A25L20PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000681 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000682 .manufacture_id = AMIC_ID,
683 .model_id = AMIC_A25L20PT,
684 .total_size = 256,
685 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000686 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000687 .tested = TEST_UNTESTED,
688 .probe = probe_spi_rdid4,
689 .probe_timing = TIMING_ZERO,
690 .block_erasers =
691 {
692 {
693 .eraseblocks = {
694 {64 * 1024, 3},
695 {32 * 1024, 1},
696 {16 * 1024, 1},
697 {8 * 1024, 1},
698 {4 * 1024, 2},
699 },
700 .block_erase = spi_block_erase_d8,
701 }, {
702 .eraseblocks = { {256 * 1024, 1} },
703 .block_erase = spi_block_erase_c7,
704 }
705 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000706 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000707 .unlock = spi_disable_blockprotect,
708 .write = spi_chip_write_256,
709 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000710 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000711 },
712
713 {
714 .vendor = "AMIC",
715 .name = "A25L20PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000716 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000717 .manufacture_id = AMIC_ID,
718 .model_id = AMIC_A25L20PU,
719 .total_size = 256,
720 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000721 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000722 .tested = TEST_UNTESTED,
723 .probe = probe_spi_rdid4,
724 .probe_timing = TIMING_ZERO,
725 .block_erasers =
726 {
727 {
728 .eraseblocks = {
729 {4 * 1024, 2},
730 {8 * 1024, 1},
731 {16 * 1024, 1},
732 {32 * 1024, 1},
733 {64 * 1024, 3},
734 },
735 .block_erase = spi_block_erase_d8,
736 }, {
737 .eraseblocks = { {256 * 1024, 1} },
738 .block_erase = spi_block_erase_c7,
739 }
740 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000741 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000742 .unlock = spi_disable_blockprotect,
743 .write = spi_chip_write_256,
744 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000745 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000746 },
747
748 /* The A25L40P{T,U} chips are distinguished by their
749 * erase block layouts, but without any distinction in RDID.
750 * This inexplicable quirk was verified by Rudolf Marek
751 * and discussed on the flashrom mailing list on 2010-07-12.
752 */
753 {
754 .vendor = "AMIC",
755 .name = "A25L40PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000756 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000757 .manufacture_id = AMIC_ID,
758 .model_id = AMIC_A25L40PT,
759 .total_size = 512,
760 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000761 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000762 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000763 .probe = probe_spi_rdid4,
764 .probe_timing = TIMING_ZERO,
765 .block_erasers =
766 {
767 {
768 .eraseblocks = {
769 {64 * 1024, 7},
770 {32 * 1024, 1},
771 {16 * 1024, 1},
772 {8 * 1024, 1},
773 {4 * 1024, 2},
774 },
775 .block_erase = spi_block_erase_d8,
776 }, {
777 .eraseblocks = { {512 * 1024, 1} },
778 .block_erase = spi_block_erase_c7,
779 }
780 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000781 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000782 .unlock = spi_disable_blockprotect,
783 .write = spi_chip_write_256,
784 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000785 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000786 },
787
788 {
789 .vendor = "AMIC",
790 .name = "A25L40PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000791 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000792 .manufacture_id = AMIC_ID,
793 .model_id = AMIC_A25L40PU,
794 .total_size = 512,
795 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000796 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000797 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000798 .probe = probe_spi_rdid4,
799 .probe_timing = TIMING_ZERO,
800 .block_erasers =
801 {
802 {
803 .eraseblocks = {
804 {4 * 1024, 2},
805 {8 * 1024, 1},
806 {16 * 1024, 1},
807 {32 * 1024, 1},
808 {64 * 1024, 7},
809 },
810 .block_erase = spi_block_erase_d8,
811 }, {
812 .eraseblocks = { {512 * 1024, 1} },
813 .block_erase = spi_block_erase_c7,
814 }
815 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000816 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000817 .unlock = spi_disable_blockprotect,
818 .write = spi_chip_write_256,
819 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000820 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000821 },
822
823 {
824 .vendor = "AMIC",
825 .name = "A25L80P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000826 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000827 .manufacture_id = AMIC_ID,
828 .model_id = AMIC_A25L80P,
829 .total_size = 1024,
830 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000831 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000832 .tested = TEST_OK_PRE,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000833 .probe = probe_spi_rdid4,
834 .probe_timing = TIMING_ZERO,
835 .block_erasers =
836 {
837 {
838 .eraseblocks = {
839 {4 * 1024, 2},
840 {8 * 1024, 1},
841 {16 * 1024, 1},
842 {32 * 1024, 1},
843 {64 * 1024, 15},
844 },
845 .block_erase = spi_block_erase_d8,
846 }, {
847 .eraseblocks = { {1024 * 1024, 1} },
848 .block_erase = spi_block_erase_c7,
849 }
850 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000851 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000852 .unlock = spi_disable_blockprotect,
853 .write = spi_chip_write_256,
854 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000855 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000856 },
857
858 {
859 .vendor = "AMIC",
860 .name = "A25L16PT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000861 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000862 .manufacture_id = AMIC_ID,
863 .model_id = AMIC_A25L16PT,
864 .total_size = 2048,
865 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000866 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000867 .tested = TEST_UNTESTED,
868 .probe = probe_spi_rdid4,
869 .probe_timing = TIMING_ZERO,
870 .block_erasers =
871 {
872 {
873 .eraseblocks = {
874 {64 * 1024, 31},
875 {32 * 1024, 1},
876 {16 * 1024, 1},
877 {8 * 1024, 1},
878 {4 * 1024, 2},
879 },
880 .block_erase = spi_block_erase_d8,
881 }, {
882 .eraseblocks = { {2048 * 1024, 1} },
883 .block_erase = spi_block_erase_60,
884 }, {
885 .eraseblocks = { {2048 * 1024, 1} },
886 .block_erase = spi_block_erase_c7,
887 }
888 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000889 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000890 .unlock = spi_disable_blockprotect,
891 .write = spi_chip_write_256,
892 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000893 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000894 },
895
896 {
897 .vendor = "AMIC",
898 .name = "A25L16PU",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000899 .bustype = BUS_SPI,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000900 .manufacture_id = AMIC_ID,
901 .model_id = AMIC_A25L16PU,
902 .total_size = 2048,
903 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +0000904 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +0000905 .tested = TEST_OK_PR,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000906 .probe = probe_spi_rdid4,
907 .probe_timing = TIMING_ZERO,
908 .block_erasers =
909 {
910 {
911 .eraseblocks = {
912 {4 * 1024, 2},
913 {8 * 1024, 1},
914 {16 * 1024, 1},
915 {32 * 1024, 1},
916 {64 * 1024, 31},
917 },
918 .block_erase = spi_block_erase_d8,
919 }, {
920 .eraseblocks = { {2048 * 1024, 1} },
921 .block_erase = spi_block_erase_60,
922 }, {
923 .eraseblocks = { {2048 * 1024, 1} },
924 .block_erase = spi_block_erase_c7,
925 }
926 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000927 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000928 .unlock = spi_disable_blockprotect,
929 .write = spi_chip_write_256,
930 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000931 .voltage = {2700, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +0000932 },
933
934 {
935 .vendor = "AMIC",
Dan Lenski11617122010-07-29 15:00:40 +0000936 .name = "A25L512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000937 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +0000938 .manufacture_id = AMIC_ID_NOPREFIX,
939 .model_id = AMIC_A25L512,
940 .total_size = 64,
941 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000942 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000943 .tested = TEST_UNTESTED,
944 .probe = probe_spi_rdid,
945 .probe_timing = TIMING_ZERO,
946 .block_erasers =
947 {
948 {
949 .eraseblocks = { { 4 * 1024, 16 } },
950 .block_erase = spi_block_erase_20,
951 }, {
952 .eraseblocks = { { 64 * 1024, 1 } },
953 .block_erase = spi_block_erase_d8,
954 }, {
955 .eraseblocks = { { 64 * 1024, 1 } },
956 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000957 }
Dan Lenski11617122010-07-29 15:00:40 +0000958 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000959 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +0000960 .unlock = spi_disable_blockprotect,
961 .write = spi_chip_write_256,
962 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000963 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +0000964 },
965
966 {
967 .vendor = "AMIC",
968 .name = "A25L010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000969 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +0000970 .manufacture_id = AMIC_ID_NOPREFIX,
971 .model_id = AMIC_A25L010,
972 .total_size = 128,
973 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +0000974 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +0000975 .tested = TEST_UNTESTED,
976 .probe = probe_spi_rdid,
977 .probe_timing = TIMING_ZERO,
978 .block_erasers =
979 {
980 {
981 .eraseblocks = { { 4 * 1024, 32 } },
982 .block_erase = spi_block_erase_20,
983 }, {
984 .eraseblocks = { { 64 * 1024, 2 } },
985 .block_erase = spi_block_erase_d8,
986 }, {
987 .eraseblocks = { { 128 * 1024, 1 } },
988 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000989 }
Dan Lenski11617122010-07-29 15:00:40 +0000990 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000991 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +0000992 .unlock = spi_disable_blockprotect,
993 .write = spi_chip_write_256,
994 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +0000995 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +0000996 },
997
998 {
999 .vendor = "AMIC",
1000 .name = "A25L020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001001 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001002 .manufacture_id = AMIC_ID_NOPREFIX,
1003 .model_id = AMIC_A25L020,
1004 .total_size = 256,
1005 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001006 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001007 .tested = TEST_UNTESTED,
1008 .probe = probe_spi_rdid,
1009 .probe_timing = TIMING_ZERO,
1010 .block_erasers =
1011 {
1012 {
1013 .eraseblocks = { { 4 * 1024, 64 } },
1014 .block_erase = spi_block_erase_20,
1015 }, {
1016 .eraseblocks = { { 64 * 1024, 4 } },
1017 .block_erase = spi_block_erase_d8,
1018 }, {
1019 .eraseblocks = { { 256 * 1024, 1 } },
1020 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001021 }
Dan Lenski11617122010-07-29 15:00:40 +00001022 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001023 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +00001024 .unlock = spi_disable_blockprotect,
1025 .write = spi_chip_write_256,
1026 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001027 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001028 },
1029
1030 {
1031 .vendor = "AMIC",
1032 .name = "A25L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001033 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001034 .manufacture_id = AMIC_ID_NOPREFIX,
1035 .model_id = AMIC_A25L040,
1036 .total_size = 512,
1037 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001038 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001039 .tested = TEST_UNTESTED,
1040 .probe = probe_spi_rdid,
1041 .probe_timing = TIMING_ZERO,
1042 .block_erasers =
1043 {
1044 {
1045 .eraseblocks = { { 4 * 1024, 128 } },
1046 .block_erase = spi_block_erase_20,
1047 }, {
1048 .eraseblocks = { { 64 * 1024, 8 } },
1049 .block_erase = spi_block_erase_d8,
1050 }, {
1051 .eraseblocks = { { 512 * 1024, 1 } },
1052 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001053 }
Dan Lenski11617122010-07-29 15:00:40 +00001054 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001055 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +00001056 .unlock = spi_disable_blockprotect,
1057 .write = spi_chip_write_256,
1058 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001059 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001060 },
1061
1062 {
1063 .vendor = "AMIC",
1064 .name = "A25L080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001065 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001066 .manufacture_id = AMIC_ID_NOPREFIX,
1067 .model_id = AMIC_A25L080,
1068 .total_size = 1024,
1069 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001070 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001071 .tested = TEST_UNTESTED,
1072 .probe = probe_spi_rdid,
1073 .probe_timing = TIMING_ZERO,
1074 .block_erasers =
1075 {
1076 {
1077 .eraseblocks = { { 4 * 1024, 256 } },
1078 .block_erase = spi_block_erase_20,
1079 }, {
1080 .eraseblocks = { { 64 * 1024, 16 } },
1081 .block_erase = spi_block_erase_d8,
1082 }, {
1083 .eraseblocks = { { 1024 * 1024, 1 } },
1084 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001085 }
Dan Lenski11617122010-07-29 15:00:40 +00001086 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001087 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +00001088 .unlock = spi_disable_blockprotect,
1089 .write = spi_chip_write_256,
1090 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001091 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001092 },
1093
1094 {
1095 .vendor = "AMIC",
1096 .name = "A25L016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001097 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001098 .manufacture_id = AMIC_ID_NOPREFIX,
1099 .model_id = AMIC_A25L016,
1100 .total_size = 2048,
1101 .page_size = 256,
David Hendricks6c51cfd2010-09-03 03:32:22 +00001102 .feature_bits = FEATURE_WRSR_WREN,
Dan Lenski11617122010-07-29 15:00:40 +00001103 .tested = TEST_UNTESTED,
1104 .probe = probe_spi_rdid,
1105 .probe_timing = TIMING_ZERO,
1106 .block_erasers =
1107 {
1108 {
1109 .eraseblocks = { { 4 * 1024, 512 } },
1110 .block_erase = spi_block_erase_20,
1111 }, {
1112 .eraseblocks = { { 64 * 1024, 32 } },
1113 .block_erase = spi_block_erase_d8,
1114 }, {
1115 .eraseblocks = { { 2048 * 1024, 1 } },
1116 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001117 }
Dan Lenski11617122010-07-29 15:00:40 +00001118 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001119 .printlock = spi_prettyprint_status_register_default_bp2,
Dan Lenski11617122010-07-29 15:00:40 +00001120 .unlock = spi_disable_blockprotect,
1121 .write = spi_chip_write_256,
1122 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001123 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001124 },
1125
1126 {
1127 .vendor = "AMIC",
1128 .name = "A25L032",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001129 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001130 .manufacture_id = AMIC_ID_NOPREFIX,
1131 .model_id = AMIC_A25L032,
1132 .total_size = 4096,
1133 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001134 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1135 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001136 .tested = TEST_OK_PREW,
Dan Lenski11617122010-07-29 15:00:40 +00001137 .probe = probe_spi_rdid,
1138 .probe_timing = TIMING_ZERO,
1139 .block_erasers =
1140 {
1141 {
1142 .eraseblocks = { { 4 * 1024, 1024 } },
1143 .block_erase = spi_block_erase_20,
1144 }, {
1145 .eraseblocks = { { 64 * 1024, 64 } },
1146 .block_erase = spi_block_erase_52,
1147 }, {
1148 .eraseblocks = { { 64 * 1024, 64 } },
1149 .block_erase = spi_block_erase_d8,
1150 }, {
1151 .eraseblocks = { { 4096 * 1024, 1 } },
1152 .block_erase = spi_block_erase_60,
1153 }, {
1154 .eraseblocks = { { 4096 * 1024, 1 } },
1155 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001156 }
Dan Lenski11617122010-07-29 15:00:40 +00001157 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001158 .printlock = spi_prettyprint_status_register_amic_a25l032,
Dan Lenski11617122010-07-29 15:00:40 +00001159 .unlock = NULL, /* Two status reg bytes (read with 0x35 and 0x05) */
1160 .write = spi_chip_write_256,
1161 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001162 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001163 },
1164
1165 {
1166 .vendor = "AMIC",
1167 .name = "A25LQ032",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001168 .bustype = BUS_SPI,
Dan Lenski11617122010-07-29 15:00:40 +00001169 .manufacture_id = AMIC_ID_NOPREFIX,
1170 .model_id = AMIC_A25LQ032,
1171 .total_size = 4096,
1172 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001173 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */
1174 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Dan Lenski11617122010-07-29 15:00:40 +00001175 .tested = TEST_UNTESTED,
1176 .probe = probe_spi_rdid,
1177 .probe_timing = TIMING_ZERO,
1178 .block_erasers =
1179 {
1180 {
1181 .eraseblocks = { { 4 * 1024, 1024 } },
1182 .block_erase = spi_block_erase_20,
1183 }, {
1184 .eraseblocks = { { 64 * 1024, 64 } },
1185 .block_erase = spi_block_erase_52,
1186 }, {
1187 .eraseblocks = { { 64 * 1024, 64 } },
1188 .block_erase = spi_block_erase_d8,
1189 }, {
1190 .eraseblocks = { { 4096 * 1024, 1 } },
1191 .block_erase = spi_block_erase_60,
1192 }, {
1193 .eraseblocks = { { 4096 * 1024, 1 } },
1194 .block_erase = spi_block_erase_c7,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001195 }
Dan Lenski11617122010-07-29 15:00:40 +00001196 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001197 .printlock = spi_prettyprint_status_register_amic_a25l032,
Dan Lenski11617122010-07-29 15:00:40 +00001198 .unlock = NULL, /* Two status reg bytes (read with 0x35 and 0x05) */
1199 .write = spi_chip_write_256,
1200 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001201 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001202 },
1203
1204 {
1205 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001206 .name = "A29002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001207 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001208 .manufacture_id = AMIC_ID_NOPREFIX,
1209 .model_id = AMIC_A29002B,
1210 .total_size = 256,
1211 .page_size = 64 * 1024,
1212 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1213 .tested = TEST_UNTESTED,
1214 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001215 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001216 .block_erasers =
1217 {
1218 {
1219 .eraseblocks = {
1220 {16 * 1024, 1},
1221 {8 * 1024, 2},
1222 {32 * 1024, 1},
1223 {64 * 1024, 3},
1224 },
1225 .block_erase = erase_sector_jedec,
1226 }, {
1227 .eraseblocks = { {256 * 1024, 1} },
1228 .block_erase = erase_chip_block_jedec,
1229 },
1230 },
1231 .write = write_jedec_1,
1232 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001233 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001234 },
1235
1236 {
1237 .vendor = "AMIC",
1238 .name = "A29002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001239 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001240 .manufacture_id = AMIC_ID_NOPREFIX,
1241 .model_id = AMIC_A29002T,
1242 .total_size = 256,
1243 .page_size = 64 * 1024,
1244 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00001245 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001246 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001247 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001248 .block_erasers =
1249 {
1250 {
1251 .eraseblocks = {
1252 {64 * 1024, 3},
1253 {32 * 1024, 1},
1254 {8 * 1024, 2},
1255 {16 * 1024, 1},
1256 },
1257 .block_erase = erase_sector_jedec,
1258 }, {
1259 .eraseblocks = { {256 * 1024, 1} },
1260 .block_erase = erase_chip_block_jedec,
1261 },
1262 },
1263 .write = write_jedec_1,
1264 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001265 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001266 },
1267
1268 {
1269 .vendor = "AMIC",
1270 .name = "A29040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001271 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001272 .manufacture_id = AMIC_ID_NOPREFIX,
1273 .model_id = AMIC_A29040B,
1274 .total_size = 512,
1275 .page_size = 64 * 1024,
1276 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1277 .tested = TEST_UNTESTED,
1278 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001279 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001280 .block_erasers =
1281 {
1282 {
1283 .eraseblocks = { {64 * 1024, 8} },
1284 .block_erase = erase_sector_jedec,
1285 }, {
1286 .eraseblocks = { {512 * 1024, 1} },
1287 .block_erase = erase_chip_block_jedec,
1288 },
1289 },
1290 .write = write_jedec_1,
1291 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001292 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001293 },
1294
1295 {
1296 .vendor = "AMIC",
1297 .name = "A49LF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001298 .bustype = BUS_LPC,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001299 .manufacture_id = AMIC_ID_NOPREFIX,
1300 .model_id = AMIC_A49LF040A,
1301 .total_size = 512,
1302 .page_size = 64 * 1024,
1303 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00001304 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001305 .probe = probe_jedec,
1306 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
1307 .block_erasers =
1308 {
1309 {
1310 .eraseblocks = { {64 * 1024, 8} },
1311 .block_erase = erase_block_jedec,
1312 }, {
1313 .eraseblocks = { {512 * 1024, 1} },
1314 .block_erase = erase_chip_block_jedec,
1315 }
1316 },
1317 .unlock = unlock_49fl00x,
1318 .write = write_jedec_1,
1319 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001320 .voltage = {3000, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001321 },
1322
1323 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001324 .vendor = "Atmel",
1325 .name = "AT25DF021",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001326 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001327 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001328 .model_id = ATMEL_AT25DF021,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001329 .total_size = 256,
1330 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001331 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1332 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001333 .tested = TEST_UNTESTED,
1334 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001335 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001336 .block_erasers =
1337 {
1338 {
1339 .eraseblocks = { {4 * 1024, 64} },
1340 .block_erase = spi_block_erase_20,
1341 }, {
1342 .eraseblocks = { {32 * 1024, 8} },
1343 .block_erase = spi_block_erase_52,
1344 }, {
1345 .eraseblocks = { {64 * 1024, 4} },
1346 .block_erase = spi_block_erase_d8,
1347 }, {
1348 .eraseblocks = { {256 * 1024, 1} },
1349 .block_erase = spi_block_erase_60,
1350 }, {
1351 .eraseblocks = { {256 * 1024, 1} },
1352 .block_erase = spi_block_erase_c7,
1353 }
1354 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001355 .printlock = spi_prettyprint_status_register_at25df,
1356 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001357 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001358 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001359 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001360 },
1361
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001362 {
1363 .vendor = "Atmel",
1364 .name = "AT25DF041A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001365 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001366 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001367 .model_id = ATMEL_AT25DF041A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001368 .total_size = 512,
1369 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001370 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001371 .tested = TEST_UNTESTED,
1372 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001373 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001374 .block_erasers =
1375 {
1376 {
1377 .eraseblocks = { {4 * 1024, 128} },
1378 .block_erase = spi_block_erase_20,
1379 }, {
1380 .eraseblocks = { {32 * 1024, 16} },
1381 .block_erase = spi_block_erase_52,
1382 }, {
1383 .eraseblocks = { {64 * 1024, 8} },
1384 .block_erase = spi_block_erase_d8,
1385 }, {
1386 .eraseblocks = { {512 * 1024, 1} },
1387 .block_erase = spi_block_erase_60,
1388 }, {
1389 .eraseblocks = { {512 * 1024, 1} },
1390 .block_erase = spi_block_erase_c7,
1391 }
1392 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001393 .printlock = spi_prettyprint_status_register_at25df,
1394 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001395 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001396 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001397 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001398 },
1399
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001400 {
1401 .vendor = "Atmel",
1402 .name = "AT25DF081",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001403 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001404 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001405 .model_id = ATMEL_AT25DF081,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001406 .total_size = 1024,
1407 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001408 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001409 .tested = TEST_UNTESTED,
1410 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001411 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001412 .block_erasers =
1413 {
1414 {
1415 .eraseblocks = { {4 * 1024, 256} },
1416 .block_erase = spi_block_erase_20,
1417 }, {
1418 .eraseblocks = { {32 * 1024, 32} },
1419 .block_erase = spi_block_erase_52,
1420 }, {
1421 .eraseblocks = { {64 * 1024, 16} },
1422 .block_erase = spi_block_erase_d8,
1423 }, {
1424 .eraseblocks = { {1024 * 1024, 1} },
1425 .block_erase = spi_block_erase_60,
1426 }, {
1427 .eraseblocks = { {1024 * 1024, 1} },
1428 .block_erase = spi_block_erase_c7,
1429 }
1430 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001431 .printlock = spi_prettyprint_status_register_at25df,
1432 .unlock = spi_disable_blockprotect_at25df,
1433 .write = spi_chip_write_256,
1434 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001435 .voltage = {1600, 2000}, /* Datasheet says range is 1.65-1.95 V */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001436 },
1437
1438 {
1439 .vendor = "Atmel",
1440 .name = "AT25DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001441 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001442 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001443 .model_id = ATMEL_AT25DF081A,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001444 .total_size = 1024,
1445 .page_size = 256,
1446 .feature_bits = FEATURE_WRSR_WREN,
1447 .tested = TEST_UNTESTED,
1448 .probe = probe_spi_rdid,
1449 .probe_timing = TIMING_ZERO,
1450 .block_erasers =
1451 {
1452 {
1453 .eraseblocks = { {4 * 1024, 256} },
1454 .block_erase = spi_block_erase_20,
1455 }, {
1456 .eraseblocks = { {32 * 1024, 32} },
1457 .block_erase = spi_block_erase_52,
1458 }, {
1459 .eraseblocks = { {64 * 1024, 16} },
1460 .block_erase = spi_block_erase_d8,
1461 }, {
1462 .eraseblocks = { {1024 * 1024, 1} },
1463 .block_erase = spi_block_erase_60,
1464 }, {
1465 .eraseblocks = { {1024 * 1024, 1} },
1466 .block_erase = spi_block_erase_c7,
1467 }
1468 },
1469 .printlock = spi_prettyprint_status_register_at25df_sec,
1470 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001471 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001472 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001473 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001474 },
1475
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001476 {
1477 .vendor = "Atmel",
1478 .name = "AT25DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001479 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001480 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001481 .model_id = ATMEL_AT25DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001482 .total_size = 2048,
1483 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001484 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner2abab942012-04-27 20:41:23 +00001485 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001486 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001487 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001488 .block_erasers =
1489 {
1490 {
1491 .eraseblocks = { {4 * 1024, 512} },
1492 .block_erase = spi_block_erase_20,
1493 }, {
1494 .eraseblocks = { {32 * 1024, 64} },
1495 .block_erase = spi_block_erase_52,
1496 }, {
1497 .eraseblocks = { {64 * 1024, 32} },
1498 .block_erase = spi_block_erase_d8,
1499 }, {
1500 .eraseblocks = { {2 * 1024 * 1024, 1} },
1501 .block_erase = spi_block_erase_60,
1502 }, {
1503 .eraseblocks = { {2 * 1024 * 1024, 1} },
1504 .block_erase = spi_block_erase_c7,
1505 }
1506 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001507 .printlock = spi_prettyprint_status_register_at25df_sec,
1508 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001509 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001510 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001511 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001512 },
1513
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001514 {
1515 .vendor = "Atmel",
1516 .name = "AT25DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001517 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001518 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001519 .model_id = ATMEL_AT25DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001520 .total_size = 4096,
1521 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001522 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd06d9412011-06-12 19:47:55 +00001523 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001524 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001525 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001526 .block_erasers =
1527 {
1528 {
1529 .eraseblocks = { {4 * 1024, 1024} },
1530 .block_erase = spi_block_erase_20,
1531 }, {
1532 .eraseblocks = { {32 * 1024, 128} },
1533 .block_erase = spi_block_erase_52,
1534 }, {
1535 .eraseblocks = { {64 * 1024, 64} },
1536 .block_erase = spi_block_erase_d8,
1537 }, {
1538 .eraseblocks = { {4 * 1024 * 1024, 1} },
1539 .block_erase = spi_block_erase_60,
1540 }, {
1541 .eraseblocks = { {4 * 1024 * 1024, 1} },
1542 .block_erase = spi_block_erase_c7,
1543 }
1544 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001545 .printlock = spi_prettyprint_status_register_at25df,
1546 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001547 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001548 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001549 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001550 },
1551
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001552 {
1553 .vendor = "Atmel",
1554 .name = "AT25DF321A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001555 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001556 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001557 .model_id = ATMEL_AT25DF321A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001558 .total_size = 4096,
1559 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001560 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1561 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001562 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001563 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001564 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001565 .block_erasers =
1566 {
1567 {
1568 .eraseblocks = { {4 * 1024, 1024} },
1569 .block_erase = spi_block_erase_20,
1570 }, {
1571 .eraseblocks = { {32 * 1024, 128} },
1572 .block_erase = spi_block_erase_52,
1573 }, {
1574 .eraseblocks = { {64 * 1024, 64} },
1575 .block_erase = spi_block_erase_d8,
1576 }, {
1577 .eraseblocks = { {4 * 1024 * 1024, 1} },
1578 .block_erase = spi_block_erase_60,
1579 }, {
1580 .eraseblocks = { {4 * 1024 * 1024, 1} },
1581 .block_erase = spi_block_erase_c7,
1582 }
1583 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001584 .printlock = spi_prettyprint_status_register_at25df_sec,
1585 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001586 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001587 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001588 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001589 },
1590
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001591 {
1592 .vendor = "Atmel",
Paul Menzelac427b22012-02-16 21:07:07 +00001593 .name = "AT25DF641(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001594 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001595 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001596 .model_id = ATMEL_AT25DF641,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001597 .total_size = 8192,
1598 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001599 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001600 .tested = TEST_UNTESTED,
1601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001602 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001603 .block_erasers =
1604 {
1605 {
1606 .eraseblocks = { {4 * 1024, 2048} },
1607 .block_erase = spi_block_erase_20,
1608 }, {
1609 .eraseblocks = { {32 * 1024, 256} },
1610 .block_erase = spi_block_erase_52,
1611 }, {
1612 .eraseblocks = { {64 * 1024, 128} },
1613 .block_erase = spi_block_erase_d8,
1614 }, {
1615 .eraseblocks = { {8 * 1024 * 1024, 1} },
1616 .block_erase = spi_block_erase_60,
1617 }, {
1618 .eraseblocks = { {8 * 1024 * 1024, 1} },
1619 .block_erase = spi_block_erase_c7,
1620 }
1621 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001622 .printlock = spi_prettyprint_status_register_at25df_sec,
1623 .unlock = spi_disable_blockprotect_at25df_sec,
1624 .write = spi_chip_write_256,
1625 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001626 .voltage = {2700, 3600},
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001627 },
1628
1629 {
1630 .vendor = "Atmel",
1631 .name = "AT25DQ161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001632 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001633 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001634 .model_id = ATMEL_AT25DQ161,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001635 .total_size = 2048,
1636 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001637 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1638 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001639 .tested = TEST_UNTESTED,
1640 .probe = probe_spi_rdid,
1641 .probe_timing = TIMING_ZERO,
1642 .block_erasers =
1643 {
1644 {
1645 .eraseblocks = { {4 * 1024, 512} },
1646 .block_erase = spi_block_erase_20,
1647 }, {
1648 .eraseblocks = { {32 * 1024, 64} },
1649 .block_erase = spi_block_erase_52,
1650 }, {
1651 .eraseblocks = { {64 * 1024, 32} },
1652 .block_erase = spi_block_erase_d8,
1653 }, {
1654 .eraseblocks = { {2 * 1024 * 1024, 1} },
1655 .block_erase = spi_block_erase_60,
1656 }, {
1657 .eraseblocks = { {2 * 1024 * 1024, 1} },
1658 .block_erase = spi_block_erase_c7,
1659 }
1660 },
1661 .printlock = spi_prettyprint_status_register_at25df_sec,
1662 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001663 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001664 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001665 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001666 },
1667
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001668 {
1669 .vendor = "Atmel",
Stefan Tauner57794ac2012-12-29 15:04:20 +00001670 .name = "AT25F512",
1671 .bustype = BUS_SPI,
1672 .manufacture_id = ATMEL_ID,
1673 .model_id = ATMEL_AT25F512,
1674 .total_size = 64,
1675 .page_size = 256,
1676 .feature_bits = FEATURE_WRSR_WREN,
1677 .tested = TEST_UNTESTED,
1678 .probe = probe_spi_at25f,
1679 .probe_timing = TIMING_ZERO,
1680 .block_erasers =
1681 {
1682 {
1683 .eraseblocks = { {32 * 1024, 2} },
1684 .block_erase = spi_block_erase_52,
1685 }, {
1686 .eraseblocks = { {64 * 1024, 1} },
1687 .block_erase = spi_block_erase_62,
1688 }
1689 },
1690 .printlock = spi_prettyprint_status_register_at25f,
1691 .unlock = spi_disable_blockprotect_at25f,
1692 .write = spi_chip_write_256,
1693 .read = spi_chip_read,
1694 .voltage = {2700, 3600},
1695 },
1696
1697 {
1698 .vendor = "Atmel",
1699 .name = "AT25F512A",
1700 .bustype = BUS_SPI,
1701 .manufacture_id = ATMEL_ID,
1702 .model_id = ATMEL_AT25F512A,
1703 .total_size = 64,
1704 .page_size = 128,
1705 .feature_bits = FEATURE_WRSR_WREN,
1706 .tested = TEST_UNTESTED,
1707 .probe = probe_spi_at25f,
1708 .probe_timing = TIMING_ZERO,
1709 .block_erasers =
1710 {
1711 {
1712 .eraseblocks = { {32 * 1024, 2} },
1713 .block_erase = spi_block_erase_52,
1714 }, {
1715 .eraseblocks = { {64 * 1024, 1} },
1716 .block_erase = spi_block_erase_62,
1717 }
1718 },
1719 .printlock = spi_prettyprint_status_register_at25f512a,
1720 /* FIXME: It is not correct to use this one, because the BP1 bit is N/A. */
1721 .unlock = spi_disable_blockprotect_at25f512a,
1722 .write = spi_chip_write_256,
1723 .read = spi_chip_read,
1724 .voltage = {2700, 3600},
1725 },
1726
1727 {
1728 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001729 .name = "AT25F512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001730 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001731 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001732 .model_id = ATMEL_AT25F512B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001733 .total_size = 64,
1734 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001735 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1736 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001737 .tested = TEST_UNTESTED,
1738 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001739 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001740 .block_erasers =
1741 {
1742 {
1743 .eraseblocks = { {4 * 1024, 16} },
1744 .block_erase = spi_block_erase_20,
1745 }, {
1746 .eraseblocks = { {32 * 1024, 2} },
1747 .block_erase = spi_block_erase_52,
1748 }, {
1749 .eraseblocks = { {32 * 1024, 2} },
1750 .block_erase = spi_block_erase_d8,
1751 }, {
1752 .eraseblocks = { {64 * 1024, 1} },
1753 .block_erase = spi_block_erase_60,
1754 }, {
1755 .eraseblocks = { {64 * 1024, 1} },
1756 .block_erase = spi_block_erase_c7,
Stefan Tauner3c0fcd02012-09-21 12:46:56 +00001757 }, {
1758 .eraseblocks = { {64 * 1024, 1} },
1759 .block_erase = spi_block_erase_62,
Sean Nelson89187292009-12-23 12:02:55 +00001760 }
1761 },
Stefan Tauner7bf4ed92012-08-26 21:04:27 +00001762 .printlock = spi_prettyprint_status_register_at25f512b,
1763 .unlock = spi_disable_blockprotect_at25f512b,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001764 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001765 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001766 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001767 },
1768
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001769 {
1770 .vendor = "Atmel",
Stefan Tauner57794ac2012-12-29 15:04:20 +00001771 /* The A suffix indicates 33MHz instead of 20MHz clock rate.
1772 * All other properties seem to be the same.*/
1773 .name = "AT25F1024(A)",
1774 .bustype = BUS_SPI,
1775 .manufacture_id = ATMEL_ID,
1776 .model_id = ATMEL_AT25F1024,
1777 .total_size = 128,
1778 .page_size = 256,
1779 .feature_bits = FEATURE_WRSR_WREN,
1780 .tested = TEST_OK_PREW,
1781 .probe = probe_spi_at25f,
1782 .probe_timing = TIMING_ZERO,
1783 .block_erasers =
1784 {
1785 {
1786 .eraseblocks = { {32 * 1024, 4} },
1787 .block_erase = spi_block_erase_52,
1788 }, {
1789 .eraseblocks = { {128 * 1024, 1} },
1790 .block_erase = spi_block_erase_62,
1791 }
1792 },
1793 .printlock = spi_prettyprint_status_register_at25f,
1794 .unlock = spi_disable_blockprotect_at25f,
1795 .write = spi_chip_write_256,
1796 .read = spi_chip_read,
1797 .voltage = {2700, 3600},
1798 },
1799
1800 {
1801 .vendor = "Atmel",
1802 .name = "AT25F2048",
1803 .bustype = BUS_SPI,
1804 .manufacture_id = ATMEL_ID,
1805 .model_id = ATMEL_AT25F2048,
1806 .total_size = 256,
1807 .page_size = 256,
1808 .feature_bits = FEATURE_WRSR_WREN,
1809 .tested = TEST_UNTESTED,
1810 .probe = probe_spi_at25f,
1811 .probe_timing = TIMING_ZERO,
1812 .block_erasers =
1813 {
1814 {
1815 .eraseblocks = { {64 * 1024, 4} },
1816 .block_erase = spi_block_erase_52,
1817 }, {
1818 .eraseblocks = { {256 * 1024, 1} },
1819 .block_erase = spi_block_erase_62,
1820 }
1821 },
1822 .printlock = spi_prettyprint_status_register_at25f,
1823 .unlock = spi_disable_blockprotect_at25f,
1824 .write = spi_chip_write_256,
1825 .read = spi_chip_read,
1826 .voltage = {2700, 3600},
1827 },
1828
1829 {
1830 .vendor = "Atmel",
1831 .name = "AT25F4096",
1832 .bustype = BUS_SPI,
1833 .manufacture_id = ATMEL_ID,
1834 .model_id = ATMEL_AT25F4096,
1835 .total_size = 512,
1836 .page_size = 256,
1837 .feature_bits = FEATURE_WRSR_WREN,
1838 .tested = TEST_UNTESTED,
1839 .probe = probe_spi_at25f,
1840 .probe_timing = TIMING_ZERO,
1841 .block_erasers =
1842 {
1843 {
1844 .eraseblocks = { {64 * 1024, 8} },
1845 .block_erase = spi_block_erase_52,
1846 }, {
1847 .eraseblocks = { {512 * 1024, 1} },
1848 .block_erase = spi_block_erase_62,
1849 }
1850 },
1851 .printlock = spi_prettyprint_status_register_at25f4096,
1852 .unlock = spi_disable_blockprotect_at25f4096,
1853 .write = spi_chip_write_256,
1854 .read = spi_chip_read,
1855 .voltage = {2700, 3600},
1856 },
1857
1858 {
1859 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001860 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001861 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001862 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001863 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001864 .total_size = 128,
1865 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001866 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00001867 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001868 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001869 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001870 .block_erasers =
1871 {
1872 {
1873 .eraseblocks = { {4 * 1024, 32} },
1874 .block_erase = spi_block_erase_20,
1875 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001876 .eraseblocks = { {4 * 1024, 32} },
1877 .block_erase = spi_block_erase_d7,
1878 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001879 .eraseblocks = { {32 * 1024, 4} },
1880 .block_erase = spi_block_erase_52,
1881 }, {
1882 .eraseblocks = { {32 * 1024, 4} },
1883 .block_erase = spi_block_erase_d8,
1884 }, {
1885 .eraseblocks = { {128 * 1024, 1} },
1886 .block_erase = spi_block_erase_60,
1887 }, {
1888 .eraseblocks = { {128 * 1024, 1} },
1889 .block_erase = spi_block_erase_c7,
1890 }
1891 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001892 .printlock = spi_prettyprint_status_register_at25fs010,
1893 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001894 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001895 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001896 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001897 },
1898
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001899 {
1900 .vendor = "Atmel",
1901 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001902 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001903 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001904 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001905 .total_size = 512,
1906 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001907 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001908 .tested = TEST_UNTESTED,
1909 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001910 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001911 .block_erasers =
1912 {
1913 {
1914 .eraseblocks = { {4 * 1024, 128} },
1915 .block_erase = spi_block_erase_20,
1916 }, {
1917 .eraseblocks = { {64 * 1024, 8} },
1918 .block_erase = spi_block_erase_52,
1919 }, {
1920 .eraseblocks = { {64 * 1024, 8} },
1921 .block_erase = spi_block_erase_d8,
1922 }, {
1923 .eraseblocks = { {512 * 1024, 1} },
1924 .block_erase = spi_block_erase_60,
1925 }, {
1926 .eraseblocks = { {512 * 1024, 1} },
1927 .block_erase = spi_block_erase_c7,
1928 }
1929 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001930 .printlock = spi_prettyprint_status_register_at25fs040,
1931 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001932 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001933 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001934 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001935 },
1936
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001937 {
1938 .vendor = "Atmel",
1939 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001940 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001941 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001942 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001943 .total_size = 512,
1944 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001945 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner94b39b42012-10-27 00:06:02 +00001946 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001947 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001948 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001949 .block_erasers =
1950 {
1951 {
Stefan Tauner94b39b42012-10-27 00:06:02 +00001952 .eraseblocks = { {256, 2048} },
1953 .block_erase = spi_block_erase_81,
1954 }, {
1955 .eraseblocks = { {2 * 1024, 256} },
1956 .block_erase = spi_block_erase_50,
1957 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001958 .eraseblocks = { {4 * 1024, 128} },
1959 .block_erase = spi_block_erase_20,
1960 }
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001961 },
1962 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
1963 /* Supports also an incompatible page write (of exactly 256 B) and an auto-erasing write. */
Stefan Tauner94b39b42012-10-27 00:06:02 +00001964 .write = spi_chip_write_1,
1965 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00001966 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00001967 },
1968
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001969 {
1970 .vendor = "Atmel",
1971 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001972 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001973 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001974 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001975 .total_size = 1024,
1976 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001977 .feature_bits = FEATURE_WRSR_WREN,
1978 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001979 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001980 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001981 .block_erasers =
1982 {
1983 {
1984 .eraseblocks = { {4 * 1024, 256} },
1985 .block_erase = spi_block_erase_20,
1986 }, {
1987 .eraseblocks = { {32 * 1024, 32} },
1988 .block_erase = spi_block_erase_52,
1989 }, {
1990 .eraseblocks = { {64 * 1024, 16} },
1991 .block_erase = spi_block_erase_d8,
1992 }, {
1993 .eraseblocks = { {1024 * 1024, 1} },
1994 .block_erase = spi_block_erase_60,
1995 }, {
1996 .eraseblocks = { {1024 * 1024, 1} },
1997 .block_erase = spi_block_erase_c7,
1998 }
1999 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002000 .printlock = spi_prettyprint_status_register_at26df081a,
Mathias Krause2c3afa32011-01-17 07:45:54 +00002001 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002002 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002003 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002004 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002005 },
2006
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002007 {
2008 .vendor = "Atmel",
2009 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002010 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002011 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002012 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002013 .total_size = 2048,
2014 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002015 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00002016 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002017 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002018 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002019 .block_erasers =
2020 {
2021 {
2022 .eraseblocks = { {4 * 1024, 512} },
2023 .block_erase = spi_block_erase_20,
2024 }, {
2025 .eraseblocks = { {32 * 1024, 64} },
2026 .block_erase = spi_block_erase_52,
2027 }, {
2028 .eraseblocks = { {64 * 1024, 32} },
2029 .block_erase = spi_block_erase_d8,
2030 }, {
2031 .eraseblocks = { {2 * 1024 * 1024, 1} },
2032 .block_erase = spi_block_erase_60,
2033 }, {
2034 .eraseblocks = { {2 * 1024 * 1024, 1} },
2035 .block_erase = spi_block_erase_c7,
2036 }
2037 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00002038 .printlock = spi_prettyprint_status_register_at25df,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002039 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002040 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002041 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002042 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002043 },
2044
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002045 {
2046 .vendor = "Atmel",
2047 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002048 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002049 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002050 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002051 .total_size = 2048,
2052 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002053 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002054 .tested = TEST_UNTESTED,
2055 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002056 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002057 .block_erasers =
2058 {
2059 {
2060 .eraseblocks = { {4 * 1024, 512} },
2061 .block_erase = spi_block_erase_20,
2062 }, {
2063 .eraseblocks = { {32 * 1024, 64} },
2064 .block_erase = spi_block_erase_52,
2065 }, {
2066 .eraseblocks = { {64 * 1024, 32} },
2067 .block_erase = spi_block_erase_d8,
2068 }, {
2069 .eraseblocks = { {2 * 1024 * 1024, 1} },
2070 .block_erase = spi_block_erase_60,
2071 }, {
2072 .eraseblocks = { {2 * 1024 * 1024, 1} },
2073 .block_erase = spi_block_erase_c7,
2074 }
2075 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002076 .printlock = spi_prettyprint_status_register_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002077 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002078 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002079 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002080 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002081 },
2082
2083 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002084 /*{
2085 .vendor = "Atmel",
2086 .name = "AT26DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002087 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002088 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002089 .model_id = ATMEL_AT26DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002090 .total_size = 4096,
2091 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002092 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002093 .tested = TEST_UNTESTED,
2094 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002095 .probe_timing = TIMING_ZERO,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002096 .printlock = spi_prettyprint_status_register_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002097 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002098 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002099 .read = spi_chip_read,
2100 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00002101
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002102 {
2103 .vendor = "Atmel",
2104 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002105 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002106 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002107 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002108 .total_size = 512,
2109 .page_size = 256,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002110 .tested = TEST_BAD_WRITE,
Steven Zakulec3603a282012-05-02 20:07:57 +00002111 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002112 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002113 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002114 .block_erasers =
2115 {
2116 {
2117 .eraseblocks = { {4 * 1024, 128} },
2118 .block_erase = spi_block_erase_20,
2119 }, {
2120 .eraseblocks = { {32 * 1024, 16} },
2121 .block_erase = spi_block_erase_52,
2122 }, {
2123 .eraseblocks = { {64 * 1024, 8} },
2124 .block_erase = spi_block_erase_d8,
2125 }, {
2126 .eraseblocks = { {512 * 1024, 1} },
2127 .block_erase = spi_block_erase_60,
2128 }, {
2129 .eraseblocks = { {512 * 1024, 1} },
2130 .block_erase = spi_block_erase_c7,
2131 }
2132 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002133 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002134 .write = NULL /* Incompatible Page write */,
2135 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002136 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002137 },
2138
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002139 {
2140 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002141 .name = "AT29C512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002142 .bustype = BUS_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002143 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002144 .model_id = ATMEL_AT29C512,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002145 .total_size = 64,
2146 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002147 .feature_bits = FEATURE_LONG_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00002148 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00002149 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002150 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002151 .block_erasers =
2152 {
2153 {
2154 .eraseblocks = { {64 * 1024, 1} },
2155 .block_erase = erase_chip_block_jedec,
2156 }
2157 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002158 .write = write_jedec,
2159 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002160 .voltage = {4500, 5500},
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002161 },
2162
2163 {
2164 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002165 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002166 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002167 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002168 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002169 .total_size = 128,
2170 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002171 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002172 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002173 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002174 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002175 .block_erasers =
2176 {
2177 {
2178 .eraseblocks = { {128 * 1024, 1} },
2179 .block_erase = erase_chip_block_jedec,
2180 }
2181 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002182 .write = write_jedec, /* FIXME */
2183 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002184 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002185 },
2186
2187 {
2188 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002189 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002190 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002191 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002192 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002193 .total_size = 256,
2194 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002195 .feature_bits = FEATURE_LONG_RESET,
2196 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002197 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002198 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002199 .block_erasers =
2200 {
2201 {
2202 .eraseblocks = { {256 * 1024, 1} },
2203 .block_erase = erase_chip_block_jedec,
2204 }
2205 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002206 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002207 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002208 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002209 },
2210
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002211 {
2212 .vendor = "Atmel",
2213 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002214 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002215 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002216 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002217 .total_size = 512,
2218 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002219 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002220 .tested = TEST_UNTESTED,
2221 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002222 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002223 .block_erasers =
2224 {
2225 {
2226 .eraseblocks = { {512 * 1024, 1} },
2227 .block_erase = erase_chip_block_jedec,
2228 }
2229 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002230 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002231 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002232 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002233 },
2234
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002235 {
2236 .vendor = "Atmel",
2237 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002238 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002239 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002240 .model_id = ATMEL_AT45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002241 .total_size = 16896 /* No power of two sizes */,
2242 .page_size = 1056 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002243 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002244 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002245 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002246 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002247 .write = NULL /* Incompatible Page write */,
2248 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002249 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002250 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002251
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002252 {
2253 .vendor = "Atmel",
2254 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002255 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002256 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002257 .model_id = ATMEL_AT45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002258 .total_size = 128 /* Size can only be determined from status register */,
2259 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002260 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002261 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002262 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002263 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002264 .write = NULL,
2265 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002266 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002267 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002268
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002269 {
2270 .vendor = "Atmel",
2271 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002272 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002273 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002274 .model_id = ATMEL_AT45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002275 .total_size = 256 /* Size can only be determined from status register */,
2276 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002277 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002278 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002279 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002280 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002281 .write = NULL,
2282 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002283 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002284 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002285
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002286 {
2287 .vendor = "Atmel",
2288 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002289 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002290 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002291 .model_id = ATMEL_AT45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002292 .total_size = 512 /* Size can only be determined from status register */,
2293 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002294 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002295 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002296 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002297 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002298 .write = NULL,
2299 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002300 .voltage = {2500, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002301 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002302
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002303 {
2304 .vendor = "Atmel",
2305 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002306 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002307 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002308 .model_id = ATMEL_AT45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002309 .total_size = 1024 /* Size can only be determined from status register */,
2310 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002311 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002312 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002313 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002314 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002315 .write = NULL,
2316 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002317 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002318 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002319
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002320 {
2321 .vendor = "Atmel",
2322 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002323 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002324 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002325 .model_id = ATMEL_AT45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002326 .total_size = 2048 /* Size can only be determined from status register */,
2327 .page_size = 512 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002328 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002329 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002330 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002331 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002332 .write = NULL,
2333 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002334 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002335 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002336
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002337 {
2338 .vendor = "Atmel",
2339 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002340 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002341 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002342 .model_id = ATMEL_AT45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002343 .total_size = 4224 /* No power of two sizes */,
2344 .page_size = 528 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002345 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002346 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002347 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002348 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002349 .write = NULL,
2350 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002351 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002352 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002353
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002354 {
2355 .vendor = "Atmel",
2356 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002357 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002358 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002359 .model_id = ATMEL_AT45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002360 .total_size = 4096 /* Size can only be determined from status register */,
2361 .page_size = 512 /* Size can only be determined from status register */,
Daniel Lenski65922a32012-02-15 23:40:23 +00002362 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Steven Zakulec3603a282012-05-02 20:07:57 +00002363 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Daniel Lenski65922a32012-02-15 23:40:23 +00002364 .feature_bits = FEATURE_OTP,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002365 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002366 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002367 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002368 .write = NULL,
2369 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002370 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002371 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002372
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002373 {
2374 .vendor = "Atmel",
2375 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002376 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002377 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002378 .model_id = ATMEL_AT45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002379 .total_size = 8192 /* Size can only be determined from status register */,
2380 .page_size = 1024 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002381 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002382 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002383 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002384 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002385 .write = NULL,
2386 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002387 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002388 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002389
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002390 {
2391 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002392 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002393 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002394 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002395 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002396 .total_size = 64,
2397 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00002398 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00002399 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002400 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002401 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002402 .block_erasers =
2403 {
2404 {
2405 .eraseblocks = { {64 * 1024, 1} },
2406 .block_erase = erase_chip_block_jedec,
2407 }
2408 },
Sean Nelson35727f72010-01-28 23:55:12 +00002409 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002410 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002411 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002412 },
2413
2414 {
2415 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002416 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002417 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002418 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002419 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002420 .total_size = 256,
2421 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002422 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002423 .tested = TEST_UNTESTED,
2424 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002425 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002426 .block_erasers =
2427 {
2428 {
2429 .eraseblocks = {
2430 {16 * 1024, 1},
2431 {8 * 1024, 2},
2432 {96 * 1024, 1},
2433 {128 * 1024, 1},
2434 },
2435 .block_erase = erase_sector_jedec,
2436 }, {
2437 .eraseblocks = { {256 * 1024, 1} },
2438 .block_erase = erase_chip_block_jedec,
2439 }
2440 },
Sean Nelson35727f72010-01-28 23:55:12 +00002441 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002442 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002443 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002444 },
2445
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002446 {
2447 .vendor = "Atmel",
2448 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002449 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002450 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002451 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002452 .total_size = 256,
2453 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002454 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002455 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002456 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002457 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002458 .block_erasers =
2459 {
2460 {
2461 .eraseblocks = {
2462 {128 * 1024, 1},
2463 {96 * 1024, 1},
2464 {8 * 1024, 2},
2465 {16 * 1024, 1},
2466 },
2467 .block_erase = erase_sector_jedec,
2468 }, {
2469 .eraseblocks = { {256 * 1024, 1} },
2470 .block_erase = erase_chip_block_jedec,
2471 }
2472 },
Sean Nelson35727f72010-01-28 23:55:12 +00002473 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002474 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002475 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002476 },
2477
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00002478 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00002479 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002480 .name = "AT49(H)F010",
2481 .bustype = BUS_PARALLEL,
2482 .manufacture_id = ATMEL_ID,
2483 .model_id = ATMEL_AT49F010,
2484 .total_size = 128,
2485 .page_size = 0, /* unused */
2486 .feature_bits = FEATURE_EITHER_RESET,
2487 .tested = TEST_OK_PREW,
2488 .probe = probe_jedec,
2489 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2490 .block_erasers =
2491 {
2492 {
2493 .eraseblocks = { {128 * 1024, 1} },
2494 .block_erase = erase_chip_block_jedec,
2495 }
2496 },
2497 .printlock = printlock_at49f,
2498 .write = write_jedec_1,
2499 .read = read_memmapped,
2500 .voltage = {4500, 5500},
2501 },
2502
2503 {
2504 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00002505 .name = "AT49F020",
2506 .bustype = BUS_PARALLEL,
2507 .manufacture_id = ATMEL_ID,
2508 .model_id = ATMEL_AT49F020,
2509 .total_size = 256,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002510 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002511 .feature_bits = FEATURE_EITHER_RESET,
2512 .tested = TEST_OK_PRE,
2513 .probe = probe_jedec,
2514 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2515 .block_erasers =
2516 {
2517 {
2518 .eraseblocks = { {256 * 1024, 1} },
2519 .block_erase = erase_chip_block_jedec,
2520 }
2521 /* Chip features an optional permanent write protection
2522 * of the first 8 kB. The erase function is the same as
2523 * above, but 00000H to 01FFFH will not be erased.
2524 * FIXME: add another eraser when partial erasers are
2525 * supported.
2526 */
2527 },
2528 .printlock = printlock_at49f,
2529 .write = write_jedec_1,
2530 .read = read_memmapped,
2531 .voltage = {4500, 5500},
2532 },
2533
2534 {
2535 .vendor = "Atmel",
2536 .name = "AT49F040",
2537 .bustype = BUS_PARALLEL,
2538 .manufacture_id = ATMEL_ID,
2539 .model_id = ATMEL_AT49F040,
2540 .total_size = 512,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002541 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002542 .feature_bits = FEATURE_EITHER_RESET,
2543 .tested = TEST_UNTESTED,
2544 .probe = probe_jedec,
2545 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2546 .block_erasers =
2547 {
2548 {
2549 .eraseblocks = { {512 * 1024, 1} },
2550 .block_erase = erase_chip_block_jedec,
2551 }
2552 /* Chip features an optional permanent write protection
2553 * of the first 16 kB. The erase function is the same as
2554 * above, but 00000H to 03FFFH will not be erased.
2555 * FIXME: add another eraser when partial erasers are
2556 * supported.
2557 */
2558 },
2559 .printlock = printlock_at49f,
2560 .write = write_jedec_1,
2561 .read = read_memmapped,
2562 .voltage = {4500, 5500},
2563 },
2564
2565 {
2566 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002567 .name = "AT49F080",
2568 .bustype = BUS_PARALLEL,
2569 .manufacture_id = ATMEL_ID,
2570 .model_id = ATMEL_AT49F080,
2571 .total_size = 1024,
2572 .page_size = 0, /* unused */
2573 .feature_bits = FEATURE_EITHER_RESET,
2574 .tested = TEST_UNTESTED,
2575 .probe = probe_jedec,
2576 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2577 .block_erasers =
2578 {
2579 {
2580 .eraseblocks = { {1024 * 1024, 1} },
2581 .block_erase = erase_chip_block_jedec,
2582 }
2583 /* Chip features an optional permanent write protection
2584 * of the first 16 kB. The erase function is the same as
2585 * above, but 00000H to 03FFFH will not be erased.
2586 * FIXME: add another eraser when partial erasers are
2587 * supported.
2588 */
2589 },
2590 .printlock = printlock_at49f,
2591 .write = write_jedec_1,
2592 .read = read_memmapped,
2593 .voltage = {4500, 5500},
2594 },
2595
2596 {
2597 /* 'top' version of AT49F080. equal in all aspects but the boot block address */
2598 .vendor = "Atmel",
2599 .name = "AT49F080T",
2600 .bustype = BUS_PARALLEL,
2601 .manufacture_id = ATMEL_ID,
2602 .model_id = ATMEL_AT49F080T,
2603 .total_size = 1024,
2604 .page_size = 0, /* unused */
2605 .feature_bits = FEATURE_EITHER_RESET,
2606 .tested = TEST_UNTESTED,
2607 .probe = probe_jedec,
2608 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2609 .block_erasers =
2610 {
2611 {
2612 .eraseblocks = { {1024 * 1024, 1} },
2613 .block_erase = erase_chip_block_jedec,
2614 }
2615 /* Chip features an optional permanent write protection
2616 * of the first 16 kB. The erase function is the same as
2617 * above, but FC000H to FFFFFH will not be erased.
2618 * FIXME: add another eraser when partial erasers are
2619 * supported.
2620 */
2621 },
2622 .printlock = printlock_at49f,
2623 .write = write_jedec_1,
2624 .read = read_memmapped,
2625 .voltage = {4500, 5500},
2626 },
2627
2628 {
2629 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00002630 .name = "AT49LH002",
2631 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
2632 .manufacture_id = ATMEL_ID,
2633 .model_id = ATMEL_AT49LH002,
2634 .total_size = 256,
2635 .page_size = 0, /* unused */
2636 .feature_bits = FEATURE_REGISTERMAP, /* TODO: LPC OK too? */
2637 .tested = TEST_UNTESTED,
2638 .probe = probe_82802ab, /* TODO: 0xff cmd not documented? */
2639 .probe_timing = TIMING_FIXME,
2640 .block_erasers =
2641 {
2642 {
2643 .eraseblocks = {
2644 {64 * 1024, 3},
2645 {32 * 1024, 1},
2646 {8 * 1024, 2},
2647 {16 * 1024, 1},
2648 },
2649 .block_erase = erase_block_82802ab,
2650 }, {
2651 .eraseblocks = {
2652 {64 * 1024, 4},
2653 },
2654 .block_erase = NULL, /* TODO: Implement. */
2655 },
2656 },
2657 .printlock = NULL, /* TODO */
2658 .unlock = NULL, /* unlock_82802ab() not correct(?) */
2659 .write = write_82802ab,
2660 .read = read_memmapped,
2661 .voltage = {3000, 3600},
2662 },
2663
2664 {
Andrew Morganca081462011-09-13 22:05:44 +00002665 .vendor = "Catalyst",
2666 .name = "CAT28F512",
2667 .bustype = BUS_PARALLEL,
2668 .manufacture_id = CATALYST_ID,
2669 .model_id = CATALYST_CAT28F512,
2670 .total_size = 64,
2671 .page_size = 0, /* unused */
2672 .feature_bits = 0,
2673 .tested = TEST_OK_PR,
2674 .probe = probe_jedec, /* FIXME! */
2675 .probe_timing = TIMING_ZERO,
2676 .block_erasers =
2677 {
2678 {
2679 .eraseblocks = { {64 * 1024, 1} },
2680 .block_erase = NULL, /* TODO */
2681 },
2682 },
2683 .write = NULL, /* TODO */
2684 .read = read_memmapped,
2685 .voltage = {4500, 5500},
2686 },
2687
2688 {
Joshua Roysf1324e02010-09-16 00:51:51 +00002689 .vendor = "Bright",
2690 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002691 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00002692 .manufacture_id = BRIGHT_ID,
2693 .model_id = BRIGHT_BM29F040,
2694 .total_size = 512,
2695 .page_size = 64 * 1024,
2696 .feature_bits = FEATURE_EITHER_RESET,
2697 .tested = TEST_OK_PR,
2698 .probe = probe_jedec,
2699 .probe_timing = TIMING_ZERO,
2700 .block_erasers =
2701 {
2702 {
2703 .eraseblocks = { {64 * 1024, 8} },
2704 .block_erase = erase_sector_jedec,
2705 }, {
2706 .eraseblocks = { {512 * 1024, 1} },
2707 .block_erase = erase_chip_block_jedec,
2708 },
2709 },
2710 .write = write_jedec_1,
2711 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002712 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00002713 },
2714
2715 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00002716 .vendor = "ESMT",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002717 .name = "F49B002UA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002718 .bustype = BUS_PARALLEL,
Stefan Tauner352e50b2013-02-22 15:58:45 +00002719 .manufacture_id = ESMT_ID,
2720 .model_id = ESMT_F49B002UA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002721 .total_size = 256,
2722 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00002723 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002724 .tested = TEST_UNTESTED,
2725 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002726 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002727 .block_erasers =
2728 {
2729 {
2730 .eraseblocks = {
2731 {128 * 1024, 1},
2732 {96 * 1024, 1},
2733 {8 * 1024, 2},
2734 {16 * 1024, 1},
2735 },
2736 .block_erase = erase_sector_jedec,
2737 }, {
2738 .eraseblocks = { {256 * 1024, 1} },
2739 .block_erase = erase_chip_block_jedec,
2740 }
2741 },
Sean Nelson35727f72010-01-28 23:55:12 +00002742 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002743 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002744 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002745 },
2746
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002747 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00002748 .vendor = "ESMT",
Michael Karcher80a59ea2010-06-19 22:06:35 +00002749 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002750 .bustype = BUS_SPI,
Stefan Tauner352e50b2013-02-22 15:58:45 +00002751 .manufacture_id = ESMT_ID,
2752 .model_id = ESMT_F25L008A,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002753 .total_size = 1024,
2754 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002755 .feature_bits = FEATURE_WRSR_EITHER,
Stefan Taunereb582572012-09-21 12:52:50 +00002756 .tested = TEST_OK_PREW,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002757 .probe = probe_spi_rdid,
2758 .probe_timing = TIMING_ZERO,
2759 .block_erasers =
2760 {
2761 {
2762 .eraseblocks = { {4 * 1024, 256} },
2763 .block_erase = spi_block_erase_20,
2764 }, {
2765 .eraseblocks = { {64 * 1024, 16} },
2766 .block_erase = spi_block_erase_d8,
2767 }, {
2768 .eraseblocks = { {1024 * 1024, 1} },
2769 .block_erase = spi_block_erase_60,
2770 }, {
2771 .eraseblocks = { {1024 * 1024, 1} },
2772 .block_erase = spi_block_erase_c7,
2773 }
2774 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002775 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002776 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00002777 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00002778 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002779 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00002780 },
2781
2782 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002783 .vendor = "Eon",
2784 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002785 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002786 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002787 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002788 .total_size = 64,
2789 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002790 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002791 .tested = TEST_UNTESTED,
2792 .probe = probe_spi_rdid,
2793 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002794 .block_erasers =
2795 {
2796 {
2797 .eraseblocks = {
2798 {4 * 1024, 2},
2799 {8 * 1024, 1},
2800 {16 * 1024, 1},
2801 {32 * 1024, 1},
2802 },
2803 .block_erase = spi_block_erase_d8,
2804 }, {
2805 .eraseblocks = { {64 * 1024, 1} },
2806 .block_erase = spi_block_erase_c7,
2807 }
2808 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002809 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002810 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002811 .write = spi_chip_write_256,
2812 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002813 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002814 },
2815
2816 {
2817 .vendor = "Eon",
2818 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002819 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002820 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002821 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00002822 .total_size = 64,
2823 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002824 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002825 .tested = TEST_UNTESTED,
2826 .probe = probe_spi_rdid,
2827 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002828 .block_erasers =
2829 {
2830 {
2831 .eraseblocks = {
2832 {32 * 1024, 1},
2833 {16 * 1024, 1},
2834 {8 * 1024, 1},
2835 {4 * 1024, 2},
2836 },
2837 .block_erase = spi_block_erase_d8,
2838 }, {
2839 .eraseblocks = { {64 * 1024, 1} },
2840 .block_erase = spi_block_erase_c7,
2841 }
2842 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002843 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002844 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002845 .write = spi_chip_write_256,
2846 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002847 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002848 },
2849
2850 {
2851 .vendor = "Eon",
2852 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002853 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002854 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002855 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002856 .total_size = 128,
2857 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002858 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002859 .tested = TEST_UNTESTED,
2860 .probe = probe_spi_rdid,
2861 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002862 .block_erasers =
2863 {
2864 {
2865 .eraseblocks = {
2866 {4 * 1024, 2},
2867 {8 * 1024, 1},
2868 {16 * 1024, 1},
2869 {32 * 1024, 3},
2870 },
2871 .block_erase = spi_block_erase_d8,
2872 }, {
2873 .eraseblocks = { {128 * 1024, 1} },
2874 .block_erase = spi_block_erase_c7,
2875 }
2876 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002877 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002878 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002879 .write = spi_chip_write_256,
2880 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002881 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002882 },
2883
2884 {
2885 .vendor = "Eon",
2886 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002887 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002888 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002889 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00002890 .total_size = 128,
2891 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002892 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002893 .tested = TEST_UNTESTED,
2894 .probe = probe_spi_rdid,
2895 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002896 .block_erasers =
2897 {
2898 {
2899 .eraseblocks = {
2900 {32 * 1024, 3},
2901 {16 * 1024, 1},
2902 {8 * 1024, 1},
2903 {4 * 1024, 2},
2904 },
2905 .block_erase = spi_block_erase_d8,
2906 }, {
2907 .eraseblocks = { {128 * 1024, 1} },
2908 .block_erase = spi_block_erase_c7,
2909 }
2910 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002911 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002912 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002913 .write = spi_chip_write_256,
2914 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002915 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002916 },
2917
2918 {
2919 .vendor = "Eon",
2920 .name = "EN25B20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002921 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002922 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002923 .model_id = EON_EN25B20,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002924 .total_size = 256,
2925 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002926 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002927 .tested = TEST_UNTESTED,
2928 .probe = probe_spi_rdid,
2929 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002930 .block_erasers =
2931 {
2932 {
2933 .eraseblocks = {
2934 {4 * 1024, 2},
2935 {8 * 1024, 1},
2936 {16 * 1024, 1},
2937 {32 * 1024, 1},
2938 {64 * 1024, 3}
2939 },
2940 .block_erase = spi_block_erase_d8,
2941 }, {
2942 .eraseblocks = { {256 * 1024, 1} },
2943 .block_erase = spi_block_erase_c7,
2944 }
2945 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002946 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002947 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002948 .write = spi_chip_write_256,
2949 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002950 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002951 },
2952
2953 {
2954 .vendor = "Eon",
2955 .name = "EN25B20T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002956 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002957 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002958 .model_id = EON_EN25B20,
Sean Nelson54596372010-01-09 05:30:14 +00002959 .total_size = 256,
2960 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002961 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002962 .tested = TEST_UNTESTED,
2963 .probe = probe_spi_rdid,
2964 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002965 .block_erasers =
2966 {
2967 {
2968 .eraseblocks = {
2969 {64 * 1024, 3},
2970 {32 * 1024, 1},
2971 {16 * 1024, 1},
2972 {8 * 1024, 1},
2973 {4 * 1024, 2},
2974 },
2975 .block_erase = spi_block_erase_d8,
2976 }, {
2977 .eraseblocks = { {256 * 1024, 1} },
2978 .block_erase = spi_block_erase_c7,
2979 }
2980 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002981 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002982 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002983 .write = spi_chip_write_256,
2984 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002985 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002986 },
2987
2988 {
2989 .vendor = "Eon",
2990 .name = "EN25B40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002991 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002992 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002993 .model_id = EON_EN25B40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002994 .total_size = 512,
2995 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002996 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002997 .tested = TEST_UNTESTED,
2998 .probe = probe_spi_rdid,
2999 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003000 .block_erasers =
3001 {
3002 {
3003 .eraseblocks = {
3004 {4 * 1024, 2},
3005 {8 * 1024, 1},
3006 {16 * 1024, 1},
3007 {32 * 1024, 1},
3008 {64 * 1024, 7}
3009 },
3010 .block_erase = spi_block_erase_d8,
3011 }, {
3012 .eraseblocks = { {512 * 1024, 1} },
3013 .block_erase = spi_block_erase_c7,
3014 }
3015 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003016 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003017 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003018 .write = spi_chip_write_256,
3019 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003020 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003021 },
3022
3023 {
3024 .vendor = "Eon",
3025 .name = "EN25B40T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003026 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003027 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003028 .model_id = EON_EN25B40,
Sean Nelson54596372010-01-09 05:30:14 +00003029 .total_size = 512,
3030 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003031 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003032 .tested = TEST_UNTESTED,
3033 .probe = probe_spi_rdid,
3034 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003035 .block_erasers =
3036 {
3037 {
3038 .eraseblocks = {
3039 {64 * 1024, 7},
3040 {32 * 1024, 1},
3041 {16 * 1024, 1},
3042 {8 * 1024, 1},
3043 {4 * 1024, 2},
3044 },
3045 .block_erase = spi_block_erase_d8,
3046 }, {
3047 .eraseblocks = { {512 * 1024, 1} },
3048 .block_erase = spi_block_erase_c7,
3049 }
3050 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003051 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003052 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003053 .write = spi_chip_write_256,
3054 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003055 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003056 },
3057
3058 {
3059 .vendor = "Eon",
3060 .name = "EN25B80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003061 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003062 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003063 .model_id = EON_EN25B80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003064 .total_size = 1024,
3065 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003066 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003067 .tested = TEST_UNTESTED,
3068 .probe = probe_spi_rdid,
3069 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003070 .block_erasers =
3071 {
3072 {
3073 .eraseblocks = {
3074 {4 * 1024, 2},
3075 {8 * 1024, 1},
3076 {16 * 1024, 1},
3077 {32 * 1024, 1},
3078 {64 * 1024, 15}
3079 },
3080 .block_erase = spi_block_erase_d8,
3081 }, {
3082 .eraseblocks = { {1024 * 1024, 1} },
3083 .block_erase = spi_block_erase_c7,
3084 }
3085 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003086 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003087 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003088 .write = spi_chip_write_256,
3089 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003090 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003091 },
3092
3093 {
3094 .vendor = "Eon",
3095 .name = "EN25B80T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003096 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003097 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003098 .model_id = EON_EN25B80,
Sean Nelson54596372010-01-09 05:30:14 +00003099 .total_size = 1024,
3100 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003101 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003102 .tested = TEST_UNTESTED,
3103 .probe = probe_spi_rdid,
3104 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003105 .block_erasers =
3106 {
3107 {
3108 .eraseblocks = {
3109 {64 * 1024, 15},
3110 {32 * 1024, 1},
3111 {16 * 1024, 1},
3112 {8 * 1024, 1},
3113 {4 * 1024, 2},
3114 },
3115 .block_erase = spi_block_erase_d8,
3116 }, {
3117 .eraseblocks = { {1024 * 1024, 1} },
3118 .block_erase = spi_block_erase_c7,
3119 }
3120 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003121 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003122 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003123 .write = spi_chip_write_256,
3124 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003125 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003126 },
3127
3128 {
3129 .vendor = "Eon",
3130 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003131 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003132 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003133 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003134 .total_size = 2048,
3135 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003136 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003137 .tested = TEST_UNTESTED,
3138 .probe = probe_spi_rdid,
3139 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003140 .block_erasers =
3141 {
3142 {
3143 .eraseblocks = {
3144 {4 * 1024, 2},
3145 {8 * 1024, 1},
3146 {16 * 1024, 1},
3147 {32 * 1024, 1},
3148 {64 * 1024, 31},
3149 },
3150 .block_erase = spi_block_erase_d8,
3151 }, {
3152 .eraseblocks = { {2 * 1024 * 1024, 1} },
3153 .block_erase = spi_block_erase_c7,
3154 }
3155 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003156 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003157 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003158 .write = spi_chip_write_256,
3159 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003160 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003161 },
3162
3163 {
3164 .vendor = "Eon",
3165 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003166 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003167 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003168 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00003169 .total_size = 2048,
3170 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003171 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003172 .tested = TEST_UNTESTED,
3173 .probe = probe_spi_rdid,
3174 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003175 .block_erasers =
3176 {
3177 {
3178 .eraseblocks = {
3179 {64 * 1024, 31},
3180 {32 * 1024, 1},
3181 {16 * 1024, 1},
3182 {8 * 1024, 1},
3183 {4 * 1024, 2},
3184 },
3185 .block_erase = spi_block_erase_d8,
3186 }, {
3187 .eraseblocks = { {2 * 1024 * 1024, 1} },
3188 .block_erase = spi_block_erase_c7,
3189 }
3190 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003191 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003192 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003193 .write = spi_chip_write_256,
3194 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003195 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003196 },
3197
3198 {
3199 .vendor = "Eon",
3200 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003201 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003202 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003203 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003204 .total_size = 4096,
3205 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003206 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003207 .tested = TEST_UNTESTED,
3208 .probe = probe_spi_rdid,
3209 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003210 .block_erasers =
3211 {
3212 {
3213 .eraseblocks = {
3214 {4 * 1024, 2},
3215 {8 * 1024, 1},
3216 {16 * 1024, 1},
3217 {32 * 1024, 1},
3218 {64 * 1024, 63},
3219 },
3220 .block_erase = spi_block_erase_d8,
3221 }, {
3222 .eraseblocks = { {4 * 1024 * 1024, 1} },
3223 .block_erase = spi_block_erase_c7,
3224 }
3225 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003226 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003227 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003228 .write = spi_chip_write_256,
3229 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003230 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003231 },
3232
3233 {
3234 .vendor = "Eon",
3235 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003236 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003237 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003238 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00003239 .total_size = 4096,
3240 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003241 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003242 .tested = TEST_UNTESTED,
3243 .probe = probe_spi_rdid,
3244 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003245 .block_erasers =
3246 {
3247 {
3248 .eraseblocks = {
3249 {64 * 1024, 63},
3250 {32 * 1024, 1},
3251 {16 * 1024, 1},
3252 {8 * 1024, 1},
3253 {4 * 1024, 2},
3254 },
3255 .block_erase = spi_block_erase_d8,
3256 }, {
3257 .eraseblocks = { {4 * 1024 * 1024, 1} },
3258 .block_erase = spi_block_erase_c7,
3259 }
3260 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003261 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003262 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003263 .write = spi_chip_write_256,
3264 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003265 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003266 },
3267
3268 {
3269 .vendor = "Eon",
3270 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003271 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003272 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003273 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003274 .total_size = 8192,
3275 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003276 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003277 .tested = TEST_UNTESTED,
3278 .probe = probe_spi_rdid,
3279 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003280 .block_erasers =
3281 {
3282 {
3283 .eraseblocks = {
3284 {4 * 1024, 2},
3285 {8 * 1024, 1},
3286 {16 * 1024, 1},
3287 {32 * 1024, 1},
3288 {64 * 1024, 127},
3289 },
3290 .block_erase = spi_block_erase_d8,
3291 }, {
3292 .eraseblocks = { {8 * 1024 * 1024, 1} },
3293 .block_erase = spi_block_erase_c7,
3294 }
3295 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003296 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003297 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003298 .write = spi_chip_write_256,
3299 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003300 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003301 },
3302
3303 {
3304 .vendor = "Eon",
3305 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003306 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003307 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003308 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00003309 .total_size = 8192,
3310 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003311 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003312 .tested = TEST_UNTESTED,
3313 .probe = probe_spi_rdid,
3314 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003315 .block_erasers =
3316 {
3317 {
3318 .eraseblocks = {
3319 {64 * 1024, 127},
3320 {32 * 1024, 1},
3321 {16 * 1024, 1},
3322 {8 * 1024, 1},
3323 {4 * 1024, 2},
3324 },
3325 .block_erase = spi_block_erase_d8,
3326 }, {
3327 .eraseblocks = { {8 * 1024 * 1024, 1} },
3328 .block_erase = spi_block_erase_c7,
3329 }
3330 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003331 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003332 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003333 .write = spi_chip_write_256,
3334 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003335 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003336 },
3337
3338 {
3339 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003340 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003341 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003342 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003343 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003344 .total_size = 64,
3345 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003346 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003347 .tested = TEST_UNTESTED,
3348 .probe = probe_spi_rdid,
3349 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003350 .block_erasers =
3351 {
3352 {
3353 .eraseblocks = { {4 * 1024, 16} },
3354 .block_erase = spi_block_erase_20,
3355 }, {
3356 .eraseblocks = { {32 * 1024, 2} },
3357 .block_erase = spi_block_erase_d8,
3358 }, {
3359 .eraseblocks = { {32 * 1024, 2} },
3360 .block_erase = spi_block_erase_52,
3361 }, {
3362 .eraseblocks = { {64 * 1024, 1} },
3363 .block_erase = spi_block_erase_60,
3364 }, {
3365 .eraseblocks = { {64 * 1024, 1} },
3366 .block_erase = spi_block_erase_c7,
3367 }
3368 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003369 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003370 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003371 .write = spi_chip_write_256,
3372 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003373 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003374 },
3375
3376 {
3377 .vendor = "Eon",
3378 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003379 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003380 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003381 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003382 .total_size = 128,
3383 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003384 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003385 .tested = TEST_UNTESTED,
3386 .probe = probe_spi_rdid,
3387 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003388 .block_erasers =
3389 {
3390 {
3391 .eraseblocks = { {4 * 1024, 32} },
3392 .block_erase = spi_block_erase_20,
3393 }, {
3394 .eraseblocks = { {32 * 1024, 4} },
3395 .block_erase = spi_block_erase_d8,
3396 }, {
3397 .eraseblocks = { {32 * 1024, 4} },
3398 .block_erase = spi_block_erase_52,
3399 }, {
3400 .eraseblocks = { {128 * 1024, 1} },
3401 .block_erase = spi_block_erase_60,
3402 }, {
3403 .eraseblocks = { {128 * 1024, 1} },
3404 .block_erase = spi_block_erase_c7,
3405 }
3406 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003407 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003408 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003409 .write = spi_chip_write_256,
3410 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003411 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003412 },
3413
3414 {
3415 .vendor = "Eon",
3416 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003417 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003418 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003419 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003420 .total_size = 256,
3421 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003422 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003423 .tested = TEST_UNTESTED,
3424 .probe = probe_spi_rdid,
3425 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003426 .block_erasers =
3427 {
3428 {
3429 .eraseblocks = { {4 * 1024, 64} },
3430 .block_erase = spi_block_erase_20,
3431 }, {
3432 .eraseblocks = { {64 * 1024, 4} },
3433 .block_erase = spi_block_erase_d8,
3434 }, {
3435 .eraseblocks = { {64 * 1024, 4} },
3436 .block_erase = spi_block_erase_52,
3437 }, {
3438 .eraseblocks = { {256 * 1024, 1} },
3439 .block_erase = spi_block_erase_60,
3440 }, {
3441 .eraseblocks = { {256 * 1024, 1} },
3442 .block_erase = spi_block_erase_c7,
3443 }
3444 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003445 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003446 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003447 .write = spi_chip_write_256,
3448 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003449 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003450 },
3451
3452 {
3453 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003454 .name = "EN25F40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003455 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003456 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003457 .model_id = EON_EN25F40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003458 .total_size = 512,
3459 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003460 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00003461 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003462 .probe = probe_spi_rdid,
3463 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003464 .block_erasers =
3465 {
3466 {
Sean Nelson54596372010-01-09 05:30:14 +00003467 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003468 .block_erase = spi_block_erase_20,
3469 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003470 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003471 .block_erase = spi_block_erase_d8,
3472 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003473 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003474 .block_erase = spi_block_erase_60,
3475 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003476 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003477 .block_erase = spi_block_erase_c7,
3478 },
3479 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003480 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003481 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003482 .write = spi_chip_write_256,
3483 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003484 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003485 },
3486
3487 {
3488 .vendor = "Eon",
3489 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003490 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003491 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003492 .model_id = EON_EN25F80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003493 .total_size = 1024,
3494 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003495 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00003496 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003497 .probe = probe_spi_rdid,
3498 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003499 .block_erasers =
3500 {
3501 {
3502 .eraseblocks = { {4 * 1024, 256} },
3503 .block_erase = spi_block_erase_20,
3504 }, {
3505 .eraseblocks = { {64 * 1024, 16} },
3506 .block_erase = spi_block_erase_d8,
3507 }, {
3508 .eraseblocks = { {1024 * 1024, 1} },
3509 .block_erase = spi_block_erase_60,
3510 }, {
3511 .eraseblocks = { {1024 * 1024, 1} },
3512 .block_erase = spi_block_erase_c7,
3513 }
3514 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003515 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003516 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003517 .write = spi_chip_write_256,
3518 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003519 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003520 },
3521
3522 {
3523 .vendor = "Eon",
3524 .name = "EN25F16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003525 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003526 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003527 .model_id = EON_EN25F16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003528 .total_size = 2048,
3529 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003530 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzel018d4822011-10-21 12:33:07 +00003531 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003532 .probe = probe_spi_rdid,
3533 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003534 .block_erasers =
3535 {
3536 {
3537 .eraseblocks = { {4 * 1024, 512} },
3538 .block_erase = spi_block_erase_20,
3539 }, {
3540 .eraseblocks = { {64 * 1024, 32} },
3541 .block_erase = spi_block_erase_d8,
3542 }, {
3543 .eraseblocks = { {2 * 1024 * 1024, 1} },
3544 .block_erase = spi_block_erase_60,
3545 }, {
3546 .eraseblocks = { {2 * 1024 * 1024, 1} },
3547 .block_erase = spi_block_erase_c7,
3548 }
3549 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003550 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003551 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003552 .write = spi_chip_write_256,
3553 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003554 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003555 },
3556
3557 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003558 .vendor = "Eon",
3559 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003560 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003561 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003562 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003563 .total_size = 4096,
3564 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003565 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003566 .tested = TEST_UNTESTED,
3567 .probe = probe_spi_rdid,
3568 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003569 .block_erasers =
3570 {
3571 {
3572 .eraseblocks = { {4 * 1024, 1024} },
3573 .block_erase = spi_block_erase_20,
3574 }, {
3575 .eraseblocks = { {64 * 1024, 64} },
3576 .block_erase = spi_block_erase_d8,
3577 }, {
3578 .eraseblocks = { {4 * 1024 * 1024, 1} },
3579 .block_erase = spi_block_erase_60,
3580 }, {
3581 .eraseblocks = { {4 * 1024 * 1024, 1} },
3582 .block_erase = spi_block_erase_c7,
3583 }
3584 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003585 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003586 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003587 .write = spi_chip_write_256,
3588 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003589 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003590 },
3591
3592 {
Russ Dill3cd5a122010-03-05 08:44:11 +00003593 .vendor = "Eon",
Stefan Taunerd932fd02012-09-06 17:37:16 +00003594 .name = "EN25F64",
3595 .bustype = BUS_SPI,
3596 .manufacture_id = EON_ID_NOPREFIX,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00003597 .model_id = EON_EN25F64,
Stefan Taunerd932fd02012-09-06 17:37:16 +00003598 .total_size = 8192,
3599 .page_size = 256,
3600 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00003601 .tested = TEST_OK_PREW,
Stefan Taunerd932fd02012-09-06 17:37:16 +00003602 .probe = probe_spi_rdid,
3603 .probe_timing = TIMING_ZERO,
3604 .block_erasers =
3605 {
3606 {
3607 .eraseblocks = { {4 * 1024, 2048} },
3608 .block_erase = spi_block_erase_20,
3609 }, {
3610 .eraseblocks = { {64 * 1024, 128} },
3611 .block_erase = spi_block_erase_d8,
3612 }, {
3613 .eraseblocks = { {8 * 1024 * 1024, 1} },
3614 .block_erase = spi_block_erase_60,
3615 }, {
3616 .eraseblocks = { {8 * 1024 * 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 */
Stefan Taunerd932fd02012-09-06 17:37:16 +00003621 .unlock = spi_disable_blockprotect,
3622 .write = spi_chip_write_256,
3623 .read = spi_chip_read,
3624 .voltage = {2700, 3600},
3625 },
3626
3627 {
3628 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00003629 .name = "EN25Q40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003630 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003631 .manufacture_id = EON_ID_NOPREFIX,
3632 .model_id = EON_EN25Q40,
3633 .total_size = 512,
3634 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003635 /* OTP: 256B total; enter 0x3A */
3636 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003637 .tested = TEST_UNTESTED,
3638 .probe = probe_spi_rdid,
3639 .probe_timing = TIMING_ZERO,
3640 .block_erasers =
3641 {
3642 {
3643 .eraseblocks = { {4 * 1024, 128} },
3644 .block_erase = spi_block_erase_20,
3645 }, {
3646 .eraseblocks = { {64 * 1024, 8} },
3647 .block_erase = spi_block_erase_d8,
3648 }, {
3649 .eraseblocks = { {512 * 1024, 1} },
3650 .block_erase = spi_block_erase_60,
3651 }, {
3652 .eraseblocks = { {512 * 1024, 1} },
3653 .block_erase = spi_block_erase_c7,
3654 }
3655 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003656 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003657 .unlock = spi_disable_blockprotect,
3658 .write = spi_chip_write_256,
3659 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003660 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003661 },
3662
3663 {
3664 .vendor = "Eon",
3665 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003666 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003667 .manufacture_id = EON_ID_NOPREFIX,
3668 .model_id = EON_EN25Q80,
3669 .total_size = 1024,
3670 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003671 /* OTP: 256B total; enter 0x3A */
3672 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003673 .tested = TEST_UNTESTED,
3674 .probe = probe_spi_rdid,
3675 .probe_timing = TIMING_ZERO,
3676 .block_erasers =
3677 {
3678 {
3679 .eraseblocks = { {4 * 1024, 256} },
3680 .block_erase = spi_block_erase_20,
3681 }, {
3682 .eraseblocks = { {64 * 1024, 16} },
3683 .block_erase = spi_block_erase_d8,
3684 }, {
3685 .eraseblocks = { {1024 * 1024, 1} },
3686 .block_erase = spi_block_erase_60,
3687 }, {
3688 .eraseblocks = { {1024 * 1024, 1} },
3689 .block_erase = spi_block_erase_c7,
3690 }
3691 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003692 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003693 .unlock = spi_disable_blockprotect,
3694 .write = spi_chip_write_256,
3695 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003696 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003697 },
3698
3699 {
3700 /* Note: EN25D16 is an evil twin which shares the model ID
3701 but has different write protection capabilities */
3702 .vendor = "Eon",
3703 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003704 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003705 .manufacture_id = EON_ID_NOPREFIX,
3706 .model_id = EON_EN25Q16,
3707 .total_size = 2048,
3708 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003709 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
3710 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003711 .tested = TEST_UNTESTED,
3712 .probe = probe_spi_rdid,
3713 .probe_timing = TIMING_ZERO,
3714 .block_erasers =
3715 {
3716 {
3717 .eraseblocks = { {4 * 1024, 512} },
3718 .block_erase = spi_block_erase_20,
3719 }, {
3720 .eraseblocks = { {64 * 1024, 32} },
3721 .block_erase = spi_block_erase_d8,
3722 }, {
3723 /* not supported by Q16 version */
3724 .eraseblocks = { {64 * 1024, 32} },
3725 .block_erase = spi_block_erase_52,
3726 }, {
3727 .eraseblocks = { {2 * 1024 * 1024, 1} },
3728 .block_erase = spi_block_erase_60,
3729 }, {
3730 .eraseblocks = { {2 * 1024 * 1024, 1} },
3731 .block_erase = spi_block_erase_c7,
3732 }
3733 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003734 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003735 .unlock = spi_disable_blockprotect,
3736 .write = spi_chip_write_256,
3737 .read = spi_chip_read,
3738 .voltage = {2700, 3600},
3739 },
3740
3741 {
3742 .vendor = "Eon",
3743 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003744 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003745 .manufacture_id = EON_ID_NOPREFIX,
3746 .model_id = EON_EN25Q32,
3747 .total_size = 4096,
3748 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003749 /* OTP: 512B total; enter 0x3A */
3750 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003751 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00003752 .probe = probe_spi_rdid,
3753 .probe_timing = TIMING_ZERO,
3754 .block_erasers =
3755 {
3756 {
3757 .eraseblocks = { {4 * 1024, 1024} },
3758 .block_erase = spi_block_erase_20,
3759 }, {
3760 .eraseblocks = { {64 * 1024, 64} },
3761 .block_erase = spi_block_erase_d8,
3762 }, {
3763 .eraseblocks = { {4 * 1024 * 1024, 1} },
3764 .block_erase = spi_block_erase_60,
3765 }, {
3766 .eraseblocks = { {4 * 1024 * 1024, 1} },
3767 .block_erase = spi_block_erase_c7,
3768 }
3769 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003770 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003771 .unlock = spi_disable_blockprotect,
3772 .write = spi_chip_write_256,
3773 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003774 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003775 },
3776
3777 {
3778 .vendor = "Eon",
3779 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003780 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003781 .manufacture_id = EON_ID_NOPREFIX,
3782 .model_id = EON_EN25Q64,
3783 .total_size = 8192,
3784 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003785 /* OTP: 512B total; enter 0x3A */
3786 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003787 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00003788 .probe = probe_spi_rdid,
3789 .probe_timing = TIMING_ZERO,
3790 .block_erasers =
3791 {
3792 {
3793 .eraseblocks = { {4 * 1024, 2048} },
3794 .block_erase = spi_block_erase_20,
3795 }, {
3796 .eraseblocks = { {64 * 1024, 128} },
3797 .block_erase = spi_block_erase_d8,
3798 }, {
3799 .eraseblocks = { {8 * 1024 * 1024, 1} },
3800 .block_erase = spi_block_erase_60,
3801 }, {
3802 .eraseblocks = { {8 * 1024 * 1024, 1} },
3803 .block_erase = spi_block_erase_c7,
3804 }
3805 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003806 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003807 .unlock = spi_disable_blockprotect,
3808 .write = spi_chip_write_256,
3809 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003810 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003811 },
3812
3813 {
3814 .vendor = "Eon",
3815 .name = "EN25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003816 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003817 .manufacture_id = EON_ID_NOPREFIX,
3818 .model_id = EON_EN25Q128,
3819 .total_size = 16384,
3820 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003821 /* OTP: 512B total; enter 0x3A */
3822 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003823 .tested = TEST_UNTESTED,
3824 .probe = probe_spi_rdid,
3825 .probe_timing = TIMING_ZERO,
3826 .block_erasers =
3827 {
3828 {
3829 .eraseblocks = { {4 * 1024, 4096} },
3830 .block_erase = spi_block_erase_20,
3831 }, {
3832 .eraseblocks = { {64 * 1024, 256} },
3833 .block_erase = spi_block_erase_d8,
3834 }, {
3835 .eraseblocks = { {16 * 1024 * 1024, 1} },
3836 .block_erase = spi_block_erase_60,
3837 }, {
3838 .eraseblocks = { {16 * 1024 * 1024, 1} },
3839 .block_erase = spi_block_erase_c7,
3840 }
3841 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003842 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003843 .unlock = spi_disable_blockprotect,
3844 .write = spi_chip_write_256,
3845 .read = spi_chip_read,
3846 },
3847
3848 {
3849 .vendor = "Eon",
3850 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003851 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003852 .manufacture_id = EON_ID_NOPREFIX,
3853 .model_id = EON_EN25QH16,
3854 .total_size = 2048,
3855 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003856 /* supports SFDP */
3857 /* OTP: 512B total; enter 0x3A */
3858 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00003859 .tested = TEST_OK_PR,
David Hendricks6d715302011-07-24 22:21:57 +00003860 .probe = probe_spi_rdid,
3861 .probe_timing = TIMING_ZERO,
3862 .block_erasers =
3863 {
3864 {
3865 .eraseblocks = { {4 * 1024, 512} },
3866 .block_erase = spi_block_erase_20,
3867 }, {
3868 .eraseblocks = { {64 * 1024, 32} },
3869 .block_erase = spi_block_erase_d8,
3870 }, {
3871 .eraseblocks = { {1024 * 2048, 1} },
3872 .block_erase = spi_block_erase_60,
3873 }, {
3874 .eraseblocks = { {1024 * 2048, 1} },
3875 .block_erase = spi_block_erase_c7,
3876 }
3877 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003878 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003879 .unlock = spi_disable_blockprotect,
3880 .write = spi_chip_write_256,
3881 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00003882 .voltage = {2700, 3600},
3883 },
3884
3885 {
3886 .vendor = "Eon",
3887 .name = "EN25QH32",
3888 .bustype = BUS_SPI,
3889 .manufacture_id = EON_ID_NOPREFIX,
3890 .model_id = EON_EN25QH32,
3891 .total_size = 4096,
3892 .page_size = 256,
3893 /* supports SFDP */
3894 /* OTP: 512B total; enter 0x3A */
3895 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3896 .tested = TEST_UNTESTED,
3897 .probe = probe_spi_rdid,
3898 .probe_timing = TIMING_ZERO,
3899 .block_erasers =
3900 {
3901 {
3902 .eraseblocks = { {4 * 1024, 1024} },
3903 .block_erase = spi_block_erase_20,
3904 }, {
3905 .eraseblocks = { {64 * 1024, 64} },
3906 .block_erase = spi_block_erase_d8,
3907 }, {
3908 .eraseblocks = { {1024 * 4096, 1} },
3909 .block_erase = spi_block_erase_60,
3910 }, {
3911 .eraseblocks = { {1024 * 4096, 1} },
3912 .block_erase = spi_block_erase_c7,
3913 }
3914 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003915 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stefan Tauner2cef9162012-05-14 01:51:46 +00003916 .unlock = spi_disable_blockprotect,
3917 .write = spi_chip_write_256,
3918 .read = spi_chip_read,
3919 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003920 },
3921
3922 {
3923 .vendor = "Eon",
Russ Dill3cd5a122010-03-05 08:44:11 +00003924 .name = "EN29F010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003925 .bustype = BUS_PARALLEL,
Russ Dill3cd5a122010-03-05 08:44:11 +00003926 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003927 .model_id = EON_EN29F010,
Russ Dill3cd5a122010-03-05 08:44:11 +00003928 .total_size = 128,
3929 .page_size = 128,
3930 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003931 .tested = TEST_OK_PRE,
Russ Dill3cd5a122010-03-05 08:44:11 +00003932 .probe = probe_jedec,
3933 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3934 .block_erasers =
3935 {
3936 {
3937 .eraseblocks = { {16 * 1024, 8} },
3938 .block_erase = erase_sector_jedec,
3939 },
3940 {
3941 .eraseblocks = { {128 * 1024, 1} },
3942 .block_erase = erase_chip_block_jedec,
3943 },
3944 },
3945 .write = write_jedec_1,
3946 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003947 .voltage = {4500, 5500},
Russ Dill3cd5a122010-03-05 08:44:11 +00003948 },
3949
3950 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003951 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003952 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003953 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003954 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003955 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003956 .total_size = 256,
3957 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003958 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003959 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003960 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003961 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003962 .block_erasers =
3963 {
3964 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003965 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003966 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003967 {8 * 1024, 2},
3968 {32 * 1024, 1},
3969 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003970 },
3971 .block_erase = erase_sector_jedec,
3972 }, {
3973 .eraseblocks = { {256 * 1024, 1} },
3974 .block_erase = erase_chip_block_jedec,
3975 },
3976 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003977 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003978 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003979 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003980 },
3981
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003982 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003983 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003984 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003985 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003986 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003987 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003988 .total_size = 256,
3989 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003990 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00003991 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003992 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003993 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003994 .block_erasers =
3995 {
3996 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003997 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003998 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003999 {32 * 1024, 1},
4000 {8 * 1024, 2},
4001 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00004002 },
4003 .block_erase = erase_sector_jedec,
4004 }, {
4005 .eraseblocks = { {256 * 1024, 1} },
4006 .block_erase = erase_chip_block_jedec,
4007 },
4008 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00004009 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004010 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004011 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004012 },
4013
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004014 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00004015 .vendor = "Eon",
4016 .name = "EN29LV640B",
4017 .bustype = BUS_PARALLEL,
4018 .manufacture_id = EON_ID,
4019 .model_id = EON_EN29LV640B,
4020 .total_size = 8192,
4021 .page_size = 8192,
4022 .feature_bits = 0,
4023 .tested = TEST_OK_PREW,
4024 .probe = probe_en29lv640b,
4025 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4026 .block_erasers =
4027 {
4028 {
4029 .eraseblocks = {
4030 {8 * 1024, 8},
4031 {64 * 1024, 127},
4032 },
4033 .block_erase = block_erase_en29lv640b,
4034 }, {
4035 .eraseblocks = { {8 * 1024 * 1024, 1} },
4036 .block_erase = block_erase_chip_en29lv640b,
4037 },
4038 },
4039 .write = write_en29lv640b,
4040 .read = read_memmapped,
4041 .voltage = {2700, 3600},
4042 },
4043
4044 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004045 .vendor = "Fujitsu",
4046 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004047 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004048 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004049 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004050 .total_size = 512,
4051 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004052 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004053 .tested = TEST_UNTESTED,
4054 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004055 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004056 .block_erasers =
4057 {
4058 {
4059 .eraseblocks = {
4060 {16 * 1024, 1},
4061 {8 * 1024, 2},
4062 {32 * 1024, 1},
4063 {64 * 1024, 7},
4064 },
Sean Nelson35727f72010-01-28 23:55:12 +00004065 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004066 }, {
4067 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004068 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004069 },
4070 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004071 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004072 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004073 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004074 },
4075
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004076 {
4077 .vendor = "Fujitsu",
4078 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004079 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004080 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004081 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004082 .total_size = 512,
4083 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004084 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004085 .tested = TEST_UNTESTED,
4086 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004087 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004088 .block_erasers =
4089 {
4090 {
4091 .eraseblocks = {
4092 {64 * 1024, 7},
4093 {32 * 1024, 1},
4094 {8 * 1024, 2},
4095 {16 * 1024, 1},
4096 },
Sean Nelson35727f72010-01-28 23:55:12 +00004097 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004098 }, {
4099 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004100 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004101 },
4102 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004103 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004104 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004105 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004106 },
4107
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004108 {
Sean Nelson35727f72010-01-28 23:55:12 +00004109 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004110 .vendor = "Fujitsu",
4111 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004112 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004113 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004114 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004115 .total_size = 512,
4116 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004117 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00004118 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004119 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00004120 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004121 .block_erasers =
4122 {
4123 {
4124 .eraseblocks = {
4125 {16 * 1024, 1},
4126 {8 * 1024, 2},
4127 {32 * 1024, 1},
4128 {64 * 1024, 7},
4129 },
4130 .block_erase = block_erase_m29f400bt,
4131 }, {
4132 .eraseblocks = { {512 * 1024, 1} },
4133 .block_erase = block_erase_chip_m29f400bt,
4134 },
4135 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00004136 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004137 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004138 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00004139 },
4140
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004141 {
4142 .vendor = "Fujitsu",
4143 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004144 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004145 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004146 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004147 .total_size = 512,
4148 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004149 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004150 .tested = TEST_UNTESTED,
4151 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00004152 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004153 .block_erasers =
4154 {
4155 {
4156 .eraseblocks = {
4157 {64 * 1024, 7},
4158 {32 * 1024, 1},
4159 {8 * 1024, 2},
4160 {16 * 1024, 1},
4161 },
4162 .block_erase = block_erase_m29f400bt,
4163 }, {
4164 .eraseblocks = { {512 * 1024, 1} },
4165 .block_erase = block_erase_chip_m29f400bt,
4166 },
4167 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00004168 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004169 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004170 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00004171 },
4172
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004173 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004174 .vendor = "GigaDevice",
4175 .name = "GD25Q20",
4176 .bustype = BUS_SPI,
4177 .manufacture_id = GIGADEVICE_ID,
4178 .model_id = GIGADEVICE_GD25Q20,
4179 .total_size = 256,
4180 .page_size = 256,
4181 .feature_bits = FEATURE_WRSR_WREN,
4182 .tested = TEST_UNTESTED,
4183 .probe = probe_spi_rdid,
4184 .probe_timing = TIMING_ZERO,
4185 .block_erasers =
4186 {
4187 {
4188 .eraseblocks = { {4 * 1024, 64} },
4189 .block_erase = spi_block_erase_20,
4190 }, {
4191 .eraseblocks = { {32 * 1024, 8} },
4192 .block_erase = spi_block_erase_52,
4193 }, {
4194 .eraseblocks = { {64 * 1024, 4} },
4195 .block_erase = spi_block_erase_d8,
4196 }, {
4197 .eraseblocks = { {256 * 1024, 1} },
4198 .block_erase = spi_block_erase_60,
4199 }, {
4200 .eraseblocks = { {256 * 1024, 1} },
4201 .block_erase = spi_block_erase_c7,
4202 }
4203 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004204 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004205 .unlock = spi_disable_blockprotect,
4206 .write = spi_chip_write_256,
4207 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004208 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004209 },
4210
4211 {
4212 .vendor = "GigaDevice",
4213 .name = "GD25Q40",
4214 .bustype = BUS_SPI,
4215 .manufacture_id = GIGADEVICE_ID,
4216 .model_id = GIGADEVICE_GD25Q40,
4217 .total_size = 512,
4218 .page_size = 256,
4219 .feature_bits = FEATURE_WRSR_WREN,
4220 .tested = TEST_UNTESTED,
4221 .probe = probe_spi_rdid,
4222 .probe_timing = TIMING_ZERO,
4223 .block_erasers =
4224 {
4225 {
4226 .eraseblocks = { {4 * 1024, 128} },
4227 .block_erase = spi_block_erase_20,
4228 }, {
4229 .eraseblocks = { {32 * 1024, 16} },
4230 .block_erase = spi_block_erase_52,
4231 }, {
4232 .eraseblocks = { {64 * 1024, 8} },
4233 .block_erase = spi_block_erase_d8,
4234 }, {
4235 .eraseblocks = { {512 * 1024, 1} },
4236 .block_erase = spi_block_erase_60,
4237 }, {
4238 .eraseblocks = { {512 * 1024, 1} },
4239 .block_erase = spi_block_erase_c7,
4240 }
4241 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004242 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004243 .unlock = spi_disable_blockprotect,
4244 .write = spi_chip_write_256,
4245 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004246 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004247 },
4248
4249 {
4250 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004251 .name = "GD25Q80(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004252 .bustype = BUS_SPI,
4253 .manufacture_id = GIGADEVICE_ID,
4254 .model_id = GIGADEVICE_GD25Q80,
4255 .total_size = 1024,
4256 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004257 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004258 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4259 .tested = TEST_OK_PREW,
4260 .probe = probe_spi_rdid,
4261 .probe_timing = TIMING_ZERO,
4262 .block_erasers =
4263 {
4264 {
4265 .eraseblocks = { {4 * 1024, 256} },
4266 .block_erase = spi_block_erase_20,
4267 }, {
4268 .eraseblocks = { {32 * 1024, 32} },
4269 .block_erase = spi_block_erase_52,
4270 }, {
4271 .eraseblocks = { {64 * 1024, 16} },
4272 .block_erase = spi_block_erase_d8,
4273 }, {
4274 .eraseblocks = { {1024 * 1024, 1} },
4275 .block_erase = spi_block_erase_60,
4276 }, {
4277 .eraseblocks = { {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 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004282 .unlock = spi_disable_blockprotect,
4283 .write = spi_chip_write_256,
4284 .read = spi_chip_read,
4285 .voltage = {2700, 3600},
4286 },
4287
4288 {
4289 .vendor = "GigaDevice",
4290 .name = "GD25Q16",
4291 .bustype = BUS_SPI,
4292 .manufacture_id = GIGADEVICE_ID,
4293 .model_id = GIGADEVICE_GD25Q16,
4294 .total_size = 2048,
4295 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004296 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004297 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4298 .tested = TEST_UNTESTED,
4299 .probe = probe_spi_rdid,
4300 .probe_timing = TIMING_ZERO,
4301 .block_erasers =
4302 {
4303 {
4304 .eraseblocks = { {4 * 1024, 512} },
4305 .block_erase = spi_block_erase_20,
4306 }, {
4307 .eraseblocks = { {32 * 1024, 64} },
4308 .block_erase = spi_block_erase_52,
4309 }, {
4310 .eraseblocks = { {64 * 1024, 32} },
4311 .block_erase = spi_block_erase_d8,
4312 }, {
4313 .eraseblocks = { {2 * 1024 * 1024, 1} },
4314 .block_erase = spi_block_erase_60,
4315 }, {
4316 .eraseblocks = { {2 * 1024 * 1024, 1} },
4317 .block_erase = spi_block_erase_c7,
4318 }
4319 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004320 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004321 .unlock = spi_disable_blockprotect,
4322 .write = spi_chip_write_256,
4323 .read = spi_chip_read,
4324 .voltage = {2700, 3600},
4325 },
4326
4327 {
4328 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004329 .name = "GD25Q32(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004330 .bustype = BUS_SPI,
4331 .manufacture_id = GIGADEVICE_ID,
4332 .model_id = GIGADEVICE_GD25Q32,
4333 .total_size = 4096,
4334 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004335 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004336 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4337 .tested = TEST_UNTESTED,
4338 .probe = probe_spi_rdid,
4339 .probe_timing = TIMING_ZERO,
4340 .block_erasers =
4341 {
4342 {
4343 .eraseblocks = { {4 * 1024, 1024} },
4344 .block_erase = spi_block_erase_20,
4345 }, {
4346 .eraseblocks = { {32 * 1024, 128} },
4347 .block_erase = spi_block_erase_52,
4348 }, {
4349 .eraseblocks = { {64 * 1024, 64} },
4350 .block_erase = spi_block_erase_d8,
4351 }, {
4352 .eraseblocks = { {4 * 1024 * 1024, 1} },
4353 .block_erase = spi_block_erase_60,
4354 }, {
4355 .eraseblocks = { {4 * 1024 * 1024, 1} },
4356 .block_erase = spi_block_erase_c7,
4357 }
4358 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004359 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004360 .unlock = spi_disable_blockprotect,
4361 .write = spi_chip_write_256,
4362 .read = spi_chip_read,
4363 .voltage = {2700, 3600},
4364 },
4365
4366 {
4367 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004368 .name = "GD25Q64(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004369 .bustype = BUS_SPI,
4370 .manufacture_id = GIGADEVICE_ID,
4371 .model_id = GIGADEVICE_GD25Q64,
4372 .total_size = 8192,
4373 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004374 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004375 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00004376 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004377 .probe = probe_spi_rdid,
4378 .probe_timing = TIMING_ZERO,
4379 .block_erasers =
4380 {
4381 {
4382 .eraseblocks = { {4 * 1024, 2048} },
4383 .block_erase = spi_block_erase_20,
4384 }, {
4385 .eraseblocks = { {32 * 1024, 256} },
4386 .block_erase = spi_block_erase_52,
4387 }, {
4388 .eraseblocks = { {64 * 1024, 128} },
4389 .block_erase = spi_block_erase_d8,
4390 }, {
4391 .eraseblocks = { {8 * 1024 * 1024, 1} },
4392 .block_erase = spi_block_erase_60,
4393 }, {
4394 .eraseblocks = { {8 * 1024 * 1024, 1} },
4395 .block_erase = spi_block_erase_c7,
4396 }
4397 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004398 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004399 .unlock = spi_disable_blockprotect,
4400 .write = spi_chip_write_256,
4401 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004402 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004403 },
4404
4405 {
4406 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004407 .name = "GD25Q128B",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004408 .bustype = BUS_SPI,
4409 .manufacture_id = GIGADEVICE_ID,
4410 .model_id = GIGADEVICE_GD25Q128,
4411 .total_size = 16384,
4412 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004413 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004414 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4415 .tested = TEST_UNTESTED,
4416 .probe = probe_spi_rdid,
4417 .probe_timing = TIMING_ZERO,
4418 .block_erasers =
4419 {
4420 {
4421 .eraseblocks = { {4 * 1024, 4096} },
4422 .block_erase = spi_block_erase_20,
4423 }, {
4424 .eraseblocks = { {32 * 1024, 512} },
4425 .block_erase = spi_block_erase_52,
4426 }, {
4427 .eraseblocks = { {64 * 1024, 256} },
4428 .block_erase = spi_block_erase_d8,
4429 }, {
4430 .eraseblocks = { {16 * 1024 * 1024, 1} },
4431 .block_erase = spi_block_erase_60,
4432 }, {
4433 .eraseblocks = { {16 * 1024 * 1024, 1} },
4434 .block_erase = spi_block_erase_c7,
4435 }
4436 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004437 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004438 .unlock = spi_disable_blockprotect,
4439 .write = spi_chip_write_256,
4440 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004441 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004442 },
4443
4444 {
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004445 .vendor = "GigaDevice",
4446 .name = "GD25LQ32",
4447 .bustype = BUS_SPI,
4448 .manufacture_id = GIGADEVICE_ID,
4449 .model_id = GIGADEVICE_GD25LQ32,
4450 .total_size = 4096,
4451 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004452 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
4453 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004454 .tested = TEST_OK_PREW,
4455 .probe = probe_spi_rdid,
4456 .probe_timing = TIMING_ZERO,
4457 .block_erasers =
4458 {
4459 {
4460 .eraseblocks = { {4 * 1024, 1024} },
4461 .block_erase = spi_block_erase_20,
4462 }, {
4463 .eraseblocks = { {32 * 1024, 128} },
4464 .block_erase = spi_block_erase_52,
4465 }, {
4466 .eraseblocks = { {64 * 1024, 64} },
4467 .block_erase = spi_block_erase_d8,
4468 }, {
4469 .eraseblocks = { {4 * 1024 * 1024, 1} },
4470 .block_erase = spi_block_erase_60,
4471 }, {
4472 .eraseblocks = { {4 * 1024 * 1024, 1} },
4473 .block_erase = spi_block_erase_c7,
4474 }
4475 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004476 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004477 .unlock = spi_disable_blockprotect,
4478 .write = spi_chip_write_256,
4479 .read = spi_chip_read,
4480 .voltage = {1700, 1950},
4481 },
4482
4483 {
David Borgc96a8bd2010-06-21 16:12:22 +00004484 .vendor = "Hyundai",
4485 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004486 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004487 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004488 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00004489 .total_size = 256,
4490 .page_size = 256 * 1024,
4491 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004492 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00004493 .probe = probe_jedec,
4494 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4495 .block_erasers =
4496 {
4497 {
4498 .eraseblocks = {
4499 {64 * 1024, 3},
4500 {32 * 1024, 1},
4501 {8 * 1024, 2},
4502 {16 * 1024, 1},
4503 },
4504 .block_erase = erase_sector_jedec,
4505 }, {
4506 .eraseblocks = { {256 * 1024, 1} },
4507 .block_erase = erase_chip_block_jedec,
4508 },
4509 },
4510 .write = write_jedec_1,
4511 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004512 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004513 },
4514
4515 {
4516 .vendor = "Hyundai",
4517 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004518 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004519 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004520 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00004521 .total_size = 256,
4522 .page_size = 256 * 1024,
4523 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
4524 .tested = TEST_UNTESTED,
4525 .probe = probe_jedec,
4526 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4527 .block_erasers =
4528 {
4529 {
4530 .eraseblocks = {
4531 {16 * 1024, 1},
4532 {8 * 1024, 2},
4533 {32 * 1024, 1},
4534 {64 * 1024, 3},
4535 },
4536 .block_erase = erase_sector_jedec,
4537 }, {
4538 .eraseblocks = { {256 * 1024, 1} },
4539 .block_erase = erase_chip_block_jedec,
4540 },
4541 },
4542 .write = write_jedec_1,
4543 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004544 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004545 },
4546
4547 {
Joshua Roysf1324e02010-09-16 00:51:51 +00004548 .vendor = "Hyundai",
4549 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004550 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00004551 .manufacture_id = HYUNDAI_ID,
4552 .model_id = HYUNDAI_HY29F040A,
4553 .total_size = 512,
4554 .page_size = 64 * 1024,
4555 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4556 .tested = TEST_UNTESTED,
4557 .probe = probe_jedec,
4558 .probe_timing = TIMING_ZERO,
4559 .block_erasers =
4560 {
4561 {
4562 .eraseblocks = { {64 * 1024, 8} },
4563 .block_erase = erase_sector_jedec,
4564 }, {
4565 .eraseblocks = { {512 * 1024, 1} },
4566 .block_erase = erase_chip_block_jedec,
4567 },
4568 },
4569 .write = write_jedec_1,
4570 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004571 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00004572 },
4573
4574 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004575 .vendor = "Intel",
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00004576 .name = "25F160S33B8",
4577 .bustype = BUS_SPI,
4578 .manufacture_id = INTEL_ID,
4579 .model_id = INTEL_25F160S33B8,
4580 .total_size = 2048,
4581 .page_size = 256,
4582 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4583 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4584 .tested = TEST_UNTESTED,
4585 .probe = probe_spi_rdid,
4586 .probe_timing = TIMING_ZERO,
4587 .block_erasers =
4588 {
4589 {
4590 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4591 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4592 * have no effect on the memory contents, but sets a flag in the SR.
4593 .eraseblocks = {
4594 {8 * 1024, 8},
4595 {64 * 1024, 31} // inaccessible
4596 },
4597 .block_erase = spi_block_erase_40,
4598 }, { */
4599 .eraseblocks = { {64 * 1024, 32} },
4600 .block_erase = spi_block_erase_d8,
4601 }, {
4602 .eraseblocks = { {2 * 1024 * 1024, 1} },
4603 .block_erase = spi_block_erase_c7,
4604 }
4605 },
4606 .printlock = spi_prettyprint_status_register_s33,
4607 .unlock = spi_disable_blockprotect_s33,
4608 .write = spi_chip_write_256,
4609 .read = spi_chip_read, /* also fast read 0x0B */
4610 .voltage = {2700, 3600},
4611 },
4612
4613 {
4614 .vendor = "Intel",
4615 .name = "25F160S33T8",
4616 .bustype = BUS_SPI,
4617 .manufacture_id = INTEL_ID,
4618 .model_id = INTEL_25F160S33T8,
4619 .total_size = 2048,
4620 .page_size = 256,
4621 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4622 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4623 .tested = TEST_UNTESTED,
4624 .probe = probe_spi_rdid,
4625 .probe_timing = TIMING_ZERO,
4626 .block_erasers =
4627 {
4628 {
4629 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4630 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4631 * have no effect on the memory contents, but sets a flag in the SR.
4632 .eraseblocks = {
4633 {64 * 1024, 31}, // inaccessible
4634 {8 * 1024, 8}
4635 },
4636 .block_erase = spi_block_erase_40,
4637 }, { */
4638 .eraseblocks = { {64 * 1024, 32} },
4639 .block_erase = spi_block_erase_d8,
4640 }, {
4641 .eraseblocks = { {2 * 1024 * 1024, 1} },
4642 .block_erase = spi_block_erase_c7,
4643 }
4644 },
4645 .printlock = spi_prettyprint_status_register_s33,
4646 .unlock = spi_disable_blockprotect_s33,
4647 .write = spi_chip_write_256,
4648 .read = spi_chip_read, /* also fast read 0x0B */
4649 .voltage = {2700, 3600},
4650 },
4651
4652 {
4653 .vendor = "Intel",
4654 .name = "25F320S33B8",
4655 .bustype = BUS_SPI,
4656 .manufacture_id = INTEL_ID,
4657 .model_id = INTEL_25F320S33B8,
4658 .total_size = 4096,
4659 .page_size = 256,
4660 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4661 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4662 .tested = TEST_UNTESTED,
4663 .probe = probe_spi_rdid,
4664 .probe_timing = TIMING_ZERO,
4665 .block_erasers =
4666 {
4667 {
4668 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4669 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4670 * have no effect on the memory contents, but sets a flag in the SR.
4671 .eraseblocks = {
4672 {8 * 1024, 8},
4673 {64 * 1024, 63} // inaccessible
4674 },
4675 .block_erase = spi_block_erase_40,
4676 }, { */
4677 .eraseblocks = { {64 * 1024, 64} },
4678 .block_erase = spi_block_erase_d8,
4679 }, {
4680 .eraseblocks = { {4 * 1024 * 1024, 1} },
4681 .block_erase = spi_block_erase_c7,
4682 }
4683 },
4684 .printlock = spi_prettyprint_status_register_s33,
4685 .unlock = spi_disable_blockprotect_s33,
4686 .write = spi_chip_write_256,
4687 .read = spi_chip_read, /* also fast read 0x0B */
4688 .voltage = {2700, 3600},
4689 },
4690
4691 {
4692 .vendor = "Intel",
4693 .name = "25F320S33T8",
4694 .bustype = BUS_SPI,
4695 .manufacture_id = INTEL_ID,
4696 .model_id = INTEL_25F320S33T8,
4697 .total_size = 4096,
4698 .page_size = 256,
4699 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4700 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4701 .tested = TEST_UNTESTED,
4702 .probe = probe_spi_rdid,
4703 .probe_timing = TIMING_ZERO,
4704 .block_erasers =
4705 {
4706 {
4707 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4708 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4709 * have no effect on the memory contents, but sets a flag in the SR.
4710 .eraseblocks = {
4711 {64 * 1024, 63}, // inaccessible
4712 {8 * 1024, 8}
4713 },
4714 .block_erase = spi_block_erase_40,
4715 }, { */
4716 .eraseblocks = { {64 * 1024, 64} },
4717 .block_erase = spi_block_erase_d8,
4718 }, {
4719 .eraseblocks = { {4 * 1024 * 1024, 1} },
4720 .block_erase = spi_block_erase_c7,
4721 }
4722 },
4723 .printlock = spi_prettyprint_status_register_s33,
4724 .unlock = spi_disable_blockprotect_s33,
4725 .write = spi_chip_write_256,
4726 .read = spi_chip_read, /* also fast read 0x0B */
4727 .voltage = {2700, 3600},
4728 },
4729
4730 {
4731 .vendor = "Intel",
4732 .name = "25F640S33B8",
4733 .bustype = BUS_SPI,
4734 .manufacture_id = INTEL_ID,
4735 .model_id = INTEL_25F640S33B8,
4736 .total_size = 8192,
4737 .page_size = 256,
4738 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4739 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4740 .tested = TEST_UNTESTED,
4741 .probe = probe_spi_rdid,
4742 .probe_timing = TIMING_ZERO,
4743 .block_erasers =
4744 {
4745 {
4746 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4747 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4748 * have no effect on the memory contents, but sets a flag in the SR.
4749 .eraseblocks = {
4750 {8 * 1024, 8},
4751 {64 * 1024, 127} // inaccessible
4752 },
4753 .block_erase = spi_block_erase_40,
4754 }, { */
4755 .eraseblocks = { {64 * 1024, 128} },
4756 .block_erase = spi_block_erase_d8,
4757 }, {
4758 .eraseblocks = { {8 * 1024 * 1024, 1} },
4759 .block_erase = spi_block_erase_c7,
4760 }
4761 },
4762 .printlock = spi_prettyprint_status_register_s33,
4763 .unlock = spi_disable_blockprotect_s33,
4764 .write = spi_chip_write_256,
4765 .read = spi_chip_read, /* also fast read 0x0B */
4766 .voltage = {2700, 3600},
4767 },
4768
4769 {
4770 .vendor = "Intel",
4771 .name = "25F640S33T8",
4772 .bustype = BUS_SPI,
4773 .manufacture_id = INTEL_ID,
4774 .model_id = INTEL_25F640S33T8,
4775 .total_size = 8192,
4776 .page_size = 256,
4777 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4778 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4779 .tested = TEST_UNTESTED,
4780 .probe = probe_spi_rdid,
4781 .probe_timing = TIMING_ZERO,
4782 .block_erasers =
4783 {
4784 {
4785 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4786 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4787 * have no effect on the memory contents, but sets a flag in the SR.
4788 .eraseblocks = {
4789 {64 * 1024, 127}, // inaccessible
4790 {8 * 1024, 8}
4791 },
4792 .block_erase = spi_block_erase_40,
4793 }, { */
4794 .eraseblocks = { {64 * 1024, 128} },
4795 .block_erase = spi_block_erase_d8,
4796 }, {
4797 .eraseblocks = { {8 * 1024 * 1024, 1} },
4798 .block_erase = spi_block_erase_c7,
4799 }
4800 },
4801 .printlock = spi_prettyprint_status_register_s33,
4802 .unlock = spi_disable_blockprotect_s33,
4803 .write = spi_chip_write_256,
4804 .read = spi_chip_read, /* also fast read 0x0B */
4805 .voltage = {2700, 3600},
4806 },
4807
4808 {
4809 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004810 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004811 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004812 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004813 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004814 .total_size = 128,
4815 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00004816 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004817 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004818 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004819 .block_erasers =
4820 {
4821 {
4822 .eraseblocks = {
4823 {8 * 1024, 1},
4824 {4 * 1024, 2},
4825 {112 * 1024, 1},
4826 },
Sean Nelson28accc22010-03-19 18:47:06 +00004827 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004828 },
4829 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004830 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004831 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004832 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004833 },
4834
4835 {
4836 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004837 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004838 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004839 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004840 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004841 .total_size = 128,
4842 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004843 .tested = TEST_OK_PR,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004844 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004845 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004846 .block_erasers =
4847 {
4848 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004849 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00004850 {112 * 1024, 1},
4851 {4 * 1024, 2},
4852 {8 * 1024, 1},
4853 },
Sean Nelson28accc22010-03-19 18:47:06 +00004854 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004855 },
4856 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004857 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004858 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004859 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004860 },
4861
4862 {
4863 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004864 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004865 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004866 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004867 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004868 .total_size = 256,
4869 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004870 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004871 .probe = probe_82802ab,
4872 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4873 .block_erasers =
4874 {
4875 {
4876 .eraseblocks = {
4877 {128 * 1024, 1},
4878 {96 * 1024, 1},
4879 {8 * 1024, 2},
4880 {16 * 1024, 1},
4881 },
4882 .block_erase = erase_block_82802ab,
4883 },
4884 },
4885 .write = write_82802ab,
4886 .read = read_memmapped,
4887 },
4888
4889 {
4890 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004891 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004892 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004893 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004894 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004895 .total_size = 512,
4896 .page_size = 256,
4897 .tested = TEST_UNTESTED,
4898 .probe = probe_82802ab,
4899 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004900 .block_erasers =
4901 {
4902 {
4903 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004904 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004905 },
4906 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004907 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004908 .write = write_82802ab,
4909 .read = read_memmapped,
4910 },
4911
4912 {
4913 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004914 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004915 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004916 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004917 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004918 .total_size = 512,
4919 .page_size = 128 * 1024, /* maximal block size */
4920 .tested = TEST_UNTESTED,
4921 .probe = probe_82802ab,
4922 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4923 .block_erasers =
4924 {
4925 {
4926 .eraseblocks = {
4927 {16 * 1024, 1},
4928 {8 * 1024, 2},
4929 {96 * 1024, 1},
4930 {128 * 1024, 3},
4931 },
4932 .block_erase = erase_block_82802ab,
4933 },
4934 },
4935 .write = write_82802ab,
4936 .read = read_memmapped,
4937 },
4938
4939 {
4940 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004941 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004942 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004943 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004944 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004945 .total_size = 512,
4946 .page_size = 128 * 1024, /* maximal block size */
4947 .tested = TEST_UNTESTED,
4948 .probe = probe_82802ab,
4949 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4950 .block_erasers =
4951 {
4952 {
4953 .eraseblocks = {
4954 {128 * 1024, 3},
4955 {96 * 1024, 1},
4956 {8 * 1024, 2},
4957 {16 * 1024, 1},
4958 },
4959 .block_erase = erase_block_82802ab,
4960 },
4961 },
4962 .write = write_82802ab,
4963 .read = read_memmapped,
4964 },
4965
4966 {
4967 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004968 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004969 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004970 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004971 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004972 .total_size = 512,
4973 .page_size = 128 * 1024, /* maximal block size */
4974 .feature_bits = FEATURE_ADDR_SHIFTED,
4975 .tested = TEST_UNTESTED,
4976 .probe = probe_82802ab,
4977 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4978 .block_erasers =
4979 {
4980 {
4981 .eraseblocks = {
4982 {16 * 1024, 1},
4983 {8 * 1024, 2},
4984 {96 * 1024, 1},
4985 {128 * 1024, 3},
4986 },
4987 .block_erase = erase_block_82802ab,
4988 },
4989 },
4990 .write = write_82802ab,
4991 .read = read_memmapped,
4992 },
4993
4994 {
4995 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004996 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004997 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004998 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004999 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00005000 .total_size = 512,
5001 .page_size = 128 * 1024, /* maximal block size */
5002 .feature_bits = FEATURE_ADDR_SHIFTED,
5003 .tested = TEST_UNTESTED,
5004 .probe = probe_82802ab,
5005 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5006 .block_erasers =
5007 {
5008 {
5009 .eraseblocks = {
5010 {128 * 1024, 3},
5011 {96 * 1024, 1},
5012 {8 * 1024, 2},
5013 {16 * 1024, 1},
5014 },
5015 .block_erase = erase_block_82802ab,
5016 },
5017 },
5018 .write = write_82802ab,
5019 .read = read_memmapped,
5020 },
5021
5022 {
5023 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005024 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005025 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005026 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005027 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005028 .total_size = 512,
5029 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005030 .feature_bits = FEATURE_REGISTERMAP,
Stefan Taunerd06d9412011-06-12 19:47:55 +00005031 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005032 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005033 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005034 .block_erasers =
5035 {
5036 {
5037 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00005038 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005039 },
5040 },
Sean Nelson28accc22010-03-19 18:47:06 +00005041 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005042 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005043 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005044 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005045 },
5046
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005047 {
5048 .vendor = "Intel",
5049 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005050 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005051 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005052 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005053 .total_size = 1024,
5054 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005055 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005056 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005057 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005058 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005059 .block_erasers =
5060 {
5061 {
5062 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00005063 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005064 },
5065 },
Sean Nelson28accc22010-03-19 18:47:06 +00005066 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005067 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005068 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005069 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005070 },
5071
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005072 {
5073 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005074 .name = "MX25L512(E)/MX25V512(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005075 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005076 .manufacture_id = MACRONIX_ID,
5077 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005078 .total_size = 64,
5079 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005080 /* MX25L512E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005081 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005082 .tested = TEST_UNTESTED,
5083 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005084 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005085 .block_erasers =
5086 {
5087 {
5088 .eraseblocks = { {4 * 1024, 16} },
5089 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005090 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005091 .eraseblocks = { {64 * 1024, 1} },
5092 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005093 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005094 .eraseblocks = { {64 * 1024, 1} },
5095 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005096 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005097 .eraseblocks = { {64 * 1024, 1} },
5098 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005099 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005100 .eraseblocks = { {64 * 1024, 1} },
5101 .block_erase = spi_block_erase_c7,
5102 },
5103 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005104 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005105 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005106 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005107 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L512E supports dual I/O */
5108 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V512(C) */
FENG yu ningff692fb2008-12-08 18:15:10 +00005109 },
5110
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005111 {
5112 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005113 .name = "MX25L1005(C)/MX25L1006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005114 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005115 .manufacture_id = MACRONIX_ID,
5116 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005117 .total_size = 128,
5118 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005119 /* MX25L1006E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005120 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00005121 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005122 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005123 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005124 .block_erasers =
5125 {
5126 {
5127 .eraseblocks = { {4 * 1024, 32} },
5128 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005129 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005130 .eraseblocks = { {64 * 1024, 2} },
5131 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005132 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005133 .eraseblocks = { {128 * 1024, 1} },
5134 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005135 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005136 .eraseblocks = { {128 * 1024, 1} },
5137 .block_erase = spi_block_erase_c7,
5138 },
5139 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005140 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005141 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005142 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005143 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L1006E supports dual I/O */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005144 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005145 },
5146
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005147 {
5148 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005149 .name = "MX25L2005(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005150 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005151 .manufacture_id = MACRONIX_ID,
5152 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005153 .total_size = 256,
5154 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005155 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005156 .tested = TEST_UNTESTED,
5157 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005158 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005159 .block_erasers =
5160 {
5161 {
5162 .eraseblocks = { {4 * 1024, 64} },
5163 .block_erase = spi_block_erase_20,
5164 }, {
5165 .eraseblocks = { {64 * 1024, 4} },
5166 .block_erase = spi_block_erase_52,
5167 }, {
5168 .eraseblocks = { {64 * 1024, 4} },
5169 .block_erase = spi_block_erase_d8,
5170 }, {
5171 .eraseblocks = { {256 * 1024, 1} },
5172 .block_erase = spi_block_erase_60,
5173 }, {
5174 .eraseblocks = { {256 * 1024, 1} },
5175 .block_erase = spi_block_erase_c7,
5176 },
5177 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005178 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005179 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005180 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005181 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005182 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005183 },
5184
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005185 {
5186 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005187 .name = "MX25L4005(A/C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005188 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005189 .manufacture_id = MACRONIX_ID,
5190 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005191 .total_size = 512,
5192 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005193 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00005194 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005195 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005196 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005197 .block_erasers =
5198 {
5199 {
5200 .eraseblocks = { {4 * 1024, 128} },
5201 .block_erase = spi_block_erase_20,
5202 }, {
5203 .eraseblocks = { {64 * 1024, 8} },
5204 .block_erase = spi_block_erase_52,
5205 }, {
5206 .eraseblocks = { {64 * 1024, 8} },
5207 .block_erase = spi_block_erase_d8,
5208 }, {
5209 .eraseblocks = { {512 * 1024, 1} },
5210 .block_erase = spi_block_erase_60,
5211 }, {
5212 .eraseblocks = { {512 * 1024, 1} },
5213 .block_erase = spi_block_erase_c7,
5214 },
5215 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005216 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005217 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005218 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005219 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005220 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005221 },
5222
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005223 {
5224 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005225 .name = "MX25L8005/MX25V8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005226 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005227 .manufacture_id = MACRONIX_ID,
5228 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005229 .total_size = 1024,
5230 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005231 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00005232 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005233 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005234 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005235 .block_erasers =
5236 {
5237 {
5238 .eraseblocks = { {4 * 1024, 256} },
5239 .block_erase = spi_block_erase_20,
5240 }, {
5241 .eraseblocks = { {64 * 1024, 16} },
5242 .block_erase = spi_block_erase_52,
5243 }, {
5244 .eraseblocks = { {64 * 1024, 16} },
5245 .block_erase = spi_block_erase_d8,
5246 }, {
5247 .eraseblocks = { {1024 * 1024, 1} },
5248 .block_erase = spi_block_erase_60,
5249 }, {
5250 .eraseblocks = { {1024 * 1024, 1} },
5251 .block_erase = spi_block_erase_c7,
5252 },
5253 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005254 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005255 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005256 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005257 .read = spi_chip_read, /* Fast read (0x0B) supported */
5258 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V8005 */
FENG yu ningff692fb2008-12-08 18:15:10 +00005259 },
5260
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005261 {
5262 .vendor = "Macronix",
5263 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005264 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005265 .manufacture_id = MACRONIX_ID,
5266 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005267 .total_size = 2048,
5268 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005269 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00005270 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005271 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005272 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005273 .block_erasers =
5274 {
5275 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005276 .eraseblocks = { {64 * 1024, 32} },
5277 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005278 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005279 .eraseblocks = { {64 * 1024, 32} },
5280 .block_erase = spi_block_erase_d8,
5281 }, {
5282 .eraseblocks = { {2 * 1024 * 1024, 1} },
5283 .block_erase = spi_block_erase_60,
5284 }, {
5285 .eraseblocks = { {2 * 1024 * 1024, 1} },
5286 .block_erase = spi_block_erase_c7,
5287 },
5288 },
5289 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
5290 .unlock = spi_disable_blockprotect,
5291 .write = spi_chip_write_256,
5292 .read = spi_chip_read, /* Fast read (0x0B) supported */
5293 .voltage = {2700, 3600},
5294 },
5295
5296 {
5297 .vendor = "Macronix",
5298 .name = "MX25L1605A/MX25L1606E",
5299 .bustype = BUS_SPI,
5300 .manufacture_id = MACRONIX_ID,
5301 .model_id = MACRONIX_MX25L1605,
5302 .total_size = 2048,
5303 .page_size = 256,
5304 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L1606E only) */
5305 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5306 .tested = TEST_OK_PREW,
5307 .probe = probe_spi_rdid,
5308 .probe_timing = TIMING_ZERO,
5309 .block_erasers =
5310 {
5311 {
5312 .eraseblocks = { {4 * 1024, 512} },
5313 .block_erase = spi_block_erase_20,
5314 }, {
5315 .eraseblocks = { {64 * 1024, 32} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005316 .block_erase = spi_block_erase_52,
5317 }, {
5318 .eraseblocks = { {64 * 1024, 32} },
5319 .block_erase = spi_block_erase_d8,
5320 }, {
5321 .eraseblocks = { {2 * 1024 * 1024, 1} },
5322 .block_erase = spi_block_erase_60,
5323 }, {
5324 .eraseblocks = { {2 * 1024 * 1024, 1} },
5325 .block_erase = spi_block_erase_c7,
5326 },
5327 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005328 .printlock = spi_prettyprint_status_register_default_bp3, /* MX25L1605A bp2 only */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005329 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005330 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005331 .read = spi_chip_read, /* Fast read (0x0B) supported */
5332 .voltage = {2700, 3600},
5333 },
5334
5335 {
5336 .vendor = "Macronix",
5337 .name = "MX25L1605D/MX25L1608D",
5338 .bustype = BUS_SPI,
5339 .manufacture_id = MACRONIX_ID,
5340 .model_id = MACRONIX_MX25L1605,
5341 .total_size = 2048,
5342 .page_size = 256,
5343 .feature_bits = FEATURE_WRSR_WREN,
5344 .tested = TEST_OK_PREW,
5345 .probe = probe_spi_rdid,
5346 .probe_timing = TIMING_ZERO,
5347 .block_erasers =
5348 {
5349 {
5350 .eraseblocks = { {4 * 1024, 512} },
5351 .block_erase = spi_block_erase_20,
5352 }, {
5353 .eraseblocks = { {64 * 1024, 32} },
5354 .block_erase = spi_block_erase_d8,
5355 }, {
5356 .eraseblocks = { {2 * 1024 * 1024, 1} },
5357 .block_erase = spi_block_erase_60,
5358 }, {
5359 .eraseblocks = { {2 * 1024 * 1024, 1} },
5360 .block_erase = spi_block_erase_c7,
5361 },
5362 },
5363 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: Continously Program (CP) mode */
5364 .unlock = spi_disable_blockprotect,
5365 .write = spi_chip_write_256,
5366 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005367 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005368 },
5369
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005370 {
5371 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005372 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005373 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005374 .manufacture_id = MACRONIX_ID,
5375 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005376 .total_size = 2048,
5377 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005378 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5379 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005380 .tested = TEST_UNTESTED,
5381 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005382 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005383 .block_erasers =
5384 {
5385 {
5386 .eraseblocks = { {4 * 1024, 512} },
5387 .block_erase = spi_block_erase_20,
5388 }, {
5389 .eraseblocks = { {64 * 1024, 32} },
5390 .block_erase = spi_block_erase_d8,
5391 }, {
5392 .eraseblocks = { {2 * 1024 * 1024, 1} },
5393 .block_erase = spi_block_erase_60,
5394 }, {
5395 .eraseblocks = { {2 * 1024 * 1024, 1} },
5396 .block_erase = spi_block_erase_c7,
5397 }
5398 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005399 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005400 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005401 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005402 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005403 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005404 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00005405
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005406 {
5407 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00005408 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005409 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005410 .manufacture_id = MACRONIX_ID,
5411 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005412 .total_size = 2048,
5413 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005414 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5415 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005416 .tested = TEST_UNTESTED,
5417 .probe = probe_spi_rdid,
5418 .probe_timing = TIMING_ZERO,
5419 .block_erasers =
5420 {
5421 {
5422 .eraseblocks = { {4 * 1024, 512} },
5423 .block_erase = spi_block_erase_20,
5424 }, {
5425 .eraseblocks = { {64 * 1024, 32} },
5426 .block_erase = spi_block_erase_d8,
5427 }, {
5428 .eraseblocks = { {2 * 1024 * 1024, 1} },
5429 .block_erase = spi_block_erase_60,
5430 }, {
5431 .eraseblocks = { {2 * 1024 * 1024, 1} },
5432 .block_erase = spi_block_erase_c7,
5433 }
5434 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005435 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Stephan Guilloux3611b802010-09-13 19:59:28 +00005436 .unlock = spi_disable_blockprotect,
5437 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005438 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00005439 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00005440 },
5441
5442 {
5443 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005444 .name = "MX25L3205(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005445 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005446 .manufacture_id = MACRONIX_ID,
5447 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005448 .total_size = 4096,
5449 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005450 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00005451 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005452 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005453 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005454 .block_erasers =
5455 {
5456 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005457 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005458 .block_erase = spi_block_erase_20,
5459 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005460 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005461 .block_erase = spi_block_erase_d8,
5462 }, {
5463 .eraseblocks = { {4 * 1024 * 1024, 1} },
5464 .block_erase = spi_block_erase_60,
5465 }, {
5466 .eraseblocks = { {4 * 1024 * 1024, 1} },
5467 .block_erase = spi_block_erase_c7,
5468 },
5469 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005470 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005471 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005472 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005473 .read = spi_chip_read, /* Fast read (0x0B) supported */
5474 .voltage = {2700, 3600},
5475 },
5476
5477 {
5478 .vendor = "Macronix",
5479 .name = "MX25L3205D/MX25L3208D",
5480 .bustype = BUS_SPI,
5481 .manufacture_id = MACRONIX_ID,
5482 .model_id = MACRONIX_MX25L3205,
5483 .total_size = 4096,
5484 .page_size = 256,
5485 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5486 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5487 .tested = TEST_OK_PREW,
5488 .probe = probe_spi_rdid,
5489 .probe_timing = TIMING_ZERO,
5490 .block_erasers =
5491 {
5492 {
5493 .eraseblocks = { {4 * 1024, 1024} },
5494 .block_erase = spi_block_erase_20,
5495 }, {
5496 .eraseblocks = { {64 * 1024, 64} },
5497 .block_erase = spi_block_erase_d8,
5498 }, {
5499 .eraseblocks = { {4 * 1024 * 1024, 1} },
5500 .block_erase = spi_block_erase_60,
5501 }, {
5502 .eraseblocks = { {4 * 1024 * 1024, 1} },
5503 .block_erase = spi_block_erase_c7,
5504 },
5505 },
5506 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: CP mode */
5507 .unlock = spi_disable_blockprotect,
5508 .write = spi_chip_write_256,
5509 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
5510 .voltage = {2700, 3600},
5511 },
5512
5513 {
5514 .vendor = "Macronix",
5515 .name = "MX25L3206E",
5516 .bustype = BUS_SPI,
5517 .manufacture_id = MACRONIX_ID,
5518 .model_id = MACRONIX_MX25L3205,
5519 .total_size = 4096,
5520 .page_size = 256,
5521 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5522 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5523 .tested = TEST_OK_PREW,
5524 .probe = probe_spi_rdid,
5525 .probe_timing = TIMING_ZERO,
5526 .block_erasers =
5527 {
5528 {
5529 .eraseblocks = { {4 * 1024, 1024} },
5530 .block_erase = spi_block_erase_20,
5531 }, {
5532 .eraseblocks = { {64 * 1024, 64} },
5533 .block_erase = spi_block_erase_d8,
5534 }, {
5535 .eraseblocks = { {64 * 1024, 64} },
5536 .block_erase = spi_block_erase_52,
5537 }, {
5538 .eraseblocks = { {4 * 1024 * 1024, 1} },
5539 .block_erase = spi_block_erase_60,
5540 }, {
5541 .eraseblocks = { {4 * 1024 * 1024, 1} },
5542 .block_erase = spi_block_erase_c7,
5543 },
5544 },
5545 .printlock = spi_prettyprint_status_register_default_bp3,
5546 .unlock = spi_disable_blockprotect,
5547 .write = spi_chip_write_256,
5548 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005549 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005550 },
5551
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005552 {
5553 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005554 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005555 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005556 .manufacture_id = MACRONIX_ID,
5557 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005558 .total_size = 4096,
5559 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005560 /* OTP: 256B total; enter 0xB1, exit 0xC1 */
5561 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005562 .tested = TEST_UNTESTED,
5563 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005564 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005565 .block_erasers =
5566 {
5567 {
5568 .eraseblocks = { {4 * 1024, 1024} },
5569 .block_erase = spi_block_erase_20,
5570 }, {
5571 .eraseblocks = { {64 * 1024, 64} },
5572 .block_erase = spi_block_erase_d8,
5573 }, {
5574 .eraseblocks = { {4 * 1024 * 1024, 1} },
5575 .block_erase = spi_block_erase_60,
5576 }, {
5577 .eraseblocks = { {4 * 1024 * 1024, 1} },
5578 .block_erase = spi_block_erase_c7,
5579 }
5580 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005581 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005582 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005583 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005584 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005585 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005586 },
5587
5588 {
5589 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005590 .name = "MX25L6405(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005591 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005592 .manufacture_id = MACRONIX_ID,
5593 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005594 .total_size = 8192,
5595 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005596 /* MX25L6405D has 64B of OTP; enter 0xB1, exit 0xC1 */
5597 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Paul Menzelac427b22012-02-16 21:07:07 +00005598 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005599 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005600 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005601 .block_erasers =
5602 {
5603 {
5604 .eraseblocks = { {64 * 1024, 128} },
5605 .block_erase = spi_block_erase_20,
5606 }, {
5607 .eraseblocks = { {64 * 1024, 128} },
5608 .block_erase = spi_block_erase_d8,
5609 }, {
5610 .eraseblocks = { {8 * 1024 * 1024, 1} },
5611 .block_erase = spi_block_erase_60,
5612 }, {
5613 .eraseblocks = { {8 * 1024 * 1024, 1} },
5614 .block_erase = spi_block_erase_c7,
5615 }
5616 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005617 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 has different meanings */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005618 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005619 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005620 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005621 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005622 },
5623
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005624 {
5625 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005626 .name = "MX25L6406E/MX25L6436E",
5627 .bustype = BUS_SPI,
5628 .manufacture_id = MACRONIX_ID,
5629 .model_id = MACRONIX_MX25L6405,
5630 .total_size = 8192,
5631 .page_size = 256,
5632 /* OTP: 06E 64B/36E 512B total; enter 0xB1, exit 0xC1 */
5633 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5634 .tested = TEST_OK_PREW,
5635 .probe = probe_spi_rdid,
5636 .probe_timing = TIMING_ZERO,
5637 .block_erasers =
5638 {
5639 {
5640 .eraseblocks = { {4 * 1024, 2048} },
5641 .block_erase = spi_block_erase_20,
5642 }, {
5643 .eraseblocks = { {64 * 1024, 128} },
5644 .block_erase = spi_block_erase_d8,
5645 }, {
5646 .eraseblocks = { {8 * 1024 * 1024, 1} },
5647 .block_erase = spi_block_erase_60,
5648 }, {
5649 .eraseblocks = { {8 * 1024 * 1024, 1} },
5650 .block_erase = spi_block_erase_c7,
5651 }
5652 },
5653 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 for 36E is quad enable */
5654 .unlock = spi_disable_blockprotect,
5655 .write = spi_chip_write_256,
5656 .read = spi_chip_read,
5657 .voltage = {2700, 3600},
5658 },
5659
5660 {
5661 .vendor = "Macronix",
5662 .name = "MX25L6445E",
5663 .bustype = BUS_SPI,
5664 .manufacture_id = MACRONIX_ID,
5665 .model_id = MACRONIX_MX25L6405,
5666 .total_size = 8192,
5667 .page_size = 256,
5668 /* supports SFDP */
5669 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5670 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5671 .tested = TEST_OK_PREW,
5672 .probe = probe_spi_rdid,
5673 .probe_timing = TIMING_ZERO,
5674 .block_erasers =
5675 {
5676 {
5677 .eraseblocks = { {4 * 1024, 2048} },
5678 .block_erase = spi_block_erase_20,
5679 }, {
5680 .eraseblocks = { {32 * 1024, 256} },
5681 .block_erase = spi_block_erase_52,
5682 }, {
5683 .eraseblocks = { {64 * 1024, 128} },
5684 .block_erase = spi_block_erase_d8,
5685 }, {
5686 .eraseblocks = { {8 * 1024 * 1024, 1} },
5687 .block_erase = spi_block_erase_60,
5688 }, {
5689 .eraseblocks = { {8 * 1024 * 1024, 1} },
5690 .block_erase = spi_block_erase_c7,
5691 }
5692 },
5693 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5694 .unlock = spi_disable_blockprotect,
5695 .write = spi_chip_write_256,
5696 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5697 .voltage = {2700, 3600},
5698 },
5699
5700 {
5701 .vendor = "Macronix",
5702 .name = "MX25L12805(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005703 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005704 .manufacture_id = MACRONIX_ID,
5705 .model_id = MACRONIX_MX25L12805,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005706 .total_size = 16384,
5707 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005708 /* MX25L12805D has 64B of OTP; enter 0xB1, exit 0xC1 */
5709 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00005710 .tested = TEST_OK_PROBE,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005711 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005712 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005713 .block_erasers =
5714 {
5715 {
5716 .eraseblocks = { {4 * 1024, 4096} },
5717 .block_erase = spi_block_erase_20,
5718 }, {
5719 .eraseblocks = { {64 * 1024, 256} },
5720 .block_erase = spi_block_erase_d8,
5721 }, {
5722 .eraseblocks = { {16 * 1024 * 1024, 1} },
5723 .block_erase = spi_block_erase_60,
5724 }, {
5725 .eraseblocks = { {16 * 1024 * 1024, 1} },
5726 .block_erase = spi_block_erase_c7,
5727 }
5728 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005729 .printlock = spi_prettyprint_status_register_default_bp3,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005730 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005731 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005732 .read = spi_chip_read, /* MX25L12805D: Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005733 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005734 },
5735
5736 {
5737 .vendor = "Macronix",
Vincent Palatinf800f552013-03-15 02:03:16 +00005738 .name = "MX25U1635E",
5739 .bustype = BUS_SPI,
5740 .manufacture_id = MACRONIX_ID,
5741 .model_id = MACRONIX_MX25U1635E,
5742 .total_size = 2048,
5743 .page_size = 256,
5744 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5745 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5746 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5747 .tested = TEST_UNTESTED,
5748 .probe = probe_spi_rdid,
5749 .probe_timing = TIMING_ZERO,
5750 .block_erasers =
5751 {
5752 {
5753 .eraseblocks = { {4 * 1024, 512} },
5754 .block_erase = spi_block_erase_20,
5755 }, {
5756 .eraseblocks = { {32 * 1024, 64} },
5757 .block_erase = spi_block_erase_52,
5758 }, {
5759 .eraseblocks = { {64 * 1024, 32} },
5760 .block_erase = spi_block_erase_d8,
5761 }, {
5762 .eraseblocks = { {2 * 1024 * 1024, 1} },
5763 .block_erase = spi_block_erase_60,
5764 }, {
5765 .eraseblocks = { {2 * 1024 * 1024, 1} },
5766 .block_erase = spi_block_erase_c7,
5767 }
5768 },
5769 /* TODO: security register */
5770 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5771 .unlock = spi_disable_blockprotect,
5772 .write = spi_chip_write_256,
5773 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5774 .voltage = {1650, 2000},
5775 },
5776
5777 {
5778 .vendor = "Macronix",
5779 .name = "MX25U3235E/F",
5780 .bustype = BUS_SPI,
5781 .manufacture_id = MACRONIX_ID,
5782 .model_id = MACRONIX_MX25U3235E,
5783 .total_size = 4096,
5784 .page_size = 256,
5785 /* F model supports SFDP */
5786 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5787 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5788 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5789 .tested = TEST_OK_PREW,
5790 .probe = probe_spi_rdid,
5791 .probe_timing = TIMING_ZERO,
5792 .block_erasers =
5793 {
5794 {
5795 .eraseblocks = { {4 * 1024, 1024} },
5796 .block_erase = spi_block_erase_20,
5797 }, {
5798 .eraseblocks = { {32 * 1024, 128} },
5799 .block_erase = spi_block_erase_52,
5800 }, {
5801 .eraseblocks = { {64 * 1024, 64} },
5802 .block_erase = spi_block_erase_d8,
5803 }, {
5804 .eraseblocks = { {4 * 1024 * 1024, 1} },
5805 .block_erase = spi_block_erase_60,
5806 }, {
5807 .eraseblocks = { {4 * 1024 * 1024, 1} },
5808 .block_erase = spi_block_erase_c7,
5809 }
5810 },
5811 /* TODO: security register */
5812 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5813 .unlock = spi_disable_blockprotect,
5814 .write = spi_chip_write_256,
5815 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5816 .voltage = {1650, 2000},
5817 },
5818
5819 {
5820 .vendor = "Macronix",
5821 .name = "MX25U6435E/F",
5822 .bustype = BUS_SPI,
5823 .manufacture_id = MACRONIX_ID,
5824 .model_id = MACRONIX_MX25U6435E,
5825 .total_size = 8192,
5826 .page_size = 256,
5827 /* F model supports SFDP */
5828 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5829 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5830 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5831 .tested = TEST_UNTESTED,
5832 .probe = probe_spi_rdid,
5833 .probe_timing = TIMING_ZERO,
5834 .block_erasers =
5835 {
5836 {
5837 .eraseblocks = { {4 * 1024, 2048} },
5838 .block_erase = spi_block_erase_20,
5839 }, {
5840 .eraseblocks = { {32 * 1024, 256} },
5841 .block_erase = spi_block_erase_52,
5842 }, {
5843 .eraseblocks = { {64 * 1024, 128} },
5844 .block_erase = spi_block_erase_d8,
5845 }, {
5846 .eraseblocks = { {8 * 1024 * 1024, 1} },
5847 .block_erase = spi_block_erase_60,
5848 }, {
5849 .eraseblocks = { {8 * 1024 * 1024, 1} },
5850 .block_erase = spi_block_erase_c7,
5851 }
5852 },
5853 /* TODO: security register */
5854 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5855 .unlock = spi_disable_blockprotect,
5856 .write = spi_chip_write_256,
5857 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5858 .voltage = {1650, 2000},
5859 },
5860
5861 {
5862 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00005863 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005864 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005865 .manufacture_id = MACRONIX_ID,
5866 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005867 .total_size = 128,
5868 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005869 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5870 .tested = TEST_UNTESTED,
5871 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005872 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005873 .block_erasers =
5874 {
5875 {
5876 .eraseblocks = {
5877 {8 * 1024, 1},
5878 {4 * 1024, 2},
5879 {8 * 1024, 2},
5880 {32 * 1024, 1},
5881 {64 * 1024, 1},
5882 },
Sean Nelson35727f72010-01-28 23:55:12 +00005883 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005884 }, {
5885 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005886 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005887 }
5888 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005889 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005890 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005891 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005892 },
5893
5894 {
5895 .vendor = "Macronix",
5896 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005897 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005898 .manufacture_id = MACRONIX_ID,
5899 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005900 .total_size = 128,
5901 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005902 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00005903 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005904 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005905 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005906 .block_erasers =
5907 {
5908 {
5909 .eraseblocks = {
5910 {64 * 1024, 1},
5911 {32 * 1024, 1},
5912 {8 * 1024, 2},
5913 {4 * 1024, 2},
5914 {8 * 1024, 1},
5915 },
Sean Nelson35727f72010-01-28 23:55:12 +00005916 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005917 }, {
5918 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005919 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005920 }
5921 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005922 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005923 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005924 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005925 },
5926
5927 {
5928 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005929 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005930 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005931 .manufacture_id = MACRONIX_ID,
5932 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005933 .total_size = 256,
5934 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005935 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005936 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005937 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005938 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005939 .block_erasers =
5940 {
5941 {
5942 .eraseblocks = {
5943 {16 * 1024, 1},
5944 {8 * 1024, 2},
5945 {32 * 1024, 1},
5946 {64 * 1024, 3},
5947 },
Sean Nelson35727f72010-01-28 23:55:12 +00005948 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005949 }, {
5950 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005951 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005952 },
5953 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005954 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005955 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005956 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005957 },
5958
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005959 {
5960 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005961 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005962 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005963 .manufacture_id = MACRONIX_ID,
5964 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005965 .total_size = 256,
5966 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005967 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005968 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005969 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005970 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005971 .block_erasers =
5972 {
5973 {
5974 .eraseblocks = {
5975 {64 * 1024, 3},
5976 {32 * 1024, 1},
5977 {8 * 1024, 2},
5978 {16 * 1024, 1},
5979 },
Sean Nelson35727f72010-01-28 23:55:12 +00005980 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005981 }, {
5982 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005983 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005984 },
5985 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005986 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005987 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005988 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005989 },
5990
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005991 {
5992 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00005993 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005994 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00005995 .manufacture_id = MACRONIX_ID,
5996 .model_id = MACRONIX_MX29F040,
5997 .total_size = 512,
5998 .page_size = 64 * 1024,
5999 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6000 .tested = TEST_UNTESTED,
6001 .probe = probe_jedec,
6002 .probe_timing = TIMING_ZERO,
6003 .block_erasers =
6004 {
6005 {
6006 .eraseblocks = { {64 * 1024, 8} },
6007 .block_erase = erase_sector_jedec,
6008 }, {
6009 .eraseblocks = { {512 * 1024, 1} },
6010 .block_erase = erase_chip_block_jedec,
6011 },
6012 },
6013 .write = write_jedec_1,
6014 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006015 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00006016 },
6017
6018 {
6019 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00006020 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006021 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006022 .manufacture_id = MACRONIX_ID,
6023 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006024 .total_size = 512,
6025 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006026 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6027 .tested = TEST_UNTESTED,
6028 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006029 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00006030 .block_erasers =
6031 {
6032 {
6033 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00006034 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006035 }, {
6036 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006037 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006038 },
6039 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006040 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006041 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006042 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00006043 },
6044
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006045 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006046 .vendor = "MoselVitelic",
6047 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006048 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006049 .manufacture_id = SYNCMOS_MVC_ID,
6050 .model_id = MVC_V29C51000B,
6051 .total_size = 64,
6052 .page_size = 512,
6053 .feature_bits = FEATURE_EITHER_RESET,
6054 .tested = TEST_UNTESTED,
6055 .probe = probe_jedec,
6056 .probe_timing = TIMING_ZERO,
6057 .block_erasers =
6058 {
6059 {
6060 .eraseblocks = { {512, 128} },
6061 .block_erase = erase_sector_jedec,
6062 }, {
6063 .eraseblocks = { {64 * 1024, 1} },
6064 .block_erase = erase_chip_block_jedec,
6065 },
6066 },
6067 .write = write_jedec_1,
6068 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006069 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006070 },
6071
6072 {
6073 .vendor = "MoselVitelic",
6074 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006075 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006076 .manufacture_id = SYNCMOS_MVC_ID,
6077 .model_id = MVC_V29C51000T,
6078 .total_size = 64,
6079 .page_size = 512,
6080 .feature_bits = FEATURE_EITHER_RESET,
6081 .tested = TEST_UNTESTED,
6082 .probe = probe_jedec,
6083 .probe_timing = TIMING_ZERO,
6084 .block_erasers =
6085 {
6086 {
6087 .eraseblocks = { {512, 128} },
6088 .block_erase = erase_sector_jedec,
6089 }, {
6090 .eraseblocks = { {64 * 1024, 1} },
6091 .block_erase = erase_chip_block_jedec,
6092 },
6093 },
6094 .write = write_jedec_1,
6095 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006096 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006097 },
6098
6099 {
6100 .vendor = "MoselVitelic",
6101 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006102 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006103 .manufacture_id = SYNCMOS_MVC_ID,
6104 .model_id = MVC_V29C51400B,
6105 .total_size = 512,
6106 .page_size = 1024,
6107 .feature_bits = FEATURE_EITHER_RESET,
6108 .tested = TEST_UNTESTED,
6109 .probe = probe_jedec,
6110 .probe_timing = TIMING_ZERO,
6111 .block_erasers =
6112 {
6113 {
6114 .eraseblocks = { {1024, 512} },
6115 .block_erase = erase_sector_jedec,
6116 }, {
6117 .eraseblocks = { {512 * 1024, 1} },
6118 .block_erase = erase_chip_block_jedec,
6119 },
6120 },
6121 .write = write_jedec_1,
6122 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006123 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006124 },
6125
6126 {
6127 .vendor = "MoselVitelic",
6128 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006129 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006130 .manufacture_id = SYNCMOS_MVC_ID,
6131 .model_id = MVC_V29C51400T,
6132 .total_size = 512,
6133 .page_size = 1024,
6134 .feature_bits = FEATURE_EITHER_RESET,
6135 .tested = TEST_UNTESTED,
6136 .probe = probe_jedec,
6137 .probe_timing = TIMING_ZERO,
6138 .block_erasers =
6139 {
6140 {
6141 .eraseblocks = { {1024, 512} },
6142 .block_erase = erase_sector_jedec,
6143 }, {
6144 .eraseblocks = { {512 * 1024, 1} },
6145 .block_erase = erase_chip_block_jedec,
6146 },
6147 },
6148 .write = write_jedec_1,
6149 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006150 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006151 },
6152
6153 {
6154 .vendor = "MoselVitelic",
6155 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006156 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006157 .manufacture_id = SYNCMOS_MVC_ID,
6158 .model_id = MVC_V29LC51000,
6159 .total_size = 64,
6160 .page_size = 512,
6161 .feature_bits = FEATURE_EITHER_RESET,
6162 .tested = TEST_UNTESTED,
6163 .probe = probe_jedec,
6164 .probe_timing = TIMING_ZERO,
6165 .block_erasers =
6166 {
6167 {
6168 .eraseblocks = { {512, 128} },
6169 .block_erase = erase_sector_jedec,
6170 }, {
6171 .eraseblocks = { {64 * 1024, 1} },
6172 .block_erase = erase_chip_block_jedec,
6173 },
6174 },
6175 .write = write_jedec_1,
6176 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006177 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006178 },
6179
6180 {
6181 .vendor = "MoselVitelic",
6182 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006183 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006184 .manufacture_id = SYNCMOS_MVC_ID,
6185 .model_id = MVC_V29LC51001,
6186 .total_size = 128,
6187 .page_size = 512,
6188 .feature_bits = FEATURE_EITHER_RESET,
6189 .tested = TEST_UNTESTED,
6190 .probe = probe_jedec,
6191 .probe_timing = TIMING_ZERO,
6192 .block_erasers =
6193 {
6194 {
6195 .eraseblocks = { {512, 256} },
6196 .block_erase = erase_sector_jedec,
6197 }, {
6198 .eraseblocks = { {128 * 1024, 1} },
6199 .block_erase = erase_chip_block_jedec,
6200 },
6201 },
6202 .write = write_jedec_1,
6203 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006204 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006205 },
6206
6207 {
6208 .vendor = "MoselVitelic",
6209 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006210 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006211 .manufacture_id = SYNCMOS_MVC_ID,
6212 .model_id = MVC_V29LC51002,
6213 .total_size = 256,
6214 .page_size = 512,
6215 .feature_bits = FEATURE_EITHER_RESET,
6216 .tested = TEST_UNTESTED,
6217 .probe = probe_jedec,
6218 .probe_timing = TIMING_ZERO,
6219 .block_erasers =
6220 {
6221 {
6222 .eraseblocks = { {512, 512} },
6223 .block_erase = erase_sector_jedec,
6224 }, {
6225 .eraseblocks = { {256 * 1024, 1} },
6226 .block_erase = erase_chip_block_jedec,
6227 },
6228 },
6229 .write = write_jedec_1,
6230 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006231 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006232 },
6233
6234 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006235 .vendor = "Numonyx",
6236 .name = "M25PE10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006237 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006238 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006239 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006240 .total_size = 128,
6241 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006242 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006243 .tested = TEST_UNTESTED,
6244 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006245 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006246 .block_erasers =
6247 {
6248 {
6249 .eraseblocks = { {4 * 1024, 32} },
6250 .block_erase = spi_block_erase_20,
6251 }, {
6252 .eraseblocks = { {64 * 1024, 2} },
6253 .block_erase = spi_block_erase_d8,
6254 }, {
6255 .eraseblocks = { {128 * 1024, 1} },
6256 .block_erase = spi_block_erase_c7,
6257 }
6258 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006259 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006260 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006261 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006262 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006263 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006264 },
6265
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006266 {
6267 .vendor = "Numonyx",
6268 .name = "M25PE20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006269 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006270 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006271 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006272 .total_size = 256,
6273 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006274 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006275 .tested = TEST_UNTESTED,
6276 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006277 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006278 .block_erasers =
6279 {
6280 {
6281 .eraseblocks = { {4 * 1024, 64} },
6282 .block_erase = spi_block_erase_20,
6283 }, {
6284 .eraseblocks = { {64 * 1024, 4} },
6285 .block_erase = spi_block_erase_d8,
6286 }, {
6287 .eraseblocks = { {256 * 1024, 1} },
6288 .block_erase = spi_block_erase_c7,
6289 }
6290 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006291 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006292 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006293 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006294 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006295 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006296 },
6297
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006298 {
6299 .vendor = "Numonyx",
6300 .name = "M25PE40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006301 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006302 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006303 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00006304 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006305 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006306 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006307 .tested = TEST_UNTESTED,
6308 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006309 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006310 .block_erasers =
6311 {
6312 {
6313 .eraseblocks = { {4 * 1024, 128} },
6314 .block_erase = spi_block_erase_20,
6315 }, {
6316 .eraseblocks = { {64 * 1024, 8} },
6317 .block_erase = spi_block_erase_d8,
6318 }, {
6319 .eraseblocks = { {512 * 1024, 1} },
6320 .block_erase = spi_block_erase_c7,
6321 }
6322 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006323 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006324 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006325 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006326 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006327 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006328 },
6329
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006330 {
6331 .vendor = "Numonyx",
6332 .name = "M25PE80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006333 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006334 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006335 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006336 .total_size = 1024,
6337 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006338 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00006339 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006340 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006341 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006342 .block_erasers =
6343 {
6344 {
6345 .eraseblocks = { {4 * 1024, 256} },
6346 .block_erase = spi_block_erase_20,
6347 }, {
6348 .eraseblocks = { {64 * 1024, 16} },
6349 .block_erase = spi_block_erase_d8,
6350 }, {
6351 .eraseblocks = { {1024 * 1024, 1} },
6352 .block_erase = spi_block_erase_c7,
6353 }
6354 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006355 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006356 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006357 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006358 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006359 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006360 },
6361
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006362 {
6363 .vendor = "Numonyx",
6364 .name = "M25PE16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006365 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006366 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006367 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006368 .total_size = 2048,
6369 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006370 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006371 .tested = TEST_UNTESTED,
6372 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006373 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006374 .block_erasers =
6375 {
6376 {
6377 .eraseblocks = { {4 * 1024, 512} },
6378 .block_erase = spi_block_erase_20,
6379 }, {
6380 .eraseblocks = { {64 * 1024, 32} },
6381 .block_erase = spi_block_erase_d8,
6382 }, {
6383 .eraseblocks = { {2 * 1024 * 1024, 1} },
6384 .block_erase = spi_block_erase_c7,
6385 }
6386 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006387 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006388 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006389 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006390 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006391 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006392 },
6393
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006394 {
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006395 .vendor = "Numonyx",
Stefan Taunerd956f822012-10-26 16:49:15 +00006396 .name = "N25Q016",
6397 .bustype = BUS_SPI,
6398 .manufacture_id = ST_ID,
6399 .model_id = ST_N25Q016__1E,
6400 .total_size = 2048,
6401 .page_size = 256,
6402 /* supports SFDP */
6403 /* OTP: 64B total; read 0x4B, write 0x42 */
6404 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6405 .tested = TEST_UNTESTED,
6406 .probe = probe_spi_rdid,
6407 .probe_timing = TIMING_ZERO,
6408 .block_erasers =
6409 {
6410 {
6411 .eraseblocks = { {4 * 1024, 512} },
6412 .block_erase = spi_block_erase_20,
6413 }, {
6414 .eraseblocks = { {32 * 1024, 64} },
6415 .block_erase = spi_block_erase_52,
6416 }, {
6417 .eraseblocks = { {64 * 1024, 32} },
6418 .block_erase = spi_block_erase_d8,
6419 }, {
6420 .eraseblocks = { {2 * 1024 * 1024, 1} },
6421 .block_erase = spi_block_erase_c7,
6422 }
6423 },
6424 .unlock = spi_disable_blockprotect,
6425 .write = spi_chip_write_256,
6426 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6427 .voltage = {1700, 2000},
6428 },
6429
6430 {
6431 .vendor = "Numonyx",
6432 .name = "N25Q032..1E",
6433 .bustype = BUS_SPI,
6434 .manufacture_id = ST_ID,
6435 .model_id = ST_N25Q032__1E,
6436 .total_size = 4096,
6437 .page_size = 256,
6438 /* supports SFDP */
6439 /* OTP: 64B total; read 0x4B, write 0x42 */
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 {
6447 .eraseblocks = { {4 * 1024, 1024} },
6448 .block_erase = spi_block_erase_20,
6449 }, {
6450 .eraseblocks = { {64 * 1024, 64} },
6451 .block_erase = spi_block_erase_d8,
6452 }, {
6453 .eraseblocks = { {4 * 1024 * 1024, 1} },
6454 .block_erase = spi_block_erase_c7,
6455 }
6456 },
6457 .unlock = spi_disable_blockprotect,
6458 .write = spi_chip_write_256,
6459 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6460 .voltage = {1700, 2000},
6461 },
6462
6463 {
6464 .vendor = "Numonyx",
6465 .name = "N25Q032..3E",
6466 .bustype = BUS_SPI,
6467 .manufacture_id = ST_ID,
6468 .model_id = ST_N25Q032__3E,
6469 .total_size = 4096,
6470 .page_size = 256,
6471 /* supports SFDP */
6472 /* OTP: 64B total; read 0x4B, write 0x42 */
6473 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6474 .tested = TEST_UNTESTED,
6475 .probe = probe_spi_rdid,
6476 .probe_timing = TIMING_ZERO,
6477 .block_erasers =
6478 {
6479 {
6480 .eraseblocks = { {4 * 1024, 1024} },
6481 .block_erase = spi_block_erase_20,
6482 }, {
6483 .eraseblocks = { {64 * 1024, 64} },
6484 .block_erase = spi_block_erase_d8,
6485 }, {
6486 .eraseblocks = { {4 * 1024 * 1024, 1} },
6487 .block_erase = spi_block_erase_c7,
6488 }
6489 },
6490 .unlock = spi_disable_blockprotect,
6491 .write = spi_chip_write_256,
6492 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6493 .voltage = {2700, 3600},
6494 },
6495
6496 {
6497 .vendor = "Numonyx",
David Hendricks99f947d2012-10-04 14:41:20 +00006498 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006499 .bustype = BUS_SPI,
6500 .manufacture_id = ST_ID,
David Hendricks99f947d2012-10-04 14:41:20 +00006501 .model_id = ST_N25Q064__1E,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006502 .total_size = 8192,
6503 .page_size = 256,
David Hendricks99f947d2012-10-04 14:41:20 +00006504 /* supports SFDP */
6505 /* OTP: 64B total; read 0x4B, write 0x42 */
6506 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6507 .tested = TEST_UNTESTED,
6508 .probe = probe_spi_rdid,
6509 .probe_timing = TIMING_ZERO,
6510 .block_erasers =
6511 {
6512 {
6513 .eraseblocks = { {4 * 1024, 2048 } },
6514 .block_erase = spi_block_erase_20,
6515 }, {
6516 .eraseblocks = { {64 * 1024, 128} },
6517 .block_erase = spi_block_erase_d8,
6518 }, {
6519 .eraseblocks = { {8 * 1024 * 1024, 1} },
6520 .block_erase = spi_block_erase_c7,
6521 }
6522 },
6523 .unlock = spi_disable_blockprotect,
6524 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006525 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006526 .voltage = {1700, 2000},
6527 },
6528
6529 {
6530 .vendor = "Numonyx",
6531 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
6532 .bustype = BUS_SPI,
6533 .manufacture_id = ST_ID,
6534 .model_id = ST_N25Q064__3E,
6535 .total_size = 8192,
6536 .page_size = 256,
6537 /* supports SFDP */
6538 /* OTP: 64B total; read 0x4B, write 0x42 */
6539 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006540 .tested = TEST_OK_PREW,
6541 .probe = probe_spi_rdid,
6542 .probe_timing = TIMING_ZERO,
6543 .block_erasers =
6544 {
6545 {
6546 .eraseblocks = { {4 * 1024, 2048 } },
6547 .block_erase = spi_block_erase_20,
6548 }, {
6549 .eraseblocks = { {64 * 1024, 128} },
6550 .block_erase = spi_block_erase_d8,
6551 }, {
6552 .eraseblocks = { {8 * 1024 * 1024, 1} },
6553 .block_erase = spi_block_erase_c7,
6554 }
6555 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006556 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006557 .unlock = spi_disable_blockprotect,
6558 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006559 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006560 .voltage = {2700, 3600},
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006561 },
6562
6563 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006564 .vendor = "PMC",
Stefan Taunerf4451612013-04-19 01:59:15 +00006565 .name = "Pm25LD256C",
6566 .bustype = BUS_SPI,
6567 .manufacture_id = PMC_ID,
6568 .model_id = PMC_PM25LD256C,
6569 .total_size = 32,
6570 .page_size = 256,
6571 .feature_bits = FEATURE_WRSR_WREN,
6572 .tested = TEST_UNTESTED,
6573 .probe = probe_spi_rdid,
6574 .probe_timing = TIMING_ZERO,
6575 .block_erasers =
6576 {
6577 {
6578 .eraseblocks = { {4 * 1024, 8} },
6579 .block_erase = spi_block_erase_20,
6580 }, {
6581 .eraseblocks = { {4 * 1024, 8} },
6582 .block_erase = spi_block_erase_d7,
6583 }, {
6584 .eraseblocks = { {32 * 1024, 1} },
6585 .block_erase = spi_block_erase_d8,
6586 }, {
6587 .eraseblocks = { {32 * 1024, 1} },
6588 .block_erase = spi_block_erase_60,
6589 }, {
6590 .eraseblocks = { {32 * 1024, 1} },
6591 .block_erase = spi_block_erase_c7,
6592 }
6593 },
6594 .printlock = spi_prettyprint_status_register_default_bp2,
6595 .unlock = spi_disable_blockprotect,
6596 .write = spi_chip_write_256,
6597 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6598 .voltage = {2700, 3600},
6599 },
6600 {
6601 .vendor = "PMC",
6602 .name = "Pm25LD512(C)",
6603 .bustype = BUS_SPI,
6604 .manufacture_id = PMC_ID,
6605 .model_id = PMC_PM25LD512,
6606 .total_size = 64,
6607 .page_size = 256,
6608 .feature_bits = FEATURE_WRSR_WREN,
6609 .tested = TEST_OK_PREW,
6610 .probe = probe_spi_rdid,
6611 .probe_timing = TIMING_ZERO,
6612 .block_erasers =
6613 {
6614 {
6615 .eraseblocks = { {4 * 1024, 16} },
6616 .block_erase = spi_block_erase_20,
6617 }, {
6618 .eraseblocks = { {4 * 1024, 16} },
6619 .block_erase = spi_block_erase_d7,
6620 }, {
6621 .eraseblocks = { {32 * 1024, 2} },
6622 .block_erase = spi_block_erase_d8,
6623 }, {
6624 .eraseblocks = { {64 * 1024, 1} },
6625 .block_erase = spi_block_erase_60,
6626 }, {
6627 .eraseblocks = { {64 * 1024, 1} },
6628 .block_erase = spi_block_erase_c7,
6629 }
6630 },
6631 .printlock = spi_prettyprint_status_register_default_bp2,
6632 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6633 .write = spi_chip_write_256,
6634 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6635 .voltage = {2300, 3600},
6636 },
6637
6638 {
6639 .vendor = "PMC",
6640 .name = "Pm25LD010(C)",
6641 .bustype = BUS_SPI,
6642 .manufacture_id = PMC_ID,
6643 .model_id = PMC_PM25LD010,
6644 .total_size = 128,
6645 .page_size = 256,
6646 .feature_bits = FEATURE_WRSR_WREN,
6647 .tested = TEST_UNTESTED,
6648 .probe = probe_spi_rdid,
6649 .probe_timing = TIMING_ZERO,
6650 .block_erasers =
6651 {
6652 {
6653 .eraseblocks = { {4 * 1024, 32} },
6654 .block_erase = spi_block_erase_20,
6655 }, {
6656 .eraseblocks = { {4 * 1024, 32} },
6657 .block_erase = spi_block_erase_d7,
6658 }, {
6659 .eraseblocks = { {32 * 1024, 4} },
6660 .block_erase = spi_block_erase_d8,
6661 }, {
6662 .eraseblocks = { {128 * 1024, 1} },
6663 .block_erase = spi_block_erase_60,
6664 }, {
6665 .eraseblocks = { {128 * 1024, 1} },
6666 .block_erase = spi_block_erase_c7,
6667 }
6668 },
6669 .printlock = spi_prettyprint_status_register_default_bp2,
6670 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6671 .write = spi_chip_write_256,
6672 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6673 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
6674 },
6675
6676 {
6677 .vendor = "PMC",
6678 .name = "Pm25LD020(C)",
6679 .bustype = BUS_SPI,
6680 .manufacture_id = PMC_ID,
6681 .model_id = PMC_PM25LD020,
6682 .total_size = 256,
6683 .page_size = 256,
6684 .feature_bits = FEATURE_WRSR_WREN,
6685 .tested = TEST_UNTESTED,
6686 .probe = probe_spi_rdid,
6687 .probe_timing = TIMING_ZERO,
6688 .block_erasers =
6689 {
6690 {
6691 .eraseblocks = { {4 * 1024, 64} },
6692 .block_erase = spi_block_erase_20,
6693 }, {
6694 .eraseblocks = { {4 * 1024, 64} },
6695 .block_erase = spi_block_erase_d7,
6696 }, {
6697 .eraseblocks = { {64 * 1024, 4} },
6698 .block_erase = spi_block_erase_d8,
6699 }, {
6700 .eraseblocks = { {256 * 1024, 1} },
6701 .block_erase = spi_block_erase_60,
6702 }, {
6703 .eraseblocks = { {256 * 1024, 1} },
6704 .block_erase = spi_block_erase_c7,
6705 }
6706 },
6707 .printlock = spi_prettyprint_status_register_default_bp2,
6708 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6709 .write = spi_chip_write_256,
6710 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6711 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
6712 },
6713
6714 {
6715 .vendor = "PMC",
6716 .name = "Pm25LD040(C)",
6717 .bustype = BUS_SPI,
6718 .manufacture_id = PMC_ID,
6719 .model_id = PMC_PM25LV040,
6720 .total_size = 512,
6721 .page_size = 256,
6722 .feature_bits = FEATURE_WRSR_WREN,
6723 .tested = TEST_UNTESTED,
6724 .probe = probe_spi_rdid,
6725 .probe_timing = TIMING_ZERO,
6726 .block_erasers =
6727 {
6728 {
6729 .eraseblocks = { {4 * 1024, 128} },
6730 .block_erase = spi_block_erase_20,
6731 }, {
6732 .eraseblocks = { {4 * 1024, 128} },
6733 .block_erase = spi_block_erase_d7,
6734 }, {
6735 .eraseblocks = { {64 * 1024, 8} },
6736 .block_erase = spi_block_erase_d8,
6737 }, {
6738 .eraseblocks = { {512 * 1024, 1} },
6739 .block_erase = spi_block_erase_60,
6740 }, {
6741 .eraseblocks = { {512 * 1024, 1} },
6742 .block_erase = spi_block_erase_c7,
6743 }
6744 },
6745 .printlock = spi_prettyprint_status_register_default_bp2,
6746 .unlock = spi_disable_blockprotect,
6747 .write = spi_chip_write_256,
6748 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6749 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
6750 },
6751
6752{
6753 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006754 .name = "Pm25LV512(A)",
6755 .bustype = BUS_SPI,
6756 .manufacture_id = PMC_ID,
6757 .model_id = PMC_PM25LV512,
6758 .total_size = 64,
6759 .page_size = 256,
6760 .feature_bits = FEATURE_WRSR_WREN,
6761 .tested = TEST_UNTESTED,
6762 .probe = probe_spi_res3,
6763 .probe_timing = TIMING_ZERO,
6764 .block_erasers =
6765 {
6766 {
6767 .eraseblocks = { {4 * 1024, 16} },
6768 .block_erase = spi_block_erase_d7,
6769 }, {
6770 .eraseblocks = { {32 * 1024, 2} },
6771 .block_erase = spi_block_erase_d8,
6772 }, {
6773 .eraseblocks = { {64 * 1024, 1} },
6774 .block_erase = spi_block_erase_c7,
6775 }
6776 },
6777 .printlock = spi_prettyprint_status_register_default_bp1,
6778 .unlock = spi_disable_blockprotect,
6779 .write = spi_chip_write_256,
6780 .read = spi_chip_read, /* Fast read (0x0B) supported */
6781 .voltage = {2700, 3600},
6782 },
6783
6784 {
6785 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006786 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006787 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006788 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006789 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006790 .total_size = 128,
6791 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006792 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006793 .tested = TEST_UNTESTED,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006794 .probe = probe_spi_res3,
6795 .probe_timing = TIMING_ZERO,
6796 .block_erasers =
6797 {
6798 {
6799 .eraseblocks = { {4 * 1024, 32} },
6800 .block_erase = spi_block_erase_d7,
6801 }, {
6802 .eraseblocks = { {32 * 1024, 4} },
6803 .block_erase = spi_block_erase_d8,
6804 }, {
6805 .eraseblocks = { {128 * 1024, 1} },
6806 .block_erase = spi_block_erase_c7,
6807 }
6808 },
6809 .printlock = spi_prettyprint_status_register_default_bp1,
6810 .unlock = spi_disable_blockprotect,
6811 .write = spi_chip_write_256,
6812 .read = spi_chip_read, /* Fast read (0x0B) supported */
6813 .voltage = {2700, 3600},
6814 },
6815
6816 {
6817 .vendor = "PMC",
6818 .name = "Pm25LV010A",
6819 .bustype = BUS_SPI,
6820 .manufacture_id = PMC_ID,
6821 .model_id = PMC_PM25LV010,
6822 .total_size = 128,
6823 .page_size = 256,
6824 .feature_bits = FEATURE_WRSR_WREN,
6825 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006826 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006827 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006828 .block_erasers =
6829 {
6830 {
6831 .eraseblocks = { {4 * 1024, 32} },
6832 .block_erase = spi_block_erase_d7,
6833 }, {
6834 .eraseblocks = { {32 * 1024, 4} },
6835 .block_erase = spi_block_erase_d8,
6836 }, {
6837 .eraseblocks = { {128 * 1024, 1} },
6838 .block_erase = spi_block_erase_c7,
6839 }
6840 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006841 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006842 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006843 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006844 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00006845 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006846 },
6847
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006848 {
6849 .vendor = "PMC",
6850 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006851 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006852 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006853 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006854 .total_size = 256,
6855 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006856 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006857 .tested = TEST_UNTESTED,
6858 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006859 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006860 .block_erasers =
6861 {
6862 {
6863 .eraseblocks = { {4 * 1024, 64} },
6864 .block_erase = spi_block_erase_d7,
6865 }, {
6866 .eraseblocks = { {64 * 1024, 4} },
6867 .block_erase = spi_block_erase_d8,
6868 }, {
6869 .eraseblocks = { {256 * 1024, 1} },
6870 .block_erase = spi_block_erase_c7,
6871 }
6872 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006873 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006874 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006875 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006876 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006877 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006878 },
6879
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006880 {
6881 .vendor = "PMC",
6882 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006883 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006884 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006885 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006886 .total_size = 512,
6887 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006888 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00006889 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006890 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006891 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006892 .block_erasers =
6893 {
6894 {
6895 .eraseblocks = { {4 * 1024, 128} },
6896 .block_erase = spi_block_erase_d7,
6897 }, {
6898 .eraseblocks = { {64 * 1024, 8} },
6899 .block_erase = spi_block_erase_d8,
6900 }, {
6901 .eraseblocks = { {512 * 1024, 1} },
6902 .block_erase = spi_block_erase_c7,
6903 }
6904 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006905 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006906 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006907 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006908 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006909 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006910 },
6911
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006912 {
6913 .vendor = "PMC",
6914 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006915 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006916 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006917 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006918 .total_size = 1024,
6919 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006920 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006921 .tested = TEST_UNTESTED,
6922 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006923 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006924 .block_erasers =
6925 {
6926 {
6927 .eraseblocks = { {4 * 1024, 256} },
6928 .block_erase = spi_block_erase_d7,
6929 }, {
6930 .eraseblocks = { {4 * 1024, 256} },
6931 .block_erase = spi_block_erase_20,
6932 }, {
6933 .eraseblocks = { {64 * 1024, 16} },
6934 .block_erase = spi_block_erase_d8,
6935 }, {
6936 .eraseblocks = { {1024 * 1024, 1} },
6937 .block_erase = spi_block_erase_60,
6938 }, {
6939 .eraseblocks = { {1024 * 1024, 1} },
6940 .block_erase = spi_block_erase_c7,
6941 }
6942 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006943 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006944 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006945 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006946 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006947 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006948 },
6949
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006950 {
6951 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006952 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006953 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006954 .manufacture_id = PMC_ID,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006955 .model_id = PMC_PM25LV016B,
6956 .total_size = 2048,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006957 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006958 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006959 .tested = TEST_UNTESTED,
6960 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006961 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006962 .block_erasers =
6963 {
6964 {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006965 .eraseblocks = { {4 * 1024, 512} },
Sean Nelson5643c072010-01-19 03:23:07 +00006966 .block_erase = spi_block_erase_d7,
6967 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006968 .eraseblocks = { {4 * 1024, 512} },
6969 .block_erase = spi_block_erase_20,
6970 }, {
6971 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson5643c072010-01-19 03:23:07 +00006972 .block_erase = spi_block_erase_d8,
6973 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006974 .eraseblocks = { {2 * 1024 * 1024, 1} },
6975 .block_erase = spi_block_erase_60,
6976 }, {
6977 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +00006978 .block_erase = spi_block_erase_c7,
6979 }
6980 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006981 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006982 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006983 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006984 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00006985 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006986 },
6987
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006988 {
6989 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00006990 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006991 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00006992 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006993 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00006994 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00006995 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006996 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00006997 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00006998 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +00006999 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007000 .block_erasers =
7001 {
7002 {
7003 .eraseblocks = {
7004 {128 * 1024, 1},
7005 {96 * 1024, 1},
7006 {8 * 1024, 2},
7007 {16 * 1024, 1},
7008 },
Sean Nelson35727f72010-01-28 23:55:12 +00007009 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007010 }, {
7011 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007012 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007013 },
7014 },
Sean Nelson35727f72010-01-28 23:55:12 +00007015 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007016 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007017 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007018 },
7019
7020 {
7021 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00007022 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007023 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007024 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007025 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007026 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00007027 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007028 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007029 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00007030 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007031 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007032 .block_erasers =
7033 {
7034 {
7035 .eraseblocks = {
7036 {16 * 1024, 1},
7037 {8 * 1024, 2},
7038 {96 * 1024, 1},
7039 {128 * 1024, 1},
7040 },
Sean Nelson35727f72010-01-28 23:55:12 +00007041 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007042 }, {
7043 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007044 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007045 },
7046 },
Sean Nelson35727f72010-01-28 23:55:12 +00007047 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007048 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007049 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007050 },
7051
7052 {
7053 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007054 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007055 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007056 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007057 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007058 .total_size = 128,
7059 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007060 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007061 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007062 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007063 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00007064 .block_erasers =
7065 {
7066 {
7067 .eraseblocks = { {4 * 1024, 32} },
7068 .block_erase = erase_sector_jedec,
7069 }, {
7070 .eraseblocks = { {64 * 1024, 2} },
7071 .block_erase = erase_block_jedec,
7072 }, {
7073 .eraseblocks = { {128 * 1024, 1} },
7074 .block_erase = erase_chip_block_jedec,
7075 }
7076 },
Sean Nelson35727f72010-01-28 23:55:12 +00007077 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007078 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007079 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007080 },
7081
7082 {
7083 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007084 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007085 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007086 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007087 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007088 .total_size = 256,
7089 .page_size = 4096,
7090 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7091 .tested = TEST_UNTESTED,
7092 .probe = probe_jedec,
7093 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7094 .block_erasers =
7095 {
7096 {
7097 .eraseblocks = { {4 * 1024, 64} },
7098 .block_erase = erase_sector_jedec,
7099 }, {
7100 .eraseblocks = { {64 * 1024, 4} },
7101 .block_erase = erase_block_jedec,
7102 }, {
7103 .eraseblocks = { {256 * 1024, 1} },
7104 .block_erase = erase_chip_block_jedec,
7105 }
7106 },
7107 .write = write_jedec_1,
7108 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007109 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007110 },
7111
7112 {
7113 .vendor = "PMC",
7114 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007115 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007116 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007117 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007118 .total_size = 512,
7119 .page_size = 4096,
7120 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007121 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007122 .probe = probe_jedec,
7123 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7124 .block_erasers =
7125 {
7126 {
7127 .eraseblocks = { {4 * 1024, 128} },
7128 .block_erase = erase_sector_jedec,
7129 }, {
7130 .eraseblocks = { {64 * 1024, 8} },
7131 .block_erase = erase_block_jedec,
7132 }, {
7133 .eraseblocks = { {512 * 1024, 1} },
7134 .block_erase = erase_chip_block_jedec,
7135 }
7136 },
7137 .write = write_jedec_1,
7138 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007139 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007140 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +00007141
7142 {
7143 .vendor = "PMC",
7144 .name = "Pm39LV512",
7145 .bustype = BUS_PARALLEL,
7146 .manufacture_id = PMC_ID_NOPREFIX,
7147 .model_id = PMC_PM39LV512,
7148 .total_size = 64,
7149 .page_size = 4096,
7150 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7151 .tested = TEST_OK_PREW,
7152 .probe = probe_jedec,
7153 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7154 .block_erasers =
7155 {
7156 {
7157 .eraseblocks = { {4 * 1024, 16} },
7158 .block_erase = erase_sector_jedec,
7159 }, {
7160 .eraseblocks = { {64 * 1024, 1} },
7161 .block_erase = erase_block_jedec,
7162 }, {
7163 .eraseblocks = { {64 * 1024, 1} },
7164 .block_erase = erase_chip_block_jedec,
7165 }
7166 },
7167 .write = write_jedec_1,
7168 .read = read_memmapped,
7169 .voltage = {2700, 3600},
7170 },
7171
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007172 {
7173 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007174 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007175 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007176 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007177 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007178 .total_size = 256,
7179 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007180 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunerd06d9412011-06-12 19:47:55 +00007181 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007182 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007183 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007184 .block_erasers =
7185 {
7186 {
7187 .eraseblocks = { {4 * 1024, 64} },
7188 .block_erase = erase_sector_jedec,
7189 }, {
7190 .eraseblocks = { {16 * 1024, 16} },
7191 .block_erase = erase_block_jedec,
7192 }, {
7193 .eraseblocks = { {256 * 1024, 1} },
7194 .block_erase = erase_chip_block_jedec,
7195 }
7196 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007197 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007198 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007199 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007200 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007201 },
7202
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007203 {
7204 .vendor = "PMC",
7205 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007206 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007207 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007208 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007209 .total_size = 512,
7210 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007211 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00007212 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007213 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007214 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007215 .block_erasers =
7216 {
7217 {
7218 .eraseblocks = { {4 * 1024, 128} },
7219 .block_erase = erase_sector_jedec,
7220 }, {
7221 .eraseblocks = { {64 * 1024, 8} },
7222 .block_erase = erase_block_jedec,
7223 }, {
7224 .eraseblocks = { {512 * 1024, 1} },
7225 .block_erase = erase_chip_block_jedec,
7226 }
7227 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007228 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007229 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007230 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007231 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007232 },
7233
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007234 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00007235 .vendor = "Sanyo",
7236 .name = "LF25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007237 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007238 .manufacture_id = SANYO_ID,
7239 .model_id = SANYO_LE25FW203A,
7240 .total_size = 2048,
7241 .page_size = 256,
7242 .tested = TEST_UNTESTED,
7243 .probe = probe_spi_rdid,
7244 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007245 .block_erasers =
7246 {
7247 {
7248 .eraseblocks = { {64 * 1024, 32} },
7249 .block_erase = spi_block_erase_d8,
7250 }, {
7251 .eraseblocks = { {2 * 1024 * 1024, 1} },
7252 .block_erase = spi_block_erase_c7,
7253 }
7254 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007255 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007256 .unlock = spi_disable_blockprotect,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007257 .write = spi_chip_write_256,
7258 .read = spi_chip_read,
7259 },
7260
7261 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007262 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007263 .name = "LH28F008BJT-BTLZ1",
7264 .bustype = BUS_PARALLEL,
7265 .manufacture_id = SHARP_ID,
Stefan Tauner352e50b2013-02-22 15:58:45 +00007266 .model_id = SHARP_LH28F008BJ__PB,
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007267 .total_size = 1024,
7268 .page_size = 64 * 1024,
7269 .tested = TEST_OK_PREW,
7270 .probe = probe_82802ab,
7271 .probe_timing = TIMING_ZERO,
7272 .block_erasers =
7273 {
7274 {
7275 .eraseblocks = {
7276 {8 * 1024, 8},
7277 {64 * 1024, 15}
7278 },
7279 .block_erase = erase_block_82802ab,
7280 }, {
7281 .eraseblocks = { {1024 * 1024, 1} },
7282 .block_erase = erase_sector_49lfxxxc,
7283 }
7284 },
7285 .unlock = unlock_lh28f008bjt,
7286 .write = write_82802ab,
7287 .read = read_memmapped,
7288 .voltage = {2700, 3600},
7289 },
7290
7291 {
7292 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007293 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007294 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007295 .manufacture_id = SHARP_ID,
7296 .model_id = SHARP_LHF00L04,
7297 .total_size = 1024,
7298 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007299 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007300 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007301 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007302 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007303 .block_erasers =
7304 {
7305 {
7306 .eraseblocks = {
7307 {64 * 1024, 15},
7308 {8 * 1024, 8}
7309 },
Sean Nelson28accc22010-03-19 18:47:06 +00007310 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007311 }, {
7312 .eraseblocks = {
7313 {1024 * 1024, 1}
7314 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00007315 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007316 },
7317 },
Sean Nelson28accc22010-03-19 18:47:06 +00007318 .unlock = unlock_82802ab,
7319 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007320 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007321 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007322 },
7323
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007324 {
7325 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +00007326 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007327 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007328 .manufacture_id = SPANSION_ID,
7329 .model_id = SPANSION_S25FL004A,
7330 .total_size = 512,
7331 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007332 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007333 .tested = TEST_UNTESTED,
7334 .probe = probe_spi_rdid,
7335 .probe_timing = TIMING_ZERO,
7336 .block_erasers =
7337 {
7338 {
7339 .eraseblocks = { {64 * 1024, 8} },
7340 .block_erase = spi_block_erase_d8,
7341 }, {
7342 .eraseblocks = { {512 * 1024, 1} },
7343 .block_erase = spi_block_erase_c7,
7344 }
7345 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007346 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007347 .unlock = spi_disable_blockprotect,
7348 .write = spi_chip_write_256,
7349 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007350 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007351 },
7352
7353 {
7354 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00007355 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007356 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +00007357 .manufacture_id = SPANSION_ID,
7358 .model_id = SPANSION_S25FL008A,
7359 .total_size = 1024,
7360 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007361 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007362 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +00007363 .probe = probe_spi_rdid,
7364 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00007365 .block_erasers =
7366 {
7367 {
7368 .eraseblocks = { {64 * 1024, 16} },
7369 .block_erase = spi_block_erase_d8,
7370 }, {
7371 .eraseblocks = { {1024 * 1024, 1} },
7372 .block_erase = spi_block_erase_c7,
7373 }
7374 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007375 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007376 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00007377 .write = spi_chip_write_256,
7378 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007379 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +00007380 },
7381
7382 {
7383 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007384 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007385 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007386 .manufacture_id = SPANSION_ID,
7387 .model_id = SPANSION_S25FL016A,
7388 .total_size = 2048,
7389 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007390 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007391 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007392 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007393 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007394 .block_erasers =
7395 {
7396 {
7397 .eraseblocks = { {64 * 1024, 32} },
7398 .block_erase = spi_block_erase_d8,
7399 }, {
7400 .eraseblocks = { {2 * 1024 * 1024, 1} },
7401 .block_erase = spi_block_erase_c7,
7402 }
7403 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007404 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007405 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007406 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007407 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007408 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007409 },
7410
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007411 {
Rudy Hostf4e57772010-11-29 00:37:49 +00007412 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007413 .name = "S25FL032A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007414 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007415 .manufacture_id = SPANSION_ID,
7416 .model_id = SPANSION_S25FL032A,
7417 .total_size = 4096,
7418 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007419 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007420 .tested = TEST_OK_PREW,
Rudy Hostf4e57772010-11-29 00:37:49 +00007421 .probe = probe_spi_rdid,
7422 .probe_timing = TIMING_ZERO,
7423 .block_erasers =
7424 {
7425 {
7426 .eraseblocks = { {64 * 1024, 64} },
7427 .block_erase = spi_block_erase_d8,
7428 }, {
7429 .eraseblocks = { {4 * 1024 * 1024, 1} },
7430 .block_erase = spi_block_erase_c7,
7431 }
7432 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007433 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007434 .unlock = spi_disable_blockprotect,
7435 .write = spi_chip_write_256,
7436 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007437 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007438 },
7439
7440 {
7441 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007442 .name = "S25FL064A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007443 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007444 .manufacture_id = SPANSION_ID,
7445 .model_id = SPANSION_S25FL064A,
7446 .total_size = 8192,
7447 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007448 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007449 .tested = TEST_OK_PREW,
7450 .probe = probe_spi_rdid,
7451 .probe_timing = TIMING_ZERO,
7452 .block_erasers =
7453 {
7454 {
7455 .eraseblocks = { {64 * 1024, 128} },
7456 .block_erase = spi_block_erase_d8,
7457 }, {
7458 .eraseblocks = { {8 * 1024 * 1024, 1} },
7459 .block_erase = spi_block_erase_c7,
7460 }
7461 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007462 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007463 .unlock = spi_disable_blockprotect,
7464 .write = spi_chip_write_256,
7465 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007466 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007467 },
7468
7469 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007470 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +00007471 .name = "SST25LF040A",
7472 .bustype = BUS_SPI,
7473 .manufacture_id = SST_ID,
7474 .model_id = SST_SST25VF040_REMS,
7475 .total_size = 512,
7476 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007477 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +00007478 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +00007479 .probe = probe_spi_res2,
7480 .probe_timing = TIMING_ZERO,
7481 .block_erasers =
7482 {
7483 {
7484 .eraseblocks = { {4 * 1024, 128} },
7485 .block_erase = spi_block_erase_20,
7486 }, {
7487 .eraseblocks = { {32 * 1024, 16} },
7488 .block_erase = spi_block_erase_52,
7489 }, {
7490 .eraseblocks = { {512 * 1024, 1} },
7491 .block_erase = spi_block_erase_60,
7492 },
7493 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007494 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007495 .unlock = spi_disable_blockprotect,
7496 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7497 .read = spi_chip_read,
7498 .voltage = {3000, 3600},
7499 },
7500
7501 {
7502 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007503 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +00007504 .bustype = BUS_SPI,
7505 .manufacture_id = SST_ID,
7506 .model_id = SST_SST25VF080_REMS,
7507 .total_size = 1024,
7508 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007509 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +00007510 .tested = TEST_UNTESTED,
7511 .probe = probe_spi_res2,
7512 .probe_timing = TIMING_ZERO,
7513 .block_erasers =
7514 {
7515 {
7516 .eraseblocks = { {4 * 1024, 256} },
7517 .block_erase = spi_block_erase_20,
7518 }, {
7519 .eraseblocks = { {32 * 1024, 32} },
7520 .block_erase = spi_block_erase_52,
7521 }, {
7522 .eraseblocks = { {1024 * 1024, 1} },
7523 .block_erase = spi_block_erase_60,
7524 },
7525 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007526 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007527 .unlock = spi_disable_blockprotect,
7528 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7529 .read = spi_chip_read,
7530 .voltage = {3000, 3600},
7531 },
7532
7533 {
7534 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007535 .name = "SST25VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007536 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +00007537 .manufacture_id = SST_ID,
7538 .model_id = SST_SST25VF010_REMS,
7539 .total_size = 128,
7540 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007541 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00007542 .tested = TEST_OK_PREW,
7543 .probe = probe_spi_rems,
7544 .probe_timing = TIMING_ZERO,
7545 .block_erasers =
7546 {
7547 {
7548 .eraseblocks = { {4 * 1024, 32} },
7549 .block_erase = spi_block_erase_20,
7550 }, {
7551 .eraseblocks = { {32 * 1024, 4} },
7552 .block_erase = spi_block_erase_52,
7553 }, {
7554 .eraseblocks = { {128 * 1024, 1} },
7555 .block_erase = spi_block_erase_60,
7556 },
7557 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007558 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +00007559 .unlock = spi_disable_blockprotect,
7560 .write = spi_chip_write_1,
7561 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007562 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +00007563 },
7564
7565 {
7566 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007567 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007568 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007569 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007570 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007571 .total_size = 2048,
7572 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007573 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +00007574 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007575 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007576 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007577 .block_erasers =
7578 {
7579 {
7580 .eraseblocks = { {4 * 1024, 512} },
7581 .block_erase = spi_block_erase_20,
7582 }, {
7583 .eraseblocks = { {32 * 1024, 64} },
7584 .block_erase = spi_block_erase_52,
7585 }, {
7586 .eraseblocks = { {64 * 1024, 32} },
7587 .block_erase = spi_block_erase_d8,
7588 }, {
7589 .eraseblocks = { {2 * 1024 * 1024, 1} },
7590 .block_erase = spi_block_erase_60,
7591 }, {
7592 .eraseblocks = { {2 * 1024 * 1024, 1} },
7593 .block_erase = spi_block_erase_c7,
7594 },
7595 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007596 .printlock = spi_prettyprint_status_register_sst25vf016,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007597 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007598 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007599 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007600 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007601 },
7602
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007603 {
7604 .vendor = "SST",
7605 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007606 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007607 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007608 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007609 .total_size = 4096,
7610 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007611 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +00007612 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007613 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007614 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007615 .block_erasers =
7616 {
7617 {
7618 .eraseblocks = { {4 * 1024, 1024} },
7619 .block_erase = spi_block_erase_20,
7620 }, {
7621 .eraseblocks = { {32 * 1024, 128} },
7622 .block_erase = spi_block_erase_52,
7623 }, {
7624 .eraseblocks = { {64 * 1024, 64} },
7625 .block_erase = spi_block_erase_d8,
7626 }, {
7627 .eraseblocks = { {4 * 1024 * 1024, 1} },
7628 .block_erase = spi_block_erase_60,
7629 }, {
7630 .eraseblocks = { {4 * 1024 * 1024, 1} },
7631 .block_erase = spi_block_erase_c7,
7632 },
7633 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007634 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007635 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00007636 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007637 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007638 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007639 },
7640
7641 {
7642 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007643 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007644 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007645 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007646 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007647 .total_size = 8192,
7648 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007649 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +00007650 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007651 .probe = probe_spi_rdid,
7652 .probe_timing = TIMING_ZERO,
7653 .block_erasers =
7654 {
7655 {
7656 .eraseblocks = { {4 * 1024, 2048} },
7657 .block_erase = spi_block_erase_20,
7658 }, {
7659 .eraseblocks = { {32 * 1024, 256} },
7660 .block_erase = spi_block_erase_52,
7661 }, {
7662 .eraseblocks = { {64 * 1024, 128} },
7663 .block_erase = spi_block_erase_d8,
7664 }, {
7665 .eraseblocks = { {8 * 1024 * 1024, 1} },
7666 .block_erase = spi_block_erase_60,
7667 }, {
7668 .eraseblocks = { {8 * 1024 * 1024, 1} },
7669 .block_erase = spi_block_erase_c7,
7670 },
7671 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007672 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007673 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00007674 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007675 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007676 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007677 },
7678
7679 {
7680 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007681 .name = "SST25VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007682 .bustype = BUS_SPI,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007683 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007684 .model_id = SST_SST25VF040_REMS,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007685 .total_size = 512,
7686 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007687 .feature_bits = FEATURE_WRSR_EWSR,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007688 .tested = TEST_OK_PR,
7689 .probe = probe_spi_rems,
7690 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007691 .block_erasers =
7692 {
7693 {
7694 .eraseblocks = { {4 * 1024, 128} },
7695 .block_erase = spi_block_erase_20,
7696 }, {
7697 .eraseblocks = { {32 * 1024, 16} },
7698 .block_erase = spi_block_erase_52,
7699 }, {
7700 .eraseblocks = { {512 * 1024, 1} },
7701 .block_erase = spi_block_erase_60,
7702 },
7703 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007704 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007705 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007706 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007707 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007708 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007709 },
7710
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007711 {
7712 .vendor = "SST",
7713 .name = "SST25VF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007714 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007715 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007716 .model_id = SST_SST25VF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007717 .total_size = 512,
7718 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007719 .feature_bits = FEATURE_WRSR_EWSR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007720 .tested = TEST_UNTESTED,
7721 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007722 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007723 .block_erasers =
7724 {
7725 {
7726 .eraseblocks = { {4 * 1024, 128} },
7727 .block_erase = spi_block_erase_20,
7728 }, {
7729 .eraseblocks = { {32 * 1024, 16} },
7730 .block_erase = spi_block_erase_52,
7731 }, {
7732 .eraseblocks = { {64 * 1024, 8} },
7733 .block_erase = spi_block_erase_d8,
7734 }, {
7735 .eraseblocks = { {512 * 1024, 1} },
7736 .block_erase = spi_block_erase_60,
7737 }, {
7738 .eraseblocks = { {512 * 1024, 1} },
7739 .block_erase = spi_block_erase_c7,
7740 },
7741 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007742 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007743 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007744 .write = spi_aai_write,
Zheng Bao0677dff2009-02-25 08:07:33 +00007745 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007746 .voltage = {2700, 3600},
Zheng Bao0677dff2009-02-25 08:07:33 +00007747 },
7748
7749 {
7750 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00007751 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007752 .bustype = BUS_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00007753 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007754 .model_id = SST_SST25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00007755 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007756 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007757 .feature_bits = FEATURE_WRSR_EWSR,
Peter Stugefd9217d2009-01-26 03:37:40 +00007758 .tested = TEST_OK_PR,
7759 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007760 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007761 .block_erasers =
7762 {
7763 {
7764 .eraseblocks = { {4 * 1024, 128} },
7765 .block_erase = spi_block_erase_20,
7766 }, {
7767 .eraseblocks = { {32 * 1024, 16} },
7768 .block_erase = spi_block_erase_52,
7769 }, {
7770 .eraseblocks = { {64 * 1024, 8} },
7771 .block_erase = spi_block_erase_d8,
7772 }, {
7773 .eraseblocks = { {512 * 1024, 1} },
7774 .block_erase = spi_block_erase_60,
7775 }, {
7776 .eraseblocks = { {512 * 1024, 1} },
7777 .block_erase = spi_block_erase_c7,
7778 },
7779 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007780 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007781 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007782 .write = spi_aai_write,
Peter Stugefd9217d2009-01-26 03:37:40 +00007783 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007784 .voltage = {2700, 3600},
Peter Stugefd9217d2009-01-26 03:37:40 +00007785 },
7786
7787 {
7788 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007789 .name = "SST25VF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007790 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007791 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007792 .model_id = SST_SST25VF080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007793 .total_size = 1024,
7794 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007795 .feature_bits = FEATURE_WRSR_EWSR,
John Schmergec965c2d2011-05-18 11:28:47 +00007796 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007797 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007798 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007799 .block_erasers =
7800 {
7801 {
7802 .eraseblocks = { {4 * 1024, 256} },
7803 .block_erase = spi_block_erase_20,
7804 }, {
7805 .eraseblocks = { {32 * 1024, 32} },
7806 .block_erase = spi_block_erase_52,
7807 }, {
7808 .eraseblocks = { {64 * 1024, 16} },
7809 .block_erase = spi_block_erase_d8,
7810 }, {
7811 .eraseblocks = { {1024 * 1024, 1} },
7812 .block_erase = spi_block_erase_60,
7813 }, {
7814 .eraseblocks = { {1024 * 1024, 1} },
7815 .block_erase = spi_block_erase_c7,
7816 },
7817 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007818 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007819 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007820 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007821 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007822 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007823 },
7824
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007825 {
7826 .vendor = "SST",
Stefan Tauner9e349e42012-10-01 22:45:08 +00007827 .name = "SST25WF512",
7828 .bustype = BUS_SPI,
7829 .manufacture_id = SST_ID,
7830 .model_id = SST_SST25WF512,
7831 .total_size = 64,
7832 .page_size = 256,
7833 .feature_bits = FEATURE_WRSR_EITHER,
7834 .tested = TEST_UNTESTED,
7835 .probe = probe_spi_rdid,
7836 .probe_timing = TIMING_ZERO,
7837 .block_erasers =
7838 {
7839 {
7840 .eraseblocks = { {4 * 1024, 16} },
7841 .block_erase = spi_block_erase_20,
7842 }, {
7843 .eraseblocks = { {32 * 1024, 2} },
7844 .block_erase = spi_block_erase_52,
7845 }, {
7846 .eraseblocks = { {1024 * 64, 1} },
7847 .block_erase = spi_block_erase_60,
7848 }, {
7849 .eraseblocks = { {1024 * 64, 1} },
7850 .block_erase = spi_block_erase_c7,
7851 },
7852 },
7853 .unlock = spi_disable_blockprotect,
7854 .write = spi_aai_write,
7855 .read = spi_chip_read, /* Fast read (0x0B) supported */
7856 .voltage = {1650, 1950},
7857 },
7858
7859 {
7860 .vendor = "SST",
7861 .name = "SST25WF010",
7862 .bustype = BUS_SPI,
7863 .manufacture_id = SST_ID,
7864 .model_id = SST_SST25WF010,
7865 .total_size = 128,
7866 .page_size = 256,
7867 .feature_bits = FEATURE_WRSR_EITHER,
7868 .tested = TEST_UNTESTED,
7869 .probe = probe_spi_rdid,
7870 .probe_timing = TIMING_ZERO,
7871 .block_erasers =
7872 {
7873 {
7874 .eraseblocks = { {4 * 1024, 32} },
7875 .block_erase = spi_block_erase_20,
7876 }, {
7877 .eraseblocks = { {32 * 1024, 4} },
7878 .block_erase = spi_block_erase_52,
7879 }, {
7880 .eraseblocks = { {1024 * 128, 1} },
7881 .block_erase = spi_block_erase_60,
7882 }, {
7883 .eraseblocks = { {1024 * 128, 1} },
7884 .block_erase = spi_block_erase_c7,
7885 },
7886 },
7887 .unlock = spi_disable_blockprotect,
7888 .write = spi_aai_write,
7889 .read = spi_chip_read, /* Fast read (0x0B) supported */
7890 .voltage = {1650, 1950},
7891 },
7892
7893 {
7894 .vendor = "SST",
7895 .name = "SST25WF020",
7896 .bustype = BUS_SPI,
7897 .manufacture_id = SST_ID,
7898 .model_id = SST_SST25WF020,
7899 .total_size = 256,
7900 .page_size = 256,
7901 .feature_bits = FEATURE_WRSR_EITHER,
7902 .tested = TEST_UNTESTED,
7903 .probe = probe_spi_rdid,
7904 .probe_timing = TIMING_ZERO,
7905 .block_erasers =
7906 {
7907 {
7908 .eraseblocks = { {4 * 1024, 64} },
7909 .block_erase = spi_block_erase_20,
7910 }, {
7911 .eraseblocks = { {32 * 1024, 8} },
7912 .block_erase = spi_block_erase_52,
7913 }, {
7914 .eraseblocks = { {64 * 1024, 4} },
7915 .block_erase = spi_block_erase_d8,
7916 }, {
7917 .eraseblocks = { {1024 * 256, 1} },
7918 .block_erase = spi_block_erase_60,
7919 }, {
7920 .eraseblocks = { {1024 * 256, 1} },
7921 .block_erase = spi_block_erase_c7,
7922 },
7923 },
7924 .unlock = spi_disable_blockprotect,
7925 .write = spi_aai_write,
7926 .read = spi_chip_read, /* Fast read (0x0B) supported */
7927 .voltage = {1650, 1950},
7928 },
7929
7930 {
7931 .vendor = "SST",
7932 .name = "SST25WF040",
7933 .bustype = BUS_SPI,
7934 .manufacture_id = SST_ID,
7935 .model_id = SST_SST25WF040,
7936 .total_size = 512,
7937 .page_size = 256,
7938 .feature_bits = FEATURE_WRSR_EITHER,
7939 .tested = TEST_UNTESTED,
7940 .probe = probe_spi_rdid,
7941 .probe_timing = TIMING_ZERO,
7942 .block_erasers =
7943 {
7944 {
7945 .eraseblocks = { {4 * 1024, 128} },
7946 .block_erase = spi_block_erase_20,
7947 }, {
7948 .eraseblocks = { {32 * 1024, 16} },
7949 .block_erase = spi_block_erase_52,
7950 }, {
7951 .eraseblocks = { {64 * 1024, 8} },
7952 .block_erase = spi_block_erase_d8,
7953 }, {
7954 .eraseblocks = { {1024 * 512, 1} },
7955 .block_erase = spi_block_erase_60,
7956 }, {
7957 .eraseblocks = { {1024 * 512, 1} },
7958 .block_erase = spi_block_erase_c7,
7959 },
7960 },
7961 .unlock = spi_disable_blockprotect,
7962 .write = spi_aai_write,
7963 .read = spi_chip_read, /* Fast read (0x0B) supported */
7964 .voltage = {1650, 1950},
7965 },
7966
7967 {
7968 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007969 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007970 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007971 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007972 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007973 .total_size = 512,
7974 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00007975 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007976 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007977 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007978 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007979 .block_erasers =
7980 {
7981 {
7982 .eraseblocks = { {128, 4096} },
7983 .block_erase = erase_sector_28sf040,
7984 }, {
7985 .eraseblocks = { {512 * 1024, 1} },
7986 .block_erase = erase_chip_28sf040,
7987 }
7988 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007989 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007990 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007991 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007992 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00007993 },
7994
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007995 {
7996 .vendor = "SST",
7997 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007998 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007999 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008000 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008001 .total_size = 128,
8002 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008003 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008004 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008005 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008006 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008007 .block_erasers =
8008 {
8009 {
8010 .eraseblocks = { {128 * 1024, 1} },
8011 .block_erase = erase_chip_block_jedec,
8012 }
8013 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008014 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008015 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008016 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008017 },
8018
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008019 {
8020 .vendor = "SST",
8021 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008022 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008023 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008024 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008025 .total_size = 128,
8026 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008027 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008028 .tested = TEST_UNTESTED,
8029 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008030 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008031 .block_erasers =
8032 {
8033 {
8034 .eraseblocks = { {128 * 1024, 1} },
8035 .block_erase = erase_chip_block_jedec,
8036 }
8037 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008038 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008039 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008040 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008041 },
8042
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008043 {
8044 .vendor = "SST",
8045 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008046 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008047 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008048 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008049 .total_size = 256,
8050 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008051 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008052 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008053 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008054 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008055 .block_erasers =
8056 {
8057 {
8058 .eraseblocks = { {256 * 1024, 1} },
8059 .block_erase = erase_chip_block_jedec,
8060 }
8061 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008062 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008063 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008064 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008065 },
8066
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008067 {
8068 .vendor = "SST",
8069 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008070 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008071 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008072 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008073 .total_size = 256,
8074 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008075 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008076 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008077 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008078 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008079 .block_erasers =
8080 {
8081 {
8082 .eraseblocks = { {256 * 1024, 1} },
8083 .block_erase = erase_chip_block_jedec,
8084 }
8085 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008086 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008087 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008088 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008089 },
8090
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008091 {
8092 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00008093 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008094 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008095 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008096 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008097 .total_size = 64,
8098 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008099 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +00008100 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008101 .probe = probe_jedec,
8102 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00008103 .block_erasers =
8104 {
8105 {
8106 .eraseblocks = { {4 * 1024, 16} },
8107 .block_erase = erase_sector_jedec,
8108 }, {
8109 .eraseblocks = { {64 * 1024, 1} },
8110 .block_erase = erase_chip_block_jedec,
8111 }
8112 },
Sean Nelson35727f72010-01-28 23:55:12 +00008113 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008114 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008115 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +00008116 },
8117
8118 {
8119 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008120 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008121 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008122 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008123 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008124 .total_size = 128,
8125 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008126 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008127 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008128 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008129 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008130 .block_erasers =
8131 {
8132 {
8133 .eraseblocks = { {4 * 1024, 32} },
8134 .block_erase = erase_sector_jedec,
8135 }, {
8136 .eraseblocks = { {128 * 1024, 1} },
8137 .block_erase = erase_chip_block_jedec,
8138 }
8139 },
Sean Nelson35727f72010-01-28 23:55:12 +00008140 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008141 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008142 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008143 },
8144
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008145 {
8146 .vendor = "SST",
8147 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008148 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008149 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008150 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008151 .total_size = 256,
8152 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008153 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +00008154 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008155 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008156 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008157 .block_erasers =
8158 {
8159 {
8160 .eraseblocks = { {4 * 1024, 64} },
8161 .block_erase = erase_sector_jedec,
8162 }, {
8163 .eraseblocks = { {256 * 1024, 1} },
8164 .block_erase = erase_chip_block_jedec,
8165 }
8166 },
Sean Nelson35727f72010-01-28 23:55:12 +00008167 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008168 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008169 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008170 },
8171
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008172 {
8173 .vendor = "SST",
8174 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008175 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008176 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008177 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008178 .total_size = 512,
8179 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008180 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008181 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008182 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008183 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008184 .block_erasers =
8185 {
8186 {
8187 .eraseblocks = { {4 * 1024, 128} },
8188 .block_erase = erase_sector_jedec,
8189 }, {
8190 .eraseblocks = { {512 * 1024, 1} },
8191 .block_erase = erase_chip_block_jedec,
8192 }
8193 },
Sean Nelson35727f72010-01-28 23:55:12 +00008194 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008195 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008196 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008197 },
8198
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008199 {
8200 .vendor = "SST",
8201 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008202 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008203 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008204 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008205 .total_size = 64,
8206 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008207 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00008208 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008209 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008210 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008211 .block_erasers =
8212 {
8213 {
8214 .eraseblocks = { {4 * 1024, 16} },
8215 .block_erase = erase_sector_jedec,
8216 }, {
8217 .eraseblocks = { {64 * 1024, 1} },
8218 .block_erase = erase_chip_block_jedec,
8219 }
8220 },
Sean Nelson35727f72010-01-28 23:55:12 +00008221 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008222 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008223 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008224 },
8225
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008226 {
8227 .vendor = "SST",
8228 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008229 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008230 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008231 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008232 .total_size = 128,
8233 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008234 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00008235 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008236 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008237 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008238 .block_erasers =
8239 {
8240 {
8241 .eraseblocks = { {4 * 1024, 32} },
8242 .block_erase = erase_sector_jedec,
8243 }, {
8244 .eraseblocks = { {128 * 1024, 1} },
8245 .block_erase = erase_chip_block_jedec,
8246 }
8247 },
Sean Nelson35727f72010-01-28 23:55:12 +00008248 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008249 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008250 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008251 },
8252
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008253 {
8254 .vendor = "SST",
8255 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008256 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008257 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008258 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008259 .total_size = 256,
8260 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008261 .feature_bits = FEATURE_EITHER_RESET,
8262 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008263 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008264 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008265 .block_erasers =
8266 {
8267 {
8268 .eraseblocks = { {4 * 1024, 64} },
8269 .block_erase = erase_sector_jedec,
8270 }, {
8271 .eraseblocks = { {256 * 1024, 1} },
8272 .block_erase = erase_chip_block_jedec,
8273 }
8274 },
Sean Nelson35727f72010-01-28 23:55:12 +00008275 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008276 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008277 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008278 },
8279
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008280 {
8281 .vendor = "SST",
8282 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008283 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008284 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008285 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008286 .total_size = 512,
8287 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008288 .feature_bits = FEATURE_EITHER_RESET,
8289 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008290 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008291 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008292 .block_erasers =
8293 {
8294 {
8295 .eraseblocks = { {4 * 1024, 128} },
8296 .block_erase = erase_sector_jedec,
8297 }, {
8298 .eraseblocks = { {512 * 1024, 1} },
8299 .block_erase = erase_chip_block_jedec,
8300 }
8301 },
Sean Nelson35727f72010-01-28 23:55:12 +00008302 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008303 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008304 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00008305 },
FENG yu ningff692fb2008-12-08 18:15:10 +00008306
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008307 {
8308 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00008309 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008310 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008311 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008312 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00008313 .total_size = 1024,
8314 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008315 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00008316 .tested = TEST_UNTESTED,
8317 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008318 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008319 .block_erasers =
8320 {
8321 {
8322 .eraseblocks = { {4 * 1024, 256} },
8323 .block_erase = erase_sector_jedec,
8324 }, {
8325 .eraseblocks = { {64 * 1024, 16} },
8326 .block_erase = erase_block_jedec,
8327 }, {
8328 .eraseblocks = { {1024 * 1024, 1} },
8329 .block_erase = erase_chip_block_jedec,
8330 }
8331 },
Sean Nelson35727f72010-01-28 23:55:12 +00008332 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008333 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008334 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +00008335 },
8336
8337 {
8338 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008339 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008340 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008341 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008342 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008343 .total_size = 256,
8344 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008345 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008346 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008347 .probe = probe_jedec,
8348 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008349 .block_erasers =
8350 {
8351 {
8352 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008353 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008354 }, {
8355 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008356 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008357 }, {
8358 .eraseblocks = { {256 * 1024, 1} },
8359 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8360 }
8361 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008362 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008363 .unlock = unlock_sst_fwhub,
8364 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008365 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008366 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008367 },
8368
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008369 {
8370 .vendor = "SST",
8371 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008372 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008373 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008374 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008375 .total_size = 384,
8376 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008377 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +00008378 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008379 .probe = probe_jedec,
8380 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008381 .block_erasers =
8382 {
8383 {
8384 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008385 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008386 }, {
8387 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008388 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008389 }, {
8390 .eraseblocks = { {384 * 1024, 1} },
8391 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8392 }
8393 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008394 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008395 .unlock = unlock_sst_fwhub,
8396 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008397 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008398 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008399 },
8400
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008401 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008402 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
8403 * and is only honored for 64k block erase, but not 4k sector erase.
8404 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008405 .vendor = "SST",
8406 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008407 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008408 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008409 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008410 .total_size = 512,
8411 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008412 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008413 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008414 .probe = probe_jedec,
8415 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008416 .block_erasers =
8417 {
8418 {
8419 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008420 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008421 }, {
8422 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008423 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008424 }, {
8425 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00008426 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008427 },
8428 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008429 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008430 .unlock = unlock_sst_fwhub,
8431 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008432 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008433 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008434 },
8435
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008436 {
8437 .vendor = "SST",
8438 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008439 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008440 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008441 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008442 .total_size = 512,
8443 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008444 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008445 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008446 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008447 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008448 .block_erasers =
8449 {
8450 {
8451 .eraseblocks = { {4 * 1024, 128} },
8452 .block_erase = erase_sector_49lfxxxc,
8453 }, {
8454 .eraseblocks = {
8455 {64 * 1024, 7},
8456 {32 * 1024, 1},
8457 {8 * 1024, 2},
8458 {16 * 1024, 1},
8459 },
Sean Nelson69e58112010-03-23 17:10:28 +00008460 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008461 }
8462 },
Sean Nelson69e58112010-03-23 17:10:28 +00008463 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008464 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008465 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008466 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008467 },
8468
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008469 {
8470 .vendor = "SST",
8471 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008472 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008473 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008474 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008475 .total_size = 1024,
8476 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008477 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008478 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008479 .probe = probe_jedec,
8480 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008481 .block_erasers =
8482 {
8483 {
8484 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008485 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008486 }, {
8487 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008488 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008489 }, {
8490 .eraseblocks = { {1024 * 1024, 1} },
8491 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8492 }
8493 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008494 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008495 .unlock = unlock_sst_fwhub,
8496 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008497 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008498 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008499 },
8500
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008501 {
8502 .vendor = "SST",
8503 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008504 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008505 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008506 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008507 .total_size = 1024,
8508 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008509 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008510 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008511 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008512 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008513 .block_erasers =
8514 {
8515 {
8516 .eraseblocks = { {4 * 1024, 256} },
8517 .block_erase = erase_sector_49lfxxxc,
8518 }, {
8519 .eraseblocks = {
8520 {64 * 1024, 15},
8521 {32 * 1024, 1},
8522 {8 * 1024, 2},
8523 {16 * 1024, 1},
8524 },
Sean Nelson69e58112010-03-23 17:10:28 +00008525 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008526 }
8527 },
Sean Nelson69e58112010-03-23 17:10:28 +00008528 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008529 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008530 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008531 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008532 },
8533
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008534 {
8535 .vendor = "SST",
8536 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008537 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008538 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008539 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008540 .total_size = 2048,
8541 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008542 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner2abab942012-04-27 20:41:23 +00008543 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008544 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008545 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008546 .block_erasers =
8547 {
8548 {
8549 .eraseblocks = { {4 * 1024, 512} },
8550 .block_erase = erase_sector_49lfxxxc,
8551 }, {
8552 .eraseblocks = {
8553 {64 * 1024, 31},
8554 {32 * 1024, 1},
8555 {8 * 1024, 2},
8556 {16 * 1024, 1},
8557 },
Sean Nelson69e58112010-03-23 17:10:28 +00008558 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008559 }
8560 },
Sean Nelson69e58112010-03-23 17:10:28 +00008561 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008562 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008563 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008564 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008565 },
8566
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008567 {
8568 .vendor = "SST",
8569 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008570 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008571 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008572 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008573 .total_size = 256,
8574 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008575 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00008576 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008577 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008578 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008579 .block_erasers =
8580 {
8581 {
8582 .eraseblocks = { {4 * 1024, 64} },
8583 .block_erase = erase_sector_jedec,
8584 }, {
8585 .eraseblocks = { {16 * 1024, 16} },
8586 .block_erase = erase_block_jedec,
8587 }, {
8588 .eraseblocks = { {256 * 1024, 1} },
8589 .block_erase = NULL,
8590 }
8591 },
Sean Nelson35727f72010-01-28 23:55:12 +00008592 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008593 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008594 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +00008595 },
8596
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008597 {
8598 .vendor = "SST",
8599 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008600 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008601 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008602 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008603 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00008604 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008605 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008606 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008607 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008608 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008609 .block_erasers =
8610 {
8611 {
8612 .eraseblocks = { {4 * 1024, 64} },
8613 .block_erase = erase_sector_jedec,
8614 }, {
8615 .eraseblocks = { {16 * 1024, 16} },
8616 .block_erase = erase_block_jedec,
8617 }, {
8618 .eraseblocks = { {256 * 1024, 1} },
8619 .block_erase = NULL,
8620 }
8621 },
Sean Nelson35727f72010-01-28 23:55:12 +00008622 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008623 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008624 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008625 },
8626
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008627 {
8628 .vendor = "SST",
8629 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008630 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008631 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008632 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008633 .total_size = 512,
8634 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008635 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008636 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008637 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008638 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008639 .block_erasers =
8640 {
8641 {
8642 .eraseblocks = { {4 * 1024, 128} },
8643 .block_erase = erase_sector_jedec,
8644 }, {
8645 .eraseblocks = { {64 * 1024, 8} },
8646 .block_erase = erase_block_jedec,
8647 }, {
8648 .eraseblocks = { {512 * 1024, 1} },
8649 .block_erase = NULL,
8650 }
8651 },
Sean Nelson35727f72010-01-28 23:55:12 +00008652 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008653 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008654 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008655 },
8656
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008657 {
8658 .vendor = "SST",
8659 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008660 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008661 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008662 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008663 .total_size = 512,
8664 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00008665 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008666 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008667 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008668 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008669 .block_erasers =
8670 {
8671 {
8672 .eraseblocks = { {4 * 1024, 128} },
8673 .block_erase = erase_sector_jedec,
8674 }, {
8675 .eraseblocks = { {64 * 1024, 8} },
8676 .block_erase = erase_block_jedec,
8677 }, {
8678 .eraseblocks = { {512 * 1024, 1} },
8679 .block_erase = NULL,
8680 }
8681 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00008682 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00008683 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008684 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008685 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008686 },
8687
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008688 {
8689 .vendor = "SST",
8690 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008691 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008692 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008693 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008694 .total_size = 1024,
8695 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008696 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +00008697 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008698 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00008699 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008700 .block_erasers =
8701 {
8702 {
8703 .eraseblocks = { {4 * 1024, 256} },
8704 .block_erase = erase_sector_jedec,
8705 }, {
8706 .eraseblocks = { {64 * 1024, 16} },
8707 .block_erase = erase_block_jedec,
8708 }, {
8709 .eraseblocks = { {1024 * 1024, 1} },
8710 .block_erase = NULL,
8711 }
8712 },
Sean Nelson35727f72010-01-28 23:55:12 +00008713 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008714 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008715 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008716 },
8717
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008718 {
8719 .vendor = "SST",
8720 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008721 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008722 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008723 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008724 .total_size = 2048,
8725 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008726 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008727 .tested = TEST_OK_PRE,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008728 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008729 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008730 .block_erasers =
8731 {
8732 {
8733 .eraseblocks = { {4 * 1024, 512} },
8734 .block_erase = erase_sector_49lfxxxc,
8735 }, {
8736 .eraseblocks = {
8737 {64 * 1024, 31},
8738 {32 * 1024, 1},
8739 {8 * 1024, 2},
8740 {16 * 1024, 1},
8741 },
Sean Nelson69e58112010-03-23 17:10:28 +00008742 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008743 }
8744 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00008745 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008746 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008747 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008748 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008749 },
8750
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008751 {
8752 .vendor = "ST",
8753 .name = "M25P05-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008754 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008755 .manufacture_id = ST_ID,
8756 .model_id = ST_M25P05A,
8757 .total_size = 64,
8758 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008759 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008760 .tested = TEST_UNTESTED,
8761 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008762 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008763 .block_erasers =
8764 {
8765 {
8766 .eraseblocks = { {32 * 1024, 2} },
8767 .block_erase = spi_block_erase_d8,
8768 }, {
8769 .eraseblocks = { {64 * 1024, 1} },
8770 .block_erase = spi_block_erase_c7,
8771 }
8772 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008773 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008774 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008775 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008776 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008777 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008778 },
8779
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008780 /* The ST M25P05 is a bit of a problem. It has the same ID as the
8781 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008782 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008783 * only is successful if RDID does not work.
8784 */
8785 {
8786 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008787 .name = "M25P05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008788 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008789 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008790 .model_id = ST_M25P05_RES,
8791 .total_size = 64,
8792 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008793 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008794 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008795 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008796 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008797 .block_erasers =
8798 {
8799 {
8800 .eraseblocks = { {32 * 1024, 2} },
8801 .block_erase = spi_block_erase_d8,
8802 }, {
8803 .eraseblocks = { {64 * 1024, 1} },
8804 .block_erase = spi_block_erase_c7,
8805 }
8806 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008807 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008808 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008809 .write = spi_chip_write_1, /* 128 */
8810 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008811 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008812 },
8813
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008814 {
8815 .vendor = "ST",
8816 .name = "M25P10-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008817 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008818 .manufacture_id = ST_ID,
8819 .model_id = ST_M25P10A,
8820 .total_size = 128,
8821 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008822 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008823 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008824 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008825 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008826 .block_erasers =
8827 {
8828 {
8829 .eraseblocks = { {32 * 1024, 4} },
8830 .block_erase = spi_block_erase_d8,
8831 }, {
8832 .eraseblocks = { {128 * 1024, 1} },
8833 .block_erase = spi_block_erase_c7,
8834 }
8835 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008836 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008837 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008838 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008839 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008840 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008841 },
8842
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008843 /* The ST M25P10 has the same problem as the M25P05. */
8844 {
8845 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008846 .name = "M25P10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008847 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008848 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008849 .model_id = ST_M25P10_RES,
8850 .total_size = 128,
8851 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008852 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008853 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008854 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008855 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008856 .block_erasers =
8857 {
8858 {
8859 .eraseblocks = { {32 * 1024, 4} },
8860 .block_erase = spi_block_erase_d8,
8861 }, {
8862 .eraseblocks = { {128 * 1024, 1} },
8863 .block_erase = spi_block_erase_c7,
8864 }
8865 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008866 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008867 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008868 .write = spi_chip_write_1, /* 128 */
8869 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008870 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008871 },
8872
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008873 {
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00008874 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008875 .name = "M25P20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008876 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008877 .manufacture_id = ST_ID,
8878 .model_id = ST_M25P20,
8879 .total_size = 256,
8880 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008881 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008882 .tested = TEST_UNTESTED,
8883 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008884 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008885 .block_erasers =
8886 {
8887 {
8888 .eraseblocks = { {64 * 1024, 4} },
8889 .block_erase = spi_block_erase_d8,
8890 }, {
8891 .eraseblocks = { {256 * 1024, 1} },
8892 .block_erase = spi_block_erase_c7,
8893 }
8894 },
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00008895 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008896 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008897 .write = spi_chip_write_256,
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00008898 .read = spi_chip_read, /* Fast read (0x0B) supported */
8899 .voltage = {2700, 3600},
8900 },
8901
8902 {
8903 .vendor = "ST",
8904 .name = "M25P20-old",
8905 .bustype = BUS_SPI,
8906 .manufacture_id = 0, /* Not used. */
8907 .model_id = ST_M25P20_RES,
8908 .total_size = 256,
8909 .page_size = 256,
8910 .feature_bits = FEATURE_WRSR_WREN,
8911 .tested = TEST_OK_PREW,
8912 .probe = probe_spi_res1,
8913 .probe_timing = TIMING_ZERO,
8914 .block_erasers =
8915 {
8916 {
8917 .eraseblocks = { {64 * 1024, 4} },
8918 .block_erase = spi_block_erase_d8,
8919 }, {
8920 .eraseblocks = { {256 * 1024, 1} },
8921 .block_erase = spi_block_erase_c7,
8922 }
8923 },
8924 .printlock = spi_prettyprint_status_register_default_bp1,
8925 .unlock = spi_disable_blockprotect,
8926 .write = spi_chip_write_256,
8927 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008928 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008929 },
8930
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008931 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008932 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008933 .name = "M25P40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008934 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008935 .manufacture_id = ST_ID,
8936 .model_id = ST_M25P40,
8937 .total_size = 512,
8938 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008939 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00008940 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008941 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008942 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008943 .block_erasers =
8944 {
8945 {
8946 .eraseblocks = { {64 * 1024, 8} },
8947 .block_erase = spi_block_erase_d8,
8948 }, {
8949 .eraseblocks = { {512 * 1024, 1} },
8950 .block_erase = spi_block_erase_c7,
8951 }
8952 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008953 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008954 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008955 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008956 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008957 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008958 },
8959
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008960 {
8961 .vendor = "ST",
8962 .name = "M25P40-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008963 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008964 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008965 .model_id = ST_M25P40_RES,
8966 .total_size = 512,
8967 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008968 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008969 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008970 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008971 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008972 .block_erasers =
8973 {
8974 {
8975 .eraseblocks = { {64 * 1024, 8} },
8976 .block_erase = spi_block_erase_d8,
8977 }, {
8978 .eraseblocks = { {512 * 1024, 1} },
8979 .block_erase = spi_block_erase_c7,
8980 }
8981 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008982 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008983 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008984 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008985 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00008986 },
8987
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008988 {
8989 .vendor = "ST",
8990 .name = "M25P80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008991 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008992 .manufacture_id = ST_ID,
8993 .model_id = ST_M25P80,
8994 .total_size = 1024,
8995 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008996 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann19f46f22011-06-18 22:56:14 +00008997 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008998 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008999 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009000 .block_erasers =
9001 {
9002 {
9003 .eraseblocks = { {64 * 1024, 16} },
9004 .block_erase = spi_block_erase_d8,
9005 }, {
9006 .eraseblocks = { {1024 * 1024, 1} },
9007 .block_erase = spi_block_erase_c7,
9008 }
9009 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009010 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009011 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009012 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009013 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009014 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009015 },
9016
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009017 {
9018 .vendor = "ST",
9019 .name = "M25P16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009020 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009021 .manufacture_id = ST_ID,
9022 .model_id = ST_M25P16,
9023 .total_size = 2048,
9024 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009025 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009026 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009027 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009028 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009029 .block_erasers =
9030 {
9031 {
9032 .eraseblocks = { {64 * 1024, 32} },
9033 .block_erase = spi_block_erase_d8,
9034 }, {
9035 .eraseblocks = { {2 * 1024 * 1024, 1} },
9036 .block_erase = spi_block_erase_c7,
9037 }
9038 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009039 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009040 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009041 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009042 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009043 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009044 },
9045
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009046 {
9047 .vendor = "ST",
9048 .name = "M25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009049 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009050 .manufacture_id = ST_ID,
9051 .model_id = ST_M25P32,
9052 .total_size = 4096,
9053 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009054 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009055 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009056 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009057 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009058 .block_erasers =
9059 {
9060 {
9061 .eraseblocks = { {64 * 1024, 64} },
9062 .block_erase = spi_block_erase_d8,
9063 }, {
9064 .eraseblocks = { {4 * 1024 * 1024, 1} },
9065 .block_erase = spi_block_erase_c7,
9066 }
9067 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009068 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009069 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009070 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009071 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009072 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009073 },
9074
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009075 {
9076 .vendor = "ST",
9077 .name = "M25P64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009078 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009079 .manufacture_id = ST_ID,
9080 .model_id = ST_M25P64,
9081 .total_size = 8192,
9082 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009083 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00009084 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009085 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009086 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009087 .block_erasers =
9088 {
9089 {
9090 .eraseblocks = { {64 * 1024, 128} },
9091 .block_erase = spi_block_erase_d8,
9092 }, {
9093 .eraseblocks = { {8 * 1024 * 1024, 1} },
9094 .block_erase = spi_block_erase_c7,
9095 }
9096 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009097 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009098 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009099 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009100 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009101 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009102 },
9103
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009104 {
9105 .vendor = "ST",
9106 .name = "M25P128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009107 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009108 .manufacture_id = ST_ID,
9109 .model_id = ST_M25P128,
9110 .total_size = 16384,
9111 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009112 .feature_bits = FEATURE_WRSR_WREN,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009113 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009114 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009115 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009116 .block_erasers =
9117 {
9118 {
9119 .eraseblocks = { {256 * 1024, 64} },
9120 .block_erase = spi_block_erase_d8,
9121 }, {
9122 .eraseblocks = { {16 * 1024 * 1024, 1} },
9123 .block_erase = spi_block_erase_c7,
9124 }
9125 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009126 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009127 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009128 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009129 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009130 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009131 },
9132
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009133 {
9134 .vendor = "ST",
Carl Worthd1dd72c2011-03-06 18:45:40 +00009135 .name = "M25PX16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009136 .bustype = BUS_SPI,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009137 .manufacture_id = ST_ID,
9138 .model_id = ST_M25PX16,
9139 .total_size = 2048,
9140 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00009141 /* OTP: 64B total; read 0x4B; write 0x42 */
Steven Zakulec3603a282012-05-02 20:07:57 +00009142 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009143 .tested = TEST_OK_PREW,
9144 .probe = probe_spi_rdid,
9145 .probe_timing = TIMING_ZERO,
9146 .block_erasers =
9147 {
9148 {
9149 .eraseblocks = { { 4 * 1024, 512 } },
9150 .block_erase = spi_block_erase_20,
9151 }, {
9152 .eraseblocks = { {64 * 1024, 32} },
9153 .block_erase = spi_block_erase_d8,
9154 }, {
9155 .eraseblocks = { {2 * 1024 * 1024, 1} },
9156 .block_erase = spi_block_erase_c7,
9157 }
9158 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009159 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl Worthd1dd72c2011-03-06 18:45:40 +00009160 .unlock = spi_disable_blockprotect,
9161 .write = spi_chip_write_256,
9162 .read = spi_chip_read,
9163 },
9164
9165 {
9166 .vendor = "ST",
Jason Shriver4119e9b2010-09-14 13:16:01 +00009167 .name = "M25PX32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009168 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009169 .manufacture_id = ST_ID,
9170 .model_id = ST_M25PX32,
9171 .total_size = 4096,
9172 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009173 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009174 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009175 .probe = probe_spi_rdid,
9176 .probe_timing = TIMING_ZERO,
9177 .block_erasers =
9178 {
9179 {
9180 .eraseblocks = { { 4 * 1024, 1024 } },
9181 .block_erase = spi_block_erase_20,
9182 }, {
9183 .eraseblocks = { {64 * 1024, 64} },
9184 .block_erase = spi_block_erase_d8,
9185 }, {
9186 .eraseblocks = { {4 * 1024 * 1024, 1} },
9187 .block_erase = spi_block_erase_c7,
9188 }
9189 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009190 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009191 .unlock = spi_disable_blockprotect,
9192 .write = spi_chip_write_256,
9193 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009194 .voltage = {2700, 3600},
Jason Shriver4119e9b2010-09-14 13:16:01 +00009195 },
9196
9197 {
9198 .vendor = "ST",
9199 .name = "M25PX64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009200 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009201 .manufacture_id = ST_ID,
9202 .model_id = ST_M25PX64,
9203 .total_size = 8192,
9204 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009205 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009206 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009207 .probe = probe_spi_rdid,
9208 .probe_timing = TIMING_ZERO,
9209 .block_erasers =
9210 {
9211 {
9212 .eraseblocks = { { 4 * 1024, 2048 } },
9213 .block_erase = spi_block_erase_20,
9214 }, {
9215 .eraseblocks = { {64 * 1024, 128} },
9216 .block_erase = spi_block_erase_d8,
9217 }, {
9218 .eraseblocks = { {8 * 1024 * 1024, 1} },
9219 .block_erase = spi_block_erase_c7,
9220 }
9221 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009222 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009223 .unlock = spi_disable_blockprotect,
9224 .write = spi_chip_write_256,
9225 .read = spi_chip_read,
9226 },
9227
9228 {
9229 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009230 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009231 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009232 .manufacture_id = ST_ID,
9233 .model_id = ST_M29F002B,
9234 .total_size = 256,
9235 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009236 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009237 .tested = TEST_UNTESTED,
9238 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009239 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009240 .block_erasers =
9241 {
9242 {
9243 .eraseblocks = {
9244 {16 * 1024, 1},
9245 {8 * 1024, 2},
9246 {32 * 1024, 1},
9247 {64 * 1024, 3},
9248 },
9249 .block_erase = erase_sector_jedec,
9250 }, {
9251 .eraseblocks = { {256 * 1024, 1} },
9252 .block_erase = erase_chip_block_jedec,
9253 }
9254 },
Sean Nelson35727f72010-01-28 23:55:12 +00009255 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009256 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009257 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009258 },
9259
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009260 {
9261 .vendor = "ST",
9262 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009263 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009264 .manufacture_id = ST_ID,
9265 .model_id = ST_M29F002T,
9266 .total_size = 256,
9267 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009268 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +00009269 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009270 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009271 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009272 .block_erasers =
9273 {
9274 {
9275 .eraseblocks = {
9276 {64 * 1024, 3},
9277 {32 * 1024, 1},
9278 {8 * 1024, 2},
9279 {16 * 1024, 1},
9280 },
9281 .block_erase = erase_sector_jedec,
9282 }, {
9283 .eraseblocks = { {256 * 1024, 1} },
9284 .block_erase = erase_chip_block_jedec,
9285 }
9286 },
Sean Nelson35727f72010-01-28 23:55:12 +00009287 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009288 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009289 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009290 },
9291
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009292 {
9293 .vendor = "ST",
9294 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009295 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009296 .manufacture_id = ST_ID,
9297 .model_id = ST_M29F040B,
9298 .total_size = 512,
9299 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009300 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
9301 .tested = TEST_UNTESTED,
9302 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009303 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +00009304 .block_erasers =
9305 {
9306 {
9307 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00009308 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009309 }, {
9310 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009311 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009312 }
9313 },
Sean Nelson35727f72010-01-28 23:55:12 +00009314 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009315 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009316 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009317 },
9318
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009319 {
Sean Nelson35727f72010-01-28 23:55:12 +00009320 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009321 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009322 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009323 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009324 .manufacture_id = ST_ID,
9325 .model_id = ST_M29F400BB,
9326 .total_size = 512,
9327 .page_size = 64 * 1024,
9328 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009329 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009330 .probe = probe_m29f400bt,
9331 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
9332 .block_erasers =
9333 {
9334 {
9335 .eraseblocks = {
9336 {16 * 1024, 1},
9337 {8 * 1024, 2},
9338 {32 * 1024, 1},
9339 {64 * 1024, 7},
9340 },
9341 .block_erase = block_erase_m29f400bt,
9342 }, {
9343 .eraseblocks = { {512 * 1024, 1} },
9344 .block_erase = block_erase_chip_m29f400bt,
9345 }
9346 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009347 .write = write_m29f400bt,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009348 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009349 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009350 },
9351 {
9352 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
9353 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009354 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009355 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009356 .manufacture_id = ST_ID,
9357 .model_id = ST_M29F400BT,
9358 .total_size = 512,
9359 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009360 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009361 .tested = TEST_UNTESTED,
9362 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009363 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009364 .block_erasers =
9365 {
9366 {
9367 .eraseblocks = {
9368 {64 * 1024, 7},
9369 {32 * 1024, 1},
9370 {8 * 1024, 2},
9371 {16 * 1024, 1},
9372 },
9373 .block_erase = block_erase_m29f400bt,
9374 }, {
9375 .eraseblocks = { {512 * 1024, 1} },
9376 .block_erase = block_erase_chip_m29f400bt,
9377 }
9378 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009379 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009380 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009381 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009382 },
9383
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009384 {
9385 .vendor = "ST",
9386 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009387 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009388 .manufacture_id = ST_ID,
9389 .model_id = ST_M29W010B,
9390 .total_size = 128,
9391 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009392 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009393 .tested = TEST_UNTESTED,
9394 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009395 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009396 .block_erasers =
9397 {
9398 {
9399 .eraseblocks = { {16 * 1024, 8}, },
9400 .block_erase = erase_sector_jedec,
9401 }, {
9402 .eraseblocks = { {128 * 1024, 1} },
9403 .block_erase = erase_chip_block_jedec,
9404 }
9405 },
Sean Nelson35727f72010-01-28 23:55:12 +00009406 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009407 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009408 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009409 },
9410
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009411 {
9412 .vendor = "ST",
9413 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009414 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009415 .manufacture_id = ST_ID,
9416 .model_id = ST_M29W040B,
9417 .total_size = 512,
9418 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009419 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009420 .tested = TEST_UNTESTED,
9421 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009422 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009423 .block_erasers =
9424 {
9425 {
9426 .eraseblocks = { {64 * 1024, 8}, },
9427 .block_erase = erase_sector_jedec,
9428 }, {
9429 .eraseblocks = { {512 * 1024, 1} },
9430 .block_erase = erase_chip_block_jedec,
9431 }
9432 },
Sean Nelson35727f72010-01-28 23:55:12 +00009433 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009434 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009435 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009436 },
9437
Stefan Taunereb582572012-09-21 12:52:50 +00009438 {
9439 .vendor = "ST",
9440 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009441 .bustype = BUS_PARALLEL,
Stefan Taunereb582572012-09-21 12:52:50 +00009442 .manufacture_id = ST_ID,
9443 .model_id = ST_M29W512B,
9444 .total_size = 64,
9445 .page_size = 64 * 1024,
9446 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009447 .tested = TEST_OK_PRE,
Stefan Taunereb582572012-09-21 12:52:50 +00009448 .probe = probe_jedec,
9449 .probe_timing = TIMING_ZERO,
9450 .block_erasers =
9451 {
9452 {
9453 .eraseblocks = { {64 * 1024, 1} },
9454 .block_erase = erase_chip_block_jedec,
9455 }
9456 },
9457 .write = write_jedec_1,
9458 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009459 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +00009460 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00009461
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009462 {
9463 .vendor = "ST",
9464 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009465 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009466 .manufacture_id = ST_ID,
9467 .model_id = ST_M50FLW040A,
9468 .total_size = 512,
9469 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009470 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009471 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009472 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009473 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009474 .block_erasers =
9475 {
9476 {
Sean Nelson329bde72010-01-19 16:39:19 +00009477 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009478 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009479 {64 * 1024, 5}, /* block */
9480 {4 * 1024, 16}, /* sector */
9481 {4 * 1024, 16}, /* sector */
9482 },
9483 .block_erase = NULL,
9484 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009485 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009486 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009487 }
9488 },
Sean Nelson28accc22010-03-19 18:47:06 +00009489 .unlock = unlock_stm50flw0x0x,
9490 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009491 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009492 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009493 },
9494
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009495 {
9496 .vendor = "ST",
9497 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009498 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009499 .manufacture_id = ST_ID,
9500 .model_id = ST_M50FLW040B,
9501 .total_size = 512,
9502 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009503 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009504 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009505 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009506 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009507 .block_erasers =
9508 {
9509 {
Sean Nelson329bde72010-01-19 16:39:19 +00009510 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009511 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009512 {4 * 1024, 16}, /* sector */
9513 {64 * 1024, 5}, /* block */
9514 {4 * 1024, 16}, /* sector */
9515 },
9516 .block_erase = NULL,
9517 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009518 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009519 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009520 }
9521 },
Sean Nelson28accc22010-03-19 18:47:06 +00009522 .unlock = unlock_stm50flw0x0x,
9523 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009524 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009525 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009526 },
9527
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009528 {
9529 .vendor = "ST",
9530 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009531 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009532 .manufacture_id = ST_ID,
9533 .model_id = ST_M50FLW080A,
9534 .total_size = 1024,
9535 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009536 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009537 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +00009538 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009539 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009540 .block_erasers =
9541 {
9542 {
Sean Nelson329bde72010-01-19 16:39:19 +00009543 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009544 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009545 {64 * 1024, 13}, /* block */
9546 {4 * 1024, 16}, /* sector */
9547 {4 * 1024, 16}, /* sector */
9548 },
9549 .block_erase = NULL,
9550 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009551 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009552 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009553 }
9554 },
Sean Nelson28accc22010-03-19 18:47:06 +00009555 .unlock = unlock_stm50flw0x0x,
9556 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009557 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009558 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009559 },
9560
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009561 {
9562 .vendor = "ST",
9563 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009564 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009565 .manufacture_id = ST_ID,
9566 .model_id = ST_M50FLW080B,
9567 .total_size = 1024,
9568 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009569 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009570 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009571 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009572 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009573 .block_erasers =
9574 {
9575 {
Sean Nelson329bde72010-01-19 16:39:19 +00009576 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009577 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009578 {4 * 1024, 16}, /* sector */
9579 {64 * 1024, 13}, /* block */
9580 {4 * 1024, 16}, /* sector */
9581 },
9582 .block_erase = NULL,
9583 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009584 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009585 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009586 }
9587 },
Sean Nelson28accc22010-03-19 18:47:06 +00009588 .unlock = unlock_stm50flw0x0x,
9589 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009590 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009591 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009592 },
9593
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009594 {
9595 .vendor = "ST",
9596 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009597 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009598 .manufacture_id = ST_ID,
9599 .model_id = ST_M50FW002,
9600 .total_size = 256,
9601 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009602 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009603 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009604 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009605 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009606 .block_erasers =
9607 {
9608 {
9609 .eraseblocks = {
9610 {64 * 1024, 3},
9611 {32 * 1024, 1},
9612 {8 * 1024, 2},
9613 {16 * 1024, 1},
9614 },
Sean Nelson28accc22010-03-19 18:47:06 +00009615 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009616 }
9617 },
Sean Nelson28accc22010-03-19 18:47:06 +00009618 .unlock = unlock_stm50flw0x0x,
9619 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009620 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009621 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009622 },
9623
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009624 {
9625 .vendor = "ST",
9626 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009627 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009628 .manufacture_id = ST_ID,
9629 .model_id = ST_M50FW016,
9630 .total_size = 2048,
9631 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009632 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009633 .tested = TEST_UNTESTED,
9634 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009635 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009636 .block_erasers =
9637 {
9638 {
9639 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009640 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009641 }
9642 },
Sean Nelson28accc22010-03-19 18:47:06 +00009643 .unlock = unlock_stm50flw0x0x,
9644 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009645 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009646 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009647 },
9648
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009649 {
9650 .vendor = "ST",
9651 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009652 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009653 .manufacture_id = ST_ID,
9654 .model_id = ST_M50FW040,
9655 .total_size = 512,
9656 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009657 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00009658 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009659 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009660 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009661 .block_erasers =
9662 {
9663 {
9664 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009665 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009666 }
9667 },
Sean Nelson28accc22010-03-19 18:47:06 +00009668 .unlock = unlock_stm50flw0x0x,
9669 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009670 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009671 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009672 },
9673
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009674 {
9675 .vendor = "ST",
9676 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009677 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009678 .manufacture_id = ST_ID,
9679 .model_id = ST_M50FW080,
9680 .total_size = 1024,
9681 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009682 .feature_bits = FEATURE_REGISTERMAP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009683 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009684 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009685 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009686 .block_erasers =
9687 {
9688 {
9689 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009690 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009691 }
9692 },
Sean Nelson28accc22010-03-19 18:47:06 +00009693 .unlock = unlock_stm50flw0x0x,
9694 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009695 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009696 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009697 },
9698
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009699 {
9700 .vendor = "ST",
9701 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009702 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009703 .manufacture_id = ST_ID,
9704 .model_id = ST_M50LPW116,
9705 .total_size = 2048,
9706 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009707 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009708 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009709 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00009710 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009711 .block_erasers =
9712 {
9713 {
9714 .eraseblocks = {
9715 {4 * 1024, 16},
9716 {64 * 1024, 30},
9717 {32 * 1024, 1},
9718 {8 * 1024, 2},
9719 {16 * 1024, 1},
9720 },
Sean Nelson28accc22010-03-19 18:47:06 +00009721 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009722 }
9723 },
Sean Nelson28accc22010-03-19 18:47:06 +00009724 .unlock = unlock_stm50flw0x0x,
9725 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009726 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009727 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009728 },
9729
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009730 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009731 .vendor = "SyncMOS/MoselVitelic",
9732 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009733 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009734 .manufacture_id = SYNCMOS_MVC_ID,
9735 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009736 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009737 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00009738 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009739 .tested = TEST_UNTESTED,
9740 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009741 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009742 .block_erasers =
9743 {
9744 {
9745 .eraseblocks = { {512, 256} },
9746 .block_erase = erase_sector_jedec,
9747 }, {
9748 .eraseblocks = { {128 * 1024, 1} },
9749 .block_erase = erase_chip_block_jedec,
9750 },
9751 },
Sean Nelson35727f72010-01-28 23:55:12 +00009752 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009753 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009754 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009755 },
9756
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009757 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009758 .vendor = "SyncMOS/MoselVitelic",
9759 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009760 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009761 .manufacture_id = SYNCMOS_MVC_ID,
9762 .model_id = SM_MVC_29C51001T,
9763 .total_size = 128,
9764 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00009765 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009766 .tested = TEST_UNTESTED,
9767 .probe = probe_jedec,
9768 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
9769 .block_erasers =
9770 {
9771 {
9772 .eraseblocks = { {512, 256} },
9773 .block_erase = erase_sector_jedec,
9774 }, {
9775 .eraseblocks = { {128 * 1024, 1} },
9776 .block_erase = erase_chip_block_jedec,
9777 },
9778 },
9779 .write = write_jedec_1,
9780 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009781 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00009782 },
9783
9784 {
9785 .vendor = "SyncMOS/MoselVitelic",
9786 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009787 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009788 .manufacture_id = SYNCMOS_MVC_ID,
9789 .model_id = SM_MVC_29C51002B,
9790 .total_size = 256,
9791 .page_size = 512,
9792 .feature_bits = FEATURE_EITHER_RESET,
9793 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009794 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009795 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009796 .block_erasers =
9797 {
9798 {
9799 .eraseblocks = { {512, 512} },
9800 .block_erase = erase_sector_jedec,
9801 }, {
9802 .eraseblocks = { {256 * 1024, 1} },
9803 .block_erase = erase_chip_block_jedec,
9804 },
9805 },
Sean Nelson35727f72010-01-28 23:55:12 +00009806 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009807 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00009808 },
9809
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009810 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009811 .vendor = "SyncMOS/MoselVitelic",
9812 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009813 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009814 .manufacture_id = SYNCMOS_MVC_ID,
9815 .model_id = SM_MVC_29C51002T,
9816 .total_size = 256,
9817 .page_size = 512,
9818 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009819 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009820 .probe = probe_jedec,
9821 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
9822 .block_erasers =
9823 {
9824 {
9825 .eraseblocks = { {512, 512} },
9826 .block_erase = erase_sector_jedec,
9827 }, {
9828 .eraseblocks = { {256 * 1024, 1} },
9829 .block_erase = erase_chip_block_jedec,
9830 },
9831 },
9832 .write = write_jedec_1,
9833 .read = read_memmapped,
9834 },
9835
9836 {
9837 .vendor = "SyncMOS/MoselVitelic",
9838 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009839 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009840 .manufacture_id = SYNCMOS_MVC_ID,
9841 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009842 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009843 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009844 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009845 .tested = TEST_UNTESTED,
9846 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009847 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009848 .block_erasers =
9849 {
9850 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009851 .eraseblocks = { {1024, 512} },
9852 .block_erase = erase_sector_jedec,
9853 }, {
9854 .eraseblocks = { {512 * 1024, 1} },
9855 .block_erase = erase_chip_block_jedec,
9856 },
9857 },
9858 .write = write_jedec_1,
9859 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009860 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00009861 },
9862
9863 {
9864 .vendor = "SyncMOS/MoselVitelic",
9865 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009866 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009867 .manufacture_id = SYNCMOS_MVC_ID,
9868 .model_id = SM_MVC_29C51004T,
9869 .total_size = 512,
9870 .page_size = 1024,
9871 .feature_bits = FEATURE_EITHER_RESET,
9872 .tested = TEST_UNTESTED,
9873 .probe = probe_jedec,
9874 .probe_timing = TIMING_ZERO,
9875 .block_erasers =
9876 {
9877 {
9878 .eraseblocks = { {1024, 512} },
9879 .block_erase = erase_sector_jedec,
9880 }, {
9881 .eraseblocks = { {512 * 1024, 1} },
9882 .block_erase = erase_chip_block_jedec,
9883 },
9884 },
9885 .write = write_jedec_1,
9886 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009887 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00009888 },
9889
9890 {
9891 .vendor = "SyncMOS/MoselVitelic",
9892 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009893 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009894 .manufacture_id = SYNCMOS_MVC_ID,
9895 .model_id = SM_MVC_29C31004B,
9896 .total_size = 512,
9897 .page_size = 1024,
9898 .feature_bits = FEATURE_EITHER_RESET,
9899 .tested = TEST_UNTESTED,
9900 .probe = probe_jedec,
9901 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
9902 .block_erasers =
9903 {
9904 {
9905 .eraseblocks = { {1024, 512} },
9906 .block_erase = erase_sector_jedec,
9907 }, {
9908 .eraseblocks = { {512 * 1024, 1} },
9909 .block_erase = erase_chip_block_jedec,
9910 },
9911 },
9912 .write = write_jedec_1,
9913 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009914 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +00009915 },
9916
9917 {
9918 .vendor = "SyncMOS/MoselVitelic",
9919 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009920 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009921 .manufacture_id = SYNCMOS_MVC_ID,
9922 .model_id = SM_MVC_29C31004T,
9923 .total_size = 512,
9924 .page_size = 1024,
9925 .feature_bits = FEATURE_EITHER_RESET,
9926 .tested = TEST_UNTESTED,
9927 .probe = probe_jedec,
9928 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
9929 .block_erasers =
9930 {
9931 {
9932 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00009933 .block_erase = erase_sector_jedec,
9934 }, {
9935 .eraseblocks = { {512 * 1024, 1} },
9936 .block_erase = erase_chip_block_jedec,
9937 },
9938 },
Sean Nelson35727f72010-01-28 23:55:12 +00009939 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009940 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009941 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009942 },
9943
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009944 {
Uwe Hermanna106d152009-05-27 23:17:40 +00009945 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009946 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009947 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009948 .manufacture_id = TI_OLD_ID,
9949 .model_id = TI_TMS29F002RB,
9950 .total_size = 256,
9951 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00009952 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009953 .tested = TEST_UNTESTED,
9954 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009955 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009956 .block_erasers =
9957 {
9958 {
9959 .eraseblocks = {
9960 {16 * 1024, 1},
9961 {8 * 1024, 2},
9962 {32 * 1024, 1},
9963 {64 * 1024, 3},
9964 },
9965 .block_erase = erase_sector_jedec,
9966 }, {
9967 .eraseblocks = { {256 * 1024, 1} },
9968 .block_erase = erase_chip_block_jedec,
9969 },
9970 },
Sean Nelson35727f72010-01-28 23:55:12 +00009971 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009972 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009973 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009974 },
9975
9976 {
Uwe Hermanna106d152009-05-27 23:17:40 +00009977 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009978 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009979 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009980 .manufacture_id = TI_OLD_ID,
9981 .model_id = TI_TMS29F002RT,
9982 .total_size = 256,
9983 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00009984 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00009985 .tested = TEST_UNTESTED,
9986 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009987 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009988 .block_erasers =
9989 {
9990 {
9991 .eraseblocks = {
9992 {64 * 1024, 3},
9993 {32 * 1024, 1},
9994 {8 * 1024, 2},
9995 {16 * 1024, 1},
9996 },
9997 .block_erase = erase_sector_jedec,
9998 }, {
9999 .eraseblocks = { {256 * 1024, 1} },
10000 .block_erase = erase_chip_block_jedec,
10001 },
10002 },
Sean Nelson35727f72010-01-28 23:55:12 +000010003 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010004 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010005 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010006 },
10007
10008 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010009 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010010 .name = "W25Q80.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010011 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010012 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010013 .model_id = WINBOND_NEX_W25Q80_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010014 .total_size = 1024,
10015 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010016 /* supports SFDP */
10017 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010018 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010019 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010020 .probe = probe_spi_rdid,
10021 .probe_timing = TIMING_ZERO,
10022 .block_erasers =
10023 {
10024 {
10025 .eraseblocks = { {4 * 1024, 256} },
10026 .block_erase = spi_block_erase_20,
10027 }, {
10028 .eraseblocks = { {32 * 1024, 32} },
10029 .block_erase = spi_block_erase_52,
10030 }, {
10031 .eraseblocks = { {64 * 1024, 16} },
10032 .block_erase = spi_block_erase_d8,
10033 }, {
10034 .eraseblocks = { {1024 * 1024, 1} },
10035 .block_erase = spi_block_erase_60,
10036 }, {
10037 .eraseblocks = { {1024 * 1024, 1} },
10038 .block_erase = spi_block_erase_c7,
10039 }
10040 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010041 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010042 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010043 .write = spi_chip_write_256,
10044 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010045 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010046 },
10047
10048 {
10049 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010050 .name = "W25Q16.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010051 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010052 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010053 .model_id = WINBOND_NEX_W25Q16_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010054 .total_size = 2048,
10055 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010056 /* supports SFDP */
10057 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010058 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +000010059 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010060 .probe = probe_spi_rdid,
10061 .probe_timing = TIMING_ZERO,
10062 .block_erasers =
10063 {
10064 {
10065 .eraseblocks = { {4 * 1024, 512} },
10066 .block_erase = spi_block_erase_20,
10067 }, {
10068 .eraseblocks = { {32 * 1024, 64} },
10069 .block_erase = spi_block_erase_52,
10070 }, {
10071 .eraseblocks = { {64 * 1024, 32} },
10072 .block_erase = spi_block_erase_d8,
10073 }, {
10074 .eraseblocks = { {2 * 1024 * 1024, 1} },
10075 .block_erase = spi_block_erase_60,
10076 }, {
10077 .eraseblocks = { {2 * 1024 * 1024, 1} },
10078 .block_erase = spi_block_erase_c7,
10079 }
10080 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010081 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010082 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010083 .write = spi_chip_write_256,
10084 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010085 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010086 },
10087
10088 {
10089 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010090 .name = "W25Q32.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010091 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010092 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010093 .model_id = WINBOND_NEX_W25Q32_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010094 .total_size = 4096,
10095 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010096 /* supports SFDP */
10097 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010098 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010099 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010100 .probe = probe_spi_rdid,
10101 .probe_timing = TIMING_ZERO,
10102 .block_erasers =
10103 {
10104 {
10105 .eraseblocks = { {4 * 1024, 1024} },
10106 .block_erase = spi_block_erase_20,
10107 }, {
10108 .eraseblocks = { {32 * 1024, 128} },
10109 .block_erase = spi_block_erase_52,
10110 }, {
10111 .eraseblocks = { {64 * 1024, 64} },
10112 .block_erase = spi_block_erase_d8,
10113 }, {
10114 .eraseblocks = { {4 * 1024 * 1024, 1} },
10115 .block_erase = spi_block_erase_60,
10116 }, {
10117 .eraseblocks = { {4 * 1024 * 1024, 1} },
10118 .block_erase = spi_block_erase_c7,
10119 }
10120 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010121 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010122 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010123 .write = spi_chip_write_256,
10124 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010125 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010126 },
10127
10128 {
10129 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010130 .name = "W25Q64.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010131 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +000010132 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010133 .model_id = WINBOND_NEX_W25Q64_V,
David Hendricksc4acec92010-06-24 11:39:57 +000010134 .total_size = 8192,
10135 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010136 /* supports SFDP */
10137 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010138 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010139 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +000010140 .probe = probe_spi_rdid,
10141 .probe_timing = TIMING_ZERO,
10142 .block_erasers =
10143 {
10144 {
10145 .eraseblocks = { {4 * 1024, 2048} },
10146 .block_erase = spi_block_erase_20,
10147 }, {
10148 .eraseblocks = { {32 * 1024, 256} },
10149 .block_erase = spi_block_erase_52,
10150 }, {
10151 .eraseblocks = { {64 * 1024, 128} },
10152 .block_erase = spi_block_erase_d8,
10153 }, {
10154 .eraseblocks = { {8 * 1024 * 1024, 1} },
10155 .block_erase = spi_block_erase_60,
10156 }, {
10157 .eraseblocks = { {8 * 1024 * 1024, 1} },
10158 .block_erase = spi_block_erase_c7,
10159 }
10160 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010161 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010162 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +000010163 .write = spi_chip_write_256,
10164 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010165 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000010166 },
10167
10168 {
10169 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010170 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010171 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010172 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010173 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010174 .total_size = 16384,
10175 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010176 /* supports SFDP */
10177 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010178 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010179 .tested = TEST_OK_PROBE,
10180 .probe = probe_spi_rdid,
10181 .probe_timing = TIMING_ZERO,
10182 .block_erasers =
10183 {
10184 {
10185 .eraseblocks = { {4 * 1024, 4096} },
10186 .block_erase = spi_block_erase_20,
10187 }, {
10188 .eraseblocks = { {32 * 1024, 512} },
10189 .block_erase = spi_block_erase_52,
10190 }, {
10191 .eraseblocks = { {64 * 1024, 256} },
10192 .block_erase = spi_block_erase_d8,
10193 }, {
10194 .eraseblocks = { {16 * 1024 * 1024, 1} },
10195 .block_erase = spi_block_erase_60,
10196 }, {
10197 .eraseblocks = { {16 * 1024 * 1024, 1} },
10198 .block_erase = spi_block_erase_c7,
10199 }
10200 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010201 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010202 .unlock = spi_disable_blockprotect,
10203 .write = spi_chip_write_256,
10204 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010205 .voltage = {2700, 3600},
10206 },
10207
10208 {
10209 .vendor = "Winbond",
10210 .name = "W25Q20.W",
10211 .bustype = BUS_SPI,
10212 .manufacture_id = WINBOND_NEX_ID,
10213 .model_id = WINBOND_NEX_W25Q20_W,
10214 .total_size = 256,
10215 .page_size = 256,
10216 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10217 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10218 .tested = TEST_UNTESTED,
10219 .probe = probe_spi_rdid,
10220 .probe_timing = TIMING_ZERO,
10221 .block_erasers =
10222 {
10223 {
10224 .eraseblocks = { {4 * 1024, 64} },
10225 .block_erase = spi_block_erase_20,
10226 }, {
10227 .eraseblocks = { {32 * 1024, 8} },
10228 .block_erase = spi_block_erase_52,
10229 }, {
10230 .eraseblocks = { {64 * 1024, 4} },
10231 .block_erase = spi_block_erase_d8,
10232 }, {
10233 .eraseblocks = { {256 * 1024, 1} },
10234 .block_erase = spi_block_erase_60,
10235 }, {
10236 .eraseblocks = { {256 * 1024, 1} },
10237 .block_erase = spi_block_erase_c7,
10238 }
10239 },
10240 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10241 .unlock = spi_disable_blockprotect,
10242 .write = spi_chip_write_256,
10243 .read = spi_chip_read,
10244 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10245 },
10246
10247 {
10248 .vendor = "Winbond",
10249 .name = "W25Q40.W",
10250 .bustype = BUS_SPI,
10251 .manufacture_id = WINBOND_NEX_ID,
10252 .model_id = WINBOND_NEX_W25Q40_W,
10253 .total_size = 512,
10254 .page_size = 256,
10255 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10256 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10257 .tested = TEST_UNTESTED,
10258 .probe = probe_spi_rdid,
10259 .probe_timing = TIMING_ZERO,
10260 .block_erasers =
10261 {
10262 {
10263 .eraseblocks = { {4 * 1024, 128} },
10264 .block_erase = spi_block_erase_20,
10265 }, {
10266 .eraseblocks = { {32 * 1024, 16} },
10267 .block_erase = spi_block_erase_52,
10268 }, {
10269 .eraseblocks = { {64 * 1024, 8} },
10270 .block_erase = spi_block_erase_d8,
10271 }, {
10272 .eraseblocks = { {512 * 1024, 1} },
10273 .block_erase = spi_block_erase_60,
10274 }, {
10275 .eraseblocks = { {512 * 1024, 1} },
10276 .block_erase = spi_block_erase_c7,
10277 }
10278 },
10279 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10280 .unlock = spi_disable_blockprotect,
10281 .write = spi_chip_write_256,
10282 .read = spi_chip_read,
10283 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10284 },
10285
10286 {
10287 .vendor = "Winbond",
10288 .name = "W25Q80.W",
10289 .bustype = BUS_SPI,
10290 .manufacture_id = WINBOND_NEX_ID,
10291 .model_id = WINBOND_NEX_W25Q80_W,
10292 .total_size = 1024,
10293 .page_size = 256,
10294 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10295 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10296 .tested = TEST_UNTESTED,
10297 .probe = probe_spi_rdid,
10298 .probe_timing = TIMING_ZERO,
10299 .block_erasers =
10300 {
10301 {
10302 .eraseblocks = { {4 * 1024, 256} },
10303 .block_erase = spi_block_erase_20,
10304 }, {
10305 .eraseblocks = { {32 * 1024, 32} },
10306 .block_erase = spi_block_erase_52,
10307 }, {
10308 .eraseblocks = { {64 * 1024, 16} },
10309 .block_erase = spi_block_erase_d8,
10310 }, {
10311 .eraseblocks = { {1 * 1024 * 1024, 1} },
10312 .block_erase = spi_block_erase_60,
10313 }, {
10314 .eraseblocks = { {1 * 1024 * 1024, 1} },
10315 .block_erase = spi_block_erase_c7,
10316 }
10317 },
10318 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10319 .unlock = spi_disable_blockprotect,
10320 .write = spi_chip_write_256,
10321 .read = spi_chip_read,
10322 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10323 },
10324
10325 {
10326 .vendor = "Winbond",
10327 .name = "W25Q16.W",
10328 .bustype = BUS_SPI,
10329 .manufacture_id = WINBOND_NEX_ID,
10330 .model_id = WINBOND_NEX_W25Q16_W,
10331 .total_size = 2048,
10332 .page_size = 256,
10333 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10334 /* QPI enable 0x38, disable 0xFF */
10335 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10336 .tested = TEST_UNTESTED,
10337 .probe = probe_spi_rdid,
10338 .probe_timing = TIMING_ZERO,
10339 .block_erasers =
10340 {
10341 {
10342 .eraseblocks = { {4 * 1024, 512} },
10343 .block_erase = spi_block_erase_20,
10344 }, {
10345 .eraseblocks = { {32 * 1024, 64} },
10346 .block_erase = spi_block_erase_52,
10347 }, {
10348 .eraseblocks = { {64 * 1024, 32} },
10349 .block_erase = spi_block_erase_d8,
10350 }, {
10351 .eraseblocks = { {2 * 1024 * 1024, 1} },
10352 .block_erase = spi_block_erase_60,
10353 }, {
10354 .eraseblocks = { {2 * 1024 * 1024, 1} },
10355 .block_erase = spi_block_erase_c7,
10356 }
10357 },
10358 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10359 .unlock = spi_disable_blockprotect,
10360 .write = spi_chip_write_256,
10361 .read = spi_chip_read,
10362 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10363 },
10364
10365 {
10366 .vendor = "Winbond",
10367 .name = "W25Q32.W",
10368 .bustype = BUS_SPI,
10369 .manufacture_id = WINBOND_NEX_ID,
10370 .model_id = WINBOND_NEX_W25Q32_W,
10371 .total_size = 4096,
10372 .page_size = 256,
10373 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10374 /* QPI enable 0x38, disable 0xFF */
10375 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10376 .tested = TEST_OK_PREW,
10377 .probe = probe_spi_rdid,
10378 .probe_timing = TIMING_ZERO,
10379 .block_erasers =
10380 {
10381 {
10382 .eraseblocks = { {4 * 1024, 1024} },
10383 .block_erase = spi_block_erase_20,
10384 }, {
10385 .eraseblocks = { {32 * 1024, 128} },
10386 .block_erase = spi_block_erase_52,
10387 }, {
10388 .eraseblocks = { {64 * 1024, 64} },
10389 .block_erase = spi_block_erase_d8,
10390 }, {
10391 .eraseblocks = { {4 * 1024 * 1024, 1} },
10392 .block_erase = spi_block_erase_60,
10393 }, {
10394 .eraseblocks = { {4 * 1024 * 1024, 1} },
10395 .block_erase = spi_block_erase_c7,
10396 }
10397 },
10398 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10399 .unlock = spi_disable_blockprotect,
10400 .write = spi_chip_write_256,
10401 .read = spi_chip_read,
10402 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10403 },
10404
10405 {
10406 .vendor = "Winbond",
10407 .name = "W25Q64.W",
10408 .bustype = BUS_SPI,
10409 .manufacture_id = WINBOND_NEX_ID,
10410 .model_id = WINBOND_NEX_W25Q64_W,
10411 .total_size = 8192,
10412 .page_size = 256,
10413 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10414 /* QPI enable 0x38, disable 0xFF */
10415 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10416 .tested = TEST_UNTESTED,
10417 .probe = probe_spi_rdid,
10418 .probe_timing = TIMING_ZERO,
10419 .block_erasers =
10420 {
10421 {
10422 .eraseblocks = { {4 * 1024, 2048} },
10423 .block_erase = spi_block_erase_20,
10424 }, {
10425 .eraseblocks = { {32 * 1024, 256} },
10426 .block_erase = spi_block_erase_52,
10427 }, {
10428 .eraseblocks = { {64 * 1024, 128} },
10429 .block_erase = spi_block_erase_d8,
10430 }, {
10431 .eraseblocks = { {8 * 1024 * 1024, 1} },
10432 .block_erase = spi_block_erase_60,
10433 }, {
10434 .eraseblocks = { {8 * 1024 * 1024, 1} },
10435 .block_erase = spi_block_erase_c7,
10436 }
10437 },
10438 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10439 .unlock = spi_disable_blockprotect,
10440 .write = spi_chip_write_256,
10441 .read = spi_chip_read,
10442 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010443 },
10444
10445 {
10446 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010447 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010448 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010449 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010450 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010451 .total_size = 128,
10452 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010453 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000010454 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010455 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010456 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010457 .block_erasers =
10458 {
10459 {
10460 .eraseblocks = { {4 * 1024, 32} },
10461 .block_erase = spi_block_erase_20,
10462 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010463 .eraseblocks = { {64 * 1024, 2} },
10464 .block_erase = spi_block_erase_d8,
10465 }, {
10466 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010467 .block_erase = spi_block_erase_c7,
10468 }
10469 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010470 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010471 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010472 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010473 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010474 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010475 },
10476
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010477 {
10478 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010479 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010480 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010481 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010482 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010483 .total_size = 256,
10484 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010485 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010486 .tested = TEST_UNTESTED,
10487 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010488 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010489 .block_erasers =
10490 {
10491 {
10492 .eraseblocks = { {4 * 1024, 64} },
10493 .block_erase = spi_block_erase_20,
10494 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010495 .eraseblocks = { {64 * 1024, 4} },
10496 .block_erase = spi_block_erase_d8,
10497 }, {
10498 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010499 .block_erase = spi_block_erase_c7,
10500 }
10501 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010502 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010503 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010504 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010505 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010506 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010507 },
10508
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010509 {
10510 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010511 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010512 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010513 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010514 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010515 .total_size = 512,
10516 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010517 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +000010518 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010519 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010520 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010521 .block_erasers =
10522 {
10523 {
10524 .eraseblocks = { {4 * 1024, 128} },
10525 .block_erase = spi_block_erase_20,
10526 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010527 .eraseblocks = { {64 * 1024, 8} },
10528 .block_erase = spi_block_erase_d8,
10529 }, {
10530 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010531 .block_erase = spi_block_erase_c7,
10532 }
10533 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010534 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010535 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010536 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010537 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010538 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010539 },
10540
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010541 {
10542 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010543 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010544 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010545 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010546 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010547 .total_size = 1024,
10548 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010549 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +000010550 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010551 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010552 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010553 .block_erasers =
10554 {
10555 {
10556 .eraseblocks = { {4 * 1024, 256} },
10557 .block_erase = spi_block_erase_20,
10558 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010559 .eraseblocks = { {64 * 1024, 16} },
10560 .block_erase = spi_block_erase_d8,
10561 }, {
10562 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010563 .block_erase = spi_block_erase_c7,
10564 }
10565 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010566 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010567 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010568 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010569 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010570 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010571 },
10572
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010573 {
10574 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010575 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010576 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000010577 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010578 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000010579 .total_size = 2048,
10580 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010581 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000010582 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000010583 .probe = probe_spi_rdid,
10584 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010585 .block_erasers =
10586 {
10587 {
10588 .eraseblocks = { {4 * 1024, 512} },
10589 .block_erase = spi_block_erase_20,
10590 }, {
10591 .eraseblocks = { {32 * 1024, 64} },
10592 .block_erase = spi_block_erase_52,
10593 }, {
10594 .eraseblocks = { {64 * 1024, 32} },
10595 .block_erase = spi_block_erase_d8,
10596 }, {
10597 .eraseblocks = { {2 * 1024 * 1024, 1} },
10598 .block_erase = spi_block_erase_60,
10599 }, {
10600 .eraseblocks = { {2 * 1024 * 1024, 1} },
10601 .block_erase = spi_block_erase_c7,
10602 }
10603 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010604 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010605 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000010606 .write = spi_chip_write_256,
10607 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010608 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000010609 },
10610
10611 {
10612 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010613 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010614 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000010615 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010616 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000010617 .total_size = 4096,
10618 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010619 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +000010620 .tested = TEST_OK_PROBE,
10621 .probe = probe_spi_rdid,
10622 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010623 .block_erasers =
10624 {
10625 {
10626 .eraseblocks = { {4 * 1024, 1024} },
10627 .block_erase = spi_block_erase_20,
10628 }, {
10629 .eraseblocks = { {32 * 1024, 128} },
10630 .block_erase = spi_block_erase_52,
10631 }, {
10632 .eraseblocks = { {64 * 1024, 64} },
10633 .block_erase = spi_block_erase_d8,
10634 }, {
10635 .eraseblocks = { {4 * 1024 * 1024, 1} },
10636 .block_erase = spi_block_erase_60,
10637 }, {
10638 .eraseblocks = { {4 * 1024 * 1024, 1} },
10639 .block_erase = spi_block_erase_c7,
10640 }
10641 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010642 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010643 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000010644 .write = spi_chip_write_256,
10645 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010646 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000010647 },
10648
10649 {
10650 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010651 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010652 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000010653 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010654 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000010655 .total_size = 8192,
10656 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010657 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010658 .tested = TEST_OK_PROBE,
Zheng Bao1db2b752009-11-26 11:05:01 +000010659 .probe = probe_spi_rdid,
10660 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010661 .block_erasers =
10662 {
10663 {
10664 .eraseblocks = { {4 * 1024, 2048} },
10665 .block_erase = spi_block_erase_20,
10666 }, {
10667 .eraseblocks = { {32 * 1024, 256} },
10668 .block_erase = spi_block_erase_52,
10669 }, {
10670 .eraseblocks = { {64 * 1024, 128} },
10671 .block_erase = spi_block_erase_d8,
10672 }, {
10673 .eraseblocks = { {8 * 1024 * 1024, 1} },
10674 .block_erase = spi_block_erase_60,
10675 }, {
10676 .eraseblocks = { {8 * 1024 * 1024, 1} },
10677 .block_erase = spi_block_erase_c7,
10678 }
10679 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010680 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010681 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000010682 .write = spi_chip_write_256,
10683 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010684 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000010685 },
10686
10687 {
10688 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000010689 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010690 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000010691 .manufacture_id = WINBOND_ID,
10692 .model_id = WINBOND_W29C010,
10693 .total_size = 128,
10694 .page_size = 128,
10695 .feature_bits = FEATURE_LONG_RESET,
10696 .tested = TEST_OK_PRE,
10697 .probe = probe_w29ee011,
10698 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
10699 .block_erasers =
10700 {
10701 {
10702 .eraseblocks = { {128 * 1024, 1} },
10703 .block_erase = erase_chip_block_jedec,
10704 }
10705 },
10706 .write = write_jedec,
10707 .read = read_memmapped,
10708 },
10709
10710 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
10711 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010712 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010713 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010714 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010715 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010716 .total_size = 128,
10717 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000010718 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000010719 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010720 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010721 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010722 .block_erasers =
10723 {
10724 {
10725 .eraseblocks = { {128 * 1024, 1} },
10726 .block_erase = erase_chip_block_jedec,
10727 }
10728 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010729 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010730 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000010731 },
10732
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010733 {
10734 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010735 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010736 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010737 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010738 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010739 .total_size = 256,
10740 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000010741 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010742 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010743 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010744 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010745 .block_erasers =
10746 {
10747 {
10748 .eraseblocks = { {256 * 1024, 1} },
10749 .block_erase = erase_chip_block_jedec,
10750 }
10751 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010752 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010753 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010754 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000010755 },
10756
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010757 {
10758 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010759 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010760 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010761 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010762 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010763 .total_size = 512,
10764 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000010765 .feature_bits = FEATURE_LONG_RESET,
10766 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010767 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +000010768 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010769 .block_erasers =
10770 {
10771 {
10772 .eraseblocks = { {512 * 1024, 1} },
10773 .block_erase = erase_chip_block_jedec,
10774 }
10775 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010776 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010777 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010778 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000010779 },
10780
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010781 {
10782 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000010783 .name = "W39F010",
10784 .bustype = BUS_PARALLEL,
10785 .manufacture_id = WINBOND_ID,
10786 .model_id = WINBOND_W39F010,
10787 .total_size = 128,
10788 .page_size = 4 * 1024,
10789 .feature_bits = FEATURE_EITHER_RESET,
10790 .tested = TEST_OK_PREW,
10791 .probe = probe_jedec,
10792 .probe_timing = 10,
10793 .block_erasers =
10794 {
10795 {
10796 .eraseblocks = { {4 * 1024, 32} },
10797 .block_erase = erase_block_jedec,
10798 }, {
10799 .eraseblocks = { {128 * 1024, 1} },
10800 .block_erase = erase_chip_block_jedec,
10801 }
10802 },
10803 .printlock = printlock_w39f010,
10804 .write = write_jedec_1,
10805 .read = read_memmapped,
10806 .voltage = {4500, 5500},
10807 },
10808
10809 {
10810 .vendor = "Winbond",
10811 .name = "W39L010",
10812 .bustype = BUS_PARALLEL,
10813 .manufacture_id = WINBOND_ID,
10814 .model_id = WINBOND_W39L010,
10815 .total_size = 128,
10816 .page_size = 4 * 1024,
10817 .feature_bits = FEATURE_EITHER_RESET,
10818 .tested = TEST_UNTESTED,
10819 .probe = probe_jedec,
10820 .probe_timing = 10,
10821 .block_erasers =
10822 {
10823 {
10824 .eraseblocks = { {4 * 1024, 32} },
10825 .block_erase = erase_block_jedec,
10826 }, {
10827 .eraseblocks = { {128 * 1024, 1} },
10828 .block_erase = erase_chip_block_jedec,
10829 }
10830 },
10831 .printlock = printlock_w39l010,
10832 .write = write_jedec_1,
10833 .read = read_memmapped,
10834 .voltage = {3000, 3600},
10835 },
10836
10837 {
10838 .vendor = "Winbond",
10839 .name = "W39L020",
10840 .bustype = BUS_PARALLEL,
10841 .manufacture_id = WINBOND_ID,
10842 .model_id = WINBOND_W39L020,
10843 .total_size = 256,
10844 .page_size = 4 * 1024,
10845 .feature_bits = FEATURE_EITHER_RESET,
10846 .tested = TEST_UNTESTED,
10847 .probe = probe_jedec,
10848 .probe_timing = 10,
10849 .block_erasers =
10850 {
10851 {
10852 .eraseblocks = { {4 * 1024, 64} },
10853 .block_erase = erase_block_jedec,
10854 }, {
10855 .eraseblocks = { {64 * 1024, 4} },
10856 .block_erase = erase_sector_jedec,
10857 }, {
10858 .eraseblocks = { {256 * 1024, 1} },
10859 .block_erase = erase_chip_block_jedec,
10860 }
10861 },
10862 .printlock = printlock_w39l020,
10863 .write = write_jedec_1,
10864 .read = read_memmapped,
10865 .voltage = {3000, 3600},
10866 },
10867
10868 {
10869 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000010870 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010871 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000010872 .manufacture_id = WINBOND_ID,
10873 .model_id = WINBOND_W39L040,
10874 .total_size = 512,
10875 .page_size = 64 * 1024,
10876 .feature_bits = FEATURE_EITHER_RESET,
10877 .tested = TEST_OK_PR,
10878 .probe = probe_jedec,
10879 .probe_timing = 10,
10880 .block_erasers =
10881 {
10882 {
10883 .eraseblocks = { {4 * 1024, 128} },
10884 .block_erase = erase_block_jedec,
10885 }, {
10886 .eraseblocks = { {64 * 1024, 8} },
10887 .block_erase = erase_sector_jedec,
10888 }, {
10889 .eraseblocks = { {512 * 1024, 1} },
10890 .block_erase = erase_chip_block_jedec,
10891 }
10892 },
10893 .printlock = printlock_w39l040,
10894 .write = write_jedec_1,
10895 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000010896 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000010897 },
10898
10899 {
10900 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010901 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010902 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010903 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010904 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010905 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000010906 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000010907 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000010908 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010909 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000010910 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010911 .block_erasers =
10912 {
10913 {
10914 .eraseblocks = { {64 * 1024, 8} },
10915 .block_erase = erase_sector_jedec,
10916 }, {
10917 .eraseblocks = { {512 * 1024, 1} },
10918 .block_erase = erase_chip_block_jedec,
10919 }
10920 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000010921 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000010922 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010923 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010924 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010925 },
10926
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010927 {
10928 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000010929 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010930 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010931 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010932 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010933 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000010934 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000010935 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000010936 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010937 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000010938 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010939 .block_erasers =
10940 {
10941 {
10942 .eraseblocks = { {64 * 1024, 8} },
10943 .block_erase = erase_sector_jedec,
10944 }, {
10945 .eraseblocks = { {512 * 1024, 1} },
10946 .block_erase = erase_chip_block_jedec,
10947 }
10948 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000010949 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000010950 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010951 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010952 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010953 },
10954
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010955 {
10956 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000010957 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010958 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010959 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010960 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010961 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000010962 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000010963 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000010964 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000010965 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000010966 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010967 .block_erasers =
10968 {
10969 {
10970 .eraseblocks = { {64 * 1024, 8} },
10971 .block_erase = erase_sector_jedec,
10972 }, {
10973 .eraseblocks = { {512 * 1024, 1} },
10974 .block_erase = erase_chip_block_jedec,
10975 }
10976 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000010977 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000010978 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010979 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010980 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010981 },
10982
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010983 {
10984 .vendor = "Winbond",
10985 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010986 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010987 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010988 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010989 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000010990 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000010991 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010992 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010993 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010994 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010995 .block_erasers =
10996 {
10997 {
10998 .eraseblocks = { {4 * 1024, 128} },
10999 .block_erase = erase_block_jedec,
11000 }, {
11001 .eraseblocks = { {64 * 1024, 8} },
11002 .block_erase = erase_sector_jedec,
11003 }, {
11004 .eraseblocks = { {512 * 1024, 1} },
11005 .block_erase = erase_chip_block_jedec,
11006 }
11007 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011008 .printlock = printlock_w39v040fa,
Michael Karcherc9b63412010-05-30 16:55:18 +000011009 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +000011010 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011011 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011012 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011013 },
11014
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011015 {
11016 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011017 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011018 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011019 .manufacture_id = WINBOND_ID,
11020 .model_id = WINBOND_W39V040B,
11021 .total_size = 512,
11022 .page_size = 64 * 1024,
11023 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000011024 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011025 .probe = probe_jedec,
11026 .probe_timing = 10,
11027 .block_erasers =
11028 {
11029 {
11030 .eraseblocks = { {64 * 1024, 8} },
11031 .block_erase = erase_sector_jedec,
11032 }, {
11033 .eraseblocks = { {512 * 1024, 1} },
11034 .block_erase = erase_chip_block_jedec,
11035 }
11036 },
11037 .printlock = printlock_w39v040fb,
Idwer Volleringecc67072010-12-26 23:55:12 +000011038 .unlock = unlock_w39v040fb,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011039 .write = write_jedec_1,
11040 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011041 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011042 },
11043
11044 {
11045 .vendor = "Winbond",
11046 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011047 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011048 .manufacture_id = WINBOND_ID,
11049 .model_id = WINBOND_W39V040C,
11050 .total_size = 512,
11051 .page_size = 64 * 1024,
11052 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011053 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011054 .probe = probe_jedec,
11055 .probe_timing = 10,
11056 .block_erasers =
11057 {
11058 {
11059 .eraseblocks = { {64 * 1024, 8} },
11060 .block_erase = erase_sector_jedec,
11061 }, {
11062 .eraseblocks = { {512 * 1024, 1} },
11063 .block_erase = erase_chip_block_jedec,
11064 }
11065 },
11066 .printlock = printlock_w39v040fc,
11067 .write = write_jedec_1,
11068 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011069 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011070 },
11071
11072 {
11073 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011074 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011075 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011076 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011077 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011078 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011079 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011080 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000011081 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011082 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000011083 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011084 .block_erasers =
11085 {
11086 {
11087 .eraseblocks = { {64 * 1024, 16} },
11088 .block_erase = erase_sector_jedec,
11089 }, {
11090 .eraseblocks = { {1024 * 1024, 1} },
11091 .block_erase = erase_chip_block_jedec,
11092 }
11093 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011094 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000011095 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011096 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011097 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011098 },
11099
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011100 {
11101 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011102 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011103 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011104 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011105 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011106 .total_size = 256,
11107 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011108 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011109 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011110 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011111 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011112 .block_erasers =
11113 {
11114 {
11115 .eraseblocks = {
11116 {128 * 1024, 1},
11117 {96 * 1024, 1},
11118 {8 * 1024, 2},
11119 {16 * 1024, 1},
11120 },
11121 .block_erase = erase_sector_jedec,
11122 }, {
11123 .eraseblocks = { {256 * 1024, 1} },
11124 .block_erase = erase_chip_block_jedec,
11125 }
11126 },
Sean Nelson35727f72010-01-28 23:55:12 +000011127 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011128 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011129 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000011130 },
11131
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011132 {
11133 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011134 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011135 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011136 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011137 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011138 .total_size = 256,
11139 .page_size = 128,
11140 .feature_bits = FEATURE_EITHER_RESET,
11141 .tested = TEST_OK_PROBE,
11142 .probe = probe_jedec,
11143 .probe_timing = 10,
11144 .block_erasers =
11145 {
11146 {
11147 .eraseblocks = { {256 * 1024, 1} },
11148 .block_erase = erase_chip_block_jedec,
11149 }
11150 },
11151 .write = write_jedec_1,
11152 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011153 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011154 },
11155
11156 {
11157 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011158 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011159 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011160 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011161 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011162 .total_size = 256,
11163 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011164 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011165 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011166 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011167 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011168 .block_erasers =
11169 {
11170 {
11171 .eraseblocks = {
11172 {64 * 1024, 3},
11173 {32 * 1024, 1},
11174 {8 * 1024, 2},
11175 {16 * 1024, 1},
11176 },
11177 .block_erase = erase_sector_jedec,
11178 }, {
11179 .eraseblocks = { {256 * 1024, 1} },
11180 .block_erase = erase_chip_block_jedec,
11181 }
11182 },
Sean Nelson35727f72010-01-28 23:55:12 +000011183 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011184 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011185 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011186 },
11187
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011188 {
11189 .vendor = "Winbond",
11190 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011191 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011192 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011193 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011194 .total_size = 256,
11195 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011196 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000011197 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011198 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011199 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011200 .block_erasers =
11201 {
11202 {
11203 .eraseblocks = {
11204 {64 * 1024, 3},
11205 {32 * 1024, 1},
11206 {8 * 1024, 2},
11207 {16 * 1024, 1},
11208 },
11209 .block_erase = erase_sector_jedec,
11210 }, {
11211 .eraseblocks = { {256 * 1024, 1} },
11212 .block_erase = erase_chip_block_jedec,
11213 }
11214 },
Sean Nelson35727f72010-01-28 23:55:12 +000011215 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011216 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011217 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011218 },
11219
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011220 {
11221 .vendor = "Winbond",
11222 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011223 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011224 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011225 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011226 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011227 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011228 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011229 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011230 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011231 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011232 .block_erasers =
11233 {
11234 {
11235 .eraseblocks = { {64 * 1024, 16}, },
11236 .block_erase = erase_sector_jedec,
11237 }, {
11238 .eraseblocks = { {1024 * 1024, 1} },
11239 .block_erase = erase_chip_block_jedec,
11240 }
11241 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011242 .printlock = printlock_w39v080fa,
11243 .unlock = unlock_w39v080fa,
Sean Nelson35727f72010-01-28 23:55:12 +000011244 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011245 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011246 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011247 },
11248
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011249 {
11250 .vendor = "Winbond",
11251 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011252 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011253 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011254 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011255 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011256 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011257 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011258 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011259 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011260 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011261 .block_erasers =
11262 {
11263 {
11264 .eraseblocks = { {64 * 1024, 8}, },
11265 .block_erase = erase_sector_jedec,
11266 }, {
11267 .eraseblocks = { {512 * 1024, 1} },
11268 .block_erase = erase_chip_block_jedec,
11269 }
11270 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011271 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +000011272 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011273 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011274 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011275 },
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011276
11277 {
11278 .vendor = "Unknown",
11279 .name = "SFDP-capable chip",
11280 .bustype = BUS_SPI,
11281 .manufacture_id = GENERIC_MANUF_ID,
11282 .model_id = SFDP_DEVICE_ID,
11283 /* We present our own "report this" text hence we do not
11284 * want the default "This flash part has status UNTESTED..."
11285 * text to be printed. */
11286 .tested = TEST_OK_PREW,
11287 .probe = probe_spi_sfdp,
11288 .unlock = spi_disable_blockprotect, /* is this safe? */
11289 .read = spi_chip_read,
11290 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000011291 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011292 /* Everything below will be set by the probing function. */
11293 .write = NULL,
11294 .total_size = 0,
11295 .page_size = 0,
11296 .feature_bits = 0,
11297 .block_erasers = {},
11298 },
FENG yu ningff692fb2008-12-08 18:15:10 +000011299
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011300 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000011301 .vendor = "Programmer",
11302 .name = "Opaque flash chip",
11303 .bustype = BUS_PROG,
11304 .manufacture_id = PROGMANUF_ID,
11305 .model_id = PROGDEV_ID,
11306 .total_size = 0,
11307 .page_size = 256,
11308 /* probe is assumed to work, rest will be filled in by probe */
11309 .tested = TEST_OK_PROBE,
11310 .probe = probe_opaque,
11311 /* eraseblock sizes will be set by the probing function */
11312 .block_erasers =
11313 {
11314 {
11315 .block_erase = erase_opaque,
11316 }
11317 },
11318 .write = write_opaque,
11319 .read = read_opaque,
11320 },
11321
11322 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011323 .vendor = "AMIC",
11324 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011325 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011326 .manufacture_id = AMIC_ID,
11327 .model_id = GENERIC_DEVICE_ID,
11328 .total_size = 0,
11329 .page_size = 256,
11330 .tested = TEST_BAD_PREW,
11331 .probe = probe_spi_rdid4,
11332 .probe_timing = TIMING_ZERO,
11333 .write = NULL,
11334 .read = NULL,
11335 },
11336
11337 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011338 .vendor = "Atmel",
11339 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011340 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011341 .manufacture_id = ATMEL_ID,
11342 .model_id = GENERIC_DEVICE_ID,
11343 .total_size = 0,
11344 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011345 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011346 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011347 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011348 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011349 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011350 },
11351
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011352 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000011353 .vendor = "Eon",
11354 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011355 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011356 .manufacture_id = EON_ID_NOPREFIX,
11357 .model_id = GENERIC_DEVICE_ID,
11358 .total_size = 0,
11359 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011360 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011361 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011362 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011363 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011364 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011365 },
11366
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011367 {
11368 .vendor = "Macronix",
11369 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011370 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011371 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011372 .model_id = GENERIC_DEVICE_ID,
11373 .total_size = 0,
11374 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011375 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011376 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011377 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011378 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011379 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011380 },
11381
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011382 {
11383 .vendor = "PMC",
11384 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011385 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011386 .manufacture_id = PMC_ID,
11387 .model_id = GENERIC_DEVICE_ID,
11388 .total_size = 0,
11389 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011390 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011391 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011392 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011393 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011394 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011395 },
11396
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011397 {
11398 .vendor = "SST",
11399 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011400 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011401 .manufacture_id = SST_ID,
11402 .model_id = GENERIC_DEVICE_ID,
11403 .total_size = 0,
11404 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011405 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011406 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011407 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011408 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011409 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011410 },
11411
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011412 {
11413 .vendor = "ST",
11414 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011415 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011416 .manufacture_id = ST_ID,
11417 .model_id = GENERIC_DEVICE_ID,
11418 .total_size = 0,
11419 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011420 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011421 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011422 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011423 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011424 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011425 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000011426
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011427 {
Sean Nelson118e1d62009-11-24 02:08:11 +000011428 .vendor = "Sanyo",
11429 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011430 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000011431 .manufacture_id = SANYO_ID,
11432 .model_id = GENERIC_DEVICE_ID,
11433 .total_size = 0,
11434 .page_size = 256,
11435 .tested = TEST_BAD_PREW,
11436 .probe = probe_spi_rdid,
11437 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000011438 .write = NULL,
11439 .read = NULL,
11440 },
11441
11442 {
Stefan Taunereb582572012-09-21 12:52:50 +000011443 .vendor = "Winbond",
11444 .name = "unknown Winbond (ex Nexcom) SPI chip",
11445 .bustype = BUS_SPI,
11446 .manufacture_id = WINBOND_NEX_ID,
11447 .model_id = GENERIC_DEVICE_ID,
11448 .total_size = 0,
11449 .page_size = 256,
11450 .tested = TEST_BAD_PREW,
11451 .probe = probe_spi_rdid,
11452 .probe_timing = TIMING_ZERO,
11453 .write = NULL,
11454 .read = NULL,
11455 },
11456
11457 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011458 .vendor = "Generic",
11459 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011460 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011461 .manufacture_id = GENERIC_MANUF_ID,
11462 .model_id = GENERIC_DEVICE_ID,
11463 .total_size = 0,
11464 .page_size = 256,
11465 .tested = TEST_BAD_PREW,
11466 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011467 .write = NULL,
11468 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000011469
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011470 {
11471 .vendor = "Generic",
11472 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011473 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011474 .manufacture_id = GENERIC_MANUF_ID,
11475 .model_id = GENERIC_DEVICE_ID,
11476 .total_size = 0,
11477 .page_size = 256,
11478 .tested = TEST_BAD_PREW,
11479 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011480 .write = NULL,
11481 },
11482
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011483 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +000011484};