blob: 7532618b424ea7ab79bc3885ea389d64614cdf94 [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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001356 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001394 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001432 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001433 .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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001470 .unlock = spi_disable_blockprotect_at2x_global_unprotect_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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001508 .unlock = spi_disable_blockprotect_at2x_global_unprotect_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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001546 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001585 .unlock = spi_disable_blockprotect_at2x_global_unprotect_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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001623 .unlock = spi_disable_blockprotect_at2x_global_unprotect_sec,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001624 .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,
Stefan Taunercecb2c52013-06-20 22:55:41 +00001662 .unlock = spi_disable_blockprotect_at2x_global_unprotect_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,
Stefan Tauner278ba6e2013-06-28 21:28:27 +00001852 /* "Bits 5-6 are 0s when device is not in an internal write cycle." Better leave them alone: */
1853 .unlock = spi_disable_blockprotect_bp2_srwd,
Stefan Tauner57794ac2012-12-29 15:04:20 +00001854 .write = spi_chip_write_256,
1855 .read = spi_chip_read,
1856 .voltage = {2700, 3600},
1857 },
1858
1859 {
1860 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001861 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001862 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001863 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001864 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001865 .total_size = 128,
1866 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001867 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00001868 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001869 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001870 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001871 .block_erasers =
1872 {
1873 {
1874 .eraseblocks = { {4 * 1024, 32} },
1875 .block_erase = spi_block_erase_20,
1876 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001877 .eraseblocks = { {4 * 1024, 32} },
1878 .block_erase = spi_block_erase_d7,
1879 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001880 .eraseblocks = { {32 * 1024, 4} },
1881 .block_erase = spi_block_erase_52,
1882 }, {
1883 .eraseblocks = { {32 * 1024, 4} },
1884 .block_erase = spi_block_erase_d8,
1885 }, {
1886 .eraseblocks = { {128 * 1024, 1} },
1887 .block_erase = spi_block_erase_60,
1888 }, {
1889 .eraseblocks = { {128 * 1024, 1} },
1890 .block_erase = spi_block_erase_c7,
1891 }
1892 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001893 .printlock = spi_prettyprint_status_register_at25fs010,
1894 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001895 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001896 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001897 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001898 },
1899
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001900 {
1901 .vendor = "Atmel",
1902 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001903 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001904 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001905 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001906 .total_size = 512,
1907 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001908 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001909 .tested = TEST_UNTESTED,
1910 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001911 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001912 .block_erasers =
1913 {
1914 {
1915 .eraseblocks = { {4 * 1024, 128} },
1916 .block_erase = spi_block_erase_20,
1917 }, {
1918 .eraseblocks = { {64 * 1024, 8} },
1919 .block_erase = spi_block_erase_52,
1920 }, {
1921 .eraseblocks = { {64 * 1024, 8} },
1922 .block_erase = spi_block_erase_d8,
1923 }, {
1924 .eraseblocks = { {512 * 1024, 1} },
1925 .block_erase = spi_block_erase_60,
1926 }, {
1927 .eraseblocks = { {512 * 1024, 1} },
1928 .block_erase = spi_block_erase_c7,
1929 }
1930 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001931 .printlock = spi_prettyprint_status_register_at25fs040,
1932 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001933 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001934 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001935 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001936 },
1937
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001938 {
1939 .vendor = "Atmel",
1940 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001941 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001942 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001943 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001944 .total_size = 512,
1945 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001946 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner94b39b42012-10-27 00:06:02 +00001947 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001948 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001949 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001950 .block_erasers =
1951 {
1952 {
Stefan Tauner94b39b42012-10-27 00:06:02 +00001953 .eraseblocks = { {256, 2048} },
1954 .block_erase = spi_block_erase_81,
1955 }, {
1956 .eraseblocks = { {2 * 1024, 256} },
1957 .block_erase = spi_block_erase_50,
1958 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001959 .eraseblocks = { {4 * 1024, 128} },
1960 .block_erase = spi_block_erase_20,
1961 }
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001962 },
Stefan Taunercecb2c52013-06-20 22:55:41 +00001963 .printlock = spi_prettyprint_status_register_plain,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00001964 /* Supports also an incompatible page write (of exactly 256 B) and an auto-erasing write. */
Stefan Tauner94b39b42012-10-27 00:06:02 +00001965 .write = spi_chip_write_1,
1966 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00001967 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00001968 },
1969
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001970 {
1971 .vendor = "Atmel",
1972 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001973 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001974 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001975 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001976 .total_size = 1024,
1977 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001978 .feature_bits = FEATURE_WRSR_WREN,
1979 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001980 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001981 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001982 .block_erasers =
1983 {
1984 {
1985 .eraseblocks = { {4 * 1024, 256} },
1986 .block_erase = spi_block_erase_20,
1987 }, {
1988 .eraseblocks = { {32 * 1024, 32} },
1989 .block_erase = spi_block_erase_52,
1990 }, {
1991 .eraseblocks = { {64 * 1024, 16} },
1992 .block_erase = spi_block_erase_d8,
1993 }, {
1994 .eraseblocks = { {1024 * 1024, 1} },
1995 .block_erase = spi_block_erase_60,
1996 }, {
1997 .eraseblocks = { {1024 * 1024, 1} },
1998 .block_erase = spi_block_erase_c7,
1999 }
2000 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002001 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002002 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002003 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002004 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002005 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002006 },
2007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002008 {
2009 .vendor = "Atmel",
2010 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002011 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002012 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002013 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002014 .total_size = 2048,
2015 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002016 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00002017 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002018 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002019 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002020 .block_erasers =
2021 {
2022 {
2023 .eraseblocks = { {4 * 1024, 512} },
2024 .block_erase = spi_block_erase_20,
2025 }, {
2026 .eraseblocks = { {32 * 1024, 64} },
2027 .block_erase = spi_block_erase_52,
2028 }, {
2029 .eraseblocks = { {64 * 1024, 32} },
2030 .block_erase = spi_block_erase_d8,
2031 }, {
2032 .eraseblocks = { {2 * 1024 * 1024, 1} },
2033 .block_erase = spi_block_erase_60,
2034 }, {
2035 .eraseblocks = { {2 * 1024 * 1024, 1} },
2036 .block_erase = spi_block_erase_c7,
2037 }
2038 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00002039 .printlock = spi_prettyprint_status_register_at25df,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002040 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002041 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002042 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002043 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002044 },
2045
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002046 {
2047 .vendor = "Atmel",
2048 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002049 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002050 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002051 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002052 .total_size = 2048,
2053 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002054 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002055 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002056 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002057 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002058 .block_erasers =
2059 {
2060 {
2061 .eraseblocks = { {4 * 1024, 512} },
2062 .block_erase = spi_block_erase_20,
2063 }, {
2064 .eraseblocks = { {32 * 1024, 64} },
2065 .block_erase = spi_block_erase_52,
2066 }, {
2067 .eraseblocks = { {64 * 1024, 32} },
2068 .block_erase = spi_block_erase_d8,
2069 }, {
2070 .eraseblocks = { {2 * 1024 * 1024, 1} },
2071 .block_erase = spi_block_erase_60,
2072 }, {
2073 .eraseblocks = { {2 * 1024 * 1024, 1} },
2074 .block_erase = spi_block_erase_c7,
2075 }
2076 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002077 .printlock = spi_prettyprint_status_register_at26df081a,
Stefan Taunercecb2c52013-06-20 22:55:41 +00002078 .unlock = spi_disable_blockprotect_at2x_global_unprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002079 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002080 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002081 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002082 },
2083
2084 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002085 /*{
2086 .vendor = "Atmel",
2087 .name = "AT26DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002088 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002089 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002090 .model_id = ATMEL_AT26DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002091 .total_size = 4096,
2092 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002093 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002094 .tested = TEST_UNTESTED,
2095 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002096 .probe_timing = TIMING_ZERO,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002097 .printlock = spi_prettyprint_status_register_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002098 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00002099 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002100 .read = spi_chip_read,
2101 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00002102
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002103 {
2104 .vendor = "Atmel",
2105 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002106 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002107 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002108 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002109 .total_size = 512,
2110 .page_size = 256,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002111 .tested = TEST_BAD_WRITE,
Steven Zakulec3603a282012-05-02 20:07:57 +00002112 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002113 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002114 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00002115 .block_erasers =
2116 {
2117 {
2118 .eraseblocks = { {4 * 1024, 128} },
2119 .block_erase = spi_block_erase_20,
2120 }, {
2121 .eraseblocks = { {32 * 1024, 16} },
2122 .block_erase = spi_block_erase_52,
2123 }, {
2124 .eraseblocks = { {64 * 1024, 8} },
2125 .block_erase = spi_block_erase_d8,
2126 }, {
2127 .eraseblocks = { {512 * 1024, 1} },
2128 .block_erase = spi_block_erase_60,
2129 }, {
2130 .eraseblocks = { {512 * 1024, 1} },
2131 .block_erase = spi_block_erase_c7,
2132 }
2133 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002134 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002135 .write = NULL /* Incompatible Page write */,
2136 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002137 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00002138 },
2139
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002140 {
2141 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002142 .name = "AT29C512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002143 .bustype = BUS_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002144 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002145 .model_id = ATMEL_AT29C512,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002146 .total_size = 64,
2147 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002148 .feature_bits = FEATURE_LONG_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00002149 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00002150 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002151 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002152 .block_erasers =
2153 {
2154 {
2155 .eraseblocks = { {64 * 1024, 1} },
2156 .block_erase = erase_chip_block_jedec,
2157 }
2158 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002159 .write = write_jedec,
2160 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002161 .voltage = {4500, 5500},
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002162 },
2163
2164 {
2165 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002166 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002167 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002168 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002169 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002170 .total_size = 128,
2171 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002172 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002173 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002174 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002175 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002176 .block_erasers =
2177 {
2178 {
2179 .eraseblocks = { {128 * 1024, 1} },
2180 .block_erase = erase_chip_block_jedec,
2181 }
2182 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002183 .write = write_jedec, /* FIXME */
2184 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002185 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002186 },
2187
2188 {
2189 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002190 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002191 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002192 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002193 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002194 .total_size = 256,
2195 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002196 .feature_bits = FEATURE_LONG_RESET,
2197 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002198 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002199 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002200 .block_erasers =
2201 {
2202 {
2203 .eraseblocks = { {256 * 1024, 1} },
2204 .block_erase = erase_chip_block_jedec,
2205 }
2206 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002207 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002208 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002209 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002210 },
2211
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002212 {
2213 .vendor = "Atmel",
2214 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002215 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002216 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002217 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002218 .total_size = 512,
2219 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002220 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002221 .tested = TEST_UNTESTED,
2222 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002223 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002224 .block_erasers =
2225 {
2226 {
2227 .eraseblocks = { {512 * 1024, 1} },
2228 .block_erase = erase_chip_block_jedec,
2229 }
2230 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002231 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002232 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002233 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002234 },
2235
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002236 {
2237 .vendor = "Atmel",
2238 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002239 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002240 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002241 .model_id = ATMEL_AT45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002242 .total_size = 16896 /* No power of two sizes */,
2243 .page_size = 1056 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002244 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002245 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002246 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002247 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002248 .write = NULL /* Incompatible Page write */,
2249 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002250 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002251 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002252
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002253 {
2254 .vendor = "Atmel",
2255 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002256 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002257 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002258 .model_id = ATMEL_AT45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002259 .total_size = 128 /* Size can only be determined from status register */,
2260 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002261 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002262 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002263 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002264 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002265 .write = NULL,
2266 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002267 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002268 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002269
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002270 {
2271 .vendor = "Atmel",
2272 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002273 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002274 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002275 .model_id = ATMEL_AT45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002276 .total_size = 256 /* Size can only be determined from status register */,
2277 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002278 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002279 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002280 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002281 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002282 .write = NULL,
2283 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002284 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002285 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002286
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002287 {
2288 .vendor = "Atmel",
2289 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002290 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002291 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002292 .model_id = ATMEL_AT45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002293 .total_size = 512 /* Size can only be determined from status register */,
2294 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002295 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002296 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002297 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002298 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002299 .write = NULL,
2300 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002301 .voltage = {2500, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002302 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002303
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002304 {
2305 .vendor = "Atmel",
2306 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002307 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002308 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002309 .model_id = ATMEL_AT45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002310 .total_size = 1024 /* Size can only be determined from status register */,
2311 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002312 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002313 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002314 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002315 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002316 .write = NULL,
2317 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002318 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002319 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002320
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002321 {
2322 .vendor = "Atmel",
2323 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002324 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002325 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002326 .model_id = ATMEL_AT45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002327 .total_size = 2048 /* Size can only be determined from status register */,
2328 .page_size = 512 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002329 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002330 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002331 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002332 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002333 .write = NULL,
2334 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002335 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002336 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002337
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002338 {
2339 .vendor = "Atmel",
2340 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002341 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002342 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002343 .model_id = ATMEL_AT45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002344 .total_size = 4224 /* No power of two sizes */,
2345 .page_size = 528 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002346 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002347 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002348 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002349 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002350 .write = NULL,
2351 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002352 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002353 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002354
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002355 {
2356 .vendor = "Atmel",
2357 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002358 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002359 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002360 .model_id = ATMEL_AT45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002361 .total_size = 4096 /* Size can only be determined from status register */,
2362 .page_size = 512 /* Size can only be determined from status register */,
Daniel Lenski65922a32012-02-15 23:40:23 +00002363 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Steven Zakulec3603a282012-05-02 20:07:57 +00002364 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Daniel Lenski65922a32012-02-15 23:40:23 +00002365 .feature_bits = FEATURE_OTP,
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002366 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002367 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002368 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002369 .write = NULL,
2370 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002371 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002372 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002373
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002374 {
2375 .vendor = "Atmel",
2376 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002377 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002378 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002379 .model_id = ATMEL_AT45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002380 .total_size = 8192 /* Size can only be determined from status register */,
2381 .page_size = 1024 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002382 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002383 .tested = TEST_BAD_REW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002384 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002385 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002386 .write = NULL,
2387 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002388 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002389 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002390
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002391 {
2392 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002393 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002394 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002395 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002396 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002397 .total_size = 64,
2398 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00002399 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00002400 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002401 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002402 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002403 .block_erasers =
2404 {
2405 {
2406 .eraseblocks = { {64 * 1024, 1} },
2407 .block_erase = erase_chip_block_jedec,
2408 }
2409 },
Sean Nelson35727f72010-01-28 23:55:12 +00002410 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002411 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002412 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002413 },
2414
2415 {
2416 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002417 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002418 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002419 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002420 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002421 .total_size = 256,
2422 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002423 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002424 .tested = TEST_UNTESTED,
2425 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002426 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002427 .block_erasers =
2428 {
2429 {
2430 .eraseblocks = {
2431 {16 * 1024, 1},
2432 {8 * 1024, 2},
2433 {96 * 1024, 1},
2434 {128 * 1024, 1},
2435 },
2436 .block_erase = erase_sector_jedec,
2437 }, {
2438 .eraseblocks = { {256 * 1024, 1} },
2439 .block_erase = erase_chip_block_jedec,
2440 }
2441 },
Sean Nelson35727f72010-01-28 23:55:12 +00002442 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002443 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002444 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002445 },
2446
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002447 {
2448 .vendor = "Atmel",
2449 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002450 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002451 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002452 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002453 .total_size = 256,
2454 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002455 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002456 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002457 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002458 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002459 .block_erasers =
2460 {
2461 {
2462 .eraseblocks = {
2463 {128 * 1024, 1},
2464 {96 * 1024, 1},
2465 {8 * 1024, 2},
2466 {16 * 1024, 1},
2467 },
2468 .block_erase = erase_sector_jedec,
2469 }, {
2470 .eraseblocks = { {256 * 1024, 1} },
2471 .block_erase = erase_chip_block_jedec,
2472 }
2473 },
Sean Nelson35727f72010-01-28 23:55:12 +00002474 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002475 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002476 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002477 },
2478
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00002479 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00002480 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002481 .name = "AT49(H)F010",
2482 .bustype = BUS_PARALLEL,
2483 .manufacture_id = ATMEL_ID,
2484 .model_id = ATMEL_AT49F010,
2485 .total_size = 128,
2486 .page_size = 0, /* unused */
2487 .feature_bits = FEATURE_EITHER_RESET,
2488 .tested = TEST_OK_PREW,
2489 .probe = probe_jedec,
2490 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2491 .block_erasers =
2492 {
2493 {
2494 .eraseblocks = { {128 * 1024, 1} },
2495 .block_erase = erase_chip_block_jedec,
2496 }
2497 },
2498 .printlock = printlock_at49f,
2499 .write = write_jedec_1,
2500 .read = read_memmapped,
2501 .voltage = {4500, 5500},
2502 },
2503
2504 {
2505 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00002506 .name = "AT49F020",
2507 .bustype = BUS_PARALLEL,
2508 .manufacture_id = ATMEL_ID,
2509 .model_id = ATMEL_AT49F020,
2510 .total_size = 256,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002511 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002512 .feature_bits = FEATURE_EITHER_RESET,
2513 .tested = TEST_OK_PRE,
2514 .probe = probe_jedec,
2515 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2516 .block_erasers =
2517 {
2518 {
2519 .eraseblocks = { {256 * 1024, 1} },
2520 .block_erase = erase_chip_block_jedec,
2521 }
2522 /* Chip features an optional permanent write protection
2523 * of the first 8 kB. The erase function is the same as
2524 * above, but 00000H to 01FFFH will not be erased.
2525 * FIXME: add another eraser when partial erasers are
2526 * supported.
2527 */
2528 },
2529 .printlock = printlock_at49f,
2530 .write = write_jedec_1,
2531 .read = read_memmapped,
2532 .voltage = {4500, 5500},
2533 },
2534
2535 {
2536 .vendor = "Atmel",
2537 .name = "AT49F040",
2538 .bustype = BUS_PARALLEL,
2539 .manufacture_id = ATMEL_ID,
2540 .model_id = ATMEL_AT49F040,
2541 .total_size = 512,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002542 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002543 .feature_bits = FEATURE_EITHER_RESET,
2544 .tested = TEST_UNTESTED,
2545 .probe = probe_jedec,
2546 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2547 .block_erasers =
2548 {
2549 {
2550 .eraseblocks = { {512 * 1024, 1} },
2551 .block_erase = erase_chip_block_jedec,
2552 }
2553 /* Chip features an optional permanent write protection
2554 * of the first 16 kB. The erase function is the same as
2555 * above, but 00000H to 03FFFH will not be erased.
2556 * FIXME: add another eraser when partial erasers are
2557 * supported.
2558 */
2559 },
2560 .printlock = printlock_at49f,
2561 .write = write_jedec_1,
2562 .read = read_memmapped,
2563 .voltage = {4500, 5500},
2564 },
2565
2566 {
2567 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002568 .name = "AT49F080",
2569 .bustype = BUS_PARALLEL,
2570 .manufacture_id = ATMEL_ID,
2571 .model_id = ATMEL_AT49F080,
2572 .total_size = 1024,
2573 .page_size = 0, /* unused */
2574 .feature_bits = FEATURE_EITHER_RESET,
2575 .tested = TEST_UNTESTED,
2576 .probe = probe_jedec,
2577 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2578 .block_erasers =
2579 {
2580 {
2581 .eraseblocks = { {1024 * 1024, 1} },
2582 .block_erase = erase_chip_block_jedec,
2583 }
2584 /* Chip features an optional permanent write protection
2585 * of the first 16 kB. The erase function is the same as
2586 * above, but 00000H to 03FFFH will not be erased.
2587 * FIXME: add another eraser when partial erasers are
2588 * supported.
2589 */
2590 },
2591 .printlock = printlock_at49f,
2592 .write = write_jedec_1,
2593 .read = read_memmapped,
2594 .voltage = {4500, 5500},
2595 },
2596
2597 {
2598 /* 'top' version of AT49F080. equal in all aspects but the boot block address */
2599 .vendor = "Atmel",
2600 .name = "AT49F080T",
2601 .bustype = BUS_PARALLEL,
2602 .manufacture_id = ATMEL_ID,
2603 .model_id = ATMEL_AT49F080T,
2604 .total_size = 1024,
2605 .page_size = 0, /* unused */
2606 .feature_bits = FEATURE_EITHER_RESET,
2607 .tested = TEST_UNTESTED,
2608 .probe = probe_jedec,
2609 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2610 .block_erasers =
2611 {
2612 {
2613 .eraseblocks = { {1024 * 1024, 1} },
2614 .block_erase = erase_chip_block_jedec,
2615 }
2616 /* Chip features an optional permanent write protection
2617 * of the first 16 kB. The erase function is the same as
2618 * above, but FC000H to FFFFFH will not be erased.
2619 * FIXME: add another eraser when partial erasers are
2620 * supported.
2621 */
2622 },
2623 .printlock = printlock_at49f,
2624 .write = write_jedec_1,
2625 .read = read_memmapped,
2626 .voltage = {4500, 5500},
2627 },
2628
2629 {
2630 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00002631 .name = "AT49LH002",
2632 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
2633 .manufacture_id = ATMEL_ID,
2634 .model_id = ATMEL_AT49LH002,
2635 .total_size = 256,
2636 .page_size = 0, /* unused */
2637 .feature_bits = FEATURE_REGISTERMAP, /* TODO: LPC OK too? */
2638 .tested = TEST_UNTESTED,
2639 .probe = probe_82802ab, /* TODO: 0xff cmd not documented? */
2640 .probe_timing = TIMING_FIXME,
2641 .block_erasers =
2642 {
2643 {
2644 .eraseblocks = {
2645 {64 * 1024, 3},
2646 {32 * 1024, 1},
2647 {8 * 1024, 2},
2648 {16 * 1024, 1},
2649 },
2650 .block_erase = erase_block_82802ab,
2651 }, {
2652 .eraseblocks = {
2653 {64 * 1024, 4},
2654 },
2655 .block_erase = NULL, /* TODO: Implement. */
2656 },
2657 },
2658 .printlock = NULL, /* TODO */
2659 .unlock = NULL, /* unlock_82802ab() not correct(?) */
2660 .write = write_82802ab,
2661 .read = read_memmapped,
2662 .voltage = {3000, 3600},
2663 },
2664
2665 {
Andrew Morganca081462011-09-13 22:05:44 +00002666 .vendor = "Catalyst",
2667 .name = "CAT28F512",
2668 .bustype = BUS_PARALLEL,
2669 .manufacture_id = CATALYST_ID,
2670 .model_id = CATALYST_CAT28F512,
2671 .total_size = 64,
2672 .page_size = 0, /* unused */
2673 .feature_bits = 0,
2674 .tested = TEST_OK_PR,
2675 .probe = probe_jedec, /* FIXME! */
2676 .probe_timing = TIMING_ZERO,
2677 .block_erasers =
2678 {
2679 {
2680 .eraseblocks = { {64 * 1024, 1} },
2681 .block_erase = NULL, /* TODO */
2682 },
2683 },
2684 .write = NULL, /* TODO */
2685 .read = read_memmapped,
2686 .voltage = {4500, 5500},
2687 },
2688
2689 {
Joshua Roysf1324e02010-09-16 00:51:51 +00002690 .vendor = "Bright",
2691 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002692 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00002693 .manufacture_id = BRIGHT_ID,
2694 .model_id = BRIGHT_BM29F040,
2695 .total_size = 512,
2696 .page_size = 64 * 1024,
2697 .feature_bits = FEATURE_EITHER_RESET,
2698 .tested = TEST_OK_PR,
2699 .probe = probe_jedec,
2700 .probe_timing = TIMING_ZERO,
2701 .block_erasers =
2702 {
2703 {
2704 .eraseblocks = { {64 * 1024, 8} },
2705 .block_erase = erase_sector_jedec,
2706 }, {
2707 .eraseblocks = { {512 * 1024, 1} },
2708 .block_erase = erase_chip_block_jedec,
2709 },
2710 },
2711 .write = write_jedec_1,
2712 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002713 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00002714 },
2715
2716 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00002717 .vendor = "ESMT",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002718 .name = "F49B002UA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002719 .bustype = BUS_PARALLEL,
Stefan Tauner352e50b2013-02-22 15:58:45 +00002720 .manufacture_id = ESMT_ID,
2721 .model_id = ESMT_F49B002UA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002722 .total_size = 256,
2723 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00002724 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002725 .tested = TEST_UNTESTED,
2726 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002727 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002728 .block_erasers =
2729 {
2730 {
2731 .eraseblocks = {
2732 {128 * 1024, 1},
2733 {96 * 1024, 1},
2734 {8 * 1024, 2},
2735 {16 * 1024, 1},
2736 },
2737 .block_erase = erase_sector_jedec,
2738 }, {
2739 .eraseblocks = { {256 * 1024, 1} },
2740 .block_erase = erase_chip_block_jedec,
2741 }
2742 },
Sean Nelson35727f72010-01-28 23:55:12 +00002743 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002744 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002745 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002746 },
2747
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002748 {
Stefan Tauner352e50b2013-02-22 15:58:45 +00002749 .vendor = "ESMT",
Michael Karcher80a59ea2010-06-19 22:06:35 +00002750 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002751 .bustype = BUS_SPI,
Stefan Tauner352e50b2013-02-22 15:58:45 +00002752 .manufacture_id = ESMT_ID,
2753 .model_id = ESMT_F25L008A,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002754 .total_size = 1024,
2755 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002756 .feature_bits = FEATURE_WRSR_EITHER,
Stefan Taunereb582572012-09-21 12:52:50 +00002757 .tested = TEST_OK_PREW,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002758 .probe = probe_spi_rdid,
2759 .probe_timing = TIMING_ZERO,
2760 .block_erasers =
2761 {
2762 {
2763 .eraseblocks = { {4 * 1024, 256} },
2764 .block_erase = spi_block_erase_20,
2765 }, {
2766 .eraseblocks = { {64 * 1024, 16} },
2767 .block_erase = spi_block_erase_d8,
2768 }, {
2769 .eraseblocks = { {1024 * 1024, 1} },
2770 .block_erase = spi_block_erase_60,
2771 }, {
2772 .eraseblocks = { {1024 * 1024, 1} },
2773 .block_erase = spi_block_erase_c7,
2774 }
2775 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002776 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002777 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00002778 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00002779 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002780 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00002781 },
2782
2783 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002784 .vendor = "Eon",
2785 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002786 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002787 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002788 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002789 .total_size = 64,
2790 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002791 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002792 .tested = TEST_UNTESTED,
2793 .probe = probe_spi_rdid,
2794 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002795 .block_erasers =
2796 {
2797 {
2798 .eraseblocks = {
2799 {4 * 1024, 2},
2800 {8 * 1024, 1},
2801 {16 * 1024, 1},
2802 {32 * 1024, 1},
2803 },
2804 .block_erase = spi_block_erase_d8,
2805 }, {
2806 .eraseblocks = { {64 * 1024, 1} },
2807 .block_erase = spi_block_erase_c7,
2808 }
2809 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002810 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002811 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002812 .write = spi_chip_write_256,
2813 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002814 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002815 },
2816
2817 {
2818 .vendor = "Eon",
2819 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002820 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002821 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002822 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00002823 .total_size = 64,
2824 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002825 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002826 .tested = TEST_UNTESTED,
2827 .probe = probe_spi_rdid,
2828 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002829 .block_erasers =
2830 {
2831 {
2832 .eraseblocks = {
2833 {32 * 1024, 1},
2834 {16 * 1024, 1},
2835 {8 * 1024, 1},
2836 {4 * 1024, 2},
2837 },
2838 .block_erase = spi_block_erase_d8,
2839 }, {
2840 .eraseblocks = { {64 * 1024, 1} },
2841 .block_erase = spi_block_erase_c7,
2842 }
2843 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002844 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002845 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002846 .write = spi_chip_write_256,
2847 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002848 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002849 },
2850
2851 {
2852 .vendor = "Eon",
2853 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002854 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002855 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002856 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002857 .total_size = 128,
2858 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002859 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002860 .tested = TEST_UNTESTED,
2861 .probe = probe_spi_rdid,
2862 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002863 .block_erasers =
2864 {
2865 {
2866 .eraseblocks = {
2867 {4 * 1024, 2},
2868 {8 * 1024, 1},
2869 {16 * 1024, 1},
2870 {32 * 1024, 3},
2871 },
2872 .block_erase = spi_block_erase_d8,
2873 }, {
2874 .eraseblocks = { {128 * 1024, 1} },
2875 .block_erase = spi_block_erase_c7,
2876 }
2877 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002878 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002879 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002880 .write = spi_chip_write_256,
2881 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002882 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002883 },
2884
2885 {
2886 .vendor = "Eon",
2887 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002888 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002889 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002890 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00002891 .total_size = 128,
2892 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002893 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002894 .tested = TEST_UNTESTED,
2895 .probe = probe_spi_rdid,
2896 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002897 .block_erasers =
2898 {
2899 {
2900 .eraseblocks = {
2901 {32 * 1024, 3},
2902 {16 * 1024, 1},
2903 {8 * 1024, 1},
2904 {4 * 1024, 2},
2905 },
2906 .block_erase = spi_block_erase_d8,
2907 }, {
2908 .eraseblocks = { {128 * 1024, 1} },
2909 .block_erase = spi_block_erase_c7,
2910 }
2911 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002912 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002913 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002914 .write = spi_chip_write_256,
2915 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002916 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002917 },
2918
2919 {
2920 .vendor = "Eon",
2921 .name = "EN25B20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002922 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002923 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002924 .model_id = EON_EN25B20,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002925 .total_size = 256,
2926 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002927 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002928 .tested = TEST_UNTESTED,
2929 .probe = probe_spi_rdid,
2930 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002931 .block_erasers =
2932 {
2933 {
2934 .eraseblocks = {
2935 {4 * 1024, 2},
2936 {8 * 1024, 1},
2937 {16 * 1024, 1},
2938 {32 * 1024, 1},
2939 {64 * 1024, 3}
2940 },
2941 .block_erase = spi_block_erase_d8,
2942 }, {
2943 .eraseblocks = { {256 * 1024, 1} },
2944 .block_erase = spi_block_erase_c7,
2945 }
2946 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002947 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002948 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002949 .write = spi_chip_write_256,
2950 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002951 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002952 },
2953
2954 {
2955 .vendor = "Eon",
2956 .name = "EN25B20T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002957 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002958 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002959 .model_id = EON_EN25B20,
Sean Nelson54596372010-01-09 05:30:14 +00002960 .total_size = 256,
2961 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002962 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002963 .tested = TEST_UNTESTED,
2964 .probe = probe_spi_rdid,
2965 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002966 .block_erasers =
2967 {
2968 {
2969 .eraseblocks = {
2970 {64 * 1024, 3},
2971 {32 * 1024, 1},
2972 {16 * 1024, 1},
2973 {8 * 1024, 1},
2974 {4 * 1024, 2},
2975 },
2976 .block_erase = spi_block_erase_d8,
2977 }, {
2978 .eraseblocks = { {256 * 1024, 1} },
2979 .block_erase = spi_block_erase_c7,
2980 }
2981 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00002982 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002983 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002984 .write = spi_chip_write_256,
2985 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002986 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002987 },
2988
2989 {
2990 .vendor = "Eon",
2991 .name = "EN25B40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002992 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002993 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002994 .model_id = EON_EN25B40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002995 .total_size = 512,
2996 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002997 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002998 .tested = TEST_UNTESTED,
2999 .probe = probe_spi_rdid,
3000 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003001 .block_erasers =
3002 {
3003 {
3004 .eraseblocks = {
3005 {4 * 1024, 2},
3006 {8 * 1024, 1},
3007 {16 * 1024, 1},
3008 {32 * 1024, 1},
3009 {64 * 1024, 7}
3010 },
3011 .block_erase = spi_block_erase_d8,
3012 }, {
3013 .eraseblocks = { {512 * 1024, 1} },
3014 .block_erase = spi_block_erase_c7,
3015 }
3016 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003017 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003018 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003019 .write = spi_chip_write_256,
3020 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003021 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003022 },
3023
3024 {
3025 .vendor = "Eon",
3026 .name = "EN25B40T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003027 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003028 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003029 .model_id = EON_EN25B40,
Sean Nelson54596372010-01-09 05:30:14 +00003030 .total_size = 512,
3031 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003032 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003033 .tested = TEST_UNTESTED,
3034 .probe = probe_spi_rdid,
3035 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003036 .block_erasers =
3037 {
3038 {
3039 .eraseblocks = {
3040 {64 * 1024, 7},
3041 {32 * 1024, 1},
3042 {16 * 1024, 1},
3043 {8 * 1024, 1},
3044 {4 * 1024, 2},
3045 },
3046 .block_erase = spi_block_erase_d8,
3047 }, {
3048 .eraseblocks = { {512 * 1024, 1} },
3049 .block_erase = spi_block_erase_c7,
3050 }
3051 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003052 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003053 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003054 .write = spi_chip_write_256,
3055 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003056 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003057 },
3058
3059 {
3060 .vendor = "Eon",
3061 .name = "EN25B80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003062 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003063 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003064 .model_id = EON_EN25B80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003065 .total_size = 1024,
3066 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003067 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003068 .tested = TEST_UNTESTED,
3069 .probe = probe_spi_rdid,
3070 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003071 .block_erasers =
3072 {
3073 {
3074 .eraseblocks = {
3075 {4 * 1024, 2},
3076 {8 * 1024, 1},
3077 {16 * 1024, 1},
3078 {32 * 1024, 1},
3079 {64 * 1024, 15}
3080 },
3081 .block_erase = spi_block_erase_d8,
3082 }, {
3083 .eraseblocks = { {1024 * 1024, 1} },
3084 .block_erase = spi_block_erase_c7,
3085 }
3086 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003087 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003088 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003089 .write = spi_chip_write_256,
3090 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003091 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003092 },
3093
3094 {
3095 .vendor = "Eon",
3096 .name = "EN25B80T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003097 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003098 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003099 .model_id = EON_EN25B80,
Sean Nelson54596372010-01-09 05:30:14 +00003100 .total_size = 1024,
3101 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003102 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003103 .tested = TEST_UNTESTED,
3104 .probe = probe_spi_rdid,
3105 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003106 .block_erasers =
3107 {
3108 {
3109 .eraseblocks = {
3110 {64 * 1024, 15},
3111 {32 * 1024, 1},
3112 {16 * 1024, 1},
3113 {8 * 1024, 1},
3114 {4 * 1024, 2},
3115 },
3116 .block_erase = spi_block_erase_d8,
3117 }, {
3118 .eraseblocks = { {1024 * 1024, 1} },
3119 .block_erase = spi_block_erase_c7,
3120 }
3121 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003122 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003123 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003124 .write = spi_chip_write_256,
3125 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003126 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003127 },
3128
3129 {
3130 .vendor = "Eon",
3131 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003132 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003133 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003134 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003135 .total_size = 2048,
3136 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003137 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003138 .tested = TEST_UNTESTED,
3139 .probe = probe_spi_rdid,
3140 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003141 .block_erasers =
3142 {
3143 {
3144 .eraseblocks = {
3145 {4 * 1024, 2},
3146 {8 * 1024, 1},
3147 {16 * 1024, 1},
3148 {32 * 1024, 1},
3149 {64 * 1024, 31},
3150 },
3151 .block_erase = spi_block_erase_d8,
3152 }, {
3153 .eraseblocks = { {2 * 1024 * 1024, 1} },
3154 .block_erase = spi_block_erase_c7,
3155 }
3156 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003157 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003158 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003159 .write = spi_chip_write_256,
3160 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003161 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003162 },
3163
3164 {
3165 .vendor = "Eon",
3166 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003167 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003168 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003169 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00003170 .total_size = 2048,
3171 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003172 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003173 .tested = TEST_UNTESTED,
3174 .probe = probe_spi_rdid,
3175 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003176 .block_erasers =
3177 {
3178 {
3179 .eraseblocks = {
3180 {64 * 1024, 31},
3181 {32 * 1024, 1},
3182 {16 * 1024, 1},
3183 {8 * 1024, 1},
3184 {4 * 1024, 2},
3185 },
3186 .block_erase = spi_block_erase_d8,
3187 }, {
3188 .eraseblocks = { {2 * 1024 * 1024, 1} },
3189 .block_erase = spi_block_erase_c7,
3190 }
3191 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003192 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003193 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003194 .write = spi_chip_write_256,
3195 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003196 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003197 },
3198
3199 {
3200 .vendor = "Eon",
3201 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003202 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003203 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003204 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003205 .total_size = 4096,
3206 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003207 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003208 .tested = TEST_UNTESTED,
3209 .probe = probe_spi_rdid,
3210 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003211 .block_erasers =
3212 {
3213 {
3214 .eraseblocks = {
3215 {4 * 1024, 2},
3216 {8 * 1024, 1},
3217 {16 * 1024, 1},
3218 {32 * 1024, 1},
3219 {64 * 1024, 63},
3220 },
3221 .block_erase = spi_block_erase_d8,
3222 }, {
3223 .eraseblocks = { {4 * 1024 * 1024, 1} },
3224 .block_erase = spi_block_erase_c7,
3225 }
3226 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003227 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003228 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003229 .write = spi_chip_write_256,
3230 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003231 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003232 },
3233
3234 {
3235 .vendor = "Eon",
3236 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003237 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003238 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003239 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00003240 .total_size = 4096,
3241 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003242 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003243 .tested = TEST_UNTESTED,
3244 .probe = probe_spi_rdid,
3245 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003246 .block_erasers =
3247 {
3248 {
3249 .eraseblocks = {
3250 {64 * 1024, 63},
3251 {32 * 1024, 1},
3252 {16 * 1024, 1},
3253 {8 * 1024, 1},
3254 {4 * 1024, 2},
3255 },
3256 .block_erase = spi_block_erase_d8,
3257 }, {
3258 .eraseblocks = { {4 * 1024 * 1024, 1} },
3259 .block_erase = spi_block_erase_c7,
3260 }
3261 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003262 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003263 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003264 .write = spi_chip_write_256,
3265 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003266 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003267 },
3268
3269 {
3270 .vendor = "Eon",
3271 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003272 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003273 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003274 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003275 .total_size = 8192,
3276 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003277 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003278 .tested = TEST_UNTESTED,
3279 .probe = probe_spi_rdid,
3280 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003281 .block_erasers =
3282 {
3283 {
3284 .eraseblocks = {
3285 {4 * 1024, 2},
3286 {8 * 1024, 1},
3287 {16 * 1024, 1},
3288 {32 * 1024, 1},
3289 {64 * 1024, 127},
3290 },
3291 .block_erase = spi_block_erase_d8,
3292 }, {
3293 .eraseblocks = { {8 * 1024 * 1024, 1} },
3294 .block_erase = spi_block_erase_c7,
3295 }
3296 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003297 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003298 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003299 .write = spi_chip_write_256,
3300 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003301 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003302 },
3303
3304 {
3305 .vendor = "Eon",
3306 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003307 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003308 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003309 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00003310 .total_size = 8192,
3311 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003312 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003313 .tested = TEST_UNTESTED,
3314 .probe = probe_spi_rdid,
3315 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003316 .block_erasers =
3317 {
3318 {
3319 .eraseblocks = {
3320 {64 * 1024, 127},
3321 {32 * 1024, 1},
3322 {16 * 1024, 1},
3323 {8 * 1024, 1},
3324 {4 * 1024, 2},
3325 },
3326 .block_erase = spi_block_erase_d8,
3327 }, {
3328 .eraseblocks = { {8 * 1024 * 1024, 1} },
3329 .block_erase = spi_block_erase_c7,
3330 }
3331 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003332 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003333 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003334 .write = spi_chip_write_256,
3335 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003336 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003337 },
3338
3339 {
3340 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003341 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003342 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003343 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003344 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003345 .total_size = 64,
3346 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003347 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003348 .tested = TEST_UNTESTED,
3349 .probe = probe_spi_rdid,
3350 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003351 .block_erasers =
3352 {
3353 {
3354 .eraseblocks = { {4 * 1024, 16} },
3355 .block_erase = spi_block_erase_20,
3356 }, {
3357 .eraseblocks = { {32 * 1024, 2} },
3358 .block_erase = spi_block_erase_d8,
3359 }, {
3360 .eraseblocks = { {32 * 1024, 2} },
3361 .block_erase = spi_block_erase_52,
3362 }, {
3363 .eraseblocks = { {64 * 1024, 1} },
3364 .block_erase = spi_block_erase_60,
3365 }, {
3366 .eraseblocks = { {64 * 1024, 1} },
3367 .block_erase = spi_block_erase_c7,
3368 }
3369 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003370 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003371 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003372 .write = spi_chip_write_256,
3373 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003374 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003375 },
3376
3377 {
3378 .vendor = "Eon",
3379 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003380 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003381 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003382 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003383 .total_size = 128,
3384 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003385 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003386 .tested = TEST_UNTESTED,
3387 .probe = probe_spi_rdid,
3388 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003389 .block_erasers =
3390 {
3391 {
3392 .eraseblocks = { {4 * 1024, 32} },
3393 .block_erase = spi_block_erase_20,
3394 }, {
3395 .eraseblocks = { {32 * 1024, 4} },
3396 .block_erase = spi_block_erase_d8,
3397 }, {
3398 .eraseblocks = { {32 * 1024, 4} },
3399 .block_erase = spi_block_erase_52,
3400 }, {
3401 .eraseblocks = { {128 * 1024, 1} },
3402 .block_erase = spi_block_erase_60,
3403 }, {
3404 .eraseblocks = { {128 * 1024, 1} },
3405 .block_erase = spi_block_erase_c7,
3406 }
3407 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003408 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003409 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003410 .write = spi_chip_write_256,
3411 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003412 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003413 },
3414
3415 {
3416 .vendor = "Eon",
3417 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003418 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003419 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003420 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003421 .total_size = 256,
3422 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003423 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003424 .tested = TEST_UNTESTED,
3425 .probe = probe_spi_rdid,
3426 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003427 .block_erasers =
3428 {
3429 {
3430 .eraseblocks = { {4 * 1024, 64} },
3431 .block_erase = spi_block_erase_20,
3432 }, {
3433 .eraseblocks = { {64 * 1024, 4} },
3434 .block_erase = spi_block_erase_d8,
3435 }, {
3436 .eraseblocks = { {64 * 1024, 4} },
3437 .block_erase = spi_block_erase_52,
3438 }, {
3439 .eraseblocks = { {256 * 1024, 1} },
3440 .block_erase = spi_block_erase_60,
3441 }, {
3442 .eraseblocks = { {256 * 1024, 1} },
3443 .block_erase = spi_block_erase_c7,
3444 }
3445 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003446 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003447 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003448 .write = spi_chip_write_256,
3449 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003450 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003451 },
3452
3453 {
3454 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003455 .name = "EN25F40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003456 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003457 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003458 .model_id = EON_EN25F40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003459 .total_size = 512,
3460 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003461 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00003462 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003463 .probe = probe_spi_rdid,
3464 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003465 .block_erasers =
3466 {
3467 {
Sean Nelson54596372010-01-09 05:30:14 +00003468 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003469 .block_erase = spi_block_erase_20,
3470 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003471 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003472 .block_erase = spi_block_erase_d8,
3473 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003474 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003475 .block_erase = spi_block_erase_60,
3476 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003477 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003478 .block_erase = spi_block_erase_c7,
3479 },
3480 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003481 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003482 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003483 .write = spi_chip_write_256,
3484 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003485 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003486 },
3487
3488 {
3489 .vendor = "Eon",
3490 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003491 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003492 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003493 .model_id = EON_EN25F80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003494 .total_size = 1024,
3495 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003496 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00003497 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003498 .probe = probe_spi_rdid,
3499 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003500 .block_erasers =
3501 {
3502 {
3503 .eraseblocks = { {4 * 1024, 256} },
3504 .block_erase = spi_block_erase_20,
3505 }, {
3506 .eraseblocks = { {64 * 1024, 16} },
3507 .block_erase = spi_block_erase_d8,
3508 }, {
3509 .eraseblocks = { {1024 * 1024, 1} },
3510 .block_erase = spi_block_erase_60,
3511 }, {
3512 .eraseblocks = { {1024 * 1024, 1} },
3513 .block_erase = spi_block_erase_c7,
3514 }
3515 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003516 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003517 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003518 .write = spi_chip_write_256,
3519 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003520 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003521 },
3522
3523 {
3524 .vendor = "Eon",
3525 .name = "EN25F16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003526 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003527 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003528 .model_id = EON_EN25F16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003529 .total_size = 2048,
3530 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003531 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzel018d4822011-10-21 12:33:07 +00003532 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003533 .probe = probe_spi_rdid,
3534 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003535 .block_erasers =
3536 {
3537 {
3538 .eraseblocks = { {4 * 1024, 512} },
3539 .block_erase = spi_block_erase_20,
3540 }, {
3541 .eraseblocks = { {64 * 1024, 32} },
3542 .block_erase = spi_block_erase_d8,
3543 }, {
3544 .eraseblocks = { {2 * 1024 * 1024, 1} },
3545 .block_erase = spi_block_erase_60,
3546 }, {
3547 .eraseblocks = { {2 * 1024 * 1024, 1} },
3548 .block_erase = spi_block_erase_c7,
3549 }
3550 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003551 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003552 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003553 .write = spi_chip_write_256,
3554 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003555 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003556 },
3557
3558 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003559 .vendor = "Eon",
3560 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003561 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003562 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003563 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003564 .total_size = 4096,
3565 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003566 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003567 .tested = TEST_UNTESTED,
3568 .probe = probe_spi_rdid,
3569 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003570 .block_erasers =
3571 {
3572 {
3573 .eraseblocks = { {4 * 1024, 1024} },
3574 .block_erase = spi_block_erase_20,
3575 }, {
3576 .eraseblocks = { {64 * 1024, 64} },
3577 .block_erase = spi_block_erase_d8,
3578 }, {
3579 .eraseblocks = { {4 * 1024 * 1024, 1} },
3580 .block_erase = spi_block_erase_60,
3581 }, {
3582 .eraseblocks = { {4 * 1024 * 1024, 1} },
3583 .block_erase = spi_block_erase_c7,
3584 }
3585 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003586 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003587 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003588 .write = spi_chip_write_256,
3589 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003590 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003591 },
3592
3593 {
Russ Dill3cd5a122010-03-05 08:44:11 +00003594 .vendor = "Eon",
Stefan Taunerd932fd02012-09-06 17:37:16 +00003595 .name = "EN25F64",
3596 .bustype = BUS_SPI,
3597 .manufacture_id = EON_ID_NOPREFIX,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00003598 .model_id = EON_EN25F64,
Stefan Taunerd932fd02012-09-06 17:37:16 +00003599 .total_size = 8192,
3600 .page_size = 256,
3601 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00003602 .tested = TEST_OK_PREW,
Stefan Taunerd932fd02012-09-06 17:37:16 +00003603 .probe = probe_spi_rdid,
3604 .probe_timing = TIMING_ZERO,
3605 .block_erasers =
3606 {
3607 {
3608 .eraseblocks = { {4 * 1024, 2048} },
3609 .block_erase = spi_block_erase_20,
3610 }, {
3611 .eraseblocks = { {64 * 1024, 128} },
3612 .block_erase = spi_block_erase_d8,
3613 }, {
3614 .eraseblocks = { {8 * 1024 * 1024, 1} },
3615 .block_erase = spi_block_erase_60,
3616 }, {
3617 .eraseblocks = { {8 * 1024 * 1024, 1} },
3618 .block_erase = spi_block_erase_c7,
3619 }
3620 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003621 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stefan Taunerd932fd02012-09-06 17:37:16 +00003622 .unlock = spi_disable_blockprotect,
3623 .write = spi_chip_write_256,
3624 .read = spi_chip_read,
3625 .voltage = {2700, 3600},
3626 },
3627
3628 {
3629 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00003630 .name = "EN25Q40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003631 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003632 .manufacture_id = EON_ID_NOPREFIX,
3633 .model_id = EON_EN25Q40,
3634 .total_size = 512,
3635 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003636 /* OTP: 256B total; enter 0x3A */
3637 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003638 .tested = TEST_UNTESTED,
3639 .probe = probe_spi_rdid,
3640 .probe_timing = TIMING_ZERO,
3641 .block_erasers =
3642 {
3643 {
3644 .eraseblocks = { {4 * 1024, 128} },
3645 .block_erase = spi_block_erase_20,
3646 }, {
3647 .eraseblocks = { {64 * 1024, 8} },
3648 .block_erase = spi_block_erase_d8,
3649 }, {
3650 .eraseblocks = { {512 * 1024, 1} },
3651 .block_erase = spi_block_erase_60,
3652 }, {
3653 .eraseblocks = { {512 * 1024, 1} },
3654 .block_erase = spi_block_erase_c7,
3655 }
3656 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003657 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003658 .unlock = spi_disable_blockprotect,
3659 .write = spi_chip_write_256,
3660 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003661 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003662 },
3663
3664 {
3665 .vendor = "Eon",
3666 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003667 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003668 .manufacture_id = EON_ID_NOPREFIX,
3669 .model_id = EON_EN25Q80,
3670 .total_size = 1024,
3671 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003672 /* OTP: 256B total; enter 0x3A */
3673 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003674 .tested = TEST_UNTESTED,
3675 .probe = probe_spi_rdid,
3676 .probe_timing = TIMING_ZERO,
3677 .block_erasers =
3678 {
3679 {
3680 .eraseblocks = { {4 * 1024, 256} },
3681 .block_erase = spi_block_erase_20,
3682 }, {
3683 .eraseblocks = { {64 * 1024, 16} },
3684 .block_erase = spi_block_erase_d8,
3685 }, {
3686 .eraseblocks = { {1024 * 1024, 1} },
3687 .block_erase = spi_block_erase_60,
3688 }, {
3689 .eraseblocks = { {1024 * 1024, 1} },
3690 .block_erase = spi_block_erase_c7,
3691 }
3692 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003693 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003694 .unlock = spi_disable_blockprotect,
3695 .write = spi_chip_write_256,
3696 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003697 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003698 },
3699
3700 {
3701 /* Note: EN25D16 is an evil twin which shares the model ID
3702 but has different write protection capabilities */
3703 .vendor = "Eon",
3704 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003705 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003706 .manufacture_id = EON_ID_NOPREFIX,
3707 .model_id = EON_EN25Q16,
3708 .total_size = 2048,
3709 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003710 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
3711 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003712 .tested = TEST_UNTESTED,
3713 .probe = probe_spi_rdid,
3714 .probe_timing = TIMING_ZERO,
3715 .block_erasers =
3716 {
3717 {
3718 .eraseblocks = { {4 * 1024, 512} },
3719 .block_erase = spi_block_erase_20,
3720 }, {
3721 .eraseblocks = { {64 * 1024, 32} },
3722 .block_erase = spi_block_erase_d8,
3723 }, {
3724 /* not supported by Q16 version */
3725 .eraseblocks = { {64 * 1024, 32} },
3726 .block_erase = spi_block_erase_52,
3727 }, {
3728 .eraseblocks = { {2 * 1024 * 1024, 1} },
3729 .block_erase = spi_block_erase_60,
3730 }, {
3731 .eraseblocks = { {2 * 1024 * 1024, 1} },
3732 .block_erase = spi_block_erase_c7,
3733 }
3734 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003735 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003736 .unlock = spi_disable_blockprotect,
3737 .write = spi_chip_write_256,
3738 .read = spi_chip_read,
3739 .voltage = {2700, 3600},
3740 },
3741
3742 {
3743 .vendor = "Eon",
3744 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003745 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003746 .manufacture_id = EON_ID_NOPREFIX,
3747 .model_id = EON_EN25Q32,
3748 .total_size = 4096,
3749 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003750 /* OTP: 512B total; enter 0x3A */
3751 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003752 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00003753 .probe = probe_spi_rdid,
3754 .probe_timing = TIMING_ZERO,
3755 .block_erasers =
3756 {
3757 {
3758 .eraseblocks = { {4 * 1024, 1024} },
3759 .block_erase = spi_block_erase_20,
3760 }, {
3761 .eraseblocks = { {64 * 1024, 64} },
3762 .block_erase = spi_block_erase_d8,
3763 }, {
3764 .eraseblocks = { {4 * 1024 * 1024, 1} },
3765 .block_erase = spi_block_erase_60,
3766 }, {
3767 .eraseblocks = { {4 * 1024 * 1024, 1} },
3768 .block_erase = spi_block_erase_c7,
3769 }
3770 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003771 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003772 .unlock = spi_disable_blockprotect,
3773 .write = spi_chip_write_256,
3774 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003775 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003776 },
3777
3778 {
3779 .vendor = "Eon",
3780 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003781 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003782 .manufacture_id = EON_ID_NOPREFIX,
3783 .model_id = EON_EN25Q64,
3784 .total_size = 8192,
3785 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003786 /* OTP: 512B total; enter 0x3A */
3787 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner352e50b2013-02-22 15:58:45 +00003788 .tested = TEST_OK_PREW,
David Hendricks6d715302011-07-24 22:21:57 +00003789 .probe = probe_spi_rdid,
3790 .probe_timing = TIMING_ZERO,
3791 .block_erasers =
3792 {
3793 {
3794 .eraseblocks = { {4 * 1024, 2048} },
3795 .block_erase = spi_block_erase_20,
3796 }, {
3797 .eraseblocks = { {64 * 1024, 128} },
3798 .block_erase = spi_block_erase_d8,
3799 }, {
3800 .eraseblocks = { {8 * 1024 * 1024, 1} },
3801 .block_erase = spi_block_erase_60,
3802 }, {
3803 .eraseblocks = { {8 * 1024 * 1024, 1} },
3804 .block_erase = spi_block_erase_c7,
3805 }
3806 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003807 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003808 .unlock = spi_disable_blockprotect,
3809 .write = spi_chip_write_256,
3810 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00003811 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003812 },
3813
3814 {
3815 .vendor = "Eon",
3816 .name = "EN25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003817 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003818 .manufacture_id = EON_ID_NOPREFIX,
3819 .model_id = EON_EN25Q128,
3820 .total_size = 16384,
3821 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003822 /* OTP: 512B total; enter 0x3A */
3823 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003824 .tested = TEST_UNTESTED,
3825 .probe = probe_spi_rdid,
3826 .probe_timing = TIMING_ZERO,
3827 .block_erasers =
3828 {
3829 {
3830 .eraseblocks = { {4 * 1024, 4096} },
3831 .block_erase = spi_block_erase_20,
3832 }, {
3833 .eraseblocks = { {64 * 1024, 256} },
3834 .block_erase = spi_block_erase_d8,
3835 }, {
3836 .eraseblocks = { {16 * 1024 * 1024, 1} },
3837 .block_erase = spi_block_erase_60,
3838 }, {
3839 .eraseblocks = { {16 * 1024 * 1024, 1} },
3840 .block_erase = spi_block_erase_c7,
3841 }
3842 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003843 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003844 .unlock = spi_disable_blockprotect,
3845 .write = spi_chip_write_256,
3846 .read = spi_chip_read,
3847 },
3848
3849 {
3850 .vendor = "Eon",
3851 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003852 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003853 .manufacture_id = EON_ID_NOPREFIX,
3854 .model_id = EON_EN25QH16,
3855 .total_size = 2048,
3856 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003857 /* supports SFDP */
3858 /* OTP: 512B total; enter 0x3A */
3859 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00003860 .tested = TEST_OK_PR,
David Hendricks6d715302011-07-24 22:21:57 +00003861 .probe = probe_spi_rdid,
3862 .probe_timing = TIMING_ZERO,
3863 .block_erasers =
3864 {
3865 {
3866 .eraseblocks = { {4 * 1024, 512} },
3867 .block_erase = spi_block_erase_20,
3868 }, {
3869 .eraseblocks = { {64 * 1024, 32} },
3870 .block_erase = spi_block_erase_d8,
3871 }, {
3872 .eraseblocks = { {1024 * 2048, 1} },
3873 .block_erase = spi_block_erase_60,
3874 }, {
3875 .eraseblocks = { {1024 * 2048, 1} },
3876 .block_erase = spi_block_erase_c7,
3877 }
3878 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003879 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
David Hendricks6d715302011-07-24 22:21:57 +00003880 .unlock = spi_disable_blockprotect,
3881 .write = spi_chip_write_256,
3882 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00003883 .voltage = {2700, 3600},
3884 },
3885
3886 {
3887 .vendor = "Eon",
3888 .name = "EN25QH32",
3889 .bustype = BUS_SPI,
3890 .manufacture_id = EON_ID_NOPREFIX,
3891 .model_id = EON_EN25QH32,
3892 .total_size = 4096,
3893 .page_size = 256,
3894 /* supports SFDP */
3895 /* OTP: 512B total; enter 0x3A */
3896 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3897 .tested = TEST_UNTESTED,
3898 .probe = probe_spi_rdid,
3899 .probe_timing = TIMING_ZERO,
3900 .block_erasers =
3901 {
3902 {
3903 .eraseblocks = { {4 * 1024, 1024} },
3904 .block_erase = spi_block_erase_20,
3905 }, {
3906 .eraseblocks = { {64 * 1024, 64} },
3907 .block_erase = spi_block_erase_d8,
3908 }, {
3909 .eraseblocks = { {1024 * 4096, 1} },
3910 .block_erase = spi_block_erase_60,
3911 }, {
3912 .eraseblocks = { {1024 * 4096, 1} },
3913 .block_erase = spi_block_erase_c7,
3914 }
3915 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00003916 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Stefan Tauner2cef9162012-05-14 01:51:46 +00003917 .unlock = spi_disable_blockprotect,
3918 .write = spi_chip_write_256,
3919 .read = spi_chip_read,
3920 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003921 },
3922
3923 {
3924 .vendor = "Eon",
Russ Dill3cd5a122010-03-05 08:44:11 +00003925 .name = "EN29F010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003926 .bustype = BUS_PARALLEL,
Russ Dill3cd5a122010-03-05 08:44:11 +00003927 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003928 .model_id = EON_EN29F010,
Russ Dill3cd5a122010-03-05 08:44:11 +00003929 .total_size = 128,
3930 .page_size = 128,
3931 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003932 .tested = TEST_OK_PRE,
Russ Dill3cd5a122010-03-05 08:44:11 +00003933 .probe = probe_jedec,
3934 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3935 .block_erasers =
3936 {
3937 {
3938 .eraseblocks = { {16 * 1024, 8} },
3939 .block_erase = erase_sector_jedec,
3940 },
3941 {
3942 .eraseblocks = { {128 * 1024, 1} },
3943 .block_erase = erase_chip_block_jedec,
3944 },
3945 },
3946 .write = write_jedec_1,
3947 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003948 .voltage = {4500, 5500},
Russ Dill3cd5a122010-03-05 08:44:11 +00003949 },
3950
3951 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003952 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003953 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003954 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003955 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003956 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003957 .total_size = 256,
3958 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003959 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003960 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003961 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003962 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003963 .block_erasers =
3964 {
3965 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003966 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003967 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003968 {8 * 1024, 2},
3969 {32 * 1024, 1},
3970 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003971 },
3972 .block_erase = erase_sector_jedec,
3973 }, {
3974 .eraseblocks = { {256 * 1024, 1} },
3975 .block_erase = erase_chip_block_jedec,
3976 },
3977 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003978 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003979 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003980 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003981 },
3982
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003983 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003984 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003985 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003986 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003987 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003988 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003989 .total_size = 256,
3990 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003991 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00003992 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003993 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003994 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003995 .block_erasers =
3996 {
3997 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003998 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003999 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00004000 {32 * 1024, 1},
4001 {8 * 1024, 2},
4002 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00004003 },
4004 .block_erase = erase_sector_jedec,
4005 }, {
4006 .eraseblocks = { {256 * 1024, 1} },
4007 .block_erase = erase_chip_block_jedec,
4008 },
4009 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00004010 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004011 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004012 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004013 },
4014
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004015 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00004016 .vendor = "Eon",
4017 .name = "EN29LV640B",
4018 .bustype = BUS_PARALLEL,
4019 .manufacture_id = EON_ID,
4020 .model_id = EON_EN29LV640B,
4021 .total_size = 8192,
4022 .page_size = 8192,
4023 .feature_bits = 0,
4024 .tested = TEST_OK_PREW,
4025 .probe = probe_en29lv640b,
4026 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4027 .block_erasers =
4028 {
4029 {
4030 .eraseblocks = {
4031 {8 * 1024, 8},
4032 {64 * 1024, 127},
4033 },
4034 .block_erase = block_erase_en29lv640b,
4035 }, {
4036 .eraseblocks = { {8 * 1024 * 1024, 1} },
4037 .block_erase = block_erase_chip_en29lv640b,
4038 },
4039 },
4040 .write = write_en29lv640b,
4041 .read = read_memmapped,
4042 .voltage = {2700, 3600},
4043 },
4044
4045 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004046 .vendor = "Fujitsu",
4047 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004048 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004049 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004050 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004051 .total_size = 512,
4052 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004053 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004054 .tested = TEST_UNTESTED,
4055 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004056 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004057 .block_erasers =
4058 {
4059 {
4060 .eraseblocks = {
4061 {16 * 1024, 1},
4062 {8 * 1024, 2},
4063 {32 * 1024, 1},
4064 {64 * 1024, 7},
4065 },
Sean Nelson35727f72010-01-28 23:55:12 +00004066 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004067 }, {
4068 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004069 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004070 },
4071 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004072 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004073 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004074 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004075 },
4076
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004077 {
4078 .vendor = "Fujitsu",
4079 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004080 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004081 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004082 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004083 .total_size = 512,
4084 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004085 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004086 .tested = TEST_UNTESTED,
4087 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004088 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004089 .block_erasers =
4090 {
4091 {
4092 .eraseblocks = {
4093 {64 * 1024, 7},
4094 {32 * 1024, 1},
4095 {8 * 1024, 2},
4096 {16 * 1024, 1},
4097 },
Sean Nelson35727f72010-01-28 23:55:12 +00004098 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004099 }, {
4100 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004101 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004102 },
4103 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004104 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004105 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004106 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004107 },
4108
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004109 {
Sean Nelson35727f72010-01-28 23:55:12 +00004110 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004111 .vendor = "Fujitsu",
4112 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004113 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004114 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004115 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004116 .total_size = 512,
4117 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004118 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00004119 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004120 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00004121 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004122 .block_erasers =
4123 {
4124 {
4125 .eraseblocks = {
4126 {16 * 1024, 1},
4127 {8 * 1024, 2},
4128 {32 * 1024, 1},
4129 {64 * 1024, 7},
4130 },
4131 .block_erase = block_erase_m29f400bt,
4132 }, {
4133 .eraseblocks = { {512 * 1024, 1} },
4134 .block_erase = block_erase_chip_m29f400bt,
4135 },
4136 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00004137 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004138 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004139 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00004140 },
4141
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004142 {
4143 .vendor = "Fujitsu",
4144 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004145 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004146 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004147 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004148 .total_size = 512,
4149 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004150 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004151 .tested = TEST_UNTESTED,
4152 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00004153 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00004154 .block_erasers =
4155 {
4156 {
4157 .eraseblocks = {
4158 {64 * 1024, 7},
4159 {32 * 1024, 1},
4160 {8 * 1024, 2},
4161 {16 * 1024, 1},
4162 },
4163 .block_erase = block_erase_m29f400bt,
4164 }, {
4165 .eraseblocks = { {512 * 1024, 1} },
4166 .block_erase = block_erase_chip_m29f400bt,
4167 },
4168 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00004169 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004170 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004171 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00004172 },
4173
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004174 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004175 .vendor = "GigaDevice",
4176 .name = "GD25Q20",
4177 .bustype = BUS_SPI,
4178 .manufacture_id = GIGADEVICE_ID,
4179 .model_id = GIGADEVICE_GD25Q20,
4180 .total_size = 256,
4181 .page_size = 256,
4182 .feature_bits = FEATURE_WRSR_WREN,
4183 .tested = TEST_UNTESTED,
4184 .probe = probe_spi_rdid,
4185 .probe_timing = TIMING_ZERO,
4186 .block_erasers =
4187 {
4188 {
4189 .eraseblocks = { {4 * 1024, 64} },
4190 .block_erase = spi_block_erase_20,
4191 }, {
4192 .eraseblocks = { {32 * 1024, 8} },
4193 .block_erase = spi_block_erase_52,
4194 }, {
4195 .eraseblocks = { {64 * 1024, 4} },
4196 .block_erase = spi_block_erase_d8,
4197 }, {
4198 .eraseblocks = { {256 * 1024, 1} },
4199 .block_erase = spi_block_erase_60,
4200 }, {
4201 .eraseblocks = { {256 * 1024, 1} },
4202 .block_erase = spi_block_erase_c7,
4203 }
4204 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004205 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004206 .unlock = spi_disable_blockprotect,
4207 .write = spi_chip_write_256,
4208 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004209 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004210 },
4211
4212 {
4213 .vendor = "GigaDevice",
4214 .name = "GD25Q40",
4215 .bustype = BUS_SPI,
4216 .manufacture_id = GIGADEVICE_ID,
4217 .model_id = GIGADEVICE_GD25Q40,
4218 .total_size = 512,
4219 .page_size = 256,
4220 .feature_bits = FEATURE_WRSR_WREN,
4221 .tested = TEST_UNTESTED,
4222 .probe = probe_spi_rdid,
4223 .probe_timing = TIMING_ZERO,
4224 .block_erasers =
4225 {
4226 {
4227 .eraseblocks = { {4 * 1024, 128} },
4228 .block_erase = spi_block_erase_20,
4229 }, {
4230 .eraseblocks = { {32 * 1024, 16} },
4231 .block_erase = spi_block_erase_52,
4232 }, {
4233 .eraseblocks = { {64 * 1024, 8} },
4234 .block_erase = spi_block_erase_d8,
4235 }, {
4236 .eraseblocks = { {512 * 1024, 1} },
4237 .block_erase = spi_block_erase_60,
4238 }, {
4239 .eraseblocks = { {512 * 1024, 1} },
4240 .block_erase = spi_block_erase_c7,
4241 }
4242 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004243 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004244 .unlock = spi_disable_blockprotect,
4245 .write = spi_chip_write_256,
4246 .read = spi_chip_read,
Stefan Taunereb582572012-09-21 12:52:50 +00004247 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004248 },
4249
4250 {
4251 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004252 .name = "GD25Q80(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004253 .bustype = BUS_SPI,
4254 .manufacture_id = GIGADEVICE_ID,
4255 .model_id = GIGADEVICE_GD25Q80,
4256 .total_size = 1024,
4257 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004258 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004259 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4260 .tested = TEST_OK_PREW,
4261 .probe = probe_spi_rdid,
4262 .probe_timing = TIMING_ZERO,
4263 .block_erasers =
4264 {
4265 {
4266 .eraseblocks = { {4 * 1024, 256} },
4267 .block_erase = spi_block_erase_20,
4268 }, {
4269 .eraseblocks = { {32 * 1024, 32} },
4270 .block_erase = spi_block_erase_52,
4271 }, {
4272 .eraseblocks = { {64 * 1024, 16} },
4273 .block_erase = spi_block_erase_d8,
4274 }, {
4275 .eraseblocks = { {1024 * 1024, 1} },
4276 .block_erase = spi_block_erase_60,
4277 }, {
4278 .eraseblocks = { {1024 * 1024, 1} },
4279 .block_erase = spi_block_erase_c7,
4280 }
4281 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004282 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004283 .unlock = spi_disable_blockprotect,
4284 .write = spi_chip_write_256,
4285 .read = spi_chip_read,
4286 .voltage = {2700, 3600},
4287 },
4288
4289 {
4290 .vendor = "GigaDevice",
4291 .name = "GD25Q16",
4292 .bustype = BUS_SPI,
4293 .manufacture_id = GIGADEVICE_ID,
4294 .model_id = GIGADEVICE_GD25Q16,
4295 .total_size = 2048,
4296 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004297 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004298 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4299 .tested = TEST_UNTESTED,
4300 .probe = probe_spi_rdid,
4301 .probe_timing = TIMING_ZERO,
4302 .block_erasers =
4303 {
4304 {
4305 .eraseblocks = { {4 * 1024, 512} },
4306 .block_erase = spi_block_erase_20,
4307 }, {
4308 .eraseblocks = { {32 * 1024, 64} },
4309 .block_erase = spi_block_erase_52,
4310 }, {
4311 .eraseblocks = { {64 * 1024, 32} },
4312 .block_erase = spi_block_erase_d8,
4313 }, {
4314 .eraseblocks = { {2 * 1024 * 1024, 1} },
4315 .block_erase = spi_block_erase_60,
4316 }, {
4317 .eraseblocks = { {2 * 1024 * 1024, 1} },
4318 .block_erase = spi_block_erase_c7,
4319 }
4320 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004321 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004322 .unlock = spi_disable_blockprotect,
4323 .write = spi_chip_write_256,
4324 .read = spi_chip_read,
4325 .voltage = {2700, 3600},
4326 },
4327
4328 {
4329 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004330 .name = "GD25Q32(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004331 .bustype = BUS_SPI,
4332 .manufacture_id = GIGADEVICE_ID,
4333 .model_id = GIGADEVICE_GD25Q32,
4334 .total_size = 4096,
4335 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004336 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004337 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4338 .tested = TEST_UNTESTED,
4339 .probe = probe_spi_rdid,
4340 .probe_timing = TIMING_ZERO,
4341 .block_erasers =
4342 {
4343 {
4344 .eraseblocks = { {4 * 1024, 1024} },
4345 .block_erase = spi_block_erase_20,
4346 }, {
4347 .eraseblocks = { {32 * 1024, 128} },
4348 .block_erase = spi_block_erase_52,
4349 }, {
4350 .eraseblocks = { {64 * 1024, 64} },
4351 .block_erase = spi_block_erase_d8,
4352 }, {
4353 .eraseblocks = { {4 * 1024 * 1024, 1} },
4354 .block_erase = spi_block_erase_60,
4355 }, {
4356 .eraseblocks = { {4 * 1024 * 1024, 1} },
4357 .block_erase = spi_block_erase_c7,
4358 }
4359 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004360 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004361 .unlock = spi_disable_blockprotect,
4362 .write = spi_chip_write_256,
4363 .read = spi_chip_read,
4364 .voltage = {2700, 3600},
4365 },
4366
4367 {
4368 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004369 .name = "GD25Q64(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004370 .bustype = BUS_SPI,
4371 .manufacture_id = GIGADEVICE_ID,
4372 .model_id = GIGADEVICE_GD25Q64,
4373 .total_size = 8192,
4374 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004375 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004376 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00004377 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004378 .probe = probe_spi_rdid,
4379 .probe_timing = TIMING_ZERO,
4380 .block_erasers =
4381 {
4382 {
4383 .eraseblocks = { {4 * 1024, 2048} },
4384 .block_erase = spi_block_erase_20,
4385 }, {
4386 .eraseblocks = { {32 * 1024, 256} },
4387 .block_erase = spi_block_erase_52,
4388 }, {
4389 .eraseblocks = { {64 * 1024, 128} },
4390 .block_erase = spi_block_erase_d8,
4391 }, {
4392 .eraseblocks = { {8 * 1024 * 1024, 1} },
4393 .block_erase = spi_block_erase_60,
4394 }, {
4395 .eraseblocks = { {8 * 1024 * 1024, 1} },
4396 .block_erase = spi_block_erase_c7,
4397 }
4398 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004399 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004400 .unlock = spi_disable_blockprotect,
4401 .write = spi_chip_write_256,
4402 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004403 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004404 },
4405
4406 {
4407 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004408 .name = "GD25Q128B",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004409 .bustype = BUS_SPI,
4410 .manufacture_id = GIGADEVICE_ID,
4411 .model_id = GIGADEVICE_GD25Q128,
4412 .total_size = 16384,
4413 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004414 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004415 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4416 .tested = TEST_UNTESTED,
4417 .probe = probe_spi_rdid,
4418 .probe_timing = TIMING_ZERO,
4419 .block_erasers =
4420 {
4421 {
4422 .eraseblocks = { {4 * 1024, 4096} },
4423 .block_erase = spi_block_erase_20,
4424 }, {
4425 .eraseblocks = { {32 * 1024, 512} },
4426 .block_erase = spi_block_erase_52,
4427 }, {
4428 .eraseblocks = { {64 * 1024, 256} },
4429 .block_erase = spi_block_erase_d8,
4430 }, {
4431 .eraseblocks = { {16 * 1024 * 1024, 1} },
4432 .block_erase = spi_block_erase_60,
4433 }, {
4434 .eraseblocks = { {16 * 1024 * 1024, 1} },
4435 .block_erase = spi_block_erase_c7,
4436 }
4437 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004438 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004439 .unlock = spi_disable_blockprotect,
4440 .write = spi_chip_write_256,
4441 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004442 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004443 },
4444
4445 {
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004446 .vendor = "GigaDevice",
4447 .name = "GD25LQ32",
4448 .bustype = BUS_SPI,
4449 .manufacture_id = GIGADEVICE_ID,
4450 .model_id = GIGADEVICE_GD25LQ32,
4451 .total_size = 4096,
4452 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004453 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
4454 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004455 .tested = TEST_OK_PREW,
4456 .probe = probe_spi_rdid,
4457 .probe_timing = TIMING_ZERO,
4458 .block_erasers =
4459 {
4460 {
4461 .eraseblocks = { {4 * 1024, 1024} },
4462 .block_erase = spi_block_erase_20,
4463 }, {
4464 .eraseblocks = { {32 * 1024, 128} },
4465 .block_erase = spi_block_erase_52,
4466 }, {
4467 .eraseblocks = { {64 * 1024, 64} },
4468 .block_erase = spi_block_erase_d8,
4469 }, {
4470 .eraseblocks = { {4 * 1024 * 1024, 1} },
4471 .block_erase = spi_block_erase_60,
4472 }, {
4473 .eraseblocks = { {4 * 1024 * 1024, 1} },
4474 .block_erase = spi_block_erase_c7,
4475 }
4476 },
Stefan Tauner278ba6e2013-06-28 21:28:27 +00004477 .printlock = spi_prettyprint_status_register_default_bp4,
4478 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004479 .unlock = spi_disable_blockprotect,
4480 .write = spi_chip_write_256,
4481 .read = spi_chip_read,
4482 .voltage = {1700, 1950},
4483 },
4484
4485 {
David Borgc96a8bd2010-06-21 16:12:22 +00004486 .vendor = "Hyundai",
4487 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004488 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004489 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004490 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00004491 .total_size = 256,
4492 .page_size = 256 * 1024,
4493 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004494 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00004495 .probe = probe_jedec,
4496 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4497 .block_erasers =
4498 {
4499 {
4500 .eraseblocks = {
4501 {64 * 1024, 3},
4502 {32 * 1024, 1},
4503 {8 * 1024, 2},
4504 {16 * 1024, 1},
4505 },
4506 .block_erase = erase_sector_jedec,
4507 }, {
4508 .eraseblocks = { {256 * 1024, 1} },
4509 .block_erase = erase_chip_block_jedec,
4510 },
4511 },
4512 .write = write_jedec_1,
4513 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004514 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004515 },
4516
4517 {
4518 .vendor = "Hyundai",
4519 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004520 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004521 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004522 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00004523 .total_size = 256,
4524 .page_size = 256 * 1024,
4525 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
4526 .tested = TEST_UNTESTED,
4527 .probe = probe_jedec,
4528 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4529 .block_erasers =
4530 {
4531 {
4532 .eraseblocks = {
4533 {16 * 1024, 1},
4534 {8 * 1024, 2},
4535 {32 * 1024, 1},
4536 {64 * 1024, 3},
4537 },
4538 .block_erase = erase_sector_jedec,
4539 }, {
4540 .eraseblocks = { {256 * 1024, 1} },
4541 .block_erase = erase_chip_block_jedec,
4542 },
4543 },
4544 .write = write_jedec_1,
4545 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004546 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004547 },
4548
4549 {
Joshua Roysf1324e02010-09-16 00:51:51 +00004550 .vendor = "Hyundai",
4551 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004552 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00004553 .manufacture_id = HYUNDAI_ID,
4554 .model_id = HYUNDAI_HY29F040A,
4555 .total_size = 512,
4556 .page_size = 64 * 1024,
4557 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4558 .tested = TEST_UNTESTED,
4559 .probe = probe_jedec,
4560 .probe_timing = TIMING_ZERO,
4561 .block_erasers =
4562 {
4563 {
4564 .eraseblocks = { {64 * 1024, 8} },
4565 .block_erase = erase_sector_jedec,
4566 }, {
4567 .eraseblocks = { {512 * 1024, 1} },
4568 .block_erase = erase_chip_block_jedec,
4569 },
4570 },
4571 .write = write_jedec_1,
4572 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004573 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00004574 },
4575
4576 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004577 .vendor = "Intel",
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00004578 .name = "25F160S33B8",
4579 .bustype = BUS_SPI,
4580 .manufacture_id = INTEL_ID,
4581 .model_id = INTEL_25F160S33B8,
4582 .total_size = 2048,
4583 .page_size = 256,
4584 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4585 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4586 .tested = TEST_UNTESTED,
4587 .probe = probe_spi_rdid,
4588 .probe_timing = TIMING_ZERO,
4589 .block_erasers =
4590 {
4591 {
4592 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4593 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4594 * have no effect on the memory contents, but sets a flag in the SR.
4595 .eraseblocks = {
4596 {8 * 1024, 8},
4597 {64 * 1024, 31} // inaccessible
4598 },
4599 .block_erase = spi_block_erase_40,
4600 }, { */
4601 .eraseblocks = { {64 * 1024, 32} },
4602 .block_erase = spi_block_erase_d8,
4603 }, {
4604 .eraseblocks = { {2 * 1024 * 1024, 1} },
4605 .block_erase = spi_block_erase_c7,
4606 }
4607 },
4608 .printlock = spi_prettyprint_status_register_s33,
4609 .unlock = spi_disable_blockprotect_s33,
4610 .write = spi_chip_write_256,
4611 .read = spi_chip_read, /* also fast read 0x0B */
4612 .voltage = {2700, 3600},
4613 },
4614
4615 {
4616 .vendor = "Intel",
4617 .name = "25F160S33T8",
4618 .bustype = BUS_SPI,
4619 .manufacture_id = INTEL_ID,
4620 .model_id = INTEL_25F160S33T8,
4621 .total_size = 2048,
4622 .page_size = 256,
4623 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4624 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4625 .tested = TEST_UNTESTED,
4626 .probe = probe_spi_rdid,
4627 .probe_timing = TIMING_ZERO,
4628 .block_erasers =
4629 {
4630 {
4631 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4632 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4633 * have no effect on the memory contents, but sets a flag in the SR.
4634 .eraseblocks = {
4635 {64 * 1024, 31}, // inaccessible
4636 {8 * 1024, 8}
4637 },
4638 .block_erase = spi_block_erase_40,
4639 }, { */
4640 .eraseblocks = { {64 * 1024, 32} },
4641 .block_erase = spi_block_erase_d8,
4642 }, {
4643 .eraseblocks = { {2 * 1024 * 1024, 1} },
4644 .block_erase = spi_block_erase_c7,
4645 }
4646 },
4647 .printlock = spi_prettyprint_status_register_s33,
4648 .unlock = spi_disable_blockprotect_s33,
4649 .write = spi_chip_write_256,
4650 .read = spi_chip_read, /* also fast read 0x0B */
4651 .voltage = {2700, 3600},
4652 },
4653
4654 {
4655 .vendor = "Intel",
4656 .name = "25F320S33B8",
4657 .bustype = BUS_SPI,
4658 .manufacture_id = INTEL_ID,
4659 .model_id = INTEL_25F320S33B8,
4660 .total_size = 4096,
4661 .page_size = 256,
4662 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4663 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4664 .tested = TEST_UNTESTED,
4665 .probe = probe_spi_rdid,
4666 .probe_timing = TIMING_ZERO,
4667 .block_erasers =
4668 {
4669 {
4670 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4671 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4672 * have no effect on the memory contents, but sets a flag in the SR.
4673 .eraseblocks = {
4674 {8 * 1024, 8},
4675 {64 * 1024, 63} // inaccessible
4676 },
4677 .block_erase = spi_block_erase_40,
4678 }, { */
4679 .eraseblocks = { {64 * 1024, 64} },
4680 .block_erase = spi_block_erase_d8,
4681 }, {
4682 .eraseblocks = { {4 * 1024 * 1024, 1} },
4683 .block_erase = spi_block_erase_c7,
4684 }
4685 },
4686 .printlock = spi_prettyprint_status_register_s33,
4687 .unlock = spi_disable_blockprotect_s33,
4688 .write = spi_chip_write_256,
4689 .read = spi_chip_read, /* also fast read 0x0B */
4690 .voltage = {2700, 3600},
4691 },
4692
4693 {
4694 .vendor = "Intel",
4695 .name = "25F320S33T8",
4696 .bustype = BUS_SPI,
4697 .manufacture_id = INTEL_ID,
4698 .model_id = INTEL_25F320S33T8,
4699 .total_size = 4096,
4700 .page_size = 256,
4701 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4702 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4703 .tested = TEST_UNTESTED,
4704 .probe = probe_spi_rdid,
4705 .probe_timing = TIMING_ZERO,
4706 .block_erasers =
4707 {
4708 {
4709 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4710 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4711 * have no effect on the memory contents, but sets a flag in the SR.
4712 .eraseblocks = {
4713 {64 * 1024, 63}, // inaccessible
4714 {8 * 1024, 8}
4715 },
4716 .block_erase = spi_block_erase_40,
4717 }, { */
4718 .eraseblocks = { {64 * 1024, 64} },
4719 .block_erase = spi_block_erase_d8,
4720 }, {
4721 .eraseblocks = { {4 * 1024 * 1024, 1} },
4722 .block_erase = spi_block_erase_c7,
4723 }
4724 },
4725 .printlock = spi_prettyprint_status_register_s33,
4726 .unlock = spi_disable_blockprotect_s33,
4727 .write = spi_chip_write_256,
4728 .read = spi_chip_read, /* also fast read 0x0B */
4729 .voltage = {2700, 3600},
4730 },
4731
4732 {
4733 .vendor = "Intel",
4734 .name = "25F640S33B8",
4735 .bustype = BUS_SPI,
4736 .manufacture_id = INTEL_ID,
4737 .model_id = INTEL_25F640S33B8,
4738 .total_size = 8192,
4739 .page_size = 256,
4740 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4741 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4742 .tested = TEST_UNTESTED,
4743 .probe = probe_spi_rdid,
4744 .probe_timing = TIMING_ZERO,
4745 .block_erasers =
4746 {
4747 {
4748 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4749 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4750 * have no effect on the memory contents, but sets a flag in the SR.
4751 .eraseblocks = {
4752 {8 * 1024, 8},
4753 {64 * 1024, 127} // inaccessible
4754 },
4755 .block_erase = spi_block_erase_40,
4756 }, { */
4757 .eraseblocks = { {64 * 1024, 128} },
4758 .block_erase = spi_block_erase_d8,
4759 }, {
4760 .eraseblocks = { {8 * 1024 * 1024, 1} },
4761 .block_erase = spi_block_erase_c7,
4762 }
4763 },
4764 .printlock = spi_prettyprint_status_register_s33,
4765 .unlock = spi_disable_blockprotect_s33,
4766 .write = spi_chip_write_256,
4767 .read = spi_chip_read, /* also fast read 0x0B */
4768 .voltage = {2700, 3600},
4769 },
4770
4771 {
4772 .vendor = "Intel",
4773 .name = "25F640S33T8",
4774 .bustype = BUS_SPI,
4775 .manufacture_id = INTEL_ID,
4776 .model_id = INTEL_25F640S33T8,
4777 .total_size = 8192,
4778 .page_size = 256,
4779 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4780 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4781 .tested = TEST_UNTESTED,
4782 .probe = probe_spi_rdid,
4783 .probe_timing = TIMING_ZERO,
4784 .block_erasers =
4785 {
4786 {
4787 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4788 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4789 * have no effect on the memory contents, but sets a flag in the SR.
4790 .eraseblocks = {
4791 {64 * 1024, 127}, // inaccessible
4792 {8 * 1024, 8}
4793 },
4794 .block_erase = spi_block_erase_40,
4795 }, { */
4796 .eraseblocks = { {64 * 1024, 128} },
4797 .block_erase = spi_block_erase_d8,
4798 }, {
4799 .eraseblocks = { {8 * 1024 * 1024, 1} },
4800 .block_erase = spi_block_erase_c7,
4801 }
4802 },
4803 .printlock = spi_prettyprint_status_register_s33,
4804 .unlock = spi_disable_blockprotect_s33,
4805 .write = spi_chip_write_256,
4806 .read = spi_chip_read, /* also fast read 0x0B */
4807 .voltage = {2700, 3600},
4808 },
4809
4810 {
4811 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004812 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004813 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004814 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004815 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004816 .total_size = 128,
4817 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00004818 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004819 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004820 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004821 .block_erasers =
4822 {
4823 {
4824 .eraseblocks = {
4825 {8 * 1024, 1},
4826 {4 * 1024, 2},
4827 {112 * 1024, 1},
4828 },
Sean Nelson28accc22010-03-19 18:47:06 +00004829 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004830 },
4831 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004832 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004833 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004834 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004835 },
4836
4837 {
4838 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004839 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004840 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004841 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004842 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004843 .total_size = 128,
4844 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004845 .tested = TEST_OK_PR,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004846 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004847 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004848 .block_erasers =
4849 {
4850 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004851 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00004852 {112 * 1024, 1},
4853 {4 * 1024, 2},
4854 {8 * 1024, 1},
4855 },
Sean Nelson28accc22010-03-19 18:47:06 +00004856 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004857 },
4858 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004859 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004860 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004861 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004862 },
4863
4864 {
4865 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004866 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004867 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004868 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004869 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004870 .total_size = 256,
4871 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004872 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004873 .probe = probe_82802ab,
4874 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4875 .block_erasers =
4876 {
4877 {
4878 .eraseblocks = {
4879 {128 * 1024, 1},
4880 {96 * 1024, 1},
4881 {8 * 1024, 2},
4882 {16 * 1024, 1},
4883 },
4884 .block_erase = erase_block_82802ab,
4885 },
4886 },
4887 .write = write_82802ab,
4888 .read = read_memmapped,
4889 },
4890
4891 {
4892 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004893 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004894 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004895 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004896 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004897 .total_size = 512,
4898 .page_size = 256,
4899 .tested = TEST_UNTESTED,
4900 .probe = probe_82802ab,
4901 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004902 .block_erasers =
4903 {
4904 {
4905 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004906 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004907 },
4908 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004909 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004910 .write = write_82802ab,
4911 .read = read_memmapped,
4912 },
4913
4914 {
4915 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004916 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004917 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004918 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004919 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004920 .total_size = 512,
4921 .page_size = 128 * 1024, /* maximal block size */
4922 .tested = TEST_UNTESTED,
4923 .probe = probe_82802ab,
4924 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4925 .block_erasers =
4926 {
4927 {
4928 .eraseblocks = {
4929 {16 * 1024, 1},
4930 {8 * 1024, 2},
4931 {96 * 1024, 1},
4932 {128 * 1024, 3},
4933 },
4934 .block_erase = erase_block_82802ab,
4935 },
4936 },
4937 .write = write_82802ab,
4938 .read = read_memmapped,
4939 },
4940
4941 {
4942 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004943 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004944 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004945 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004946 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004947 .total_size = 512,
4948 .page_size = 128 * 1024, /* maximal block size */
4949 .tested = TEST_UNTESTED,
4950 .probe = probe_82802ab,
4951 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4952 .block_erasers =
4953 {
4954 {
4955 .eraseblocks = {
4956 {128 * 1024, 3},
4957 {96 * 1024, 1},
4958 {8 * 1024, 2},
4959 {16 * 1024, 1},
4960 },
4961 .block_erase = erase_block_82802ab,
4962 },
4963 },
4964 .write = write_82802ab,
4965 .read = read_memmapped,
4966 },
4967
4968 {
4969 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004970 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004971 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004972 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004973 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004974 .total_size = 512,
4975 .page_size = 128 * 1024, /* maximal block size */
4976 .feature_bits = FEATURE_ADDR_SHIFTED,
4977 .tested = TEST_UNTESTED,
4978 .probe = probe_82802ab,
4979 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4980 .block_erasers =
4981 {
4982 {
4983 .eraseblocks = {
4984 {16 * 1024, 1},
4985 {8 * 1024, 2},
4986 {96 * 1024, 1},
4987 {128 * 1024, 3},
4988 },
4989 .block_erase = erase_block_82802ab,
4990 },
4991 },
4992 .write = write_82802ab,
4993 .read = read_memmapped,
4994 },
4995
4996 {
4997 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004998 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004999 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00005000 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005001 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00005002 .total_size = 512,
5003 .page_size = 128 * 1024, /* maximal block size */
5004 .feature_bits = FEATURE_ADDR_SHIFTED,
5005 .tested = TEST_UNTESTED,
5006 .probe = probe_82802ab,
5007 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5008 .block_erasers =
5009 {
5010 {
5011 .eraseblocks = {
5012 {128 * 1024, 3},
5013 {96 * 1024, 1},
5014 {8 * 1024, 2},
5015 {16 * 1024, 1},
5016 },
5017 .block_erase = erase_block_82802ab,
5018 },
5019 },
5020 .write = write_82802ab,
5021 .read = read_memmapped,
5022 },
5023
5024 {
5025 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005026 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005027 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005028 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005029 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005030 .total_size = 512,
5031 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005032 .feature_bits = FEATURE_REGISTERMAP,
Stefan Taunerd06d9412011-06-12 19:47:55 +00005033 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005034 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005035 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005036 .block_erasers =
5037 {
5038 {
5039 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00005040 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005041 },
5042 },
Sean Nelson28accc22010-03-19 18:47:06 +00005043 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005044 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005045 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005046 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005047 },
5048
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005049 {
5050 .vendor = "Intel",
5051 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005052 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005053 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005054 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005055 .total_size = 1024,
5056 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005057 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005058 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005059 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005060 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005061 .block_erasers =
5062 {
5063 {
5064 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00005065 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005066 },
5067 },
Sean Nelson28accc22010-03-19 18:47:06 +00005068 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005069 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005070 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005071 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005072 },
5073
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005074 {
5075 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005076 .name = "MX25L512(E)/MX25V512(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005077 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005078 .manufacture_id = MACRONIX_ID,
5079 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005080 .total_size = 64,
5081 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005082 /* MX25L512E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005083 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005084 .tested = TEST_UNTESTED,
5085 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005086 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005087 .block_erasers =
5088 {
5089 {
5090 .eraseblocks = { {4 * 1024, 16} },
5091 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005092 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005093 .eraseblocks = { {64 * 1024, 1} },
5094 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005095 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005096 .eraseblocks = { {64 * 1024, 1} },
5097 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005098 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005099 .eraseblocks = { {64 * 1024, 1} },
5100 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005101 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005102 .eraseblocks = { {64 * 1024, 1} },
5103 .block_erase = spi_block_erase_c7,
5104 },
5105 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005106 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005107 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005108 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005109 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L512E supports dual I/O */
5110 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V512(C) */
FENG yu ningff692fb2008-12-08 18:15:10 +00005111 },
5112
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005113 {
5114 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005115 .name = "MX25L1005(C)/MX25L1006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005116 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005117 .manufacture_id = MACRONIX_ID,
5118 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005119 .total_size = 128,
5120 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005121 /* MX25L1006E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005122 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00005123 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005124 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005125 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005126 .block_erasers =
5127 {
5128 {
5129 .eraseblocks = { {4 * 1024, 32} },
5130 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005131 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005132 .eraseblocks = { {64 * 1024, 2} },
5133 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005134 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005135 .eraseblocks = { {128 * 1024, 1} },
5136 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005137 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005138 .eraseblocks = { {128 * 1024, 1} },
5139 .block_erase = spi_block_erase_c7,
5140 },
5141 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005142 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005143 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005144 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005145 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L1006E supports dual I/O */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005146 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005147 },
5148
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005149 {
5150 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005151 .name = "MX25L2005(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005152 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005153 .manufacture_id = MACRONIX_ID,
5154 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005155 .total_size = 256,
5156 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005157 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005158 .tested = TEST_UNTESTED,
5159 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005160 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005161 .block_erasers =
5162 {
5163 {
5164 .eraseblocks = { {4 * 1024, 64} },
5165 .block_erase = spi_block_erase_20,
5166 }, {
5167 .eraseblocks = { {64 * 1024, 4} },
5168 .block_erase = spi_block_erase_52,
5169 }, {
5170 .eraseblocks = { {64 * 1024, 4} },
5171 .block_erase = spi_block_erase_d8,
5172 }, {
5173 .eraseblocks = { {256 * 1024, 1} },
5174 .block_erase = spi_block_erase_60,
5175 }, {
5176 .eraseblocks = { {256 * 1024, 1} },
5177 .block_erase = spi_block_erase_c7,
5178 },
5179 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005180 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005181 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005182 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005183 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005184 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005185 },
5186
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005187 {
5188 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005189 .name = "MX25L4005(A/C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005190 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005191 .manufacture_id = MACRONIX_ID,
5192 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005193 .total_size = 512,
5194 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005195 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00005196 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005197 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005198 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005199 .block_erasers =
5200 {
5201 {
5202 .eraseblocks = { {4 * 1024, 128} },
5203 .block_erase = spi_block_erase_20,
5204 }, {
5205 .eraseblocks = { {64 * 1024, 8} },
5206 .block_erase = spi_block_erase_52,
5207 }, {
5208 .eraseblocks = { {64 * 1024, 8} },
5209 .block_erase = spi_block_erase_d8,
5210 }, {
5211 .eraseblocks = { {512 * 1024, 1} },
5212 .block_erase = spi_block_erase_60,
5213 }, {
5214 .eraseblocks = { {512 * 1024, 1} },
5215 .block_erase = spi_block_erase_c7,
5216 },
5217 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005218 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005219 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005220 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005221 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005222 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005223 },
5224
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005225 {
5226 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005227 .name = "MX25L8005/MX25V8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005228 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005229 .manufacture_id = MACRONIX_ID,
5230 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005231 .total_size = 1024,
5232 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005233 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00005234 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005235 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005236 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005237 .block_erasers =
5238 {
5239 {
5240 .eraseblocks = { {4 * 1024, 256} },
5241 .block_erase = spi_block_erase_20,
5242 }, {
5243 .eraseblocks = { {64 * 1024, 16} },
5244 .block_erase = spi_block_erase_52,
5245 }, {
5246 .eraseblocks = { {64 * 1024, 16} },
5247 .block_erase = spi_block_erase_d8,
5248 }, {
5249 .eraseblocks = { {1024 * 1024, 1} },
5250 .block_erase = spi_block_erase_60,
5251 }, {
5252 .eraseblocks = { {1024 * 1024, 1} },
5253 .block_erase = spi_block_erase_c7,
5254 },
5255 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005256 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005257 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005258 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005259 .read = spi_chip_read, /* Fast read (0x0B) supported */
5260 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V8005 */
FENG yu ningff692fb2008-12-08 18:15:10 +00005261 },
5262
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005263 {
5264 .vendor = "Macronix",
5265 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005266 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005267 .manufacture_id = MACRONIX_ID,
5268 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005269 .total_size = 2048,
5270 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005271 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00005272 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005273 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005274 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005275 .block_erasers =
5276 {
5277 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005278 .eraseblocks = { {64 * 1024, 32} },
5279 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005280 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005281 .eraseblocks = { {64 * 1024, 32} },
5282 .block_erase = spi_block_erase_d8,
5283 }, {
5284 .eraseblocks = { {2 * 1024 * 1024, 1} },
5285 .block_erase = spi_block_erase_60,
5286 }, {
5287 .eraseblocks = { {2 * 1024 * 1024, 1} },
5288 .block_erase = spi_block_erase_c7,
5289 },
5290 },
5291 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
5292 .unlock = spi_disable_blockprotect,
5293 .write = spi_chip_write_256,
5294 .read = spi_chip_read, /* Fast read (0x0B) supported */
5295 .voltage = {2700, 3600},
5296 },
5297
5298 {
5299 .vendor = "Macronix",
5300 .name = "MX25L1605A/MX25L1606E",
5301 .bustype = BUS_SPI,
5302 .manufacture_id = MACRONIX_ID,
5303 .model_id = MACRONIX_MX25L1605,
5304 .total_size = 2048,
5305 .page_size = 256,
5306 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L1606E only) */
5307 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5308 .tested = TEST_OK_PREW,
5309 .probe = probe_spi_rdid,
5310 .probe_timing = TIMING_ZERO,
5311 .block_erasers =
5312 {
5313 {
5314 .eraseblocks = { {4 * 1024, 512} },
5315 .block_erase = spi_block_erase_20,
5316 }, {
5317 .eraseblocks = { {64 * 1024, 32} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005318 .block_erase = spi_block_erase_52,
5319 }, {
5320 .eraseblocks = { {64 * 1024, 32} },
5321 .block_erase = spi_block_erase_d8,
5322 }, {
5323 .eraseblocks = { {2 * 1024 * 1024, 1} },
5324 .block_erase = spi_block_erase_60,
5325 }, {
5326 .eraseblocks = { {2 * 1024 * 1024, 1} },
5327 .block_erase = spi_block_erase_c7,
5328 },
5329 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005330 .printlock = spi_prettyprint_status_register_default_bp3, /* MX25L1605A bp2 only */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005331 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005332 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005333 .read = spi_chip_read, /* Fast read (0x0B) supported */
5334 .voltage = {2700, 3600},
5335 },
5336
5337 {
5338 .vendor = "Macronix",
5339 .name = "MX25L1605D/MX25L1608D",
5340 .bustype = BUS_SPI,
5341 .manufacture_id = MACRONIX_ID,
5342 .model_id = MACRONIX_MX25L1605,
5343 .total_size = 2048,
5344 .page_size = 256,
5345 .feature_bits = FEATURE_WRSR_WREN,
5346 .tested = TEST_OK_PREW,
5347 .probe = probe_spi_rdid,
5348 .probe_timing = TIMING_ZERO,
5349 .block_erasers =
5350 {
5351 {
5352 .eraseblocks = { {4 * 1024, 512} },
5353 .block_erase = spi_block_erase_20,
5354 }, {
5355 .eraseblocks = { {64 * 1024, 32} },
5356 .block_erase = spi_block_erase_d8,
5357 }, {
5358 .eraseblocks = { {2 * 1024 * 1024, 1} },
5359 .block_erase = spi_block_erase_60,
5360 }, {
5361 .eraseblocks = { {2 * 1024 * 1024, 1} },
5362 .block_erase = spi_block_erase_c7,
5363 },
5364 },
5365 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: Continously Program (CP) mode */
5366 .unlock = spi_disable_blockprotect,
5367 .write = spi_chip_write_256,
5368 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005369 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005370 },
5371
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005372 {
5373 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005374 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005375 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005376 .manufacture_id = MACRONIX_ID,
5377 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005378 .total_size = 2048,
5379 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005380 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5381 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005382 .tested = TEST_UNTESTED,
5383 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005384 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005385 .block_erasers =
5386 {
5387 {
5388 .eraseblocks = { {4 * 1024, 512} },
5389 .block_erase = spi_block_erase_20,
5390 }, {
5391 .eraseblocks = { {64 * 1024, 32} },
5392 .block_erase = spi_block_erase_d8,
5393 }, {
5394 .eraseblocks = { {2 * 1024 * 1024, 1} },
5395 .block_erase = spi_block_erase_60,
5396 }, {
5397 .eraseblocks = { {2 * 1024 * 1024, 1} },
5398 .block_erase = spi_block_erase_c7,
5399 }
5400 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005401 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005402 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005403 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005404 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005405 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005406 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00005407
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005408 {
5409 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00005410 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005411 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005412 .manufacture_id = MACRONIX_ID,
5413 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005414 .total_size = 2048,
5415 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005416 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5417 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005418 .tested = TEST_UNTESTED,
5419 .probe = probe_spi_rdid,
5420 .probe_timing = TIMING_ZERO,
5421 .block_erasers =
5422 {
5423 {
5424 .eraseblocks = { {4 * 1024, 512} },
5425 .block_erase = spi_block_erase_20,
5426 }, {
5427 .eraseblocks = { {64 * 1024, 32} },
5428 .block_erase = spi_block_erase_d8,
5429 }, {
5430 .eraseblocks = { {2 * 1024 * 1024, 1} },
5431 .block_erase = spi_block_erase_60,
5432 }, {
5433 .eraseblocks = { {2 * 1024 * 1024, 1} },
5434 .block_erase = spi_block_erase_c7,
5435 }
5436 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005437 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Stephan Guilloux3611b802010-09-13 19:59:28 +00005438 .unlock = spi_disable_blockprotect,
5439 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005440 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00005441 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00005442 },
5443
5444 {
5445 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005446 .name = "MX25L3205(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005447 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005448 .manufacture_id = MACRONIX_ID,
5449 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005450 .total_size = 4096,
5451 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005452 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00005453 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005454 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005455 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005456 .block_erasers =
5457 {
5458 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005459 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005460 .block_erase = spi_block_erase_20,
5461 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005462 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005463 .block_erase = spi_block_erase_d8,
5464 }, {
5465 .eraseblocks = { {4 * 1024 * 1024, 1} },
5466 .block_erase = spi_block_erase_60,
5467 }, {
5468 .eraseblocks = { {4 * 1024 * 1024, 1} },
5469 .block_erase = spi_block_erase_c7,
5470 },
5471 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005472 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005473 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005474 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005475 .read = spi_chip_read, /* Fast read (0x0B) supported */
5476 .voltage = {2700, 3600},
5477 },
5478
5479 {
5480 .vendor = "Macronix",
5481 .name = "MX25L3205D/MX25L3208D",
5482 .bustype = BUS_SPI,
5483 .manufacture_id = MACRONIX_ID,
5484 .model_id = MACRONIX_MX25L3205,
5485 .total_size = 4096,
5486 .page_size = 256,
5487 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5488 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5489 .tested = TEST_OK_PREW,
5490 .probe = probe_spi_rdid,
5491 .probe_timing = TIMING_ZERO,
5492 .block_erasers =
5493 {
5494 {
5495 .eraseblocks = { {4 * 1024, 1024} },
5496 .block_erase = spi_block_erase_20,
5497 }, {
5498 .eraseblocks = { {64 * 1024, 64} },
5499 .block_erase = spi_block_erase_d8,
5500 }, {
5501 .eraseblocks = { {4 * 1024 * 1024, 1} },
5502 .block_erase = spi_block_erase_60,
5503 }, {
5504 .eraseblocks = { {4 * 1024 * 1024, 1} },
5505 .block_erase = spi_block_erase_c7,
5506 },
5507 },
5508 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: CP mode */
5509 .unlock = spi_disable_blockprotect,
5510 .write = spi_chip_write_256,
5511 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
5512 .voltage = {2700, 3600},
5513 },
5514
5515 {
5516 .vendor = "Macronix",
5517 .name = "MX25L3206E",
5518 .bustype = BUS_SPI,
5519 .manufacture_id = MACRONIX_ID,
5520 .model_id = MACRONIX_MX25L3205,
5521 .total_size = 4096,
5522 .page_size = 256,
5523 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5524 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5525 .tested = TEST_OK_PREW,
5526 .probe = probe_spi_rdid,
5527 .probe_timing = TIMING_ZERO,
5528 .block_erasers =
5529 {
5530 {
5531 .eraseblocks = { {4 * 1024, 1024} },
5532 .block_erase = spi_block_erase_20,
5533 }, {
5534 .eraseblocks = { {64 * 1024, 64} },
5535 .block_erase = spi_block_erase_d8,
5536 }, {
5537 .eraseblocks = { {64 * 1024, 64} },
5538 .block_erase = spi_block_erase_52,
5539 }, {
5540 .eraseblocks = { {4 * 1024 * 1024, 1} },
5541 .block_erase = spi_block_erase_60,
5542 }, {
5543 .eraseblocks = { {4 * 1024 * 1024, 1} },
5544 .block_erase = spi_block_erase_c7,
5545 },
5546 },
5547 .printlock = spi_prettyprint_status_register_default_bp3,
5548 .unlock = spi_disable_blockprotect,
5549 .write = spi_chip_write_256,
5550 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005551 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005552 },
5553
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005554 {
5555 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005556 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005557 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005558 .manufacture_id = MACRONIX_ID,
5559 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005560 .total_size = 4096,
5561 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005562 /* OTP: 256B total; enter 0xB1, exit 0xC1 */
5563 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005564 .tested = TEST_UNTESTED,
5565 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005566 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005567 .block_erasers =
5568 {
5569 {
5570 .eraseblocks = { {4 * 1024, 1024} },
5571 .block_erase = spi_block_erase_20,
5572 }, {
5573 .eraseblocks = { {64 * 1024, 64} },
5574 .block_erase = spi_block_erase_d8,
5575 }, {
5576 .eraseblocks = { {4 * 1024 * 1024, 1} },
5577 .block_erase = spi_block_erase_60,
5578 }, {
5579 .eraseblocks = { {4 * 1024 * 1024, 1} },
5580 .block_erase = spi_block_erase_c7,
5581 }
5582 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005583 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005584 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005585 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005586 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005587 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005588 },
5589
5590 {
5591 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005592 .name = "MX25L6405(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005593 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005594 .manufacture_id = MACRONIX_ID,
5595 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005596 .total_size = 8192,
5597 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005598 /* MX25L6405D has 64B of OTP; enter 0xB1, exit 0xC1 */
5599 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Paul Menzelac427b22012-02-16 21:07:07 +00005600 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005602 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005603 .block_erasers =
5604 {
5605 {
5606 .eraseblocks = { {64 * 1024, 128} },
5607 .block_erase = spi_block_erase_20,
5608 }, {
5609 .eraseblocks = { {64 * 1024, 128} },
5610 .block_erase = spi_block_erase_d8,
5611 }, {
5612 .eraseblocks = { {8 * 1024 * 1024, 1} },
5613 .block_erase = spi_block_erase_60,
5614 }, {
5615 .eraseblocks = { {8 * 1024 * 1024, 1} },
5616 .block_erase = spi_block_erase_c7,
5617 }
5618 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005619 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 has different meanings */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005620 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005621 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005622 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005623 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005624 },
5625
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005626 {
5627 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005628 .name = "MX25L6406E/MX25L6436E",
5629 .bustype = BUS_SPI,
5630 .manufacture_id = MACRONIX_ID,
5631 .model_id = MACRONIX_MX25L6405,
5632 .total_size = 8192,
5633 .page_size = 256,
5634 /* OTP: 06E 64B/36E 512B total; enter 0xB1, exit 0xC1 */
5635 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5636 .tested = TEST_OK_PREW,
5637 .probe = probe_spi_rdid,
5638 .probe_timing = TIMING_ZERO,
5639 .block_erasers =
5640 {
5641 {
5642 .eraseblocks = { {4 * 1024, 2048} },
5643 .block_erase = spi_block_erase_20,
5644 }, {
5645 .eraseblocks = { {64 * 1024, 128} },
5646 .block_erase = spi_block_erase_d8,
5647 }, {
5648 .eraseblocks = { {8 * 1024 * 1024, 1} },
5649 .block_erase = spi_block_erase_60,
5650 }, {
5651 .eraseblocks = { {8 * 1024 * 1024, 1} },
5652 .block_erase = spi_block_erase_c7,
5653 }
5654 },
5655 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 for 36E is quad enable */
5656 .unlock = spi_disable_blockprotect,
5657 .write = spi_chip_write_256,
5658 .read = spi_chip_read,
5659 .voltage = {2700, 3600},
5660 },
5661
5662 {
5663 .vendor = "Macronix",
5664 .name = "MX25L6445E",
5665 .bustype = BUS_SPI,
5666 .manufacture_id = MACRONIX_ID,
5667 .model_id = MACRONIX_MX25L6405,
5668 .total_size = 8192,
5669 .page_size = 256,
5670 /* supports SFDP */
5671 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5672 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5673 .tested = TEST_OK_PREW,
5674 .probe = probe_spi_rdid,
5675 .probe_timing = TIMING_ZERO,
5676 .block_erasers =
5677 {
5678 {
5679 .eraseblocks = { {4 * 1024, 2048} },
5680 .block_erase = spi_block_erase_20,
5681 }, {
5682 .eraseblocks = { {32 * 1024, 256} },
5683 .block_erase = spi_block_erase_52,
5684 }, {
5685 .eraseblocks = { {64 * 1024, 128} },
5686 .block_erase = spi_block_erase_d8,
5687 }, {
5688 .eraseblocks = { {8 * 1024 * 1024, 1} },
5689 .block_erase = spi_block_erase_60,
5690 }, {
5691 .eraseblocks = { {8 * 1024 * 1024, 1} },
5692 .block_erase = spi_block_erase_c7,
5693 }
5694 },
5695 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5696 .unlock = spi_disable_blockprotect,
5697 .write = spi_chip_write_256,
5698 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5699 .voltage = {2700, 3600},
5700 },
5701
5702 {
5703 .vendor = "Macronix",
5704 .name = "MX25L12805(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005705 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005706 .manufacture_id = MACRONIX_ID,
5707 .model_id = MACRONIX_MX25L12805,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005708 .total_size = 16384,
5709 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005710 /* MX25L12805D has 64B of OTP; enter 0xB1, exit 0xC1 */
5711 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00005712 .tested = TEST_OK_PROBE,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005713 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005714 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005715 .block_erasers =
5716 {
5717 {
5718 .eraseblocks = { {4 * 1024, 4096} },
5719 .block_erase = spi_block_erase_20,
5720 }, {
5721 .eraseblocks = { {64 * 1024, 256} },
5722 .block_erase = spi_block_erase_d8,
5723 }, {
5724 .eraseblocks = { {16 * 1024 * 1024, 1} },
5725 .block_erase = spi_block_erase_60,
5726 }, {
5727 .eraseblocks = { {16 * 1024 * 1024, 1} },
5728 .block_erase = spi_block_erase_c7,
5729 }
5730 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005731 .printlock = spi_prettyprint_status_register_default_bp3,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005732 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005733 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005734 .read = spi_chip_read, /* MX25L12805D: Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005735 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005736 },
5737
5738 {
5739 .vendor = "Macronix",
Vincent Palatinf800f552013-03-15 02:03:16 +00005740 .name = "MX25U1635E",
5741 .bustype = BUS_SPI,
5742 .manufacture_id = MACRONIX_ID,
5743 .model_id = MACRONIX_MX25U1635E,
5744 .total_size = 2048,
5745 .page_size = 256,
5746 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5747 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5748 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5749 .tested = TEST_UNTESTED,
5750 .probe = probe_spi_rdid,
5751 .probe_timing = TIMING_ZERO,
5752 .block_erasers =
5753 {
5754 {
5755 .eraseblocks = { {4 * 1024, 512} },
5756 .block_erase = spi_block_erase_20,
5757 }, {
5758 .eraseblocks = { {32 * 1024, 64} },
5759 .block_erase = spi_block_erase_52,
5760 }, {
5761 .eraseblocks = { {64 * 1024, 32} },
5762 .block_erase = spi_block_erase_d8,
5763 }, {
5764 .eraseblocks = { {2 * 1024 * 1024, 1} },
5765 .block_erase = spi_block_erase_60,
5766 }, {
5767 .eraseblocks = { {2 * 1024 * 1024, 1} },
5768 .block_erase = spi_block_erase_c7,
5769 }
5770 },
5771 /* TODO: security register */
5772 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5773 .unlock = spi_disable_blockprotect,
5774 .write = spi_chip_write_256,
5775 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5776 .voltage = {1650, 2000},
5777 },
5778
5779 {
5780 .vendor = "Macronix",
5781 .name = "MX25U3235E/F",
5782 .bustype = BUS_SPI,
5783 .manufacture_id = MACRONIX_ID,
5784 .model_id = MACRONIX_MX25U3235E,
5785 .total_size = 4096,
5786 .page_size = 256,
5787 /* F model supports SFDP */
5788 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5789 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5790 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5791 .tested = TEST_OK_PREW,
5792 .probe = probe_spi_rdid,
5793 .probe_timing = TIMING_ZERO,
5794 .block_erasers =
5795 {
5796 {
5797 .eraseblocks = { {4 * 1024, 1024} },
5798 .block_erase = spi_block_erase_20,
5799 }, {
5800 .eraseblocks = { {32 * 1024, 128} },
5801 .block_erase = spi_block_erase_52,
5802 }, {
5803 .eraseblocks = { {64 * 1024, 64} },
5804 .block_erase = spi_block_erase_d8,
5805 }, {
5806 .eraseblocks = { {4 * 1024 * 1024, 1} },
5807 .block_erase = spi_block_erase_60,
5808 }, {
5809 .eraseblocks = { {4 * 1024 * 1024, 1} },
5810 .block_erase = spi_block_erase_c7,
5811 }
5812 },
5813 /* TODO: security register */
5814 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5815 .unlock = spi_disable_blockprotect,
5816 .write = spi_chip_write_256,
5817 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5818 .voltage = {1650, 2000},
5819 },
5820
5821 {
5822 .vendor = "Macronix",
5823 .name = "MX25U6435E/F",
5824 .bustype = BUS_SPI,
5825 .manufacture_id = MACRONIX_ID,
5826 .model_id = MACRONIX_MX25U6435E,
5827 .total_size = 8192,
5828 .page_size = 256,
5829 /* F model supports SFDP */
5830 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5831 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5832 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5833 .tested = TEST_UNTESTED,
5834 .probe = probe_spi_rdid,
5835 .probe_timing = TIMING_ZERO,
5836 .block_erasers =
5837 {
5838 {
5839 .eraseblocks = { {4 * 1024, 2048} },
5840 .block_erase = spi_block_erase_20,
5841 }, {
5842 .eraseblocks = { {32 * 1024, 256} },
5843 .block_erase = spi_block_erase_52,
5844 }, {
5845 .eraseblocks = { {64 * 1024, 128} },
5846 .block_erase = spi_block_erase_d8,
5847 }, {
5848 .eraseblocks = { {8 * 1024 * 1024, 1} },
5849 .block_erase = spi_block_erase_60,
5850 }, {
5851 .eraseblocks = { {8 * 1024 * 1024, 1} },
5852 .block_erase = spi_block_erase_c7,
5853 }
5854 },
5855 /* TODO: security register */
5856 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5857 .unlock = spi_disable_blockprotect,
5858 .write = spi_chip_write_256,
5859 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5860 .voltage = {1650, 2000},
5861 },
5862
5863 {
5864 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00005865 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005866 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005867 .manufacture_id = MACRONIX_ID,
5868 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005869 .total_size = 128,
5870 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005871 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5872 .tested = TEST_UNTESTED,
5873 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005874 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005875 .block_erasers =
5876 {
5877 {
5878 .eraseblocks = {
5879 {8 * 1024, 1},
5880 {4 * 1024, 2},
5881 {8 * 1024, 2},
5882 {32 * 1024, 1},
5883 {64 * 1024, 1},
5884 },
Sean Nelson35727f72010-01-28 23:55:12 +00005885 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005886 }, {
5887 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005888 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005889 }
5890 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005891 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005892 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005893 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005894 },
5895
5896 {
5897 .vendor = "Macronix",
5898 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005899 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005900 .manufacture_id = MACRONIX_ID,
5901 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005902 .total_size = 128,
5903 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005904 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00005905 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005906 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005907 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005908 .block_erasers =
5909 {
5910 {
5911 .eraseblocks = {
5912 {64 * 1024, 1},
5913 {32 * 1024, 1},
5914 {8 * 1024, 2},
5915 {4 * 1024, 2},
5916 {8 * 1024, 1},
5917 },
Sean Nelson35727f72010-01-28 23:55:12 +00005918 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005919 }, {
5920 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005921 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005922 }
5923 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005924 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005925 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005926 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005927 },
5928
5929 {
5930 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005931 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005932 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005933 .manufacture_id = MACRONIX_ID,
5934 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005935 .total_size = 256,
5936 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005937 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005938 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005939 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005940 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005941 .block_erasers =
5942 {
5943 {
5944 .eraseblocks = {
5945 {16 * 1024, 1},
5946 {8 * 1024, 2},
5947 {32 * 1024, 1},
5948 {64 * 1024, 3},
5949 },
Sean Nelson35727f72010-01-28 23:55:12 +00005950 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005951 }, {
5952 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005953 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005954 },
5955 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005956 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005957 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005958 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005959 },
5960
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005961 {
5962 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005963 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005964 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005965 .manufacture_id = MACRONIX_ID,
5966 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005967 .total_size = 256,
5968 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005969 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005970 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005971 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005972 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005973 .block_erasers =
5974 {
5975 {
5976 .eraseblocks = {
5977 {64 * 1024, 3},
5978 {32 * 1024, 1},
5979 {8 * 1024, 2},
5980 {16 * 1024, 1},
5981 },
Sean Nelson35727f72010-01-28 23:55:12 +00005982 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005983 }, {
5984 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005985 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005986 },
5987 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005988 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005989 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005990 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005991 },
5992
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005993 {
5994 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00005995 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005996 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00005997 .manufacture_id = MACRONIX_ID,
5998 .model_id = MACRONIX_MX29F040,
5999 .total_size = 512,
6000 .page_size = 64 * 1024,
6001 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6002 .tested = TEST_UNTESTED,
6003 .probe = probe_jedec,
6004 .probe_timing = TIMING_ZERO,
6005 .block_erasers =
6006 {
6007 {
6008 .eraseblocks = { {64 * 1024, 8} },
6009 .block_erase = erase_sector_jedec,
6010 }, {
6011 .eraseblocks = { {512 * 1024, 1} },
6012 .block_erase = erase_chip_block_jedec,
6013 },
6014 },
6015 .write = write_jedec_1,
6016 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006017 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00006018 },
6019
6020 {
6021 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00006022 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006023 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006024 .manufacture_id = MACRONIX_ID,
6025 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006026 .total_size = 512,
6027 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006028 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6029 .tested = TEST_UNTESTED,
6030 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006031 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00006032 .block_erasers =
6033 {
6034 {
6035 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00006036 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006037 }, {
6038 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006039 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006040 },
6041 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006042 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006043 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006044 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00006045 },
6046
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006047 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006048 .vendor = "MoselVitelic",
6049 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006050 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006051 .manufacture_id = SYNCMOS_MVC_ID,
6052 .model_id = MVC_V29C51000B,
6053 .total_size = 64,
6054 .page_size = 512,
6055 .feature_bits = FEATURE_EITHER_RESET,
6056 .tested = TEST_UNTESTED,
6057 .probe = probe_jedec,
6058 .probe_timing = TIMING_ZERO,
6059 .block_erasers =
6060 {
6061 {
6062 .eraseblocks = { {512, 128} },
6063 .block_erase = erase_sector_jedec,
6064 }, {
6065 .eraseblocks = { {64 * 1024, 1} },
6066 .block_erase = erase_chip_block_jedec,
6067 },
6068 },
6069 .write = write_jedec_1,
6070 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006071 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006072 },
6073
6074 {
6075 .vendor = "MoselVitelic",
6076 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006077 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006078 .manufacture_id = SYNCMOS_MVC_ID,
6079 .model_id = MVC_V29C51000T,
6080 .total_size = 64,
6081 .page_size = 512,
6082 .feature_bits = FEATURE_EITHER_RESET,
6083 .tested = TEST_UNTESTED,
6084 .probe = probe_jedec,
6085 .probe_timing = TIMING_ZERO,
6086 .block_erasers =
6087 {
6088 {
6089 .eraseblocks = { {512, 128} },
6090 .block_erase = erase_sector_jedec,
6091 }, {
6092 .eraseblocks = { {64 * 1024, 1} },
6093 .block_erase = erase_chip_block_jedec,
6094 },
6095 },
6096 .write = write_jedec_1,
6097 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006098 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006099 },
6100
6101 {
6102 .vendor = "MoselVitelic",
6103 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006104 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006105 .manufacture_id = SYNCMOS_MVC_ID,
6106 .model_id = MVC_V29C51400B,
6107 .total_size = 512,
6108 .page_size = 1024,
6109 .feature_bits = FEATURE_EITHER_RESET,
6110 .tested = TEST_UNTESTED,
6111 .probe = probe_jedec,
6112 .probe_timing = TIMING_ZERO,
6113 .block_erasers =
6114 {
6115 {
6116 .eraseblocks = { {1024, 512} },
6117 .block_erase = erase_sector_jedec,
6118 }, {
6119 .eraseblocks = { {512 * 1024, 1} },
6120 .block_erase = erase_chip_block_jedec,
6121 },
6122 },
6123 .write = write_jedec_1,
6124 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006125 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006126 },
6127
6128 {
6129 .vendor = "MoselVitelic",
6130 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006131 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006132 .manufacture_id = SYNCMOS_MVC_ID,
6133 .model_id = MVC_V29C51400T,
6134 .total_size = 512,
6135 .page_size = 1024,
6136 .feature_bits = FEATURE_EITHER_RESET,
6137 .tested = TEST_UNTESTED,
6138 .probe = probe_jedec,
6139 .probe_timing = TIMING_ZERO,
6140 .block_erasers =
6141 {
6142 {
6143 .eraseblocks = { {1024, 512} },
6144 .block_erase = erase_sector_jedec,
6145 }, {
6146 .eraseblocks = { {512 * 1024, 1} },
6147 .block_erase = erase_chip_block_jedec,
6148 },
6149 },
6150 .write = write_jedec_1,
6151 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006152 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006153 },
6154
6155 {
6156 .vendor = "MoselVitelic",
6157 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006158 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006159 .manufacture_id = SYNCMOS_MVC_ID,
6160 .model_id = MVC_V29LC51000,
6161 .total_size = 64,
6162 .page_size = 512,
6163 .feature_bits = FEATURE_EITHER_RESET,
6164 .tested = TEST_UNTESTED,
6165 .probe = probe_jedec,
6166 .probe_timing = TIMING_ZERO,
6167 .block_erasers =
6168 {
6169 {
6170 .eraseblocks = { {512, 128} },
6171 .block_erase = erase_sector_jedec,
6172 }, {
6173 .eraseblocks = { {64 * 1024, 1} },
6174 .block_erase = erase_chip_block_jedec,
6175 },
6176 },
6177 .write = write_jedec_1,
6178 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006179 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006180 },
6181
6182 {
6183 .vendor = "MoselVitelic",
6184 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006185 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006186 .manufacture_id = SYNCMOS_MVC_ID,
6187 .model_id = MVC_V29LC51001,
6188 .total_size = 128,
6189 .page_size = 512,
6190 .feature_bits = FEATURE_EITHER_RESET,
6191 .tested = TEST_UNTESTED,
6192 .probe = probe_jedec,
6193 .probe_timing = TIMING_ZERO,
6194 .block_erasers =
6195 {
6196 {
6197 .eraseblocks = { {512, 256} },
6198 .block_erase = erase_sector_jedec,
6199 }, {
6200 .eraseblocks = { {128 * 1024, 1} },
6201 .block_erase = erase_chip_block_jedec,
6202 },
6203 },
6204 .write = write_jedec_1,
6205 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006206 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006207 },
6208
6209 {
6210 .vendor = "MoselVitelic",
6211 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006212 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006213 .manufacture_id = SYNCMOS_MVC_ID,
6214 .model_id = MVC_V29LC51002,
6215 .total_size = 256,
6216 .page_size = 512,
6217 .feature_bits = FEATURE_EITHER_RESET,
6218 .tested = TEST_UNTESTED,
6219 .probe = probe_jedec,
6220 .probe_timing = TIMING_ZERO,
6221 .block_erasers =
6222 {
6223 {
6224 .eraseblocks = { {512, 512} },
6225 .block_erase = erase_sector_jedec,
6226 }, {
6227 .eraseblocks = { {256 * 1024, 1} },
6228 .block_erase = erase_chip_block_jedec,
6229 },
6230 },
6231 .write = write_jedec_1,
6232 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006233 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006234 },
6235
6236 {
Stefan Taunerb6b00e92013-06-28 21:28:43 +00006237 .vendor = "Nantronics",
6238 .name = "N25S10",
6239 .bustype = BUS_SPI,
6240 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6241 .model_id = NANTRONICS_N25S10,
6242 .total_size = 128,
6243 .page_size = 256,
6244 .feature_bits = FEATURE_WRSR_WREN,
6245 .tested = TEST_UNTESTED,
6246 .probe = probe_spi_rdid,
6247 .probe_timing = TIMING_ZERO,
6248 .block_erasers =
6249 {
6250 {
6251 .eraseblocks = { {4 * 1024, 32} },
6252 .block_erase = spi_block_erase_20,
6253 }, {
6254 .eraseblocks = { {4 * 1024, 32} },
6255 .block_erase = spi_block_erase_d7,
6256 }, {
6257 .eraseblocks = { {32 * 1024, 4} },
6258 .block_erase = spi_block_erase_52,
6259 }, {
6260 .eraseblocks = { {64 * 1024, 2} },
6261 .block_erase = spi_block_erase_d8,
6262 }, {
6263 .eraseblocks = { {128 * 1024, 1} },
6264 .block_erase = spi_block_erase_60,
6265 }, {
6266 .eraseblocks = { {128 * 1024, 1} },
6267 .block_erase = spi_block_erase_c7,
6268 }
6269 },
6270 .printlock = spi_prettyprint_status_register_default_bp3,
6271 .unlock = spi_disable_blockprotect_bp3_srwd,
6272 .write = spi_chip_write_256,
6273 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6274 .voltage = {2700, 3600},
6275 },
6276
6277 {
6278 .vendor = "Nantronics",
6279 .name = "N25S20",
6280 .bustype = BUS_SPI,
6281 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6282 .model_id = NANTRONICS_N25S20,
6283 .total_size = 256,
6284 .page_size = 256,
6285 .feature_bits = FEATURE_WRSR_WREN,
6286 .tested = TEST_UNTESTED,
6287 .probe = probe_spi_rdid,
6288 .probe_timing = TIMING_ZERO,
6289 .block_erasers =
6290 {
6291 {
6292 .eraseblocks = { {4 * 1024, 64} },
6293 .block_erase = spi_block_erase_20,
6294 }, {
6295 .eraseblocks = { {4 * 1024, 64} },
6296 .block_erase = spi_block_erase_d7,
6297 }, {
6298 .eraseblocks = { {32 * 1024, 8} },
6299 .block_erase = spi_block_erase_52,
6300 }, {
6301 .eraseblocks = { {64 * 1024, 4} },
6302 .block_erase = spi_block_erase_d8,
6303 }, {
6304 .eraseblocks = { {256 * 1024, 1} },
6305 .block_erase = spi_block_erase_60,
6306 }, {
6307 .eraseblocks = { {256 * 1024, 1} },
6308 .block_erase = spi_block_erase_c7,
6309 }
6310 },
6311 .printlock = spi_prettyprint_status_register_default_bp3,
6312 .unlock = spi_disable_blockprotect_bp3_srwd,
6313 .write = spi_chip_write_256,
6314 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6315 .voltage = {2700, 3600},
6316 },
6317
6318 {
6319 .vendor = "Nantronics",
6320 .name = "N25S40",
6321 .bustype = BUS_SPI,
6322 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6323 .model_id = NANTRONICS_N25S40,
6324 .total_size = 512,
6325 .page_size = 256,
6326 .feature_bits = FEATURE_WRSR_WREN,
6327 .tested = TEST_UNTESTED,
6328 .probe = probe_spi_rdid,
6329 .probe_timing = TIMING_ZERO,
6330 .block_erasers =
6331 {
6332 {
6333 .eraseblocks = { {4 * 1024, 128} },
6334 .block_erase = spi_block_erase_20,
6335 }, {
6336 .eraseblocks = { {4 * 1024, 128} },
6337 .block_erase = spi_block_erase_d7,
6338 }, {
6339 .eraseblocks = { {32 * 1024, 16} },
6340 .block_erase = spi_block_erase_52,
6341 }, {
6342 .eraseblocks = { {64 * 1024, 8} },
6343 .block_erase = spi_block_erase_d8,
6344 }, {
6345 .eraseblocks = { {512 * 1024, 1} },
6346 .block_erase = spi_block_erase_60,
6347 }, {
6348 .eraseblocks = { {512 * 1024, 1} },
6349 .block_erase = spi_block_erase_c7,
6350 }
6351 },
6352 .printlock = spi_prettyprint_status_register_default_bp3,
6353 .unlock = spi_disable_blockprotect_bp3_srwd,
6354 .write = spi_chip_write_256,
6355 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6356 .voltage = {2700, 3600},
6357 },
6358
6359 {
6360 .vendor = "Nantronics",
6361 .name = "N25S80",
6362 .bustype = BUS_SPI,
6363 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6364 .model_id = NANTRONICS_N25S80,
6365 .total_size = 1024,
6366 .page_size = 256,
6367 .feature_bits = FEATURE_WRSR_WREN,
6368 .tested = TEST_UNTESTED,
6369 .probe = probe_spi_rdid,
6370 .probe_timing = TIMING_ZERO,
6371 .block_erasers =
6372 {
6373 {
6374 .eraseblocks = { {4 * 1024, 256} },
6375 .block_erase = spi_block_erase_20,
6376 }, {
6377 .eraseblocks = { {32 * 1024, 32} },
6378 .block_erase = spi_block_erase_52,
6379 }, {
6380 .eraseblocks = { {64 * 1024, 16} },
6381 .block_erase = spi_block_erase_d8,
6382 }, {
6383 .eraseblocks = { {1024 * 1024, 1} },
6384 .block_erase = spi_block_erase_60,
6385 }, {
6386 .eraseblocks = { {1024 * 1024, 1} },
6387 .block_erase = spi_block_erase_c7,
6388 }
6389 },
6390 .printlock = spi_prettyprint_status_register_default_bp3,
6391 .unlock = spi_disable_blockprotect_bp3_srwd,
6392 .write = spi_chip_write_256,
6393 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6394 .voltage = {2700, 3600},
6395 },
6396
6397 {
6398 .vendor = "Nantronics",
6399 .name = "N25S16",
6400 .bustype = BUS_SPI,
6401 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6402 .model_id = NANTRONICS_N25S16,
6403 .total_size = 2048,
6404 .page_size = 256,
6405 .feature_bits = FEATURE_WRSR_WREN,
6406 .tested = TEST_UNTESTED,
6407 .probe = probe_spi_rdid,
6408 .probe_timing = TIMING_ZERO,
6409 .block_erasers =
6410 {
6411 {
6412 .eraseblocks = { {4 * 1024, 512} },
6413 .block_erase = spi_block_erase_20,
6414 }, {
6415 .eraseblocks = { {64 * 1024, 32} },
6416 .block_erase = spi_block_erase_d8,
6417 }, {
6418 .eraseblocks = { {2048 * 1024, 1} },
6419 .block_erase = spi_block_erase_60,
6420 }, {
6421 .eraseblocks = { {2048 * 1024, 1} },
6422 .block_erase = spi_block_erase_c7,
6423 }
6424 },
6425 .printlock = spi_prettyprint_status_register_default_bp3,
6426 .unlock = spi_disable_blockprotect_bp3_srwd,
6427 .write = spi_chip_write_256,
6428 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6429 .voltage = {2700, 3600},
6430 },
6431
6432 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006433 .vendor = "Numonyx",
6434 .name = "M25PE10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006435 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006436 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006437 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006438 .total_size = 128,
6439 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006440 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006441 .tested = TEST_UNTESTED,
6442 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006443 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006444 .block_erasers =
6445 {
6446 {
6447 .eraseblocks = { {4 * 1024, 32} },
6448 .block_erase = spi_block_erase_20,
6449 }, {
6450 .eraseblocks = { {64 * 1024, 2} },
6451 .block_erase = spi_block_erase_d8,
6452 }, {
6453 .eraseblocks = { {128 * 1024, 1} },
6454 .block_erase = spi_block_erase_c7,
6455 }
6456 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006457 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006458 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006459 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006460 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006461 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006462 },
6463
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006464 {
6465 .vendor = "Numonyx",
6466 .name = "M25PE20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006467 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006468 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006469 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006470 .total_size = 256,
6471 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006472 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006473 .tested = TEST_UNTESTED,
6474 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006475 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006476 .block_erasers =
6477 {
6478 {
6479 .eraseblocks = { {4 * 1024, 64} },
6480 .block_erase = spi_block_erase_20,
6481 }, {
6482 .eraseblocks = { {64 * 1024, 4} },
6483 .block_erase = spi_block_erase_d8,
6484 }, {
6485 .eraseblocks = { {256 * 1024, 1} },
6486 .block_erase = spi_block_erase_c7,
6487 }
6488 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006489 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006490 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006491 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006492 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006493 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006494 },
6495
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006496 {
6497 .vendor = "Numonyx",
6498 .name = "M25PE40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006499 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006500 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006501 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00006502 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006503 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006504 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006505 .tested = TEST_UNTESTED,
6506 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006507 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006508 .block_erasers =
6509 {
6510 {
6511 .eraseblocks = { {4 * 1024, 128} },
6512 .block_erase = spi_block_erase_20,
6513 }, {
6514 .eraseblocks = { {64 * 1024, 8} },
6515 .block_erase = spi_block_erase_d8,
6516 }, {
6517 .eraseblocks = { {512 * 1024, 1} },
6518 .block_erase = spi_block_erase_c7,
6519 }
6520 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006521 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006522 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006523 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006524 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006525 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006526 },
6527
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006528 {
6529 .vendor = "Numonyx",
6530 .name = "M25PE80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006531 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006532 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006533 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006534 .total_size = 1024,
6535 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006536 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00006537 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006538 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006539 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006540 .block_erasers =
6541 {
6542 {
6543 .eraseblocks = { {4 * 1024, 256} },
6544 .block_erase = spi_block_erase_20,
6545 }, {
6546 .eraseblocks = { {64 * 1024, 16} },
6547 .block_erase = spi_block_erase_d8,
6548 }, {
6549 .eraseblocks = { {1024 * 1024, 1} },
6550 .block_erase = spi_block_erase_c7,
6551 }
6552 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006553 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006554 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006555 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006556 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006557 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006558 },
6559
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006560 {
6561 .vendor = "Numonyx",
6562 .name = "M25PE16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006563 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006564 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006565 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006566 .total_size = 2048,
6567 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006568 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006569 .tested = TEST_UNTESTED,
6570 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006571 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006572 .block_erasers =
6573 {
6574 {
6575 .eraseblocks = { {4 * 1024, 512} },
6576 .block_erase = spi_block_erase_20,
6577 }, {
6578 .eraseblocks = { {64 * 1024, 32} },
6579 .block_erase = spi_block_erase_d8,
6580 }, {
6581 .eraseblocks = { {2 * 1024 * 1024, 1} },
6582 .block_erase = spi_block_erase_c7,
6583 }
6584 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006585 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006586 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006587 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006588 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006589 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006590 },
6591
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006592 {
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006593 .vendor = "Numonyx",
Stefan Taunerd956f822012-10-26 16:49:15 +00006594 .name = "N25Q016",
6595 .bustype = BUS_SPI,
6596 .manufacture_id = ST_ID,
6597 .model_id = ST_N25Q016__1E,
6598 .total_size = 2048,
6599 .page_size = 256,
6600 /* supports SFDP */
6601 /* OTP: 64B total; read 0x4B, write 0x42 */
6602 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6603 .tested = TEST_UNTESTED,
6604 .probe = probe_spi_rdid,
6605 .probe_timing = TIMING_ZERO,
6606 .block_erasers =
6607 {
6608 {
6609 .eraseblocks = { {4 * 1024, 512} },
6610 .block_erase = spi_block_erase_20,
6611 }, {
6612 .eraseblocks = { {32 * 1024, 64} },
6613 .block_erase = spi_block_erase_52,
6614 }, {
6615 .eraseblocks = { {64 * 1024, 32} },
6616 .block_erase = spi_block_erase_d8,
6617 }, {
6618 .eraseblocks = { {2 * 1024 * 1024, 1} },
6619 .block_erase = spi_block_erase_c7,
6620 }
6621 },
6622 .unlock = spi_disable_blockprotect,
6623 .write = spi_chip_write_256,
6624 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6625 .voltage = {1700, 2000},
6626 },
6627
6628 {
6629 .vendor = "Numonyx",
6630 .name = "N25Q032..1E",
6631 .bustype = BUS_SPI,
6632 .manufacture_id = ST_ID,
6633 .model_id = ST_N25Q032__1E,
6634 .total_size = 4096,
6635 .page_size = 256,
6636 /* supports SFDP */
6637 /* OTP: 64B total; read 0x4B, write 0x42 */
6638 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6639 .tested = TEST_UNTESTED,
6640 .probe = probe_spi_rdid,
6641 .probe_timing = TIMING_ZERO,
6642 .block_erasers =
6643 {
6644 {
6645 .eraseblocks = { {4 * 1024, 1024} },
6646 .block_erase = spi_block_erase_20,
6647 }, {
6648 .eraseblocks = { {64 * 1024, 64} },
6649 .block_erase = spi_block_erase_d8,
6650 }, {
6651 .eraseblocks = { {4 * 1024 * 1024, 1} },
6652 .block_erase = spi_block_erase_c7,
6653 }
6654 },
6655 .unlock = spi_disable_blockprotect,
6656 .write = spi_chip_write_256,
6657 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6658 .voltage = {1700, 2000},
6659 },
6660
6661 {
6662 .vendor = "Numonyx",
6663 .name = "N25Q032..3E",
6664 .bustype = BUS_SPI,
6665 .manufacture_id = ST_ID,
6666 .model_id = ST_N25Q032__3E,
6667 .total_size = 4096,
6668 .page_size = 256,
6669 /* supports SFDP */
6670 /* OTP: 64B total; read 0x4B, write 0x42 */
6671 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6672 .tested = TEST_UNTESTED,
6673 .probe = probe_spi_rdid,
6674 .probe_timing = TIMING_ZERO,
6675 .block_erasers =
6676 {
6677 {
6678 .eraseblocks = { {4 * 1024, 1024} },
6679 .block_erase = spi_block_erase_20,
6680 }, {
6681 .eraseblocks = { {64 * 1024, 64} },
6682 .block_erase = spi_block_erase_d8,
6683 }, {
6684 .eraseblocks = { {4 * 1024 * 1024, 1} },
6685 .block_erase = spi_block_erase_c7,
6686 }
6687 },
6688 .unlock = spi_disable_blockprotect,
6689 .write = spi_chip_write_256,
6690 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6691 .voltage = {2700, 3600},
6692 },
6693
6694 {
6695 .vendor = "Numonyx",
David Hendricks99f947d2012-10-04 14:41:20 +00006696 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006697 .bustype = BUS_SPI,
6698 .manufacture_id = ST_ID,
David Hendricks99f947d2012-10-04 14:41:20 +00006699 .model_id = ST_N25Q064__1E,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006700 .total_size = 8192,
6701 .page_size = 256,
David Hendricks99f947d2012-10-04 14:41:20 +00006702 /* supports SFDP */
6703 /* OTP: 64B total; read 0x4B, write 0x42 */
6704 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6705 .tested = TEST_UNTESTED,
6706 .probe = probe_spi_rdid,
6707 .probe_timing = TIMING_ZERO,
6708 .block_erasers =
6709 {
6710 {
6711 .eraseblocks = { {4 * 1024, 2048 } },
6712 .block_erase = spi_block_erase_20,
6713 }, {
6714 .eraseblocks = { {64 * 1024, 128} },
6715 .block_erase = spi_block_erase_d8,
6716 }, {
6717 .eraseblocks = { {8 * 1024 * 1024, 1} },
6718 .block_erase = spi_block_erase_c7,
6719 }
6720 },
6721 .unlock = spi_disable_blockprotect,
6722 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006723 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006724 .voltage = {1700, 2000},
6725 },
6726
6727 {
6728 .vendor = "Numonyx",
6729 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
6730 .bustype = BUS_SPI,
6731 .manufacture_id = ST_ID,
6732 .model_id = ST_N25Q064__3E,
6733 .total_size = 8192,
6734 .page_size = 256,
6735 /* supports SFDP */
6736 /* OTP: 64B total; read 0x4B, write 0x42 */
6737 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006738 .tested = TEST_OK_PREW,
6739 .probe = probe_spi_rdid,
6740 .probe_timing = TIMING_ZERO,
6741 .block_erasers =
6742 {
6743 {
6744 .eraseblocks = { {4 * 1024, 2048 } },
6745 .block_erase = spi_block_erase_20,
6746 }, {
6747 .eraseblocks = { {64 * 1024, 128} },
6748 .block_erase = spi_block_erase_d8,
6749 }, {
6750 .eraseblocks = { {8 * 1024 * 1024, 1} },
6751 .block_erase = spi_block_erase_c7,
6752 }
6753 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006754 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006755 .unlock = spi_disable_blockprotect,
6756 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006757 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006758 .voltage = {2700, 3600},
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006759 },
6760
6761 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006762 .vendor = "PMC",
Stefan Taunerf4451612013-04-19 01:59:15 +00006763 .name = "Pm25LD256C",
6764 .bustype = BUS_SPI,
6765 .manufacture_id = PMC_ID,
6766 .model_id = PMC_PM25LD256C,
6767 .total_size = 32,
6768 .page_size = 256,
6769 .feature_bits = FEATURE_WRSR_WREN,
6770 .tested = TEST_UNTESTED,
6771 .probe = probe_spi_rdid,
6772 .probe_timing = TIMING_ZERO,
6773 .block_erasers =
6774 {
6775 {
6776 .eraseblocks = { {4 * 1024, 8} },
6777 .block_erase = spi_block_erase_20,
6778 }, {
6779 .eraseblocks = { {4 * 1024, 8} },
6780 .block_erase = spi_block_erase_d7,
6781 }, {
6782 .eraseblocks = { {32 * 1024, 1} },
6783 .block_erase = spi_block_erase_d8,
6784 }, {
6785 .eraseblocks = { {32 * 1024, 1} },
6786 .block_erase = spi_block_erase_60,
6787 }, {
6788 .eraseblocks = { {32 * 1024, 1} },
6789 .block_erase = spi_block_erase_c7,
6790 }
6791 },
6792 .printlock = spi_prettyprint_status_register_default_bp2,
6793 .unlock = spi_disable_blockprotect,
6794 .write = spi_chip_write_256,
6795 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6796 .voltage = {2700, 3600},
6797 },
6798 {
6799 .vendor = "PMC",
6800 .name = "Pm25LD512(C)",
6801 .bustype = BUS_SPI,
6802 .manufacture_id = PMC_ID,
6803 .model_id = PMC_PM25LD512,
6804 .total_size = 64,
6805 .page_size = 256,
6806 .feature_bits = FEATURE_WRSR_WREN,
6807 .tested = TEST_OK_PREW,
6808 .probe = probe_spi_rdid,
6809 .probe_timing = TIMING_ZERO,
6810 .block_erasers =
6811 {
6812 {
6813 .eraseblocks = { {4 * 1024, 16} },
6814 .block_erase = spi_block_erase_20,
6815 }, {
6816 .eraseblocks = { {4 * 1024, 16} },
6817 .block_erase = spi_block_erase_d7,
6818 }, {
6819 .eraseblocks = { {32 * 1024, 2} },
6820 .block_erase = spi_block_erase_d8,
6821 }, {
6822 .eraseblocks = { {64 * 1024, 1} },
6823 .block_erase = spi_block_erase_60,
6824 }, {
6825 .eraseblocks = { {64 * 1024, 1} },
6826 .block_erase = spi_block_erase_c7,
6827 }
6828 },
6829 .printlock = spi_prettyprint_status_register_default_bp2,
6830 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6831 .write = spi_chip_write_256,
6832 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6833 .voltage = {2300, 3600},
6834 },
6835
6836 {
6837 .vendor = "PMC",
6838 .name = "Pm25LD010(C)",
6839 .bustype = BUS_SPI,
6840 .manufacture_id = PMC_ID,
6841 .model_id = PMC_PM25LD010,
6842 .total_size = 128,
6843 .page_size = 256,
6844 .feature_bits = FEATURE_WRSR_WREN,
6845 .tested = TEST_UNTESTED,
6846 .probe = probe_spi_rdid,
6847 .probe_timing = TIMING_ZERO,
6848 .block_erasers =
6849 {
6850 {
6851 .eraseblocks = { {4 * 1024, 32} },
6852 .block_erase = spi_block_erase_20,
6853 }, {
6854 .eraseblocks = { {4 * 1024, 32} },
6855 .block_erase = spi_block_erase_d7,
6856 }, {
6857 .eraseblocks = { {32 * 1024, 4} },
6858 .block_erase = spi_block_erase_d8,
6859 }, {
6860 .eraseblocks = { {128 * 1024, 1} },
6861 .block_erase = spi_block_erase_60,
6862 }, {
6863 .eraseblocks = { {128 * 1024, 1} },
6864 .block_erase = spi_block_erase_c7,
6865 }
6866 },
6867 .printlock = spi_prettyprint_status_register_default_bp2,
6868 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6869 .write = spi_chip_write_256,
6870 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6871 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
6872 },
6873
6874 {
6875 .vendor = "PMC",
6876 .name = "Pm25LD020(C)",
6877 .bustype = BUS_SPI,
6878 .manufacture_id = PMC_ID,
6879 .model_id = PMC_PM25LD020,
6880 .total_size = 256,
6881 .page_size = 256,
6882 .feature_bits = FEATURE_WRSR_WREN,
6883 .tested = TEST_UNTESTED,
6884 .probe = probe_spi_rdid,
6885 .probe_timing = TIMING_ZERO,
6886 .block_erasers =
6887 {
6888 {
6889 .eraseblocks = { {4 * 1024, 64} },
6890 .block_erase = spi_block_erase_20,
6891 }, {
6892 .eraseblocks = { {4 * 1024, 64} },
6893 .block_erase = spi_block_erase_d7,
6894 }, {
6895 .eraseblocks = { {64 * 1024, 4} },
6896 .block_erase = spi_block_erase_d8,
6897 }, {
6898 .eraseblocks = { {256 * 1024, 1} },
6899 .block_erase = spi_block_erase_60,
6900 }, {
6901 .eraseblocks = { {256 * 1024, 1} },
6902 .block_erase = spi_block_erase_c7,
6903 }
6904 },
6905 .printlock = spi_prettyprint_status_register_default_bp2,
6906 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6907 .write = spi_chip_write_256,
6908 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6909 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
6910 },
6911
6912 {
6913 .vendor = "PMC",
6914 .name = "Pm25LD040(C)",
6915 .bustype = BUS_SPI,
6916 .manufacture_id = PMC_ID,
6917 .model_id = PMC_PM25LV040,
6918 .total_size = 512,
6919 .page_size = 256,
6920 .feature_bits = FEATURE_WRSR_WREN,
6921 .tested = TEST_UNTESTED,
6922 .probe = probe_spi_rdid,
6923 .probe_timing = TIMING_ZERO,
6924 .block_erasers =
6925 {
6926 {
6927 .eraseblocks = { {4 * 1024, 128} },
6928 .block_erase = spi_block_erase_20,
6929 }, {
6930 .eraseblocks = { {4 * 1024, 128} },
6931 .block_erase = spi_block_erase_d7,
6932 }, {
6933 .eraseblocks = { {64 * 1024, 8} },
6934 .block_erase = spi_block_erase_d8,
6935 }, {
6936 .eraseblocks = { {512 * 1024, 1} },
6937 .block_erase = spi_block_erase_60,
6938 }, {
6939 .eraseblocks = { {512 * 1024, 1} },
6940 .block_erase = spi_block_erase_c7,
6941 }
6942 },
6943 .printlock = spi_prettyprint_status_register_default_bp2,
6944 .unlock = spi_disable_blockprotect,
6945 .write = spi_chip_write_256,
6946 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6947 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
6948 },
6949
6950{
6951 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006952 .name = "Pm25LV512(A)",
6953 .bustype = BUS_SPI,
6954 .manufacture_id = PMC_ID,
6955 .model_id = PMC_PM25LV512,
6956 .total_size = 64,
6957 .page_size = 256,
6958 .feature_bits = FEATURE_WRSR_WREN,
6959 .tested = TEST_UNTESTED,
6960 .probe = probe_spi_res3,
6961 .probe_timing = TIMING_ZERO,
6962 .block_erasers =
6963 {
6964 {
6965 .eraseblocks = { {4 * 1024, 16} },
6966 .block_erase = spi_block_erase_d7,
6967 }, {
6968 .eraseblocks = { {32 * 1024, 2} },
6969 .block_erase = spi_block_erase_d8,
6970 }, {
6971 .eraseblocks = { {64 * 1024, 1} },
6972 .block_erase = spi_block_erase_c7,
6973 }
6974 },
6975 .printlock = spi_prettyprint_status_register_default_bp1,
6976 .unlock = spi_disable_blockprotect,
6977 .write = spi_chip_write_256,
6978 .read = spi_chip_read, /* Fast read (0x0B) supported */
6979 .voltage = {2700, 3600},
6980 },
6981
6982 {
6983 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006984 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006985 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006986 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006987 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006988 .total_size = 128,
6989 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006990 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006991 .tested = TEST_UNTESTED,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00006992 .probe = probe_spi_res3,
6993 .probe_timing = TIMING_ZERO,
6994 .block_erasers =
6995 {
6996 {
6997 .eraseblocks = { {4 * 1024, 32} },
6998 .block_erase = spi_block_erase_d7,
6999 }, {
7000 .eraseblocks = { {32 * 1024, 4} },
7001 .block_erase = spi_block_erase_d8,
7002 }, {
7003 .eraseblocks = { {128 * 1024, 1} },
7004 .block_erase = spi_block_erase_c7,
7005 }
7006 },
7007 .printlock = spi_prettyprint_status_register_default_bp1,
7008 .unlock = spi_disable_blockprotect,
7009 .write = spi_chip_write_256,
7010 .read = spi_chip_read, /* Fast read (0x0B) supported */
7011 .voltage = {2700, 3600},
7012 },
7013
7014 {
7015 .vendor = "PMC",
7016 .name = "Pm25LV010A",
7017 .bustype = BUS_SPI,
7018 .manufacture_id = PMC_ID,
7019 .model_id = PMC_PM25LV010,
7020 .total_size = 128,
7021 .page_size = 256,
7022 .feature_bits = FEATURE_WRSR_WREN,
7023 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007024 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007025 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007026 .block_erasers =
7027 {
7028 {
7029 .eraseblocks = { {4 * 1024, 32} },
7030 .block_erase = spi_block_erase_d7,
7031 }, {
7032 .eraseblocks = { {32 * 1024, 4} },
7033 .block_erase = spi_block_erase_d8,
7034 }, {
7035 .eraseblocks = { {128 * 1024, 1} },
7036 .block_erase = spi_block_erase_c7,
7037 }
7038 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007039 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007040 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007041 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007042 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00007043 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007044 },
7045
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007046 {
7047 .vendor = "PMC",
7048 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007049 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007050 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007051 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007052 .total_size = 256,
7053 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007054 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007055 .tested = TEST_UNTESTED,
7056 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007057 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007058 .block_erasers =
7059 {
7060 {
7061 .eraseblocks = { {4 * 1024, 64} },
7062 .block_erase = spi_block_erase_d7,
7063 }, {
7064 .eraseblocks = { {64 * 1024, 4} },
7065 .block_erase = spi_block_erase_d8,
7066 }, {
7067 .eraseblocks = { {256 * 1024, 1} },
7068 .block_erase = spi_block_erase_c7,
7069 }
7070 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007071 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007072 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007073 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007074 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007075 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007076 },
7077
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007078 {
7079 .vendor = "PMC",
7080 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007081 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007082 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007083 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007084 .total_size = 512,
7085 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007086 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00007087 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007088 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007089 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007090 .block_erasers =
7091 {
7092 {
7093 .eraseblocks = { {4 * 1024, 128} },
7094 .block_erase = spi_block_erase_d7,
7095 }, {
7096 .eraseblocks = { {64 * 1024, 8} },
7097 .block_erase = spi_block_erase_d8,
7098 }, {
7099 .eraseblocks = { {512 * 1024, 1} },
7100 .block_erase = spi_block_erase_c7,
7101 }
7102 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007103 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007104 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007105 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007106 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007107 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007108 },
7109
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007110 {
7111 .vendor = "PMC",
7112 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007113 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007114 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007115 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007116 .total_size = 1024,
7117 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007118 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007119 .tested = TEST_UNTESTED,
7120 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007121 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007122 .block_erasers =
7123 {
7124 {
7125 .eraseblocks = { {4 * 1024, 256} },
7126 .block_erase = spi_block_erase_d7,
7127 }, {
7128 .eraseblocks = { {4 * 1024, 256} },
7129 .block_erase = spi_block_erase_20,
7130 }, {
7131 .eraseblocks = { {64 * 1024, 16} },
7132 .block_erase = spi_block_erase_d8,
7133 }, {
7134 .eraseblocks = { {1024 * 1024, 1} },
7135 .block_erase = spi_block_erase_60,
7136 }, {
7137 .eraseblocks = { {1024 * 1024, 1} },
7138 .block_erase = spi_block_erase_c7,
7139 }
7140 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007141 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007142 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007143 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007144 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007145 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007146 },
7147
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007148 {
7149 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007150 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007151 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007152 .manufacture_id = PMC_ID,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007153 .model_id = PMC_PM25LV016B,
7154 .total_size = 2048,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007155 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007156 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007157 .tested = TEST_UNTESTED,
7158 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007159 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007160 .block_erasers =
7161 {
7162 {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007163 .eraseblocks = { {4 * 1024, 512} },
Sean Nelson5643c072010-01-19 03:23:07 +00007164 .block_erase = spi_block_erase_d7,
7165 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007166 .eraseblocks = { {4 * 1024, 512} },
7167 .block_erase = spi_block_erase_20,
7168 }, {
7169 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson5643c072010-01-19 03:23:07 +00007170 .block_erase = spi_block_erase_d8,
7171 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007172 .eraseblocks = { {2 * 1024 * 1024, 1} },
7173 .block_erase = spi_block_erase_60,
7174 }, {
7175 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +00007176 .block_erase = spi_block_erase_c7,
7177 }
7178 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007179 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007180 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007181 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007182 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00007183 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007184 },
7185
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007186 {
7187 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00007188 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007189 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007190 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007191 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007192 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00007193 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007194 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00007195 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00007196 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +00007197 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007198 .block_erasers =
7199 {
7200 {
7201 .eraseblocks = {
7202 {128 * 1024, 1},
7203 {96 * 1024, 1},
7204 {8 * 1024, 2},
7205 {16 * 1024, 1},
7206 },
Sean Nelson35727f72010-01-28 23:55:12 +00007207 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007208 }, {
7209 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007210 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007211 },
7212 },
Sean Nelson35727f72010-01-28 23:55:12 +00007213 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007214 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007215 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007216 },
7217
7218 {
7219 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00007220 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007221 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007222 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007223 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007224 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00007225 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007226 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007227 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00007228 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007229 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007230 .block_erasers =
7231 {
7232 {
7233 .eraseblocks = {
7234 {16 * 1024, 1},
7235 {8 * 1024, 2},
7236 {96 * 1024, 1},
7237 {128 * 1024, 1},
7238 },
Sean Nelson35727f72010-01-28 23:55:12 +00007239 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007240 }, {
7241 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007242 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007243 },
7244 },
Sean Nelson35727f72010-01-28 23:55:12 +00007245 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007246 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007247 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007248 },
7249
7250 {
7251 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007252 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007253 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007254 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007255 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007256 .total_size = 128,
7257 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007258 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007259 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007260 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007261 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00007262 .block_erasers =
7263 {
7264 {
7265 .eraseblocks = { {4 * 1024, 32} },
7266 .block_erase = erase_sector_jedec,
7267 }, {
7268 .eraseblocks = { {64 * 1024, 2} },
7269 .block_erase = erase_block_jedec,
7270 }, {
7271 .eraseblocks = { {128 * 1024, 1} },
7272 .block_erase = erase_chip_block_jedec,
7273 }
7274 },
Sean Nelson35727f72010-01-28 23:55:12 +00007275 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007276 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007277 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007278 },
7279
7280 {
7281 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007282 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007283 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007284 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007285 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007286 .total_size = 256,
7287 .page_size = 4096,
7288 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7289 .tested = TEST_UNTESTED,
7290 .probe = probe_jedec,
7291 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7292 .block_erasers =
7293 {
7294 {
7295 .eraseblocks = { {4 * 1024, 64} },
7296 .block_erase = erase_sector_jedec,
7297 }, {
7298 .eraseblocks = { {64 * 1024, 4} },
7299 .block_erase = erase_block_jedec,
7300 }, {
7301 .eraseblocks = { {256 * 1024, 1} },
7302 .block_erase = erase_chip_block_jedec,
7303 }
7304 },
7305 .write = write_jedec_1,
7306 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007307 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007308 },
7309
7310 {
7311 .vendor = "PMC",
7312 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007313 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007314 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007315 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007316 .total_size = 512,
7317 .page_size = 4096,
7318 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007319 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007320 .probe = probe_jedec,
7321 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7322 .block_erasers =
7323 {
7324 {
7325 .eraseblocks = { {4 * 1024, 128} },
7326 .block_erase = erase_sector_jedec,
7327 }, {
7328 .eraseblocks = { {64 * 1024, 8} },
7329 .block_erase = erase_block_jedec,
7330 }, {
7331 .eraseblocks = { {512 * 1024, 1} },
7332 .block_erase = erase_chip_block_jedec,
7333 }
7334 },
7335 .write = write_jedec_1,
7336 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007337 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007338 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +00007339
7340 {
7341 .vendor = "PMC",
7342 .name = "Pm39LV512",
7343 .bustype = BUS_PARALLEL,
7344 .manufacture_id = PMC_ID_NOPREFIX,
7345 .model_id = PMC_PM39LV512,
7346 .total_size = 64,
7347 .page_size = 4096,
7348 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7349 .tested = TEST_OK_PREW,
7350 .probe = probe_jedec,
7351 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7352 .block_erasers =
7353 {
7354 {
7355 .eraseblocks = { {4 * 1024, 16} },
7356 .block_erase = erase_sector_jedec,
7357 }, {
7358 .eraseblocks = { {64 * 1024, 1} },
7359 .block_erase = erase_block_jedec,
7360 }, {
7361 .eraseblocks = { {64 * 1024, 1} },
7362 .block_erase = erase_chip_block_jedec,
7363 }
7364 },
7365 .write = write_jedec_1,
7366 .read = read_memmapped,
7367 .voltage = {2700, 3600},
7368 },
7369
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007370 {
7371 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007372 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007373 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007374 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007375 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007376 .total_size = 256,
7377 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007378 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunerd06d9412011-06-12 19:47:55 +00007379 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007380 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007381 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007382 .block_erasers =
7383 {
7384 {
7385 .eraseblocks = { {4 * 1024, 64} },
7386 .block_erase = erase_sector_jedec,
7387 }, {
7388 .eraseblocks = { {16 * 1024, 16} },
7389 .block_erase = erase_block_jedec,
7390 }, {
7391 .eraseblocks = { {256 * 1024, 1} },
7392 .block_erase = erase_chip_block_jedec,
7393 }
7394 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007395 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007396 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007397 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007398 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007399 },
7400
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007401 {
7402 .vendor = "PMC",
7403 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007404 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007405 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007406 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007407 .total_size = 512,
7408 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007409 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00007410 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007411 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007412 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007413 .block_erasers =
7414 {
7415 {
7416 .eraseblocks = { {4 * 1024, 128} },
7417 .block_erase = erase_sector_jedec,
7418 }, {
7419 .eraseblocks = { {64 * 1024, 8} },
7420 .block_erase = erase_block_jedec,
7421 }, {
7422 .eraseblocks = { {512 * 1024, 1} },
7423 .block_erase = erase_chip_block_jedec,
7424 }
7425 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007426 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007427 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007428 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007429 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007430 },
7431
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007432 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00007433 .vendor = "Sanyo",
7434 .name = "LF25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007435 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007436 .manufacture_id = SANYO_ID,
7437 .model_id = SANYO_LE25FW203A,
7438 .total_size = 2048,
7439 .page_size = 256,
7440 .tested = TEST_UNTESTED,
7441 .probe = probe_spi_rdid,
7442 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007443 .block_erasers =
7444 {
7445 {
7446 .eraseblocks = { {64 * 1024, 32} },
7447 .block_erase = spi_block_erase_d8,
7448 }, {
7449 .eraseblocks = { {2 * 1024 * 1024, 1} },
7450 .block_erase = spi_block_erase_c7,
7451 }
7452 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007453 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007454 .unlock = spi_disable_blockprotect,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007455 .write = spi_chip_write_256,
7456 .read = spi_chip_read,
7457 },
7458
7459 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007460 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007461 .name = "LH28F008BJT-BTLZ1",
7462 .bustype = BUS_PARALLEL,
7463 .manufacture_id = SHARP_ID,
Stefan Tauner352e50b2013-02-22 15:58:45 +00007464 .model_id = SHARP_LH28F008BJ__PB,
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007465 .total_size = 1024,
7466 .page_size = 64 * 1024,
7467 .tested = TEST_OK_PREW,
7468 .probe = probe_82802ab,
7469 .probe_timing = TIMING_ZERO,
7470 .block_erasers =
7471 {
7472 {
7473 .eraseblocks = {
7474 {8 * 1024, 8},
7475 {64 * 1024, 15}
7476 },
7477 .block_erase = erase_block_82802ab,
7478 }, {
7479 .eraseblocks = { {1024 * 1024, 1} },
7480 .block_erase = erase_sector_49lfxxxc,
7481 }
7482 },
7483 .unlock = unlock_lh28f008bjt,
7484 .write = write_82802ab,
7485 .read = read_memmapped,
7486 .voltage = {2700, 3600},
7487 },
7488
7489 {
7490 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007491 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007492 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007493 .manufacture_id = SHARP_ID,
7494 .model_id = SHARP_LHF00L04,
7495 .total_size = 1024,
7496 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007497 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007498 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007499 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007500 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007501 .block_erasers =
7502 {
7503 {
7504 .eraseblocks = {
7505 {64 * 1024, 15},
7506 {8 * 1024, 8}
7507 },
Sean Nelson28accc22010-03-19 18:47:06 +00007508 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007509 }, {
7510 .eraseblocks = {
7511 {1024 * 1024, 1}
7512 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00007513 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007514 },
7515 },
Sean Nelson28accc22010-03-19 18:47:06 +00007516 .unlock = unlock_82802ab,
7517 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007518 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007519 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007520 },
7521
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007522 {
7523 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +00007524 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007525 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007526 .manufacture_id = SPANSION_ID,
7527 .model_id = SPANSION_S25FL004A,
7528 .total_size = 512,
7529 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007530 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007531 .tested = TEST_UNTESTED,
7532 .probe = probe_spi_rdid,
7533 .probe_timing = TIMING_ZERO,
7534 .block_erasers =
7535 {
7536 {
7537 .eraseblocks = { {64 * 1024, 8} },
7538 .block_erase = spi_block_erase_d8,
7539 }, {
7540 .eraseblocks = { {512 * 1024, 1} },
7541 .block_erase = spi_block_erase_c7,
7542 }
7543 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007544 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007545 .unlock = spi_disable_blockprotect,
7546 .write = spi_chip_write_256,
7547 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007548 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007549 },
7550
7551 {
7552 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00007553 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007554 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +00007555 .manufacture_id = SPANSION_ID,
7556 .model_id = SPANSION_S25FL008A,
7557 .total_size = 1024,
7558 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007559 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007560 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +00007561 .probe = probe_spi_rdid,
7562 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00007563 .block_erasers =
7564 {
7565 {
7566 .eraseblocks = { {64 * 1024, 16} },
7567 .block_erase = spi_block_erase_d8,
7568 }, {
7569 .eraseblocks = { {1024 * 1024, 1} },
7570 .block_erase = spi_block_erase_c7,
7571 }
7572 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007573 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007574 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00007575 .write = spi_chip_write_256,
7576 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007577 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +00007578 },
7579
7580 {
7581 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007582 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007583 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007584 .manufacture_id = SPANSION_ID,
7585 .model_id = SPANSION_S25FL016A,
7586 .total_size = 2048,
7587 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007588 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007589 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007590 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007591 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007592 .block_erasers =
7593 {
7594 {
7595 .eraseblocks = { {64 * 1024, 32} },
7596 .block_erase = spi_block_erase_d8,
7597 }, {
7598 .eraseblocks = { {2 * 1024 * 1024, 1} },
7599 .block_erase = spi_block_erase_c7,
7600 }
7601 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007602 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007603 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007604 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007605 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007606 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007607 },
7608
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007609 {
Rudy Hostf4e57772010-11-29 00:37:49 +00007610 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007611 .name = "S25FL032A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007612 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007613 .manufacture_id = SPANSION_ID,
7614 .model_id = SPANSION_S25FL032A,
7615 .total_size = 4096,
7616 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007617 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007618 .tested = TEST_OK_PREW,
Rudy Hostf4e57772010-11-29 00:37:49 +00007619 .probe = probe_spi_rdid,
7620 .probe_timing = TIMING_ZERO,
7621 .block_erasers =
7622 {
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_c7,
7629 }
7630 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007631 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007632 .unlock = spi_disable_blockprotect,
7633 .write = spi_chip_write_256,
7634 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007635 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007636 },
7637
7638 {
7639 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007640 .name = "S25FL064A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007641 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007642 .manufacture_id = SPANSION_ID,
7643 .model_id = SPANSION_S25FL064A,
7644 .total_size = 8192,
7645 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007646 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007647 .tested = TEST_OK_PREW,
7648 .probe = probe_spi_rdid,
7649 .probe_timing = TIMING_ZERO,
7650 .block_erasers =
7651 {
7652 {
7653 .eraseblocks = { {64 * 1024, 128} },
7654 .block_erase = spi_block_erase_d8,
7655 }, {
7656 .eraseblocks = { {8 * 1024 * 1024, 1} },
7657 .block_erase = spi_block_erase_c7,
7658 }
7659 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007660 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007661 .unlock = spi_disable_blockprotect,
7662 .write = spi_chip_write_256,
7663 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007664 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007665 },
7666
7667 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007668 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +00007669 .name = "SST25LF040A",
7670 .bustype = BUS_SPI,
7671 .manufacture_id = SST_ID,
7672 .model_id = SST_SST25VF040_REMS,
7673 .total_size = 512,
7674 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007675 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +00007676 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +00007677 .probe = probe_spi_res2,
7678 .probe_timing = TIMING_ZERO,
7679 .block_erasers =
7680 {
7681 {
7682 .eraseblocks = { {4 * 1024, 128} },
7683 .block_erase = spi_block_erase_20,
7684 }, {
7685 .eraseblocks = { {32 * 1024, 16} },
7686 .block_erase = spi_block_erase_52,
7687 }, {
7688 .eraseblocks = { {512 * 1024, 1} },
7689 .block_erase = spi_block_erase_60,
7690 },
7691 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007692 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007693 .unlock = spi_disable_blockprotect,
7694 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7695 .read = spi_chip_read,
7696 .voltage = {3000, 3600},
7697 },
7698
7699 {
7700 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007701 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +00007702 .bustype = BUS_SPI,
7703 .manufacture_id = SST_ID,
7704 .model_id = SST_SST25VF080_REMS,
7705 .total_size = 1024,
7706 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007707 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +00007708 .tested = TEST_UNTESTED,
7709 .probe = probe_spi_res2,
7710 .probe_timing = TIMING_ZERO,
7711 .block_erasers =
7712 {
7713 {
7714 .eraseblocks = { {4 * 1024, 256} },
7715 .block_erase = spi_block_erase_20,
7716 }, {
7717 .eraseblocks = { {32 * 1024, 32} },
7718 .block_erase = spi_block_erase_52,
7719 }, {
7720 .eraseblocks = { {1024 * 1024, 1} },
7721 .block_erase = spi_block_erase_60,
7722 },
7723 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007724 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007725 .unlock = spi_disable_blockprotect,
7726 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7727 .read = spi_chip_read,
7728 .voltage = {3000, 3600},
7729 },
7730
7731 {
7732 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007733 .name = "SST25VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007734 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +00007735 .manufacture_id = SST_ID,
7736 .model_id = SST_SST25VF010_REMS,
7737 .total_size = 128,
7738 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007739 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00007740 .tested = TEST_OK_PREW,
7741 .probe = probe_spi_rems,
7742 .probe_timing = TIMING_ZERO,
7743 .block_erasers =
7744 {
7745 {
7746 .eraseblocks = { {4 * 1024, 32} },
7747 .block_erase = spi_block_erase_20,
7748 }, {
7749 .eraseblocks = { {32 * 1024, 4} },
7750 .block_erase = spi_block_erase_52,
7751 }, {
7752 .eraseblocks = { {128 * 1024, 1} },
7753 .block_erase = spi_block_erase_60,
7754 },
7755 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007756 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +00007757 .unlock = spi_disable_blockprotect,
7758 .write = spi_chip_write_1,
7759 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007760 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +00007761 },
7762
7763 {
7764 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007765 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007766 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007767 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007768 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007769 .total_size = 2048,
7770 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007771 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +00007772 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007773 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007774 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007775 .block_erasers =
7776 {
7777 {
7778 .eraseblocks = { {4 * 1024, 512} },
7779 .block_erase = spi_block_erase_20,
7780 }, {
7781 .eraseblocks = { {32 * 1024, 64} },
7782 .block_erase = spi_block_erase_52,
7783 }, {
7784 .eraseblocks = { {64 * 1024, 32} },
7785 .block_erase = spi_block_erase_d8,
7786 }, {
7787 .eraseblocks = { {2 * 1024 * 1024, 1} },
7788 .block_erase = spi_block_erase_60,
7789 }, {
7790 .eraseblocks = { {2 * 1024 * 1024, 1} },
7791 .block_erase = spi_block_erase_c7,
7792 },
7793 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007794 .printlock = spi_prettyprint_status_register_sst25vf016,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007795 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007796 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007797 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007798 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007799 },
7800
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007801 {
7802 .vendor = "SST",
7803 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007804 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007805 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007806 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007807 .total_size = 4096,
7808 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007809 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +00007810 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007811 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007812 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007813 .block_erasers =
7814 {
7815 {
7816 .eraseblocks = { {4 * 1024, 1024} },
7817 .block_erase = spi_block_erase_20,
7818 }, {
7819 .eraseblocks = { {32 * 1024, 128} },
7820 .block_erase = spi_block_erase_52,
7821 }, {
7822 .eraseblocks = { {64 * 1024, 64} },
7823 .block_erase = spi_block_erase_d8,
7824 }, {
7825 .eraseblocks = { {4 * 1024 * 1024, 1} },
7826 .block_erase = spi_block_erase_60,
7827 }, {
7828 .eraseblocks = { {4 * 1024 * 1024, 1} },
7829 .block_erase = spi_block_erase_c7,
7830 },
7831 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007832 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007833 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00007834 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007835 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007836 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007837 },
7838
7839 {
7840 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007841 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007842 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007843 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007844 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007845 .total_size = 8192,
7846 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007847 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +00007848 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007849 .probe = probe_spi_rdid,
7850 .probe_timing = TIMING_ZERO,
7851 .block_erasers =
7852 {
7853 {
7854 .eraseblocks = { {4 * 1024, 2048} },
7855 .block_erase = spi_block_erase_20,
7856 }, {
7857 .eraseblocks = { {32 * 1024, 256} },
7858 .block_erase = spi_block_erase_52,
7859 }, {
7860 .eraseblocks = { {64 * 1024, 128} },
7861 .block_erase = spi_block_erase_d8,
7862 }, {
7863 .eraseblocks = { {8 * 1024 * 1024, 1} },
7864 .block_erase = spi_block_erase_60,
7865 }, {
7866 .eraseblocks = { {8 * 1024 * 1024, 1} },
7867 .block_erase = spi_block_erase_c7,
7868 },
7869 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007870 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007871 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00007872 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007873 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007874 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +00007875 },
7876
7877 {
7878 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007879 .name = "SST25VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007880 .bustype = BUS_SPI,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007881 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007882 .model_id = SST_SST25VF040_REMS,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007883 .total_size = 512,
7884 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007885 .feature_bits = FEATURE_WRSR_EWSR,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007886 .tested = TEST_OK_PR,
7887 .probe = probe_spi_rems,
7888 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007889 .block_erasers =
7890 {
7891 {
7892 .eraseblocks = { {4 * 1024, 128} },
7893 .block_erase = spi_block_erase_20,
7894 }, {
7895 .eraseblocks = { {32 * 1024, 16} },
7896 .block_erase = spi_block_erase_52,
7897 }, {
7898 .eraseblocks = { {512 * 1024, 1} },
7899 .block_erase = spi_block_erase_60,
7900 },
7901 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007902 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007903 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007904 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007905 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007906 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007907 },
7908
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007909 {
7910 .vendor = "SST",
7911 .name = "SST25VF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007912 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007913 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007914 .model_id = SST_SST25VF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007915 .total_size = 512,
7916 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007917 .feature_bits = FEATURE_WRSR_EWSR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007918 .tested = TEST_UNTESTED,
7919 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007920 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007921 .block_erasers =
7922 {
7923 {
7924 .eraseblocks = { {4 * 1024, 128} },
7925 .block_erase = spi_block_erase_20,
7926 }, {
7927 .eraseblocks = { {32 * 1024, 16} },
7928 .block_erase = spi_block_erase_52,
7929 }, {
7930 .eraseblocks = { {64 * 1024, 8} },
7931 .block_erase = spi_block_erase_d8,
7932 }, {
7933 .eraseblocks = { {512 * 1024, 1} },
7934 .block_erase = spi_block_erase_60,
7935 }, {
7936 .eraseblocks = { {512 * 1024, 1} },
7937 .block_erase = spi_block_erase_c7,
7938 },
7939 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007940 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007941 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007942 .write = spi_aai_write,
Zheng Bao0677dff2009-02-25 08:07:33 +00007943 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007944 .voltage = {2700, 3600},
Zheng Bao0677dff2009-02-25 08:07:33 +00007945 },
7946
7947 {
7948 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00007949 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007950 .bustype = BUS_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00007951 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007952 .model_id = SST_SST25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00007953 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007954 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007955 .feature_bits = FEATURE_WRSR_EWSR,
Peter Stugefd9217d2009-01-26 03:37:40 +00007956 .tested = TEST_OK_PR,
7957 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007958 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007959 .block_erasers =
7960 {
7961 {
7962 .eraseblocks = { {4 * 1024, 128} },
7963 .block_erase = spi_block_erase_20,
7964 }, {
7965 .eraseblocks = { {32 * 1024, 16} },
7966 .block_erase = spi_block_erase_52,
7967 }, {
7968 .eraseblocks = { {64 * 1024, 8} },
7969 .block_erase = spi_block_erase_d8,
7970 }, {
7971 .eraseblocks = { {512 * 1024, 1} },
7972 .block_erase = spi_block_erase_60,
7973 }, {
7974 .eraseblocks = { {512 * 1024, 1} },
7975 .block_erase = spi_block_erase_c7,
7976 },
7977 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007978 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007979 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00007980 .write = spi_aai_write,
Peter Stugefd9217d2009-01-26 03:37:40 +00007981 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007982 .voltage = {2700, 3600},
Peter Stugefd9217d2009-01-26 03:37:40 +00007983 },
7984
7985 {
7986 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007987 .name = "SST25VF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007988 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007989 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007990 .model_id = SST_SST25VF080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007991 .total_size = 1024,
7992 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007993 .feature_bits = FEATURE_WRSR_EWSR,
John Schmergec965c2d2011-05-18 11:28:47 +00007994 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007995 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007996 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00007997 .block_erasers =
7998 {
7999 {
8000 .eraseblocks = { {4 * 1024, 256} },
8001 .block_erase = spi_block_erase_20,
8002 }, {
8003 .eraseblocks = { {32 * 1024, 32} },
8004 .block_erase = spi_block_erase_52,
8005 }, {
8006 .eraseblocks = { {64 * 1024, 16} },
8007 .block_erase = spi_block_erase_d8,
8008 }, {
8009 .eraseblocks = { {1024 * 1024, 1} },
8010 .block_erase = spi_block_erase_60,
8011 }, {
8012 .eraseblocks = { {1024 * 1024, 1} },
8013 .block_erase = spi_block_erase_c7,
8014 },
8015 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008016 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008017 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008018 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008019 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008020 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008021 },
8022
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008023 {
8024 .vendor = "SST",
Stefan Tauner9e349e42012-10-01 22:45:08 +00008025 .name = "SST25WF512",
8026 .bustype = BUS_SPI,
8027 .manufacture_id = SST_ID,
8028 .model_id = SST_SST25WF512,
8029 .total_size = 64,
8030 .page_size = 256,
8031 .feature_bits = FEATURE_WRSR_EITHER,
8032 .tested = TEST_UNTESTED,
8033 .probe = probe_spi_rdid,
8034 .probe_timing = TIMING_ZERO,
8035 .block_erasers =
8036 {
8037 {
8038 .eraseblocks = { {4 * 1024, 16} },
8039 .block_erase = spi_block_erase_20,
8040 }, {
8041 .eraseblocks = { {32 * 1024, 2} },
8042 .block_erase = spi_block_erase_52,
8043 }, {
8044 .eraseblocks = { {1024 * 64, 1} },
8045 .block_erase = spi_block_erase_60,
8046 }, {
8047 .eraseblocks = { {1024 * 64, 1} },
8048 .block_erase = spi_block_erase_c7,
8049 },
8050 },
8051 .unlock = spi_disable_blockprotect,
8052 .write = spi_aai_write,
8053 .read = spi_chip_read, /* Fast read (0x0B) supported */
8054 .voltage = {1650, 1950},
8055 },
8056
8057 {
8058 .vendor = "SST",
8059 .name = "SST25WF010",
8060 .bustype = BUS_SPI,
8061 .manufacture_id = SST_ID,
8062 .model_id = SST_SST25WF010,
8063 .total_size = 128,
8064 .page_size = 256,
8065 .feature_bits = FEATURE_WRSR_EITHER,
8066 .tested = TEST_UNTESTED,
8067 .probe = probe_spi_rdid,
8068 .probe_timing = TIMING_ZERO,
8069 .block_erasers =
8070 {
8071 {
8072 .eraseblocks = { {4 * 1024, 32} },
8073 .block_erase = spi_block_erase_20,
8074 }, {
8075 .eraseblocks = { {32 * 1024, 4} },
8076 .block_erase = spi_block_erase_52,
8077 }, {
8078 .eraseblocks = { {1024 * 128, 1} },
8079 .block_erase = spi_block_erase_60,
8080 }, {
8081 .eraseblocks = { {1024 * 128, 1} },
8082 .block_erase = spi_block_erase_c7,
8083 },
8084 },
8085 .unlock = spi_disable_blockprotect,
8086 .write = spi_aai_write,
8087 .read = spi_chip_read, /* Fast read (0x0B) supported */
8088 .voltage = {1650, 1950},
8089 },
8090
8091 {
8092 .vendor = "SST",
8093 .name = "SST25WF020",
8094 .bustype = BUS_SPI,
8095 .manufacture_id = SST_ID,
8096 .model_id = SST_SST25WF020,
8097 .total_size = 256,
8098 .page_size = 256,
8099 .feature_bits = FEATURE_WRSR_EITHER,
8100 .tested = TEST_UNTESTED,
8101 .probe = probe_spi_rdid,
8102 .probe_timing = TIMING_ZERO,
8103 .block_erasers =
8104 {
8105 {
8106 .eraseblocks = { {4 * 1024, 64} },
8107 .block_erase = spi_block_erase_20,
8108 }, {
8109 .eraseblocks = { {32 * 1024, 8} },
8110 .block_erase = spi_block_erase_52,
8111 }, {
8112 .eraseblocks = { {64 * 1024, 4} },
8113 .block_erase = spi_block_erase_d8,
8114 }, {
8115 .eraseblocks = { {1024 * 256, 1} },
8116 .block_erase = spi_block_erase_60,
8117 }, {
8118 .eraseblocks = { {1024 * 256, 1} },
8119 .block_erase = spi_block_erase_c7,
8120 },
8121 },
8122 .unlock = spi_disable_blockprotect,
8123 .write = spi_aai_write,
8124 .read = spi_chip_read, /* Fast read (0x0B) supported */
8125 .voltage = {1650, 1950},
8126 },
8127
8128 {
8129 .vendor = "SST",
8130 .name = "SST25WF040",
8131 .bustype = BUS_SPI,
8132 .manufacture_id = SST_ID,
8133 .model_id = SST_SST25WF040,
8134 .total_size = 512,
8135 .page_size = 256,
8136 .feature_bits = FEATURE_WRSR_EITHER,
8137 .tested = TEST_UNTESTED,
8138 .probe = probe_spi_rdid,
8139 .probe_timing = TIMING_ZERO,
8140 .block_erasers =
8141 {
8142 {
8143 .eraseblocks = { {4 * 1024, 128} },
8144 .block_erase = spi_block_erase_20,
8145 }, {
8146 .eraseblocks = { {32 * 1024, 16} },
8147 .block_erase = spi_block_erase_52,
8148 }, {
8149 .eraseblocks = { {64 * 1024, 8} },
8150 .block_erase = spi_block_erase_d8,
8151 }, {
8152 .eraseblocks = { {1024 * 512, 1} },
8153 .block_erase = spi_block_erase_60,
8154 }, {
8155 .eraseblocks = { {1024 * 512, 1} },
8156 .block_erase = spi_block_erase_c7,
8157 },
8158 },
8159 .unlock = spi_disable_blockprotect,
8160 .write = spi_aai_write,
8161 .read = spi_chip_read, /* Fast read (0x0B) supported */
8162 .voltage = {1650, 1950},
8163 },
8164
8165 {
8166 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008167 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008168 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008169 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008170 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008171 .total_size = 512,
8172 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00008173 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008174 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008175 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008176 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008177 .block_erasers =
8178 {
8179 {
8180 .eraseblocks = { {128, 4096} },
8181 .block_erase = erase_sector_28sf040,
8182 }, {
8183 .eraseblocks = { {512 * 1024, 1} },
8184 .block_erase = erase_chip_28sf040,
8185 }
8186 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008187 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008188 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008189 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008190 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008191 },
8192
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008193 {
8194 .vendor = "SST",
8195 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008196 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008197 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008198 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008199 .total_size = 128,
8200 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008201 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008202 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008203 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008204 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008205 .block_erasers =
8206 {
8207 {
8208 .eraseblocks = { {128 * 1024, 1} },
8209 .block_erase = erase_chip_block_jedec,
8210 }
8211 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008212 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008213 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008214 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008215 },
8216
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008217 {
8218 .vendor = "SST",
8219 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008220 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008221 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008222 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008223 .total_size = 128,
8224 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008225 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008226 .tested = TEST_UNTESTED,
8227 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008228 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008229 .block_erasers =
8230 {
8231 {
8232 .eraseblocks = { {128 * 1024, 1} },
8233 .block_erase = erase_chip_block_jedec,
8234 }
8235 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008236 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008237 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008238 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008239 },
8240
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008241 {
8242 .vendor = "SST",
8243 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008244 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008245 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008246 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008247 .total_size = 256,
8248 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008249 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008250 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008251 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008252 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008253 .block_erasers =
8254 {
8255 {
8256 .eraseblocks = { {256 * 1024, 1} },
8257 .block_erase = erase_chip_block_jedec,
8258 }
8259 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008260 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008261 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008262 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008263 },
8264
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008265 {
8266 .vendor = "SST",
8267 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008268 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008269 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008270 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008271 .total_size = 256,
8272 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008273 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008274 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008275 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008276 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008277 .block_erasers =
8278 {
8279 {
8280 .eraseblocks = { {256 * 1024, 1} },
8281 .block_erase = erase_chip_block_jedec,
8282 }
8283 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008284 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008285 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008286 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008287 },
8288
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008289 {
8290 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00008291 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008292 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008293 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008294 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008295 .total_size = 64,
8296 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008297 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +00008298 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008299 .probe = probe_jedec,
8300 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00008301 .block_erasers =
8302 {
8303 {
8304 .eraseblocks = { {4 * 1024, 16} },
8305 .block_erase = erase_sector_jedec,
8306 }, {
8307 .eraseblocks = { {64 * 1024, 1} },
8308 .block_erase = erase_chip_block_jedec,
8309 }
8310 },
Sean Nelson35727f72010-01-28 23:55:12 +00008311 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008312 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008313 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +00008314 },
8315
8316 {
8317 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008318 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008319 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008320 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008321 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008322 .total_size = 128,
8323 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008324 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008325 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008326 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008327 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008328 .block_erasers =
8329 {
8330 {
8331 .eraseblocks = { {4 * 1024, 32} },
8332 .block_erase = erase_sector_jedec,
8333 }, {
8334 .eraseblocks = { {128 * 1024, 1} },
8335 .block_erase = erase_chip_block_jedec,
8336 }
8337 },
Sean Nelson35727f72010-01-28 23:55:12 +00008338 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008339 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008340 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008341 },
8342
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008343 {
8344 .vendor = "SST",
8345 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008346 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008347 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008348 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008349 .total_size = 256,
8350 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008351 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +00008352 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008353 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008354 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008355 .block_erasers =
8356 {
8357 {
8358 .eraseblocks = { {4 * 1024, 64} },
8359 .block_erase = erase_sector_jedec,
8360 }, {
8361 .eraseblocks = { {256 * 1024, 1} },
8362 .block_erase = erase_chip_block_jedec,
8363 }
8364 },
Sean Nelson35727f72010-01-28 23:55:12 +00008365 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008366 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008367 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008368 },
8369
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008370 {
8371 .vendor = "SST",
8372 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008373 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008374 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008375 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008376 .total_size = 512,
8377 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008378 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008379 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008380 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008381 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008382 .block_erasers =
8383 {
8384 {
8385 .eraseblocks = { {4 * 1024, 128} },
8386 .block_erase = erase_sector_jedec,
8387 }, {
8388 .eraseblocks = { {512 * 1024, 1} },
8389 .block_erase = erase_chip_block_jedec,
8390 }
8391 },
Sean Nelson35727f72010-01-28 23:55:12 +00008392 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008393 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008394 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008395 },
8396
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008397 {
8398 .vendor = "SST",
8399 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008400 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008401 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008402 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008403 .total_size = 64,
8404 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008405 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00008406 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008407 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008408 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008409 .block_erasers =
8410 {
8411 {
8412 .eraseblocks = { {4 * 1024, 16} },
8413 .block_erase = erase_sector_jedec,
8414 }, {
8415 .eraseblocks = { {64 * 1024, 1} },
8416 .block_erase = erase_chip_block_jedec,
8417 }
8418 },
Sean Nelson35727f72010-01-28 23:55:12 +00008419 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008420 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008421 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008422 },
8423
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008424 {
8425 .vendor = "SST",
8426 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008427 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008428 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008429 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008430 .total_size = 128,
8431 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008432 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00008433 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008434 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008435 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008436 .block_erasers =
8437 {
8438 {
8439 .eraseblocks = { {4 * 1024, 32} },
8440 .block_erase = erase_sector_jedec,
8441 }, {
8442 .eraseblocks = { {128 * 1024, 1} },
8443 .block_erase = erase_chip_block_jedec,
8444 }
8445 },
Sean Nelson35727f72010-01-28 23:55:12 +00008446 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008447 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008448 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008449 },
8450
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008451 {
8452 .vendor = "SST",
8453 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008454 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008455 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008456 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008457 .total_size = 256,
8458 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008459 .feature_bits = FEATURE_EITHER_RESET,
8460 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008461 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008462 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008463 .block_erasers =
8464 {
8465 {
8466 .eraseblocks = { {4 * 1024, 64} },
8467 .block_erase = erase_sector_jedec,
8468 }, {
8469 .eraseblocks = { {256 * 1024, 1} },
8470 .block_erase = erase_chip_block_jedec,
8471 }
8472 },
Sean Nelson35727f72010-01-28 23:55:12 +00008473 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008474 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008475 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008476 },
8477
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008478 {
8479 .vendor = "SST",
8480 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008481 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008482 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008483 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008484 .total_size = 512,
8485 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008486 .feature_bits = FEATURE_EITHER_RESET,
8487 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008488 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008489 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008490 .block_erasers =
8491 {
8492 {
8493 .eraseblocks = { {4 * 1024, 128} },
8494 .block_erase = erase_sector_jedec,
8495 }, {
8496 .eraseblocks = { {512 * 1024, 1} },
8497 .block_erase = erase_chip_block_jedec,
8498 }
8499 },
Sean Nelson35727f72010-01-28 23:55:12 +00008500 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008501 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008502 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00008503 },
FENG yu ningff692fb2008-12-08 18:15:10 +00008504
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008505 {
8506 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00008507 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008508 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008509 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008510 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00008511 .total_size = 1024,
8512 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008513 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00008514 .tested = TEST_UNTESTED,
8515 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008516 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008517 .block_erasers =
8518 {
8519 {
8520 .eraseblocks = { {4 * 1024, 256} },
8521 .block_erase = erase_sector_jedec,
8522 }, {
8523 .eraseblocks = { {64 * 1024, 16} },
8524 .block_erase = erase_block_jedec,
8525 }, {
8526 .eraseblocks = { {1024 * 1024, 1} },
8527 .block_erase = erase_chip_block_jedec,
8528 }
8529 },
Sean Nelson35727f72010-01-28 23:55:12 +00008530 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008531 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008532 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +00008533 },
8534
8535 {
8536 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008537 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008538 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008539 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008540 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008541 .total_size = 256,
8542 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008543 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008544 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008545 .probe = probe_jedec,
8546 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008547 .block_erasers =
8548 {
8549 {
8550 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008551 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008552 }, {
8553 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008554 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008555 }, {
8556 .eraseblocks = { {256 * 1024, 1} },
8557 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8558 }
8559 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008560 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008561 .unlock = unlock_sst_fwhub,
8562 .write = write_jedec_1,
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 = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008570 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008571 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008572 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008573 .total_size = 384,
8574 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008575 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +00008576 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008577 .probe = probe_jedec,
8578 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008579 .block_erasers =
8580 {
8581 {
8582 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008583 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008584 }, {
8585 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008586 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008587 }, {
8588 .eraseblocks = { {384 * 1024, 1} },
8589 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8590 }
8591 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008592 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008593 .unlock = unlock_sst_fwhub,
8594 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008595 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008596 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008597 },
8598
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008599 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008600 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
8601 * and is only honored for 64k block erase, but not 4k sector erase.
8602 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008603 .vendor = "SST",
8604 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008605 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008606 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008607 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008608 .total_size = 512,
8609 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008610 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008611 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008612 .probe = probe_jedec,
8613 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008614 .block_erasers =
8615 {
8616 {
8617 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008618 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008619 }, {
8620 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008621 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008622 }, {
8623 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00008624 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008625 },
8626 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008627 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008628 .unlock = unlock_sst_fwhub,
8629 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008630 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008631 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008632 },
8633
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008634 {
8635 .vendor = "SST",
8636 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008637 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008638 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008639 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008640 .total_size = 512,
8641 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008642 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008643 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008644 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008645 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008646 .block_erasers =
8647 {
8648 {
8649 .eraseblocks = { {4 * 1024, 128} },
8650 .block_erase = erase_sector_49lfxxxc,
8651 }, {
8652 .eraseblocks = {
8653 {64 * 1024, 7},
8654 {32 * 1024, 1},
8655 {8 * 1024, 2},
8656 {16 * 1024, 1},
8657 },
Sean Nelson69e58112010-03-23 17:10:28 +00008658 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008659 }
8660 },
Sean Nelson69e58112010-03-23 17:10:28 +00008661 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008662 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008663 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008664 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008665 },
8666
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008667 {
8668 .vendor = "SST",
8669 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008670 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008671 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008672 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008673 .total_size = 1024,
8674 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008675 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008676 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008677 .probe = probe_jedec,
8678 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008679 .block_erasers =
8680 {
8681 {
8682 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008683 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008684 }, {
8685 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008686 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008687 }, {
8688 .eraseblocks = { {1024 * 1024, 1} },
8689 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8690 }
8691 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008692 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008693 .unlock = unlock_sst_fwhub,
8694 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008695 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008696 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008697 },
8698
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008699 {
8700 .vendor = "SST",
8701 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008702 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008703 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008704 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008705 .total_size = 1024,
8706 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008707 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008708 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008709 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008710 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008711 .block_erasers =
8712 {
8713 {
8714 .eraseblocks = { {4 * 1024, 256} },
8715 .block_erase = erase_sector_49lfxxxc,
8716 }, {
8717 .eraseblocks = {
8718 {64 * 1024, 15},
8719 {32 * 1024, 1},
8720 {8 * 1024, 2},
8721 {16 * 1024, 1},
8722 },
Sean Nelson69e58112010-03-23 17:10:28 +00008723 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008724 }
8725 },
Sean Nelson69e58112010-03-23 17:10:28 +00008726 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008727 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008728 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008729 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008730 },
8731
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008732 {
8733 .vendor = "SST",
8734 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008735 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008736 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008737 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008738 .total_size = 2048,
8739 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008740 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner2abab942012-04-27 20:41:23 +00008741 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008742 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008743 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008744 .block_erasers =
8745 {
8746 {
8747 .eraseblocks = { {4 * 1024, 512} },
8748 .block_erase = erase_sector_49lfxxxc,
8749 }, {
8750 .eraseblocks = {
8751 {64 * 1024, 31},
8752 {32 * 1024, 1},
8753 {8 * 1024, 2},
8754 {16 * 1024, 1},
8755 },
Sean Nelson69e58112010-03-23 17:10:28 +00008756 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008757 }
8758 },
Sean Nelson69e58112010-03-23 17:10:28 +00008759 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008760 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008761 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008762 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008763 },
8764
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008765 {
8766 .vendor = "SST",
8767 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008768 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008769 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008770 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008771 .total_size = 256,
8772 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008773 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00008774 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008775 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008776 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008777 .block_erasers =
8778 {
8779 {
8780 .eraseblocks = { {4 * 1024, 64} },
8781 .block_erase = erase_sector_jedec,
8782 }, {
8783 .eraseblocks = { {16 * 1024, 16} },
8784 .block_erase = erase_block_jedec,
8785 }, {
8786 .eraseblocks = { {256 * 1024, 1} },
8787 .block_erase = NULL,
8788 }
8789 },
Sean Nelson35727f72010-01-28 23:55:12 +00008790 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008791 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008792 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +00008793 },
8794
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008795 {
8796 .vendor = "SST",
8797 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008798 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008799 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008800 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008801 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00008802 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008803 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008804 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008805 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008806 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008807 .block_erasers =
8808 {
8809 {
8810 .eraseblocks = { {4 * 1024, 64} },
8811 .block_erase = erase_sector_jedec,
8812 }, {
8813 .eraseblocks = { {16 * 1024, 16} },
8814 .block_erase = erase_block_jedec,
8815 }, {
8816 .eraseblocks = { {256 * 1024, 1} },
8817 .block_erase = NULL,
8818 }
8819 },
Sean Nelson35727f72010-01-28 23:55:12 +00008820 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008821 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008822 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008823 },
8824
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008825 {
8826 .vendor = "SST",
8827 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008828 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008829 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008830 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008831 .total_size = 512,
8832 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008833 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008834 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008835 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008836 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008837 .block_erasers =
8838 {
8839 {
8840 .eraseblocks = { {4 * 1024, 128} },
8841 .block_erase = erase_sector_jedec,
8842 }, {
8843 .eraseblocks = { {64 * 1024, 8} },
8844 .block_erase = erase_block_jedec,
8845 }, {
8846 .eraseblocks = { {512 * 1024, 1} },
8847 .block_erase = NULL,
8848 }
8849 },
Sean Nelson35727f72010-01-28 23:55:12 +00008850 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008851 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008852 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008853 },
8854
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008855 {
8856 .vendor = "SST",
8857 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008858 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008859 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008860 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008861 .total_size = 512,
8862 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00008863 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008864 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008865 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008866 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008867 .block_erasers =
8868 {
8869 {
8870 .eraseblocks = { {4 * 1024, 128} },
8871 .block_erase = erase_sector_jedec,
8872 }, {
8873 .eraseblocks = { {64 * 1024, 8} },
8874 .block_erase = erase_block_jedec,
8875 }, {
8876 .eraseblocks = { {512 * 1024, 1} },
8877 .block_erase = NULL,
8878 }
8879 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00008880 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00008881 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008882 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008883 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008884 },
8885
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008886 {
8887 .vendor = "SST",
8888 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008889 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008890 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008891 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008892 .total_size = 1024,
8893 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008894 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +00008895 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008896 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00008897 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008898 .block_erasers =
8899 {
8900 {
8901 .eraseblocks = { {4 * 1024, 256} },
8902 .block_erase = erase_sector_jedec,
8903 }, {
8904 .eraseblocks = { {64 * 1024, 16} },
8905 .block_erase = erase_block_jedec,
8906 }, {
8907 .eraseblocks = { {1024 * 1024, 1} },
8908 .block_erase = NULL,
8909 }
8910 },
Sean Nelson35727f72010-01-28 23:55:12 +00008911 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008912 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008913 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008914 },
8915
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008916 {
8917 .vendor = "SST",
8918 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008919 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008920 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008921 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008922 .total_size = 2048,
8923 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008924 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008925 .tested = TEST_OK_PRE,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008926 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008927 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008928 .block_erasers =
8929 {
8930 {
8931 .eraseblocks = { {4 * 1024, 512} },
8932 .block_erase = erase_sector_49lfxxxc,
8933 }, {
8934 .eraseblocks = {
8935 {64 * 1024, 31},
8936 {32 * 1024, 1},
8937 {8 * 1024, 2},
8938 {16 * 1024, 1},
8939 },
Sean Nelson69e58112010-03-23 17:10:28 +00008940 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008941 }
8942 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00008943 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008944 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008945 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008946 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008947 },
8948
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008949 {
8950 .vendor = "ST",
8951 .name = "M25P05-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008952 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008953 .manufacture_id = ST_ID,
8954 .model_id = ST_M25P05A,
8955 .total_size = 64,
8956 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008957 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008958 .tested = TEST_UNTESTED,
8959 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008960 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008961 .block_erasers =
8962 {
8963 {
8964 .eraseblocks = { {32 * 1024, 2} },
8965 .block_erase = spi_block_erase_d8,
8966 }, {
8967 .eraseblocks = { {64 * 1024, 1} },
8968 .block_erase = spi_block_erase_c7,
8969 }
8970 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008971 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008972 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008973 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008974 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008975 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008976 },
8977
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008978 /* The ST M25P05 is a bit of a problem. It has the same ID as the
8979 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008980 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008981 * only is successful if RDID does not work.
8982 */
8983 {
8984 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008985 .name = "M25P05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008986 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008987 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008988 .model_id = ST_M25P05_RES,
8989 .total_size = 64,
8990 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008991 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008992 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00008993 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00008994 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008995 .block_erasers =
8996 {
8997 {
8998 .eraseblocks = { {32 * 1024, 2} },
8999 .block_erase = spi_block_erase_d8,
9000 }, {
9001 .eraseblocks = { {64 * 1024, 1} },
9002 .block_erase = spi_block_erase_c7,
9003 }
9004 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009005 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009006 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009007 .write = spi_chip_write_1, /* 128 */
9008 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009009 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009010 },
9011
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009012 {
9013 .vendor = "ST",
9014 .name = "M25P10-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009015 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009016 .manufacture_id = ST_ID,
9017 .model_id = ST_M25P10A,
9018 .total_size = 128,
9019 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009020 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009021 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009022 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009023 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009024 .block_erasers =
9025 {
9026 {
9027 .eraseblocks = { {32 * 1024, 4} },
9028 .block_erase = spi_block_erase_d8,
9029 }, {
9030 .eraseblocks = { {128 * 1024, 1} },
9031 .block_erase = spi_block_erase_c7,
9032 }
9033 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009034 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009035 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009036 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009037 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009038 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009039 },
9040
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009041 /* The ST M25P10 has the same problem as the M25P05. */
9042 {
9043 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009044 .name = "M25P10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009045 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009046 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009047 .model_id = ST_M25P10_RES,
9048 .total_size = 128,
9049 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009050 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009051 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009052 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009053 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009054 .block_erasers =
9055 {
9056 {
9057 .eraseblocks = { {32 * 1024, 4} },
9058 .block_erase = spi_block_erase_d8,
9059 }, {
9060 .eraseblocks = { {128 * 1024, 1} },
9061 .block_erase = spi_block_erase_c7,
9062 }
9063 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009064 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009065 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009066 .write = spi_chip_write_1, /* 128 */
9067 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009068 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009069 },
9070
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009071 {
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009072 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009073 .name = "M25P20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009074 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009075 .manufacture_id = ST_ID,
9076 .model_id = ST_M25P20,
9077 .total_size = 256,
9078 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009079 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009080 .tested = TEST_UNTESTED,
9081 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009082 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009083 .block_erasers =
9084 {
9085 {
9086 .eraseblocks = { {64 * 1024, 4} },
9087 .block_erase = spi_block_erase_d8,
9088 }, {
9089 .eraseblocks = { {256 * 1024, 1} },
9090 .block_erase = spi_block_erase_c7,
9091 }
9092 },
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009093 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009094 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009095 .write = spi_chip_write_256,
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009096 .read = spi_chip_read, /* Fast read (0x0B) supported */
9097 .voltage = {2700, 3600},
9098 },
9099
9100 {
9101 .vendor = "ST",
9102 .name = "M25P20-old",
9103 .bustype = BUS_SPI,
9104 .manufacture_id = 0, /* Not used. */
9105 .model_id = ST_M25P20_RES,
9106 .total_size = 256,
9107 .page_size = 256,
9108 .feature_bits = FEATURE_WRSR_WREN,
9109 .tested = TEST_OK_PREW,
9110 .probe = probe_spi_res1,
9111 .probe_timing = TIMING_ZERO,
9112 .block_erasers =
9113 {
9114 {
9115 .eraseblocks = { {64 * 1024, 4} },
9116 .block_erase = spi_block_erase_d8,
9117 }, {
9118 .eraseblocks = { {256 * 1024, 1} },
9119 .block_erase = spi_block_erase_c7,
9120 }
9121 },
9122 .printlock = spi_prettyprint_status_register_default_bp1,
9123 .unlock = spi_disable_blockprotect,
9124 .write = spi_chip_write_256,
9125 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009126 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009127 },
9128
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009129 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009130 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009131 .name = "M25P40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009132 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009133 .manufacture_id = ST_ID,
9134 .model_id = ST_M25P40,
9135 .total_size = 512,
9136 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009137 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00009138 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009139 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009140 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009141 .block_erasers =
9142 {
9143 {
9144 .eraseblocks = { {64 * 1024, 8} },
9145 .block_erase = spi_block_erase_d8,
9146 }, {
9147 .eraseblocks = { {512 * 1024, 1} },
9148 .block_erase = spi_block_erase_c7,
9149 }
9150 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009151 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009152 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009153 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009154 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009155 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009156 },
9157
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009158 {
9159 .vendor = "ST",
9160 .name = "M25P40-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009161 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009162 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009163 .model_id = ST_M25P40_RES,
9164 .total_size = 512,
9165 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009166 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009167 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009168 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009169 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009170 .block_erasers =
9171 {
9172 {
9173 .eraseblocks = { {64 * 1024, 8} },
9174 .block_erase = spi_block_erase_d8,
9175 }, {
9176 .eraseblocks = { {512 * 1024, 1} },
9177 .block_erase = spi_block_erase_c7,
9178 }
9179 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009180 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009181 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009182 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009183 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00009184 },
9185
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009186 {
9187 .vendor = "ST",
9188 .name = "M25P80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009189 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009190 .manufacture_id = ST_ID,
9191 .model_id = ST_M25P80,
9192 .total_size = 1024,
9193 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009194 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann19f46f22011-06-18 22:56:14 +00009195 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009196 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009197 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009198 .block_erasers =
9199 {
9200 {
9201 .eraseblocks = { {64 * 1024, 16} },
9202 .block_erase = spi_block_erase_d8,
9203 }, {
9204 .eraseblocks = { {1024 * 1024, 1} },
9205 .block_erase = spi_block_erase_c7,
9206 }
9207 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009208 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009209 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009210 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009211 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009212 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009213 },
9214
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009215 {
9216 .vendor = "ST",
9217 .name = "M25P16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009218 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009219 .manufacture_id = ST_ID,
9220 .model_id = ST_M25P16,
9221 .total_size = 2048,
9222 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009223 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009224 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009225 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009226 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009227 .block_erasers =
9228 {
9229 {
9230 .eraseblocks = { {64 * 1024, 32} },
9231 .block_erase = spi_block_erase_d8,
9232 }, {
9233 .eraseblocks = { {2 * 1024 * 1024, 1} },
9234 .block_erase = spi_block_erase_c7,
9235 }
9236 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009237 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009238 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009239 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009240 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009241 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009242 },
9243
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009244 {
9245 .vendor = "ST",
9246 .name = "M25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009247 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009248 .manufacture_id = ST_ID,
9249 .model_id = ST_M25P32,
9250 .total_size = 4096,
9251 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009252 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009253 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009254 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009255 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009256 .block_erasers =
9257 {
9258 {
9259 .eraseblocks = { {64 * 1024, 64} },
9260 .block_erase = spi_block_erase_d8,
9261 }, {
9262 .eraseblocks = { {4 * 1024 * 1024, 1} },
9263 .block_erase = spi_block_erase_c7,
9264 }
9265 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009266 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009267 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009268 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009269 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009270 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009271 },
9272
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009273 {
9274 .vendor = "ST",
9275 .name = "M25P64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009276 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009277 .manufacture_id = ST_ID,
9278 .model_id = ST_M25P64,
9279 .total_size = 8192,
9280 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009281 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00009282 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009283 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009284 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009285 .block_erasers =
9286 {
9287 {
9288 .eraseblocks = { {64 * 1024, 128} },
9289 .block_erase = spi_block_erase_d8,
9290 }, {
9291 .eraseblocks = { {8 * 1024 * 1024, 1} },
9292 .block_erase = spi_block_erase_c7,
9293 }
9294 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009295 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009296 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009297 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009298 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009299 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009300 },
9301
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009302 {
9303 .vendor = "ST",
9304 .name = "M25P128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009305 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009306 .manufacture_id = ST_ID,
9307 .model_id = ST_M25P128,
9308 .total_size = 16384,
9309 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009310 .feature_bits = FEATURE_WRSR_WREN,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009311 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009312 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009313 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009314 .block_erasers =
9315 {
9316 {
9317 .eraseblocks = { {256 * 1024, 64} },
9318 .block_erase = spi_block_erase_d8,
9319 }, {
9320 .eraseblocks = { {16 * 1024 * 1024, 1} },
9321 .block_erase = spi_block_erase_c7,
9322 }
9323 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009324 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009325 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009326 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009327 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009328 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009329 },
9330
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009331 {
9332 .vendor = "ST",
Carl Worthd1dd72c2011-03-06 18:45:40 +00009333 .name = "M25PX16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009334 .bustype = BUS_SPI,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009335 .manufacture_id = ST_ID,
9336 .model_id = ST_M25PX16,
9337 .total_size = 2048,
9338 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00009339 /* OTP: 64B total; read 0x4B; write 0x42 */
Steven Zakulec3603a282012-05-02 20:07:57 +00009340 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009341 .tested = TEST_OK_PREW,
9342 .probe = probe_spi_rdid,
9343 .probe_timing = TIMING_ZERO,
9344 .block_erasers =
9345 {
9346 {
9347 .eraseblocks = { { 4 * 1024, 512 } },
9348 .block_erase = spi_block_erase_20,
9349 }, {
9350 .eraseblocks = { {64 * 1024, 32} },
9351 .block_erase = spi_block_erase_d8,
9352 }, {
9353 .eraseblocks = { {2 * 1024 * 1024, 1} },
9354 .block_erase = spi_block_erase_c7,
9355 }
9356 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009357 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl Worthd1dd72c2011-03-06 18:45:40 +00009358 .unlock = spi_disable_blockprotect,
9359 .write = spi_chip_write_256,
9360 .read = spi_chip_read,
9361 },
9362
9363 {
9364 .vendor = "ST",
Jason Shriver4119e9b2010-09-14 13:16:01 +00009365 .name = "M25PX32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009366 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009367 .manufacture_id = ST_ID,
9368 .model_id = ST_M25PX32,
9369 .total_size = 4096,
9370 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009371 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009372 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009373 .probe = probe_spi_rdid,
9374 .probe_timing = TIMING_ZERO,
9375 .block_erasers =
9376 {
9377 {
9378 .eraseblocks = { { 4 * 1024, 1024 } },
9379 .block_erase = spi_block_erase_20,
9380 }, {
9381 .eraseblocks = { {64 * 1024, 64} },
9382 .block_erase = spi_block_erase_d8,
9383 }, {
9384 .eraseblocks = { {4 * 1024 * 1024, 1} },
9385 .block_erase = spi_block_erase_c7,
9386 }
9387 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009388 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009389 .unlock = spi_disable_blockprotect,
9390 .write = spi_chip_write_256,
9391 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009392 .voltage = {2700, 3600},
Jason Shriver4119e9b2010-09-14 13:16:01 +00009393 },
9394
9395 {
9396 .vendor = "ST",
9397 .name = "M25PX64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009398 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009399 .manufacture_id = ST_ID,
9400 .model_id = ST_M25PX64,
9401 .total_size = 8192,
9402 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009403 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009404 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009405 .probe = probe_spi_rdid,
9406 .probe_timing = TIMING_ZERO,
9407 .block_erasers =
9408 {
9409 {
9410 .eraseblocks = { { 4 * 1024, 2048 } },
9411 .block_erase = spi_block_erase_20,
9412 }, {
9413 .eraseblocks = { {64 * 1024, 128} },
9414 .block_erase = spi_block_erase_d8,
9415 }, {
9416 .eraseblocks = { {8 * 1024 * 1024, 1} },
9417 .block_erase = spi_block_erase_c7,
9418 }
9419 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009420 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009421 .unlock = spi_disable_blockprotect,
9422 .write = spi_chip_write_256,
9423 .read = spi_chip_read,
9424 },
9425
9426 {
9427 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009428 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009429 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009430 .manufacture_id = ST_ID,
9431 .model_id = ST_M29F002B,
9432 .total_size = 256,
9433 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009434 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009435 .tested = TEST_UNTESTED,
9436 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009437 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009438 .block_erasers =
9439 {
9440 {
9441 .eraseblocks = {
9442 {16 * 1024, 1},
9443 {8 * 1024, 2},
9444 {32 * 1024, 1},
9445 {64 * 1024, 3},
9446 },
9447 .block_erase = erase_sector_jedec,
9448 }, {
9449 .eraseblocks = { {256 * 1024, 1} },
9450 .block_erase = erase_chip_block_jedec,
9451 }
9452 },
Sean Nelson35727f72010-01-28 23:55:12 +00009453 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009454 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009455 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009456 },
9457
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009458 {
9459 .vendor = "ST",
9460 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009461 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009462 .manufacture_id = ST_ID,
9463 .model_id = ST_M29F002T,
9464 .total_size = 256,
9465 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009466 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +00009467 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009468 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009469 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009470 .block_erasers =
9471 {
9472 {
9473 .eraseblocks = {
9474 {64 * 1024, 3},
9475 {32 * 1024, 1},
9476 {8 * 1024, 2},
9477 {16 * 1024, 1},
9478 },
9479 .block_erase = erase_sector_jedec,
9480 }, {
9481 .eraseblocks = { {256 * 1024, 1} },
9482 .block_erase = erase_chip_block_jedec,
9483 }
9484 },
Sean Nelson35727f72010-01-28 23:55:12 +00009485 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009486 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009487 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009488 },
9489
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009490 {
9491 .vendor = "ST",
9492 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009493 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009494 .manufacture_id = ST_ID,
9495 .model_id = ST_M29F040B,
9496 .total_size = 512,
9497 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009498 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
9499 .tested = TEST_UNTESTED,
9500 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009501 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +00009502 .block_erasers =
9503 {
9504 {
9505 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00009506 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009507 }, {
9508 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009509 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009510 }
9511 },
Sean Nelson35727f72010-01-28 23:55:12 +00009512 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009513 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009514 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009515 },
9516
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009517 {
Sean Nelson35727f72010-01-28 23:55:12 +00009518 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009519 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009520 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009521 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009522 .manufacture_id = ST_ID,
9523 .model_id = ST_M29F400BB,
9524 .total_size = 512,
9525 .page_size = 64 * 1024,
9526 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009527 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009528 .probe = probe_m29f400bt,
9529 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
9530 .block_erasers =
9531 {
9532 {
9533 .eraseblocks = {
9534 {16 * 1024, 1},
9535 {8 * 1024, 2},
9536 {32 * 1024, 1},
9537 {64 * 1024, 7},
9538 },
9539 .block_erase = block_erase_m29f400bt,
9540 }, {
9541 .eraseblocks = { {512 * 1024, 1} },
9542 .block_erase = block_erase_chip_m29f400bt,
9543 }
9544 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009545 .write = write_m29f400bt,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009546 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009547 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009548 },
9549 {
9550 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
9551 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009552 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009553 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009554 .manufacture_id = ST_ID,
9555 .model_id = ST_M29F400BT,
9556 .total_size = 512,
9557 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009558 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009559 .tested = TEST_UNTESTED,
9560 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009561 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009562 .block_erasers =
9563 {
9564 {
9565 .eraseblocks = {
9566 {64 * 1024, 7},
9567 {32 * 1024, 1},
9568 {8 * 1024, 2},
9569 {16 * 1024, 1},
9570 },
9571 .block_erase = block_erase_m29f400bt,
9572 }, {
9573 .eraseblocks = { {512 * 1024, 1} },
9574 .block_erase = block_erase_chip_m29f400bt,
9575 }
9576 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009577 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009578 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009579 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009580 },
9581
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009582 {
9583 .vendor = "ST",
9584 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009585 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009586 .manufacture_id = ST_ID,
9587 .model_id = ST_M29W010B,
9588 .total_size = 128,
9589 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009590 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009591 .tested = TEST_UNTESTED,
9592 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009593 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009594 .block_erasers =
9595 {
9596 {
9597 .eraseblocks = { {16 * 1024, 8}, },
9598 .block_erase = erase_sector_jedec,
9599 }, {
9600 .eraseblocks = { {128 * 1024, 1} },
9601 .block_erase = erase_chip_block_jedec,
9602 }
9603 },
Sean Nelson35727f72010-01-28 23:55:12 +00009604 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009605 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009606 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009607 },
9608
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009609 {
9610 .vendor = "ST",
9611 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009612 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009613 .manufacture_id = ST_ID,
9614 .model_id = ST_M29W040B,
9615 .total_size = 512,
9616 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009617 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009618 .tested = TEST_UNTESTED,
9619 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009620 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009621 .block_erasers =
9622 {
9623 {
9624 .eraseblocks = { {64 * 1024, 8}, },
9625 .block_erase = erase_sector_jedec,
9626 }, {
9627 .eraseblocks = { {512 * 1024, 1} },
9628 .block_erase = erase_chip_block_jedec,
9629 }
9630 },
Sean Nelson35727f72010-01-28 23:55:12 +00009631 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009632 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009633 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009634 },
9635
Stefan Taunereb582572012-09-21 12:52:50 +00009636 {
9637 .vendor = "ST",
9638 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009639 .bustype = BUS_PARALLEL,
Stefan Taunereb582572012-09-21 12:52:50 +00009640 .manufacture_id = ST_ID,
9641 .model_id = ST_M29W512B,
9642 .total_size = 64,
9643 .page_size = 64 * 1024,
9644 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009645 .tested = TEST_OK_PRE,
Stefan Taunereb582572012-09-21 12:52:50 +00009646 .probe = probe_jedec,
9647 .probe_timing = TIMING_ZERO,
9648 .block_erasers =
9649 {
9650 {
9651 .eraseblocks = { {64 * 1024, 1} },
9652 .block_erase = erase_chip_block_jedec,
9653 }
9654 },
9655 .write = write_jedec_1,
9656 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009657 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +00009658 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00009659
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009660 {
9661 .vendor = "ST",
9662 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009663 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009664 .manufacture_id = ST_ID,
9665 .model_id = ST_M50FLW040A,
9666 .total_size = 512,
9667 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009668 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009669 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009670 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009671 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009672 .block_erasers =
9673 {
9674 {
Sean Nelson329bde72010-01-19 16:39:19 +00009675 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009676 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009677 {64 * 1024, 5}, /* block */
9678 {4 * 1024, 16}, /* sector */
9679 {4 * 1024, 16}, /* sector */
9680 },
9681 .block_erase = NULL,
9682 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009683 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009684 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009685 }
9686 },
Sean Nelson28accc22010-03-19 18:47:06 +00009687 .unlock = unlock_stm50flw0x0x,
9688 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009689 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009690 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009691 },
9692
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009693 {
9694 .vendor = "ST",
9695 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009696 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009697 .manufacture_id = ST_ID,
9698 .model_id = ST_M50FLW040B,
9699 .total_size = 512,
9700 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009701 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009702 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009703 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009704 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009705 .block_erasers =
9706 {
9707 {
Sean Nelson329bde72010-01-19 16:39:19 +00009708 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009709 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009710 {4 * 1024, 16}, /* sector */
9711 {64 * 1024, 5}, /* block */
9712 {4 * 1024, 16}, /* sector */
9713 },
9714 .block_erase = NULL,
9715 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009716 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009717 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009718 }
9719 },
Sean Nelson28accc22010-03-19 18:47:06 +00009720 .unlock = unlock_stm50flw0x0x,
9721 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009722 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009723 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009724 },
9725
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009726 {
9727 .vendor = "ST",
9728 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009729 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009730 .manufacture_id = ST_ID,
9731 .model_id = ST_M50FLW080A,
9732 .total_size = 1024,
9733 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009734 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009735 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +00009736 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009737 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009738 .block_erasers =
9739 {
9740 {
Sean Nelson329bde72010-01-19 16:39:19 +00009741 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009742 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009743 {64 * 1024, 13}, /* block */
9744 {4 * 1024, 16}, /* sector */
9745 {4 * 1024, 16}, /* sector */
9746 },
9747 .block_erase = NULL,
9748 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009749 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009750 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009751 }
9752 },
Sean Nelson28accc22010-03-19 18:47:06 +00009753 .unlock = unlock_stm50flw0x0x,
9754 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009755 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009756 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009757 },
9758
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009759 {
9760 .vendor = "ST",
9761 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009762 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009763 .manufacture_id = ST_ID,
9764 .model_id = ST_M50FLW080B,
9765 .total_size = 1024,
9766 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009767 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009768 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009769 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009770 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009771 .block_erasers =
9772 {
9773 {
Sean Nelson329bde72010-01-19 16:39:19 +00009774 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009775 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009776 {4 * 1024, 16}, /* sector */
9777 {64 * 1024, 13}, /* block */
9778 {4 * 1024, 16}, /* sector */
9779 },
9780 .block_erase = NULL,
9781 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009782 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009783 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009784 }
9785 },
Sean Nelson28accc22010-03-19 18:47:06 +00009786 .unlock = unlock_stm50flw0x0x,
9787 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009788 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009789 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009790 },
9791
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009792 {
9793 .vendor = "ST",
9794 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009795 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009796 .manufacture_id = ST_ID,
9797 .model_id = ST_M50FW002,
9798 .total_size = 256,
9799 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009800 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009801 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009802 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009803 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009804 .block_erasers =
9805 {
9806 {
9807 .eraseblocks = {
9808 {64 * 1024, 3},
9809 {32 * 1024, 1},
9810 {8 * 1024, 2},
9811 {16 * 1024, 1},
9812 },
Sean Nelson28accc22010-03-19 18:47:06 +00009813 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009814 }
9815 },
Sean Nelson28accc22010-03-19 18:47:06 +00009816 .unlock = unlock_stm50flw0x0x,
9817 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009818 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009819 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009820 },
9821
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009822 {
9823 .vendor = "ST",
9824 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009825 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009826 .manufacture_id = ST_ID,
9827 .model_id = ST_M50FW016,
9828 .total_size = 2048,
9829 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009830 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009831 .tested = TEST_UNTESTED,
9832 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009833 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009834 .block_erasers =
9835 {
9836 {
9837 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009838 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009839 }
9840 },
Sean Nelson28accc22010-03-19 18:47:06 +00009841 .unlock = unlock_stm50flw0x0x,
9842 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009843 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009844 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009845 },
9846
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009847 {
9848 .vendor = "ST",
9849 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009850 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009851 .manufacture_id = ST_ID,
9852 .model_id = ST_M50FW040,
9853 .total_size = 512,
9854 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009855 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00009856 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009857 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009858 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009859 .block_erasers =
9860 {
9861 {
9862 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009863 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009864 }
9865 },
Sean Nelson28accc22010-03-19 18:47:06 +00009866 .unlock = unlock_stm50flw0x0x,
9867 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009868 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009869 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009870 },
9871
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009872 {
9873 .vendor = "ST",
9874 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009875 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009876 .manufacture_id = ST_ID,
9877 .model_id = ST_M50FW080,
9878 .total_size = 1024,
9879 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009880 .feature_bits = FEATURE_REGISTERMAP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009881 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009882 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009883 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009884 .block_erasers =
9885 {
9886 {
9887 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009888 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009889 }
9890 },
Sean Nelson28accc22010-03-19 18:47:06 +00009891 .unlock = unlock_stm50flw0x0x,
9892 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009893 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009894 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009895 },
9896
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009897 {
9898 .vendor = "ST",
9899 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009900 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009901 .manufacture_id = ST_ID,
9902 .model_id = ST_M50LPW116,
9903 .total_size = 2048,
9904 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009905 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009906 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009907 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00009908 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009909 .block_erasers =
9910 {
9911 {
9912 .eraseblocks = {
9913 {4 * 1024, 16},
9914 {64 * 1024, 30},
9915 {32 * 1024, 1},
9916 {8 * 1024, 2},
9917 {16 * 1024, 1},
9918 },
Sean Nelson28accc22010-03-19 18:47:06 +00009919 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009920 }
9921 },
Sean Nelson28accc22010-03-19 18:47:06 +00009922 .unlock = unlock_stm50flw0x0x,
9923 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009924 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009925 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009926 },
9927
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009928 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009929 .vendor = "SyncMOS/MoselVitelic",
9930 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009931 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009932 .manufacture_id = SYNCMOS_MVC_ID,
9933 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009934 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009935 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00009936 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009937 .tested = TEST_UNTESTED,
9938 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009939 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009940 .block_erasers =
9941 {
9942 {
9943 .eraseblocks = { {512, 256} },
9944 .block_erase = erase_sector_jedec,
9945 }, {
9946 .eraseblocks = { {128 * 1024, 1} },
9947 .block_erase = erase_chip_block_jedec,
9948 },
9949 },
Sean Nelson35727f72010-01-28 23:55:12 +00009950 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009951 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009952 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009953 },
9954
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009955 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00009956 .vendor = "SyncMOS/MoselVitelic",
9957 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009958 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009959 .manufacture_id = SYNCMOS_MVC_ID,
9960 .model_id = SM_MVC_29C51001T,
9961 .total_size = 128,
9962 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00009963 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009964 .tested = TEST_UNTESTED,
9965 .probe = probe_jedec,
9966 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
9967 .block_erasers =
9968 {
9969 {
9970 .eraseblocks = { {512, 256} },
9971 .block_erase = erase_sector_jedec,
9972 }, {
9973 .eraseblocks = { {128 * 1024, 1} },
9974 .block_erase = erase_chip_block_jedec,
9975 },
9976 },
9977 .write = write_jedec_1,
9978 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009979 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00009980 },
9981
9982 {
9983 .vendor = "SyncMOS/MoselVitelic",
9984 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009985 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00009986 .manufacture_id = SYNCMOS_MVC_ID,
9987 .model_id = SM_MVC_29C51002B,
9988 .total_size = 256,
9989 .page_size = 512,
9990 .feature_bits = FEATURE_EITHER_RESET,
9991 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009992 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009993 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009994 .block_erasers =
9995 {
9996 {
9997 .eraseblocks = { {512, 512} },
9998 .block_erase = erase_sector_jedec,
9999 }, {
10000 .eraseblocks = { {256 * 1024, 1} },
10001 .block_erase = erase_chip_block_jedec,
10002 },
10003 },
Sean Nelson35727f72010-01-28 23:55:12 +000010004 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010005 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000010006 },
10007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010008 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010009 .vendor = "SyncMOS/MoselVitelic",
10010 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010011 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010012 .manufacture_id = SYNCMOS_MVC_ID,
10013 .model_id = SM_MVC_29C51002T,
10014 .total_size = 256,
10015 .page_size = 512,
10016 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000010017 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010018 .probe = probe_jedec,
10019 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10020 .block_erasers =
10021 {
10022 {
10023 .eraseblocks = { {512, 512} },
10024 .block_erase = erase_sector_jedec,
10025 }, {
10026 .eraseblocks = { {256 * 1024, 1} },
10027 .block_erase = erase_chip_block_jedec,
10028 },
10029 },
10030 .write = write_jedec_1,
10031 .read = read_memmapped,
10032 },
10033
10034 {
10035 .vendor = "SyncMOS/MoselVitelic",
10036 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010037 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010038 .manufacture_id = SYNCMOS_MVC_ID,
10039 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010040 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010041 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000010042 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010043 .tested = TEST_UNTESTED,
10044 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010045 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +000010046 .block_erasers =
10047 {
10048 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010049 .eraseblocks = { {1024, 512} },
10050 .block_erase = erase_sector_jedec,
10051 }, {
10052 .eraseblocks = { {512 * 1024, 1} },
10053 .block_erase = erase_chip_block_jedec,
10054 },
10055 },
10056 .write = write_jedec_1,
10057 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010058 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010059 },
10060
10061 {
10062 .vendor = "SyncMOS/MoselVitelic",
10063 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010064 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010065 .manufacture_id = SYNCMOS_MVC_ID,
10066 .model_id = SM_MVC_29C51004T,
10067 .total_size = 512,
10068 .page_size = 1024,
10069 .feature_bits = FEATURE_EITHER_RESET,
10070 .tested = TEST_UNTESTED,
10071 .probe = probe_jedec,
10072 .probe_timing = TIMING_ZERO,
10073 .block_erasers =
10074 {
10075 {
10076 .eraseblocks = { {1024, 512} },
10077 .block_erase = erase_sector_jedec,
10078 }, {
10079 .eraseblocks = { {512 * 1024, 1} },
10080 .block_erase = erase_chip_block_jedec,
10081 },
10082 },
10083 .write = write_jedec_1,
10084 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010085 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010086 },
10087
10088 {
10089 .vendor = "SyncMOS/MoselVitelic",
10090 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010091 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010092 .manufacture_id = SYNCMOS_MVC_ID,
10093 .model_id = SM_MVC_29C31004B,
10094 .total_size = 512,
10095 .page_size = 1024,
10096 .feature_bits = FEATURE_EITHER_RESET,
10097 .tested = TEST_UNTESTED,
10098 .probe = probe_jedec,
10099 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10100 .block_erasers =
10101 {
10102 {
10103 .eraseblocks = { {1024, 512} },
10104 .block_erase = erase_sector_jedec,
10105 }, {
10106 .eraseblocks = { {512 * 1024, 1} },
10107 .block_erase = erase_chip_block_jedec,
10108 },
10109 },
10110 .write = write_jedec_1,
10111 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010112 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010113 },
10114
10115 {
10116 .vendor = "SyncMOS/MoselVitelic",
10117 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010118 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010119 .manufacture_id = SYNCMOS_MVC_ID,
10120 .model_id = SM_MVC_29C31004T,
10121 .total_size = 512,
10122 .page_size = 1024,
10123 .feature_bits = FEATURE_EITHER_RESET,
10124 .tested = TEST_UNTESTED,
10125 .probe = probe_jedec,
10126 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10127 .block_erasers =
10128 {
10129 {
10130 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +000010131 .block_erase = erase_sector_jedec,
10132 }, {
10133 .eraseblocks = { {512 * 1024, 1} },
10134 .block_erase = erase_chip_block_jedec,
10135 },
10136 },
Sean Nelson35727f72010-01-28 23:55:12 +000010137 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010138 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010139 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010140 },
10141
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010142 {
Uwe Hermanna106d152009-05-27 23:17:40 +000010143 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010144 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010145 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010146 .manufacture_id = TI_OLD_ID,
10147 .model_id = TI_TMS29F002RB,
10148 .total_size = 256,
10149 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000010150 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010151 .tested = TEST_UNTESTED,
10152 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010153 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010154 .block_erasers =
10155 {
10156 {
10157 .eraseblocks = {
10158 {16 * 1024, 1},
10159 {8 * 1024, 2},
10160 {32 * 1024, 1},
10161 {64 * 1024, 3},
10162 },
10163 .block_erase = erase_sector_jedec,
10164 }, {
10165 .eraseblocks = { {256 * 1024, 1} },
10166 .block_erase = erase_chip_block_jedec,
10167 },
10168 },
Sean Nelson35727f72010-01-28 23:55:12 +000010169 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010170 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010171 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010172 },
10173
10174 {
Uwe Hermanna106d152009-05-27 23:17:40 +000010175 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010176 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010177 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010178 .manufacture_id = TI_OLD_ID,
10179 .model_id = TI_TMS29F002RT,
10180 .total_size = 256,
10181 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000010182 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010183 .tested = TEST_UNTESTED,
10184 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010185 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010186 .block_erasers =
10187 {
10188 {
10189 .eraseblocks = {
10190 {64 * 1024, 3},
10191 {32 * 1024, 1},
10192 {8 * 1024, 2},
10193 {16 * 1024, 1},
10194 },
10195 .block_erase = erase_sector_jedec,
10196 }, {
10197 .eraseblocks = { {256 * 1024, 1} },
10198 .block_erase = erase_chip_block_jedec,
10199 },
10200 },
Sean Nelson35727f72010-01-28 23:55:12 +000010201 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010202 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010203 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010204 },
10205
10206 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010207 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010208 .name = "W25Q80.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010209 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010210 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010211 .model_id = WINBOND_NEX_W25Q80_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010212 .total_size = 1024,
10213 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010214 /* supports SFDP */
10215 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010216 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010217 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010218 .probe = probe_spi_rdid,
10219 .probe_timing = TIMING_ZERO,
10220 .block_erasers =
10221 {
10222 {
10223 .eraseblocks = { {4 * 1024, 256} },
10224 .block_erase = spi_block_erase_20,
10225 }, {
10226 .eraseblocks = { {32 * 1024, 32} },
10227 .block_erase = spi_block_erase_52,
10228 }, {
10229 .eraseblocks = { {64 * 1024, 16} },
10230 .block_erase = spi_block_erase_d8,
10231 }, {
10232 .eraseblocks = { {1024 * 1024, 1} },
10233 .block_erase = spi_block_erase_60,
10234 }, {
10235 .eraseblocks = { {1024 * 1024, 1} },
10236 .block_erase = spi_block_erase_c7,
10237 }
10238 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010239 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010240 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010241 .write = spi_chip_write_256,
10242 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010243 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010244 },
10245
10246 {
10247 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010248 .name = "W25Q16.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010249 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010250 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010251 .model_id = WINBOND_NEX_W25Q16_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010252 .total_size = 2048,
10253 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010254 /* supports SFDP */
10255 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010256 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +000010257 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010258 .probe = probe_spi_rdid,
10259 .probe_timing = TIMING_ZERO,
10260 .block_erasers =
10261 {
10262 {
10263 .eraseblocks = { {4 * 1024, 512} },
10264 .block_erase = spi_block_erase_20,
10265 }, {
10266 .eraseblocks = { {32 * 1024, 64} },
10267 .block_erase = spi_block_erase_52,
10268 }, {
10269 .eraseblocks = { {64 * 1024, 32} },
10270 .block_erase = spi_block_erase_d8,
10271 }, {
10272 .eraseblocks = { {2 * 1024 * 1024, 1} },
10273 .block_erase = spi_block_erase_60,
10274 }, {
10275 .eraseblocks = { {2 * 1024 * 1024, 1} },
10276 .block_erase = spi_block_erase_c7,
10277 }
10278 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010279 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010280 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010281 .write = spi_chip_write_256,
10282 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010283 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010284 },
10285
10286 {
10287 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010288 .name = "W25Q32.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010289 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010290 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010291 .model_id = WINBOND_NEX_W25Q32_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010292 .total_size = 4096,
10293 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010294 /* supports SFDP */
10295 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010296 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010297 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010298 .probe = probe_spi_rdid,
10299 .probe_timing = TIMING_ZERO,
10300 .block_erasers =
10301 {
10302 {
10303 .eraseblocks = { {4 * 1024, 1024} },
10304 .block_erase = spi_block_erase_20,
10305 }, {
10306 .eraseblocks = { {32 * 1024, 128} },
10307 .block_erase = spi_block_erase_52,
10308 }, {
10309 .eraseblocks = { {64 * 1024, 64} },
10310 .block_erase = spi_block_erase_d8,
10311 }, {
10312 .eraseblocks = { {4 * 1024 * 1024, 1} },
10313 .block_erase = spi_block_erase_60,
10314 }, {
10315 .eraseblocks = { {4 * 1024 * 1024, 1} },
10316 .block_erase = spi_block_erase_c7,
10317 }
10318 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010319 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010320 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010321 .write = spi_chip_write_256,
10322 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010323 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010324 },
10325
10326 {
10327 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010328 .name = "W25Q64.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010329 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +000010330 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010331 .model_id = WINBOND_NEX_W25Q64_V,
David Hendricksc4acec92010-06-24 11:39:57 +000010332 .total_size = 8192,
10333 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010334 /* supports SFDP */
10335 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010336 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010337 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +000010338 .probe = probe_spi_rdid,
10339 .probe_timing = TIMING_ZERO,
10340 .block_erasers =
10341 {
10342 {
10343 .eraseblocks = { {4 * 1024, 2048} },
10344 .block_erase = spi_block_erase_20,
10345 }, {
10346 .eraseblocks = { {32 * 1024, 256} },
10347 .block_erase = spi_block_erase_52,
10348 }, {
10349 .eraseblocks = { {64 * 1024, 128} },
10350 .block_erase = spi_block_erase_d8,
10351 }, {
10352 .eraseblocks = { {8 * 1024 * 1024, 1} },
10353 .block_erase = spi_block_erase_60,
10354 }, {
10355 .eraseblocks = { {8 * 1024 * 1024, 1} },
10356 .block_erase = spi_block_erase_c7,
10357 }
10358 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010359 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010360 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +000010361 .write = spi_chip_write_256,
10362 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010363 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000010364 },
10365
10366 {
10367 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010368 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010369 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010370 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010371 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010372 .total_size = 16384,
10373 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010374 /* supports SFDP */
10375 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010376 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010377 .tested = TEST_OK_PROBE,
10378 .probe = probe_spi_rdid,
10379 .probe_timing = TIMING_ZERO,
10380 .block_erasers =
10381 {
10382 {
10383 .eraseblocks = { {4 * 1024, 4096} },
10384 .block_erase = spi_block_erase_20,
10385 }, {
10386 .eraseblocks = { {32 * 1024, 512} },
10387 .block_erase = spi_block_erase_52,
10388 }, {
10389 .eraseblocks = { {64 * 1024, 256} },
10390 .block_erase = spi_block_erase_d8,
10391 }, {
10392 .eraseblocks = { {16 * 1024 * 1024, 1} },
10393 .block_erase = spi_block_erase_60,
10394 }, {
10395 .eraseblocks = { {16 * 1024 * 1024, 1} },
10396 .block_erase = spi_block_erase_c7,
10397 }
10398 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010399 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010400 .unlock = spi_disable_blockprotect,
10401 .write = spi_chip_write_256,
10402 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010403 .voltage = {2700, 3600},
10404 },
10405
10406 {
10407 .vendor = "Winbond",
10408 .name = "W25Q20.W",
10409 .bustype = BUS_SPI,
10410 .manufacture_id = WINBOND_NEX_ID,
10411 .model_id = WINBOND_NEX_W25Q20_W,
10412 .total_size = 256,
10413 .page_size = 256,
10414 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10415 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10416 .tested = TEST_UNTESTED,
10417 .probe = probe_spi_rdid,
10418 .probe_timing = TIMING_ZERO,
10419 .block_erasers =
10420 {
10421 {
10422 .eraseblocks = { {4 * 1024, 64} },
10423 .block_erase = spi_block_erase_20,
10424 }, {
10425 .eraseblocks = { {32 * 1024, 8} },
10426 .block_erase = spi_block_erase_52,
10427 }, {
10428 .eraseblocks = { {64 * 1024, 4} },
10429 .block_erase = spi_block_erase_d8,
10430 }, {
10431 .eraseblocks = { {256 * 1024, 1} },
10432 .block_erase = spi_block_erase_60,
10433 }, {
10434 .eraseblocks = { {256 * 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 */
10443 },
10444
10445 {
10446 .vendor = "Winbond",
10447 .name = "W25Q40.W",
10448 .bustype = BUS_SPI,
10449 .manufacture_id = WINBOND_NEX_ID,
10450 .model_id = WINBOND_NEX_W25Q40_W,
10451 .total_size = 512,
10452 .page_size = 256,
10453 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10454 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10455 .tested = TEST_UNTESTED,
10456 .probe = probe_spi_rdid,
10457 .probe_timing = TIMING_ZERO,
10458 .block_erasers =
10459 {
10460 {
10461 .eraseblocks = { {4 * 1024, 128} },
10462 .block_erase = spi_block_erase_20,
10463 }, {
10464 .eraseblocks = { {32 * 1024, 16} },
10465 .block_erase = spi_block_erase_52,
10466 }, {
10467 .eraseblocks = { {64 * 1024, 8} },
10468 .block_erase = spi_block_erase_d8,
10469 }, {
10470 .eraseblocks = { {512 * 1024, 1} },
10471 .block_erase = spi_block_erase_60,
10472 }, {
10473 .eraseblocks = { {512 * 1024, 1} },
10474 .block_erase = spi_block_erase_c7,
10475 }
10476 },
10477 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10478 .unlock = spi_disable_blockprotect,
10479 .write = spi_chip_write_256,
10480 .read = spi_chip_read,
10481 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10482 },
10483
10484 {
10485 .vendor = "Winbond",
10486 .name = "W25Q80.W",
10487 .bustype = BUS_SPI,
10488 .manufacture_id = WINBOND_NEX_ID,
10489 .model_id = WINBOND_NEX_W25Q80_W,
10490 .total_size = 1024,
10491 .page_size = 256,
10492 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10493 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10494 .tested = TEST_UNTESTED,
10495 .probe = probe_spi_rdid,
10496 .probe_timing = TIMING_ZERO,
10497 .block_erasers =
10498 {
10499 {
10500 .eraseblocks = { {4 * 1024, 256} },
10501 .block_erase = spi_block_erase_20,
10502 }, {
10503 .eraseblocks = { {32 * 1024, 32} },
10504 .block_erase = spi_block_erase_52,
10505 }, {
10506 .eraseblocks = { {64 * 1024, 16} },
10507 .block_erase = spi_block_erase_d8,
10508 }, {
10509 .eraseblocks = { {1 * 1024 * 1024, 1} },
10510 .block_erase = spi_block_erase_60,
10511 }, {
10512 .eraseblocks = { {1 * 1024 * 1024, 1} },
10513 .block_erase = spi_block_erase_c7,
10514 }
10515 },
10516 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10517 .unlock = spi_disable_blockprotect,
10518 .write = spi_chip_write_256,
10519 .read = spi_chip_read,
10520 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10521 },
10522
10523 {
10524 .vendor = "Winbond",
10525 .name = "W25Q16.W",
10526 .bustype = BUS_SPI,
10527 .manufacture_id = WINBOND_NEX_ID,
10528 .model_id = WINBOND_NEX_W25Q16_W,
10529 .total_size = 2048,
10530 .page_size = 256,
10531 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10532 /* QPI enable 0x38, disable 0xFF */
10533 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10534 .tested = TEST_UNTESTED,
10535 .probe = probe_spi_rdid,
10536 .probe_timing = TIMING_ZERO,
10537 .block_erasers =
10538 {
10539 {
10540 .eraseblocks = { {4 * 1024, 512} },
10541 .block_erase = spi_block_erase_20,
10542 }, {
10543 .eraseblocks = { {32 * 1024, 64} },
10544 .block_erase = spi_block_erase_52,
10545 }, {
10546 .eraseblocks = { {64 * 1024, 32} },
10547 .block_erase = spi_block_erase_d8,
10548 }, {
10549 .eraseblocks = { {2 * 1024 * 1024, 1} },
10550 .block_erase = spi_block_erase_60,
10551 }, {
10552 .eraseblocks = { {2 * 1024 * 1024, 1} },
10553 .block_erase = spi_block_erase_c7,
10554 }
10555 },
10556 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10557 .unlock = spi_disable_blockprotect,
10558 .write = spi_chip_write_256,
10559 .read = spi_chip_read,
10560 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10561 },
10562
10563 {
10564 .vendor = "Winbond",
10565 .name = "W25Q32.W",
10566 .bustype = BUS_SPI,
10567 .manufacture_id = WINBOND_NEX_ID,
10568 .model_id = WINBOND_NEX_W25Q32_W,
10569 .total_size = 4096,
10570 .page_size = 256,
10571 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10572 /* QPI enable 0x38, disable 0xFF */
10573 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10574 .tested = TEST_OK_PREW,
10575 .probe = probe_spi_rdid,
10576 .probe_timing = TIMING_ZERO,
10577 .block_erasers =
10578 {
10579 {
10580 .eraseblocks = { {4 * 1024, 1024} },
10581 .block_erase = spi_block_erase_20,
10582 }, {
10583 .eraseblocks = { {32 * 1024, 128} },
10584 .block_erase = spi_block_erase_52,
10585 }, {
10586 .eraseblocks = { {64 * 1024, 64} },
10587 .block_erase = spi_block_erase_d8,
10588 }, {
10589 .eraseblocks = { {4 * 1024 * 1024, 1} },
10590 .block_erase = spi_block_erase_60,
10591 }, {
10592 .eraseblocks = { {4 * 1024 * 1024, 1} },
10593 .block_erase = spi_block_erase_c7,
10594 }
10595 },
10596 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10597 .unlock = spi_disable_blockprotect,
10598 .write = spi_chip_write_256,
10599 .read = spi_chip_read,
10600 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10601 },
10602
10603 {
10604 .vendor = "Winbond",
10605 .name = "W25Q64.W",
10606 .bustype = BUS_SPI,
10607 .manufacture_id = WINBOND_NEX_ID,
10608 .model_id = WINBOND_NEX_W25Q64_W,
10609 .total_size = 8192,
10610 .page_size = 256,
10611 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10612 /* QPI enable 0x38, disable 0xFF */
10613 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10614 .tested = TEST_UNTESTED,
10615 .probe = probe_spi_rdid,
10616 .probe_timing = TIMING_ZERO,
10617 .block_erasers =
10618 {
10619 {
10620 .eraseblocks = { {4 * 1024, 2048} },
10621 .block_erase = spi_block_erase_20,
10622 }, {
10623 .eraseblocks = { {32 * 1024, 256} },
10624 .block_erase = spi_block_erase_52,
10625 }, {
10626 .eraseblocks = { {64 * 1024, 128} },
10627 .block_erase = spi_block_erase_d8,
10628 }, {
10629 .eraseblocks = { {8 * 1024 * 1024, 1} },
10630 .block_erase = spi_block_erase_60,
10631 }, {
10632 .eraseblocks = { {8 * 1024 * 1024, 1} },
10633 .block_erase = spi_block_erase_c7,
10634 }
10635 },
10636 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10637 .unlock = spi_disable_blockprotect,
10638 .write = spi_chip_write_256,
10639 .read = spi_chip_read,
10640 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010641 },
10642
10643 {
10644 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010645 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010646 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010647 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010648 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010649 .total_size = 128,
10650 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010651 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000010652 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010653 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010654 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010655 .block_erasers =
10656 {
10657 {
10658 .eraseblocks = { {4 * 1024, 32} },
10659 .block_erase = spi_block_erase_20,
10660 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010661 .eraseblocks = { {64 * 1024, 2} },
10662 .block_erase = spi_block_erase_d8,
10663 }, {
10664 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010665 .block_erase = spi_block_erase_c7,
10666 }
10667 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010668 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010669 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010670 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010671 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010672 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010673 },
10674
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010675 {
10676 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010677 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010678 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010679 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010680 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010681 .total_size = 256,
10682 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010683 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010684 .tested = TEST_UNTESTED,
10685 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010686 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010687 .block_erasers =
10688 {
10689 {
10690 .eraseblocks = { {4 * 1024, 64} },
10691 .block_erase = spi_block_erase_20,
10692 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010693 .eraseblocks = { {64 * 1024, 4} },
10694 .block_erase = spi_block_erase_d8,
10695 }, {
10696 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010697 .block_erase = spi_block_erase_c7,
10698 }
10699 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010700 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010701 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010702 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010703 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010704 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010705 },
10706
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010707 {
10708 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010709 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010710 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010711 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010712 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010713 .total_size = 512,
10714 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010715 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +000010716 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010717 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010718 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010719 .block_erasers =
10720 {
10721 {
10722 .eraseblocks = { {4 * 1024, 128} },
10723 .block_erase = spi_block_erase_20,
10724 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010725 .eraseblocks = { {64 * 1024, 8} },
10726 .block_erase = spi_block_erase_d8,
10727 }, {
10728 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010729 .block_erase = spi_block_erase_c7,
10730 }
10731 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010732 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010733 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010734 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010735 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010736 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010737 },
10738
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010739 {
10740 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010741 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010742 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010743 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010744 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010745 .total_size = 1024,
10746 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010747 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +000010748 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010749 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010750 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010751 .block_erasers =
10752 {
10753 {
10754 .eraseblocks = { {4 * 1024, 256} },
10755 .block_erase = spi_block_erase_20,
10756 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010757 .eraseblocks = { {64 * 1024, 16} },
10758 .block_erase = spi_block_erase_d8,
10759 }, {
10760 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010761 .block_erase = spi_block_erase_c7,
10762 }
10763 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010764 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010765 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010766 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010767 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010768 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010769 },
10770
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010771 {
10772 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010773 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010774 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000010775 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010776 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000010777 .total_size = 2048,
10778 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010779 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000010780 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000010781 .probe = probe_spi_rdid,
10782 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010783 .block_erasers =
10784 {
10785 {
10786 .eraseblocks = { {4 * 1024, 512} },
10787 .block_erase = spi_block_erase_20,
10788 }, {
10789 .eraseblocks = { {32 * 1024, 64} },
10790 .block_erase = spi_block_erase_52,
10791 }, {
10792 .eraseblocks = { {64 * 1024, 32} },
10793 .block_erase = spi_block_erase_d8,
10794 }, {
10795 .eraseblocks = { {2 * 1024 * 1024, 1} },
10796 .block_erase = spi_block_erase_60,
10797 }, {
10798 .eraseblocks = { {2 * 1024 * 1024, 1} },
10799 .block_erase = spi_block_erase_c7,
10800 }
10801 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010802 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010803 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000010804 .write = spi_chip_write_256,
10805 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010806 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000010807 },
10808
10809 {
10810 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010811 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010812 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000010813 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010814 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000010815 .total_size = 4096,
10816 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010817 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +000010818 .tested = TEST_OK_PROBE,
10819 .probe = probe_spi_rdid,
10820 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010821 .block_erasers =
10822 {
10823 {
10824 .eraseblocks = { {4 * 1024, 1024} },
10825 .block_erase = spi_block_erase_20,
10826 }, {
10827 .eraseblocks = { {32 * 1024, 128} },
10828 .block_erase = spi_block_erase_52,
10829 }, {
10830 .eraseblocks = { {64 * 1024, 64} },
10831 .block_erase = spi_block_erase_d8,
10832 }, {
10833 .eraseblocks = { {4 * 1024 * 1024, 1} },
10834 .block_erase = spi_block_erase_60,
10835 }, {
10836 .eraseblocks = { {4 * 1024 * 1024, 1} },
10837 .block_erase = spi_block_erase_c7,
10838 }
10839 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010840 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010841 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000010842 .write = spi_chip_write_256,
10843 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010844 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000010845 },
10846
10847 {
10848 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010849 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010850 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000010851 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010852 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000010853 .total_size = 8192,
10854 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010855 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010856 .tested = TEST_OK_PROBE,
Zheng Bao1db2b752009-11-26 11:05:01 +000010857 .probe = probe_spi_rdid,
10858 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010859 .block_erasers =
10860 {
10861 {
10862 .eraseblocks = { {4 * 1024, 2048} },
10863 .block_erase = spi_block_erase_20,
10864 }, {
10865 .eraseblocks = { {32 * 1024, 256} },
10866 .block_erase = spi_block_erase_52,
10867 }, {
10868 .eraseblocks = { {64 * 1024, 128} },
10869 .block_erase = spi_block_erase_d8,
10870 }, {
10871 .eraseblocks = { {8 * 1024 * 1024, 1} },
10872 .block_erase = spi_block_erase_60,
10873 }, {
10874 .eraseblocks = { {8 * 1024 * 1024, 1} },
10875 .block_erase = spi_block_erase_c7,
10876 }
10877 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010878 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010879 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000010880 .write = spi_chip_write_256,
10881 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010882 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000010883 },
10884
10885 {
10886 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000010887 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010888 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000010889 .manufacture_id = WINBOND_ID,
10890 .model_id = WINBOND_W29C010,
10891 .total_size = 128,
10892 .page_size = 128,
10893 .feature_bits = FEATURE_LONG_RESET,
10894 .tested = TEST_OK_PRE,
10895 .probe = probe_w29ee011,
10896 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
10897 .block_erasers =
10898 {
10899 {
10900 .eraseblocks = { {128 * 1024, 1} },
10901 .block_erase = erase_chip_block_jedec,
10902 }
10903 },
10904 .write = write_jedec,
10905 .read = read_memmapped,
10906 },
10907
10908 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
10909 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010910 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010911 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010912 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010913 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010914 .total_size = 128,
10915 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000010916 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000010917 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010918 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010919 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010920 .block_erasers =
10921 {
10922 {
10923 .eraseblocks = { {128 * 1024, 1} },
10924 .block_erase = erase_chip_block_jedec,
10925 }
10926 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010927 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010928 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000010929 },
10930
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010931 {
10932 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010933 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010934 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010935 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010936 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010937 .total_size = 256,
10938 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000010939 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010940 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010941 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010942 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010943 .block_erasers =
10944 {
10945 {
10946 .eraseblocks = { {256 * 1024, 1} },
10947 .block_erase = erase_chip_block_jedec,
10948 }
10949 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010950 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010951 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010952 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000010953 },
10954
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010955 {
10956 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000010957 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010958 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010959 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010960 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010961 .total_size = 512,
10962 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000010963 .feature_bits = FEATURE_LONG_RESET,
10964 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010965 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +000010966 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010967 .block_erasers =
10968 {
10969 {
10970 .eraseblocks = { {512 * 1024, 1} },
10971 .block_erase = erase_chip_block_jedec,
10972 }
10973 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010974 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010975 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010976 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000010977 },
10978
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010979 {
10980 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000010981 .name = "W39F010",
10982 .bustype = BUS_PARALLEL,
10983 .manufacture_id = WINBOND_ID,
10984 .model_id = WINBOND_W39F010,
10985 .total_size = 128,
10986 .page_size = 4 * 1024,
10987 .feature_bits = FEATURE_EITHER_RESET,
10988 .tested = TEST_OK_PREW,
10989 .probe = probe_jedec,
10990 .probe_timing = 10,
10991 .block_erasers =
10992 {
10993 {
10994 .eraseblocks = { {4 * 1024, 32} },
10995 .block_erase = erase_block_jedec,
10996 }, {
10997 .eraseblocks = { {128 * 1024, 1} },
10998 .block_erase = erase_chip_block_jedec,
10999 }
11000 },
11001 .printlock = printlock_w39f010,
11002 .write = write_jedec_1,
11003 .read = read_memmapped,
11004 .voltage = {4500, 5500},
11005 },
11006
11007 {
11008 .vendor = "Winbond",
11009 .name = "W39L010",
11010 .bustype = BUS_PARALLEL,
11011 .manufacture_id = WINBOND_ID,
11012 .model_id = WINBOND_W39L010,
11013 .total_size = 128,
11014 .page_size = 4 * 1024,
11015 .feature_bits = FEATURE_EITHER_RESET,
11016 .tested = TEST_UNTESTED,
11017 .probe = probe_jedec,
11018 .probe_timing = 10,
11019 .block_erasers =
11020 {
11021 {
11022 .eraseblocks = { {4 * 1024, 32} },
11023 .block_erase = erase_block_jedec,
11024 }, {
11025 .eraseblocks = { {128 * 1024, 1} },
11026 .block_erase = erase_chip_block_jedec,
11027 }
11028 },
11029 .printlock = printlock_w39l010,
11030 .write = write_jedec_1,
11031 .read = read_memmapped,
11032 .voltage = {3000, 3600},
11033 },
11034
11035 {
11036 .vendor = "Winbond",
11037 .name = "W39L020",
11038 .bustype = BUS_PARALLEL,
11039 .manufacture_id = WINBOND_ID,
11040 .model_id = WINBOND_W39L020,
11041 .total_size = 256,
11042 .page_size = 4 * 1024,
11043 .feature_bits = FEATURE_EITHER_RESET,
11044 .tested = TEST_UNTESTED,
11045 .probe = probe_jedec,
11046 .probe_timing = 10,
11047 .block_erasers =
11048 {
11049 {
11050 .eraseblocks = { {4 * 1024, 64} },
11051 .block_erase = erase_block_jedec,
11052 }, {
11053 .eraseblocks = { {64 * 1024, 4} },
11054 .block_erase = erase_sector_jedec,
11055 }, {
11056 .eraseblocks = { {256 * 1024, 1} },
11057 .block_erase = erase_chip_block_jedec,
11058 }
11059 },
11060 .printlock = printlock_w39l020,
11061 .write = write_jedec_1,
11062 .read = read_memmapped,
11063 .voltage = {3000, 3600},
11064 },
11065
11066 {
11067 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000011068 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011069 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000011070 .manufacture_id = WINBOND_ID,
11071 .model_id = WINBOND_W39L040,
11072 .total_size = 512,
11073 .page_size = 64 * 1024,
11074 .feature_bits = FEATURE_EITHER_RESET,
11075 .tested = TEST_OK_PR,
11076 .probe = probe_jedec,
11077 .probe_timing = 10,
11078 .block_erasers =
11079 {
11080 {
11081 .eraseblocks = { {4 * 1024, 128} },
11082 .block_erase = erase_block_jedec,
11083 }, {
11084 .eraseblocks = { {64 * 1024, 8} },
11085 .block_erase = erase_sector_jedec,
11086 }, {
11087 .eraseblocks = { {512 * 1024, 1} },
11088 .block_erase = erase_chip_block_jedec,
11089 }
11090 },
11091 .printlock = printlock_w39l040,
11092 .write = write_jedec_1,
11093 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011094 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000011095 },
11096
11097 {
11098 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011099 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011100 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011101 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011102 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011103 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011104 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011105 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011106 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011107 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000011108 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011109 .block_erasers =
11110 {
11111 {
11112 .eraseblocks = { {64 * 1024, 8} },
11113 .block_erase = erase_sector_jedec,
11114 }, {
11115 .eraseblocks = { {512 * 1024, 1} },
11116 .block_erase = erase_chip_block_jedec,
11117 }
11118 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011119 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000011120 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011121 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011122 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011123 },
11124
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011125 {
11126 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011127 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011128 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011129 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011130 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011131 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011132 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011133 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011134 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011135 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000011136 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011137 .block_erasers =
11138 {
11139 {
11140 .eraseblocks = { {64 * 1024, 8} },
11141 .block_erase = erase_sector_jedec,
11142 }, {
11143 .eraseblocks = { {512 * 1024, 1} },
11144 .block_erase = erase_chip_block_jedec,
11145 }
11146 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011147 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000011148 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011149 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011150 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011151 },
11152
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011153 {
11154 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011155 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011156 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011157 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011158 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011159 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011160 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011161 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011162 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000011163 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011164 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011165 .block_erasers =
11166 {
11167 {
11168 .eraseblocks = { {64 * 1024, 8} },
11169 .block_erase = erase_sector_jedec,
11170 }, {
11171 .eraseblocks = { {512 * 1024, 1} },
11172 .block_erase = erase_chip_block_jedec,
11173 }
11174 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000011175 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000011176 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011177 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011178 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011179 },
11180
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011181 {
11182 .vendor = "Winbond",
11183 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011184 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011185 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011186 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011187 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011188 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000011189 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Antony Rheneus0fbba982011-05-26 14:28:51 +000011190 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011191 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000011192 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011193 .block_erasers =
11194 {
11195 {
11196 .eraseblocks = { {4 * 1024, 128} },
11197 .block_erase = erase_block_jedec,
11198 }, {
11199 .eraseblocks = { {64 * 1024, 8} },
11200 .block_erase = erase_sector_jedec,
11201 }, {
11202 .eraseblocks = { {512 * 1024, 1} },
11203 .block_erase = erase_chip_block_jedec,
11204 }
11205 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011206 .printlock = printlock_w39v040fa,
Michael Karcherc9b63412010-05-30 16:55:18 +000011207 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +000011208 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011209 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011210 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011211 },
11212
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011213 {
11214 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011215 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011216 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011217 .manufacture_id = WINBOND_ID,
11218 .model_id = WINBOND_W39V040B,
11219 .total_size = 512,
11220 .page_size = 64 * 1024,
11221 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000011222 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011223 .probe = probe_jedec,
11224 .probe_timing = 10,
11225 .block_erasers =
11226 {
11227 {
11228 .eraseblocks = { {64 * 1024, 8} },
11229 .block_erase = erase_sector_jedec,
11230 }, {
11231 .eraseblocks = { {512 * 1024, 1} },
11232 .block_erase = erase_chip_block_jedec,
11233 }
11234 },
11235 .printlock = printlock_w39v040fb,
Idwer Volleringecc67072010-12-26 23:55:12 +000011236 .unlock = unlock_w39v040fb,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011237 .write = write_jedec_1,
11238 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011239 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011240 },
11241
11242 {
11243 .vendor = "Winbond",
11244 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011245 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011246 .manufacture_id = WINBOND_ID,
11247 .model_id = WINBOND_W39V040C,
11248 .total_size = 512,
11249 .page_size = 64 * 1024,
11250 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011251 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011252 .probe = probe_jedec,
11253 .probe_timing = 10,
11254 .block_erasers =
11255 {
11256 {
11257 .eraseblocks = { {64 * 1024, 8} },
11258 .block_erase = erase_sector_jedec,
11259 }, {
11260 .eraseblocks = { {512 * 1024, 1} },
11261 .block_erase = erase_chip_block_jedec,
11262 }
11263 },
11264 .printlock = printlock_w39v040fc,
11265 .write = write_jedec_1,
11266 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011267 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011268 },
11269
11270 {
11271 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011272 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011273 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011274 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011275 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011276 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011277 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011278 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000011279 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011280 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000011281 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011282 .block_erasers =
11283 {
11284 {
11285 .eraseblocks = { {64 * 1024, 16} },
11286 .block_erase = erase_sector_jedec,
11287 }, {
11288 .eraseblocks = { {1024 * 1024, 1} },
11289 .block_erase = erase_chip_block_jedec,
11290 }
11291 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011292 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000011293 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011294 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011295 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011296 },
11297
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011298 {
11299 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011300 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011301 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011302 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011303 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011304 .total_size = 256,
11305 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011306 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011307 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011308 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011309 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011310 .block_erasers =
11311 {
11312 {
11313 .eraseblocks = {
11314 {128 * 1024, 1},
11315 {96 * 1024, 1},
11316 {8 * 1024, 2},
11317 {16 * 1024, 1},
11318 },
11319 .block_erase = erase_sector_jedec,
11320 }, {
11321 .eraseblocks = { {256 * 1024, 1} },
11322 .block_erase = erase_chip_block_jedec,
11323 }
11324 },
Sean Nelson35727f72010-01-28 23:55:12 +000011325 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011326 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011327 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000011328 },
11329
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011330 {
11331 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011332 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011333 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011334 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011335 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011336 .total_size = 256,
11337 .page_size = 128,
11338 .feature_bits = FEATURE_EITHER_RESET,
11339 .tested = TEST_OK_PROBE,
11340 .probe = probe_jedec,
11341 .probe_timing = 10,
11342 .block_erasers =
11343 {
11344 {
11345 .eraseblocks = { {256 * 1024, 1} },
11346 .block_erase = erase_chip_block_jedec,
11347 }
11348 },
11349 .write = write_jedec_1,
11350 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011351 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011352 },
11353
11354 {
11355 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011356 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011357 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011358 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011359 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011360 .total_size = 256,
11361 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011362 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011363 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011364 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011365 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011366 .block_erasers =
11367 {
11368 {
11369 .eraseblocks = {
11370 {64 * 1024, 3},
11371 {32 * 1024, 1},
11372 {8 * 1024, 2},
11373 {16 * 1024, 1},
11374 },
11375 .block_erase = erase_sector_jedec,
11376 }, {
11377 .eraseblocks = { {256 * 1024, 1} },
11378 .block_erase = erase_chip_block_jedec,
11379 }
11380 },
Sean Nelson35727f72010-01-28 23:55:12 +000011381 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011382 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011383 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011384 },
11385
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011386 {
11387 .vendor = "Winbond",
11388 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011389 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011390 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011391 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011392 .total_size = 256,
11393 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011394 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000011395 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011396 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011397 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011398 .block_erasers =
11399 {
11400 {
11401 .eraseblocks = {
11402 {64 * 1024, 3},
11403 {32 * 1024, 1},
11404 {8 * 1024, 2},
11405 {16 * 1024, 1},
11406 },
11407 .block_erase = erase_sector_jedec,
11408 }, {
11409 .eraseblocks = { {256 * 1024, 1} },
11410 .block_erase = erase_chip_block_jedec,
11411 }
11412 },
Sean Nelson35727f72010-01-28 23:55:12 +000011413 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011414 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011415 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011416 },
11417
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011418 {
11419 .vendor = "Winbond",
11420 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011421 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011422 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011423 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011424 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011425 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011426 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011427 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011428 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011429 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011430 .block_erasers =
11431 {
11432 {
11433 .eraseblocks = { {64 * 1024, 16}, },
11434 .block_erase = erase_sector_jedec,
11435 }, {
11436 .eraseblocks = { {1024 * 1024, 1} },
11437 .block_erase = erase_chip_block_jedec,
11438 }
11439 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011440 .printlock = printlock_w39v080fa,
11441 .unlock = unlock_w39v080fa,
Sean Nelson35727f72010-01-28 23:55:12 +000011442 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011443 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011444 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011445 },
11446
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011447 {
11448 .vendor = "Winbond",
11449 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011450 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011451 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011452 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011453 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011454 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011455 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011456 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011457 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011458 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011459 .block_erasers =
11460 {
11461 {
11462 .eraseblocks = { {64 * 1024, 8}, },
11463 .block_erase = erase_sector_jedec,
11464 }, {
11465 .eraseblocks = { {512 * 1024, 1} },
11466 .block_erase = erase_chip_block_jedec,
11467 }
11468 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011469 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +000011470 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011471 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011472 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011473 },
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011474
11475 {
11476 .vendor = "Unknown",
11477 .name = "SFDP-capable chip",
11478 .bustype = BUS_SPI,
11479 .manufacture_id = GENERIC_MANUF_ID,
11480 .model_id = SFDP_DEVICE_ID,
11481 /* We present our own "report this" text hence we do not
11482 * want the default "This flash part has status UNTESTED..."
11483 * text to be printed. */
11484 .tested = TEST_OK_PREW,
11485 .probe = probe_spi_sfdp,
11486 .unlock = spi_disable_blockprotect, /* is this safe? */
11487 .read = spi_chip_read,
11488 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000011489 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011490 /* Everything below will be set by the probing function. */
11491 .write = NULL,
11492 .total_size = 0,
11493 .page_size = 0,
11494 .feature_bits = 0,
11495 .block_erasers = {},
11496 },
FENG yu ningff692fb2008-12-08 18:15:10 +000011497
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011498 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000011499 .vendor = "Programmer",
11500 .name = "Opaque flash chip",
11501 .bustype = BUS_PROG,
11502 .manufacture_id = PROGMANUF_ID,
11503 .model_id = PROGDEV_ID,
11504 .total_size = 0,
11505 .page_size = 256,
11506 /* probe is assumed to work, rest will be filled in by probe */
11507 .tested = TEST_OK_PROBE,
11508 .probe = probe_opaque,
11509 /* eraseblock sizes will be set by the probing function */
11510 .block_erasers =
11511 {
11512 {
11513 .block_erase = erase_opaque,
11514 }
11515 },
11516 .write = write_opaque,
11517 .read = read_opaque,
11518 },
11519
11520 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011521 .vendor = "AMIC",
11522 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011523 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011524 .manufacture_id = AMIC_ID,
11525 .model_id = GENERIC_DEVICE_ID,
11526 .total_size = 0,
11527 .page_size = 256,
11528 .tested = TEST_BAD_PREW,
11529 .probe = probe_spi_rdid4,
11530 .probe_timing = TIMING_ZERO,
11531 .write = NULL,
11532 .read = NULL,
11533 },
11534
11535 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011536 .vendor = "Atmel",
11537 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011538 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011539 .manufacture_id = ATMEL_ID,
11540 .model_id = GENERIC_DEVICE_ID,
11541 .total_size = 0,
11542 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011543 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011544 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011545 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011546 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011547 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011548 },
11549
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011550 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000011551 .vendor = "Eon",
11552 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011553 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011554 .manufacture_id = EON_ID_NOPREFIX,
11555 .model_id = GENERIC_DEVICE_ID,
11556 .total_size = 0,
11557 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011558 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011559 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011560 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011561 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011562 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011563 },
11564
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011565 {
11566 .vendor = "Macronix",
11567 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011568 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011569 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011570 .model_id = GENERIC_DEVICE_ID,
11571 .total_size = 0,
11572 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011573 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011574 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011575 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011576 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011577 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011578 },
11579
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011580 {
11581 .vendor = "PMC",
11582 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011583 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011584 .manufacture_id = PMC_ID,
11585 .model_id = GENERIC_DEVICE_ID,
11586 .total_size = 0,
11587 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011588 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011589 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011590 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011591 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011592 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011593 },
11594
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011595 {
11596 .vendor = "SST",
11597 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011598 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011599 .manufacture_id = SST_ID,
11600 .model_id = GENERIC_DEVICE_ID,
11601 .total_size = 0,
11602 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011603 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011604 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011605 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011606 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011607 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011608 },
11609
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011610 {
11611 .vendor = "ST",
11612 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011613 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011614 .manufacture_id = ST_ID,
11615 .model_id = GENERIC_DEVICE_ID,
11616 .total_size = 0,
11617 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011618 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011619 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011620 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011621 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011622 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011623 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000011624
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011625 {
Sean Nelson118e1d62009-11-24 02:08:11 +000011626 .vendor = "Sanyo",
11627 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011628 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000011629 .manufacture_id = SANYO_ID,
11630 .model_id = GENERIC_DEVICE_ID,
11631 .total_size = 0,
11632 .page_size = 256,
11633 .tested = TEST_BAD_PREW,
11634 .probe = probe_spi_rdid,
11635 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000011636 .write = NULL,
11637 .read = NULL,
11638 },
11639
11640 {
Stefan Taunereb582572012-09-21 12:52:50 +000011641 .vendor = "Winbond",
11642 .name = "unknown Winbond (ex Nexcom) SPI chip",
11643 .bustype = BUS_SPI,
11644 .manufacture_id = WINBOND_NEX_ID,
11645 .model_id = GENERIC_DEVICE_ID,
11646 .total_size = 0,
11647 .page_size = 256,
11648 .tested = TEST_BAD_PREW,
11649 .probe = probe_spi_rdid,
11650 .probe_timing = TIMING_ZERO,
11651 .write = NULL,
11652 .read = NULL,
11653 },
11654
11655 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011656 .vendor = "Generic",
11657 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011658 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011659 .manufacture_id = GENERIC_MANUF_ID,
11660 .model_id = GENERIC_DEVICE_ID,
11661 .total_size = 0,
11662 .page_size = 256,
11663 .tested = TEST_BAD_PREW,
11664 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011665 .write = NULL,
11666 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000011667
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011668 {
11669 .vendor = "Generic",
11670 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011671 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011672 .manufacture_id = GENERIC_MANUF_ID,
11673 .model_id = GENERIC_DEVICE_ID,
11674 .total_size = 0,
11675 .page_size = 256,
11676 .tested = TEST_BAD_PREW,
11677 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011678 .write = NULL,
11679 },
11680
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011681 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +000011682};