blob: 331ea4d6485c0cc97ab73f8cf50010089393def8 [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",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004176 .name = "GD25LQ32",
4177 .bustype = BUS_SPI,
4178 .manufacture_id = GIGADEVICE_ID,
4179 .model_id = GIGADEVICE_GD25LQ32,
4180 .total_size = 4096,
4181 .page_size = 256,
4182 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
4183 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4184 .tested = TEST_OK_PREW,
4185 .probe = probe_spi_rdid,
4186 .probe_timing = TIMING_ZERO,
4187 .block_erasers =
4188 {
4189 {
4190 .eraseblocks = { {4 * 1024, 1024} },
4191 .block_erase = spi_block_erase_20,
4192 }, {
4193 .eraseblocks = { {32 * 1024, 128} },
4194 .block_erase = spi_block_erase_52,
4195 }, {
4196 .eraseblocks = { {64 * 1024, 64} },
4197 .block_erase = spi_block_erase_d8,
4198 }, {
4199 .eraseblocks = { {4 * 1024 * 1024, 1} },
4200 .block_erase = spi_block_erase_60,
4201 }, {
4202 .eraseblocks = { {4 * 1024 * 1024, 1} },
4203 .block_erase = spi_block_erase_c7,
4204 }
4205 },
4206 .printlock = spi_prettyprint_status_register_default_bp4,
4207 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
4208 .write = spi_chip_write_256,
4209 .read = spi_chip_read,
4210 .voltage = {1700, 1950},
4211 },
4212
4213 {
4214 .vendor = "GigaDevice",
4215 .name = "GD25Q512",
4216 .bustype = BUS_SPI,
4217 .manufacture_id = GIGADEVICE_ID,
4218 .model_id = GIGADEVICE_GD25Q512,
4219 .total_size = 64,
4220 .page_size = 256,
4221 .feature_bits = FEATURE_WRSR_WREN,
4222 .tested = TEST_UNTESTED,
4223 .probe = probe_spi_rdid,
4224 .probe_timing = TIMING_ZERO,
4225 .block_erasers = {
4226 {
4227 .eraseblocks = { {4 * 1024, 16} },
4228 .block_erase = spi_block_erase_20,
4229 }, {
4230 .eraseblocks = { {32 * 1024, 2} },
4231 .block_erase = spi_block_erase_52,
4232 }, {
4233 .eraseblocks = { {64 * 1024, 1} },
4234 .block_erase = spi_block_erase_60,
4235 }, {
4236 .eraseblocks = { {64 * 1024, 1} },
4237 .block_erase = spi_block_erase_c7,
4238 }
4239 },
4240 .printlock = spi_prettyprint_status_register_default_bp4,
4241 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
4242 .write = spi_chip_write_256,
4243 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
4244 .voltage = {2700, 3600},
4245 },
4246
4247 {
4248 .vendor = "GigaDevice",
4249 .name = "GD25Q10",
4250 .bustype = BUS_SPI,
4251 .manufacture_id = GIGADEVICE_ID,
4252 .model_id = GIGADEVICE_GD25Q10,
4253 .total_size = 128,
4254 .page_size = 256,
4255 .feature_bits = FEATURE_WRSR_WREN,
4256 .tested = TEST_UNTESTED,
4257 .probe = probe_spi_rdid,
4258 .probe_timing = TIMING_ZERO,
4259 .block_erasers = {
4260 {
4261 .eraseblocks = { {4 * 1024, 32} },
4262 .block_erase = spi_block_erase_20,
4263 }, {
4264 .eraseblocks = { {32 * 1024, 4} },
4265 .block_erase = spi_block_erase_52,
4266 }, {
4267 .eraseblocks = { {64 * 1024, 2} },
4268 .block_erase = spi_block_erase_d8,
4269 }, {
4270 .eraseblocks = { {128 * 1024, 1} },
4271 .block_erase = spi_block_erase_60,
4272 }, {
4273 .eraseblocks = { {128 * 1024, 1} },
4274 .block_erase = spi_block_erase_c7,
4275 }
4276 },
4277 .printlock = spi_prettyprint_status_register_default_bp4,
4278 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
4279 .write = spi_chip_write_256,
4280 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
4281 .voltage = {2700, 3600},
4282 },
4283
4284 {
4285 .vendor = "GigaDevice",
4286 .name = "GD25Q20(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004287 .bustype = BUS_SPI,
4288 .manufacture_id = GIGADEVICE_ID,
4289 .model_id = GIGADEVICE_GD25Q20,
4290 .total_size = 256,
4291 .page_size = 256,
4292 .feature_bits = FEATURE_WRSR_WREN,
4293 .tested = TEST_UNTESTED,
4294 .probe = probe_spi_rdid,
4295 .probe_timing = TIMING_ZERO,
4296 .block_erasers =
4297 {
4298 {
4299 .eraseblocks = { {4 * 1024, 64} },
4300 .block_erase = spi_block_erase_20,
4301 }, {
4302 .eraseblocks = { {32 * 1024, 8} },
4303 .block_erase = spi_block_erase_52,
4304 }, {
4305 .eraseblocks = { {64 * 1024, 4} },
4306 .block_erase = spi_block_erase_d8,
4307 }, {
4308 .eraseblocks = { {256 * 1024, 1} },
4309 .block_erase = spi_block_erase_60,
4310 }, {
4311 .eraseblocks = { {256 * 1024, 1} },
4312 .block_erase = spi_block_erase_c7,
4313 }
4314 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004315 .printlock = spi_prettyprint_status_register_default_bp4,
4316 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004317 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004318 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Taunereb582572012-09-21 12:52:50 +00004319 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004320 },
4321
4322 {
4323 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004324 .name = "GD25Q40(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004325 .bustype = BUS_SPI,
4326 .manufacture_id = GIGADEVICE_ID,
4327 .model_id = GIGADEVICE_GD25Q40,
4328 .total_size = 512,
4329 .page_size = 256,
4330 .feature_bits = FEATURE_WRSR_WREN,
4331 .tested = TEST_UNTESTED,
4332 .probe = probe_spi_rdid,
4333 .probe_timing = TIMING_ZERO,
4334 .block_erasers =
4335 {
4336 {
4337 .eraseblocks = { {4 * 1024, 128} },
4338 .block_erase = spi_block_erase_20,
4339 }, {
4340 .eraseblocks = { {32 * 1024, 16} },
4341 .block_erase = spi_block_erase_52,
4342 }, {
4343 .eraseblocks = { {64 * 1024, 8} },
4344 .block_erase = spi_block_erase_d8,
4345 }, {
4346 .eraseblocks = { {512 * 1024, 1} },
4347 .block_erase = spi_block_erase_60,
4348 }, {
4349 .eraseblocks = { {512 * 1024, 1} },
4350 .block_erase = spi_block_erase_c7,
4351 }
4352 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004353 .printlock = spi_prettyprint_status_register_default_bp4,
4354 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004355 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004356 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Taunereb582572012-09-21 12:52:50 +00004357 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004358 },
4359
4360 {
4361 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004362 .name = "GD25Q80(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004363 .bustype = BUS_SPI,
4364 .manufacture_id = GIGADEVICE_ID,
4365 .model_id = GIGADEVICE_GD25Q80,
4366 .total_size = 1024,
4367 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004368 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004369 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4370 .tested = TEST_OK_PREW,
4371 .probe = probe_spi_rdid,
4372 .probe_timing = TIMING_ZERO,
4373 .block_erasers =
4374 {
4375 {
4376 .eraseblocks = { {4 * 1024, 256} },
4377 .block_erase = spi_block_erase_20,
4378 }, {
4379 .eraseblocks = { {32 * 1024, 32} },
4380 .block_erase = spi_block_erase_52,
4381 }, {
4382 .eraseblocks = { {64 * 1024, 16} },
4383 .block_erase = spi_block_erase_d8,
4384 }, {
4385 .eraseblocks = { {1024 * 1024, 1} },
4386 .block_erase = spi_block_erase_60,
4387 }, {
4388 .eraseblocks = { {1024 * 1024, 1} },
4389 .block_erase = spi_block_erase_c7,
4390 }
4391 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004392 .printlock = spi_prettyprint_status_register_default_bp4,
4393 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004394 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004395 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004396 .voltage = {2700, 3600},
4397 },
4398
4399 {
4400 .vendor = "GigaDevice",
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004401 .name = "GD25Q16(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004402 .bustype = BUS_SPI,
4403 .manufacture_id = GIGADEVICE_ID,
4404 .model_id = GIGADEVICE_GD25Q16,
4405 .total_size = 2048,
4406 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004407 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 (B version only) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004408 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4409 .tested = TEST_UNTESTED,
4410 .probe = probe_spi_rdid,
4411 .probe_timing = TIMING_ZERO,
4412 .block_erasers =
4413 {
4414 {
4415 .eraseblocks = { {4 * 1024, 512} },
4416 .block_erase = spi_block_erase_20,
4417 }, {
4418 .eraseblocks = { {32 * 1024, 64} },
4419 .block_erase = spi_block_erase_52,
4420 }, {
4421 .eraseblocks = { {64 * 1024, 32} },
4422 .block_erase = spi_block_erase_d8,
4423 }, {
4424 .eraseblocks = { {2 * 1024 * 1024, 1} },
4425 .block_erase = spi_block_erase_60,
4426 }, {
4427 .eraseblocks = { {2 * 1024 * 1024, 1} },
4428 .block_erase = spi_block_erase_c7,
4429 }
4430 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004431 .printlock = spi_prettyprint_status_register_default_bp4,
4432 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004433 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004434 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004435 .voltage = {2700, 3600},
4436 },
4437
4438 {
4439 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004440 .name = "GD25Q32(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004441 .bustype = BUS_SPI,
4442 .manufacture_id = GIGADEVICE_ID,
4443 .model_id = GIGADEVICE_GD25Q32,
4444 .total_size = 4096,
4445 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004446 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004447 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4448 .tested = TEST_UNTESTED,
4449 .probe = probe_spi_rdid,
4450 .probe_timing = TIMING_ZERO,
4451 .block_erasers =
4452 {
4453 {
4454 .eraseblocks = { {4 * 1024, 1024} },
4455 .block_erase = spi_block_erase_20,
4456 }, {
4457 .eraseblocks = { {32 * 1024, 128} },
4458 .block_erase = spi_block_erase_52,
4459 }, {
4460 .eraseblocks = { {64 * 1024, 64} },
4461 .block_erase = spi_block_erase_d8,
4462 }, {
4463 .eraseblocks = { {4 * 1024 * 1024, 1} },
4464 .block_erase = spi_block_erase_60,
4465 }, {
4466 .eraseblocks = { {4 * 1024 * 1024, 1} },
4467 .block_erase = spi_block_erase_c7,
4468 }
4469 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004470 .printlock = spi_prettyprint_status_register_default_bp4,
4471 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004472 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004473 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004474 .voltage = {2700, 3600},
4475 },
4476
4477 {
4478 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004479 .name = "GD25Q64(B)",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004480 .bustype = BUS_SPI,
4481 .manufacture_id = GIGADEVICE_ID,
4482 .model_id = GIGADEVICE_GD25Q64,
4483 .total_size = 8192,
4484 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004485 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004486 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00004487 .tested = TEST_OK_PREW,
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004488 .probe = probe_spi_rdid,
4489 .probe_timing = TIMING_ZERO,
4490 .block_erasers =
4491 {
4492 {
4493 .eraseblocks = { {4 * 1024, 2048} },
4494 .block_erase = spi_block_erase_20,
4495 }, {
4496 .eraseblocks = { {32 * 1024, 256} },
4497 .block_erase = spi_block_erase_52,
4498 }, {
4499 .eraseblocks = { {64 * 1024, 128} },
4500 .block_erase = spi_block_erase_d8,
4501 }, {
4502 .eraseblocks = { {8 * 1024 * 1024, 1} },
4503 .block_erase = spi_block_erase_60,
4504 }, {
4505 .eraseblocks = { {8 * 1024 * 1024, 1} },
4506 .block_erase = spi_block_erase_c7,
4507 }
4508 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004509 .printlock = spi_prettyprint_status_register_default_bp4,
4510 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004511 .write = spi_chip_write_256,
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004512 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Stefan Tauner352e50b2013-02-22 15:58:45 +00004513 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004514 },
4515
4516 {
4517 .vendor = "GigaDevice",
Stefan Tauner352e50b2013-02-22 15:58:45 +00004518 .name = "GD25Q128B",
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004519 .bustype = BUS_SPI,
4520 .manufacture_id = GIGADEVICE_ID,
4521 .model_id = GIGADEVICE_GD25Q128,
4522 .total_size = 16384,
4523 .page_size = 256,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004524 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44 */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004525 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4526 .tested = TEST_UNTESTED,
4527 .probe = probe_spi_rdid,
4528 .probe_timing = TIMING_ZERO,
4529 .block_erasers =
4530 {
4531 {
4532 .eraseblocks = { {4 * 1024, 4096} },
4533 .block_erase = spi_block_erase_20,
4534 }, {
4535 .eraseblocks = { {32 * 1024, 512} },
4536 .block_erase = spi_block_erase_52,
4537 }, {
4538 .eraseblocks = { {64 * 1024, 256} },
4539 .block_erase = spi_block_erase_d8,
4540 }, {
4541 .eraseblocks = { {16 * 1024 * 1024, 1} },
4542 .block_erase = spi_block_erase_60,
4543 }, {
4544 .eraseblocks = { {16 * 1024 * 1024, 1} },
4545 .block_erase = spi_block_erase_c7,
4546 }
4547 },
Nikolay Nikolaev3f3390b2013-06-28 21:28:56 +00004548 .printlock = spi_prettyprint_status_register_default_bp4,
4549 .unlock = spi_disable_blockprotect_bp4_srwd, /* TODO: 2nd status reg (read with 0x35) */
4550 .write = spi_chip_write_256,
4551 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
4552 .voltage = {2700, 3600},
4553 },
4554
4555 {
4556 .vendor = "GigaDevice",
4557 .name = "GD25T80",
4558 .bustype = BUS_SPI,
4559 .manufacture_id = GIGADEVICE_ID,
4560 .model_id = GIGADEVICE_GD25T80,
4561 .total_size = 1024,
4562 .page_size = 256,
4563 /* OTP: 256B total; enter 0x3A */
4564 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4565 .tested = TEST_UNTESTED,
4566 .probe = probe_spi_rdid,
4567 .probe_timing = TIMING_ZERO,
4568 .block_erasers = {
4569 {
4570 .eraseblocks = { {4 * 1024, 256} },
4571 .block_erase = spi_block_erase_20,
4572 }, {
4573 .eraseblocks = { {64 * 1024, 16} },
4574 .block_erase = spi_block_erase_52,
4575 }, {
4576 .eraseblocks = { {64 * 1024, 16} },
4577 .block_erase = spi_block_erase_d8,
4578 }, {
4579 .eraseblocks = { {1024 * 1024, 1} },
4580 .block_erase = spi_block_erase_60,
4581 }, {
4582 .eraseblocks = { {1024 * 1024, 1} },
4583 .block_erase = spi_block_erase_c7,
4584 }
4585 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00004586 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004587 .unlock = spi_disable_blockprotect,
4588 .write = spi_chip_write_256,
4589 .read = spi_chip_read,
Stefan Tauner352e50b2013-02-22 15:58:45 +00004590 .voltage = {2700, 3600},
Justin Chevrier1525b2a2012-04-14 21:59:23 +00004591 },
4592
4593 {
David Borgc96a8bd2010-06-21 16:12:22 +00004594 .vendor = "Hyundai",
4595 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004596 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004597 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004598 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00004599 .total_size = 256,
4600 .page_size = 256 * 1024,
4601 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004602 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00004603 .probe = probe_jedec,
4604 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4605 .block_erasers =
4606 {
4607 {
4608 .eraseblocks = {
4609 {64 * 1024, 3},
4610 {32 * 1024, 1},
4611 {8 * 1024, 2},
4612 {16 * 1024, 1},
4613 },
4614 .block_erase = erase_sector_jedec,
4615 }, {
4616 .eraseblocks = { {256 * 1024, 1} },
4617 .block_erase = erase_chip_block_jedec,
4618 },
4619 },
4620 .write = write_jedec_1,
4621 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004622 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004623 },
4624
4625 {
4626 .vendor = "Hyundai",
4627 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004628 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004629 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004630 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00004631 .total_size = 256,
4632 .page_size = 256 * 1024,
4633 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
4634 .tested = TEST_UNTESTED,
4635 .probe = probe_jedec,
4636 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4637 .block_erasers =
4638 {
4639 {
4640 .eraseblocks = {
4641 {16 * 1024, 1},
4642 {8 * 1024, 2},
4643 {32 * 1024, 1},
4644 {64 * 1024, 3},
4645 },
4646 .block_erase = erase_sector_jedec,
4647 }, {
4648 .eraseblocks = { {256 * 1024, 1} },
4649 .block_erase = erase_chip_block_jedec,
4650 },
4651 },
4652 .write = write_jedec_1,
4653 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004654 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004655 },
4656
4657 {
Joshua Roysf1324e02010-09-16 00:51:51 +00004658 .vendor = "Hyundai",
4659 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004660 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00004661 .manufacture_id = HYUNDAI_ID,
4662 .model_id = HYUNDAI_HY29F040A,
4663 .total_size = 512,
4664 .page_size = 64 * 1024,
4665 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4666 .tested = TEST_UNTESTED,
4667 .probe = probe_jedec,
4668 .probe_timing = TIMING_ZERO,
4669 .block_erasers =
4670 {
4671 {
4672 .eraseblocks = { {64 * 1024, 8} },
4673 .block_erase = erase_sector_jedec,
4674 }, {
4675 .eraseblocks = { {512 * 1024, 1} },
4676 .block_erase = erase_chip_block_jedec,
4677 },
4678 },
4679 .write = write_jedec_1,
4680 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004681 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00004682 },
4683
4684 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004685 .vendor = "Intel",
Stefan Tauner54aaa4a2012-12-29 15:04:12 +00004686 .name = "25F160S33B8",
4687 .bustype = BUS_SPI,
4688 .manufacture_id = INTEL_ID,
4689 .model_id = INTEL_25F160S33B8,
4690 .total_size = 2048,
4691 .page_size = 256,
4692 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4693 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4694 .tested = TEST_UNTESTED,
4695 .probe = probe_spi_rdid,
4696 .probe_timing = TIMING_ZERO,
4697 .block_erasers =
4698 {
4699 {
4700 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4701 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4702 * have no effect on the memory contents, but sets a flag in the SR.
4703 .eraseblocks = {
4704 {8 * 1024, 8},
4705 {64 * 1024, 31} // inaccessible
4706 },
4707 .block_erase = spi_block_erase_40,
4708 }, { */
4709 .eraseblocks = { {64 * 1024, 32} },
4710 .block_erase = spi_block_erase_d8,
4711 }, {
4712 .eraseblocks = { {2 * 1024 * 1024, 1} },
4713 .block_erase = spi_block_erase_c7,
4714 }
4715 },
4716 .printlock = spi_prettyprint_status_register_s33,
4717 .unlock = spi_disable_blockprotect_s33,
4718 .write = spi_chip_write_256,
4719 .read = spi_chip_read, /* also fast read 0x0B */
4720 .voltage = {2700, 3600},
4721 },
4722
4723 {
4724 .vendor = "Intel",
4725 .name = "25F160S33T8",
4726 .bustype = BUS_SPI,
4727 .manufacture_id = INTEL_ID,
4728 .model_id = INTEL_25F160S33T8,
4729 .total_size = 2048,
4730 .page_size = 256,
4731 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4732 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4733 .tested = TEST_UNTESTED,
4734 .probe = probe_spi_rdid,
4735 .probe_timing = TIMING_ZERO,
4736 .block_erasers =
4737 {
4738 {
4739 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4740 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4741 * have no effect on the memory contents, but sets a flag in the SR.
4742 .eraseblocks = {
4743 {64 * 1024, 31}, // inaccessible
4744 {8 * 1024, 8}
4745 },
4746 .block_erase = spi_block_erase_40,
4747 }, { */
4748 .eraseblocks = { {64 * 1024, 32} },
4749 .block_erase = spi_block_erase_d8,
4750 }, {
4751 .eraseblocks = { {2 * 1024 * 1024, 1} },
4752 .block_erase = spi_block_erase_c7,
4753 }
4754 },
4755 .printlock = spi_prettyprint_status_register_s33,
4756 .unlock = spi_disable_blockprotect_s33,
4757 .write = spi_chip_write_256,
4758 .read = spi_chip_read, /* also fast read 0x0B */
4759 .voltage = {2700, 3600},
4760 },
4761
4762 {
4763 .vendor = "Intel",
4764 .name = "25F320S33B8",
4765 .bustype = BUS_SPI,
4766 .manufacture_id = INTEL_ID,
4767 .model_id = INTEL_25F320S33B8,
4768 .total_size = 4096,
4769 .page_size = 256,
4770 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4771 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4772 .tested = TEST_UNTESTED,
4773 .probe = probe_spi_rdid,
4774 .probe_timing = TIMING_ZERO,
4775 .block_erasers =
4776 {
4777 {
4778 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4779 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4780 * have no effect on the memory contents, but sets a flag in the SR.
4781 .eraseblocks = {
4782 {8 * 1024, 8},
4783 {64 * 1024, 63} // inaccessible
4784 },
4785 .block_erase = spi_block_erase_40,
4786 }, { */
4787 .eraseblocks = { {64 * 1024, 64} },
4788 .block_erase = spi_block_erase_d8,
4789 }, {
4790 .eraseblocks = { {4 * 1024 * 1024, 1} },
4791 .block_erase = spi_block_erase_c7,
4792 }
4793 },
4794 .printlock = spi_prettyprint_status_register_s33,
4795 .unlock = spi_disable_blockprotect_s33,
4796 .write = spi_chip_write_256,
4797 .read = spi_chip_read, /* also fast read 0x0B */
4798 .voltage = {2700, 3600},
4799 },
4800
4801 {
4802 .vendor = "Intel",
4803 .name = "25F320S33T8",
4804 .bustype = BUS_SPI,
4805 .manufacture_id = INTEL_ID,
4806 .model_id = INTEL_25F320S33T8,
4807 .total_size = 4096,
4808 .page_size = 256,
4809 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4810 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4811 .tested = TEST_UNTESTED,
4812 .probe = probe_spi_rdid,
4813 .probe_timing = TIMING_ZERO,
4814 .block_erasers =
4815 {
4816 {
4817 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4818 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4819 * have no effect on the memory contents, but sets a flag in the SR.
4820 .eraseblocks = {
4821 {64 * 1024, 63}, // inaccessible
4822 {8 * 1024, 8}
4823 },
4824 .block_erase = spi_block_erase_40,
4825 }, { */
4826 .eraseblocks = { {64 * 1024, 64} },
4827 .block_erase = spi_block_erase_d8,
4828 }, {
4829 .eraseblocks = { {4 * 1024 * 1024, 1} },
4830 .block_erase = spi_block_erase_c7,
4831 }
4832 },
4833 .printlock = spi_prettyprint_status_register_s33,
4834 .unlock = spi_disable_blockprotect_s33,
4835 .write = spi_chip_write_256,
4836 .read = spi_chip_read, /* also fast read 0x0B */
4837 .voltage = {2700, 3600},
4838 },
4839
4840 {
4841 .vendor = "Intel",
4842 .name = "25F640S33B8",
4843 .bustype = BUS_SPI,
4844 .manufacture_id = INTEL_ID,
4845 .model_id = INTEL_25F640S33B8,
4846 .total_size = 8192,
4847 .page_size = 256,
4848 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4849 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4850 .tested = TEST_UNTESTED,
4851 .probe = probe_spi_rdid,
4852 .probe_timing = TIMING_ZERO,
4853 .block_erasers =
4854 {
4855 {
4856 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4857 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4858 * have no effect on the memory contents, but sets a flag in the SR.
4859 .eraseblocks = {
4860 {8 * 1024, 8},
4861 {64 * 1024, 127} // inaccessible
4862 },
4863 .block_erase = spi_block_erase_40,
4864 }, { */
4865 .eraseblocks = { {64 * 1024, 128} },
4866 .block_erase = spi_block_erase_d8,
4867 }, {
4868 .eraseblocks = { {8 * 1024 * 1024, 1} },
4869 .block_erase = spi_block_erase_c7,
4870 }
4871 },
4872 .printlock = spi_prettyprint_status_register_s33,
4873 .unlock = spi_disable_blockprotect_s33,
4874 .write = spi_chip_write_256,
4875 .read = spi_chip_read, /* also fast read 0x0B */
4876 .voltage = {2700, 3600},
4877 },
4878
4879 {
4880 .vendor = "Intel",
4881 .name = "25F640S33T8",
4882 .bustype = BUS_SPI,
4883 .manufacture_id = INTEL_ID,
4884 .model_id = INTEL_25F640S33T8,
4885 .total_size = 8192,
4886 .page_size = 256,
4887 /* OTP: 506B total (2x 8B, 30x 16B, 1x 10B); read 0x4B; write 0x42 */
4888 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4889 .tested = TEST_UNTESTED,
4890 .probe = probe_spi_rdid,
4891 .probe_timing = TIMING_ZERO,
4892 .block_erasers =
4893 {
4894 {
4895 /* This chip supports erasing of the 8 so-called "parameter blocks" with
4896 * opcode 0x40. Trying to access an address outside these 8 8kB blocks does
4897 * have no effect on the memory contents, but sets a flag in the SR.
4898 .eraseblocks = {
4899 {64 * 1024, 127}, // inaccessible
4900 {8 * 1024, 8}
4901 },
4902 .block_erase = spi_block_erase_40,
4903 }, { */
4904 .eraseblocks = { {64 * 1024, 128} },
4905 .block_erase = spi_block_erase_d8,
4906 }, {
4907 .eraseblocks = { {8 * 1024 * 1024, 1} },
4908 .block_erase = spi_block_erase_c7,
4909 }
4910 },
4911 .printlock = spi_prettyprint_status_register_s33,
4912 .unlock = spi_disable_blockprotect_s33,
4913 .write = spi_chip_write_256,
4914 .read = spi_chip_read, /* also fast read 0x0B */
4915 .voltage = {2700, 3600},
4916 },
4917
4918 {
4919 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004920 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004921 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004922 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004923 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004924 .total_size = 128,
4925 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00004926 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004927 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004928 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004929 .block_erasers =
4930 {
4931 {
4932 .eraseblocks = {
4933 {8 * 1024, 1},
4934 {4 * 1024, 2},
4935 {112 * 1024, 1},
4936 },
Sean Nelson28accc22010-03-19 18:47:06 +00004937 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004938 },
4939 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004940 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004941 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004942 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004943 },
4944
4945 {
4946 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004947 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004948 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004949 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004950 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004951 .total_size = 128,
4952 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004953 .tested = TEST_OK_PR,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004954 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004955 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004956 .block_erasers =
4957 {
4958 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004959 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00004960 {112 * 1024, 1},
4961 {4 * 1024, 2},
4962 {8 * 1024, 1},
4963 },
Sean Nelson28accc22010-03-19 18:47:06 +00004964 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004965 },
4966 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004967 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004968 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004969 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004970 },
4971
4972 {
4973 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004974 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004975 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004976 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004977 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004978 .total_size = 256,
4979 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004980 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004981 .probe = probe_82802ab,
4982 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4983 .block_erasers =
4984 {
4985 {
4986 .eraseblocks = {
4987 {128 * 1024, 1},
4988 {96 * 1024, 1},
4989 {8 * 1024, 2},
4990 {16 * 1024, 1},
4991 },
4992 .block_erase = erase_block_82802ab,
4993 },
4994 },
4995 .write = write_82802ab,
4996 .read = read_memmapped,
4997 },
4998
4999 {
5000 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005001 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005002 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00005003 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005004 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00005005 .total_size = 512,
5006 .page_size = 256,
5007 .tested = TEST_UNTESTED,
5008 .probe = probe_82802ab,
5009 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00005010 .block_erasers =
5011 {
5012 {
5013 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00005014 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00005015 },
5016 },
Sean Nelsondee4a832010-03-22 04:39:31 +00005017 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00005018 .write = write_82802ab,
5019 .read = read_memmapped,
5020 },
5021
5022 {
5023 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005024 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005025 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00005026 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005027 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00005028 .total_size = 512,
5029 .page_size = 128 * 1024, /* maximal block size */
5030 .tested = TEST_UNTESTED,
5031 .probe = probe_82802ab,
5032 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5033 .block_erasers =
5034 {
5035 {
5036 .eraseblocks = {
5037 {16 * 1024, 1},
5038 {8 * 1024, 2},
5039 {96 * 1024, 1},
5040 {128 * 1024, 3},
5041 },
5042 .block_erase = erase_block_82802ab,
5043 },
5044 },
5045 .write = write_82802ab,
5046 .read = read_memmapped,
5047 },
5048
5049 {
5050 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005051 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005052 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00005053 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005054 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00005055 .total_size = 512,
5056 .page_size = 128 * 1024, /* maximal block size */
5057 .tested = TEST_UNTESTED,
5058 .probe = probe_82802ab,
5059 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5060 .block_erasers =
5061 {
5062 {
5063 .eraseblocks = {
5064 {128 * 1024, 3},
5065 {96 * 1024, 1},
5066 {8 * 1024, 2},
5067 {16 * 1024, 1},
5068 },
5069 .block_erase = erase_block_82802ab,
5070 },
5071 },
5072 .write = write_82802ab,
5073 .read = read_memmapped,
5074 },
5075
5076 {
5077 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005078 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005079 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00005080 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005081 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00005082 .total_size = 512,
5083 .page_size = 128 * 1024, /* maximal block size */
5084 .feature_bits = FEATURE_ADDR_SHIFTED,
5085 .tested = TEST_UNTESTED,
5086 .probe = probe_82802ab,
5087 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5088 .block_erasers =
5089 {
5090 {
5091 .eraseblocks = {
5092 {16 * 1024, 1},
5093 {8 * 1024, 2},
5094 {96 * 1024, 1},
5095 {128 * 1024, 3},
5096 },
5097 .block_erase = erase_block_82802ab,
5098 },
5099 },
5100 .write = write_82802ab,
5101 .read = read_memmapped,
5102 },
5103
5104 {
5105 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005106 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005107 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00005108 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005109 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00005110 .total_size = 512,
5111 .page_size = 128 * 1024, /* maximal block size */
5112 .feature_bits = FEATURE_ADDR_SHIFTED,
5113 .tested = TEST_UNTESTED,
5114 .probe = probe_82802ab,
5115 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5116 .block_erasers =
5117 {
5118 {
5119 .eraseblocks = {
5120 {128 * 1024, 3},
5121 {96 * 1024, 1},
5122 {8 * 1024, 2},
5123 {16 * 1024, 1},
5124 },
5125 .block_erase = erase_block_82802ab,
5126 },
5127 },
5128 .write = write_82802ab,
5129 .read = read_memmapped,
5130 },
5131
5132 {
5133 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005134 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005135 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005136 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005137 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005138 .total_size = 512,
5139 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005140 .feature_bits = FEATURE_REGISTERMAP,
Stefan Taunerd06d9412011-06-12 19:47:55 +00005141 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005142 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005143 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005144 .block_erasers =
5145 {
5146 {
5147 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00005148 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005149 },
5150 },
Sean Nelson28accc22010-03-19 18:47:06 +00005151 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005152 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005153 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005154 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005155 },
5156
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005157 {
5158 .vendor = "Intel",
5159 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005160 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005161 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00005162 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005163 .total_size = 1024,
5164 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005165 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00005166 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005167 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005168 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00005169 .block_erasers =
5170 {
5171 {
5172 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00005173 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00005174 },
5175 },
Sean Nelson28accc22010-03-19 18:47:06 +00005176 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005177 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005178 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005179 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005180 },
5181
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005182 {
5183 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005184 .name = "MX25L512(E)/MX25V512(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005185 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005186 .manufacture_id = MACRONIX_ID,
5187 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005188 .total_size = 64,
5189 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005190 /* MX25L512E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005191 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005192 .tested = TEST_UNTESTED,
5193 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005194 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005195 .block_erasers =
5196 {
5197 {
5198 .eraseblocks = { {4 * 1024, 16} },
5199 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005200 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005201 .eraseblocks = { {64 * 1024, 1} },
5202 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005203 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005204 .eraseblocks = { {64 * 1024, 1} },
5205 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005206 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005207 .eraseblocks = { {64 * 1024, 1} },
5208 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005209 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005210 .eraseblocks = { {64 * 1024, 1} },
5211 .block_erase = spi_block_erase_c7,
5212 },
5213 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005214 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005215 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005216 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005217 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L512E supports dual I/O */
5218 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V512(C) */
FENG yu ningff692fb2008-12-08 18:15:10 +00005219 },
5220
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005221 {
5222 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005223 .name = "MX25L1005(C)/MX25L1006E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005224 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005225 .manufacture_id = MACRONIX_ID,
5226 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005227 .total_size = 128,
5228 .page_size = 256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005229 /* MX25L1006E supports SFDP */
David Hendricks67db2eb2010-09-03 03:35:48 +00005230 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00005231 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005232 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005233 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005234 .block_erasers =
5235 {
5236 {
5237 .eraseblocks = { {4 * 1024, 32} },
5238 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005239 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005240 .eraseblocks = { {64 * 1024, 2} },
5241 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005242 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005243 .eraseblocks = { {128 * 1024, 1} },
5244 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005245 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00005246 .eraseblocks = { {128 * 1024, 1} },
5247 .block_erase = spi_block_erase_c7,
5248 },
5249 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005250 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005251 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005252 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005253 .read = spi_chip_read, /* Fast read (0x0B) supported, MX25L1006E supports dual I/O */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005254 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005255 },
5256
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005257 {
5258 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005259 .name = "MX25L2005(C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005260 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005261 .manufacture_id = MACRONIX_ID,
5262 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005263 .total_size = 256,
5264 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005265 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005266 .tested = TEST_UNTESTED,
5267 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005268 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005269 .block_erasers =
5270 {
5271 {
5272 .eraseblocks = { {4 * 1024, 64} },
5273 .block_erase = spi_block_erase_20,
5274 }, {
5275 .eraseblocks = { {64 * 1024, 4} },
5276 .block_erase = spi_block_erase_52,
5277 }, {
5278 .eraseblocks = { {64 * 1024, 4} },
5279 .block_erase = spi_block_erase_d8,
5280 }, {
5281 .eraseblocks = { {256 * 1024, 1} },
5282 .block_erase = spi_block_erase_60,
5283 }, {
5284 .eraseblocks = { {256 * 1024, 1} },
5285 .block_erase = spi_block_erase_c7,
5286 },
5287 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005288 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005289 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005290 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005291 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005292 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005293 },
5294
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005295 {
5296 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005297 .name = "MX25L4005(A/C)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005298 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005299 .manufacture_id = MACRONIX_ID,
5300 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005301 .total_size = 512,
5302 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005303 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00005304 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005305 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005306 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005307 .block_erasers =
5308 {
5309 {
5310 .eraseblocks = { {4 * 1024, 128} },
5311 .block_erase = spi_block_erase_20,
5312 }, {
5313 .eraseblocks = { {64 * 1024, 8} },
5314 .block_erase = spi_block_erase_52,
5315 }, {
5316 .eraseblocks = { {64 * 1024, 8} },
5317 .block_erase = spi_block_erase_d8,
5318 }, {
5319 .eraseblocks = { {512 * 1024, 1} },
5320 .block_erase = spi_block_erase_60,
5321 }, {
5322 .eraseblocks = { {512 * 1024, 1} },
5323 .block_erase = spi_block_erase_c7,
5324 },
5325 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005326 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005327 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005328 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005329 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005330 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005331 },
5332
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005333 {
5334 .vendor = "Macronix",
Stefan Taunerf656e802013-02-02 15:35:44 +00005335 .name = "MX25L8005/MX25V8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005336 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005337 .manufacture_id = MACRONIX_ID,
5338 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005339 .total_size = 1024,
5340 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005341 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00005342 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005343 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005344 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005345 .block_erasers =
5346 {
5347 {
5348 .eraseblocks = { {4 * 1024, 256} },
5349 .block_erase = spi_block_erase_20,
5350 }, {
5351 .eraseblocks = { {64 * 1024, 16} },
5352 .block_erase = spi_block_erase_52,
5353 }, {
5354 .eraseblocks = { {64 * 1024, 16} },
5355 .block_erase = spi_block_erase_d8,
5356 }, {
5357 .eraseblocks = { {1024 * 1024, 1} },
5358 .block_erase = spi_block_erase_60,
5359 }, {
5360 .eraseblocks = { {1024 * 1024, 1} },
5361 .block_erase = spi_block_erase_c7,
5362 },
5363 },
Stefan Taunerf656e802013-02-02 15:35:44 +00005364 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005365 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005366 .write = spi_chip_write_256,
Stefan Taunerf656e802013-02-02 15:35:44 +00005367 .read = spi_chip_read, /* Fast read (0x0B) supported */
5368 .voltage = {2700, 3600}, /* 2.35-3.6V for MX25V8005 */
FENG yu ningff692fb2008-12-08 18:15:10 +00005369 },
5370
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005371 {
5372 .vendor = "Macronix",
5373 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005374 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005375 .manufacture_id = MACRONIX_ID,
5376 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005377 .total_size = 2048,
5378 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005379 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00005380 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005381 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005382 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005383 .block_erasers =
5384 {
5385 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005386 .eraseblocks = { {64 * 1024, 32} },
5387 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005388 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005389 .eraseblocks = { {64 * 1024, 32} },
5390 .block_erase = spi_block_erase_d8,
5391 }, {
5392 .eraseblocks = { {2 * 1024 * 1024, 1} },
5393 .block_erase = spi_block_erase_60,
5394 }, {
5395 .eraseblocks = { {2 * 1024 * 1024, 1} },
5396 .block_erase = spi_block_erase_c7,
5397 },
5398 },
5399 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
5400 .unlock = spi_disable_blockprotect,
5401 .write = spi_chip_write_256,
5402 .read = spi_chip_read, /* Fast read (0x0B) supported */
5403 .voltage = {2700, 3600},
5404 },
5405
5406 {
5407 .vendor = "Macronix",
5408 .name = "MX25L1605A/MX25L1606E",
5409 .bustype = BUS_SPI,
5410 .manufacture_id = MACRONIX_ID,
5411 .model_id = MACRONIX_MX25L1605,
5412 .total_size = 2048,
5413 .page_size = 256,
5414 /* OTP: 64B total; enter 0xB1, exit 0xC1 (MX25L1606E only) */
5415 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5416 .tested = TEST_OK_PREW,
5417 .probe = probe_spi_rdid,
5418 .probe_timing = TIMING_ZERO,
5419 .block_erasers =
5420 {
5421 {
5422 .eraseblocks = { {4 * 1024, 512} },
5423 .block_erase = spi_block_erase_20,
5424 }, {
5425 .eraseblocks = { {64 * 1024, 32} },
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00005426 .block_erase = spi_block_erase_52,
5427 }, {
5428 .eraseblocks = { {64 * 1024, 32} },
5429 .block_erase = spi_block_erase_d8,
5430 }, {
5431 .eraseblocks = { {2 * 1024 * 1024, 1} },
5432 .block_erase = spi_block_erase_60,
5433 }, {
5434 .eraseblocks = { {2 * 1024 * 1024, 1} },
5435 .block_erase = spi_block_erase_c7,
5436 },
5437 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005438 .printlock = spi_prettyprint_status_register_default_bp3, /* MX25L1605A bp2 only */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005439 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005440 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005441 .read = spi_chip_read, /* Fast read (0x0B) supported */
5442 .voltage = {2700, 3600},
5443 },
5444
5445 {
5446 .vendor = "Macronix",
5447 .name = "MX25L1605D/MX25L1608D",
5448 .bustype = BUS_SPI,
5449 .manufacture_id = MACRONIX_ID,
5450 .model_id = MACRONIX_MX25L1605,
5451 .total_size = 2048,
5452 .page_size = 256,
5453 .feature_bits = FEATURE_WRSR_WREN,
5454 .tested = TEST_OK_PREW,
5455 .probe = probe_spi_rdid,
5456 .probe_timing = TIMING_ZERO,
5457 .block_erasers =
5458 {
5459 {
5460 .eraseblocks = { {4 * 1024, 512} },
5461 .block_erase = spi_block_erase_20,
5462 }, {
5463 .eraseblocks = { {64 * 1024, 32} },
5464 .block_erase = spi_block_erase_d8,
5465 }, {
5466 .eraseblocks = { {2 * 1024 * 1024, 1} },
5467 .block_erase = spi_block_erase_60,
5468 }, {
5469 .eraseblocks = { {2 * 1024 * 1024, 1} },
5470 .block_erase = spi_block_erase_c7,
5471 },
5472 },
5473 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: Continously Program (CP) mode */
5474 .unlock = spi_disable_blockprotect,
5475 .write = spi_chip_write_256,
5476 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005477 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005478 },
5479
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005480 {
5481 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005482 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005483 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005484 .manufacture_id = MACRONIX_ID,
5485 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005486 .total_size = 2048,
5487 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005488 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5489 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005490 .tested = TEST_UNTESTED,
5491 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005492 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005493 .block_erasers =
5494 {
5495 {
5496 .eraseblocks = { {4 * 1024, 512} },
5497 .block_erase = spi_block_erase_20,
5498 }, {
5499 .eraseblocks = { {64 * 1024, 32} },
5500 .block_erase = spi_block_erase_d8,
5501 }, {
5502 .eraseblocks = { {2 * 1024 * 1024, 1} },
5503 .block_erase = spi_block_erase_60,
5504 }, {
5505 .eraseblocks = { {2 * 1024 * 1024, 1} },
5506 .block_erase = spi_block_erase_c7,
5507 }
5508 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005509 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005510 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005511 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005512 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005513 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005514 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00005515
Stephan Guillouxf5c70902009-04-19 23:04:00 +00005516 {
5517 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00005518 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005519 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005520 .manufacture_id = MACRONIX_ID,
5521 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005522 .total_size = 2048,
5523 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005524 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5525 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux3611b802010-09-13 19:59:28 +00005526 .tested = TEST_UNTESTED,
5527 .probe = probe_spi_rdid,
5528 .probe_timing = TIMING_ZERO,
5529 .block_erasers =
5530 {
5531 {
5532 .eraseblocks = { {4 * 1024, 512} },
5533 .block_erase = spi_block_erase_20,
5534 }, {
5535 .eraseblocks = { {64 * 1024, 32} },
5536 .block_erase = spi_block_erase_d8,
5537 }, {
5538 .eraseblocks = { {2 * 1024 * 1024, 1} },
5539 .block_erase = spi_block_erase_60,
5540 }, {
5541 .eraseblocks = { {2 * 1024 * 1024, 1} },
5542 .block_erase = spi_block_erase_c7,
5543 }
5544 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005545 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Stephan Guilloux3611b802010-09-13 19:59:28 +00005546 .unlock = spi_disable_blockprotect,
5547 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005548 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00005549 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00005550 },
5551
5552 {
5553 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005554 .name = "MX25L3205(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005555 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005556 .manufacture_id = MACRONIX_ID,
5557 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005558 .total_size = 4096,
5559 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005560 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00005561 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005562 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005563 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005564 .block_erasers =
5565 {
5566 {
Stefan Tauner226037d2013-03-16 01:22:12 +00005567 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005568 .block_erase = spi_block_erase_20,
5569 }, {
Stefan Tauner226037d2013-03-16 01:22:12 +00005570 .eraseblocks = { {64 * 1024, 64} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00005571 .block_erase = spi_block_erase_d8,
5572 }, {
5573 .eraseblocks = { {4 * 1024 * 1024, 1} },
5574 .block_erase = spi_block_erase_60,
5575 }, {
5576 .eraseblocks = { {4 * 1024 * 1024, 1} },
5577 .block_erase = spi_block_erase_c7,
5578 },
5579 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005580 .printlock = spi_prettyprint_status_register_default_bp2, /* bit6: error flag */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005581 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005582 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005583 .read = spi_chip_read, /* Fast read (0x0B) supported */
5584 .voltage = {2700, 3600},
5585 },
5586
5587 {
5588 .vendor = "Macronix",
5589 .name = "MX25L3205D/MX25L3208D",
5590 .bustype = BUS_SPI,
5591 .manufacture_id = MACRONIX_ID,
5592 .model_id = MACRONIX_MX25L3205,
5593 .total_size = 4096,
5594 .page_size = 256,
5595 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5596 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5597 .tested = TEST_OK_PREW,
5598 .probe = probe_spi_rdid,
5599 .probe_timing = TIMING_ZERO,
5600 .block_erasers =
5601 {
5602 {
5603 .eraseblocks = { {4 * 1024, 1024} },
5604 .block_erase = spi_block_erase_20,
5605 }, {
5606 .eraseblocks = { {64 * 1024, 64} },
5607 .block_erase = spi_block_erase_d8,
5608 }, {
5609 .eraseblocks = { {4 * 1024 * 1024, 1} },
5610 .block_erase = spi_block_erase_60,
5611 }, {
5612 .eraseblocks = { {4 * 1024 * 1024, 1} },
5613 .block_erase = spi_block_erase_c7,
5614 },
5615 },
5616 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6: CP mode */
5617 .unlock = spi_disable_blockprotect,
5618 .write = spi_chip_write_256,
5619 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
5620 .voltage = {2700, 3600},
5621 },
5622
5623 {
5624 .vendor = "Macronix",
5625 .name = "MX25L3206E",
5626 .bustype = BUS_SPI,
5627 .manufacture_id = MACRONIX_ID,
5628 .model_id = MACRONIX_MX25L3205,
5629 .total_size = 4096,
5630 .page_size = 256,
5631 /* OTP: 64B total; enter 0xB1, exit 0xC1 */
5632 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5633 .tested = TEST_OK_PREW,
5634 .probe = probe_spi_rdid,
5635 .probe_timing = TIMING_ZERO,
5636 .block_erasers =
5637 {
5638 {
5639 .eraseblocks = { {4 * 1024, 1024} },
5640 .block_erase = spi_block_erase_20,
5641 }, {
5642 .eraseblocks = { {64 * 1024, 64} },
5643 .block_erase = spi_block_erase_d8,
5644 }, {
5645 .eraseblocks = { {64 * 1024, 64} },
5646 .block_erase = spi_block_erase_52,
5647 }, {
5648 .eraseblocks = { {4 * 1024 * 1024, 1} },
5649 .block_erase = spi_block_erase_60,
5650 }, {
5651 .eraseblocks = { {4 * 1024 * 1024, 1} },
5652 .block_erase = spi_block_erase_c7,
5653 },
5654 },
5655 .printlock = spi_prettyprint_status_register_default_bp3,
5656 .unlock = spi_disable_blockprotect,
5657 .write = spi_chip_write_256,
5658 .read = spi_chip_read, /* Fast read (0x0B) and dual I/O supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005659 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005660 },
5661
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005662 {
5663 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005664 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005665 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005666 .manufacture_id = MACRONIX_ID,
5667 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005668 .total_size = 4096,
5669 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005670 /* OTP: 256B total; enter 0xB1, exit 0xC1 */
5671 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005672 .tested = TEST_UNTESTED,
5673 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005674 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005675 .block_erasers =
5676 {
5677 {
5678 .eraseblocks = { {4 * 1024, 1024} },
5679 .block_erase = spi_block_erase_20,
5680 }, {
5681 .eraseblocks = { {64 * 1024, 64} },
5682 .block_erase = spi_block_erase_d8,
5683 }, {
5684 .eraseblocks = { {4 * 1024 * 1024, 1} },
5685 .block_erase = spi_block_erase_60,
5686 }, {
5687 .eraseblocks = { {4 * 1024 * 1024, 1} },
5688 .block_erase = spi_block_erase_c7,
5689 }
5690 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005691 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005692 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005693 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005694 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005695 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00005696 },
5697
5698 {
5699 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005700 .name = "MX25L6405(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005701 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005702 .manufacture_id = MACRONIX_ID,
5703 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005704 .total_size = 8192,
5705 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005706 /* MX25L6405D has 64B of OTP; enter 0xB1, exit 0xC1 */
5707 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Paul Menzelac427b22012-02-16 21:07:07 +00005708 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005709 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005710 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005711 .block_erasers =
5712 {
5713 {
5714 .eraseblocks = { {64 * 1024, 128} },
5715 .block_erase = spi_block_erase_20,
5716 }, {
5717 .eraseblocks = { {64 * 1024, 128} },
5718 .block_erase = spi_block_erase_d8,
5719 }, {
5720 .eraseblocks = { {8 * 1024 * 1024, 1} },
5721 .block_erase = spi_block_erase_60,
5722 }, {
5723 .eraseblocks = { {8 * 1024 * 1024, 1} },
5724 .block_erase = spi_block_erase_c7,
5725 }
5726 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005727 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 has different meanings */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005728 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005729 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005730 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005731 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005732 },
5733
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005734 {
5735 .vendor = "Macronix",
Stefan Tauner226037d2013-03-16 01:22:12 +00005736 .name = "MX25L6406E/MX25L6436E",
5737 .bustype = BUS_SPI,
5738 .manufacture_id = MACRONIX_ID,
5739 .model_id = MACRONIX_MX25L6405,
5740 .total_size = 8192,
5741 .page_size = 256,
5742 /* OTP: 06E 64B/36E 512B total; enter 0xB1, exit 0xC1 */
5743 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5744 .tested = TEST_OK_PREW,
5745 .probe = probe_spi_rdid,
5746 .probe_timing = TIMING_ZERO,
5747 .block_erasers =
5748 {
5749 {
5750 .eraseblocks = { {4 * 1024, 2048} },
5751 .block_erase = spi_block_erase_20,
5752 }, {
5753 .eraseblocks = { {64 * 1024, 128} },
5754 .block_erase = spi_block_erase_d8,
5755 }, {
5756 .eraseblocks = { {8 * 1024 * 1024, 1} },
5757 .block_erase = spi_block_erase_60,
5758 }, {
5759 .eraseblocks = { {8 * 1024 * 1024, 1} },
5760 .block_erase = spi_block_erase_c7,
5761 }
5762 },
5763 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 for 36E is quad enable */
5764 .unlock = spi_disable_blockprotect,
5765 .write = spi_chip_write_256,
5766 .read = spi_chip_read,
5767 .voltage = {2700, 3600},
5768 },
5769
5770 {
5771 .vendor = "Macronix",
5772 .name = "MX25L6445E",
5773 .bustype = BUS_SPI,
5774 .manufacture_id = MACRONIX_ID,
5775 .model_id = MACRONIX_MX25L6405,
5776 .total_size = 8192,
5777 .page_size = 256,
5778 /* supports SFDP */
5779 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5780 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
5781 .tested = TEST_OK_PREW,
5782 .probe = probe_spi_rdid,
5783 .probe_timing = TIMING_ZERO,
5784 .block_erasers =
5785 {
5786 {
5787 .eraseblocks = { {4 * 1024, 2048} },
5788 .block_erase = spi_block_erase_20,
5789 }, {
5790 .eraseblocks = { {32 * 1024, 256} },
5791 .block_erase = spi_block_erase_52,
5792 }, {
5793 .eraseblocks = { {64 * 1024, 128} },
5794 .block_erase = spi_block_erase_d8,
5795 }, {
5796 .eraseblocks = { {8 * 1024 * 1024, 1} },
5797 .block_erase = spi_block_erase_60,
5798 }, {
5799 .eraseblocks = { {8 * 1024 * 1024, 1} },
5800 .block_erase = spi_block_erase_c7,
5801 }
5802 },
5803 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5804 .unlock = spi_disable_blockprotect,
5805 .write = spi_chip_write_256,
5806 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5807 .voltage = {2700, 3600},
5808 },
5809
5810 {
5811 .vendor = "Macronix",
5812 .name = "MX25L12805(D)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005813 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005814 .manufacture_id = MACRONIX_ID,
5815 .model_id = MACRONIX_MX25L12805,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005816 .total_size = 16384,
5817 .page_size = 256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005818 /* MX25L12805D has 64B of OTP; enter 0xB1, exit 0xC1 */
5819 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunereb582572012-09-21 12:52:50 +00005820 .tested = TEST_OK_PROBE,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005821 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005822 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005823 .block_erasers =
5824 {
5825 {
5826 .eraseblocks = { {4 * 1024, 4096} },
5827 .block_erase = spi_block_erase_20,
5828 }, {
5829 .eraseblocks = { {64 * 1024, 256} },
5830 .block_erase = spi_block_erase_d8,
5831 }, {
5832 .eraseblocks = { {16 * 1024 * 1024, 1} },
5833 .block_erase = spi_block_erase_60,
5834 }, {
5835 .eraseblocks = { {16 * 1024 * 1024, 1} },
5836 .block_erase = spi_block_erase_c7,
5837 }
5838 },
Stefan Tauner226037d2013-03-16 01:22:12 +00005839 .printlock = spi_prettyprint_status_register_default_bp3,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005840 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005841 .write = spi_chip_write_256,
Stefan Tauner226037d2013-03-16 01:22:12 +00005842 .read = spi_chip_read, /* MX25L12805D: Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005843 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005844 },
5845
5846 {
5847 .vendor = "Macronix",
Vincent Palatinf800f552013-03-15 02:03:16 +00005848 .name = "MX25U1635E",
5849 .bustype = BUS_SPI,
5850 .manufacture_id = MACRONIX_ID,
5851 .model_id = MACRONIX_MX25U1635E,
5852 .total_size = 2048,
5853 .page_size = 256,
5854 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5855 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5856 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5857 .tested = TEST_UNTESTED,
5858 .probe = probe_spi_rdid,
5859 .probe_timing = TIMING_ZERO,
5860 .block_erasers =
5861 {
5862 {
5863 .eraseblocks = { {4 * 1024, 512} },
5864 .block_erase = spi_block_erase_20,
5865 }, {
5866 .eraseblocks = { {32 * 1024, 64} },
5867 .block_erase = spi_block_erase_52,
5868 }, {
5869 .eraseblocks = { {64 * 1024, 32} },
5870 .block_erase = spi_block_erase_d8,
5871 }, {
5872 .eraseblocks = { {2 * 1024 * 1024, 1} },
5873 .block_erase = spi_block_erase_60,
5874 }, {
5875 .eraseblocks = { {2 * 1024 * 1024, 1} },
5876 .block_erase = spi_block_erase_c7,
5877 }
5878 },
5879 /* TODO: security register */
5880 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5881 .unlock = spi_disable_blockprotect,
5882 .write = spi_chip_write_256,
5883 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5884 .voltage = {1650, 2000},
5885 },
5886
5887 {
5888 .vendor = "Macronix",
5889 .name = "MX25U3235E/F",
5890 .bustype = BUS_SPI,
5891 .manufacture_id = MACRONIX_ID,
5892 .model_id = MACRONIX_MX25U3235E,
5893 .total_size = 4096,
5894 .page_size = 256,
5895 /* F model supports SFDP */
5896 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5897 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5898 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5899 .tested = TEST_OK_PREW,
5900 .probe = probe_spi_rdid,
5901 .probe_timing = TIMING_ZERO,
5902 .block_erasers =
5903 {
5904 {
5905 .eraseblocks = { {4 * 1024, 1024} },
5906 .block_erase = spi_block_erase_20,
5907 }, {
5908 .eraseblocks = { {32 * 1024, 128} },
5909 .block_erase = spi_block_erase_52,
5910 }, {
5911 .eraseblocks = { {64 * 1024, 64} },
5912 .block_erase = spi_block_erase_d8,
5913 }, {
5914 .eraseblocks = { {4 * 1024 * 1024, 1} },
5915 .block_erase = spi_block_erase_60,
5916 }, {
5917 .eraseblocks = { {4 * 1024 * 1024, 1} },
5918 .block_erase = spi_block_erase_c7,
5919 }
5920 },
5921 /* TODO: security register */
5922 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5923 .unlock = spi_disable_blockprotect,
5924 .write = spi_chip_write_256,
5925 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5926 .voltage = {1650, 2000},
5927 },
5928
5929 {
5930 .vendor = "Macronix",
5931 .name = "MX25U6435E/F",
5932 .bustype = BUS_SPI,
5933 .manufacture_id = MACRONIX_ID,
5934 .model_id = MACRONIX_MX25U6435E,
5935 .total_size = 8192,
5936 .page_size = 256,
5937 /* F model supports SFDP */
5938 /* OTP: 512B total; enter 0xB1, exit 0xC1 */
5939 /* QPI enable 0x35, disable 0xF5 (0xFF et al. work too) */
5940 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
5941 .tested = TEST_UNTESTED,
5942 .probe = probe_spi_rdid,
5943 .probe_timing = TIMING_ZERO,
5944 .block_erasers =
5945 {
5946 {
5947 .eraseblocks = { {4 * 1024, 2048} },
5948 .block_erase = spi_block_erase_20,
5949 }, {
5950 .eraseblocks = { {32 * 1024, 256} },
5951 .block_erase = spi_block_erase_52,
5952 }, {
5953 .eraseblocks = { {64 * 1024, 128} },
5954 .block_erase = spi_block_erase_d8,
5955 }, {
5956 .eraseblocks = { {8 * 1024 * 1024, 1} },
5957 .block_erase = spi_block_erase_60,
5958 }, {
5959 .eraseblocks = { {8 * 1024 * 1024, 1} },
5960 .block_erase = spi_block_erase_c7,
5961 }
5962 },
5963 /* TODO: security register */
5964 .printlock = spi_prettyprint_status_register_default_bp3, /* bit6 is quad enable */
5965 .unlock = spi_disable_blockprotect,
5966 .write = spi_chip_write_256,
5967 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
5968 .voltage = {1650, 2000},
5969 },
5970
5971 {
5972 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00005973 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005974 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005975 .manufacture_id = MACRONIX_ID,
5976 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005977 .total_size = 128,
5978 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005979 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5980 .tested = TEST_UNTESTED,
5981 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005982 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005983 .block_erasers =
5984 {
5985 {
5986 .eraseblocks = {
5987 {8 * 1024, 1},
5988 {4 * 1024, 2},
5989 {8 * 1024, 2},
5990 {32 * 1024, 1},
5991 {64 * 1024, 1},
5992 },
Sean Nelson35727f72010-01-28 23:55:12 +00005993 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005994 }, {
5995 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005996 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005997 }
5998 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005999 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00006000 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006001 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00006002 },
6003
6004 {
6005 .vendor = "Macronix",
6006 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006007 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006008 .manufacture_id = MACRONIX_ID,
6009 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00006010 .total_size = 128,
6011 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006012 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00006013 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00006014 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006015 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00006016 .block_erasers =
6017 {
6018 {
6019 .eraseblocks = {
6020 {64 * 1024, 1},
6021 {32 * 1024, 1},
6022 {8 * 1024, 2},
6023 {4 * 1024, 2},
6024 {8 * 1024, 1},
6025 },
Sean Nelson35727f72010-01-28 23:55:12 +00006026 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006027 }, {
6028 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006029 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006030 }
6031 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006032 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00006033 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006034 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00006035 },
6036
6037 {
6038 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006039 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006040 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006041 .manufacture_id = MACRONIX_ID,
6042 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006043 .total_size = 256,
6044 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006045 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006046 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00006047 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006048 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006049 .block_erasers =
6050 {
6051 {
6052 .eraseblocks = {
6053 {16 * 1024, 1},
6054 {8 * 1024, 2},
6055 {32 * 1024, 1},
6056 {64 * 1024, 3},
6057 },
Sean Nelson35727f72010-01-28 23:55:12 +00006058 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006059 }, {
6060 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006061 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006062 },
6063 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006064 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006065 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006066 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006067 },
6068
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006069 {
6070 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006071 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006072 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006073 .manufacture_id = MACRONIX_ID,
6074 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006075 .total_size = 256,
6076 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006077 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00006078 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00006079 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006080 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006081 .block_erasers =
6082 {
6083 {
6084 .eraseblocks = {
6085 {64 * 1024, 3},
6086 {32 * 1024, 1},
6087 {8 * 1024, 2},
6088 {16 * 1024, 1},
6089 },
Sean Nelson35727f72010-01-28 23:55:12 +00006090 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006091 }, {
6092 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006093 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00006094 },
6095 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006096 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006097 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006098 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006099 },
6100
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006101 {
6102 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00006103 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006104 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00006105 .manufacture_id = MACRONIX_ID,
6106 .model_id = MACRONIX_MX29F040,
6107 .total_size = 512,
6108 .page_size = 64 * 1024,
6109 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6110 .tested = TEST_UNTESTED,
6111 .probe = probe_jedec,
6112 .probe_timing = TIMING_ZERO,
6113 .block_erasers =
6114 {
6115 {
6116 .eraseblocks = { {64 * 1024, 8} },
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 Zakulec7d257b42011-07-19 08:50:18 +00006125 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00006126 },
6127
6128 {
6129 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00006130 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006131 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006132 .manufacture_id = MACRONIX_ID,
6133 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006134 .total_size = 512,
6135 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006136 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
6137 .tested = TEST_UNTESTED,
6138 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00006139 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00006140 .block_erasers =
6141 {
6142 {
6143 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00006144 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006145 }, {
6146 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00006147 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00006148 },
6149 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00006150 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006151 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006152 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00006153 },
6154
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006155 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00006156 .vendor = "MoselVitelic",
6157 .name = "V29C51000B",
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_V29C51000B,
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 = "V29C51000T",
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_V29C51000T,
6188 .total_size = 64,
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, 128} },
6198 .block_erase = erase_sector_jedec,
6199 }, {
6200 .eraseblocks = { {64 * 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 = "V29C51400B",
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_V29C51400B,
6215 .total_size = 512,
6216 .page_size = 1024,
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 = { {1024, 512} },
6225 .block_erase = erase_sector_jedec,
6226 }, {
6227 .eraseblocks = { {512 * 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 {
6237 .vendor = "MoselVitelic",
6238 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006239 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006240 .manufacture_id = SYNCMOS_MVC_ID,
6241 .model_id = MVC_V29C51400T,
6242 .total_size = 512,
6243 .page_size = 1024,
6244 .feature_bits = FEATURE_EITHER_RESET,
6245 .tested = TEST_UNTESTED,
6246 .probe = probe_jedec,
6247 .probe_timing = TIMING_ZERO,
6248 .block_erasers =
6249 {
6250 {
6251 .eraseblocks = { {1024, 512} },
6252 .block_erase = erase_sector_jedec,
6253 }, {
6254 .eraseblocks = { {512 * 1024, 1} },
6255 .block_erase = erase_chip_block_jedec,
6256 },
6257 },
6258 .write = write_jedec_1,
6259 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006260 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006261 },
6262
6263 {
6264 .vendor = "MoselVitelic",
6265 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006266 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006267 .manufacture_id = SYNCMOS_MVC_ID,
6268 .model_id = MVC_V29LC51000,
6269 .total_size = 64,
6270 .page_size = 512,
6271 .feature_bits = FEATURE_EITHER_RESET,
6272 .tested = TEST_UNTESTED,
6273 .probe = probe_jedec,
6274 .probe_timing = TIMING_ZERO,
6275 .block_erasers =
6276 {
6277 {
6278 .eraseblocks = { {512, 128} },
6279 .block_erase = erase_sector_jedec,
6280 }, {
6281 .eraseblocks = { {64 * 1024, 1} },
6282 .block_erase = erase_chip_block_jedec,
6283 },
6284 },
6285 .write = write_jedec_1,
6286 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006287 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006288 },
6289
6290 {
6291 .vendor = "MoselVitelic",
6292 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006293 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006294 .manufacture_id = SYNCMOS_MVC_ID,
6295 .model_id = MVC_V29LC51001,
6296 .total_size = 128,
6297 .page_size = 512,
6298 .feature_bits = FEATURE_EITHER_RESET,
6299 .tested = TEST_UNTESTED,
6300 .probe = probe_jedec,
6301 .probe_timing = TIMING_ZERO,
6302 .block_erasers =
6303 {
6304 {
6305 .eraseblocks = { {512, 256} },
6306 .block_erase = erase_sector_jedec,
6307 }, {
6308 .eraseblocks = { {128 * 1024, 1} },
6309 .block_erase = erase_chip_block_jedec,
6310 },
6311 },
6312 .write = write_jedec_1,
6313 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006314 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006315 },
6316
6317 {
6318 .vendor = "MoselVitelic",
6319 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006320 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00006321 .manufacture_id = SYNCMOS_MVC_ID,
6322 .model_id = MVC_V29LC51002,
6323 .total_size = 256,
6324 .page_size = 512,
6325 .feature_bits = FEATURE_EITHER_RESET,
6326 .tested = TEST_UNTESTED,
6327 .probe = probe_jedec,
6328 .probe_timing = TIMING_ZERO,
6329 .block_erasers =
6330 {
6331 {
6332 .eraseblocks = { {512, 512} },
6333 .block_erase = erase_sector_jedec,
6334 }, {
6335 .eraseblocks = { {256 * 1024, 1} },
6336 .block_erase = erase_chip_block_jedec,
6337 },
6338 },
6339 .write = write_jedec_1,
6340 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006341 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00006342 },
6343
6344 {
Stefan Taunerb6b00e92013-06-28 21:28:43 +00006345 .vendor = "Nantronics",
6346 .name = "N25S10",
6347 .bustype = BUS_SPI,
6348 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6349 .model_id = NANTRONICS_N25S10,
6350 .total_size = 128,
6351 .page_size = 256,
6352 .feature_bits = FEATURE_WRSR_WREN,
6353 .tested = TEST_UNTESTED,
6354 .probe = probe_spi_rdid,
6355 .probe_timing = TIMING_ZERO,
6356 .block_erasers =
6357 {
6358 {
6359 .eraseblocks = { {4 * 1024, 32} },
6360 .block_erase = spi_block_erase_20,
6361 }, {
6362 .eraseblocks = { {4 * 1024, 32} },
6363 .block_erase = spi_block_erase_d7,
6364 }, {
6365 .eraseblocks = { {32 * 1024, 4} },
6366 .block_erase = spi_block_erase_52,
6367 }, {
6368 .eraseblocks = { {64 * 1024, 2} },
6369 .block_erase = spi_block_erase_d8,
6370 }, {
6371 .eraseblocks = { {128 * 1024, 1} },
6372 .block_erase = spi_block_erase_60,
6373 }, {
6374 .eraseblocks = { {128 * 1024, 1} },
6375 .block_erase = spi_block_erase_c7,
6376 }
6377 },
6378 .printlock = spi_prettyprint_status_register_default_bp3,
6379 .unlock = spi_disable_blockprotect_bp3_srwd,
6380 .write = spi_chip_write_256,
6381 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6382 .voltage = {2700, 3600},
6383 },
6384
6385 {
6386 .vendor = "Nantronics",
6387 .name = "N25S20",
6388 .bustype = BUS_SPI,
6389 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6390 .model_id = NANTRONICS_N25S20,
6391 .total_size = 256,
6392 .page_size = 256,
6393 .feature_bits = FEATURE_WRSR_WREN,
6394 .tested = TEST_UNTESTED,
6395 .probe = probe_spi_rdid,
6396 .probe_timing = TIMING_ZERO,
6397 .block_erasers =
6398 {
6399 {
6400 .eraseblocks = { {4 * 1024, 64} },
6401 .block_erase = spi_block_erase_20,
6402 }, {
6403 .eraseblocks = { {4 * 1024, 64} },
6404 .block_erase = spi_block_erase_d7,
6405 }, {
6406 .eraseblocks = { {32 * 1024, 8} },
6407 .block_erase = spi_block_erase_52,
6408 }, {
6409 .eraseblocks = { {64 * 1024, 4} },
6410 .block_erase = spi_block_erase_d8,
6411 }, {
6412 .eraseblocks = { {256 * 1024, 1} },
6413 .block_erase = spi_block_erase_60,
6414 }, {
6415 .eraseblocks = { {256 * 1024, 1} },
6416 .block_erase = spi_block_erase_c7,
6417 }
6418 },
6419 .printlock = spi_prettyprint_status_register_default_bp3,
6420 .unlock = spi_disable_blockprotect_bp3_srwd,
6421 .write = spi_chip_write_256,
6422 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6423 .voltage = {2700, 3600},
6424 },
6425
6426 {
6427 .vendor = "Nantronics",
6428 .name = "N25S40",
6429 .bustype = BUS_SPI,
6430 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6431 .model_id = NANTRONICS_N25S40,
6432 .total_size = 512,
6433 .page_size = 256,
6434 .feature_bits = FEATURE_WRSR_WREN,
6435 .tested = TEST_UNTESTED,
6436 .probe = probe_spi_rdid,
6437 .probe_timing = TIMING_ZERO,
6438 .block_erasers =
6439 {
6440 {
6441 .eraseblocks = { {4 * 1024, 128} },
6442 .block_erase = spi_block_erase_20,
6443 }, {
6444 .eraseblocks = { {4 * 1024, 128} },
6445 .block_erase = spi_block_erase_d7,
6446 }, {
6447 .eraseblocks = { {32 * 1024, 16} },
6448 .block_erase = spi_block_erase_52,
6449 }, {
6450 .eraseblocks = { {64 * 1024, 8} },
6451 .block_erase = spi_block_erase_d8,
6452 }, {
6453 .eraseblocks = { {512 * 1024, 1} },
6454 .block_erase = spi_block_erase_60,
6455 }, {
6456 .eraseblocks = { {512 * 1024, 1} },
6457 .block_erase = spi_block_erase_c7,
6458 }
6459 },
6460 .printlock = spi_prettyprint_status_register_default_bp3,
6461 .unlock = spi_disable_blockprotect_bp3_srwd,
6462 .write = spi_chip_write_256,
6463 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6464 .voltage = {2700, 3600},
6465 },
6466
6467 {
6468 .vendor = "Nantronics",
6469 .name = "N25S80",
6470 .bustype = BUS_SPI,
6471 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6472 .model_id = NANTRONICS_N25S80,
6473 .total_size = 1024,
6474 .page_size = 256,
6475 .feature_bits = FEATURE_WRSR_WREN,
6476 .tested = TEST_UNTESTED,
6477 .probe = probe_spi_rdid,
6478 .probe_timing = TIMING_ZERO,
6479 .block_erasers =
6480 {
6481 {
6482 .eraseblocks = { {4 * 1024, 256} },
6483 .block_erase = spi_block_erase_20,
6484 }, {
6485 .eraseblocks = { {32 * 1024, 32} },
6486 .block_erase = spi_block_erase_52,
6487 }, {
6488 .eraseblocks = { {64 * 1024, 16} },
6489 .block_erase = spi_block_erase_d8,
6490 }, {
6491 .eraseblocks = { {1024 * 1024, 1} },
6492 .block_erase = spi_block_erase_60,
6493 }, {
6494 .eraseblocks = { {1024 * 1024, 1} },
6495 .block_erase = spi_block_erase_c7,
6496 }
6497 },
6498 .printlock = spi_prettyprint_status_register_default_bp3,
6499 .unlock = spi_disable_blockprotect_bp3_srwd,
6500 .write = spi_chip_write_256,
6501 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6502 .voltage = {2700, 3600},
6503 },
6504
6505 {
6506 .vendor = "Nantronics",
6507 .name = "N25S16",
6508 .bustype = BUS_SPI,
6509 .manufacture_id = NANTRONICS_ID_NOPREFIX,
6510 .model_id = NANTRONICS_N25S16,
6511 .total_size = 2048,
6512 .page_size = 256,
6513 .feature_bits = FEATURE_WRSR_WREN,
6514 .tested = TEST_UNTESTED,
6515 .probe = probe_spi_rdid,
6516 .probe_timing = TIMING_ZERO,
6517 .block_erasers =
6518 {
6519 {
6520 .eraseblocks = { {4 * 1024, 512} },
6521 .block_erase = spi_block_erase_20,
6522 }, {
6523 .eraseblocks = { {64 * 1024, 32} },
6524 .block_erase = spi_block_erase_d8,
6525 }, {
6526 .eraseblocks = { {2048 * 1024, 1} },
6527 .block_erase = spi_block_erase_60,
6528 }, {
6529 .eraseblocks = { {2048 * 1024, 1} },
6530 .block_erase = spi_block_erase_c7,
6531 }
6532 },
6533 .printlock = spi_prettyprint_status_register_default_bp3,
6534 .unlock = spi_disable_blockprotect_bp3_srwd,
6535 .write = spi_chip_write_256,
6536 .read = spi_chip_read, /* Fast read (0x0B), dual I/O read (0x3B) supported */
6537 .voltage = {2700, 3600},
6538 },
6539
6540 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006541 .vendor = "Numonyx",
6542 .name = "M25PE10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006543 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006544 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006545 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006546 .total_size = 128,
6547 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006548 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006549 .tested = TEST_UNTESTED,
6550 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006551 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006552 .block_erasers =
6553 {
6554 {
6555 .eraseblocks = { {4 * 1024, 32} },
6556 .block_erase = spi_block_erase_20,
6557 }, {
6558 .eraseblocks = { {64 * 1024, 2} },
6559 .block_erase = spi_block_erase_d8,
6560 }, {
6561 .eraseblocks = { {128 * 1024, 1} },
6562 .block_erase = spi_block_erase_c7,
6563 }
6564 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006565 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006566 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006567 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006568 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006569 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006570 },
6571
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006572 {
6573 .vendor = "Numonyx",
6574 .name = "M25PE20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006575 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006576 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006577 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006578 .total_size = 256,
6579 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006580 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006581 .tested = TEST_UNTESTED,
6582 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006583 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006584 .block_erasers =
6585 {
6586 {
6587 .eraseblocks = { {4 * 1024, 64} },
6588 .block_erase = spi_block_erase_20,
6589 }, {
6590 .eraseblocks = { {64 * 1024, 4} },
6591 .block_erase = spi_block_erase_d8,
6592 }, {
6593 .eraseblocks = { {256 * 1024, 1} },
6594 .block_erase = spi_block_erase_c7,
6595 }
6596 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006597 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006598 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006599 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006600 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006601 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006602 },
6603
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006604 {
6605 .vendor = "Numonyx",
6606 .name = "M25PE40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006607 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006608 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006609 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00006610 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006611 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006612 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006613 .tested = TEST_UNTESTED,
6614 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006615 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006616 .block_erasers =
6617 {
6618 {
6619 .eraseblocks = { {4 * 1024, 128} },
6620 .block_erase = spi_block_erase_20,
6621 }, {
6622 .eraseblocks = { {64 * 1024, 8} },
6623 .block_erase = spi_block_erase_d8,
6624 }, {
6625 .eraseblocks = { {512 * 1024, 1} },
6626 .block_erase = spi_block_erase_c7,
6627 }
6628 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006629 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006630 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006631 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006632 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006633 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006634 },
6635
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006636 {
6637 .vendor = "Numonyx",
6638 .name = "M25PE80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006639 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006640 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006641 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006642 .total_size = 1024,
6643 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006644 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00006645 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006646 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006647 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006648 .block_erasers =
6649 {
6650 {
6651 .eraseblocks = { {4 * 1024, 256} },
6652 .block_erase = spi_block_erase_20,
6653 }, {
6654 .eraseblocks = { {64 * 1024, 16} },
6655 .block_erase = spi_block_erase_d8,
6656 }, {
6657 .eraseblocks = { {1024 * 1024, 1} },
6658 .block_erase = spi_block_erase_c7,
6659 }
6660 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006661 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006662 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006663 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006664 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006665 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006666 },
6667
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006668 {
6669 .vendor = "Numonyx",
6670 .name = "M25PE16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006671 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006672 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006673 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006674 .total_size = 2048,
6675 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006676 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006677 .tested = TEST_UNTESTED,
6678 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006679 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006680 .block_erasers =
6681 {
6682 {
6683 .eraseblocks = { {4 * 1024, 512} },
6684 .block_erase = spi_block_erase_20,
6685 }, {
6686 .eraseblocks = { {64 * 1024, 32} },
6687 .block_erase = spi_block_erase_d8,
6688 }, {
6689 .eraseblocks = { {2 * 1024 * 1024, 1} },
6690 .block_erase = spi_block_erase_c7,
6691 }
6692 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006693 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006694 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006695 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006696 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006697 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006698 },
6699
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006700 {
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006701 .vendor = "Numonyx",
Stefan Taunerd956f822012-10-26 16:49:15 +00006702 .name = "N25Q016",
6703 .bustype = BUS_SPI,
6704 .manufacture_id = ST_ID,
6705 .model_id = ST_N25Q016__1E,
6706 .total_size = 2048,
6707 .page_size = 256,
6708 /* supports SFDP */
6709 /* OTP: 64B total; read 0x4B, write 0x42 */
6710 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6711 .tested = TEST_UNTESTED,
6712 .probe = probe_spi_rdid,
6713 .probe_timing = TIMING_ZERO,
6714 .block_erasers =
6715 {
6716 {
6717 .eraseblocks = { {4 * 1024, 512} },
6718 .block_erase = spi_block_erase_20,
6719 }, {
6720 .eraseblocks = { {32 * 1024, 64} },
6721 .block_erase = spi_block_erase_52,
6722 }, {
6723 .eraseblocks = { {64 * 1024, 32} },
6724 .block_erase = spi_block_erase_d8,
6725 }, {
6726 .eraseblocks = { {2 * 1024 * 1024, 1} },
6727 .block_erase = spi_block_erase_c7,
6728 }
6729 },
6730 .unlock = spi_disable_blockprotect,
6731 .write = spi_chip_write_256,
6732 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6733 .voltage = {1700, 2000},
6734 },
6735
6736 {
6737 .vendor = "Numonyx",
6738 .name = "N25Q032..1E",
6739 .bustype = BUS_SPI,
6740 .manufacture_id = ST_ID,
6741 .model_id = ST_N25Q032__1E,
6742 .total_size = 4096,
6743 .page_size = 256,
6744 /* supports SFDP */
6745 /* OTP: 64B total; read 0x4B, write 0x42 */
6746 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6747 .tested = TEST_UNTESTED,
6748 .probe = probe_spi_rdid,
6749 .probe_timing = TIMING_ZERO,
6750 .block_erasers =
6751 {
6752 {
6753 .eraseblocks = { {4 * 1024, 1024} },
6754 .block_erase = spi_block_erase_20,
6755 }, {
6756 .eraseblocks = { {64 * 1024, 64} },
6757 .block_erase = spi_block_erase_d8,
6758 }, {
6759 .eraseblocks = { {4 * 1024 * 1024, 1} },
6760 .block_erase = spi_block_erase_c7,
6761 }
6762 },
6763 .unlock = spi_disable_blockprotect,
6764 .write = spi_chip_write_256,
6765 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6766 .voltage = {1700, 2000},
6767 },
6768
6769 {
6770 .vendor = "Numonyx",
6771 .name = "N25Q032..3E",
6772 .bustype = BUS_SPI,
6773 .manufacture_id = ST_ID,
6774 .model_id = ST_N25Q032__3E,
6775 .total_size = 4096,
6776 .page_size = 256,
6777 /* supports SFDP */
6778 /* OTP: 64B total; read 0x4B, write 0x42 */
6779 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6780 .tested = TEST_UNTESTED,
6781 .probe = probe_spi_rdid,
6782 .probe_timing = TIMING_ZERO,
6783 .block_erasers =
6784 {
6785 {
6786 .eraseblocks = { {4 * 1024, 1024} },
6787 .block_erase = spi_block_erase_20,
6788 }, {
6789 .eraseblocks = { {64 * 1024, 64} },
6790 .block_erase = spi_block_erase_d8,
6791 }, {
6792 .eraseblocks = { {4 * 1024 * 1024, 1} },
6793 .block_erase = spi_block_erase_c7,
6794 }
6795 },
6796 .unlock = spi_disable_blockprotect,
6797 .write = spi_chip_write_256,
6798 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
6799 .voltage = {2700, 3600},
6800 },
6801
6802 {
6803 .vendor = "Numonyx",
David Hendricks99f947d2012-10-04 14:41:20 +00006804 .name = "N25Q064..1E", /* ..1E = 1.8V, uniform 64KB/4KB blocks/sectors */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006805 .bustype = BUS_SPI,
6806 .manufacture_id = ST_ID,
David Hendricks99f947d2012-10-04 14:41:20 +00006807 .model_id = ST_N25Q064__1E,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006808 .total_size = 8192,
6809 .page_size = 256,
David Hendricks99f947d2012-10-04 14:41:20 +00006810 /* supports SFDP */
6811 /* OTP: 64B total; read 0x4B, write 0x42 */
6812 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
6813 .tested = TEST_UNTESTED,
6814 .probe = probe_spi_rdid,
6815 .probe_timing = TIMING_ZERO,
6816 .block_erasers =
6817 {
6818 {
6819 .eraseblocks = { {4 * 1024, 2048 } },
6820 .block_erase = spi_block_erase_20,
6821 }, {
6822 .eraseblocks = { {64 * 1024, 128} },
6823 .block_erase = spi_block_erase_d8,
6824 }, {
6825 .eraseblocks = { {8 * 1024 * 1024, 1} },
6826 .block_erase = spi_block_erase_c7,
6827 }
6828 },
6829 .unlock = spi_disable_blockprotect,
6830 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006831 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006832 .voltage = {1700, 2000},
6833 },
6834
6835 {
6836 .vendor = "Numonyx",
6837 .name = "N25Q064..3E", /* ..3E = 3V, uniform 64KB/4KB blocks/sectors */
6838 .bustype = BUS_SPI,
6839 .manufacture_id = ST_ID,
6840 .model_id = ST_N25Q064__3E,
6841 .total_size = 8192,
6842 .page_size = 256,
6843 /* supports SFDP */
6844 /* OTP: 64B total; read 0x4B, write 0x42 */
6845 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006846 .tested = TEST_OK_PREW,
6847 .probe = probe_spi_rdid,
6848 .probe_timing = TIMING_ZERO,
6849 .block_erasers =
6850 {
6851 {
6852 .eraseblocks = { {4 * 1024, 2048 } },
6853 .block_erase = spi_block_erase_20,
6854 }, {
6855 .eraseblocks = { {64 * 1024, 128} },
6856 .block_erase = spi_block_erase_d8,
6857 }, {
6858 .eraseblocks = { {8 * 1024 * 1024, 1} },
6859 .block_erase = spi_block_erase_c7,
6860 }
6861 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00006862 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006863 .unlock = spi_disable_blockprotect,
6864 .write = spi_chip_write_256,
Stefan Taunerd956f822012-10-26 16:49:15 +00006865 .read = spi_chip_read, /* Fast read (0x0B) and multi I/O supported */
David Hendricks99f947d2012-10-04 14:41:20 +00006866 .voltage = {2700, 3600},
Niklas Söderlundae4294f2012-04-14 21:04:03 +00006867 },
6868
6869 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006870 .vendor = "PMC",
Stefan Taunerf4451612013-04-19 01:59:15 +00006871 .name = "Pm25LD256C",
6872 .bustype = BUS_SPI,
6873 .manufacture_id = PMC_ID,
6874 .model_id = PMC_PM25LD256C,
6875 .total_size = 32,
6876 .page_size = 256,
6877 .feature_bits = FEATURE_WRSR_WREN,
6878 .tested = TEST_UNTESTED,
6879 .probe = probe_spi_rdid,
6880 .probe_timing = TIMING_ZERO,
6881 .block_erasers =
6882 {
6883 {
6884 .eraseblocks = { {4 * 1024, 8} },
6885 .block_erase = spi_block_erase_20,
6886 }, {
6887 .eraseblocks = { {4 * 1024, 8} },
6888 .block_erase = spi_block_erase_d7,
6889 }, {
6890 .eraseblocks = { {32 * 1024, 1} },
6891 .block_erase = spi_block_erase_d8,
6892 }, {
6893 .eraseblocks = { {32 * 1024, 1} },
6894 .block_erase = spi_block_erase_60,
6895 }, {
6896 .eraseblocks = { {32 * 1024, 1} },
6897 .block_erase = spi_block_erase_c7,
6898 }
6899 },
6900 .printlock = spi_prettyprint_status_register_default_bp2,
6901 .unlock = spi_disable_blockprotect,
6902 .write = spi_chip_write_256,
6903 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6904 .voltage = {2700, 3600},
6905 },
6906 {
6907 .vendor = "PMC",
6908 .name = "Pm25LD512(C)",
6909 .bustype = BUS_SPI,
6910 .manufacture_id = PMC_ID,
6911 .model_id = PMC_PM25LD512,
6912 .total_size = 64,
6913 .page_size = 256,
6914 .feature_bits = FEATURE_WRSR_WREN,
6915 .tested = TEST_OK_PREW,
6916 .probe = probe_spi_rdid,
6917 .probe_timing = TIMING_ZERO,
6918 .block_erasers =
6919 {
6920 {
6921 .eraseblocks = { {4 * 1024, 16} },
6922 .block_erase = spi_block_erase_20,
6923 }, {
6924 .eraseblocks = { {4 * 1024, 16} },
6925 .block_erase = spi_block_erase_d7,
6926 }, {
6927 .eraseblocks = { {32 * 1024, 2} },
6928 .block_erase = spi_block_erase_d8,
6929 }, {
6930 .eraseblocks = { {64 * 1024, 1} },
6931 .block_erase = spi_block_erase_60,
6932 }, {
6933 .eraseblocks = { {64 * 1024, 1} },
6934 .block_erase = spi_block_erase_c7,
6935 }
6936 },
6937 .printlock = spi_prettyprint_status_register_default_bp2,
6938 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6939 .write = spi_chip_write_256,
6940 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6941 .voltage = {2300, 3600},
6942 },
6943
6944 {
6945 .vendor = "PMC",
6946 .name = "Pm25LD010(C)",
6947 .bustype = BUS_SPI,
6948 .manufacture_id = PMC_ID,
6949 .model_id = PMC_PM25LD010,
6950 .total_size = 128,
6951 .page_size = 256,
6952 .feature_bits = FEATURE_WRSR_WREN,
6953 .tested = TEST_UNTESTED,
6954 .probe = probe_spi_rdid,
6955 .probe_timing = TIMING_ZERO,
6956 .block_erasers =
6957 {
6958 {
6959 .eraseblocks = { {4 * 1024, 32} },
6960 .block_erase = spi_block_erase_20,
6961 }, {
6962 .eraseblocks = { {4 * 1024, 32} },
6963 .block_erase = spi_block_erase_d7,
6964 }, {
6965 .eraseblocks = { {32 * 1024, 4} },
6966 .block_erase = spi_block_erase_d8,
6967 }, {
6968 .eraseblocks = { {128 * 1024, 1} },
6969 .block_erase = spi_block_erase_60,
6970 }, {
6971 .eraseblocks = { {128 * 1024, 1} },
6972 .block_erase = spi_block_erase_c7,
6973 }
6974 },
6975 .printlock = spi_prettyprint_status_register_default_bp2,
6976 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
6977 .write = spi_chip_write_256,
6978 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
6979 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD010 */
6980 },
6981
6982 {
6983 .vendor = "PMC",
6984 .name = "Pm25LD020(C)",
6985 .bustype = BUS_SPI,
6986 .manufacture_id = PMC_ID,
6987 .model_id = PMC_PM25LD020,
6988 .total_size = 256,
6989 .page_size = 256,
6990 .feature_bits = FEATURE_WRSR_WREN,
6991 .tested = TEST_UNTESTED,
6992 .probe = probe_spi_rdid,
6993 .probe_timing = TIMING_ZERO,
6994 .block_erasers =
6995 {
6996 {
6997 .eraseblocks = { {4 * 1024, 64} },
6998 .block_erase = spi_block_erase_20,
6999 }, {
7000 .eraseblocks = { {4 * 1024, 64} },
7001 .block_erase = spi_block_erase_d7,
7002 }, {
7003 .eraseblocks = { {64 * 1024, 4} },
7004 .block_erase = spi_block_erase_d8,
7005 }, {
7006 .eraseblocks = { {256 * 1024, 1} },
7007 .block_erase = spi_block_erase_60,
7008 }, {
7009 .eraseblocks = { {256 * 1024, 1} },
7010 .block_erase = spi_block_erase_c7,
7011 }
7012 },
7013 .printlock = spi_prettyprint_status_register_default_bp2,
7014 .unlock = spi_disable_blockprotect, /* FIXME: C version supports "Safe Guard" */
7015 .write = spi_chip_write_256,
7016 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
7017 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD020 */
7018 },
7019
7020 {
7021 .vendor = "PMC",
7022 .name = "Pm25LD040(C)",
7023 .bustype = BUS_SPI,
7024 .manufacture_id = PMC_ID,
7025 .model_id = PMC_PM25LV040,
7026 .total_size = 512,
7027 .page_size = 256,
7028 .feature_bits = FEATURE_WRSR_WREN,
7029 .tested = TEST_UNTESTED,
7030 .probe = probe_spi_rdid,
7031 .probe_timing = TIMING_ZERO,
7032 .block_erasers =
7033 {
7034 {
7035 .eraseblocks = { {4 * 1024, 128} },
7036 .block_erase = spi_block_erase_20,
7037 }, {
7038 .eraseblocks = { {4 * 1024, 128} },
7039 .block_erase = spi_block_erase_d7,
7040 }, {
7041 .eraseblocks = { {64 * 1024, 8} },
7042 .block_erase = spi_block_erase_d8,
7043 }, {
7044 .eraseblocks = { {512 * 1024, 1} },
7045 .block_erase = spi_block_erase_60,
7046 }, {
7047 .eraseblocks = { {512 * 1024, 1} },
7048 .block_erase = spi_block_erase_c7,
7049 }
7050 },
7051 .printlock = spi_prettyprint_status_register_default_bp2,
7052 .unlock = spi_disable_blockprotect,
7053 .write = spi_chip_write_256,
7054 .read = spi_chip_read, /* Fast read (0x0B), dual I/O supported */
7055 .voltage = {2700, 3600}, /* 2.3-3.6V for Pm25LD040 */
7056 },
7057
7058{
7059 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007060 .name = "Pm25LV512(A)",
7061 .bustype = BUS_SPI,
7062 .manufacture_id = PMC_ID,
7063 .model_id = PMC_PM25LV512,
7064 .total_size = 64,
7065 .page_size = 256,
7066 .feature_bits = FEATURE_WRSR_WREN,
7067 .tested = TEST_UNTESTED,
7068 .probe = probe_spi_res3,
7069 .probe_timing = TIMING_ZERO,
7070 .block_erasers =
7071 {
7072 {
7073 .eraseblocks = { {4 * 1024, 16} },
7074 .block_erase = spi_block_erase_d7,
7075 }, {
7076 .eraseblocks = { {32 * 1024, 2} },
7077 .block_erase = spi_block_erase_d8,
7078 }, {
7079 .eraseblocks = { {64 * 1024, 1} },
7080 .block_erase = spi_block_erase_c7,
7081 }
7082 },
7083 .printlock = spi_prettyprint_status_register_default_bp1,
7084 .unlock = spi_disable_blockprotect,
7085 .write = spi_chip_write_256,
7086 .read = spi_chip_read, /* Fast read (0x0B) supported */
7087 .voltage = {2700, 3600},
7088 },
7089
7090 {
7091 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007092 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007093 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007094 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007095 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007096 .total_size = 128,
7097 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007098 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007099 .tested = TEST_UNTESTED,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007100 .probe = probe_spi_res3,
7101 .probe_timing = TIMING_ZERO,
7102 .block_erasers =
7103 {
7104 {
7105 .eraseblocks = { {4 * 1024, 32} },
7106 .block_erase = spi_block_erase_d7,
7107 }, {
7108 .eraseblocks = { {32 * 1024, 4} },
7109 .block_erase = spi_block_erase_d8,
7110 }, {
7111 .eraseblocks = { {128 * 1024, 1} },
7112 .block_erase = spi_block_erase_c7,
7113 }
7114 },
7115 .printlock = spi_prettyprint_status_register_default_bp1,
7116 .unlock = spi_disable_blockprotect,
7117 .write = spi_chip_write_256,
7118 .read = spi_chip_read, /* Fast read (0x0B) supported */
7119 .voltage = {2700, 3600},
7120 },
7121
7122 {
7123 .vendor = "PMC",
7124 .name = "Pm25LV010A",
7125 .bustype = BUS_SPI,
7126 .manufacture_id = PMC_ID,
7127 .model_id = PMC_PM25LV010,
7128 .total_size = 128,
7129 .page_size = 256,
7130 .feature_bits = FEATURE_WRSR_WREN,
7131 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007132 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007133 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007134 .block_erasers =
7135 {
7136 {
7137 .eraseblocks = { {4 * 1024, 32} },
7138 .block_erase = spi_block_erase_d7,
7139 }, {
7140 .eraseblocks = { {32 * 1024, 4} },
7141 .block_erase = spi_block_erase_d8,
7142 }, {
7143 .eraseblocks = { {128 * 1024, 1} },
7144 .block_erase = spi_block_erase_c7,
7145 }
7146 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007147 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007148 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007149 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007150 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00007151 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007152 },
7153
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007154 {
7155 .vendor = "PMC",
7156 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007157 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007158 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007159 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007160 .total_size = 256,
7161 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007162 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007163 .tested = TEST_UNTESTED,
7164 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007165 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007166 .block_erasers =
7167 {
7168 {
7169 .eraseblocks = { {4 * 1024, 64} },
7170 .block_erase = spi_block_erase_d7,
7171 }, {
7172 .eraseblocks = { {64 * 1024, 4} },
7173 .block_erase = spi_block_erase_d8,
7174 }, {
7175 .eraseblocks = { {256 * 1024, 1} },
7176 .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,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007182 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +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",
7188 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007189 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007190 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007191 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007192 .total_size = 512,
7193 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007194 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00007195 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007196 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007197 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007198 .block_erasers =
7199 {
7200 {
7201 .eraseblocks = { {4 * 1024, 128} },
7202 .block_erase = spi_block_erase_d7,
7203 }, {
7204 .eraseblocks = { {64 * 1024, 8} },
7205 .block_erase = spi_block_erase_d8,
7206 }, {
7207 .eraseblocks = { {512 * 1024, 1} },
7208 .block_erase = spi_block_erase_c7,
7209 }
7210 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007211 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007212 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007213 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007214 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007215 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007216 },
7217
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007218 {
7219 .vendor = "PMC",
7220 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007221 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007222 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007223 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007224 .total_size = 1024,
7225 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007226 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007227 .tested = TEST_UNTESTED,
7228 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007229 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007230 .block_erasers =
7231 {
7232 {
7233 .eraseblocks = { {4 * 1024, 256} },
7234 .block_erase = spi_block_erase_d7,
7235 }, {
7236 .eraseblocks = { {4 * 1024, 256} },
7237 .block_erase = spi_block_erase_20,
7238 }, {
7239 .eraseblocks = { {64 * 1024, 16} },
7240 .block_erase = spi_block_erase_d8,
7241 }, {
7242 .eraseblocks = { {1024 * 1024, 1} },
7243 .block_erase = spi_block_erase_60,
7244 }, {
7245 .eraseblocks = { {1024 * 1024, 1} },
7246 .block_erase = spi_block_erase_c7,
7247 }
7248 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007249 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007250 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007251 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007252 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007253 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007254 },
7255
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007256 {
7257 .vendor = "PMC",
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007258 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007259 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007260 .manufacture_id = PMC_ID,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007261 .model_id = PMC_PM25LV016B,
7262 .total_size = 2048,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007263 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007264 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007265 .tested = TEST_UNTESTED,
7266 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007267 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007268 .block_erasers =
7269 {
7270 {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007271 .eraseblocks = { {4 * 1024, 512} },
Sean Nelson5643c072010-01-19 03:23:07 +00007272 .block_erase = spi_block_erase_d7,
7273 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007274 .eraseblocks = { {4 * 1024, 512} },
7275 .block_erase = spi_block_erase_20,
7276 }, {
7277 .eraseblocks = { {64 * 1024, 32} },
Sean Nelson5643c072010-01-19 03:23:07 +00007278 .block_erase = spi_block_erase_d8,
7279 }, {
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007280 .eraseblocks = { {2 * 1024 * 1024, 1} },
7281 .block_erase = spi_block_erase_60,
7282 }, {
7283 .eraseblocks = { {2 * 1024 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +00007284 .block_erase = spi_block_erase_c7,
7285 }
7286 },
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007287 .printlock = spi_prettyprint_status_register_default_bp2,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007288 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007289 .write = spi_chip_write_256,
Stefan Tauner3f5e35d2013-04-19 01:58:33 +00007290 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakulec7d257b42011-07-19 08:50:18 +00007291 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007292 },
7293
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007294 {
7295 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00007296 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007297 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007298 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007299 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007300 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00007301 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007302 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00007303 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00007304 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +00007305 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007306 .block_erasers =
7307 {
7308 {
7309 .eraseblocks = {
7310 {128 * 1024, 1},
7311 {96 * 1024, 1},
7312 {8 * 1024, 2},
7313 {16 * 1024, 1},
7314 },
Sean Nelson35727f72010-01-28 23:55:12 +00007315 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007316 }, {
7317 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007318 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007319 },
7320 },
Sean Nelson35727f72010-01-28 23:55:12 +00007321 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007322 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007323 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007324 },
7325
7326 {
7327 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00007328 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007329 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007330 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007331 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007332 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00007333 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007334 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007335 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00007336 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007337 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00007338 .block_erasers =
7339 {
7340 {
7341 .eraseblocks = {
7342 {16 * 1024, 1},
7343 {8 * 1024, 2},
7344 {96 * 1024, 1},
7345 {128 * 1024, 1},
7346 },
Sean Nelson35727f72010-01-28 23:55:12 +00007347 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007348 }, {
7349 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007350 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00007351 },
7352 },
Sean Nelson35727f72010-01-28 23:55:12 +00007353 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007354 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007355 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00007356 },
7357
7358 {
7359 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007360 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007361 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007362 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007363 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007364 .total_size = 128,
7365 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007366 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007367 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007368 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007369 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00007370 .block_erasers =
7371 {
7372 {
7373 .eraseblocks = { {4 * 1024, 32} },
7374 .block_erase = erase_sector_jedec,
7375 }, {
7376 .eraseblocks = { {64 * 1024, 2} },
7377 .block_erase = erase_block_jedec,
7378 }, {
7379 .eraseblocks = { {128 * 1024, 1} },
7380 .block_erase = erase_chip_block_jedec,
7381 }
7382 },
Sean Nelson35727f72010-01-28 23:55:12 +00007383 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007384 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007385 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00007386 },
7387
7388 {
7389 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007390 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007391 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007392 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007393 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007394 .total_size = 256,
7395 .page_size = 4096,
7396 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7397 .tested = TEST_UNTESTED,
7398 .probe = probe_jedec,
7399 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7400 .block_erasers =
7401 {
7402 {
7403 .eraseblocks = { {4 * 1024, 64} },
7404 .block_erase = erase_sector_jedec,
7405 }, {
7406 .eraseblocks = { {64 * 1024, 4} },
7407 .block_erase = erase_block_jedec,
7408 }, {
7409 .eraseblocks = { {256 * 1024, 1} },
7410 .block_erase = erase_chip_block_jedec,
7411 }
7412 },
7413 .write = write_jedec_1,
7414 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007415 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007416 },
7417
7418 {
7419 .vendor = "PMC",
7420 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007421 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007422 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007423 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007424 .total_size = 512,
7425 .page_size = 4096,
7426 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007427 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007428 .probe = probe_jedec,
7429 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7430 .block_erasers =
7431 {
7432 {
7433 .eraseblocks = { {4 * 1024, 128} },
7434 .block_erase = erase_sector_jedec,
7435 }, {
7436 .eraseblocks = { {64 * 1024, 8} },
7437 .block_erase = erase_block_jedec,
7438 }, {
7439 .eraseblocks = { {512 * 1024, 1} },
7440 .block_erase = erase_chip_block_jedec,
7441 }
7442 },
7443 .write = write_jedec_1,
7444 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007445 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007446 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +00007447
7448 {
7449 .vendor = "PMC",
7450 .name = "Pm39LV512",
7451 .bustype = BUS_PARALLEL,
7452 .manufacture_id = PMC_ID_NOPREFIX,
7453 .model_id = PMC_PM39LV512,
7454 .total_size = 64,
7455 .page_size = 4096,
7456 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7457 .tested = TEST_OK_PREW,
7458 .probe = probe_jedec,
7459 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
7460 .block_erasers =
7461 {
7462 {
7463 .eraseblocks = { {4 * 1024, 16} },
7464 .block_erase = erase_sector_jedec,
7465 }, {
7466 .eraseblocks = { {64 * 1024, 1} },
7467 .block_erase = erase_block_jedec,
7468 }, {
7469 .eraseblocks = { {64 * 1024, 1} },
7470 .block_erase = erase_chip_block_jedec,
7471 }
7472 },
7473 .write = write_jedec_1,
7474 .read = read_memmapped,
7475 .voltage = {2700, 3600},
7476 },
7477
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00007478 {
7479 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007480 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007481 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007482 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007483 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007484 .total_size = 256,
7485 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007486 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunerd06d9412011-06-12 19:47:55 +00007487 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007488 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007489 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007490 .block_erasers =
7491 {
7492 {
7493 .eraseblocks = { {4 * 1024, 64} },
7494 .block_erase = erase_sector_jedec,
7495 }, {
7496 .eraseblocks = { {16 * 1024, 16} },
7497 .block_erase = erase_block_jedec,
7498 }, {
7499 .eraseblocks = { {256 * 1024, 1} },
7500 .block_erase = erase_chip_block_jedec,
7501 }
7502 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007503 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007504 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007505 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007506 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007507 },
7508
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007509 {
7510 .vendor = "PMC",
7511 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007512 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007513 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007514 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007515 .total_size = 512,
7516 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007517 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00007518 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00007519 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007520 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00007521 .block_erasers =
7522 {
7523 {
7524 .eraseblocks = { {4 * 1024, 128} },
7525 .block_erase = erase_sector_jedec,
7526 }, {
7527 .eraseblocks = { {64 * 1024, 8} },
7528 .block_erase = erase_block_jedec,
7529 }, {
7530 .eraseblocks = { {512 * 1024, 1} },
7531 .block_erase = erase_chip_block_jedec,
7532 }
7533 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007534 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00007535 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007536 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007537 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007538 },
7539
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007540 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00007541 .vendor = "Sanyo",
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007542 .name = "LE25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007543 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007544 .manufacture_id = SANYO_ID,
7545 .model_id = SANYO_LE25FW203A,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007546 .total_size = 256,
Sean Nelsond70b09c2009-11-24 02:11:08 +00007547 .page_size = 256,
7548 .tested = TEST_UNTESTED,
7549 .probe = probe_spi_rdid,
7550 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007551 .block_erasers =
7552 {
7553 {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007554 .eraseblocks = { {256, 1024} },
7555 .block_erase = spi_block_erase_db,
7556 }, {
7557 .eraseblocks = { {64 * 1024, 4} },
Sean Nelson5643c072010-01-19 03:23:07 +00007558 .block_erase = spi_block_erase_d8,
7559 }, {
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007560 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson5643c072010-01-19 03:23:07 +00007561 .block_erase = spi_block_erase_c7,
7562 }
7563 },
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007564 .printlock = spi_prettyprint_status_register_default_welwip,
7565 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
Sean Nelsond70b09c2009-11-24 02:11:08 +00007566 .write = spi_chip_write_256,
7567 .read = spi_chip_read,
Nikolay Nikolaev384de8e2013-06-28 21:28:49 +00007568 .voltage = {2700, 3600},
7569 },
7570
7571 {
7572 .vendor = "Sanyo",
7573 .name = "LE25FW403A",
7574 .bustype = BUS_SPI,
7575 .manufacture_id = SANYO_ID,
7576 .model_id = SANYO_LE25FW403A,
7577 .total_size = 512,
7578 .page_size = 256,
7579 .tested = TEST_UNTESTED,
7580 .probe = probe_spi_rdid,
7581 .probe_timing = TIMING_ZERO,
7582 .block_erasers = {
7583 {
7584 .eraseblocks = { {256, 2 * 1024} },
7585 .block_erase = spi_block_erase_db,
7586 }, {
7587 .eraseblocks = { {64 * 1024, 8} },
7588 .block_erase = spi_block_erase_d8,
7589 }, {
7590 .eraseblocks = { {512 * 1024, 1} },
7591 .block_erase = spi_block_erase_c7,
7592 }
7593 },
7594 .printlock = spi_prettyprint_status_register_default_welwip,
7595 .unlock = NULL, /* #WP pin write-protects lower 64kB. */
7596 .write = spi_chip_write_256,
7597 .read = spi_chip_read,
7598 .voltage = {2700, 3600},
7599 },
7600
7601 {
7602 .vendor = "Sanyo",
7603 .name = "LE25FW418A",
7604 .bustype = BUS_SPI,
7605 .manufacture_id = SANYO_ID,
7606 .model_id = SANYO_LE25FW418A,
7607 .total_size = 512,
7608 .page_size = 256,
7609 .feature_bits = FEATURE_WRSR_WREN,
7610 .tested = TEST_UNTESTED,
7611 .probe = probe_spi_res2,
7612 .probe_timing = TIMING_ZERO,
7613 .block_erasers = {
7614 {
7615 .eraseblocks = { {4 * 1024, 128} },
7616 .block_erase = spi_block_erase_d7,
7617 }, {
7618 .eraseblocks = { {64 * 1024, 8} },
7619 .block_erase = spi_block_erase_d8,
7620 }, {
7621 .eraseblocks = { {512 * 1024, 1} },
7622 .block_erase = spi_block_erase_c7,
7623 }
7624 },
7625 .printlock = spi_prettyprint_status_register_default_bp2,
7626 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
7627 .write = spi_chip_write_256,
7628 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
7629 .voltage = {2700, 3600},
7630 },
7631
7632 {
7633 .vendor = "Sanyo",
7634 .name = "LE25FW806",
7635 .bustype = BUS_SPI,
7636 .manufacture_id = SANYO_ID,
7637 .model_id = SANYO_LE25FW806,
7638 .total_size = 1024,
7639 .page_size = 256,
7640 .feature_bits = FEATURE_WRSR_WREN,
7641 .tested = TEST_UNTESTED,
7642 .probe = probe_spi_res2,
7643 .probe_timing = TIMING_ZERO,
7644 .block_erasers = {
7645 {
7646 .eraseblocks = { {4 * 1024, 256} },
7647 .block_erase = spi_block_erase_20,
7648 }, {
7649 .eraseblocks = { {4 * 1024, 256} },
7650 .block_erase = spi_block_erase_d7,
7651 }, {
7652 .eraseblocks = { {64 * 1024, 16} },
7653 .block_erase = spi_block_erase_d8,
7654 }, {
7655 .eraseblocks = { {1024 * 1024, 1} },
7656 .block_erase = spi_block_erase_c7,
7657 }
7658 },
7659 .printlock = spi_prettyprint_status_register_default_bp2,
7660 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
7661 .write = spi_chip_write_256,
7662 .read = spi_chip_read,
7663 .voltage = {2700, 3600},
7664 },
7665
7666 {
7667 .vendor = "Sanyo",
7668 .name = "LE25FW808",
7669 .bustype = BUS_SPI,
7670 .manufacture_id = SANYO_ID,
7671 .model_id = SANYO_LE25FW808,
7672 .total_size = 1024,
7673 .page_size = 256,
7674 .feature_bits = FEATURE_WRSR_WREN,
7675 .tested = TEST_UNTESTED,
7676 .probe = probe_spi_res2,
7677 .probe_timing = TIMING_ZERO,
7678 .block_erasers = {
7679 {
7680 .eraseblocks = { {8 * 1024, 128} },
7681 .block_erase = spi_block_erase_d7,
7682 }, {
7683 .eraseblocks = { {64 * 1024, 16} },
7684 .block_erase = spi_block_erase_d8,
7685 }, {
7686 .eraseblocks = { {1024 * 1024, 1} },
7687 .block_erase = spi_block_erase_c7,
7688 }
7689 },
7690 .printlock = spi_prettyprint_status_register_default_bp2,
7691 .unlock = spi_disable_blockprotect, /* #WP pin write-protects SRWP bit. */
7692 .write = spi_chip_write_256,
7693 .read = spi_chip_read, /* some quad-read supported ("HD_READ mode") */
7694 .voltage = {2700, 3600},
Sean Nelsond70b09c2009-11-24 02:11:08 +00007695 },
7696
7697 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007698 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007699 .name = "LH28F008BJT-BTLZ1",
7700 .bustype = BUS_PARALLEL,
7701 .manufacture_id = SHARP_ID,
Stefan Tauner352e50b2013-02-22 15:58:45 +00007702 .model_id = SHARP_LH28F008BJ__PB,
Mattias Mattssonfca3b012011-08-25 22:44:11 +00007703 .total_size = 1024,
7704 .page_size = 64 * 1024,
7705 .tested = TEST_OK_PREW,
7706 .probe = probe_82802ab,
7707 .probe_timing = TIMING_ZERO,
7708 .block_erasers =
7709 {
7710 {
7711 .eraseblocks = {
7712 {8 * 1024, 8},
7713 {64 * 1024, 15}
7714 },
7715 .block_erase = erase_block_82802ab,
7716 }, {
7717 .eraseblocks = { {1024 * 1024, 1} },
7718 .block_erase = erase_sector_49lfxxxc,
7719 }
7720 },
7721 .unlock = unlock_lh28f008bjt,
7722 .write = write_82802ab,
7723 .read = read_memmapped,
7724 .voltage = {2700, 3600},
7725 },
7726
7727 {
7728 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007729 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007730 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007731 .manufacture_id = SHARP_ID,
7732 .model_id = SHARP_LHF00L04,
7733 .total_size = 1024,
7734 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007735 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007736 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007737 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007738 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007739 .block_erasers =
7740 {
7741 {
7742 .eraseblocks = {
7743 {64 * 1024, 15},
7744 {8 * 1024, 8}
7745 },
Sean Nelson28accc22010-03-19 18:47:06 +00007746 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007747 }, {
7748 .eraseblocks = {
7749 {1024 * 1024, 1}
7750 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00007751 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00007752 },
7753 },
Sean Nelson28accc22010-03-19 18:47:06 +00007754 .unlock = unlock_82802ab,
7755 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007756 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007757 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007758 },
7759
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007760 {
7761 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +00007762 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007763 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007764 .manufacture_id = SPANSION_ID,
7765 .model_id = SPANSION_S25FL004A,
7766 .total_size = 512,
7767 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007768 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007769 .tested = TEST_UNTESTED,
7770 .probe = probe_spi_rdid,
7771 .probe_timing = TIMING_ZERO,
7772 .block_erasers =
7773 {
7774 {
7775 .eraseblocks = { {64 * 1024, 8} },
7776 .block_erase = spi_block_erase_d8,
7777 }, {
7778 .eraseblocks = { {512 * 1024, 1} },
7779 .block_erase = spi_block_erase_c7,
7780 }
7781 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007782 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007783 .unlock = spi_disable_blockprotect,
7784 .write = spi_chip_write_256,
7785 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007786 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007787 },
7788
7789 {
7790 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00007791 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007792 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +00007793 .manufacture_id = SPANSION_ID,
7794 .model_id = SPANSION_S25FL008A,
7795 .total_size = 1024,
7796 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007797 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007798 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +00007799 .probe = probe_spi_rdid,
7800 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00007801 .block_erasers =
7802 {
7803 {
7804 .eraseblocks = { {64 * 1024, 16} },
7805 .block_erase = spi_block_erase_d8,
7806 }, {
7807 .eraseblocks = { {1024 * 1024, 1} },
7808 .block_erase = spi_block_erase_c7,
7809 }
7810 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007811 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007812 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00007813 .write = spi_chip_write_256,
7814 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007815 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +00007816 },
7817
7818 {
7819 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007820 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007821 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007822 .manufacture_id = SPANSION_ID,
7823 .model_id = SPANSION_S25FL016A,
7824 .total_size = 2048,
7825 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007826 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007827 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007828 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007829 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00007830 .block_erasers =
7831 {
7832 {
7833 .eraseblocks = { {64 * 1024, 32} },
7834 .block_erase = spi_block_erase_d8,
7835 }, {
7836 .eraseblocks = { {2 * 1024 * 1024, 1} },
7837 .block_erase = spi_block_erase_c7,
7838 }
7839 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007840 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007841 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007842 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007843 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007844 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007845 },
7846
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007847 {
Rudy Hostf4e57772010-11-29 00:37:49 +00007848 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007849 .name = "S25FL032A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007850 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007851 .manufacture_id = SPANSION_ID,
7852 .model_id = SPANSION_S25FL032A,
7853 .total_size = 4096,
7854 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007855 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007856 .tested = TEST_OK_PREW,
Rudy Hostf4e57772010-11-29 00:37:49 +00007857 .probe = probe_spi_rdid,
7858 .probe_timing = TIMING_ZERO,
7859 .block_erasers =
7860 {
7861 {
7862 .eraseblocks = { {64 * 1024, 64} },
7863 .block_erase = spi_block_erase_d8,
7864 }, {
7865 .eraseblocks = { {4 * 1024 * 1024, 1} },
7866 .block_erase = spi_block_erase_c7,
7867 }
7868 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007869 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007870 .unlock = spi_disable_blockprotect,
7871 .write = spi_chip_write_256,
7872 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007873 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007874 },
7875
7876 {
7877 .vendor = "Spansion",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007878 .name = "S25FL064A/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007879 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00007880 .manufacture_id = SPANSION_ID,
7881 .model_id = SPANSION_S25FL064A,
7882 .total_size = 8192,
7883 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007884 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00007885 .tested = TEST_OK_PREW,
7886 .probe = probe_spi_rdid,
7887 .probe_timing = TIMING_ZERO,
7888 .block_erasers =
7889 {
7890 {
7891 .eraseblocks = { {64 * 1024, 128} },
7892 .block_erase = spi_block_erase_d8,
7893 }, {
7894 .eraseblocks = { {8 * 1024 * 1024, 1} },
7895 .block_erase = spi_block_erase_c7,
7896 }
7897 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007898 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Rudy Hostf4e57772010-11-29 00:37:49 +00007899 .unlock = spi_disable_blockprotect,
7900 .write = spi_chip_write_256,
7901 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007902 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00007903 },
7904
7905 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007906 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +00007907 .name = "SST25LF040A",
7908 .bustype = BUS_SPI,
7909 .manufacture_id = SST_ID,
7910 .model_id = SST_SST25VF040_REMS,
7911 .total_size = 512,
7912 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007913 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +00007914 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +00007915 .probe = probe_spi_res2,
7916 .probe_timing = TIMING_ZERO,
7917 .block_erasers =
7918 {
7919 {
7920 .eraseblocks = { {4 * 1024, 128} },
7921 .block_erase = spi_block_erase_20,
7922 }, {
7923 .eraseblocks = { {32 * 1024, 16} },
7924 .block_erase = spi_block_erase_52,
7925 }, {
7926 .eraseblocks = { {512 * 1024, 1} },
7927 .block_erase = spi_block_erase_60,
7928 },
7929 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007930 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007931 .unlock = spi_disable_blockprotect,
7932 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7933 .read = spi_chip_read,
7934 .voltage = {3000, 3600},
7935 },
7936
7937 {
7938 .vendor = "SST",
Stefan Taunere34e3e82013-01-01 00:06:51 +00007939 .name = "SST25LF080(A)",
Zeus Castro33670ba2011-08-17 09:50:11 +00007940 .bustype = BUS_SPI,
7941 .manufacture_id = SST_ID,
7942 .model_id = SST_SST25VF080_REMS,
7943 .total_size = 1024,
7944 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00007945 .feature_bits = FEATURE_WRSR_EITHER,
Zeus Castro33670ba2011-08-17 09:50:11 +00007946 .tested = TEST_UNTESTED,
7947 .probe = probe_spi_res2,
7948 .probe_timing = TIMING_ZERO,
7949 .block_erasers =
7950 {
7951 {
7952 .eraseblocks = { {4 * 1024, 256} },
7953 .block_erase = spi_block_erase_20,
7954 }, {
7955 .eraseblocks = { {32 * 1024, 32} },
7956 .block_erase = spi_block_erase_52,
7957 }, {
7958 .eraseblocks = { {1024 * 1024, 1} },
7959 .block_erase = spi_block_erase_60,
7960 },
7961 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007962 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Zeus Castro33670ba2011-08-17 09:50:11 +00007963 .unlock = spi_disable_blockprotect,
7964 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
7965 .read = spi_chip_read,
7966 .voltage = {3000, 3600},
7967 },
7968
7969 {
7970 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007971 .name = "SST25VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007972 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +00007973 .manufacture_id = SST_ID,
7974 .model_id = SST_SST25VF010_REMS,
7975 .total_size = 128,
7976 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007977 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00007978 .tested = TEST_OK_PREW,
7979 .probe = probe_spi_rems,
7980 .probe_timing = TIMING_ZERO,
7981 .block_erasers =
7982 {
7983 {
7984 .eraseblocks = { {4 * 1024, 32} },
7985 .block_erase = spi_block_erase_20,
7986 }, {
7987 .eraseblocks = { {32 * 1024, 4} },
7988 .block_erase = spi_block_erase_52,
7989 }, {
7990 .eraseblocks = { {128 * 1024, 1} },
7991 .block_erase = spi_block_erase_60,
7992 },
7993 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00007994 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Mark Marshall90021f22010-12-03 14:48:11 +00007995 .unlock = spi_disable_blockprotect,
7996 .write = spi_chip_write_1,
7997 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007998 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +00007999 },
8000
8001 {
8002 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008003 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008004 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008005 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008006 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008007 .total_size = 2048,
8008 .page_size = 256,
Stefan Taunere34e3e82013-01-01 00:06:51 +00008009 .feature_bits = FEATURE_WRSR_EITHER,
Mark Marshall90021f22010-12-03 14:48:11 +00008010 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008011 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008012 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008013 .block_erasers =
8014 {
8015 {
8016 .eraseblocks = { {4 * 1024, 512} },
8017 .block_erase = spi_block_erase_20,
8018 }, {
8019 .eraseblocks = { {32 * 1024, 64} },
8020 .block_erase = spi_block_erase_52,
8021 }, {
8022 .eraseblocks = { {64 * 1024, 32} },
8023 .block_erase = spi_block_erase_d8,
8024 }, {
8025 .eraseblocks = { {2 * 1024 * 1024, 1} },
8026 .block_erase = spi_block_erase_60,
8027 }, {
8028 .eraseblocks = { {2 * 1024 * 1024, 1} },
8029 .block_erase = spi_block_erase_c7,
8030 },
8031 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008032 .printlock = spi_prettyprint_status_register_sst25vf016,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008033 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008034 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008035 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008036 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008037 },
8038
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008039 {
8040 .vendor = "SST",
8041 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008042 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008043 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008044 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008045 .total_size = 4096,
8046 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008047 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +00008048 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008049 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008050 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008051 .block_erasers =
8052 {
8053 {
8054 .eraseblocks = { {4 * 1024, 1024} },
8055 .block_erase = spi_block_erase_20,
8056 }, {
8057 .eraseblocks = { {32 * 1024, 128} },
8058 .block_erase = spi_block_erase_52,
8059 }, {
8060 .eraseblocks = { {64 * 1024, 64} },
8061 .block_erase = spi_block_erase_d8,
8062 }, {
8063 .eraseblocks = { {4 * 1024 * 1024, 1} },
8064 .block_erase = spi_block_erase_60,
8065 }, {
8066 .eraseblocks = { {4 * 1024 * 1024, 1} },
8067 .block_erase = spi_block_erase_c7,
8068 },
8069 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008070 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008071 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00008072 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008073 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008074 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008075 },
8076
8077 {
8078 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008079 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008080 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008081 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008082 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008083 .total_size = 8192,
8084 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008085 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +00008086 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008087 .probe = probe_spi_rdid,
8088 .probe_timing = TIMING_ZERO,
8089 .block_erasers =
8090 {
8091 {
8092 .eraseblocks = { {4 * 1024, 2048} },
8093 .block_erase = spi_block_erase_20,
8094 }, {
8095 .eraseblocks = { {32 * 1024, 256} },
8096 .block_erase = spi_block_erase_52,
8097 }, {
8098 .eraseblocks = { {64 * 1024, 128} },
8099 .block_erase = spi_block_erase_d8,
8100 }, {
8101 .eraseblocks = { {8 * 1024 * 1024, 1} },
8102 .block_erase = spi_block_erase_60,
8103 }, {
8104 .eraseblocks = { {8 * 1024 * 1024, 1} },
8105 .block_erase = spi_block_erase_c7,
8106 },
8107 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008108 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008109 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00008110 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008111 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008112 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +00008113 },
8114
8115 {
8116 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008117 .name = "SST25VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008118 .bustype = BUS_SPI,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008119 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008120 .model_id = SST_SST25VF040_REMS,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008121 .total_size = 512,
8122 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008123 .feature_bits = FEATURE_WRSR_EWSR,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008124 .tested = TEST_OK_PR,
8125 .probe = probe_spi_rems,
8126 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008127 .block_erasers =
8128 {
8129 {
8130 .eraseblocks = { {4 * 1024, 128} },
8131 .block_erase = spi_block_erase_20,
8132 }, {
8133 .eraseblocks = { {32 * 1024, 16} },
8134 .block_erase = spi_block_erase_52,
8135 }, {
8136 .eraseblocks = { {512 * 1024, 1} },
8137 .block_erase = spi_block_erase_60,
8138 },
8139 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008140 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008141 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008142 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008143 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00008144 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008145 },
8146
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008147 {
8148 .vendor = "SST",
8149 .name = "SST25VF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008150 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008151 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008152 .model_id = SST_SST25VF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008153 .total_size = 512,
8154 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008155 .feature_bits = FEATURE_WRSR_EWSR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008156 .tested = TEST_UNTESTED,
8157 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008158 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008159 .block_erasers =
8160 {
8161 {
8162 .eraseblocks = { {4 * 1024, 128} },
8163 .block_erase = spi_block_erase_20,
8164 }, {
8165 .eraseblocks = { {32 * 1024, 16} },
8166 .block_erase = spi_block_erase_52,
8167 }, {
8168 .eraseblocks = { {64 * 1024, 8} },
8169 .block_erase = spi_block_erase_d8,
8170 }, {
8171 .eraseblocks = { {512 * 1024, 1} },
8172 .block_erase = spi_block_erase_60,
8173 }, {
8174 .eraseblocks = { {512 * 1024, 1} },
8175 .block_erase = spi_block_erase_c7,
8176 },
8177 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008178 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008179 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008180 .write = spi_aai_write,
Zheng Bao0677dff2009-02-25 08:07:33 +00008181 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008182 .voltage = {2700, 3600},
Zheng Bao0677dff2009-02-25 08:07:33 +00008183 },
8184
8185 {
8186 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00008187 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008188 .bustype = BUS_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008189 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008190 .model_id = SST_SST25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00008191 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008192 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008193 .feature_bits = FEATURE_WRSR_EWSR,
Peter Stugefd9217d2009-01-26 03:37:40 +00008194 .tested = TEST_OK_PR,
8195 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008196 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008197 .block_erasers =
8198 {
8199 {
8200 .eraseblocks = { {4 * 1024, 128} },
8201 .block_erase = spi_block_erase_20,
8202 }, {
8203 .eraseblocks = { {32 * 1024, 16} },
8204 .block_erase = spi_block_erase_52,
8205 }, {
8206 .eraseblocks = { {64 * 1024, 8} },
8207 .block_erase = spi_block_erase_d8,
8208 }, {
8209 .eraseblocks = { {512 * 1024, 1} },
8210 .block_erase = spi_block_erase_60,
8211 }, {
8212 .eraseblocks = { {512 * 1024, 1} },
8213 .block_erase = spi_block_erase_c7,
8214 },
8215 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008216 .printlock = spi_prettyprint_status_register_sst25vf040b,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008217 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008218 .write = spi_aai_write,
Peter Stugefd9217d2009-01-26 03:37:40 +00008219 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00008220 .voltage = {2700, 3600},
Peter Stugefd9217d2009-01-26 03:37:40 +00008221 },
8222
8223 {
8224 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008225 .name = "SST25VF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008226 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008227 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008228 .model_id = SST_SST25VF080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008229 .total_size = 1024,
8230 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00008231 .feature_bits = FEATURE_WRSR_EWSR,
John Schmergec965c2d2011-05-18 11:28:47 +00008232 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008233 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008234 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00008235 .block_erasers =
8236 {
8237 {
8238 .eraseblocks = { {4 * 1024, 256} },
8239 .block_erase = spi_block_erase_20,
8240 }, {
8241 .eraseblocks = { {32 * 1024, 32} },
8242 .block_erase = spi_block_erase_52,
8243 }, {
8244 .eraseblocks = { {64 * 1024, 16} },
8245 .block_erase = spi_block_erase_d8,
8246 }, {
8247 .eraseblocks = { {1024 * 1024, 1} },
8248 .block_erase = spi_block_erase_60,
8249 }, {
8250 .eraseblocks = { {1024 * 1024, 1} },
8251 .block_erase = spi_block_erase_c7,
8252 },
8253 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00008254 .printlock = spi_prettyprint_status_register_sst25, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008255 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00008256 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008257 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008258 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008259 },
8260
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008261 {
8262 .vendor = "SST",
Stefan Tauner9e349e42012-10-01 22:45:08 +00008263 .name = "SST25WF512",
8264 .bustype = BUS_SPI,
8265 .manufacture_id = SST_ID,
8266 .model_id = SST_SST25WF512,
8267 .total_size = 64,
8268 .page_size = 256,
8269 .feature_bits = FEATURE_WRSR_EITHER,
8270 .tested = TEST_UNTESTED,
8271 .probe = probe_spi_rdid,
8272 .probe_timing = TIMING_ZERO,
8273 .block_erasers =
8274 {
8275 {
8276 .eraseblocks = { {4 * 1024, 16} },
8277 .block_erase = spi_block_erase_20,
8278 }, {
8279 .eraseblocks = { {32 * 1024, 2} },
8280 .block_erase = spi_block_erase_52,
8281 }, {
8282 .eraseblocks = { {1024 * 64, 1} },
8283 .block_erase = spi_block_erase_60,
8284 }, {
8285 .eraseblocks = { {1024 * 64, 1} },
8286 .block_erase = spi_block_erase_c7,
8287 },
8288 },
8289 .unlock = spi_disable_blockprotect,
8290 .write = spi_aai_write,
8291 .read = spi_chip_read, /* Fast read (0x0B) supported */
8292 .voltage = {1650, 1950},
8293 },
8294
8295 {
8296 .vendor = "SST",
8297 .name = "SST25WF010",
8298 .bustype = BUS_SPI,
8299 .manufacture_id = SST_ID,
8300 .model_id = SST_SST25WF010,
8301 .total_size = 128,
8302 .page_size = 256,
8303 .feature_bits = FEATURE_WRSR_EITHER,
8304 .tested = TEST_UNTESTED,
8305 .probe = probe_spi_rdid,
8306 .probe_timing = TIMING_ZERO,
8307 .block_erasers =
8308 {
8309 {
8310 .eraseblocks = { {4 * 1024, 32} },
8311 .block_erase = spi_block_erase_20,
8312 }, {
8313 .eraseblocks = { {32 * 1024, 4} },
8314 .block_erase = spi_block_erase_52,
8315 }, {
8316 .eraseblocks = { {1024 * 128, 1} },
8317 .block_erase = spi_block_erase_60,
8318 }, {
8319 .eraseblocks = { {1024 * 128, 1} },
8320 .block_erase = spi_block_erase_c7,
8321 },
8322 },
8323 .unlock = spi_disable_blockprotect,
8324 .write = spi_aai_write,
8325 .read = spi_chip_read, /* Fast read (0x0B) supported */
8326 .voltage = {1650, 1950},
8327 },
8328
8329 {
8330 .vendor = "SST",
8331 .name = "SST25WF020",
8332 .bustype = BUS_SPI,
8333 .manufacture_id = SST_ID,
8334 .model_id = SST_SST25WF020,
8335 .total_size = 256,
8336 .page_size = 256,
8337 .feature_bits = FEATURE_WRSR_EITHER,
8338 .tested = TEST_UNTESTED,
8339 .probe = probe_spi_rdid,
8340 .probe_timing = TIMING_ZERO,
8341 .block_erasers =
8342 {
8343 {
8344 .eraseblocks = { {4 * 1024, 64} },
8345 .block_erase = spi_block_erase_20,
8346 }, {
8347 .eraseblocks = { {32 * 1024, 8} },
8348 .block_erase = spi_block_erase_52,
8349 }, {
8350 .eraseblocks = { {64 * 1024, 4} },
8351 .block_erase = spi_block_erase_d8,
8352 }, {
8353 .eraseblocks = { {1024 * 256, 1} },
8354 .block_erase = spi_block_erase_60,
8355 }, {
8356 .eraseblocks = { {1024 * 256, 1} },
8357 .block_erase = spi_block_erase_c7,
8358 },
8359 },
8360 .unlock = spi_disable_blockprotect,
8361 .write = spi_aai_write,
8362 .read = spi_chip_read, /* Fast read (0x0B) supported */
8363 .voltage = {1650, 1950},
8364 },
8365
8366 {
8367 .vendor = "SST",
8368 .name = "SST25WF040",
8369 .bustype = BUS_SPI,
8370 .manufacture_id = SST_ID,
8371 .model_id = SST_SST25WF040,
8372 .total_size = 512,
8373 .page_size = 256,
8374 .feature_bits = FEATURE_WRSR_EITHER,
8375 .tested = TEST_UNTESTED,
8376 .probe = probe_spi_rdid,
8377 .probe_timing = TIMING_ZERO,
8378 .block_erasers =
8379 {
8380 {
8381 .eraseblocks = { {4 * 1024, 128} },
8382 .block_erase = spi_block_erase_20,
8383 }, {
8384 .eraseblocks = { {32 * 1024, 16} },
8385 .block_erase = spi_block_erase_52,
8386 }, {
8387 .eraseblocks = { {64 * 1024, 8} },
8388 .block_erase = spi_block_erase_d8,
8389 }, {
8390 .eraseblocks = { {1024 * 512, 1} },
8391 .block_erase = spi_block_erase_60,
8392 }, {
8393 .eraseblocks = { {1024 * 512, 1} },
8394 .block_erase = spi_block_erase_c7,
8395 },
8396 },
8397 .unlock = spi_disable_blockprotect,
8398 .write = spi_aai_write,
8399 .read = spi_chip_read, /* Fast read (0x0B) supported */
8400 .voltage = {1650, 1950},
8401 },
8402
8403 {
8404 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008405 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008406 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008407 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008408 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008409 .total_size = 512,
8410 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00008411 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008412 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008413 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008414 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008415 .block_erasers =
8416 {
8417 {
8418 .eraseblocks = { {128, 4096} },
8419 .block_erase = erase_sector_28sf040,
8420 }, {
8421 .eraseblocks = { {512 * 1024, 1} },
8422 .block_erase = erase_chip_28sf040,
8423 }
8424 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008425 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008426 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008427 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008428 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008429 },
8430
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008431 {
8432 .vendor = "SST",
8433 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008434 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008435 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008436 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008437 .total_size = 128,
8438 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008439 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008440 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008441 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008442 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008443 .block_erasers =
8444 {
8445 {
8446 .eraseblocks = { {128 * 1024, 1} },
8447 .block_erase = erase_chip_block_jedec,
8448 }
8449 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008450 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008451 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008452 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008453 },
8454
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008455 {
8456 .vendor = "SST",
8457 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008458 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008459 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008460 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008461 .total_size = 128,
8462 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008463 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008464 .tested = TEST_UNTESTED,
8465 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008466 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008467 .block_erasers =
8468 {
8469 {
8470 .eraseblocks = { {128 * 1024, 1} },
8471 .block_erase = erase_chip_block_jedec,
8472 }
8473 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008474 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008475 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008476 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008477 },
8478
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008479 {
8480 .vendor = "SST",
8481 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008482 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008483 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008484 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008485 .total_size = 256,
8486 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008487 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008488 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008489 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008490 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008491 .block_erasers =
8492 {
8493 {
8494 .eraseblocks = { {256 * 1024, 1} },
8495 .block_erase = erase_chip_block_jedec,
8496 }
8497 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008498 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008499 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008500 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008501 },
8502
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008503 {
8504 .vendor = "SST",
8505 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008506 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008507 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008508 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008509 .total_size = 256,
8510 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008511 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008512 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008513 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008514 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008515 .block_erasers =
8516 {
8517 {
8518 .eraseblocks = { {256 * 1024, 1} },
8519 .block_erase = erase_chip_block_jedec,
8520 }
8521 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008522 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008523 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008524 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008525 },
8526
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008527 {
8528 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00008529 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008530 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008531 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008532 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008533 .total_size = 64,
8534 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008535 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +00008536 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008537 .probe = probe_jedec,
8538 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00008539 .block_erasers =
8540 {
8541 {
8542 .eraseblocks = { {4 * 1024, 16} },
8543 .block_erase = erase_sector_jedec,
8544 }, {
8545 .eraseblocks = { {64 * 1024, 1} },
8546 .block_erase = erase_chip_block_jedec,
8547 }
8548 },
Sean Nelson35727f72010-01-28 23:55:12 +00008549 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00008550 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008551 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +00008552 },
8553
8554 {
8555 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008556 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008557 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008558 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008559 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008560 .total_size = 128,
8561 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008562 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008563 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008564 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008565 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008566 .block_erasers =
8567 {
8568 {
8569 .eraseblocks = { {4 * 1024, 32} },
8570 .block_erase = erase_sector_jedec,
8571 }, {
8572 .eraseblocks = { {128 * 1024, 1} },
8573 .block_erase = erase_chip_block_jedec,
8574 }
8575 },
Sean Nelson35727f72010-01-28 23:55:12 +00008576 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008577 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008578 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008579 },
8580
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008581 {
8582 .vendor = "SST",
8583 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008584 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008585 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008586 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008587 .total_size = 256,
8588 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008589 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +00008590 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008591 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008592 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008593 .block_erasers =
8594 {
8595 {
8596 .eraseblocks = { {4 * 1024, 64} },
8597 .block_erase = erase_sector_jedec,
8598 }, {
8599 .eraseblocks = { {256 * 1024, 1} },
8600 .block_erase = erase_chip_block_jedec,
8601 }
8602 },
Sean Nelson35727f72010-01-28 23:55:12 +00008603 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008604 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008605 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008606 },
8607
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008608 {
8609 .vendor = "SST",
8610 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008611 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008612 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008613 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008614 .total_size = 512,
8615 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008616 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00008617 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008618 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008619 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008620 .block_erasers =
8621 {
8622 {
8623 .eraseblocks = { {4 * 1024, 128} },
8624 .block_erase = erase_sector_jedec,
8625 }, {
8626 .eraseblocks = { {512 * 1024, 1} },
8627 .block_erase = erase_chip_block_jedec,
8628 }
8629 },
Sean Nelson35727f72010-01-28 23:55:12 +00008630 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008631 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008632 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008633 },
8634
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008635 {
8636 .vendor = "SST",
8637 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008638 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008639 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008640 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008641 .total_size = 64,
8642 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008643 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd7d423b2012-10-20 09:13:16 +00008644 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008645 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008646 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008647 .block_erasers =
8648 {
8649 {
8650 .eraseblocks = { {4 * 1024, 16} },
8651 .block_erase = erase_sector_jedec,
8652 }, {
8653 .eraseblocks = { {64 * 1024, 1} },
8654 .block_erase = erase_chip_block_jedec,
8655 }
8656 },
Sean Nelson35727f72010-01-28 23:55:12 +00008657 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008658 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008659 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008660 },
8661
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008662 {
8663 .vendor = "SST",
8664 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008665 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008666 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008667 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008668 .total_size = 128,
8669 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008670 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00008671 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008672 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008673 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008674 .block_erasers =
8675 {
8676 {
8677 .eraseblocks = { {4 * 1024, 32} },
8678 .block_erase = erase_sector_jedec,
8679 }, {
8680 .eraseblocks = { {128 * 1024, 1} },
8681 .block_erase = erase_chip_block_jedec,
8682 }
8683 },
Sean Nelson35727f72010-01-28 23:55:12 +00008684 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008685 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008686 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008687 },
8688
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008689 {
8690 .vendor = "SST",
8691 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008692 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008693 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008694 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008695 .total_size = 256,
8696 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008697 .feature_bits = FEATURE_EITHER_RESET,
8698 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008699 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008700 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008701 .block_erasers =
8702 {
8703 {
8704 .eraseblocks = { {4 * 1024, 64} },
8705 .block_erase = erase_sector_jedec,
8706 }, {
8707 .eraseblocks = { {256 * 1024, 1} },
8708 .block_erase = erase_chip_block_jedec,
8709 }
8710 },
Sean Nelson35727f72010-01-28 23:55:12 +00008711 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008712 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008713 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008714 },
8715
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008716 {
8717 .vendor = "SST",
8718 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008719 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008720 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008721 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008722 .total_size = 512,
8723 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008724 .feature_bits = FEATURE_EITHER_RESET,
8725 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008726 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008727 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008728 .block_erasers =
8729 {
8730 {
8731 .eraseblocks = { {4 * 1024, 128} },
8732 .block_erase = erase_sector_jedec,
8733 }, {
8734 .eraseblocks = { {512 * 1024, 1} },
8735 .block_erase = erase_chip_block_jedec,
8736 }
8737 },
Sean Nelson35727f72010-01-28 23:55:12 +00008738 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008739 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008740 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00008741 },
FENG yu ningff692fb2008-12-08 18:15:10 +00008742
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008743 {
8744 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00008745 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008746 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00008747 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008748 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00008749 .total_size = 1024,
8750 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00008751 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00008752 .tested = TEST_UNTESTED,
8753 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00008754 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008755 .block_erasers =
8756 {
8757 {
8758 .eraseblocks = { {4 * 1024, 256} },
8759 .block_erase = erase_sector_jedec,
8760 }, {
8761 .eraseblocks = { {64 * 1024, 16} },
8762 .block_erase = erase_block_jedec,
8763 }, {
8764 .eraseblocks = { {1024 * 1024, 1} },
8765 .block_erase = erase_chip_block_jedec,
8766 }
8767 },
Sean Nelson35727f72010-01-28 23:55:12 +00008768 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008769 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008770 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +00008771 },
8772
8773 {
8774 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008775 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008776 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008777 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008778 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008779 .total_size = 256,
8780 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008781 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008782 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008783 .probe = probe_jedec,
8784 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008785 .block_erasers =
8786 {
8787 {
8788 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008789 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008790 }, {
8791 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008792 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008793 }, {
8794 .eraseblocks = { {256 * 1024, 1} },
8795 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8796 }
8797 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008798 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008799 .unlock = unlock_sst_fwhub,
8800 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008801 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008802 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008803 },
8804
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008805 {
8806 .vendor = "SST",
8807 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008808 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008809 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008810 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008811 .total_size = 384,
8812 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008813 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +00008814 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008815 .probe = probe_jedec,
8816 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008817 .block_erasers =
8818 {
8819 {
8820 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008821 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008822 }, {
8823 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008824 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008825 }, {
8826 .eraseblocks = { {384 * 1024, 1} },
8827 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8828 }
8829 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008830 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008831 .unlock = unlock_sst_fwhub,
8832 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008833 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008834 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008835 },
8836
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008837 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008838 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
8839 * and is only honored for 64k block erase, but not 4k sector erase.
8840 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008841 .vendor = "SST",
8842 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008843 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008844 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008845 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008846 .total_size = 512,
8847 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008848 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00008849 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008850 .probe = probe_jedec,
8851 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008852 .block_erasers =
8853 {
8854 {
8855 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008856 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008857 }, {
8858 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008859 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008860 }, {
8861 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00008862 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00008863 },
8864 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008865 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008866 .unlock = unlock_sst_fwhub,
8867 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008868 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008869 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008870 },
8871
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008872 {
8873 .vendor = "SST",
8874 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008875 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008876 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008877 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008878 .total_size = 512,
8879 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008880 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008881 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008882 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008883 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008884 .block_erasers =
8885 {
8886 {
8887 .eraseblocks = { {4 * 1024, 128} },
8888 .block_erase = erase_sector_49lfxxxc,
8889 }, {
8890 .eraseblocks = {
8891 {64 * 1024, 7},
8892 {32 * 1024, 1},
8893 {8 * 1024, 2},
8894 {16 * 1024, 1},
8895 },
Sean Nelson69e58112010-03-23 17:10:28 +00008896 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008897 }
8898 },
Sean Nelson69e58112010-03-23 17:10:28 +00008899 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008900 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008901 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008902 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008903 },
8904
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008905 {
8906 .vendor = "SST",
8907 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008908 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008909 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008910 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008911 .total_size = 1024,
8912 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008913 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008914 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008915 .probe = probe_jedec,
8916 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008917 .block_erasers =
8918 {
8919 {
8920 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008921 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008922 }, {
8923 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008924 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008925 }, {
8926 .eraseblocks = { {1024 * 1024, 1} },
8927 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
8928 }
8929 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008930 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00008931 .unlock = unlock_sst_fwhub,
8932 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008933 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008934 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008935 },
8936
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008937 {
8938 .vendor = "SST",
8939 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008940 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008941 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008942 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008943 .total_size = 1024,
8944 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008945 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008946 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008947 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008948 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008949 .block_erasers =
8950 {
8951 {
8952 .eraseblocks = { {4 * 1024, 256} },
8953 .block_erase = erase_sector_49lfxxxc,
8954 }, {
8955 .eraseblocks = {
8956 {64 * 1024, 15},
8957 {32 * 1024, 1},
8958 {8 * 1024, 2},
8959 {16 * 1024, 1},
8960 },
Sean Nelson69e58112010-03-23 17:10:28 +00008961 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008962 }
8963 },
Sean Nelson69e58112010-03-23 17:10:28 +00008964 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008965 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008966 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008967 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008968 },
8969
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008970 {
8971 .vendor = "SST",
8972 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008973 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008974 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00008975 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008976 .total_size = 2048,
8977 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008978 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner2abab942012-04-27 20:41:23 +00008979 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008980 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008981 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00008982 .block_erasers =
8983 {
8984 {
8985 .eraseblocks = { {4 * 1024, 512} },
8986 .block_erase = erase_sector_49lfxxxc,
8987 }, {
8988 .eraseblocks = {
8989 {64 * 1024, 31},
8990 {32 * 1024, 1},
8991 {8 * 1024, 2},
8992 {16 * 1024, 1},
8993 },
Sean Nelson69e58112010-03-23 17:10:28 +00008994 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00008995 }
8996 },
Sean Nelson69e58112010-03-23 17:10:28 +00008997 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00008998 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008999 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009000 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009001 },
9002
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009003 {
9004 .vendor = "SST",
9005 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009006 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009007 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009008 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009009 .total_size = 256,
9010 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009011 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00009012 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009013 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00009014 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00009015 .block_erasers =
9016 {
9017 {
9018 .eraseblocks = { {4 * 1024, 64} },
9019 .block_erase = erase_sector_jedec,
9020 }, {
9021 .eraseblocks = { {16 * 1024, 16} },
9022 .block_erase = erase_block_jedec,
9023 }, {
9024 .eraseblocks = { {256 * 1024, 1} },
9025 .block_erase = NULL,
9026 }
9027 },
Sean Nelson35727f72010-01-28 23:55:12 +00009028 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009029 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009030 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +00009031 },
9032
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009033 {
9034 .vendor = "SST",
9035 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009036 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009037 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009038 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009039 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00009040 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009041 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009042 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009043 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00009044 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00009045 .block_erasers =
9046 {
9047 {
9048 .eraseblocks = { {4 * 1024, 64} },
9049 .block_erase = erase_sector_jedec,
9050 }, {
9051 .eraseblocks = { {16 * 1024, 16} },
9052 .block_erase = erase_block_jedec,
9053 }, {
9054 .eraseblocks = { {256 * 1024, 1} },
9055 .block_erase = NULL,
9056 }
9057 },
Sean Nelson35727f72010-01-28 23:55:12 +00009058 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009059 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009060 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009061 },
9062
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009063 {
9064 .vendor = "SST",
9065 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009066 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009067 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009068 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009069 .total_size = 512,
9070 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00009071 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009072 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009073 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00009074 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00009075 .block_erasers =
9076 {
9077 {
9078 .eraseblocks = { {4 * 1024, 128} },
9079 .block_erase = erase_sector_jedec,
9080 }, {
9081 .eraseblocks = { {64 * 1024, 8} },
9082 .block_erase = erase_block_jedec,
9083 }, {
9084 .eraseblocks = { {512 * 1024, 1} },
9085 .block_erase = NULL,
9086 }
9087 },
Sean Nelson35727f72010-01-28 23:55:12 +00009088 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009089 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009090 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009091 },
9092
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009093 {
9094 .vendor = "SST",
9095 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009096 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009097 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009098 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009099 .total_size = 512,
9100 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00009101 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009102 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00009103 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009104 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00009105 .block_erasers =
9106 {
9107 {
9108 .eraseblocks = { {4 * 1024, 128} },
9109 .block_erase = erase_sector_jedec,
9110 }, {
9111 .eraseblocks = { {64 * 1024, 8} },
9112 .block_erase = erase_block_jedec,
9113 }, {
9114 .eraseblocks = { {512 * 1024, 1} },
9115 .block_erase = NULL,
9116 }
9117 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00009118 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00009119 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009120 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009121 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009122 },
9123
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009124 {
9125 .vendor = "SST",
9126 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009127 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009128 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009129 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009130 .total_size = 1024,
9131 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00009132 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +00009133 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009134 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00009135 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00009136 .block_erasers =
9137 {
9138 {
9139 .eraseblocks = { {4 * 1024, 256} },
9140 .block_erase = erase_sector_jedec,
9141 }, {
9142 .eraseblocks = { {64 * 1024, 16} },
9143 .block_erase = erase_block_jedec,
9144 }, {
9145 .eraseblocks = { {1024 * 1024, 1} },
9146 .block_erase = NULL,
9147 }
9148 },
Sean Nelson35727f72010-01-28 23:55:12 +00009149 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009150 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009151 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009152 },
9153
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009154 {
9155 .vendor = "SST",
9156 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009157 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009158 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009159 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009160 .total_size = 2048,
9161 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009162 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009163 .tested = TEST_OK_PRE,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009164 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009165 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00009166 .block_erasers =
9167 {
9168 {
9169 .eraseblocks = { {4 * 1024, 512} },
9170 .block_erase = erase_sector_49lfxxxc,
9171 }, {
9172 .eraseblocks = {
9173 {64 * 1024, 31},
9174 {32 * 1024, 1},
9175 {8 * 1024, 2},
9176 {16 * 1024, 1},
9177 },
Sean Nelson69e58112010-03-23 17:10:28 +00009178 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00009179 }
9180 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00009181 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009182 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009183 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009184 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009185 },
9186
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009187 {
9188 .vendor = "ST",
9189 .name = "M25P05-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009190 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009191 .manufacture_id = ST_ID,
9192 .model_id = ST_M25P05A,
9193 .total_size = 64,
9194 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009195 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009196 .tested = TEST_UNTESTED,
9197 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009198 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009199 .block_erasers =
9200 {
9201 {
9202 .eraseblocks = { {32 * 1024, 2} },
9203 .block_erase = spi_block_erase_d8,
9204 }, {
9205 .eraseblocks = { {64 * 1024, 1} },
9206 .block_erase = spi_block_erase_c7,
9207 }
9208 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009209 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009210 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009211 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009212 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009213 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009214 },
9215
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009216 /* The ST M25P05 is a bit of a problem. It has the same ID as the
9217 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009218 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009219 * only is successful if RDID does not work.
9220 */
9221 {
9222 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009223 .name = "M25P05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009224 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009225 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009226 .model_id = ST_M25P05_RES,
9227 .total_size = 64,
9228 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009229 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009230 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009231 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009232 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009233 .block_erasers =
9234 {
9235 {
9236 .eraseblocks = { {32 * 1024, 2} },
9237 .block_erase = spi_block_erase_d8,
9238 }, {
9239 .eraseblocks = { {64 * 1024, 1} },
9240 .block_erase = spi_block_erase_c7,
9241 }
9242 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009243 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009244 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009245 .write = spi_chip_write_1, /* 128 */
9246 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009247 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009248 },
9249
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009250 {
9251 .vendor = "ST",
9252 .name = "M25P10-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009253 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009254 .manufacture_id = ST_ID,
9255 .model_id = ST_M25P10A,
9256 .total_size = 128,
9257 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009258 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009259 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009260 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009261 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009262 .block_erasers =
9263 {
9264 {
9265 .eraseblocks = { {32 * 1024, 4} },
9266 .block_erase = spi_block_erase_d8,
9267 }, {
9268 .eraseblocks = { {128 * 1024, 1} },
9269 .block_erase = spi_block_erase_c7,
9270 }
9271 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009272 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009273 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009274 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009275 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009276 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009277 },
9278
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009279 /* The ST M25P10 has the same problem as the M25P05. */
9280 {
9281 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009282 .name = "M25P10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009283 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009284 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009285 .model_id = ST_M25P10_RES,
9286 .total_size = 128,
9287 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009288 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009289 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009290 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009291 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009292 .block_erasers =
9293 {
9294 {
9295 .eraseblocks = { {32 * 1024, 4} },
9296 .block_erase = spi_block_erase_d8,
9297 }, {
9298 .eraseblocks = { {128 * 1024, 1} },
9299 .block_erase = spi_block_erase_c7,
9300 }
9301 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009302 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009303 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009304 .write = spi_chip_write_1, /* 128 */
9305 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009306 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00009307 },
9308
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009309 {
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009310 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009311 .name = "M25P20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009312 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009313 .manufacture_id = ST_ID,
9314 .model_id = ST_M25P20,
9315 .total_size = 256,
9316 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009317 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009318 .tested = TEST_UNTESTED,
9319 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009320 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009321 .block_erasers =
9322 {
9323 {
9324 .eraseblocks = { {64 * 1024, 4} },
9325 .block_erase = spi_block_erase_d8,
9326 }, {
9327 .eraseblocks = { {256 * 1024, 1} },
9328 .block_erase = spi_block_erase_c7,
9329 }
9330 },
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009331 .printlock = spi_prettyprint_status_register_default_bp1,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009332 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009333 .write = spi_chip_write_256,
Kyösti Mälkkic54adc52013-03-04 01:20:28 +00009334 .read = spi_chip_read, /* Fast read (0x0B) supported */
9335 .voltage = {2700, 3600},
9336 },
9337
9338 {
9339 .vendor = "ST",
9340 .name = "M25P20-old",
9341 .bustype = BUS_SPI,
9342 .manufacture_id = 0, /* Not used. */
9343 .model_id = ST_M25P20_RES,
9344 .total_size = 256,
9345 .page_size = 256,
9346 .feature_bits = FEATURE_WRSR_WREN,
9347 .tested = TEST_OK_PREW,
9348 .probe = probe_spi_res1,
9349 .probe_timing = TIMING_ZERO,
9350 .block_erasers =
9351 {
9352 {
9353 .eraseblocks = { {64 * 1024, 4} },
9354 .block_erase = spi_block_erase_d8,
9355 }, {
9356 .eraseblocks = { {256 * 1024, 1} },
9357 .block_erase = spi_block_erase_c7,
9358 }
9359 },
9360 .printlock = spi_prettyprint_status_register_default_bp1,
9361 .unlock = spi_disable_blockprotect,
9362 .write = spi_chip_write_256,
9363 .read = spi_chip_read, /* Fast read (0x0B) supported */
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009364 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009365 },
9366
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009367 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00009368 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009369 .name = "M25P40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009370 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009371 .manufacture_id = ST_ID,
9372 .model_id = ST_M25P40,
9373 .total_size = 512,
9374 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009375 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00009376 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009377 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009378 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009379 .block_erasers =
9380 {
9381 {
9382 .eraseblocks = { {64 * 1024, 8} },
9383 .block_erase = spi_block_erase_d8,
9384 }, {
9385 .eraseblocks = { {512 * 1024, 1} },
9386 .block_erase = spi_block_erase_c7,
9387 }
9388 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009389 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009390 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009391 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009392 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009393 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009394 },
9395
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009396 {
9397 .vendor = "ST",
9398 .name = "M25P40-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009399 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009400 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009401 .model_id = ST_M25P40_RES,
9402 .total_size = 512,
9403 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009404 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009405 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00009406 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009407 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009408 .block_erasers =
9409 {
9410 {
9411 .eraseblocks = { {64 * 1024, 8} },
9412 .block_erase = spi_block_erase_d8,
9413 }, {
9414 .eraseblocks = { {512 * 1024, 1} },
9415 .block_erase = spi_block_erase_c7,
9416 }
9417 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009418 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009419 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009420 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009421 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00009422 },
9423
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009424 {
9425 .vendor = "ST",
9426 .name = "M25P80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009427 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009428 .manufacture_id = ST_ID,
9429 .model_id = ST_M25P80,
9430 .total_size = 1024,
9431 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009432 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann19f46f22011-06-18 22:56:14 +00009433 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009434 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009435 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009436 .block_erasers =
9437 {
9438 {
9439 .eraseblocks = { {64 * 1024, 16} },
9440 .block_erase = spi_block_erase_d8,
9441 }, {
9442 .eraseblocks = { {1024 * 1024, 1} },
9443 .block_erase = spi_block_erase_c7,
9444 }
9445 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009446 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009447 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009448 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009449 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009450 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009451 },
9452
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009453 {
9454 .vendor = "ST",
9455 .name = "M25P16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009456 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009457 .manufacture_id = ST_ID,
9458 .model_id = ST_M25P16,
9459 .total_size = 2048,
9460 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009461 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009462 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009463 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009464 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009465 .block_erasers =
9466 {
9467 {
9468 .eraseblocks = { {64 * 1024, 32} },
9469 .block_erase = spi_block_erase_d8,
9470 }, {
9471 .eraseblocks = { {2 * 1024 * 1024, 1} },
9472 .block_erase = spi_block_erase_c7,
9473 }
9474 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009475 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009476 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009477 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009478 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009479 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009480 },
9481
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009482 {
9483 .vendor = "ST",
9484 .name = "M25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009485 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009486 .manufacture_id = ST_ID,
9487 .model_id = ST_M25P32,
9488 .total_size = 4096,
9489 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009490 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009491 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009492 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009493 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009494 .block_erasers =
9495 {
9496 {
9497 .eraseblocks = { {64 * 1024, 64} },
9498 .block_erase = spi_block_erase_d8,
9499 }, {
9500 .eraseblocks = { {4 * 1024 * 1024, 1} },
9501 .block_erase = spi_block_erase_c7,
9502 }
9503 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009504 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009505 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009506 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009507 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009508 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009509 },
9510
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009511 {
9512 .vendor = "ST",
9513 .name = "M25P64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009514 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009515 .manufacture_id = ST_ID,
9516 .model_id = ST_M25P64,
9517 .total_size = 8192,
9518 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009519 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00009520 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009521 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009522 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009523 .block_erasers =
9524 {
9525 {
9526 .eraseblocks = { {64 * 1024, 128} },
9527 .block_erase = spi_block_erase_d8,
9528 }, {
9529 .eraseblocks = { {8 * 1024 * 1024, 1} },
9530 .block_erase = spi_block_erase_c7,
9531 }
9532 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009533 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009534 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009535 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009536 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009537 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009538 },
9539
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009540 {
9541 .vendor = "ST",
9542 .name = "M25P128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009543 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009544 .manufacture_id = ST_ID,
9545 .model_id = ST_M25P128,
9546 .total_size = 16384,
9547 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009548 .feature_bits = FEATURE_WRSR_WREN,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009549 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009550 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009551 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00009552 .block_erasers =
9553 {
9554 {
9555 .eraseblocks = { {256 * 1024, 64} },
9556 .block_erase = spi_block_erase_d8,
9557 }, {
9558 .eraseblocks = { {16 * 1024 * 1024, 1} },
9559 .block_erase = spi_block_erase_c7,
9560 }
9561 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009562 .printlock = spi_prettyprint_status_register_default_bp3, /* TODO: check */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009563 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00009564 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009565 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009566 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009567 },
9568
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009569 {
9570 .vendor = "ST",
Carl Worthd1dd72c2011-03-06 18:45:40 +00009571 .name = "M25PX16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009572 .bustype = BUS_SPI,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009573 .manufacture_id = ST_ID,
9574 .model_id = ST_M25PX16,
9575 .total_size = 2048,
9576 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00009577 /* OTP: 64B total; read 0x4B; write 0x42 */
Steven Zakulec3603a282012-05-02 20:07:57 +00009578 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl Worthd1dd72c2011-03-06 18:45:40 +00009579 .tested = TEST_OK_PREW,
9580 .probe = probe_spi_rdid,
9581 .probe_timing = TIMING_ZERO,
9582 .block_erasers =
9583 {
9584 {
9585 .eraseblocks = { { 4 * 1024, 512 } },
9586 .block_erase = spi_block_erase_20,
9587 }, {
9588 .eraseblocks = { {64 * 1024, 32} },
9589 .block_erase = spi_block_erase_d8,
9590 }, {
9591 .eraseblocks = { {2 * 1024 * 1024, 1} },
9592 .block_erase = spi_block_erase_c7,
9593 }
9594 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009595 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl Worthd1dd72c2011-03-06 18:45:40 +00009596 .unlock = spi_disable_blockprotect,
9597 .write = spi_chip_write_256,
9598 .read = spi_chip_read,
9599 },
9600
9601 {
9602 .vendor = "ST",
Jason Shriver4119e9b2010-09-14 13:16:01 +00009603 .name = "M25PX32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009604 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009605 .manufacture_id = ST_ID,
9606 .model_id = ST_M25PX32,
9607 .total_size = 4096,
9608 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009609 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009610 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009611 .probe = probe_spi_rdid,
9612 .probe_timing = TIMING_ZERO,
9613 .block_erasers =
9614 {
9615 {
9616 .eraseblocks = { { 4 * 1024, 1024 } },
9617 .block_erase = spi_block_erase_20,
9618 }, {
9619 .eraseblocks = { {64 * 1024, 64} },
9620 .block_erase = spi_block_erase_d8,
9621 }, {
9622 .eraseblocks = { {4 * 1024 * 1024, 1} },
9623 .block_erase = spi_block_erase_c7,
9624 }
9625 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009626 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009627 .unlock = spi_disable_blockprotect,
9628 .write = spi_chip_write_256,
9629 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009630 .voltage = {2700, 3600},
Jason Shriver4119e9b2010-09-14 13:16:01 +00009631 },
9632
9633 {
9634 .vendor = "ST",
9635 .name = "M25PX64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009636 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009637 .manufacture_id = ST_ID,
9638 .model_id = ST_M25PX64,
9639 .total_size = 8192,
9640 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00009641 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009642 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00009643 .probe = probe_spi_rdid,
9644 .probe_timing = TIMING_ZERO,
9645 .block_erasers =
9646 {
9647 {
9648 .eraseblocks = { { 4 * 1024, 2048 } },
9649 .block_erase = spi_block_erase_20,
9650 }, {
9651 .eraseblocks = { {64 * 1024, 128} },
9652 .block_erase = spi_block_erase_d8,
9653 }, {
9654 .eraseblocks = { {8 * 1024 * 1024, 1} },
9655 .block_erase = spi_block_erase_c7,
9656 }
9657 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +00009658 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Jason Shriver4119e9b2010-09-14 13:16:01 +00009659 .unlock = spi_disable_blockprotect,
9660 .write = spi_chip_write_256,
9661 .read = spi_chip_read,
9662 },
9663
9664 {
9665 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009666 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009667 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009668 .manufacture_id = ST_ID,
9669 .model_id = ST_M29F002B,
9670 .total_size = 256,
9671 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009672 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009673 .tested = TEST_UNTESTED,
9674 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009675 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009676 .block_erasers =
9677 {
9678 {
9679 .eraseblocks = {
9680 {16 * 1024, 1},
9681 {8 * 1024, 2},
9682 {32 * 1024, 1},
9683 {64 * 1024, 3},
9684 },
9685 .block_erase = erase_sector_jedec,
9686 }, {
9687 .eraseblocks = { {256 * 1024, 1} },
9688 .block_erase = erase_chip_block_jedec,
9689 }
9690 },
Sean Nelson35727f72010-01-28 23:55:12 +00009691 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009692 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009693 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009694 },
9695
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009696 {
9697 .vendor = "ST",
9698 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009699 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009700 .manufacture_id = ST_ID,
9701 .model_id = ST_M29F002T,
9702 .total_size = 256,
9703 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009704 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stefan Taunere34e3e82013-01-01 00:06:51 +00009705 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009706 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009707 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009708 .block_erasers =
9709 {
9710 {
9711 .eraseblocks = {
9712 {64 * 1024, 3},
9713 {32 * 1024, 1},
9714 {8 * 1024, 2},
9715 {16 * 1024, 1},
9716 },
9717 .block_erase = erase_sector_jedec,
9718 }, {
9719 .eraseblocks = { {256 * 1024, 1} },
9720 .block_erase = erase_chip_block_jedec,
9721 }
9722 },
Sean Nelson35727f72010-01-28 23:55:12 +00009723 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009724 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009725 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00009726 },
9727
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009728 {
9729 .vendor = "ST",
9730 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009731 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009732 .manufacture_id = ST_ID,
9733 .model_id = ST_M29F040B,
9734 .total_size = 512,
9735 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009736 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
9737 .tested = TEST_UNTESTED,
9738 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00009739 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +00009740 .block_erasers =
9741 {
9742 {
9743 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00009744 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009745 }, {
9746 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00009747 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00009748 }
9749 },
Sean Nelson35727f72010-01-28 23:55:12 +00009750 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009751 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009752 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009753 },
9754
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009755 {
Sean Nelson35727f72010-01-28 23:55:12 +00009756 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009757 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009758 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009759 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009760 .manufacture_id = ST_ID,
9761 .model_id = ST_M29F400BB,
9762 .total_size = 512,
9763 .page_size = 64 * 1024,
9764 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009765 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009766 .probe = probe_m29f400bt,
9767 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
9768 .block_erasers =
9769 {
9770 {
9771 .eraseblocks = {
9772 {16 * 1024, 1},
9773 {8 * 1024, 2},
9774 {32 * 1024, 1},
9775 {64 * 1024, 7},
9776 },
9777 .block_erase = block_erase_m29f400bt,
9778 }, {
9779 .eraseblocks = { {512 * 1024, 1} },
9780 .block_erase = block_erase_chip_m29f400bt,
9781 }
9782 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00009783 .write = write_m29f400bt,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009784 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009785 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009786 },
9787 {
9788 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
9789 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009790 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009791 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009792 .manufacture_id = ST_ID,
9793 .model_id = ST_M29F400BT,
9794 .total_size = 512,
9795 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009796 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009797 .tested = TEST_UNTESTED,
9798 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00009799 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00009800 .block_erasers =
9801 {
9802 {
9803 .eraseblocks = {
9804 {64 * 1024, 7},
9805 {32 * 1024, 1},
9806 {8 * 1024, 2},
9807 {16 * 1024, 1},
9808 },
9809 .block_erase = block_erase_m29f400bt,
9810 }, {
9811 .eraseblocks = { {512 * 1024, 1} },
9812 .block_erase = block_erase_chip_m29f400bt,
9813 }
9814 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00009815 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009816 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009817 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009818 },
9819
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009820 {
9821 .vendor = "ST",
9822 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009823 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009824 .manufacture_id = ST_ID,
9825 .model_id = ST_M29W010B,
9826 .total_size = 128,
9827 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009828 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009829 .tested = TEST_UNTESTED,
9830 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009831 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009832 .block_erasers =
9833 {
9834 {
9835 .eraseblocks = { {16 * 1024, 8}, },
9836 .block_erase = erase_sector_jedec,
9837 }, {
9838 .eraseblocks = { {128 * 1024, 1} },
9839 .block_erase = erase_chip_block_jedec,
9840 }
9841 },
Sean Nelson35727f72010-01-28 23:55:12 +00009842 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009843 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009844 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009845 },
9846
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009847 {
9848 .vendor = "ST",
9849 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009850 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009851 .manufacture_id = ST_ID,
9852 .model_id = ST_M29W040B,
9853 .total_size = 512,
9854 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009855 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009856 .tested = TEST_UNTESTED,
9857 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009858 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00009859 .block_erasers =
9860 {
9861 {
9862 .eraseblocks = { {64 * 1024, 8}, },
9863 .block_erase = erase_sector_jedec,
9864 }, {
9865 .eraseblocks = { {512 * 1024, 1} },
9866 .block_erase = erase_chip_block_jedec,
9867 }
9868 },
Sean Nelson35727f72010-01-28 23:55:12 +00009869 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009870 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009871 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009872 },
9873
Stefan Taunereb582572012-09-21 12:52:50 +00009874 {
9875 .vendor = "ST",
9876 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009877 .bustype = BUS_PARALLEL,
Stefan Taunereb582572012-09-21 12:52:50 +00009878 .manufacture_id = ST_ID,
9879 .model_id = ST_M29W512B,
9880 .total_size = 64,
9881 .page_size = 64 * 1024,
9882 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009883 .tested = TEST_OK_PRE,
Stefan Taunereb582572012-09-21 12:52:50 +00009884 .probe = probe_jedec,
9885 .probe_timing = TIMING_ZERO,
9886 .block_erasers =
9887 {
9888 {
9889 .eraseblocks = { {64 * 1024, 1} },
9890 .block_erase = erase_chip_block_jedec,
9891 }
9892 },
9893 .write = write_jedec_1,
9894 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009895 .voltage = {2700, 3600},
Stefan Taunereb582572012-09-21 12:52:50 +00009896 },
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00009897
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009898 {
9899 .vendor = "ST",
9900 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009901 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009902 .manufacture_id = ST_ID,
9903 .model_id = ST_M50FLW040A,
9904 .total_size = 512,
9905 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009906 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009907 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009908 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009909 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009910 .block_erasers =
9911 {
9912 {
Sean Nelson329bde72010-01-19 16:39:19 +00009913 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009914 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009915 {64 * 1024, 5}, /* block */
9916 {4 * 1024, 16}, /* sector */
9917 {4 * 1024, 16}, /* sector */
9918 },
9919 .block_erase = NULL,
9920 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009921 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009922 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009923 }
9924 },
Sean Nelson28accc22010-03-19 18:47:06 +00009925 .unlock = unlock_stm50flw0x0x,
9926 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009927 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009928 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009929 },
9930
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009931 {
9932 .vendor = "ST",
9933 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009934 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009935 .manufacture_id = ST_ID,
9936 .model_id = ST_M50FLW040B,
9937 .total_size = 512,
9938 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009939 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009940 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00009941 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009942 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009943 .block_erasers =
9944 {
9945 {
Sean Nelson329bde72010-01-19 16:39:19 +00009946 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009947 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009948 {4 * 1024, 16}, /* sector */
9949 {64 * 1024, 5}, /* block */
9950 {4 * 1024, 16}, /* sector */
9951 },
9952 .block_erase = NULL,
9953 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009954 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009955 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009956 }
9957 },
Sean Nelson28accc22010-03-19 18:47:06 +00009958 .unlock = unlock_stm50flw0x0x,
9959 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009960 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009961 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009962 },
9963
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009964 {
9965 .vendor = "ST",
9966 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009967 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009968 .manufacture_id = ST_ID,
9969 .model_id = ST_M50FLW080A,
9970 .total_size = 1024,
9971 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00009972 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009973 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +00009974 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00009975 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00009976 .block_erasers =
9977 {
9978 {
Sean Nelson329bde72010-01-19 16:39:19 +00009979 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00009980 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00009981 {64 * 1024, 13}, /* block */
9982 {4 * 1024, 16}, /* sector */
9983 {4 * 1024, 16}, /* sector */
9984 },
9985 .block_erase = NULL,
9986 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00009987 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00009988 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00009989 }
9990 },
Sean Nelson28accc22010-03-19 18:47:06 +00009991 .unlock = unlock_stm50flw0x0x,
9992 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009993 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009994 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00009995 },
9996
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009997 {
9998 .vendor = "ST",
9999 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010000 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010001 .manufacture_id = ST_ID,
10002 .model_id = ST_M50FLW080B,
10003 .total_size = 1024,
10004 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010005 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010006 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000010007 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +000010008 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +000010009 .block_erasers =
10010 {
10011 {
Sean Nelson329bde72010-01-19 16:39:19 +000010012 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +000010013 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +000010014 {4 * 1024, 16}, /* sector */
10015 {64 * 1024, 13}, /* block */
10016 {4 * 1024, 16}, /* sector */
10017 },
10018 .block_erase = NULL,
10019 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +000010020 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +000010021 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010022 }
10023 },
Sean Nelson28accc22010-03-19 18:47:06 +000010024 .unlock = unlock_stm50flw0x0x,
10025 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010026 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010027 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010028 },
10029
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010030 {
10031 .vendor = "ST",
10032 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010033 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010034 .manufacture_id = ST_ID,
10035 .model_id = ST_M50FW002,
10036 .total_size = 256,
10037 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010038 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010039 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000010040 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000010041 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000010042 .block_erasers =
10043 {
10044 {
10045 .eraseblocks = {
10046 {64 * 1024, 3},
10047 {32 * 1024, 1},
10048 {8 * 1024, 2},
10049 {16 * 1024, 1},
10050 },
Sean Nelson28accc22010-03-19 18:47:06 +000010051 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010052 }
10053 },
Sean Nelson28accc22010-03-19 18:47:06 +000010054 .unlock = unlock_stm50flw0x0x,
10055 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010056 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010057 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010058 },
10059
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010060 {
10061 .vendor = "ST",
10062 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010063 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010064 .manufacture_id = ST_ID,
10065 .model_id = ST_M50FW016,
10066 .total_size = 2048,
10067 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010068 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010069 .tested = TEST_UNTESTED,
10070 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000010071 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000010072 .block_erasers =
10073 {
10074 {
10075 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +000010076 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010077 }
10078 },
Sean Nelson28accc22010-03-19 18:47:06 +000010079 .unlock = unlock_stm50flw0x0x,
10080 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010081 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010082 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010083 },
10084
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010085 {
10086 .vendor = "ST",
10087 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010088 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010089 .manufacture_id = ST_ID,
10090 .model_id = ST_M50FW040,
10091 .total_size = 512,
10092 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010093 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +000010094 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010095 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000010096 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000010097 .block_erasers =
10098 {
10099 {
10100 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +000010101 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010102 }
10103 },
Sean Nelson28accc22010-03-19 18:47:06 +000010104 .unlock = unlock_stm50flw0x0x,
10105 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010106 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010107 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010108 },
10109
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010110 {
10111 .vendor = "ST",
10112 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010113 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010114 .manufacture_id = ST_ID,
10115 .model_id = ST_M50FW080,
10116 .total_size = 1024,
10117 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010118 .feature_bits = FEATURE_REGISTERMAP,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010119 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010120 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +000010121 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +000010122 .block_erasers =
10123 {
10124 {
10125 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +000010126 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010127 }
10128 },
Sean Nelson28accc22010-03-19 18:47:06 +000010129 .unlock = unlock_stm50flw0x0x,
10130 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010131 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010132 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010133 },
10134
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010135 {
10136 .vendor = "ST",
10137 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010138 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010139 .manufacture_id = ST_ID,
10140 .model_id = ST_M50LPW116,
10141 .total_size = 2048,
10142 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +000010143 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010144 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +000010145 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +000010146 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010147 .block_erasers =
10148 {
10149 {
10150 .eraseblocks = {
10151 {4 * 1024, 16},
10152 {64 * 1024, 30},
10153 {32 * 1024, 1},
10154 {8 * 1024, 2},
10155 {16 * 1024, 1},
10156 },
Sean Nelson28accc22010-03-19 18:47:06 +000010157 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +000010158 }
10159 },
Sean Nelson28accc22010-03-19 18:47:06 +000010160 .unlock = unlock_stm50flw0x0x,
10161 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010162 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010163 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +000010164 },
10165
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010166 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010167 .vendor = "SyncMOS/MoselVitelic",
10168 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010169 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010170 .manufacture_id = SYNCMOS_MVC_ID,
10171 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010172 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010173 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000010174 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010175 .tested = TEST_UNTESTED,
10176 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010177 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010178 .block_erasers =
10179 {
10180 {
10181 .eraseblocks = { {512, 256} },
10182 .block_erase = erase_sector_jedec,
10183 }, {
10184 .eraseblocks = { {128 * 1024, 1} },
10185 .block_erase = erase_chip_block_jedec,
10186 },
10187 },
Sean Nelson35727f72010-01-28 23:55:12 +000010188 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010189 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010190 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000010191 },
10192
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010193 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010194 .vendor = "SyncMOS/MoselVitelic",
10195 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010196 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010197 .manufacture_id = SYNCMOS_MVC_ID,
10198 .model_id = SM_MVC_29C51001T,
10199 .total_size = 128,
10200 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +000010201 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010202 .tested = TEST_UNTESTED,
10203 .probe = probe_jedec,
10204 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10205 .block_erasers =
10206 {
10207 {
10208 .eraseblocks = { {512, 256} },
10209 .block_erase = erase_sector_jedec,
10210 }, {
10211 .eraseblocks = { {128 * 1024, 1} },
10212 .block_erase = erase_chip_block_jedec,
10213 },
10214 },
10215 .write = write_jedec_1,
10216 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010217 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010218 },
10219
10220 {
10221 .vendor = "SyncMOS/MoselVitelic",
10222 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010223 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010224 .manufacture_id = SYNCMOS_MVC_ID,
10225 .model_id = SM_MVC_29C51002B,
10226 .total_size = 256,
10227 .page_size = 512,
10228 .feature_bits = FEATURE_EITHER_RESET,
10229 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010230 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010231 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010232 .block_erasers =
10233 {
10234 {
10235 .eraseblocks = { {512, 512} },
10236 .block_erase = erase_sector_jedec,
10237 }, {
10238 .eraseblocks = { {256 * 1024, 1} },
10239 .block_erase = erase_chip_block_jedec,
10240 },
10241 },
Sean Nelson35727f72010-01-28 23:55:12 +000010242 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010243 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000010244 },
10245
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010246 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010247 .vendor = "SyncMOS/MoselVitelic",
10248 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010249 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010250 .manufacture_id = SYNCMOS_MVC_ID,
10251 .model_id = SM_MVC_29C51002T,
10252 .total_size = 256,
10253 .page_size = 512,
10254 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000010255 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010256 .probe = probe_jedec,
10257 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10258 .block_erasers =
10259 {
10260 {
10261 .eraseblocks = { {512, 512} },
10262 .block_erase = erase_sector_jedec,
10263 }, {
10264 .eraseblocks = { {256 * 1024, 1} },
10265 .block_erase = erase_chip_block_jedec,
10266 },
10267 },
10268 .write = write_jedec_1,
10269 .read = read_memmapped,
10270 },
10271
10272 {
10273 .vendor = "SyncMOS/MoselVitelic",
10274 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010275 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010276 .manufacture_id = SYNCMOS_MVC_ID,
10277 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010278 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010279 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000010280 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010281 .tested = TEST_UNTESTED,
10282 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010283 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +000010284 .block_erasers =
10285 {
10286 {
Mattias Mattsson4c066502010-07-29 20:01:13 +000010287 .eraseblocks = { {1024, 512} },
10288 .block_erase = erase_sector_jedec,
10289 }, {
10290 .eraseblocks = { {512 * 1024, 1} },
10291 .block_erase = erase_chip_block_jedec,
10292 },
10293 },
10294 .write = write_jedec_1,
10295 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010296 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010297 },
10298
10299 {
10300 .vendor = "SyncMOS/MoselVitelic",
10301 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010302 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010303 .manufacture_id = SYNCMOS_MVC_ID,
10304 .model_id = SM_MVC_29C51004T,
10305 .total_size = 512,
10306 .page_size = 1024,
10307 .feature_bits = FEATURE_EITHER_RESET,
10308 .tested = TEST_UNTESTED,
10309 .probe = probe_jedec,
10310 .probe_timing = TIMING_ZERO,
10311 .block_erasers =
10312 {
10313 {
10314 .eraseblocks = { {1024, 512} },
10315 .block_erase = erase_sector_jedec,
10316 }, {
10317 .eraseblocks = { {512 * 1024, 1} },
10318 .block_erase = erase_chip_block_jedec,
10319 },
10320 },
10321 .write = write_jedec_1,
10322 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010323 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010324 },
10325
10326 {
10327 .vendor = "SyncMOS/MoselVitelic",
10328 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010329 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010330 .manufacture_id = SYNCMOS_MVC_ID,
10331 .model_id = SM_MVC_29C31004B,
10332 .total_size = 512,
10333 .page_size = 1024,
10334 .feature_bits = FEATURE_EITHER_RESET,
10335 .tested = TEST_UNTESTED,
10336 .probe = probe_jedec,
10337 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10338 .block_erasers =
10339 {
10340 {
10341 .eraseblocks = { {1024, 512} },
10342 .block_erase = erase_sector_jedec,
10343 }, {
10344 .eraseblocks = { {512 * 1024, 1} },
10345 .block_erase = erase_chip_block_jedec,
10346 },
10347 },
10348 .write = write_jedec_1,
10349 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010350 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +000010351 },
10352
10353 {
10354 .vendor = "SyncMOS/MoselVitelic",
10355 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010356 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +000010357 .manufacture_id = SYNCMOS_MVC_ID,
10358 .model_id = SM_MVC_29C31004T,
10359 .total_size = 512,
10360 .page_size = 1024,
10361 .feature_bits = FEATURE_EITHER_RESET,
10362 .tested = TEST_UNTESTED,
10363 .probe = probe_jedec,
10364 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
10365 .block_erasers =
10366 {
10367 {
10368 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +000010369 .block_erase = erase_sector_jedec,
10370 }, {
10371 .eraseblocks = { {512 * 1024, 1} },
10372 .block_erase = erase_chip_block_jedec,
10373 },
10374 },
Sean Nelson35727f72010-01-28 23:55:12 +000010375 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000010376 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010377 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010378 },
10379
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010380 {
Uwe Hermanna106d152009-05-27 23:17:40 +000010381 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010382 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010383 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010384 .manufacture_id = TI_OLD_ID,
10385 .model_id = TI_TMS29F002RB,
10386 .total_size = 256,
10387 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000010388 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010389 .tested = TEST_UNTESTED,
10390 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010391 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010392 .block_erasers =
10393 {
10394 {
10395 .eraseblocks = {
10396 {16 * 1024, 1},
10397 {8 * 1024, 2},
10398 {32 * 1024, 1},
10399 {64 * 1024, 3},
10400 },
10401 .block_erase = erase_sector_jedec,
10402 }, {
10403 .eraseblocks = { {256 * 1024, 1} },
10404 .block_erase = erase_chip_block_jedec,
10405 },
10406 },
Sean Nelson35727f72010-01-28 23:55:12 +000010407 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010408 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010409 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010410 },
10411
10412 {
Uwe Hermanna106d152009-05-27 23:17:40 +000010413 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010414 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010415 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010416 .manufacture_id = TI_OLD_ID,
10417 .model_id = TI_TMS29F002RT,
10418 .total_size = 256,
10419 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +000010420 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010421 .tested = TEST_UNTESTED,
10422 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000010423 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +000010424 .block_erasers =
10425 {
10426 {
10427 .eraseblocks = {
10428 {64 * 1024, 3},
10429 {32 * 1024, 1},
10430 {8 * 1024, 2},
10431 {16 * 1024, 1},
10432 },
10433 .block_erase = erase_sector_jedec,
10434 }, {
10435 .eraseblocks = { {256 * 1024, 1} },
10436 .block_erase = erase_chip_block_jedec,
10437 },
10438 },
Sean Nelson35727f72010-01-28 23:55:12 +000010439 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010440 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010441 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +000010442 },
10443
10444 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010445 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010446 .name = "W25Q80.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010447 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010448 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010449 .model_id = WINBOND_NEX_W25Q80_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010450 .total_size = 1024,
10451 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010452 /* supports SFDP */
10453 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010454 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010455 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010456 .probe = probe_spi_rdid,
10457 .probe_timing = TIMING_ZERO,
10458 .block_erasers =
10459 {
10460 {
10461 .eraseblocks = { {4 * 1024, 256} },
10462 .block_erase = spi_block_erase_20,
10463 }, {
10464 .eraseblocks = { {32 * 1024, 32} },
10465 .block_erase = spi_block_erase_52,
10466 }, {
10467 .eraseblocks = { {64 * 1024, 16} },
10468 .block_erase = spi_block_erase_d8,
10469 }, {
10470 .eraseblocks = { {1024 * 1024, 1} },
10471 .block_erase = spi_block_erase_60,
10472 }, {
10473 .eraseblocks = { {1024 * 1024, 1} },
10474 .block_erase = spi_block_erase_c7,
10475 }
10476 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010477 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010478 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010479 .write = spi_chip_write_256,
10480 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010481 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010482 },
10483
10484 {
10485 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010486 .name = "W25Q16.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010487 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010488 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010489 .model_id = WINBOND_NEX_W25Q16_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010490 .total_size = 2048,
10491 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010492 /* supports SFDP */
10493 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010494 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +000010495 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010496 .probe = probe_spi_rdid,
10497 .probe_timing = TIMING_ZERO,
10498 .block_erasers =
10499 {
10500 {
10501 .eraseblocks = { {4 * 1024, 512} },
10502 .block_erase = spi_block_erase_20,
10503 }, {
10504 .eraseblocks = { {32 * 1024, 64} },
10505 .block_erase = spi_block_erase_52,
10506 }, {
10507 .eraseblocks = { {64 * 1024, 32} },
10508 .block_erase = spi_block_erase_d8,
10509 }, {
10510 .eraseblocks = { {2 * 1024 * 1024, 1} },
10511 .block_erase = spi_block_erase_60,
10512 }, {
10513 .eraseblocks = { {2 * 1024 * 1024, 1} },
10514 .block_erase = spi_block_erase_c7,
10515 }
10516 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010517 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010518 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010519 .write = spi_chip_write_256,
10520 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010521 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010522 },
10523
10524 {
10525 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010526 .name = "W25Q32.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010527 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010528 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010529 .model_id = WINBOND_NEX_W25Q32_V,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010530 .total_size = 4096,
10531 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010532 /* supports SFDP */
10533 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010534 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010535 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010536 .probe = probe_spi_rdid,
10537 .probe_timing = TIMING_ZERO,
10538 .block_erasers =
10539 {
10540 {
10541 .eraseblocks = { {4 * 1024, 1024} },
10542 .block_erase = spi_block_erase_20,
10543 }, {
10544 .eraseblocks = { {32 * 1024, 128} },
10545 .block_erase = spi_block_erase_52,
10546 }, {
10547 .eraseblocks = { {64 * 1024, 64} },
10548 .block_erase = spi_block_erase_d8,
10549 }, {
10550 .eraseblocks = { {4 * 1024 * 1024, 1} },
10551 .block_erase = spi_block_erase_60,
10552 }, {
10553 .eraseblocks = { {4 * 1024 * 1024, 1} },
10554 .block_erase = spi_block_erase_c7,
10555 }
10556 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010557 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010558 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +000010559 .write = spi_chip_write_256,
10560 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010561 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +000010562 },
10563
10564 {
10565 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010566 .name = "W25Q64.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010567 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +000010568 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010569 .model_id = WINBOND_NEX_W25Q64_V,
David Hendricksc4acec92010-06-24 11:39:57 +000010570 .total_size = 8192,
10571 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010572 /* supports SFDP */
10573 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010574 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +000010575 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +000010576 .probe = probe_spi_rdid,
10577 .probe_timing = TIMING_ZERO,
10578 .block_erasers =
10579 {
10580 {
10581 .eraseblocks = { {4 * 1024, 2048} },
10582 .block_erase = spi_block_erase_20,
10583 }, {
10584 .eraseblocks = { {32 * 1024, 256} },
10585 .block_erase = spi_block_erase_52,
10586 }, {
10587 .eraseblocks = { {64 * 1024, 128} },
10588 .block_erase = spi_block_erase_d8,
10589 }, {
10590 .eraseblocks = { {8 * 1024 * 1024, 1} },
10591 .block_erase = spi_block_erase_60,
10592 }, {
10593 .eraseblocks = { {8 * 1024 * 1024, 1} },
10594 .block_erase = spi_block_erase_c7,
10595 }
10596 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010597 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010598 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +000010599 .write = spi_chip_write_256,
10600 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010601 .voltage = {2700, 3600},
David Hendricksc4acec92010-06-24 11:39:57 +000010602 },
10603
10604 {
10605 .vendor = "Winbond",
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010606 .name = "W25Q128.V",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010607 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010608 .manufacture_id = WINBOND_NEX_ID,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010609 .model_id = WINBOND_NEX_W25Q128_V,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010610 .total_size = 16384,
10611 .page_size = 256,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010612 /* supports SFDP */
10613 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
Daniel Lenski65922a32012-02-15 23:40:23 +000010614 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Antony Rheneus0fbba982011-05-26 14:28:51 +000010615 .tested = TEST_OK_PROBE,
10616 .probe = probe_spi_rdid,
10617 .probe_timing = TIMING_ZERO,
10618 .block_erasers =
10619 {
10620 {
10621 .eraseblocks = { {4 * 1024, 4096} },
10622 .block_erase = spi_block_erase_20,
10623 }, {
10624 .eraseblocks = { {32 * 1024, 512} },
10625 .block_erase = spi_block_erase_52,
10626 }, {
10627 .eraseblocks = { {64 * 1024, 256} },
10628 .block_erase = spi_block_erase_d8,
10629 }, {
10630 .eraseblocks = { {16 * 1024 * 1024, 1} },
10631 .block_erase = spi_block_erase_60,
10632 }, {
10633 .eraseblocks = { {16 * 1024 * 1024, 1} },
10634 .block_erase = spi_block_erase_c7,
10635 }
10636 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010637 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010638 .unlock = spi_disable_blockprotect,
10639 .write = spi_chip_write_256,
10640 .read = spi_chip_read,
Yung-Chieh Lob13d4e62013-06-09 14:00:46 +000010641 .voltage = {2700, 3600},
10642 },
10643
10644 {
10645 .vendor = "Winbond",
10646 .name = "W25Q20.W",
10647 .bustype = BUS_SPI,
10648 .manufacture_id = WINBOND_NEX_ID,
10649 .model_id = WINBOND_NEX_W25Q20_W,
10650 .total_size = 256,
10651 .page_size = 256,
10652 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10653 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10654 .tested = TEST_UNTESTED,
10655 .probe = probe_spi_rdid,
10656 .probe_timing = TIMING_ZERO,
10657 .block_erasers =
10658 {
10659 {
10660 .eraseblocks = { {4 * 1024, 64} },
10661 .block_erase = spi_block_erase_20,
10662 }, {
10663 .eraseblocks = { {32 * 1024, 8} },
10664 .block_erase = spi_block_erase_52,
10665 }, {
10666 .eraseblocks = { {64 * 1024, 4} },
10667 .block_erase = spi_block_erase_d8,
10668 }, {
10669 .eraseblocks = { {256 * 1024, 1} },
10670 .block_erase = spi_block_erase_60,
10671 }, {
10672 .eraseblocks = { {256 * 1024, 1} },
10673 .block_erase = spi_block_erase_c7,
10674 }
10675 },
10676 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10677 .unlock = spi_disable_blockprotect,
10678 .write = spi_chip_write_256,
10679 .read = spi_chip_read,
10680 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10681 },
10682
10683 {
10684 .vendor = "Winbond",
10685 .name = "W25Q40.W",
10686 .bustype = BUS_SPI,
10687 .manufacture_id = WINBOND_NEX_ID,
10688 .model_id = WINBOND_NEX_W25Q40_W,
10689 .total_size = 512,
10690 .page_size = 256,
10691 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10692 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10693 .tested = TEST_UNTESTED,
10694 .probe = probe_spi_rdid,
10695 .probe_timing = TIMING_ZERO,
10696 .block_erasers =
10697 {
10698 {
10699 .eraseblocks = { {4 * 1024, 128} },
10700 .block_erase = spi_block_erase_20,
10701 }, {
10702 .eraseblocks = { {32 * 1024, 16} },
10703 .block_erase = spi_block_erase_52,
10704 }, {
10705 .eraseblocks = { {64 * 1024, 8} },
10706 .block_erase = spi_block_erase_d8,
10707 }, {
10708 .eraseblocks = { {512 * 1024, 1} },
10709 .block_erase = spi_block_erase_60,
10710 }, {
10711 .eraseblocks = { {512 * 1024, 1} },
10712 .block_erase = spi_block_erase_c7,
10713 }
10714 },
10715 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10716 .unlock = spi_disable_blockprotect,
10717 .write = spi_chip_write_256,
10718 .read = spi_chip_read,
10719 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10720 },
10721
10722 {
10723 .vendor = "Winbond",
10724 .name = "W25Q80.W",
10725 .bustype = BUS_SPI,
10726 .manufacture_id = WINBOND_NEX_ID,
10727 .model_id = WINBOND_NEX_W25Q80_W,
10728 .total_size = 1024,
10729 .page_size = 256,
10730 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10731 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
10732 .tested = TEST_UNTESTED,
10733 .probe = probe_spi_rdid,
10734 .probe_timing = TIMING_ZERO,
10735 .block_erasers =
10736 {
10737 {
10738 .eraseblocks = { {4 * 1024, 256} },
10739 .block_erase = spi_block_erase_20,
10740 }, {
10741 .eraseblocks = { {32 * 1024, 32} },
10742 .block_erase = spi_block_erase_52,
10743 }, {
10744 .eraseblocks = { {64 * 1024, 16} },
10745 .block_erase = spi_block_erase_d8,
10746 }, {
10747 .eraseblocks = { {1 * 1024 * 1024, 1} },
10748 .block_erase = spi_block_erase_60,
10749 }, {
10750 .eraseblocks = { {1 * 1024 * 1024, 1} },
10751 .block_erase = spi_block_erase_c7,
10752 }
10753 },
10754 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10755 .unlock = spi_disable_blockprotect,
10756 .write = spi_chip_write_256,
10757 .read = spi_chip_read,
10758 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10759 },
10760
10761 {
10762 .vendor = "Winbond",
10763 .name = "W25Q16.W",
10764 .bustype = BUS_SPI,
10765 .manufacture_id = WINBOND_NEX_ID,
10766 .model_id = WINBOND_NEX_W25Q16_W,
10767 .total_size = 2048,
10768 .page_size = 256,
10769 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10770 /* QPI enable 0x38, disable 0xFF */
10771 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10772 .tested = TEST_UNTESTED,
10773 .probe = probe_spi_rdid,
10774 .probe_timing = TIMING_ZERO,
10775 .block_erasers =
10776 {
10777 {
10778 .eraseblocks = { {4 * 1024, 512} },
10779 .block_erase = spi_block_erase_20,
10780 }, {
10781 .eraseblocks = { {32 * 1024, 64} },
10782 .block_erase = spi_block_erase_52,
10783 }, {
10784 .eraseblocks = { {64 * 1024, 32} },
10785 .block_erase = spi_block_erase_d8,
10786 }, {
10787 .eraseblocks = { {2 * 1024 * 1024, 1} },
10788 .block_erase = spi_block_erase_60,
10789 }, {
10790 .eraseblocks = { {2 * 1024 * 1024, 1} },
10791 .block_erase = spi_block_erase_c7,
10792 }
10793 },
10794 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10795 .unlock = spi_disable_blockprotect,
10796 .write = spi_chip_write_256,
10797 .read = spi_chip_read,
10798 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10799 },
10800
10801 {
10802 .vendor = "Winbond",
10803 .name = "W25Q32.W",
10804 .bustype = BUS_SPI,
10805 .manufacture_id = WINBOND_NEX_ID,
10806 .model_id = WINBOND_NEX_W25Q32_W,
10807 .total_size = 4096,
10808 .page_size = 256,
10809 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10810 /* QPI enable 0x38, disable 0xFF */
10811 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10812 .tested = TEST_OK_PREW,
10813 .probe = probe_spi_rdid,
10814 .probe_timing = TIMING_ZERO,
10815 .block_erasers =
10816 {
10817 {
10818 .eraseblocks = { {4 * 1024, 1024} },
10819 .block_erase = spi_block_erase_20,
10820 }, {
10821 .eraseblocks = { {32 * 1024, 128} },
10822 .block_erase = spi_block_erase_52,
10823 }, {
10824 .eraseblocks = { {64 * 1024, 64} },
10825 .block_erase = spi_block_erase_d8,
10826 }, {
10827 .eraseblocks = { {4 * 1024 * 1024, 1} },
10828 .block_erase = spi_block_erase_60,
10829 }, {
10830 .eraseblocks = { {4 * 1024 * 1024, 1} },
10831 .block_erase = spi_block_erase_c7,
10832 }
10833 },
10834 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10835 .unlock = spi_disable_blockprotect,
10836 .write = spi_chip_write_256,
10837 .read = spi_chip_read,
10838 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
10839 },
10840
10841 {
10842 .vendor = "Winbond",
10843 .name = "W25Q64.W",
10844 .bustype = BUS_SPI,
10845 .manufacture_id = WINBOND_NEX_ID,
10846 .model_id = WINBOND_NEX_W25Q64_W,
10847 .total_size = 8192,
10848 .page_size = 256,
10849 /* OTP: 256B total; read 0x48; write 0x42, erase 0x44, read ID 0x4B */
10850 /* QPI enable 0x38, disable 0xFF */
10851 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_QPI,
10852 .tested = TEST_UNTESTED,
10853 .probe = probe_spi_rdid,
10854 .probe_timing = TIMING_ZERO,
10855 .block_erasers =
10856 {
10857 {
10858 .eraseblocks = { {4 * 1024, 2048} },
10859 .block_erase = spi_block_erase_20,
10860 }, {
10861 .eraseblocks = { {32 * 1024, 256} },
10862 .block_erase = spi_block_erase_52,
10863 }, {
10864 .eraseblocks = { {64 * 1024, 128} },
10865 .block_erase = spi_block_erase_d8,
10866 }, {
10867 .eraseblocks = { {8 * 1024 * 1024, 1} },
10868 .block_erase = spi_block_erase_60,
10869 }, {
10870 .eraseblocks = { {8 * 1024 * 1024, 1} },
10871 .block_erase = spi_block_erase_c7,
10872 }
10873 },
10874 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
10875 .unlock = spi_disable_blockprotect,
10876 .write = spi_chip_write_256,
10877 .read = spi_chip_read,
10878 .voltage = {1700, 1950}, /* Fast read (0x0B) and multi I/O supported */
Antony Rheneus0fbba982011-05-26 14:28:51 +000010879 },
10880
10881 {
10882 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010883 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010884 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010885 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010886 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010887 .total_size = 128,
10888 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010889 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunere34e3e82013-01-01 00:06:51 +000010890 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010891 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010892 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010893 .block_erasers =
10894 {
10895 {
10896 .eraseblocks = { {4 * 1024, 32} },
10897 .block_erase = spi_block_erase_20,
10898 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010899 .eraseblocks = { {64 * 1024, 2} },
10900 .block_erase = spi_block_erase_d8,
10901 }, {
10902 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010903 .block_erase = spi_block_erase_c7,
10904 }
10905 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010906 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010907 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010908 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010909 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010910 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010911 },
10912
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010913 {
10914 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010915 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010916 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010917 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010918 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010919 .total_size = 256,
10920 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010921 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010922 .tested = TEST_UNTESTED,
10923 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010924 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010925 .block_erasers =
10926 {
10927 {
10928 .eraseblocks = { {4 * 1024, 64} },
10929 .block_erase = spi_block_erase_20,
10930 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010931 .eraseblocks = { {64 * 1024, 4} },
10932 .block_erase = spi_block_erase_d8,
10933 }, {
10934 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010935 .block_erase = spi_block_erase_c7,
10936 }
10937 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010938 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010939 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010940 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010941 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010942 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010943 },
10944
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010945 {
10946 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010947 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010948 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010949 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010950 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010951 .total_size = 512,
10952 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010953 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +000010954 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010955 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010956 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010957 .block_erasers =
10958 {
10959 {
10960 .eraseblocks = { {4 * 1024, 128} },
10961 .block_erase = spi_block_erase_20,
10962 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010963 .eraseblocks = { {64 * 1024, 8} },
10964 .block_erase = spi_block_erase_d8,
10965 }, {
10966 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010967 .block_erase = spi_block_erase_c7,
10968 }
10969 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000010970 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000010971 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000010972 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010973 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000010974 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000010975 },
10976
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010977 {
10978 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000010979 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000010980 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010981 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000010982 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010983 .total_size = 1024,
10984 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000010985 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +000010986 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000010987 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000010988 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010989 .block_erasers =
10990 {
10991 {
10992 .eraseblocks = { {4 * 1024, 256} },
10993 .block_erase = spi_block_erase_20,
10994 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010995 .eraseblocks = { {64 * 1024, 16} },
10996 .block_erase = spi_block_erase_d8,
10997 }, {
10998 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000010999 .block_erase = spi_block_erase_c7,
11000 }
11001 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011002 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011003 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +000011004 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011005 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011006 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011007 },
11008
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011009 {
11010 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011011 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011012 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +000011013 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011014 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +000011015 .total_size = 2048,
11016 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000011017 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +000011018 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +000011019 .probe = probe_spi_rdid,
11020 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011021 .block_erasers =
11022 {
11023 {
11024 .eraseblocks = { {4 * 1024, 512} },
11025 .block_erase = spi_block_erase_20,
11026 }, {
11027 .eraseblocks = { {32 * 1024, 64} },
11028 .block_erase = spi_block_erase_52,
11029 }, {
11030 .eraseblocks = { {64 * 1024, 32} },
11031 .block_erase = spi_block_erase_d8,
11032 }, {
11033 .eraseblocks = { {2 * 1024 * 1024, 1} },
11034 .block_erase = spi_block_erase_60,
11035 }, {
11036 .eraseblocks = { {2 * 1024 * 1024, 1} },
11037 .block_erase = spi_block_erase_c7,
11038 }
11039 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011040 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011041 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +000011042 .write = spi_chip_write_256,
11043 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011044 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +000011045 },
11046
11047 {
11048 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011049 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011050 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000011051 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011052 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +000011053 .total_size = 4096,
11054 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000011055 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +000011056 .tested = TEST_OK_PROBE,
11057 .probe = probe_spi_rdid,
11058 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011059 .block_erasers =
11060 {
11061 {
11062 .eraseblocks = { {4 * 1024, 1024} },
11063 .block_erase = spi_block_erase_20,
11064 }, {
11065 .eraseblocks = { {32 * 1024, 128} },
11066 .block_erase = spi_block_erase_52,
11067 }, {
11068 .eraseblocks = { {64 * 1024, 64} },
11069 .block_erase = spi_block_erase_d8,
11070 }, {
11071 .eraseblocks = { {4 * 1024 * 1024, 1} },
11072 .block_erase = spi_block_erase_60,
11073 }, {
11074 .eraseblocks = { {4 * 1024 * 1024, 1} },
11075 .block_erase = spi_block_erase_c7,
11076 }
11077 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011078 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011079 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000011080 .write = spi_chip_write_256,
11081 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011082 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000011083 },
11084
11085 {
11086 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011087 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011088 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +000011089 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011090 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +000011091 .total_size = 8192,
11092 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +000011093 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +000011094 .tested = TEST_OK_PROBE,
Zheng Bao1db2b752009-11-26 11:05:01 +000011095 .probe = probe_spi_rdid,
11096 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011097 .block_erasers =
11098 {
11099 {
11100 .eraseblocks = { {4 * 1024, 2048} },
11101 .block_erase = spi_block_erase_20,
11102 }, {
11103 .eraseblocks = { {32 * 1024, 256} },
11104 .block_erase = spi_block_erase_52,
11105 }, {
11106 .eraseblocks = { {64 * 1024, 128} },
11107 .block_erase = spi_block_erase_d8,
11108 }, {
11109 .eraseblocks = { {8 * 1024 * 1024, 1} },
11110 .block_erase = spi_block_erase_60,
11111 }, {
11112 .eraseblocks = { {8 * 1024 * 1024, 1} },
11113 .block_erase = spi_block_erase_c7,
11114 }
11115 },
Stefan Tauner6ee37e22012-12-29 15:03:51 +000011116 .printlock = spi_prettyprint_status_register_plain, /* TODO: improve */
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000011117 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +000011118 .write = spi_chip_write_256,
11119 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011120 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +000011121 },
11122
11123 {
11124 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000011125 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011126 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +000011127 .manufacture_id = WINBOND_ID,
11128 .model_id = WINBOND_W29C010,
11129 .total_size = 128,
11130 .page_size = 128,
11131 .feature_bits = FEATURE_LONG_RESET,
11132 .tested = TEST_OK_PRE,
11133 .probe = probe_w29ee011,
11134 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
11135 .block_erasers =
11136 {
11137 {
11138 .eraseblocks = { {128 * 1024, 1} },
11139 .block_erase = erase_chip_block_jedec,
11140 }
11141 },
11142 .write = write_jedec,
11143 .read = read_memmapped,
11144 },
11145
11146 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
11147 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011148 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011149 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011150 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011151 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011152 .total_size = 128,
11153 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011154 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +000011155 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011156 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011157 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011158 .block_erasers =
11159 {
11160 {
11161 .eraseblocks = { {128 * 1024, 1} },
11162 .block_erase = erase_chip_block_jedec,
11163 }
11164 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011165 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011166 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +000011167 },
11168
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011169 {
11170 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011171 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011172 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011173 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011174 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011175 .total_size = 256,
11176 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011177 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011178 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011179 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011180 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011181 .block_erasers =
11182 {
11183 {
11184 .eraseblocks = { {256 * 1024, 1} },
11185 .block_erase = erase_chip_block_jedec,
11186 }
11187 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011188 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011189 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011190 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000011191 },
11192
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011193 {
11194 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011195 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011196 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011197 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011198 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011199 .total_size = 512,
11200 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +000011201 .feature_bits = FEATURE_LONG_RESET,
11202 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011203 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +000011204 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011205 .block_erasers =
11206 {
11207 {
11208 .eraseblocks = { {512 * 1024, 1} },
11209 .block_erase = erase_chip_block_jedec,
11210 }
11211 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011212 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011213 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011214 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000011215 },
11216
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011217 {
11218 .vendor = "Winbond",
Kyösti Mälkkic31243e2012-10-28 01:50:08 +000011219 .name = "W39F010",
11220 .bustype = BUS_PARALLEL,
11221 .manufacture_id = WINBOND_ID,
11222 .model_id = WINBOND_W39F010,
11223 .total_size = 128,
11224 .page_size = 4 * 1024,
11225 .feature_bits = FEATURE_EITHER_RESET,
11226 .tested = TEST_OK_PREW,
11227 .probe = probe_jedec,
11228 .probe_timing = 10,
11229 .block_erasers =
11230 {
11231 {
11232 .eraseblocks = { {4 * 1024, 32} },
11233 .block_erase = erase_block_jedec,
11234 }, {
11235 .eraseblocks = { {128 * 1024, 1} },
11236 .block_erase = erase_chip_block_jedec,
11237 }
11238 },
11239 .printlock = printlock_w39f010,
11240 .write = write_jedec_1,
11241 .read = read_memmapped,
11242 .voltage = {4500, 5500},
11243 },
11244
11245 {
11246 .vendor = "Winbond",
11247 .name = "W39L010",
11248 .bustype = BUS_PARALLEL,
11249 .manufacture_id = WINBOND_ID,
11250 .model_id = WINBOND_W39L010,
11251 .total_size = 128,
11252 .page_size = 4 * 1024,
11253 .feature_bits = FEATURE_EITHER_RESET,
11254 .tested = TEST_UNTESTED,
11255 .probe = probe_jedec,
11256 .probe_timing = 10,
11257 .block_erasers =
11258 {
11259 {
11260 .eraseblocks = { {4 * 1024, 32} },
11261 .block_erase = erase_block_jedec,
11262 }, {
11263 .eraseblocks = { {128 * 1024, 1} },
11264 .block_erase = erase_chip_block_jedec,
11265 }
11266 },
11267 .printlock = printlock_w39l010,
11268 .write = write_jedec_1,
11269 .read = read_memmapped,
11270 .voltage = {3000, 3600},
11271 },
11272
11273 {
11274 .vendor = "Winbond",
11275 .name = "W39L020",
11276 .bustype = BUS_PARALLEL,
11277 .manufacture_id = WINBOND_ID,
11278 .model_id = WINBOND_W39L020,
11279 .total_size = 256,
11280 .page_size = 4 * 1024,
11281 .feature_bits = FEATURE_EITHER_RESET,
11282 .tested = TEST_UNTESTED,
11283 .probe = probe_jedec,
11284 .probe_timing = 10,
11285 .block_erasers =
11286 {
11287 {
11288 .eraseblocks = { {4 * 1024, 64} },
11289 .block_erase = erase_block_jedec,
11290 }, {
11291 .eraseblocks = { {64 * 1024, 4} },
11292 .block_erase = erase_sector_jedec,
11293 }, {
11294 .eraseblocks = { {256 * 1024, 1} },
11295 .block_erase = erase_chip_block_jedec,
11296 }
11297 },
11298 .printlock = printlock_w39l020,
11299 .write = write_jedec_1,
11300 .read = read_memmapped,
11301 .voltage = {3000, 3600},
11302 },
11303
11304 {
11305 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +000011306 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011307 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +000011308 .manufacture_id = WINBOND_ID,
11309 .model_id = WINBOND_W39L040,
11310 .total_size = 512,
11311 .page_size = 64 * 1024,
11312 .feature_bits = FEATURE_EITHER_RESET,
11313 .tested = TEST_OK_PR,
11314 .probe = probe_jedec,
11315 .probe_timing = 10,
11316 .block_erasers =
11317 {
11318 {
11319 .eraseblocks = { {4 * 1024, 128} },
11320 .block_erase = erase_block_jedec,
11321 }, {
11322 .eraseblocks = { {64 * 1024, 8} },
11323 .block_erase = erase_sector_jedec,
11324 }, {
11325 .eraseblocks = { {512 * 1024, 1} },
11326 .block_erase = erase_chip_block_jedec,
11327 }
11328 },
11329 .printlock = printlock_w39l040,
11330 .write = write_jedec_1,
11331 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011332 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +000011333 },
11334
11335 {
11336 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011337 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011338 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011339 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011340 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011341 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011342 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011343 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011344 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011345 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +000011346 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011347 .block_erasers =
11348 {
11349 {
11350 .eraseblocks = { {64 * 1024, 8} },
11351 .block_erase = erase_sector_jedec,
11352 }, {
11353 .eraseblocks = { {512 * 1024, 1} },
11354 .block_erase = erase_chip_block_jedec,
11355 }
11356 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011357 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +000011358 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011359 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011360 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011361 },
11362
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011363 {
11364 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011365 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011366 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011367 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011368 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011369 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011370 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011371 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011372 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011373 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +000011374 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011375 .block_erasers =
11376 {
11377 {
11378 .eraseblocks = { {64 * 1024, 8} },
11379 .block_erase = erase_sector_jedec,
11380 }, {
11381 .eraseblocks = { {512 * 1024, 1} },
11382 .block_erase = erase_chip_block_jedec,
11383 }
11384 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011385 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +000011386 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011387 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011388 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011389 },
11390
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011391 {
11392 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011393 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011394 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011395 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011396 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011397 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011398 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011399 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +000011400 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +000011401 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011402 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011403 .block_erasers =
11404 {
11405 {
11406 .eraseblocks = { {64 * 1024, 8} },
11407 .block_erase = erase_sector_jedec,
11408 }, {
11409 .eraseblocks = { {512 * 1024, 1} },
11410 .block_erase = erase_chip_block_jedec,
11411 }
11412 },
Sean Nelson6e0b9122010-02-19 00:52:10 +000011413 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +000011414 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011415 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011416 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011417 },
11418
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011419 {
11420 .vendor = "Winbond",
11421 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011422 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011423 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011424 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011425 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011426 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +000011427 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Antony Rheneus0fbba982011-05-26 14:28:51 +000011428 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011429 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +000011430 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011431 .block_erasers =
11432 {
11433 {
11434 .eraseblocks = { {4 * 1024, 128} },
11435 .block_erase = erase_block_jedec,
11436 }, {
11437 .eraseblocks = { {64 * 1024, 8} },
11438 .block_erase = erase_sector_jedec,
11439 }, {
11440 .eraseblocks = { {512 * 1024, 1} },
11441 .block_erase = erase_chip_block_jedec,
11442 }
11443 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011444 .printlock = printlock_w39v040fa,
Michael Karcherc9b63412010-05-30 16:55:18 +000011445 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +000011446 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011447 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011448 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011449 },
11450
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011451 {
11452 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011453 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011454 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011455 .manufacture_id = WINBOND_ID,
11456 .model_id = WINBOND_W39V040B,
11457 .total_size = 512,
11458 .page_size = 64 * 1024,
11459 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +000011460 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011461 .probe = probe_jedec,
11462 .probe_timing = 10,
11463 .block_erasers =
11464 {
11465 {
11466 .eraseblocks = { {64 * 1024, 8} },
11467 .block_erase = erase_sector_jedec,
11468 }, {
11469 .eraseblocks = { {512 * 1024, 1} },
11470 .block_erase = erase_chip_block_jedec,
11471 }
11472 },
11473 .printlock = printlock_w39v040fb,
Idwer Volleringecc67072010-12-26 23:55:12 +000011474 .unlock = unlock_w39v040fb,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011475 .write = write_jedec_1,
11476 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011477 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011478 },
11479
11480 {
11481 .vendor = "Winbond",
11482 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011483 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011484 .manufacture_id = WINBOND_ID,
11485 .model_id = WINBOND_W39V040C,
11486 .total_size = 512,
11487 .page_size = 64 * 1024,
11488 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +000011489 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011490 .probe = probe_jedec,
11491 .probe_timing = 10,
11492 .block_erasers =
11493 {
11494 {
11495 .eraseblocks = { {64 * 1024, 8} },
11496 .block_erase = erase_sector_jedec,
11497 }, {
11498 .eraseblocks = { {512 * 1024, 1} },
11499 .block_erase = erase_chip_block_jedec,
11500 }
11501 },
11502 .printlock = printlock_w39v040fc,
11503 .write = write_jedec_1,
11504 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011505 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011506 },
11507
11508 {
11509 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011510 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011511 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011512 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011513 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011514 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011515 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011516 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +000011517 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011518 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +000011519 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011520 .block_erasers =
11521 {
11522 {
11523 .eraseblocks = { {64 * 1024, 16} },
11524 .block_erase = erase_sector_jedec,
11525 }, {
11526 .eraseblocks = { {1024 * 1024, 1} },
11527 .block_erase = erase_chip_block_jedec,
11528 }
11529 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011530 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +000011531 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011532 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011533 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011534 },
11535
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011536 {
11537 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +000011538 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011539 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011540 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011541 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011542 .total_size = 256,
11543 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011544 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011545 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011546 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011547 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011548 .block_erasers =
11549 {
11550 {
11551 .eraseblocks = {
11552 {128 * 1024, 1},
11553 {96 * 1024, 1},
11554 {8 * 1024, 2},
11555 {16 * 1024, 1},
11556 },
11557 .block_erase = erase_sector_jedec,
11558 }, {
11559 .eraseblocks = { {256 * 1024, 1} },
11560 .block_erase = erase_chip_block_jedec,
11561 }
11562 },
Sean Nelson35727f72010-01-28 23:55:12 +000011563 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011564 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011565 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +000011566 },
11567
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011568 {
11569 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011570 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011571 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011572 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011573 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011574 .total_size = 256,
11575 .page_size = 128,
11576 .feature_bits = FEATURE_EITHER_RESET,
11577 .tested = TEST_OK_PROBE,
11578 .probe = probe_jedec,
11579 .probe_timing = 10,
11580 .block_erasers =
11581 {
11582 {
11583 .eraseblocks = { {256 * 1024, 1} },
11584 .block_erase = erase_chip_block_jedec,
11585 }
11586 },
11587 .write = write_jedec_1,
11588 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011589 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +000011590 },
11591
11592 {
11593 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011594 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011595 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011596 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011597 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011598 .total_size = 256,
11599 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011600 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011601 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011602 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000011603 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011604 .block_erasers =
11605 {
11606 {
11607 .eraseblocks = {
11608 {64 * 1024, 3},
11609 {32 * 1024, 1},
11610 {8 * 1024, 2},
11611 {16 * 1024, 1},
11612 },
11613 .block_erase = erase_sector_jedec,
11614 }, {
11615 .eraseblocks = { {256 * 1024, 1} },
11616 .block_erase = erase_chip_block_jedec,
11617 }
11618 },
Sean Nelson35727f72010-01-28 23:55:12 +000011619 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011620 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011621 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011622 },
11623
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011624 {
11625 .vendor = "Winbond",
11626 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011627 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011628 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011629 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011630 .total_size = 256,
11631 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +000011632 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunereb582572012-09-21 12:52:50 +000011633 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011634 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +000011635 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011636 .block_erasers =
11637 {
11638 {
11639 .eraseblocks = {
11640 {64 * 1024, 3},
11641 {32 * 1024, 1},
11642 {8 * 1024, 2},
11643 {16 * 1024, 1},
11644 },
11645 .block_erase = erase_sector_jedec,
11646 }, {
11647 .eraseblocks = { {256 * 1024, 1} },
11648 .block_erase = erase_chip_block_jedec,
11649 }
11650 },
Sean Nelson35727f72010-01-28 23:55:12 +000011651 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011652 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +000011653 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +000011654 },
11655
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011656 {
11657 .vendor = "Winbond",
11658 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011659 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011660 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011661 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011662 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +000011663 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011664 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +000011665 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011666 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011667 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011668 .block_erasers =
11669 {
11670 {
11671 .eraseblocks = { {64 * 1024, 16}, },
11672 .block_erase = erase_sector_jedec,
11673 }, {
11674 .eraseblocks = { {1024 * 1024, 1} },
11675 .block_erase = erase_chip_block_jedec,
11676 }
11677 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011678 .printlock = printlock_w39v080fa,
11679 .unlock = unlock_w39v080fa,
Sean Nelson35727f72010-01-28 23:55:12 +000011680 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011681 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011682 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011683 },
11684
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011685 {
11686 .vendor = "Winbond",
11687 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011688 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011689 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +000011690 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011691 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +000011692 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +000011693 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011694 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +000011695 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011696 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +000011697 .block_erasers =
11698 {
11699 {
11700 .eraseblocks = { {64 * 1024, 8}, },
11701 .block_erase = erase_sector_jedec,
11702 }, {
11703 .eraseblocks = { {512 * 1024, 1} },
11704 .block_erase = erase_chip_block_jedec,
11705 }
11706 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000011707 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +000011708 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011709 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +000011710 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +000011711 },
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011712
11713 {
11714 .vendor = "Unknown",
11715 .name = "SFDP-capable chip",
11716 .bustype = BUS_SPI,
11717 .manufacture_id = GENERIC_MANUF_ID,
11718 .model_id = SFDP_DEVICE_ID,
11719 /* We present our own "report this" text hence we do not
11720 * want the default "This flash part has status UNTESTED..."
11721 * text to be printed. */
11722 .tested = TEST_OK_PREW,
11723 .probe = probe_spi_sfdp,
11724 .unlock = spi_disable_blockprotect, /* is this safe? */
11725 .read = spi_chip_read,
11726 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000011727 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +000011728 /* Everything below will be set by the probing function. */
11729 .write = NULL,
11730 .total_size = 0,
11731 .page_size = 0,
11732 .feature_bits = 0,
11733 .block_erasers = {},
11734 },
FENG yu ningff692fb2008-12-08 18:15:10 +000011735
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011736 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +000011737 .vendor = "Programmer",
11738 .name = "Opaque flash chip",
11739 .bustype = BUS_PROG,
11740 .manufacture_id = PROGMANUF_ID,
11741 .model_id = PROGDEV_ID,
11742 .total_size = 0,
11743 .page_size = 256,
11744 /* probe is assumed to work, rest will be filled in by probe */
11745 .tested = TEST_OK_PROBE,
11746 .probe = probe_opaque,
11747 /* eraseblock sizes will be set by the probing function */
11748 .block_erasers =
11749 {
11750 {
11751 .block_erase = erase_opaque,
11752 }
11753 },
11754 .write = write_opaque,
11755 .read = read_opaque,
11756 },
11757
11758 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011759 .vendor = "AMIC",
11760 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011761 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +000011762 .manufacture_id = AMIC_ID,
11763 .model_id = GENERIC_DEVICE_ID,
11764 .total_size = 0,
11765 .page_size = 256,
11766 .tested = TEST_BAD_PREW,
11767 .probe = probe_spi_rdid4,
11768 .probe_timing = TIMING_ZERO,
11769 .write = NULL,
11770 .read = NULL,
11771 },
11772
11773 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011774 .vendor = "Atmel",
11775 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011776 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011777 .manufacture_id = ATMEL_ID,
11778 .model_id = GENERIC_DEVICE_ID,
11779 .total_size = 0,
11780 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011781 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011782 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011783 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011784 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011785 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011786 },
11787
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011788 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +000011789 .vendor = "Eon",
11790 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011791 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011792 .manufacture_id = EON_ID_NOPREFIX,
11793 .model_id = GENERIC_DEVICE_ID,
11794 .total_size = 0,
11795 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011796 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011797 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011798 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011799 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011800 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011801 },
11802
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011803 {
11804 .vendor = "Macronix",
11805 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011806 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +000011807 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011808 .model_id = GENERIC_DEVICE_ID,
11809 .total_size = 0,
11810 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011811 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011812 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011813 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011814 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011815 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011816 },
11817
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011818 {
11819 .vendor = "PMC",
11820 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011821 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011822 .manufacture_id = PMC_ID,
11823 .model_id = GENERIC_DEVICE_ID,
11824 .total_size = 0,
11825 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011826 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011827 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011828 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011829 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011830 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011831 },
11832
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011833 {
11834 .vendor = "SST",
11835 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011836 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011837 .manufacture_id = SST_ID,
11838 .model_id = GENERIC_DEVICE_ID,
11839 .total_size = 0,
11840 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011841 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011842 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011843 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011844 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011845 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011846 },
11847
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011848 {
11849 .vendor = "ST",
11850 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011851 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011852 .manufacture_id = ST_ID,
11853 .model_id = GENERIC_DEVICE_ID,
11854 .total_size = 0,
11855 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +000011856 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011857 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +000011858 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011859 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +000011860 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +000011861 },
Uwe Hermannfc425e82008-03-16 02:06:25 +000011862
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011863 {
Sean Nelson118e1d62009-11-24 02:08:11 +000011864 .vendor = "Sanyo",
11865 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011866 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +000011867 .manufacture_id = SANYO_ID,
11868 .model_id = GENERIC_DEVICE_ID,
11869 .total_size = 0,
11870 .page_size = 256,
11871 .tested = TEST_BAD_PREW,
11872 .probe = probe_spi_rdid,
11873 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +000011874 .write = NULL,
11875 .read = NULL,
11876 },
11877
11878 {
Stefan Taunereb582572012-09-21 12:52:50 +000011879 .vendor = "Winbond",
11880 .name = "unknown Winbond (ex Nexcom) SPI chip",
11881 .bustype = BUS_SPI,
11882 .manufacture_id = WINBOND_NEX_ID,
11883 .model_id = GENERIC_DEVICE_ID,
11884 .total_size = 0,
11885 .page_size = 256,
11886 .tested = TEST_BAD_PREW,
11887 .probe = probe_spi_rdid,
11888 .probe_timing = TIMING_ZERO,
11889 .write = NULL,
11890 .read = NULL,
11891 },
11892
11893 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011894 .vendor = "Generic",
11895 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011896 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011897 .manufacture_id = GENERIC_MANUF_ID,
11898 .model_id = GENERIC_DEVICE_ID,
11899 .total_size = 0,
11900 .page_size = 256,
11901 .tested = TEST_BAD_PREW,
11902 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011903 .write = NULL,
11904 },
Stefan Tauneraf2db612011-12-02 21:48:17 +000011905
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011906 {
11907 .vendor = "Generic",
11908 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000011909 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011910 .manufacture_id = GENERIC_MANUF_ID,
11911 .model_id = GENERIC_DEVICE_ID,
11912 .total_size = 0,
11913 .page_size = 256,
11914 .tested = TEST_BAD_PREW,
11915 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +000011916 .write = NULL,
11917 },
11918
Stephan Guilloux5c5b5252009-01-08 03:40:17 +000011919 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +000011920};